2005-04-17 00:20:36 +02:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Name: acutils.h -- prototypes for the common (subsystem-wide) procedures
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
2007-02-02 17:48:24 +01:00
|
|
|
* Copyright (C) 2000 - 2007, R. Byron Moore
|
2005-04-17 00:20:36 +02: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ACUTILS_H
|
|
|
|
#define _ACUTILS_H
|
|
|
|
|
2005-11-02 06:00:00 +01:00
|
|
|
extern const u8 acpi_gbl_resource_aml_sizes[];
|
|
|
|
|
2005-12-16 23:05:00 +01:00
|
|
|
/* Strings used by the disassembler and debugger resource dump routines */
|
|
|
|
|
|
|
|
#if defined(ACPI_DISASSEMBLER) || defined (ACPI_DEBUGGER)
|
|
|
|
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
extern const char *acpi_gbl_bm_decode[];
|
|
|
|
extern const char *acpi_gbl_config_decode[];
|
|
|
|
extern const char *acpi_gbl_consume_decode[];
|
|
|
|
extern const char *acpi_gbl_dec_decode[];
|
|
|
|
extern const char *acpi_gbl_he_decode[];
|
|
|
|
extern const char *acpi_gbl_io_decode[];
|
|
|
|
extern const char *acpi_gbl_ll_decode[];
|
|
|
|
extern const char *acpi_gbl_max_decode[];
|
|
|
|
extern const char *acpi_gbl_mem_decode[];
|
|
|
|
extern const char *acpi_gbl_min_decode[];
|
|
|
|
extern const char *acpi_gbl_mtp_decode[];
|
|
|
|
extern const char *acpi_gbl_rng_decode[];
|
|
|
|
extern const char *acpi_gbl_rw_decode[];
|
|
|
|
extern const char *acpi_gbl_shr_decode[];
|
|
|
|
extern const char *acpi_gbl_siz_decode[];
|
|
|
|
extern const char *acpi_gbl_trs_decode[];
|
|
|
|
extern const char *acpi_gbl_ttp_decode[];
|
|
|
|
extern const char *acpi_gbl_typ_decode[];
|
2005-12-16 23:05:00 +01:00
|
|
|
#endif
|
|
|
|
|
2005-11-02 06:00:00 +01:00
|
|
|
/* Types for Resource descriptor entries */
|
|
|
|
|
|
|
|
#define ACPI_INVALID_RESOURCE 0
|
|
|
|
#define ACPI_FIXED_LENGTH 1
|
|
|
|
#define ACPI_VARIABLE_LENGTH 2
|
|
|
|
#define ACPI_SMALL_VARIABLE_LENGTH 3
|
|
|
|
|
2006-03-17 22:44:00 +01:00
|
|
|
typedef
|
|
|
|
acpi_status(*acpi_walk_aml_callback) (u8 * aml,
|
|
|
|
u32 length,
|
|
|
|
u32 offset,
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 23:15:00 +02:00
|
|
|
u8 resource_index, void **context);
|
2006-03-17 22:44:00 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
typedef
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status(*acpi_pkg_callback) (u8 object_type,
|
|
|
|
union acpi_operand_object * source_object,
|
|
|
|
union acpi_generic_state * state,
|
|
|
|
void *context);
|
|
|
|
|
|
|
|
struct acpi_pkg_info {
|
|
|
|
u8 *free_space;
|
|
|
|
acpi_size length;
|
|
|
|
u32 object_space;
|
|
|
|
u32 num_packages;
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#define REF_INCREMENT (u16) 0
|
|
|
|
#define REF_DECREMENT (u16) 1
|
|
|
|
#define REF_FORCE_DELETE (u16) 2
|
|
|
|
|
|
|
|
/* acpi_ut_dump_buffer */
|
|
|
|
|
|
|
|
#define DB_BYTE_DISPLAY 1
|
|
|
|
#define DB_WORD_DISPLAY 2
|
|
|
|
#define DB_DWORD_DISPLAY 4
|
|
|
|
#define DB_QWORD_DISPLAY 8
|
|
|
|
|
|
|
|
/*
|
2005-04-19 04:49:35 +02:00
|
|
|
* utglobal - Global data structures and procedures
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_init_globals(void);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
char *acpi_ut_get_mutex_name(u32 mutex_id);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
char *acpi_ut_get_type_name(acpi_object_type type);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
char *acpi_ut_get_node_name(void *object);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
char *acpi_ut_get_descriptor_name(void *object);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
char *acpi_ut_get_object_type_name(union acpi_operand_object *obj_desc);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
char *acpi_ut_get_region_name(u8 space_id);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
char *acpi_ut_get_event_name(u32 event_id);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
char acpi_ut_hex_to_ascii_char(acpi_integer integer, u32 position);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
u8 acpi_ut_valid_object_type(acpi_object_type type);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
2005-04-19 04:49:35 +02:00
|
|
|
* utinit - miscellaneous initialization and shutdown
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status acpi_ut_hardware_initialize(void);
|
2005-04-19 04:49:35 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_subsystem_shutdown(void);
|
2005-04-19 04:49:35 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* utclib - Local implementations of C library functions
|
|
|
|
*/
|
2005-04-17 00:20:36 +02:00
|
|
|
#ifndef ACPI_USE_SYSTEM_CLIBRARY
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_size acpi_ut_strlen(const char *string);
|
|
|
|
|
|
|
|
char *acpi_ut_strcpy(char *dst_string, const char *src_string);
|
|
|
|
|
|
|
|
char *acpi_ut_strncpy(char *dst_string,
|
|
|
|
const char *src_string, acpi_size count);
|
|
|
|
|
|
|
|
int acpi_ut_memcmp(const char *buffer1, const char *buffer2, acpi_size count);
|
|
|
|
|
|
|
|
int acpi_ut_strncmp(const char *string1, const char *string2, acpi_size count);
|
|
|
|
|
|
|
|
int acpi_ut_strcmp(const char *string1, const char *string2);
|
|
|
|
|
|
|
|
char *acpi_ut_strcat(char *dst_string, const char *src_string);
|
|
|
|
|
|
|
|
char *acpi_ut_strncat(char *dst_string,
|
|
|
|
const char *src_string, acpi_size count);
|
|
|
|
|
|
|
|
u32 acpi_ut_strtoul(const char *string, char **terminator, u32 base);
|
|
|
|
|
|
|
|
char *acpi_ut_strstr(char *string1, char *string2);
|
|
|
|
|
|
|
|
void *acpi_ut_memcpy(void *dest, const void *src, acpi_size count);
|
|
|
|
|
|
|
|
void *acpi_ut_memset(void *dest, acpi_native_uint value, acpi_size count);
|
|
|
|
|
|
|
|
int acpi_ut_to_upper(int c);
|
|
|
|
|
|
|
|
int acpi_ut_to_lower(int c);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
extern const u8 _acpi_ctype[];
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
#define _ACPI_XA 0x00 /* extra alphabetic - not supported */
|
|
|
|
#define _ACPI_XS 0x40 /* extra space */
|
|
|
|
#define _ACPI_BB 0x00 /* BEL, BS, etc. - not supported */
|
|
|
|
#define _ACPI_CN 0x20 /* CR, FF, HT, NL, VT */
|
|
|
|
#define _ACPI_DI 0x04 /* '0'-'9' */
|
|
|
|
#define _ACPI_LO 0x02 /* 'a'-'z' */
|
|
|
|
#define _ACPI_PU 0x10 /* punctuation */
|
|
|
|
#define _ACPI_SP 0x08 /* space */
|
|
|
|
#define _ACPI_UP 0x01 /* 'A'-'Z' */
|
|
|
|
#define _ACPI_XD 0x80 /* '0'-'9', 'A'-'F', 'a'-'f' */
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#define ACPI_IS_DIGIT(c) (_acpi_ctype[(unsigned char)(c)] & (_ACPI_DI))
|
|
|
|
#define ACPI_IS_SPACE(c) (_acpi_ctype[(unsigned char)(c)] & (_ACPI_SP))
|
|
|
|
#define ACPI_IS_XDIGIT(c) (_acpi_ctype[(unsigned char)(c)] & (_ACPI_XD))
|
|
|
|
#define ACPI_IS_UPPER(c) (_acpi_ctype[(unsigned char)(c)] & (_ACPI_UP))
|
|
|
|
#define ACPI_IS_LOWER(c) (_acpi_ctype[(unsigned char)(c)] & (_ACPI_LO))
|
|
|
|
#define ACPI_IS_PRINT(c) (_acpi_ctype[(unsigned char)(c)] & (_ACPI_LO | _ACPI_UP | _ACPI_DI | _ACPI_SP | _ACPI_PU))
|
|
|
|
#define ACPI_IS_ALPHA(c) (_acpi_ctype[(unsigned char)(c)] & (_ACPI_LO | _ACPI_UP))
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
#endif /* ACPI_USE_SYSTEM_CLIBRARY */
|
2005-04-19 04:49:35 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/*
|
2005-04-19 04:49:35 +02:00
|
|
|
* utcopy - Object construction and conversion interfaces
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_build_simple_object(union acpi_operand_object *obj,
|
|
|
|
union acpi_object *user_obj,
|
|
|
|
u8 * data_space, u32 * buffer_space_used);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_build_package_object(union acpi_operand_object *obj,
|
|
|
|
u8 * buffer, u32 * space_used);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_copy_iobject_to_eobject(union acpi_operand_object *obj,
|
|
|
|
struct acpi_buffer *ret_buffer);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_copy_eobject_to_iobject(union acpi_object *obj,
|
|
|
|
union acpi_operand_object **internal_obj);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_copy_isimple_to_isimple(union acpi_operand_object *source_obj,
|
|
|
|
union acpi_operand_object *dest_obj);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_copy_iobject_to_iobject(union acpi_operand_object *source_desc,
|
|
|
|
union acpi_operand_object **dest_desc,
|
|
|
|
struct acpi_walk_state *walk_state);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
2005-04-19 04:49:35 +02:00
|
|
|
* utcreate - Object creation
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_update_object_reference(union acpi_operand_object *object, u16 action);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
2005-04-19 04:49:35 +02:00
|
|
|
* utdebug - Debug interfaces
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_init_stack_ptr_trace(void);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_track_stack_ptr(void);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
void
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_trace(u32 line_number,
|
|
|
|
const char *function_name, char *module_name, u32 component_id);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
void
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_trace_ptr(u32 line_number,
|
|
|
|
const char *function_name,
|
|
|
|
char *module_name, u32 component_id, void *pointer);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
void
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_trace_u32(u32 line_number,
|
|
|
|
const char *function_name,
|
|
|
|
char *module_name, u32 component_id, u32 integer);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
void
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_trace_str(u32 line_number,
|
|
|
|
const char *function_name,
|
|
|
|
char *module_name, u32 component_id, char *string);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
void
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_exit(u32 line_number,
|
|
|
|
const char *function_name, char *module_name, u32 component_id);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
void
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_status_exit(u32 line_number,
|
|
|
|
const char *function_name,
|
|
|
|
char *module_name, u32 component_id, acpi_status status);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
void
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_value_exit(u32 line_number,
|
|
|
|
const char *function_name,
|
|
|
|
char *module_name, u32 component_id, acpi_integer value);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
void
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_ptr_exit(u32 line_number,
|
|
|
|
const char *function_name,
|
|
|
|
char *module_name, u32 component_id, u8 * ptr);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-01-27 22:43:00 +01:00
|
|
|
void acpi_ut_dump_buffer(u8 * buffer, u32 count, u32 display, u32 component_id);
|
|
|
|
|
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-31 07:00:00 +02:00
|
|
|
void acpi_ut_dump_buffer2(u8 * buffer, u32 count, u32 display);
|
|
|
|
|
2006-01-13 22:22:00 +01:00
|
|
|
void acpi_ut_report_error(char *module_name, u32 line_number);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-01-13 22:22:00 +01:00
|
|
|
void acpi_ut_report_info(char *module_name, u32 line_number);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-01-13 22:22:00 +01:00
|
|
|
void acpi_ut_report_warning(char *module_name, u32 line_number);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-01-27 22:43:00 +01:00
|
|
|
/* Error and message reporting interfaces */
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
void ACPI_INTERNAL_VAR_XFACE
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_debug_print(u32 requested_debug_level,
|
|
|
|
u32 line_number,
|
|
|
|
const char *function_name,
|
|
|
|
char *module_name,
|
2006-01-27 22:43:00 +01:00
|
|
|
u32 component_id, char *format, ...) ACPI_PRINTF_LIKE(6);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
void ACPI_INTERNAL_VAR_XFACE
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_debug_print_raw(u32 requested_debug_level,
|
|
|
|
u32 line_number,
|
|
|
|
const char *function_name,
|
|
|
|
char *module_name,
|
|
|
|
u32 component_id,
|
2006-01-27 22:43:00 +01:00
|
|
|
char *format, ...) ACPI_PRINTF_LIKE(6);
|
|
|
|
|
|
|
|
void ACPI_INTERNAL_VAR_XFACE
|
|
|
|
acpi_ut_error(char *module_name,
|
|
|
|
u32 line_number, char *format, ...) ACPI_PRINTF_LIKE(3);
|
|
|
|
|
|
|
|
void ACPI_INTERNAL_VAR_XFACE
|
|
|
|
acpi_ut_exception(char *module_name,
|
|
|
|
u32 line_number,
|
|
|
|
acpi_status status, char *format, ...) ACPI_PRINTF_LIKE(4);
|
|
|
|
|
|
|
|
void ACPI_INTERNAL_VAR_XFACE
|
|
|
|
acpi_ut_warning(char *module_name,
|
|
|
|
u32 line_number, char *format, ...) ACPI_PRINTF_LIKE(3);
|
|
|
|
|
|
|
|
void ACPI_INTERNAL_VAR_XFACE
|
|
|
|
acpi_ut_info(char *module_name,
|
|
|
|
u32 line_number, char *format, ...) ACPI_PRINTF_LIKE(3);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
2005-04-19 04:49:35 +02:00
|
|
|
* utdelete - Object deletion and reference counts
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_add_reference(union acpi_operand_object *object);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_remove_reference(union acpi_operand_object *object);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_delete_internal_package_object(union acpi_operand_object *object);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_delete_internal_simple_object(union acpi_operand_object *object);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_delete_internal_object_list(union acpi_operand_object **obj_list);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
2005-04-19 04:49:35 +02:00
|
|
|
* uteval - object evaluation
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status acpi_ut_osi_implementation(struct acpi_walk_state *walk_state);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_evaluate_object(struct acpi_namespace_node *prefix_node,
|
|
|
|
char *path,
|
|
|
|
u32 expected_return_btypes,
|
|
|
|
union acpi_operand_object **return_desc);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_evaluate_numeric_object(char *object_name,
|
|
|
|
struct acpi_namespace_node *device_node,
|
|
|
|
acpi_integer * address);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_execute_HID(struct acpi_namespace_node *device_node,
|
|
|
|
struct acpi_device_id *hid);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_execute_CID(struct acpi_namespace_node *device_node,
|
|
|
|
struct acpi_compatible_id_list **return_cid_list);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_execute_STA(struct acpi_namespace_node *device_node,
|
|
|
|
u32 * status_flags);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_execute_UID(struct acpi_namespace_node *device_node,
|
|
|
|
struct acpi_device_id *uid);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_execute_sxds(struct acpi_namespace_node *device_node, u8 * highest);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
2005-04-19 04:49:35 +02:00
|
|
|
* utobject - internal object create/delete/cache routines
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
2005-08-05 06:44:28 +02:00
|
|
|
union acpi_operand_object *acpi_ut_create_internal_object_dbg(char *module_name,
|
|
|
|
u32 line_number,
|
|
|
|
u32 component_id,
|
|
|
|
acpi_object_type
|
|
|
|
type);
|
|
|
|
|
|
|
|
void *acpi_ut_allocate_object_desc_dbg(char *module_name,
|
|
|
|
u32 line_number, u32 component_id);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-07-08 06:00:00 +02:00
|
|
|
#define acpi_ut_create_internal_object(t) acpi_ut_create_internal_object_dbg (_acpi_module_name,__LINE__,_COMPONENT,t)
|
|
|
|
#define acpi_ut_allocate_object_desc() acpi_ut_allocate_object_desc_dbg (_acpi_module_name,__LINE__,_COMPONENT)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_delete_object_desc(union acpi_operand_object *object);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
u8 acpi_ut_valid_internal_object(void *object);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
union acpi_operand_object *acpi_ut_create_buffer_object(acpi_size buffer_size);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
union acpi_operand_object *acpi_ut_create_string_object(acpi_size string_size);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_get_object_size(union acpi_operand_object *obj, acpi_size * obj_length);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
2005-04-19 04:49:35 +02:00
|
|
|
* utstate - Generic state creation/cache routines
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
|
|
|
void
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_push_generic_state(union acpi_generic_state **list_head,
|
|
|
|
union acpi_generic_state *state);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
union acpi_generic_state *acpi_ut_pop_generic_state(union acpi_generic_state
|
|
|
|
**list_head);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
union acpi_generic_state *acpi_ut_create_generic_state(void);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
struct acpi_thread_state *acpi_ut_create_thread_state(void);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
union acpi_generic_state *acpi_ut_create_update_state(union acpi_operand_object
|
|
|
|
*object, u16 action);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
union acpi_generic_state *acpi_ut_create_pkg_state(void *internal_object,
|
|
|
|
void *external_object,
|
|
|
|
u16 index);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_create_update_state_and_push(union acpi_operand_object *object,
|
|
|
|
u16 action,
|
|
|
|
union acpi_generic_state **state_list);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-04-19 04:49:35 +02:00
|
|
|
#ifdef ACPI_FUTURE_USAGE
|
2005-04-17 00:20:36 +02:00
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_create_pkg_state_and_push(void *internal_object,
|
|
|
|
void *external_object,
|
|
|
|
u16 index,
|
|
|
|
union acpi_generic_state **state_list);
|
|
|
|
#endif /* ACPI_FUTURE_USAGE */
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
union acpi_generic_state *acpi_ut_create_control_state(void);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_delete_generic_state(union acpi_generic_state *state);
|
2005-04-19 04:49:35 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/*
|
2005-04-19 04:49:35 +02:00
|
|
|
* utmath
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_divide(acpi_integer in_dividend,
|
|
|
|
acpi_integer in_divisor,
|
|
|
|
acpi_integer * out_quotient, acpi_integer * out_remainder);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_short_divide(acpi_integer in_dividend,
|
|
|
|
u32 divisor,
|
|
|
|
acpi_integer * out_quotient, u32 * out_remainder);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-04-19 04:49:35 +02:00
|
|
|
/*
|
|
|
|
* utmisc
|
|
|
|
*/
|
2007-02-02 17:48:19 +01:00
|
|
|
const char *acpi_ut_validate_exception(acpi_status status);
|
|
|
|
|
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-31 07:00:00 +02:00
|
|
|
u8 acpi_ut_is_aml_table(struct acpi_table_header *table);
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status acpi_ut_allocate_owner_id(acpi_owner_id * owner_id);
|
2005-07-08 06:00:00 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_release_owner_id(acpi_owner_id * owner_id);
|
2005-07-08 06:00:00 +02:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_walk_package_tree(union acpi_operand_object *source_object,
|
|
|
|
void *target_object,
|
|
|
|
acpi_pkg_callback walk_callback, void *context);
|
2005-04-19 04:49:35 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_strupr(char *src_string);
|
2005-04-19 04:49:35 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_print_string(char *string, u8 max_length);
|
2005-04-19 04:49:35 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
u8 acpi_ut_valid_acpi_name(u32 name);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-02-02 17:48:19 +01:00
|
|
|
acpi_name acpi_ut_repair_name(char *name);
|
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-31 07:00:00 +02:00
|
|
|
|
|
|
|
u8 acpi_ut_valid_acpi_char(char character, acpi_native_uint position);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_strtoul64(char *string, u32 base, acpi_integer * ret_integer);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* Values for Base above (16=Hex, 10=Decimal) */
|
|
|
|
|
|
|
|
#define ACPI_ANY_BASE 0
|
|
|
|
|
2006-03-17 22:44:00 +01:00
|
|
|
u32 acpi_ut_dword_byte_swap(u32 value);
|
|
|
|
|
|
|
|
void acpi_ut_set_integer_width(u8 revision);
|
|
|
|
|
|
|
|
#ifdef ACPI_DEBUG_OUTPUT
|
|
|
|
void
|
|
|
|
acpi_ut_display_init_pathname(u8 type,
|
|
|
|
struct acpi_namespace_node *obj_handle,
|
|
|
|
char *path);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* utresrc
|
|
|
|
*/
|
|
|
|
acpi_status
|
|
|
|
acpi_ut_walk_aml_resources(u8 * aml,
|
|
|
|
acpi_size aml_length,
|
2007-05-10 05:34:35 +02:00
|
|
|
acpi_walk_aml_callback user_function,
|
|
|
|
void **context);
|
2006-03-17 22:44:00 +01:00
|
|
|
|
2005-11-02 06:00:00 +01:00
|
|
|
acpi_status acpi_ut_validate_resource(void *aml, u8 * return_index);
|
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
u32 acpi_ut_get_descriptor_length(void *aml);
|
|
|
|
|
|
|
|
u16 acpi_ut_get_resource_length(void *aml);
|
|
|
|
|
2005-11-02 06:00:00 +01:00
|
|
|
u8 acpi_ut_get_resource_header_length(void *aml);
|
|
|
|
|
2005-10-21 06:00:00 +02:00
|
|
|
u8 acpi_ut_get_resource_type(void *aml);
|
|
|
|
|
2005-11-02 06:00:00 +01:00
|
|
|
acpi_status
|
|
|
|
acpi_ut_get_resource_end_tag(union acpi_operand_object *obj_desc,
|
|
|
|
u8 ** end_tag);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
ACPICA 20050617-0624 from Bob Moore <robert.moore@intel.com>
ACPICA 20050617:
Moved the object cache operations into the OS interface
layer (OSL) to allow the host OS to handle these operations
if desired (for example, the Linux OSL will invoke the
slab allocator). This support is optional; the compile
time define ACPI_USE_LOCAL_CACHE may be used to utilize
the original cache code in the ACPI CA core. The new OSL
interfaces are shown below. See utalloc.c for an example
implementation, and acpiosxf.h for the exact interface
definitions. Thanks to Alexey Starikovskiy.
acpi_os_create_cache
acpi_os_delete_cache
acpi_os_purge_cache
acpi_os_acquire_object
acpi_os_release_object
Modified the interfaces to acpi_os_acquire_lock and
acpi_os_release_lock to return and restore a flags
parameter. This fits better with many OS lock models.
Note: the current execution state (interrupt handler
or not) is no longer passed to these interfaces. If
necessary, the OSL must determine this state by itself, a
simple and fast operation. Thanks to Alexey Starikovskiy.
Fixed a problem in the ACPI table handling where a valid
XSDT was assumed present if the revision of the RSDP
was 2 or greater. According to the ACPI specification,
the XSDT is optional in all cases, and the table manager
therefore now checks for both an RSDP >=2 and a valid
XSDT pointer. Otherwise, the RSDT pointer is used.
Some ACPI 2.0 compliant BIOSs contain only the RSDT.
Fixed an interpreter problem with the Mid() operator in the
case of an input string where the resulting output string
is of zero length. It now correctly returns a valid,
null terminated string object instead of a string object
with a null pointer.
Fixed a problem with the control method argument handling
to allow a store to an Arg object that already contains an
object of type Device. The Device object is now correctly
overwritten. Previously, an error was returned.
ACPICA 20050624:
Modified the new OSL cache interfaces to use ACPI_CACHE_T
as the type for the host-defined cache object. This allows
the OSL implementation to define and type this object in
any manner desired, simplifying the OSL implementation.
For example, ACPI_CACHE_T is defined as kmem_cache_t for
Linux, and should be defined in the OS-specific header
file for other operating systems as required.
Changed the interface to AcpiOsAcquireObject to directly
return the requested object as the function return (instead
of ACPI_STATUS.) This change was made for performance
reasons, since this is the purpose of the interface in the
first place. acpi_os_acquire_object is now similar to the
acpi_os_allocate interface. Thanks to Alexey Starikovskiy.
Modified the initialization sequence in
acpi_initialize_subsystem to call the OSL interface
acpi_osl_initialize first, before any local initialization.
This change was required because the global initialization
now calls OSL interfaces.
Restructured the code base to split some files because
of size and/or because the code logically belonged in a
separate file. New files are listed below.
utilities/utcache.c /* Local cache interfaces */
utilities/utmutex.c /* Local mutex support */
utilities/utstate.c /* State object support */
parser/psloop.c /* Main AML parse loop */
Signed-off-by: Len Brown <len.brown@intel.com>
2005-06-24 06:00:00 +02:00
|
|
|
* utmutex - mutex support
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status acpi_ut_mutex_initialize(void);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_mutex_terminate(void);
|
ACPICA 20050617-0624 from Bob Moore <robert.moore@intel.com>
ACPICA 20050617:
Moved the object cache operations into the OS interface
layer (OSL) to allow the host OS to handle these operations
if desired (for example, the Linux OSL will invoke the
slab allocator). This support is optional; the compile
time define ACPI_USE_LOCAL_CACHE may be used to utilize
the original cache code in the ACPI CA core. The new OSL
interfaces are shown below. See utalloc.c for an example
implementation, and acpiosxf.h for the exact interface
definitions. Thanks to Alexey Starikovskiy.
acpi_os_create_cache
acpi_os_delete_cache
acpi_os_purge_cache
acpi_os_acquire_object
acpi_os_release_object
Modified the interfaces to acpi_os_acquire_lock and
acpi_os_release_lock to return and restore a flags
parameter. This fits better with many OS lock models.
Note: the current execution state (interrupt handler
or not) is no longer passed to these interfaces. If
necessary, the OSL must determine this state by itself, a
simple and fast operation. Thanks to Alexey Starikovskiy.
Fixed a problem in the ACPI table handling where a valid
XSDT was assumed present if the revision of the RSDP
was 2 or greater. According to the ACPI specification,
the XSDT is optional in all cases, and the table manager
therefore now checks for both an RSDP >=2 and a valid
XSDT pointer. Otherwise, the RSDT pointer is used.
Some ACPI 2.0 compliant BIOSs contain only the RSDT.
Fixed an interpreter problem with the Mid() operator in the
case of an input string where the resulting output string
is of zero length. It now correctly returns a valid,
null terminated string object instead of a string object
with a null pointer.
Fixed a problem with the control method argument handling
to allow a store to an Arg object that already contains an
object of type Device. The Device object is now correctly
overwritten. Previously, an error was returned.
ACPICA 20050624:
Modified the new OSL cache interfaces to use ACPI_CACHE_T
as the type for the host-defined cache object. This allows
the OSL implementation to define and type this object in
any manner desired, simplifying the OSL implementation.
For example, ACPI_CACHE_T is defined as kmem_cache_t for
Linux, and should be defined in the OS-specific header
file for other operating systems as required.
Changed the interface to AcpiOsAcquireObject to directly
return the requested object as the function return (instead
of ACPI_STATUS.) This change was made for performance
reasons, since this is the purpose of the interface in the
first place. acpi_os_acquire_object is now similar to the
acpi_os_allocate interface. Thanks to Alexey Starikovskiy.
Modified the initialization sequence in
acpi_initialize_subsystem to call the OSL interface
acpi_osl_initialize first, before any local initialization.
This change was required because the global initialization
now calls OSL interfaces.
Restructured the code base to split some files because
of size and/or because the code logically belonged in a
separate file. New files are listed below.
utilities/utcache.c /* Local cache interfaces */
utilities/utmutex.c /* Local mutex support */
utilities/utstate.c /* State object support */
parser/psloop.c /* Main AML parse loop */
Signed-off-by: Len Brown <len.brown@intel.com>
2005-06-24 06:00:00 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status acpi_ut_acquire_mutex(acpi_mutex_handle mutex_id);
|
ACPICA 20050617-0624 from Bob Moore <robert.moore@intel.com>
ACPICA 20050617:
Moved the object cache operations into the OS interface
layer (OSL) to allow the host OS to handle these operations
if desired (for example, the Linux OSL will invoke the
slab allocator). This support is optional; the compile
time define ACPI_USE_LOCAL_CACHE may be used to utilize
the original cache code in the ACPI CA core. The new OSL
interfaces are shown below. See utalloc.c for an example
implementation, and acpiosxf.h for the exact interface
definitions. Thanks to Alexey Starikovskiy.
acpi_os_create_cache
acpi_os_delete_cache
acpi_os_purge_cache
acpi_os_acquire_object
acpi_os_release_object
Modified the interfaces to acpi_os_acquire_lock and
acpi_os_release_lock to return and restore a flags
parameter. This fits better with many OS lock models.
Note: the current execution state (interrupt handler
or not) is no longer passed to these interfaces. If
necessary, the OSL must determine this state by itself, a
simple and fast operation. Thanks to Alexey Starikovskiy.
Fixed a problem in the ACPI table handling where a valid
XSDT was assumed present if the revision of the RSDP
was 2 or greater. According to the ACPI specification,
the XSDT is optional in all cases, and the table manager
therefore now checks for both an RSDP >=2 and a valid
XSDT pointer. Otherwise, the RSDT pointer is used.
Some ACPI 2.0 compliant BIOSs contain only the RSDT.
Fixed an interpreter problem with the Mid() operator in the
case of an input string where the resulting output string
is of zero length. It now correctly returns a valid,
null terminated string object instead of a string object
with a null pointer.
Fixed a problem with the control method argument handling
to allow a store to an Arg object that already contains an
object of type Device. The Device object is now correctly
overwritten. Previously, an error was returned.
ACPICA 20050624:
Modified the new OSL cache interfaces to use ACPI_CACHE_T
as the type for the host-defined cache object. This allows
the OSL implementation to define and type this object in
any manner desired, simplifying the OSL implementation.
For example, ACPI_CACHE_T is defined as kmem_cache_t for
Linux, and should be defined in the OS-specific header
file for other operating systems as required.
Changed the interface to AcpiOsAcquireObject to directly
return the requested object as the function return (instead
of ACPI_STATUS.) This change was made for performance
reasons, since this is the purpose of the interface in the
first place. acpi_os_acquire_object is now similar to the
acpi_os_allocate interface. Thanks to Alexey Starikovskiy.
Modified the initialization sequence in
acpi_initialize_subsystem to call the OSL interface
acpi_osl_initialize first, before any local initialization.
This change was required because the global initialization
now calls OSL interfaces.
Restructured the code base to split some files because
of size and/or because the code logically belonged in a
separate file. New files are listed below.
utilities/utcache.c /* Local cache interfaces */
utilities/utmutex.c /* Local mutex support */
utilities/utstate.c /* State object support */
parser/psloop.c /* Main AML parse loop */
Signed-off-by: Len Brown <len.brown@intel.com>
2005-06-24 06:00:00 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status acpi_ut_release_mutex(acpi_mutex_handle mutex_id);
|
ACPICA 20050617-0624 from Bob Moore <robert.moore@intel.com>
ACPICA 20050617:
Moved the object cache operations into the OS interface
layer (OSL) to allow the host OS to handle these operations
if desired (for example, the Linux OSL will invoke the
slab allocator). This support is optional; the compile
time define ACPI_USE_LOCAL_CACHE may be used to utilize
the original cache code in the ACPI CA core. The new OSL
interfaces are shown below. See utalloc.c for an example
implementation, and acpiosxf.h for the exact interface
definitions. Thanks to Alexey Starikovskiy.
acpi_os_create_cache
acpi_os_delete_cache
acpi_os_purge_cache
acpi_os_acquire_object
acpi_os_release_object
Modified the interfaces to acpi_os_acquire_lock and
acpi_os_release_lock to return and restore a flags
parameter. This fits better with many OS lock models.
Note: the current execution state (interrupt handler
or not) is no longer passed to these interfaces. If
necessary, the OSL must determine this state by itself, a
simple and fast operation. Thanks to Alexey Starikovskiy.
Fixed a problem in the ACPI table handling where a valid
XSDT was assumed present if the revision of the RSDP
was 2 or greater. According to the ACPI specification,
the XSDT is optional in all cases, and the table manager
therefore now checks for both an RSDP >=2 and a valid
XSDT pointer. Otherwise, the RSDT pointer is used.
Some ACPI 2.0 compliant BIOSs contain only the RSDT.
Fixed an interpreter problem with the Mid() operator in the
case of an input string where the resulting output string
is of zero length. It now correctly returns a valid,
null terminated string object instead of a string object
with a null pointer.
Fixed a problem with the control method argument handling
to allow a store to an Arg object that already contains an
object of type Device. The Device object is now correctly
overwritten. Previously, an error was returned.
ACPICA 20050624:
Modified the new OSL cache interfaces to use ACPI_CACHE_T
as the type for the host-defined cache object. This allows
the OSL implementation to define and type this object in
any manner desired, simplifying the OSL implementation.
For example, ACPI_CACHE_T is defined as kmem_cache_t for
Linux, and should be defined in the OS-specific header
file for other operating systems as required.
Changed the interface to AcpiOsAcquireObject to directly
return the requested object as the function return (instead
of ACPI_STATUS.) This change was made for performance
reasons, since this is the purpose of the interface in the
first place. acpi_os_acquire_object is now similar to the
acpi_os_allocate interface. Thanks to Alexey Starikovskiy.
Modified the initialization sequence in
acpi_initialize_subsystem to call the OSL interface
acpi_osl_initialize first, before any local initialization.
This change was required because the global initialization
now calls OSL interfaces.
Restructured the code base to split some files because
of size and/or because the code logically belonged in a
separate file. New files are listed below.
utilities/utcache.c /* Local cache interfaces */
utilities/utmutex.c /* Local mutex support */
utilities/utstate.c /* State object support */
parser/psloop.c /* Main AML parse loop */
Signed-off-by: Len Brown <len.brown@intel.com>
2005-06-24 06:00:00 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* utalloc - memory allocation and object caching
|
|
|
|
*/
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status acpi_ut_create_caches(void);
|
ACPICA 20050617-0624 from Bob Moore <robert.moore@intel.com>
ACPICA 20050617:
Moved the object cache operations into the OS interface
layer (OSL) to allow the host OS to handle these operations
if desired (for example, the Linux OSL will invoke the
slab allocator). This support is optional; the compile
time define ACPI_USE_LOCAL_CACHE may be used to utilize
the original cache code in the ACPI CA core. The new OSL
interfaces are shown below. See utalloc.c for an example
implementation, and acpiosxf.h for the exact interface
definitions. Thanks to Alexey Starikovskiy.
acpi_os_create_cache
acpi_os_delete_cache
acpi_os_purge_cache
acpi_os_acquire_object
acpi_os_release_object
Modified the interfaces to acpi_os_acquire_lock and
acpi_os_release_lock to return and restore a flags
parameter. This fits better with many OS lock models.
Note: the current execution state (interrupt handler
or not) is no longer passed to these interfaces. If
necessary, the OSL must determine this state by itself, a
simple and fast operation. Thanks to Alexey Starikovskiy.
Fixed a problem in the ACPI table handling where a valid
XSDT was assumed present if the revision of the RSDP
was 2 or greater. According to the ACPI specification,
the XSDT is optional in all cases, and the table manager
therefore now checks for both an RSDP >=2 and a valid
XSDT pointer. Otherwise, the RSDT pointer is used.
Some ACPI 2.0 compliant BIOSs contain only the RSDT.
Fixed an interpreter problem with the Mid() operator in the
case of an input string where the resulting output string
is of zero length. It now correctly returns a valid,
null terminated string object instead of a string object
with a null pointer.
Fixed a problem with the control method argument handling
to allow a store to an Arg object that already contains an
object of type Device. The Device object is now correctly
overwritten. Previously, an error was returned.
ACPICA 20050624:
Modified the new OSL cache interfaces to use ACPI_CACHE_T
as the type for the host-defined cache object. This allows
the OSL implementation to define and type this object in
any manner desired, simplifying the OSL implementation.
For example, ACPI_CACHE_T is defined as kmem_cache_t for
Linux, and should be defined in the OS-specific header
file for other operating systems as required.
Changed the interface to AcpiOsAcquireObject to directly
return the requested object as the function return (instead
of ACPI_STATUS.) This change was made for performance
reasons, since this is the purpose of the interface in the
first place. acpi_os_acquire_object is now similar to the
acpi_os_allocate interface. Thanks to Alexey Starikovskiy.
Modified the initialization sequence in
acpi_initialize_subsystem to call the OSL interface
acpi_osl_initialize first, before any local initialization.
This change was required because the global initialization
now calls OSL interfaces.
Restructured the code base to split some files because
of size and/or because the code logically belonged in a
separate file. New files are listed below.
utilities/utcache.c /* Local cache interfaces */
utilities/utmutex.c /* Local mutex support */
utilities/utstate.c /* State object support */
parser/psloop.c /* Main AML parse loop */
Signed-off-by: Len Brown <len.brown@intel.com>
2005-06-24 06:00:00 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status acpi_ut_delete_caches(void);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_status acpi_ut_validate_buffer(struct acpi_buffer *buffer);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_initialize_buffer(struct acpi_buffer *buffer,
|
|
|
|
acpi_size required_length);
|
|
|
|
|
|
|
|
void *acpi_ut_allocate(acpi_size size, u32 component, char *module, u32 line);
|
|
|
|
|
2006-03-17 22:44:00 +01:00
|
|
|
void *acpi_ut_allocate_zeroed(acpi_size size,
|
|
|
|
u32 component, char *module, u32 line);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#ifdef ACPI_DBG_TRACK_ALLOCATIONS
|
2005-08-05 06:44:28 +02:00
|
|
|
void *acpi_ut_allocate_and_track(acpi_size size,
|
|
|
|
u32 component, char *module, u32 line);
|
|
|
|
|
2006-03-17 22:44:00 +01:00
|
|
|
void *acpi_ut_allocate_zeroed_and_track(acpi_size size,
|
|
|
|
u32 component, char *module, u32 line);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
void
|
2005-08-05 06:44:28 +02:00
|
|
|
acpi_ut_free_and_track(void *address, u32 component, char *module, u32 line);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-04-19 04:49:35 +02:00
|
|
|
#ifdef ACPI_FUTURE_USAGE
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_dump_allocation_info(void);
|
|
|
|
#endif /* ACPI_FUTURE_USAGE */
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
void acpi_ut_dump_allocations(u32 component, char *module);
|
2006-03-17 22:44:00 +01:00
|
|
|
|
|
|
|
acpi_status
|
|
|
|
acpi_ut_create_list(char *list_name,
|
|
|
|
u16 object_size, struct acpi_memory_list **return_cache);
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif
|
|
|
|
|
2005-08-05 06:44:28 +02:00
|
|
|
#endif /* _ACUTILS_H */
|