diff options
author | Bob Moore <robert.moore@intel.com> | 2006-04-21 17:15:00 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2006-06-14 02:30:55 -0400 |
commit | b229cf92eee616c7cb5ad8cdb35a19b119f00bc8 (patch) | |
tree | 74b52bec6ec029859c2320aba227290a503af31a /include/acpi/acconfig.h | |
parent | 793c2388cae3fd023b3b5166354931752d42353c (diff) |
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>
Diffstat (limited to 'include/acpi/acconfig.h')
-rw-r--r-- | include/acpi/acconfig.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/include/acpi/acconfig.h b/include/acpi/acconfig.h index b6bba7db52d9..11e72e6cdc01 100644 --- a/include/acpi/acconfig.h +++ b/include/acpi/acconfig.h | |||
@@ -63,7 +63,7 @@ | |||
63 | 63 | ||
64 | /* Current ACPICA subsystem version in YYYYMMDD format */ | 64 | /* Current ACPICA subsystem version in YYYYMMDD format */ |
65 | 65 | ||
66 | #define ACPI_CA_VERSION 0x20060331 | 66 | #define ACPI_CA_VERSION 0x20060421 |
67 | 67 | ||
68 | /* | 68 | /* |
69 | * OS name, used for the _OS object. The _OS object is essentially obsolete, | 69 | * OS name, used for the _OS object. The _OS object is essentially obsolete, |
@@ -171,13 +171,15 @@ | |||
171 | #define ACPI_MAX_ADDRESS_SPACE 255 | 171 | #define ACPI_MAX_ADDRESS_SPACE 255 |
172 | 172 | ||
173 | /* Array sizes. Used for range checking also */ | 173 | /* Array sizes. Used for range checking also */ |
174 | #define ACPI_MAX_MATCH_OPCODE 5 | ||
174 | 175 | ||
176 | #if 0 | ||
175 | #define ACPI_NUM_ACCESS_TYPES 6 | 177 | #define ACPI_NUM_ACCESS_TYPES 6 |
176 | #define ACPI_NUM_UPDATE_RULES 3 | 178 | #define ACPI_NUM_UPDATE_RULES 3 |
177 | #define ACPI_NUM_LOCK_RULES 2 | 179 | #define ACPI_NUM_LOCK_RULES 2 |
178 | #define ACPI_NUM_MATCH_OPS 6 | ||
179 | #define ACPI_NUM_OPCODES 256 | ||
180 | #define ACPI_NUM_FIELD_NAMES 2 | 180 | #define ACPI_NUM_FIELD_NAMES 2 |
181 | #define ACPI_NUM_OPCODES 256 | ||
182 | #endif | ||
181 | 183 | ||
182 | /* RSDP checksums */ | 184 | /* RSDP checksums */ |
183 | 185 | ||
@@ -188,10 +190,6 @@ | |||
188 | 190 | ||
189 | #define ACPI_SMBUS_BUFFER_SIZE 34 | 191 | #define ACPI_SMBUS_BUFFER_SIZE 34 |
190 | 192 | ||
191 | /* Number of strings associated with the _OSI reserved method */ | ||
192 | |||
193 | #define ACPI_NUM_OSI_STRINGS 12 | ||
194 | |||
195 | /****************************************************************************** | 193 | /****************************************************************************** |
196 | * | 194 | * |
197 | * ACPI AML Debugger | 195 | * ACPI AML Debugger |