2005-04-16 15:20:36 -07:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Module Name: psscope - Parser scope stack management routines
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
2006-01-13 14:22:00 -07:00
|
|
|
* Copyright (C) 2000 - 2006, R. Byron Moore
|
2005-04-16 15:20:36 -07:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions, and the following disclaimer,
|
|
|
|
* without modification.
|
|
|
|
* 2. Redistributions in binary form must reproduce at minimum a disclaimer
|
|
|
|
* substantially similar to the "NO WARRANTY" disclaimer below
|
|
|
|
* ("Disclaimer") and any redistribution must be conditioned upon
|
|
|
|
* including a substantially similar Disclaimer requirement for further
|
|
|
|
* binary redistribution.
|
|
|
|
* 3. Neither the names of the above-listed copyright holders nor the names
|
|
|
|
* of any contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* Alternatively, this software may be distributed under the terms of the
|
|
|
|
* GNU General Public License ("GPL") version 2 as published by the Free
|
|
|
|
* Software Foundation.
|
|
|
|
*
|
|
|
|
* NO WARRANTY
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGES.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <acpi/acpi.h>
|
|
|
|
#include <acpi/acparser.h>
|
|
|
|
|
|
|
|
#define _COMPONENT ACPI_PARSER
|
2005-08-04 21:44:28 -07:00
|
|
|
ACPI_MODULE_NAME("psscope")
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ps_get_parent_scope
|
|
|
|
*
|
|
|
|
* PARAMETERS: parser_state - Current parser state object
|
|
|
|
*
|
|
|
|
* RETURN: Pointer to an Op object
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Get parent of current op being parsed
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
2005-08-04 21:44:28 -07:00
|
|
|
union acpi_parse_object *acpi_ps_get_parent_scope(struct acpi_parse_state
|
|
|
|
*parser_state)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
2005-04-18 19:49:35 -07:00
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
return (parser_state->scope->parse_scope.op);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ps_has_completed_scope
|
|
|
|
*
|
|
|
|
* PARAMETERS: parser_state - Current parser state object
|
|
|
|
*
|
|
|
|
* RETURN: Boolean, TRUE = scope completed.
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Is parsing of current argument complete? Determined by
|
|
|
|
* 1) AML pointer is at or beyond the end of the scope
|
|
|
|
* 2) The scope argument count has reached zero.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-08-04 21:44:28 -07:00
|
|
|
u8 acpi_ps_has_completed_scope(struct acpi_parse_state * parser_state)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
2005-04-18 19:49:35 -07:00
|
|
|
|
|
|
|
return ((u8)
|
2005-08-04 21:44:28 -07:00
|
|
|
((parser_state->aml >= parser_state->scope->parse_scope.arg_end
|
|
|
|
|| !parser_state->scope->parse_scope.arg_count)));
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ps_init_scope
|
|
|
|
*
|
|
|
|
* PARAMETERS: parser_state - Current parser state object
|
|
|
|
* Root - the Root Node of this new scope
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Allocate and init a new scope object
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
acpi_status
|
2005-08-04 21:44:28 -07:00
|
|
|
acpi_ps_init_scope(struct acpi_parse_state * parser_state,
|
|
|
|
union acpi_parse_object * root_op)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
2005-08-04 21:44:28 -07:00
|
|
|
union acpi_generic_state *scope;
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2005-08-04 21:44:28 -07:00
|
|
|
ACPI_FUNCTION_TRACE_PTR("ps_init_scope", root_op);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2005-08-04 21:44:28 -07:00
|
|
|
scope = acpi_ut_create_generic_state();
|
2005-04-16 15:20:36 -07:00
|
|
|
if (!scope) {
|
2005-08-04 21:44:28 -07:00
|
|
|
return_ACPI_STATUS(AE_NO_MEMORY);
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
|
|
|
|
2006-03-17 14:44:00 -07:00
|
|
|
scope->common.descriptor_type = ACPI_DESC_TYPE_STATE_RPSCOPE;
|
2005-08-04 21:44:28 -07:00
|
|
|
scope->parse_scope.op = root_op;
|
2005-04-16 15:20:36 -07:00
|
|
|
scope->parse_scope.arg_count = ACPI_VAR_ARGS;
|
2005-08-04 21:44:28 -07:00
|
|
|
scope->parse_scope.arg_end = parser_state->aml_end;
|
|
|
|
scope->parse_scope.pkg_end = parser_state->aml_end;
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2005-08-04 21:44:28 -07:00
|
|
|
parser_state->scope = scope;
|
|
|
|
parser_state->start_op = root_op;
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2005-08-04 21:44:28 -07:00
|
|
|
return_ACPI_STATUS(AE_OK);
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ps_push_scope
|
|
|
|
*
|
|
|
|
* PARAMETERS: parser_state - Current parser state object
|
|
|
|
* Op - Current op to be pushed
|
|
|
|
* remaining_args - List of args remaining
|
|
|
|
* arg_count - Fixed or variable number of args
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Push current op to begin parsing its argument
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
acpi_status
|
2005-08-04 21:44:28 -07:00
|
|
|
acpi_ps_push_scope(struct acpi_parse_state *parser_state,
|
|
|
|
union acpi_parse_object *op,
|
ACPI: ACPICA 20060331
Implemented header file support for the following
additional ACPI tables: ASF!, BOOT, CPEP, DBGP, MCFG, SPCR,
SPMI, TCPA, and WDRT. With this support, all current and
known ACPI tables are now defined in the ACPICA headers and
are available for use by device drivers and other software.
Implemented support to allow tables that contain ACPI
names with invalid characters to be loaded. Previously,
this would cause the table load to fail, but since
there are several known cases of such tables on
existing machines, this change was made to enable
ACPI support for them. Also, this matches the
behavior of the Microsoft ACPI implementation.
https://bugzilla.novell.com/show_bug.cgi?id=147621
Fixed a couple regressions introduced during the memory
optimization in the 20060317 release. The namespace
node definition required additional reorganization and
an internal datatype that had been changed to 8-bit was
restored to 32-bit. (Valery Podrezov)
Fixed a problem where a null pointer passed to
acpi_ut_delete_generic_state() could be passed through
to acpi_os_release_object which is unexpected. Such
null pointers are now trapped and ignored, matching
the behavior of the previous implementation before the
deployment of acpi_os_release_object(). (Valery Podrezov,
Fiodor Suietov)
Fixed a memory mapping leak during the deletion of
a SystemMemory operation region where a cached memory
mapping was not deleted. This became a noticeable problem
for operation regions that are defined within frequently
used control methods. (Dana Meyers)
Reorganized the ACPI table header files into two main
files: one for the ACPI tables consumed by the ACPICA core,
and another for the miscellaneous ACPI tables that are
consumed by the drivers and other software. The various
FADT definitions were merged into one common section and
three different tables (ACPI 1.0, 1.0+, and 2.0)
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-03-30 22:00:00 -07:00
|
|
|
u32 remaining_args, u32 arg_count)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
2005-08-04 21:44:28 -07:00
|
|
|
union acpi_generic_state *scope;
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2005-08-04 21:44:28 -07:00
|
|
|
ACPI_FUNCTION_TRACE_PTR("ps_push_scope", op);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2005-08-04 21:44:28 -07:00
|
|
|
scope = acpi_ut_create_generic_state();
|
2005-04-16 15:20:36 -07:00
|
|
|
if (!scope) {
|
2005-08-04 21:44:28 -07:00
|
|
|
return_ACPI_STATUS(AE_NO_MEMORY);
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
|
|
|
|
2006-03-17 14:44:00 -07:00
|
|
|
scope->common.descriptor_type = ACPI_DESC_TYPE_STATE_PSCOPE;
|
2005-08-04 21:44:28 -07:00
|
|
|
scope->parse_scope.op = op;
|
2005-04-18 19:49:35 -07:00
|
|
|
scope->parse_scope.arg_list = remaining_args;
|
|
|
|
scope->parse_scope.arg_count = arg_count;
|
|
|
|
scope->parse_scope.pkg_end = parser_state->pkg_end;
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
/* Push onto scope stack */
|
|
|
|
|
2005-08-04 21:44:28 -07:00
|
|
|
acpi_ut_push_generic_state(&parser_state->scope, scope);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
if (arg_count == ACPI_VAR_ARGS) {
|
2006-10-01 21:00:00 -07:00
|
|
|
|
2005-04-18 19:49:35 -07:00
|
|
|
/* Multiple arguments */
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
scope->parse_scope.arg_end = parser_state->pkg_end;
|
2005-08-04 21:44:28 -07:00
|
|
|
} else {
|
2005-04-18 19:49:35 -07:00
|
|
|
/* Single argument */
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2005-08-04 21:44:28 -07:00
|
|
|
scope->parse_scope.arg_end = ACPI_TO_POINTER(ACPI_MAX_PTR);
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
|
|
|
|
2005-08-04 21:44:28 -07:00
|
|
|
return_ACPI_STATUS(AE_OK);
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ps_pop_scope
|
|
|
|
*
|
|
|
|
* PARAMETERS: parser_state - Current parser state object
|
|
|
|
* Op - Where the popped op is returned
|
|
|
|
* arg_list - Where the popped "next argument" is
|
|
|
|
* returned
|
|
|
|
* arg_count - Count of objects in arg_list
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Return to parsing a previous op
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
void
|
2005-08-04 21:44:28 -07:00
|
|
|
acpi_ps_pop_scope(struct acpi_parse_state *parser_state,
|
ACPI: ACPICA 20060331
Implemented header file support for the following
additional ACPI tables: ASF!, BOOT, CPEP, DBGP, MCFG, SPCR,
SPMI, TCPA, and WDRT. With this support, all current and
known ACPI tables are now defined in the ACPICA headers and
are available for use by device drivers and other software.
Implemented support to allow tables that contain ACPI
names with invalid characters to be loaded. Previously,
this would cause the table load to fail, but since
there are several known cases of such tables on
existing machines, this change was made to enable
ACPI support for them. Also, this matches the
behavior of the Microsoft ACPI implementation.
https://bugzilla.novell.com/show_bug.cgi?id=147621
Fixed a couple regressions introduced during the memory
optimization in the 20060317 release. The namespace
node definition required additional reorganization and
an internal datatype that had been changed to 8-bit was
restored to 32-bit. (Valery Podrezov)
Fixed a problem where a null pointer passed to
acpi_ut_delete_generic_state() could be passed through
to acpi_os_release_object which is unexpected. Such
null pointers are now trapped and ignored, matching
the behavior of the previous implementation before the
deployment of acpi_os_release_object(). (Valery Podrezov,
Fiodor Suietov)
Fixed a memory mapping leak during the deletion of
a SystemMemory operation region where a cached memory
mapping was not deleted. This became a noticeable problem
for operation regions that are defined within frequently
used control methods. (Dana Meyers)
Reorganized the ACPI table header files into two main
files: one for the ACPI tables consumed by the ACPICA core,
and another for the miscellaneous ACPI tables that are
consumed by the drivers and other software. The various
FADT definitions were merged into one common section and
three different tables (ACPI 1.0, 1.0+, and 2.0)
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-03-30 22:00:00 -07:00
|
|
|
union acpi_parse_object **op, u32 * arg_list, u32 * arg_count)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
2005-08-04 21:44:28 -07:00
|
|
|
union acpi_generic_state *scope = parser_state->scope;
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2005-08-04 21:44:28 -07:00
|
|
|
ACPI_FUNCTION_TRACE("ps_pop_scope");
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2005-04-18 19:49:35 -07:00
|
|
|
/* Only pop the scope if there is in fact a next scope */
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
if (scope->common.next) {
|
2005-08-04 21:44:28 -07:00
|
|
|
scope = acpi_ut_pop_generic_state(&parser_state->scope);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2006-03-17 14:44:00 -07:00
|
|
|
/* Return to parsing previous op */
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2005-08-04 21:44:28 -07:00
|
|
|
*op = scope->parse_scope.op;
|
|
|
|
*arg_list = scope->parse_scope.arg_list;
|
|
|
|
*arg_count = scope->parse_scope.arg_count;
|
2005-04-18 19:49:35 -07:00
|
|
|
parser_state->pkg_end = scope->parse_scope.pkg_end;
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
/* All done with this scope state structure */
|
|
|
|
|
2005-08-04 21:44:28 -07:00
|
|
|
acpi_ut_delete_generic_state(scope);
|
|
|
|
} else {
|
2006-03-17 14:44:00 -07:00
|
|
|
/* Empty parse stack, prepare to fetch next opcode */
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2005-08-04 21:44:28 -07:00
|
|
|
*op = NULL;
|
2005-04-18 19:49:35 -07:00
|
|
|
*arg_list = 0;
|
|
|
|
*arg_count = 0;
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
|
|
|
|
2005-08-04 21:44:28 -07:00
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_PARSE,
|
|
|
|
"Popped Op %p Args %X\n", *op, *arg_count));
|
2005-04-16 15:20:36 -07:00
|
|
|
return_VOID;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ps_cleanup_scope
|
|
|
|
*
|
|
|
|
* PARAMETERS: parser_state - Current parser state object
|
|
|
|
*
|
2005-04-18 19:49:35 -07:00
|
|
|
* RETURN: None
|
2005-04-16 15:20:36 -07:00
|
|
|
*
|
|
|
|
* DESCRIPTION: Destroy available list, remaining stack levels, and return
|
|
|
|
* root scope
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-08-04 21:44:28 -07:00
|
|
|
void acpi_ps_cleanup_scope(struct acpi_parse_state *parser_state)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
2005-08-04 21:44:28 -07:00
|
|
|
union acpi_generic_state *scope;
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2005-08-04 21:44:28 -07:00
|
|
|
ACPI_FUNCTION_TRACE_PTR("ps_cleanup_scope", parser_state);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
if (!parser_state) {
|
|
|
|
return_VOID;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Delete anything on the scope stack */
|
|
|
|
|
|
|
|
while (parser_state->scope) {
|
2005-08-04 21:44:28 -07:00
|
|
|
scope = acpi_ut_pop_generic_state(&parser_state->scope);
|
|
|
|
acpi_ut_delete_generic_state(scope);
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return_VOID;
|
|
|
|
}
|