1 ----------------------------------------
2 15 November 2013. Summary of changes for version 20131115:
4 This release is available at https://acpica.org/downloads
7 1) ACPICA kernel-resident subsystem:
9 Resource Manager: Fixed loop termination for the "get AML length"
10 function. The loop previously had an error termination on a NULL resource
11 pointer, which can never happen since the loop simply increments a valid
12 resource pointer. This fix changes the loop to terminate with an error on
13 an invalid end-of-buffer condition. The problem can be seen as an
14 infinite loop by callers to AcpiSetCurrentResources with an invalid or
15 corrupted resource descriptor, or a resource descriptor that is missing
16 an END_TAG descriptor. Reported by Dan Carpenter
17 <dan.carpenter@oracle.com>. Lv Zheng, Bob Moore.
19 Table unload and ACPICA termination: Delete all attached data objects
20 during namespace node deletion. This fix updates namespace node deletion
21 to delete the entire list of attached objects (attached via
22 AcpiAttachObject) instead of just one of the attached items. ACPICA BZ
23 1024. Tomasz Nowicki (tomasz.nowicki@linaro.org).
25 ACPICA termination: Added support to delete all objects attached to the
26 root namespace node. This fix deletes any and all objects that have been
27 attached to the root node via AcpiAttachData. Previously, none of these
28 objects were deleted. Reported by Tomasz Nowicki. ACPICA BZ 1026.
30 Debug output: Do not emit the function nesting level for the in-kernel
31 build. The nesting level is really only useful during a single-thread
32 execution. Therefore, only enable this output for the AcpiExec utility.
33 Also, only emit the thread ID when executing under AcpiExec (Context
34 switches are still always detected and a message is emitted). ACPICA BZ
37 Example Code and Data Size: These are the sizes for the OS-independent
38 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
39 debug version of the code includes the debug output trace mechanism and
40 has a much larger code and data size.
43 Non-Debug Version: 95.9K Code, 27.0K Data, 122.9K Total
44 Debug Version: 185.1K Code, 77.2K Data, 262.3K Total
46 Non-Debug Version: 95.8K Code, 27.0K Data, 122.8K Total
47 Debug Version: 185.2K Code, 77.2K Data, 262.4K Total
50 2) iASL Compiler/Disassembler and Tools:
52 AcpiExec/Unix-OSL: Use <termios.h> instead of <termio.h>. This is the
53 correct portable POSIX header for terminal control functions.
55 Disassembler: Fixed control method invocation issues related to the use
56 of the CondRefOf() operator. The problem is seen in the disassembly where
57 control method invocations may not be disassembled properly if the
58 control method name has been used previously as an argument to CondRefOf.
59 The solution is to not attempt to emit an external declaration for the
60 CondRefOf target (it is not necessary in the first place). This prevents
61 disassembler object type confusion. ACPICA BZ 988.
63 Unix Makefiles: Added an option to disable compiler optimizations and the
64 _FORTIFY_SOURCE flag. Some older compilers have problems compiling ACPICA
65 with optimizations (reportedly, gcc 4.4 for example). This change adds a
66 command line option for make (NOOPT) that disables all compiler
67 optimizations and the _FORTIFY_SOURCE compiler flag. The default
68 optimization is -O2 with the _FORTIFY_SOURCE flag specified. ACPICA BZ
69 1034. Lv Zheng, Bob Moore.
71 Tests/ASLTS: Added options to specify individual test cases and modes.
72 This allows testers running aslts.sh to optionally specify individual
73 test modes and test cases. Also added an option to disable the forced
74 generation of the ACPICA tools from source if desired. Lv Zheng.
76 ----------------------------------------
77 27 September 2013. Summary of changes for version 20130927:
79 This release is available at https://acpica.org/downloads
82 1) ACPICA kernel-resident subsystem:
84 Fixed a problem with store operations to reference objects. This change
85 fixes a problem where a Store operation to an ArgX object that contained
87 reference to a field object did not complete the automatic dereference
89 then write to the actual field object. Instead, the object type of the
90 field object was inadvertently changed to match the type of the source
91 operand. The new behavior will actually write to the field object (buffer
92 field or field unit), thus matching the correct ACPI-defined behavior.
94 Implemented support to allow the host to redefine individual OSL
95 prototypes. This change enables the host to redefine OSL prototypes found
96 in the acpiosxf.h file. This allows the host to implement OSL interfaces
97 with a macro or inlined function. Further, it allows the host to add any
98 additional required modifiers such as __iomem, __init, __exit, etc., as
99 necessary on a per-interface basis. Enables maximum flexibility for the
100 OSL interfaces. Lv Zheng.
102 Hardcoded the access width for the FADT-defined reset register. The ACPI
103 specification requires the reset register width to be 8 bits. ACPICA now
104 hardcodes the width to 8 and ignores the FADT width value. This provides
105 compatibility with other ACPI implementations that have allowed BIOS code
106 with bad register width values to go unnoticed. Matthew Garett, Bob
110 Changed the position/use of the ACPI_PRINTF_LIKE macro. This macro is
112 in the OSL header (acpiosxf). The change modifies the position of this
113 macro in each instance where it is used (AcpiDebugPrint, etc.) to avoid
114 build issues if the OSL defines the implementation of the interface to be
115 an inline stub function. Lv Zheng.
117 Deployed a new macro ACPI_EXPORT_SYMBOL_INIT for the main ACPICA
118 initialization interfaces. This change adds a new macro for the main init
119 and terminate external interfaces in order to support hosts that require
120 additional or different processing for these functions. Changed from
121 ACPI_EXPORT_SYMBOL to ACPI_EXPORT_SYMBOL_INIT for these functions. Lv
124 Cleaned up the memory allocation macros for configurability. In the
126 case, the ACPI_ALLOCATE and related macros now resolve directly to their
127 respective AcpiOs* OSL interfaces. Two options:
128 1) The ACPI_ALLOCATE_ZEROED macro uses a simple local implementation by
129 default, unless overridden by the USE_NATIVE_ALLOCATE_ZEROED define.
130 2) For AcpiExec (and for debugging), the macros can optionally be
132 to the local ACPICA interfaces that track each allocation (local tracking
133 is used to immediately detect memory leaks).
136 Simplified the configuration for ACPI_REDUCED_HARDWARE. Allows the kernel
137 to predefine this macro to either TRUE or FALSE during the system build.
139 Replaced __FUNCTION_ with __func__ in the gcc-specific header.
141 Example Code and Data Size: These are the sizes for the OS-independent
142 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
143 debug version of the code includes the debug output trace mechanism and
144 has a much larger code and data size.
147 Non-Debug Version: 95.8K Code, 27.0K Data, 122.8K Total
148 Debug Version: 185.2K Code, 77.2K Data, 262.4K Total
150 Non-Debug Version: 96.7K Code, 27.1K Data, 123.9K Total
151 Debug Version: 184.4K Code, 76.8K Data, 261.2K Total
154 2) iASL Compiler/Disassembler and Tools:
156 iASL: Implemented wildcard support for the -e option. This simplifies use
157 when there are many SSDTs that must be included to resolve external
159 declarations. ACPICA BZ 1041. Example:
160 iasl -e ssdt*.dat -d dsdt.dat
162 AcpiExec: Add history/line-editing for Unix/Linux systems. This change
163 adds a portable module that implements full history and limited line
164 editing for Unix and Linux systems. It does not use readline() due to
165 portability issues. Instead it uses the POSIX termio interface to put the
166 terminal in raw input mode so that the various special keys can be
168 (such as up/down-arrow for history support and left/right-arrow for line
169 editing). Uses the existing debugger history mechanism. ACPICA BZ 1036.
171 AcpiXtract: Add support to handle (ignore) "empty" lines containing only
172 one or more spaces. This provides compatible with early or different
173 versions of the AcpiDump utility. ACPICA BZ 1044.
175 AcpiDump: Do not ignore tables that contain only an ACPI table header.
176 Apparently, some BIOSs create SSDTs that contain an ACPI table header but
177 no other data. This change adds support to dump these tables. Any tables
178 shorter than the length of an ACPI table header remain in error (an error
179 message is emitted). Reported by Yi Li.
181 Debugger: Echo actual command along with the "unknown command" message.
183 ----------------------------------------
184 23 August 2013. Summary of changes for version 20130823:
186 1) ACPICA kernel-resident subsystem:
188 Implemented support for host-installed System Control Interrupt (SCI)
189 handlers. Certain ACPI functionality requires the host to handle raw
190 SCIs. For example, the "SCI Doorbell" that is defined for memory power
191 state support requires the host device driver to handle SCIs to examine
192 if the doorbell has been activated. Multiple SCI handlers can be
193 installed to allow for future expansion. New external interfaces are
194 AcpiInstallSciHandler, AcpiRemoveSciHandler; see the ACPICA reference for
195 details. Lv Zheng, Bob Moore. ACPICA BZ 1032.
197 Operation region support: Never locally free the handler "context"
198 pointer. This change removes some dangerous code that attempts to free
199 the handler context pointer in some (rare) circumstances. The owner of
200 the handler owns this pointer and the ACPICA code should never touch it.
201 Although not seen to be an issue in any kernel, it did show up as a
202 problem (fault) under AcpiExec. Also, set the internal storage field for
203 the context pointer to zero when the region is deactivated, simply for
204 sanity. David Box. ACPICA BZ 1039.
206 AcpiRead: On error, do not modify the return value target location. If an
207 error happens in the middle of a split 32/32 64-bit I/O operation, do not
208 modify the target of the return value pointer. Makes the code consistent
209 with the rest of ACPICA. Bjorn Helgaas.
211 Example Code and Data Size: These are the sizes for the OS-independent
212 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
213 debug version of the code includes the debug output trace mechanism and
214 has a much larger code and data size.
217 Non-Debug Version: 96.7K Code, 27.1K Data, 123.9K Total
218 Debug Version: 184.4K Code, 76.8K Data, 261.2K Total
220 Non-Debug Version: 96.2K Code, 27.1K Data, 123.3K Total
221 Debug Version: 185.4K Code, 77.1K Data, 262.5K Total
224 2) iASL Compiler/Disassembler and Tools:
226 AcpiDump: Implemented several new features and fixed some problems:
227 1) Added support to dump the RSDP, RSDT, and XSDT tables.
228 2) Added support for multiple table instances (SSDT, UEFI).
229 3) Added option to dump "customized" (overridden) tables (-c).
230 4) Fixed a problem where some table filenames were improperly
232 5) Improved some error messages, removed some unnecessary messages.
234 iASL: Implemented additional support for disassembly of ACPI tables that
235 contain invocations of external control methods. The -fe<file> option
236 allows the import of a file that specifies the external methods along
237 with the required number of arguments for each -- allowing for the
238 correct disassembly of the table. This is a workaround for a limitation
239 of AML code where the disassembler often cannot determine the number of
240 arguments required for an external control method and generates incorrect
241 ASL code. See the iASL reference for details. ACPICA BZ 1030.
243 Debugger: Implemented a new command (paths) that displays the full
244 pathnames (namepaths) and object types of all objects in the namespace.
245 This is an alternative to the namespace command.
247 Debugger: Implemented a new command (sci) that invokes the SCI dispatch
248 mechanism and any installed handlers.
250 iASL: Fixed a possible segfault for "too many parent prefixes" condition.
251 This can occur if there are too many parent prefixes in a namepath (for
252 example, ^^^^^^PCI0.ECRD). ACPICA BZ 1035.
254 Application OSLs: Set the return value for the PCI read functions. These
255 functions simply return AE_OK, but should set the return value to zero
256 also. This change implements this. ACPICA BZ 1038.
258 Debugger: Prevent possible command line buffer overflow. Increase the
259 size of a couple of the debugger line buffers, and ensure that overflow
260 cannot happen. ACPICA BZ 1037.
262 iASL: Changed to abort immediately on serious errors during the parsing
263 phase. Due to the nature of ASL, there is no point in attempting to
264 compile these types of errors, and they typically end up causing a
265 cascade of hundreds of errors which obscure the original problem.
267 ----------------------------------------
268 25 July 2013. Summary of changes for version 20130725:
270 1) ACPICA kernel-resident subsystem:
272 Fixed a problem with the DerefOf operator where references to FieldUnits
273 and BufferFields incorrectly returned the parent object, not the actual
274 value of the object. After this change, a dereference of a FieldUnit
275 reference results in a read operation on the field to get the value, and
276 likewise, the appropriate BufferField value is extracted from the target
279 Fixed a problem where the _WAK method could cause a fault under these
280 circumstances: 1) Interpreter slack mode was not enabled, and 2) the _WAK
281 method returned no value. The problem is rarely seen because most kernels
282 run ACPICA in slack mode.
284 For the DerefOf operator, a fatal error now results if an attempt is made
285 to dereference a reference (created by the Index operator) to a NULL
286 package element. Provides compatibility with other ACPI implementations,
287 and this behavior will be added to a future version of the ACPI
290 The ACPI Power Management Timer (defined in the FADT) is now optional.
291 This provides compatibility with other ACPI implementations and will
292 appear in the next version of the ACPI specification. If there is no PM
293 Timer on the platform, AcpiGetTimer returns AE_SUPPORT. An address of
294 zero in the FADT indicates no PM timer.
296 Implemented a new interface for _OSI support, AcpiUpdateInterfaces. This
297 allows the host to globally enable/disable all vendor strings, all
298 feature strings, or both. Intended to be primarily used for debugging
299 purposes only. Lv Zheng.
301 Expose the collected _OSI data to the host via a global variable. This
302 data tracks the highest level vendor ID that has been invoked by the BIOS
303 so that the host (and potentially ACPICA itself) can change behaviors
304 based upon the age of the BIOS.
306 Example Code and Data Size: These are the sizes for the OS-independent
307 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
308 debug version of the code includes the debug output trace mechanism and
309 has a much larger code and data size.
312 Non-Debug Version: 96.2K Code, 27.1K Data, 123.3K Total
313 Debug Version: 184.4K Code, 76.8K Data, 261.2K Total
315 Non-Debug Version: 95.9K Code, 26.9K Data, 122.8K Total
316 Debug Version: 184.1K Code, 76.7K Data, 260.8K Total
319 2) iASL Compiler/Disassembler and Tools:
321 iASL: Created the following enhancements for the -so option (create
323 1)Add offsets for the last nameseg in each namepath for every supported
325 2)Add support for Processor, Device, Thermal Zone, and Scope objects
326 3)Add the actual AML opcode for the parent object of every supported
328 4)Add support for the ZERO/ONE/ONES AML opcodes for integer objects
330 Disassembler: Emit all unresolved external symbols in a single block.
331 These are external references to control methods that could not be
332 resolved, and thus, the disassembler had to make a guess at the number of
335 iASL: The argument to the -T option (create table template) is now
336 optional. If not specified, the default table is a DSDT, typically the
339 ----------------------------------------
340 26 June 2013. Summary of changes for version 20130626:
342 1) ACPICA kernel-resident subsystem:
344 Fixed an issue with runtime repair of the _CST object. Null or invalid
345 elements were not always removed properly. Lv Zheng.
347 Removed an arbitrary restriction of 256 GPEs per GPE block (such as the
348 FADT-defined GPE0 and GPE1). For GPE0, GPE1, and each GPE Block Device,
349 the maximum number of GPEs is 1016. Use of multiple GPE block devices
350 makes the system-wide number of GPEs essentially unlimited.
352 Example Code and Data Size: These are the sizes for the OS-independent
353 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
354 debug version of the code includes the debug output trace mechanism and
355 has a much larger code and data size.
358 Non-Debug Version: 95.9K Code, 26.9K Data, 122.8K Total
359 Debug Version: 184.1K Code, 76.7K Data, 260.8K Total
361 Non-Debug Version: 96.0K Code, 27.0K Data, 123.0K Total
362 Debug Version: 184.1K Code, 76.8K Data, 260.9K Total
365 2) iASL Compiler/Disassembler and Tools:
367 Portable AcpiDump: Implemented full support for the Linux and FreeBSD
368 hosts. Now supports Linux, FreeBSD, and Windows.
370 Disassembler: Added some missing types for the HEST and EINJ tables: "Set
371 Error Type With Address", "CMCI", "MCE", and "Flush Cacheline".
373 iASL/Preprocessor: Implemented full support for nested
374 #if/#else/#elif/#endif blocks. Allows arbitrary depth of nested blocks.
376 Disassembler: Expanded maximum output string length to 64K. Was 256 bytes
377 max. The original purpose of this constraint was to limit the amount of
378 debug output. However, the string function in question (UtPrintString) is
379 now used for the disassembler also, where 256 bytes is insufficient.
380 Reported by RehabMan@GitHub.
382 iASL/DataTables: Fixed some problems and issues with compilation of DMAR
383 tables. ACPICA BZ 999. Lv Zheng.
385 iASL: Fixed a couple of error exit issues that could result in a "Could
386 not delete <file>" message during ASL compilation.
388 AcpiDump: Allow "FADT" and "MADT" as valid table signatures, even though
389 the actual signatures for these tables are "FACP" and "APIC",
392 AcpiDump: Added support for multiple UEFI tables. Only SSDT and UEFI
393 tables are allowed to have multiple instances.
395 ----------------------------------------
396 17 May 2013. Summary of changes for version 20130517:
398 1) ACPICA kernel-resident subsystem:
400 Fixed a regression introduced in version 20130328 for _INI methods. This
401 change fixes a problem introduced in 20130328 where _INI methods are no
402 longer executed properly because of a memory block that was not
403 initialized correctly. ACPICA BZ 1016. Tomasz Nowicki
404 <tomasz.nowicki@linaro.org>.
406 Fixed a possible problem with the new extended sleep registers in the
408 5.0 FADT. Do not use these registers (even if populated) unless the HW-
409 reduced bit is set in the FADT (as per the ACPI specification). ACPICA BZ
412 Implemented return value repair code for _CST predefined objects: Sort
414 list and detect/remove invalid entries. ACPICA BZ 890. Lv Zheng.
416 Implemented a debug-only option to disable loading of SSDTs from the
417 RSDT/XSDT during ACPICA initialization. This can be useful for debugging
418 ACPI problems on some machines. Set AcpiGbl_DisableSsdtTableLoad in
419 acglobal.h - ACPICA BZ 1005. Lv Zheng.
421 Fixed some issues in the ACPICA initialization and termination code:
422 Tomasz Nowicki <tomasz.nowicki@linaro.org>
423 1) Clear events initialized flag upon event component termination. ACPICA
425 2) Fixed a possible memory leak in GPE init error path. ACPICA BZ 1018.
426 3) Delete global lock pending lock during termination. ACPICA BZ 1012.
427 4) Clear debug buffer global on termination to prevent possible multiple
428 delete. ACPICA BZ 1010.
430 Standardized all switch() blocks across the entire source base. After
432 years, different formatting for switch() had crept in. This change makes
433 the formatting of every switch block identical. ACPICA BZ 997. Chao Guan.
435 Split some files to enhance ACPICA modularity and configurability:
436 1) Split buffer dump routines into utilities/utbuffer.c
437 2) Split internal error message routines into utilities/uterror.c
438 3) Split table print utilities into tables/tbprint.c
439 4) Split iASL command-line option processing into asloptions.c
441 Makefile enhancements:
442 1) Support for all new files above.
443 2) Abort make on errors from any subcomponent. Chao Guan.
444 3) Add build support for Apple Mac OS X. Liang Qi.
446 Example Code and Data Size: These are the sizes for the OS-independent
447 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
448 debug version of the code includes the debug output trace mechanism and
449 has a much larger code and data size.
452 Non-Debug Version: 96.0K Code, 27.0K Data, 123.0K Total
453 Debug Version: 184.1K Code, 76.8K Data, 260.9K Total
455 Non-Debug Version: 95.6K Code, 26.8K Data, 122.4K Total
456 Debug Version: 183.5K Code, 76.6K Data, 260.1K Total
459 2) iASL Compiler/Disassembler and Tools:
461 New utility: Implemented an easily portable version of the acpidump
462 utility to extract ACPI tables from the system (or a file) in an ASCII
464 dump format. The top-level code implements the various command line
465 options, file I/O, and table dump routines. To port to a new host, only
466 three functions need to be implemented to get tables -- since this
467 functionality is OS-dependent. See the tools/acpidump/apmain.c module and
468 the ACPICA reference for porting instructions. ACPICA BZ 859. Notes:
469 1) The Windows version obtains the ACPI tables from the Registry.
470 2) The Linux version is under development.
471 3) Other hosts - If an OS-dependent module is submitted, it will be
472 distributed with ACPICA.
474 iASL: Fixed a regression for -D preprocessor option (define symbol). A
475 restructuring/change to the initialization sequence caused this option to
476 no longer work properly.
478 iASL: Implemented a mechanism to disable specific warnings and remarks.
479 Adds a new command line option, "-vw <messageid> as well as "#pragma
480 disable <messageid>". ACPICA BZ 989. Chao Guan, Bob Moore.
482 iASL: Fix for too-strict package object validation. The package object
483 validation for return values from the predefined names is a bit too
484 strict, it does not allow names references within the package (which will
485 be resolved at runtime.) These types of references cannot be validated at
486 compile time. This change ignores named references within package objects
487 for names that return or define static packages.
489 Debugger: Fixed the 80-character command line limitation for the History
490 command. Now allows lines of arbitrary length. ACPICA BZ 1000. Chao Guan.
492 iASL: Added control method and package support for the -so option
493 (generates AML offset table for BIOS support.)
495 iASL: issue a remark if a non-serialized method creates named objects. If
496 a thread blocks within the method for any reason, and another thread
497 enters the method, the method will fail because an attempt will be made
499 create the same (named) object twice. In this case, issue a remark that
500 the method should be marked serialized. NOTE: may become a warning later.
503 ----------------------------------------
504 18 April 2013. Summary of changes for version 20130418:
506 1) ACPICA kernel-resident subsystem:
508 Fixed a possible buffer overrun during some rare but specific field unit
509 read operations. This overrun can only happen if the DSDT version is 1 --
510 meaning that all AML integers are 32 bits -- and the field length is
511 between 33 and 55 bits long. During the read, an internal buffer object
513 created for the field unit because the field is larger than an integer
515 bits). However, in this case, the buffer will be incorrectly written
516 beyond the end because the buffer length is less than the internal
518 of 64 bits (8 bytes) long. The buffer will be either 5, 6, or 7 bytes
519 long, but a full 8 bytes will be written.
521 Updated the Embedded Controller "orphan" _REG method support. This refers
522 to _REG methods under the EC device that have no corresponding operation
523 region. This is allowed by the ACPI specification. This update removes a
524 dependency on the existence an ECDT table. It will execute an orphan _REG
525 method as long as the operation region handler for the EC is installed at
526 the EC device node and not the namespace root. Rui Zhang (original
527 update), Bob Moore (update/integrate).
529 Implemented run-time argument typechecking for all predefined ACPI names
530 (_STA, _BIF, etc.) This change performs object typechecking on all
531 incoming arguments for all predefined names executed via
532 AcpiEvaluateObject. This ensures that ACPI-related device drivers are
533 passing correct object types as well as the correct number of arguments
534 (therefore identifying any issues immediately). Also, the ASL/namespace
535 definition of the predefined name is checked against the ACPI
536 specification for the proper argument count. Adds one new file,
539 Changed an exception code for the ASL UnLoad() operator. Changed the
540 exception code for the case where the input DdbHandle is invalid, from
541 AE_BAD_PARAMETER to the more appropriate AE_AML_OPERAND_TYPE.
543 Unix/Linux makefiles: Removed the use of the -O2 optimization flag in the
544 global makefile. The use of this flag causes compiler errors on earlier
545 versions of GCC, so it has been removed for compatibility.
547 Miscellaneous cleanup:
548 1) Removed some unused/obsolete macros
549 2) Fixed a possible memory leak in the _OSI support
550 3) Removed an unused variable in the predefined name support
551 4) Windows OSL: remove obsolete reference to a memory list field
553 Example Code and Data Size: These are the sizes for the OS-independent
554 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
555 debug version of the code includes the debug output trace mechanism and
556 has a much larger code and data size.
559 Non-Debug Version: 95.2K Code, 26.4K Data, 121.6K Total
560 Debug Version: 183.0K Code, 76.0K Data, 259.0K Total
562 Non-Debug Version: 95.6K Code, 26.8K Data, 122.4K Total
563 Debug Version: 183.5K Code, 76.6K Data, 260.1K Total
566 2) iASL Compiler/Disassembler and Tools:
568 AcpiExec: Added installation of a handler for the SystemCMOS address
569 space. This prevents control method abort if a method accesses this
572 AcpiExec: Added support for multiple EC devices, and now install EC
573 operation region handler(s) at the actual EC device instead of the
574 namespace root. This reflects the typical behavior of host operating
577 AcpiExec: Updated to ensure that all operation region handlers are
578 installed before the _REG methods are executed. This prevents a _REG
579 method from aborting if it accesses an address space has no handler.
580 AcpiExec installs a handler for every possible address space.
582 Debugger: Enhanced the "handlers" command to display non-root handlers.
583 This change enhances the handlers command to display handlers associated
584 with individual devices throughout the namespace, in addition to the
585 currently supported display of handlers associated with the root
589 ASL Test Suite: Several test suite errors have been identified and
590 resolved, reducing the total error count during execution. Chao Guan.
592 ----------------------------------------
593 28 March 2013. Summary of changes for version 20130328:
595 1) ACPICA kernel-resident subsystem:
597 Fixed several possible race conditions with the internal object reference
598 counting mechanism. Some of the external ACPICA interfaces update object
599 reference counts without holding the interpreter or namespace lock. This
600 change adds a spinlock to protect reference count updates on the internal
601 ACPICA objects. Reported by and with assistance from Andriy Gapon
604 FADT support: Removed an extraneous warning for very large GPE register
605 sets. This change removes a size mismatch warning if the legacy length
606 field for a GPE register set is larger than the 64-bit GAS structure can
607 accommodate. GPE register sets can be larger than the 255-bit width
608 limitation of the GAS structure. Linn Crosetto (linn@hp.com).
610 _OSI Support: handle any errors from AcpiOsAcquireMutex. Check for error
611 return from this interface. Handles a possible timeout case if
612 ACPI_WAIT_FOREVER is modified by the host to be a value less than
613 "forever". Jung-uk Kim.
615 Predefined name support: Add allowed/required argument type information
617 the master predefined info table. This change adds the infrastructure to
618 enable typechecking on incoming arguments for all predefined
619 methods/objects. It does not actually contain the code that will fully
620 utilize this information, this is still under development. Also condenses
621 some duplicate code for the predefined names into a new module,
624 Example Code and Data Size: These are the sizes for the OS-independent
625 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
626 debug version of the code includes the debug output trace mechanism and
627 has a much larger code and data size.
630 Non-Debug Version: 95.0K Code, 25.9K Data, 120.9K Total
631 Debug Version: 182.9K Code, 75.6K Data, 258.5K Total
633 Non-Debug Version: 95.2K Code, 26.4K Data, 121.6K Total
634 Debug Version: 183.0K Code, 76.0K Data, 259.0K Total
637 2) iASL Compiler/Disassembler and Tools:
639 iASL: Implemented a new option to simplify the development of ACPI-
641 BIOS code. Adds support for a new "offset table" output file. The -so
642 option will create a C table containing the AML table offsets of various
643 named objects in the namespace so that BIOS code can modify them easily
645 boot time. This can simplify BIOS runtime code by eliminating expensive
646 searches for "magic values", enhancing boot times and adding greater
647 reliability. With assistance from Lee Hamel.
649 iASL: Allow additional predefined names to return zero-length packages.
650 Now, all predefined names that are defined by the ACPI specification to
651 return a "variable-length package of packages" are allowed to return a
652 zero length top-level package. This allows the BIOS to tell the host that
653 the requested feature is not supported, and supports existing BIOS/ASL
656 iASL: Changed the "result not used" warning to an error. This is the case
657 where an ASL operator is effectively a NOOP because the result of the
658 operation is not stored anywhere. For example:
660 There is no target (missing 3rd argument), nor is the function return
661 value used. This is potentially a very serious problem -- since the code
662 was probably intended to do something, but for whatever reason, the value
663 was not stored. Therefore, this issue has been upgraded from a warning to
666 AcpiHelp: Added allowable/required argument types to the predefined names
667 info display. This feature utilizes the recent update to the predefined
670 ----------------------------------------
671 14 February 2013. Summary of changes for version 20130214:
673 1) ACPICA Kernel-resident Subsystem:
675 Fixed a possible regression on some hosts: Reinstated the safe return
676 macros (return_ACPI_STATUS, etc.) that ensure that the argument is
677 evaluated only once. Although these macros are not needed for the ACPICA
678 code itself, they are often used by ACPI-related host device drivers
680 the safe feature may be necessary.
682 Fixed several issues related to the ACPI 5.0 reduced hardware support
683 (SOC): Now ensure that if the platform declares itself as hardware-
685 via the FADT, the following functions become NOOPs (and always return
686 AE_OK) because ACPI is always enabled by definition on these machines:
692 Dynamic Object Repair: Implemented additional runtime repairs for
693 predefined name return values. Both of these repairs can simplify code in
694 the related device drivers that invoke these methods:
695 1) For the _STR and _MLS names, automatically repair/convert an ASCII
696 string to a Unicode buffer.
697 2) For the _CRS, _PRS, and _DMA names, return a resource descriptor with
699 lone end tag descriptor in the following cases: A Return(0) was executed,
700 a null buffer was returned, or no object at all was returned (non-slack
701 mode only). Adds a new file, nsconvert.c
702 ACPICA BZ 998. Bob Moore, Lv Zheng.
704 Resource Manager: Added additional code to prevent possible infinite
706 while traversing corrupted or ill-formed resource template buffers. Check
707 for zero-length resource descriptors in all code that loops through
708 resource templates (the length field is used to index through the
709 template). This change also hardens the external AcpiWalkResources and
710 AcpiWalkResourceBuffer interfaces.
712 Local Cache Manager: Enhanced the main data structure to eliminate an
713 unnecessary mechanism to access the next object in the list. Actually
714 provides a small performance enhancement for hosts that use the local
715 ACPICA cache manager. Jung-uk Kim.
717 Example Code and Data Size: These are the sizes for the OS-independent
718 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
719 debug version of the code includes the debug output trace mechanism and
720 has a much larger code and data size.
723 Non-Debug Version: 94.5K Code, 25.4K Data, 119.9K Total
724 Debug Version: 182.3K Code, 75.0K Data, 257.3K Total
726 Non-Debug Version: 95.0K Code, 25.9K Data, 120.9K Total
727 Debug Version: 182.9K Code, 75.6K Data, 258.5K Total
730 2) iASL Compiler/Disassembler and Tools:
732 iASL/Disassembler: Fixed several issues with the definition of the ACPI
733 5.0 RASF table (RAS Feature Table). This change incorporates late changes
734 that were made to the ACPI 5.0 specification.
736 iASL/Disassembler: Added full support for the following new ACPI tables:
737 1) The MTMR table (MID Timer Table)
738 2) The VRTC table (Virtual Real Time Clock Table).
739 Includes header file, disassembler, table compiler, and template support
742 iASL: Implemented compile-time validation of package objects returned by
743 predefined names. This new feature validates static package objects
744 returned by the various predefined names defined to return packages. Both
745 object types and package lengths are validated, for both parent packages
746 and sub-packages, if any. The code is similar in structure and behavior
748 the runtime repair mechanism within the AML interpreter and uses the
749 existing predefined name information table. Adds a new file, aslprepkg.c.
752 iASL: Implemented auto-detection of binary ACPI tables for disassembly.
753 This feature detects a binary file with a valid ACPI table header and
754 invokes the disassembler automatically. Eliminates the need to
755 specifically invoke the disassembler with the -d option. ACPICA BZ 862.
757 iASL/Disassembler: Added several warnings for the case where there are
758 unresolved control methods during the disassembly. This can potentially
759 cause errors when the output file is compiled, because the disassembler
760 assumes zero method arguments in these cases (it cannot determine the
761 actual number of arguments without resolution/definition of the method).
763 Debugger: Added support to display all resources with a single command.
764 Invocation of the resources command with no arguments will now display
766 resources within the current namespace.
768 AcpiHelp: Added descriptive text for each ACPICA exception code displayed
771 ----------------------------------------
772 17 January 2013. Summary of changes for version 20130117:
774 1) ACPICA Kernel-resident Subsystem:
776 Updated the AcpiGetSleepTypeData interface: Allow the \_Sx methods to
777 return either 1 or 2 integers. Although the ACPI spec defines the \_Sx
778 objects to return a package containing one integer, most BIOS code
780 two integers and the previous code reflects that. However, we also need
782 support BIOS code that actually implements to the ACPI spec, and this
783 change reflects this.
785 Fixed two issues with the ACPI_DEBUG_PRINT macros:
786 1) Added the ACPI_DO_WHILE macro to the main DEBUG_PRINT helper macro for
787 C compilers that require this support.
788 2) Renamed the internal ACPI_DEBUG macro to ACPI_DO_DEBUG_PRINT since
789 ACPI_DEBUG is already used by many of the various hosts.
791 Updated all ACPICA copyrights and signons to 2013. Added the 2013
792 copyright to all module headers and signons, including the standard Linux
793 header. This affects virtually every file in the ACPICA core subsystem,
794 iASL compiler, all ACPICA utilities, and the test suites.
796 Example Code and Data Size: These are the sizes for the OS-independent
797 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
798 debug version of the code includes the debug output trace mechanism and
799 has a much larger code and data size.
802 Non-Debug Version: 94.5K Code, 25.5K Data, 120.0K Total
803 Debug Version: 182.2K Code, 74.9K Data, 257.1K Total
805 Non-Debug Version: 94.5K Code, 25.4K Data, 119.9K Total
806 Debug Version: 182.3K Code, 75.0K Data, 257.3K Total
809 2) iASL Compiler/Disassembler and Tools:
811 Generic Unix OSL: Use a buffer to eliminate multiple vfprintf()s and
812 prevent a possible fault on some hosts. Some C libraries modify the arg
813 pointer parameter to vfprintf making it difficult to call it twice in the
814 AcpiOsVprintf function. Use a local buffer to workaround this issue. This
815 does not affect the Windows OSL since the Win C library does not modify
816 the arg pointer. Chao Guan, Bob Moore.
818 iASL: Fixed a possible infinite loop when the maximum error count is
819 reached. If an output file other than the .AML file is specified (such as
820 a listing file), and the maximum number of errors is reached, do not
821 attempt to flush data to the output file(s) as the compiler is aborting.
822 This can cause an infinite loop as the max error count code essentially
823 keeps calling itself.
825 iASL/Disassembler: Added an option (-in) to ignore NOOP
827 Implemented for both the compiler and the disassembler. Often, the NOOP
828 opcode is used as padding for packages that are changed dynamically by
830 BIOS. When disassembled and recompiled, these NOOPs will cause syntax
831 errors. This option causes the disassembler to ignore all NOOP opcodes
832 (0xA3), and it also causes the compiler to ignore all ASL source code
836 Debugger: Enhanced the Sleep command to execute all sleep states. This
837 change allows Sleep to be invoked with no arguments and causes the
838 debugger to execute all of the sleep states, 0-5, automatically.
840 ----------------------------------------
841 20 December 2012. Summary of changes for version 20121220:
843 1) ACPICA Kernel-resident Subsystem:
845 Implemented a new interface, AcpiWalkResourceBuffer. This interface is an
846 alternate entry point for AcpiWalkResources and improves the usability of
847 the resource manager by accepting as input a buffer containing the output
848 of either a _CRS, _PRS, or _AEI method. The key functionality is that the
849 input buffer is not deleted by this interface so that it can be used by
850 the host later. See the ACPICA reference for details.
852 Interpreter: Add a warning if a 64-bit constant appears in a 32-bit table
853 (DSDT version < 2). The constant will be truncated and this warning
854 reflects that behavior.
856 Resource Manager: Add support for the new ACPI 5.0 wake bit in the IRQ,
857 ExtendedInterrupt, and GpioInt descriptors. This change adds support to
858 both get and set the new wake bit in these descriptors, separately from
859 the existing share bit. Reported by Aaron Lu.
861 Interpreter: Fix Store() when an implicit conversion is not possible. For
862 example, in the cases such as a store of a string to an existing package
863 object, implement the store as a CopyObject(). This is a small departure
864 from the ACPI specification which states that the control method should
866 aborted in this case. However, the ASLTS suite depends on this behavior.
868 Performance improvement for the various FUNCTION_TRACE and DEBUG_PRINT
869 macros: check if debug output is currently enabled as soon as possible to
870 minimize performance impact if debug is in fact not enabled.
872 Source code restructuring: Cleanup to improve modularity. The following
873 new files have been added: dbconvert.c, evhandler.c, nsprepkg.c,
874 psopinfo.c, psobject.c, rsdumpinfo.c, utstring.c, and utownerid.c.
875 Associated makefiles and project files have been updated.
877 Changed an exception code for LoadTable operator. For the case where one
878 of the input strings is too long, change the returned exception code from
879 AE_BAD_PARAMETER to AE_AML_STRING_LIMIT.
881 Fixed a possible memory leak in dispatcher error path. On error, delete
882 the mutex object created during method mutex creation. Reported by
883 tim.gardner@canonical.com.
885 Example Code and Data Size: These are the sizes for the OS-independent
886 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
887 debug version of the code includes the debug output trace mechanism and
888 has a much larger code and data size.
891 Non-Debug Version: 94.3K Code, 25.3K Data, 119.6K Total
892 Debug Version: 175.5K Code, 74.5K Data, 250.0K Total
894 Non-Debug Version: 94.5K Code, 25.5K Data, 120.0K Total
895 Debug Version: 182.2K Code, 74.9K Data, 257.1K Total
898 2) iASL Compiler/Disassembler and Tools:
900 iASL: Disallow a method call as argument to the ObjectType ASL operator.
901 This change tracks an errata to the ACPI 5.0 document. The AML grammar
902 will not allow the interpreter to differentiate between a method and a
903 method invocation when these are used as an argument to the ObjectType
904 operator. The ACPI specification change is to disallow a method
906 (UserTerm) for the ObjectType operator.
908 Finish support for the TPM2 and CSRT tables in the headers, table
909 compiler, and disassembler.
911 Unix user-space OSL: Fix a problem with WaitSemaphore where the timeout
912 always expires immediately if the semaphore is not available. The
914 code was using a relative-time timeout, but sem_timedwait requires the
918 iASL: Added a remark if the Timer() operator is used within a 32-bit
919 table. This operator returns a 64-bit time value that will be truncated
920 within a 32-bit table.
922 iASL Source code restructuring: Cleanup to improve modularity. The
923 following new files have been added: aslhex.c, aslxref.c, aslnamesp.c,
924 aslmethod.c, and aslfileio.c. Associated makefiles and project files have
928 ----------------------------------------
929 14 November 2012. Summary of changes for version 20121114:
931 1) ACPICA Kernel-resident Subsystem:
933 Implemented a performance enhancement for ACPI/AML Package objects. This
934 change greatly increases the performance of Package objects within the
935 interpreter. It changes the processing of reference counts for packages
937 optimizing for the most common case where the package sub-objects are
938 either Integers, Strings, or Buffers. Increases the overall performance
940 the ASLTS test suite by 1.5X (Increases the Slack Mode performance by
942 Chao Guan. ACPICA BZ 943.
944 Implemented and deployed common macros to extract flag bits from resource
945 descriptors. Improves readability and maintainability of the code. Fixes
947 problem with the UART serial bus descriptor for the number of data bits
948 flags (was incorrectly 2 bits, should be 3).
950 Enhanced the ACPI_GETx and ACPI_SETx macros. Improved the implementation
951 of the macros and changed the SETx macros to the style of (destination,
952 source). Also added ACPI_CASTx companion macros. Lv Zheng.
954 Example Code and Data Size: These are the sizes for the OS-independent
955 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
956 debug version of the code includes the debug output trace mechanism and
957 has a much larger code and data size.
960 Non-Debug Version: 93.9K Code, 25.2K Data, 119.1K Total
961 Debug Version: 175.5K Code, 74.5K Data, 250.0K Total
963 Non-Debug Version: 94.3K Code, 25.3K Data, 119.6K Total
964 Debug Version: 175.5K Code, 74.5K Data, 250.0K Total
967 2) iASL Compiler/Disassembler and Tools:
969 Disassembler: Added the new ACPI 5.0 interrupt sharing flags. This change
970 adds the ShareAndWake and ExclusiveAndWake flags which were added to the
971 Irq, Interrupt, and Gpio resource descriptors in ACPI 5.0. ACPICA BZ 986.
973 Disassembler: Fixed a problem with external declaration generation. Fixes
974 a problem where an incorrect pathname could be generated for an external
975 declaration if the original reference to the object includes leading
976 carats (^). ACPICA BZ 984.
978 Debugger: Completed a major update for the Disassemble<method> command.
979 This command was out-of-date and did not properly disassemble control
980 methods that had any reasonable complexity. This fix brings the command
982 to the same level as the rest of the disassembler. Adds one new file,
983 dmdeferred.c, which is existing code that is now common with the main
984 disassembler and the debugger disassemble command. ACPICA MZ 978.
986 iASL: Moved the parser entry prototype to avoid a duplicate declaration.
987 Newer versions of Bison emit this prototype, so moved the prototype out
989 the iASL header to where it is actually used in order to avoid a
993 iASL/Tools: Standardized use of the stream I/O functions:
994 1) Ensure check for I/O error after every fopen/fread/fwrite
995 2) Ensure proper order of size/count arguments for fread/fwrite
996 3) Use test of (Actual != Requested) after all fwrite, and most fread
997 4) Standardize I/O error messages
998 Improves reliability and maintainability of the code. Bob Moore, Lv
1002 Disassembler: Prevent duplicate External() statements. During generation
1003 of external statements, detect similar pathnames that are actually
1004 duplicates such as these:
1007 Remove all leading '\' characters from pathnames during the external
1008 statement generation so that duplicates will be detected and tossed.
1011 Tools: Replace low-level I/O with stream I/O functions. Replace
1012 open/read/write/close with the stream I/O equivalents
1013 fopen/fread/fwrite/fclose for portability and performance. Lv Zheng, Bob
1016 AcpiBin: Fix for the dump-to-hex function. Now correctly output the table
1017 name header so that AcpiXtract recognizes the output file/table.
1019 iASL: Remove obsolete -2 option flag. Originally intended to force the
1020 compiler/disassembler into an ACPI 2.0 mode, this was never implemented
1021 and the entire concept is now obsolete.
1023 ----------------------------------------
1024 18 October 2012. Summary of changes for version 20121018:
1027 1) ACPICA Kernel-resident Subsystem:
1029 Updated support for the ACPI 5.0 MPST table. Fixes some problems
1030 introduced by late changes to the table as it was added to the ACPI 5.0
1031 specification. Includes header, disassembler, and data table compiler
1032 support as well as a new version of the MPST template.
1034 AcpiGetObjectInfo: Enhanced the device object support to include the ACPI
1035 5.0 _SUB method. Now calls _SUB in addition to the other PNP-related ID
1036 methods: _HID, _CID, and _UID.
1038 Changed ACPI_DEVICE_ID to ACPI_PNP_DEVICE_ID. Also changed
1039 ACPI_DEVICE_ID_LIST to ACPI_PNP_DEVICE_ID_LIST. These changes prevent
1040 name collisions on hosts that reserve the *_DEVICE_ID (or *DeviceId)
1041 names for their various drivers. Affects the AcpiGetObjectInfo external
1042 interface, and other internal interfaces as well.
1044 Added and deployed a new macro for ACPI_NAME management: ACPI_MOVE_NAME.
1045 This macro resolves to a simple 32-bit move of the 4-character ACPI_NAME
1046 on machines that support non-aligned transfers. Optimizes for this case
1047 rather than using a strncpy. With assistance from Zheng Lv.
1049 Resource Manager: Small fix for buffer size calculation. Fixed a one byte
1050 error in the output buffer calculation. Feng Tang. ACPICA BZ 849.
1052 Added a new debug print message for AML mutex objects that are force-
1053 released. At control method termination, any currently acquired mutex
1054 objects are force-released. Adds a new debug-only message for each one
1057 Audited/updated all ACPICA return macros and the function debug depth
1058 counter: 1) Ensure that all functions that use the various TRACE macros
1059 also use the appropriate ACPICA return macros. 2) Ensure that all normal
1060 return statements surround the return expression (value) with parens to
1061 ensure consistency across the ACPICA code base. Guan Chao, Tang Feng,
1062 Zheng Lv, Bob Moore. ACPICA Bugzilla 972.
1064 Global source code changes/maintenance: All extra lines at the start and
1065 end of each source file have been removed for consistency. Also, within
1066 comments, all new sentences start with a single space instead of a double
1067 space, again for consistency across the code base.
1069 Example Code and Data Size: These are the sizes for the OS-independent
1070 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
1071 debug version of the code includes the debug output trace mechanism and
1072 has a much larger code and data size.
1075 Non-Debug Version: 93.7K Code, 25.3K Data, 119.0K Total
1076 Debug Version: 175.0K Code, 74.4K Data, 249.4K Total
1078 Non-Debug Version: 93.9K Code, 25.2K Data, 119.1K Total
1079 Debug Version: 175.5K Code, 74.5K Data, 250.0K Total
1082 2) iASL Compiler/Disassembler and Tools:
1084 AcpiExec: Improved the algorithm used for memory leak/corruption
1085 detection. Added some intelligence to the code that maintains the global
1086 list of allocated memory. The list is now ordered by allocated memory
1087 address, significantly improving performance. When running AcpiExec on
1088 the ASLTS test suite, speed improvements of 3X to 5X are seen, depending
1089 on the platform and/or the environment. Note, this performance
1090 enhancement affects the AcpiExec utility only, not the kernel-resident
1093 Enhanced error reporting for invalid AML opcodes and bad ACPI_NAMEs. For
1094 the disassembler, dump the 48 bytes surrounding the invalid opcode. Fix
1095 incorrect table offset reported for invalid opcodes. Report the original
1096 32-bit value for bad ACPI_NAMEs (as well as the repaired name.)
1098 Disassembler: Enhanced the -vt option to emit the binary table data in
1099 hex format to assist with debugging.
1101 Fixed a potential filename buffer overflow in osunixdir.c. Increased the
1102 size of file structure. Colin Ian King.
1104 ----------------------------------------
1105 13 September 2012. Summary of changes for version 20120913:
1108 1) ACPICA Kernel-resident Subsystem:
1110 ACPI 5.0: Added two new notify types for the Hardware Error Notification
1111 Structure within the Hardware Error Source Table (HEST) table -- CMCI(5)
1115 Table Manager: Merged/removed duplicate code in the root table resize
1116 functions. One function is external, the other is internal. Lv Zheng,
1120 Makefiles: Completely removed the obsolete "Linux" makefiles under
1121 acpica/generate/linux. These makefiles are obsolete and have been
1124 the generic unix makefiles under acpica/generate/unix.
1126 Makefiles: Ensure that binary files always copied properly. Minor rule
1128 to ensure that the final binary output files are always copied up to the
1129 appropriate binary directory (bin32 or bin64.)
1131 Example Code and Data Size: These are the sizes for the OS-independent
1132 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
1134 version of the code includes the debug output trace mechanism and has a
1136 larger code and data size.
1139 Non-Debug Version: 93.8K Code, 25.3K Data, 119.1K Total
1140 Debug Version: 175.7K Code, 74.8K Data, 250.5K Total
1142 Non-Debug Version: 93.7K Code, 25.3K Data, 119.0K Total
1143 Debug Version: 175.0K Code, 74.4K Data, 249.4K Total
1146 2) iASL Compiler/Disassembler and Tools:
1148 Disassembler: Fixed a possible fault during the disassembly of resource
1149 descriptors when a second parse is required because of the invocation of
1150 external control methods within the table. With assistance from
1151 adq@lidskialf.net. ACPICA BZ 976.
1153 iASL: Fixed a namepath optimization problem. An error can occur if the
1155 node that contains the namepath to be optimized does not have a parent
1157 that is a named object. This change fixes the problem.
1159 iASL: Fixed a regression where the AML file is not deleted on errors. The
1161 output file should be deleted if there are any errors during the
1164 only exception is if the -f (force output) option is used. ACPICA BZ 974.
1166 iASL: Added a feature to automatically increase internal line buffer
1168 Via realloc(), automatically increase the internal line buffer sizes as
1169 necessary to support very long source code lines. The current version of
1171 preprocessor requires a buffer long enough to contain full source code
1173 This change increases the line buffer(s) if the input lines go beyond the
1174 current buffer size. This eliminates errors that occurred when a source
1176 line was longer than the buffer.
1178 iASL: Fixed a problem with constant folding in method declarations. The
1179 SyncLevel term is a ByteConstExpr, and incorrect code would be generated
1181 Type3 opcode was used.
1183 Debugger: Improved command help support. For incorrect argument count,
1185 full help for the command. For help command itself, allow an argument to
1188 Test Suites: Several bug fixes for the ASLTS suite reduces the number of
1189 errors during execution of the suite. Guan Chao.
1191 ----------------------------------------
1192 16 August 2012. Summary of changes for version 20120816:
1195 1) ACPICA Kernel-resident Subsystem:
1197 Removed all use of the deprecated _GTS and _BFS predefined methods. The
1199 (Going To Sleep) and _BFS (Back From Sleep) methods are essentially
1200 deprecated and will probably be removed from the ACPI specification.
1202 does not invoke them, and reportedly never will. The final nail in the
1204 is that the ACPI specification states that these methods must be run with
1205 interrupts off, which is not going to happen in a kernel interpreter.
1207 Linux has removed all use of the methods also. It was discovered that
1208 invoking these functions caused failures on some machines, probably
1210 they were never tested since Windows does not call them. Affects two
1212 interfaces, AcpiEnterSleepState and AcpiLeaveSleepStatePrep. Tang Feng.
1215 Implemented support for complex bit-packed buffers returned from the _PLD
1216 (Physical Location of Device) predefined method. Adds a new external
1217 interface, AcpiDecodePldBuffer that parses the buffer into a more usable
1219 structure. Note: C Bitfields cannot be used for this type of predefined
1220 structure since the memory layout of individual bitfields is not defined
1222 the C language. In addition, there are endian concerns where a compiler
1224 change the bitfield ordering based on the machine type. The new ACPICA
1225 interface eliminates these issues, and should be called after _PLD is
1226 executed. ACPICA BZ 954.
1228 Implemented a change to allow a scope change to root (via "Scope (\)")
1230 execution of module-level ASL code (code that is executed at table load
1233 Added the Windows8/Server2012 string for the _OSI method. This change
1236 new _OSI string, "Windows 2012" for both Windows 8 and Windows Server
1239 Added header support for the new ACPI tables DBG2 (Debug Port Table Type
1241 and CSRT (Core System Resource Table).
1243 Added struct header support for the _FDE, _GRT, _GTM, and _SRT predefined
1244 names. This simplifies access to the buffers returned by these predefined
1245 names. Adds a new file, include/acbuffer.h. ACPICA BZ 956.
1247 GPE support: Removed an extraneous parameter from the various low-level
1248 internal GPE functions. Tang Feng.
1250 Removed the linux makefiles from the unix packages. The generate/linux
1251 makefiles are obsolete and have been removed from the unix tarball
1253 packages. The replacement makefiles are under generate/unix, and there is
1255 top-level makefile under the main acpica directory. ACPICA BZ 967, 912.
1257 Updates for Unix makefiles:
1258 1) Add -D_FORTIFY_SOURCE=2 for gcc generation. Arjan van de Ven.
1259 2) Update linker flags (move to end of command line) for AcpiExec
1263 Split ACPICA initialization functions to new file, utxfinit.c. Split from
1264 utxface.c to improve modularity and reduce file size.
1266 Example Code and Data Size: These are the sizes for the OS-independent
1267 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
1268 debug version of the code includes the debug output trace mechanism and
1270 much larger code and data size.
1273 Non-Debug Version: 93.5K Code, 25.3K Data, 118.8K Total
1274 Debug Version: 173.7K Code, 74.0K Data, 247.7K Total
1276 Non-Debug Version: 93.8K Code, 25.3K Data, 119.1K Total
1277 Debug Version: 175.7K Code, 74.8K Data, 250.5K Total
1280 2) iASL Compiler/Disassembler and Tools:
1282 iASL: Fixed a problem with constant folding for fixed-length constant
1283 expressions. The constant-folding code was not being invoked for constant
1284 expressions that allow the use of type 3/4/5 opcodes to generate
1286 for expressions such as ByteConstExpr, WordConstExpr, etc. This could
1288 in the generation of invalid AML bytecode. ACPICA BZ 970.
1290 iASL: Fixed a generation issue on newer versions of Bison. Newer versions
1291 apparently automatically emit some of the necessary externals. This
1293 handles these versions in order to eliminate generation warnings.
1295 Disassembler: Added support to decode the DBG2 and CSRT ACPI tables.
1297 Disassembler: Add support to decode _PLD buffers. The decoded buffer
1299 within comments in the output file.
1301 Debugger: Fixed a regression with the "Threads" command where
1302 AE_BAD_PARAMETER was always returned.
1304 ----------------------------------------
1305 11 July 2012. Summary of changes for version 20120711:
1307 1) ACPICA Kernel-resident Subsystem:
1309 Fixed a possible fault in the return package object repair code. Fixes a
1310 problem that can occur when a lone package object is wrapped with an
1312 package object in order to force conformance to the ACPI specification.
1314 affect these predefined names: _ALR, _MLS, _PSS, _TRT, _TSS, _PRT, _HPX,
1318 Removed code to disable/enable bus master arbitration (ARB_DIS bit in the
1319 PM2_CNT register) in the ACPICA sleep/wake interfaces. Management of the
1320 ARB_DIS bit must be implemented in the host-dependent C3 processor power
1322 support. Note, ARB_DIS is obsolete and only applies to older chipsets,
1324 Intel and other vendors. (for Intel: ICH4-M and earlier)
1326 This change removes the code to disable/enable bus master arbitration
1328 suspend/resume. Use of the ARB_DIS bit in the optional PM2_CNT register
1330 resume problems on some machines. The change has been in use for over
1334 Implemented two new external interfaces to support host-directed dynamic
1336 table load and unload. They are intended to simplify the host
1338 of hot-plug support:
1339 AcpiLoadTable: Load an SSDT from a buffer into the namespace.
1340 AcpiUnloadParentTable: Unload an SSDT via a named object owned by the
1342 See the ACPICA reference for additional details. Adds one new file,
1343 components/tables/tbxfload.c
1345 Implemented and deployed two new interfaces for errors and warnings that
1347 known to be caused by BIOS/firmware issues:
1348 AcpiBiosError: Prints "ACPI Firmware Error" message.
1349 AcpiBiosWarning: Prints "ACPI Firmware Warning" message.
1350 Deployed these new interfaces in the ACPICA Table Manager code for ACPI
1352 and FADT errors. Additional deployment to be completed as appropriate in
1354 future. The associated conditional macros are ACPI_BIOS_ERROR and
1355 ACPI_BIOS_WARNING. See the ACPICA reference for additional details.
1360 Implicit notify support: ensure that no memory allocation occurs within a
1361 critical region. This fix moves a memory allocation outside of the time
1363 spinlock is held. Fixes issues on systems that do not allow this
1367 Split exception code utilities and tables into a new file,
1370 Example Code and Data Size: These are the sizes for the OS-independent
1371 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
1373 version of the code includes the debug output trace mechanism and has a
1375 larger code and data size.
1378 Non-Debug Version: 93.1K Code, 25.1K Data, 118.2K Total
1379 Debug Version: 172.9K Code, 73.6K Data, 246.5K Total
1381 Non-Debug Version: 93.5K Code, 25.3K Data, 118.8K Total
1382 Debug Version: 173.7K Code, 74.0K Data, 247.7K Total
1385 2) iASL Compiler/Disassembler and Tools:
1387 iASL: Fixed a parser problem for hosts where EOF is defined as -1 instead
1391 Debugger: Enhanced the "tables" command to emit additional information
1393 the current set of ACPI tables, including the owner ID and flags decode.
1395 Debugger: Reimplemented the "unload" command to use the new
1396 AcpiUnloadParentTable external interface. This command was disable
1398 due to need for an unload interface.
1400 AcpiHelp: Added a new option to decode ACPICA exception codes. The -e
1402 will decode 16-bit hex status codes (ACPI_STATUS) to name strings.
1404 ----------------------------------------
1405 20 June 2012. Summary of changes for version 20120620:
1408 1) ACPICA Kernel-resident Subsystem:
1410 Implemented support to expand the "implicit notify" feature to allow
1412 devices to be notified by a single GPE. This feature automatically
1414 runtime device notification in the absence of a BIOS-provided GPE control
1415 method (_Lxx/_Exx) or a host-installed handler for the GPE. Implicit
1417 provided by ACPICA for Windows compatibility, and is a workaround for
1420 code errors. See the description of the AcpiSetupGpeForWake interface in
1422 APCICA reference. Bob Moore, Rafael Wysocki. ACPICA BZ 918.
1424 Changed some comments and internal function names to simplify and ensure
1425 correctness of the Linux code translation. No functional changes.
1427 Example Code and Data Size: These are the sizes for the OS-independent
1428 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
1430 version of the code includes the debug output trace mechanism and has a
1432 larger code and data size.
1435 Non-Debug Version: 93.0K Code, 25.1K Data, 118.1K Total
1436 Debug Version: 172.7K Code, 73.6K Data, 246.3K Total
1438 Non-Debug Version: 93.1K Code, 25.1K Data, 118.2K Total
1439 Debug Version: 172.9K Code, 73.6K Data, 246.5K Total
1442 2) iASL Compiler/Disassembler and Tools:
1444 Disassembler: Added support to emit short, commented descriptions for the
1446 predefined names in order to improve the readability of the disassembled
1447 output. ACPICA BZ 959. Changes include:
1448 1) Emit descriptions for all standard predefined names (_INI, _STA,
1451 2) Emit generic descriptions for the special names (_Exx, _Qxx, etc.)
1452 3) Emit descriptions for the resource descriptor names (_MIN, _LEN,
1455 AcpiSrc: Fixed several long-standing Linux code translation issues.
1457 descriptions in function headers are now translated properly to lower
1460 underscores. ACPICA BZ 961. Also fixes translation problems such as
1466 local_fADT -> local_FADT
1467 execute_oSI -> execute_OSI
1469 iASL: Fixed a problem where null bytes were inadvertently emitted into
1473 iASL: Added the existing debug options to the standard help screen. There
1475 no longer two different help screens. ACPICA BZ 957.
1477 AcpiHelp: Fixed some typos in the various predefined name descriptions.
1479 expand some of the descriptions where appropriate.
1481 iASL: Fixed the -ot option (display compile times/statistics). Was not
1483 properly for standard output; only worked for the debug file case.
1485 ----------------------------------------
1486 18 May 2012. Summary of changes for version 20120518:
1489 1) ACPICA Core Subsystem:
1491 Added a new OSL interface, AcpiOsWaitEventsComplete. This interface is
1493 to block until asynchronous events such as notifies and GPEs have
1495 Within ACPICA, it is only called before a notify or GPE handler is
1496 removed/uninstalled. It also may be useful for the host OS within related
1497 drivers such as the Embedded Controller driver. See the ACPICA reference
1499 additional information. ACPICA BZ 868.
1501 ACPI Tables: Added a new error message for a possible overflow failure
1503 the conversion of FADT 32-bit legacy register addresses to internal
1506 bit GAS structure representation. The GAS has a one-byte "bit length"
1508 thus limiting the register length to 255 bits. ACPICA BZ 953.
1510 Example Code and Data Size: These are the sizes for the OS-independent
1511 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
1513 version of the code includes the debug output trace mechanism and has a
1515 larger code and data size.
1518 Non-Debug Version: 92.9K Code, 25.0K Data, 117.9K Total
1519 Debug Version: 172.6K Code, 73.4K Data, 246.0K Total
1521 Non-Debug Version: 93.0K Code, 25.1K Data, 118.1K Total
1522 Debug Version: 172.7K Code, 73.6K Data, 246.3K Total
1525 2) iASL Compiler/Disassembler and Tools:
1527 iASL: Added the ACPI 5.0 "PCC" keyword for use in the Register() ASL
1529 This keyword was added late in the ACPI 5.0 release cycle and was not
1530 implemented until now.
1532 Disassembler: Added support for Operation Region externals. Adds missing
1533 support for operation regions that are defined in another table, and
1534 referenced locally via a Field or BankField ASL operator. Now generates
1536 correct External statement.
1538 Disassembler: Several additional fixes for the External() statement
1540 related to some ASL operators. Also, order the External() statements
1541 alphabetically in the disassembler output. Fixes the External()
1544 the Create* field, Alias, and Scope operators:
1545 1) Create* buffer field operators - fix type mismatch warning on
1547 2) Alias - implement missing External support
1548 3) Scope - fix to make sure all necessary externals are emitted.
1550 iASL: Improved pathname support. For include files, merge the prefix
1552 with the file pathname and eliminate unnecessary components. Convert
1553 backslashes in all pathnames to forward slashes, for readability. Include
1555 pathname changes affect both #include and Include() type operators.
1557 iASL/DTC/Preprocessor: Gracefully handle early EOF. Handle an EOF at the
1559 of a valid line by inserting a newline and then returning the EOF during
1561 next call to GetNextLine. Prevents the line from being ignored due to EOF
1564 iASL: Implemented some changes to enhance the IDE support (-vi option.)
1566 and Warning messages are now correctly recognized for both the source
1568 browser and the global error and warning counts.
1570 ----------------------------------------
1571 20 April 2012. Summary of changes for version 20120420:
1574 1) ACPICA Core Subsystem:
1576 Implemented support for multiple notify handlers. This change adds
1579 allow multiple system and device notify handlers on Device, Thermal Zone,
1581 Processor objects. This can simplify the host OS notification
1583 Also re-worked and restructured the entire notify support code to
1585 handler installation, handler removal, notify event queuing, and notify
1586 dispatch to handler(s). Note: there can still only be two global notify
1587 handlers - one for system notifies and one for device notifies. There are
1589 changes to the existing handler install/remove interfaces. Lin Ming, Bob
1590 Moore, Rafael Wysocki.
1592 Fixed a regression in the package repair code where the object reference
1593 count was calculated incorrectly. Regression was introduced in the commit
1594 "Support to add Package wrappers".
1596 Fixed a couple possible memory leaks in the AML parser, in the error
1598 path. Jesper Juhl, Lin Ming.
1600 Example Code and Data Size: These are the sizes for the OS-independent
1601 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
1602 debug version of the code includes the debug output trace mechanism and
1604 much larger code and data size.
1607 Non-Debug Version: 92.9K Code, 25.0K Data, 117.9K Total
1608 Debug Version: 172.5K Code, 73.2K Data, 245.7K Total
1610 Non-Debug Version: 92.9K Code, 25.0K Data, 117.9K Total
1611 Debug Version: 172.6K Code, 73.4K Data, 246.0K Total
1614 2) iASL Compiler/Disassembler and Tools:
1616 iASL: Fixed a problem with the resource descriptor support where the
1618 of the StartDependentFn and StartDependentFnNoPrio descriptors were not
1619 included in cumulative descriptor offset, resulting in incorrect values
1621 resource tags within resource descriptors appearing after a
1623 descriptor. Reported by Petr Vandrovec. ACPICA BZ 949.
1625 iASL and Preprocessor: Implemented full support for the #line directive
1627 correctly track original source file line numbers through the .i
1629 output file - for error and warning messages.
1631 iASL: Expand the allowable byte constants for address space IDs.
1633 the allowable range was 0x80-0xFF (user-defined spaces), now the range is
1634 0x0A-0xFF to allow for custom and new IDs without changing the compiler.
1636 iASL: Add option to treat all warnings as errors (-we). ACPICA BZ 948.
1638 iASL: Add option to completely disable the preprocessor (-Pn).
1640 iASL: Now emit all error/warning messages to standard error (stderr) by
1641 default (instead of the previous stdout).
1643 ASL Test Suite (ASLTS): Reduce iASL warnings due to use of Switch().
1645 for resource descriptor offset fix above. Update/cleanup error output
1646 routines. Enable and send iASL errors/warnings to an error logfile
1647 (error.txt). Send all other iASL output to a logfile (compiler.txt).
1649 several extraneous "unrecognized operator" messages.
1651 ----------------------------------------
1652 20 March 2012. Summary of changes for version 20120320:
1655 1) ACPICA Core Subsystem:
1657 Enhanced the sleep/wake interfaces to optionally execute the _GTS method
1658 (Going To Sleep) and the _BFS method (Back From Sleep). Windows
1660 does not execute these methods, and therefore these methods are often
1661 untested. It has been seen on some systems where the execution of these
1662 methods causes errors and also prevents the machine from entering S5. It
1664 therefore suggested that host operating systems do not execute these
1666 by default. In the future, perhaps these methods can be optionally
1668 based on the age of the system and/or what is the newest version of
1670 that the BIOS asks for via _OSI. Changed interfaces: AcpiEnterSleepState
1672 AcpileaveSleepStatePrep. See the ACPICA reference and Linux BZ 13041. Lin
1675 Fixed a problem where the length of the local/common FADT was set too
1677 The local FADT table length cannot be set to the common length until the
1678 original length has been examined. There is code that checks the table
1680 and sets various fields appropriately. This can affect older machines
1682 early FADT versions. For example, this can cause inadvertent writes to
1684 CST_CNT register. Julian Anastasov.
1686 Fixed a mapping issue related to a physical table override. Use the
1688 mapping mechanism for tables loaded via the physical override OSL
1690 This allows for early mapping before the virtual memory manager is
1692 Thomas Renninger, Bob Moore.
1694 Enhanced the automatic return-object repair code: Repair a common problem
1696 predefined methods that are defined to return a variable-length Package
1698 sub-objects. If there is only one sub-object, some BIOS ASL code
1700 simply returns the single object instead of a Package with one sub-
1702 This new support will repair this error by wrapping a Package object
1704 the original object, creating the correct and expected Package with one
1706 object. Names that can be repaired in this manner include: _ALR, _CSD,
1708 _MLS, _PLD, _PRT, _PSS, _TRT, _TSS, _BCL, _DOD, _FIX, and _Sx. ACPICA BZ
1711 Changed the exception code returned for invalid ACPI paths passed as
1712 parameters to external interfaces such as AcpiEvaluateObject. Was
1713 AE_BAD_PARAMETER, now is the more sensible AE_BAD_PATHNAME.
1715 Example Code and Data Size: These are the sizes for the OS-independent
1716 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
1718 version of the code includes the debug output trace mechanism and has a
1720 larger code and data size.
1723 Non-Debug Version: 93.0K Code, 25.0K Data, 118.0K Total
1724 Debug Version: 172.5K Code, 73.2K Data, 245.7K Total
1726 Non-Debug Version: 92.9K Code, 25.0K Data, 117.9K Total
1727 Debug Version: 172.5K Code, 73.2K Data, 245.7K Total
1730 2) iASL Compiler/Disassembler and Tools:
1732 iASL: Added the infrastructure and initial implementation of a integrated
1734 like preprocessor. This will simplify BIOS development process by
1736 the need for a separate preprocessing step during builds. On Windows, it
1738 eliminates the need to install a separate C compiler. ACPICA BZ 761. Some
1739 features including full #define() macro support are still under
1741 These preprocessor directives are supported:
1754 In addition, these new command line options are supported:
1755 -D <symbol> Define symbol for preprocessor use
1756 -li Create preprocessed output file (*.i)
1757 -P Preprocess only and create preprocessor output file (*.i)
1759 Table Compiler: Fixed a problem where the equals operator within an
1761 did not work properly.
1763 Updated iASL to use the current versions of Bison/Flex. Updated the
1765 project file to invoke these tools from the standard location. ACPICA BZ
1768 Flex for Windows: V2.5.4
1769 Bison for Windows: V2.4.1
1771 ----------------------------------------
1772 15 February 2012. Summary of changes for version 20120215:
1775 1) ACPICA Core Subsystem:
1777 There have been some major changes to the sleep/wake support code, as
1778 described below (a - e).
1780 a) The AcpiLeaveSleepState has been split into two interfaces, similar to
1781 AcpiEnterSleepStatePrep and AcpiEnterSleepState. The new interface is
1782 AcpiLeaveSleepStatePrep. This allows the host to perform actions between
1784 time the _BFS method is called and the _WAK method is called. NOTE: all
1786 must update their wake/resume code or else sleep/wake will not work
1790 b) In AcpiLeaveSleepState, now enable all runtime GPEs before calling the
1792 method. Some machines require that the GPEs are enabled before the _WAK
1794 is executed. Thomas Renninger.
1796 c) In AcpiLeaveSleepState, now always clear the WAK_STS (wake status)
1798 Some BIOS code assumes that WAK_STS will be cleared on resume and use it
1800 determine whether the system is rebooting or resuming. Matthew Garrett.
1802 d) Move the invocations of _GTS (Going To Sleep) and _BFS (Back From
1804 match the ACPI specification requirement. Rafael Wysocki.
1806 e) Implemented full support for the ACPI 5.0 SleepStatus and SleepControl
1807 registers within the V5 FADT. This support adds two new files:
1808 hardware/hwesleep.c implements the support for the new registers. Moved
1810 sleep/wake external interfaces to hardware/hwxfsleep.c.
1813 Added a new OSL interface for ACPI table overrides,
1814 AcpiOsPhysicalTableOverride. This interface allows the host to override a
1815 table via a physical address, instead of the logical address required by
1816 AcpiOsTableOverride. This simplifies the host implementation. Initial
1817 implementation by Thomas Renninger. The ACPICA implementation creates a
1819 shared function for table overrides that attempts both a logical and a
1822 Expanded the OSL memory read/write interfaces to 64-bit data
1823 (AcpiOsReadMemory, AcpiOsWriteMemory.) This enables full 64-bit memory
1824 transfer support for GAS register structures passed to AcpiRead and
1827 Implemented the ACPI_REDUCED_HARDWARE option to allow the creation of a
1829 build of ACPICA that supports only the ACPI 5.0 reduced hardware (SoC)
1831 See the ACPICA reference for details. ACPICA BZ 942. This option removes
1833 10% of the code and 5% of the static data, and the following hardware
1835 features become unavailable:
1836 PM Event and Control registers
1837 SCI interrupt (and handler)
1839 General Purpose Events (GPEs)
1842 FACS table (Waking vectors and Global Lock)
1844 Updated the unix tarball directory structure to match the ACPICA git
1846 tree. This ensures that the generic unix makefiles work properly (in
1847 generate/unix). Also updated the Linux makefiles to match. ACPICA BZ
1850 Updated the return value of the _REV predefined method to integer value 5
1852 reflect ACPI 5.0 support.
1854 Moved the external ACPI PM timer interface prototypes to the public
1856 file where they belong.
1858 Example Code and Data Size: These are the sizes for the OS-independent
1859 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
1861 version of the code includes the debug output trace mechanism and has a
1863 larger code and data size.
1866 Non-Debug Version: 92.8K Code, 24.9K Data, 117.7K Total
1867 Debug Version: 171.7K Code, 72.9K Data, 244.5K Total
1869 Non-Debug Version: 93.0K Code, 25.0K Data, 118.0K Total
1870 Debug Version: 172.5K Code, 73.2K Data, 245.7K Total
1873 2) iASL Compiler/Disassembler and Tools:
1875 Disassembler: Fixed a problem with the new ACPI 5.0 serial resource
1876 descriptors (I2C, SPI, UART) where the resource produce/consumer bit was
1877 incorrectly displayed.
1879 AcpiHelp: Add display of ACPI/PNP device IDs that are defined in the ACPI
1882 ----------------------------------------
1883 11 January 2012. Summary of changes for version 20120111:
1886 1) ACPICA Core Subsystem:
1888 Implemented a new mechanism to allow host device drivers to check for
1890 range conflicts with ACPI Operation Regions. Both SystemMemory and
1892 address spaces are supported. A new external interface,
1893 AcpiCheckAddressRange,
1894 allows drivers to check an address range against the ACPI namespace. See
1896 ACPICA reference for additional details. Adds one new file,
1897 utilities/utaddress.c. Lin Ming, Bob Moore.
1899 Fixed several issues with the ACPI 5.0 FADT support: Add the sleep
1902 Status registers, update the ACPI 5.0 flags, and update internal data
1903 structures to handle an FADT larger than 256 bytes. The size of the ACPI
1907 Updated all ACPICA copyrights and signons to 2012. Added the 2012
1909 all module headers and signons, including the standard Linux header. This
1910 affects virtually every file in the ACPICA core subsystem, iASL compiler,
1912 all ACPICA utilities.
1914 Example Code and Data Size: These are the sizes for the OS-independent
1915 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
1917 version of the code includes the debug output trace mechanism and has a
1919 larger code and data size.
1922 Non-Debug Version: 92.3K Code, 24.9K Data, 117.2K Total
1923 Debug Version: 170.8K Code, 72.6K Data, 243.4K Total
1925 Non-Debug Version: 92.8K Code, 24.9K Data, 117.7K Total
1926 Debug Version: 171.7K Code, 72.9K Data, 244.5K Total
1929 2) iASL Compiler/Disassembler and Tools:
1931 Disassembler: fixed a problem with the automatic resource tag generation
1932 support. Fixes a problem where the resource tags are inadvertently not
1933 constructed if the table being disassembled contains external references
1935 control methods. Moved the actual construction of the tags to after the
1937 namespace is constructed (after 2nd parse is invoked due to external
1939 method references.) ACPICA BZ 941.
1941 Table Compiler: Make all "generic" operators caseless. These are the
1943 like UINT8, String, etc. Making these caseless improves ease-of-use.
1947 ----------------------------------------
1948 23 November 2011. Summary of changes for version 20111123:
1950 0) ACPI 5.0 Support:
1952 This release contains full support for the ACPI 5.0 specification, as
1955 Reduced Hardware Support:
1956 -------------------------
1958 This support allows for ACPI systems without the usual ACPI hardware.
1960 support is enabled by a flag in the revision 5 FADT. If it is set, ACPICA
1962 not attempt to initialize or use any of the usual ACPI hardware. Note,
1964 this flag is set, all of the following ACPI hardware is assumed to be not
1965 present and is not initialized or accessed:
1967 General Purpose Events (GPEs)
1968 Fixed Events (PM1a/PM1b and PM Control)
1969 Power Management Timer and Console Buttons (power/sleep)
1970 Real-time Clock Alarm
1972 System Control Interrupt (SCI)
1973 The FACS is assumed to be non-existent
1978 All new tables and updates to existing tables are fully supported in the
1979 ACPICA headers (for use by device drivers), the disassembler, and the
1981 Data Table Compiler. ACPI 5.0 defines these new tables:
1983 BGRT /* Boot Graphics Resource Table */
1984 DRTM /* Dynamic Root of Trust for Measurement table */
1985 FPDT /* Firmware Performance Data Table */
1986 GTDT /* Generic Timer Description Table */
1987 MPST /* Memory Power State Table */
1988 PCCT /* Platform Communications Channel Table */
1989 PMTT /* Platform Memory Topology Table */
1990 RASF /* RAS Feature table */
1992 Operation Regions/SpaceIDs:
1993 ---------------------------
1995 All new operation regions are fully supported by the iASL compiler, the
1996 disassembler, and the ACPICA runtime code (for dispatch to region
1998 The new operation region Space IDs are:
2003 Resource Descriptors:
2004 ---------------------
2006 All new ASL resource descriptors are fully supported by the iASL
2009 ASL/AML disassembler, and the ACPICA runtime Resource Manager code
2011 all new predefined resource tags). New descriptors are:
2020 ASL/AML Operators, New and Modified:
2021 ------------------------------------
2023 One new operator is added, the Connection operator, which is used to
2025 a GeneralPurposeIo or GenericSerialBus resource descriptor with
2027 field objects within an operation region. Several new protocols are
2029 with the AccessAs operator. All are fully supported by the iASL compiler,
2030 disassembler, and runtime ACPICA AML interpreter:
2032 Connection // Declare Field Connection
2034 AccessAs: AttribBytes (n) // Read/Write N-Bytes Protocol
2035 AccessAs: AttribRawBytes (n) // Raw Read/Write N-Bytes
2037 AccessAs: AttribRawProcessBytes (n) // Raw Process Call Protocol
2038 RawDataBuffer // Data type for Vendor Data
2041 Predefined ASL/AML Objects:
2042 ---------------------------
2044 All new predefined objects/control-methods are supported by the iASL
2046 and the ACPICA runtime validation/repair (arguments and return values.)
2048 predefined names include the following:
2050 Standard Predefined Names (Objects or Control Methods):
2051 _AEI, _CLS, _CPC, _CWS, _DEP,
2052 _DLM, _EVT, _GCP, _CRT, _GWS,
2053 _HRV, _PRE, _PSE, _SRT, _SUB.
2055 Resource Tags (Names used to access individual fields within resource
2057 _DBT, _DPL, _DRS, _END, _FLC,
2058 _IOR, _LIN, _MOD, _PAR, _PHA,
2059 _PIN, _PPI, _POL, _RXL, _SLV,
2060 _SPE, _STB, _TXL, _VEN.
2062 ACPICA External Interfaces:
2063 ---------------------------
2065 Several new interfaces have been defined for use by ACPI-related device
2066 drivers and other host OS services:
2068 AcpiAcquireMutex and AcpiReleaseMutex: These interfaces allow the host OS
2070 acquire and release AML mutexes that are defined in the DSDT/SSDT tables
2071 provided by the BIOS. They are intended to be used in conjunction with
2073 ACPI 5.0 _DLM (Device Lock Method) in order to provide transaction-level
2074 mutual exclusion with the AML code/interpreter.
2076 AcpiGetEventResources: Returns the (formatted) resource descriptors as
2078 by the ACPI 5.0 _AEI object (ACPI Event Information). This object
2080 resource descriptors associated with hardware-reduced platform events,
2082 to the AcpiGetCurrentResources interface.
2084 Operation Region Handlers: For General Purpose IO and Generic Serial Bus
2085 operation regions, information about the Connection() object and any
2087 length information is passed to the region handler within the Context
2090 AcpiBufferToResource: This interface converts a raw AML buffer containing
2092 resource template or resource descriptor to the ACPI_RESOURCE internal
2094 suitable for use by device drivers. Can be used by an operation region
2096 to convert the Connection() buffer object into a ACPI_RESOURCE.
2098 Miscellaneous/Tools/TestSuites:
2099 -------------------------------
2101 Support for extended _HID names (Four alpha characters instead of three).
2102 Support for ACPI 5.0 features in the AcpiExec and AcpiHelp utilities.
2103 Support for ACPI 5.0 features in the ASLTS test suite.
2104 Fully updated documentation (ACPICA and iASL reference documents.)
2106 ACPI Table Definition Language:
2107 -------------------------------
2109 Support for this language was implemented and released as a subsystem of
2111 iASL compiler in 2010. (See the iASL compiler User Guide.)
2114 Non-ACPI 5.0 changes for this release:
2115 --------------------------------------
2117 1) ACPICA Core Subsystem:
2119 Fix a problem with operation region declarations where a failure can
2122 the region name and an argument that evaluates to an object (such as the
2123 region address) are in different namespace scopes. Lin Ming, ACPICA BZ
2126 Do not abort an ACPI table load if an invalid space ID is found within.
2128 will be caught later if the offending method is executed. ACPICA BZ 925.
2130 Fixed an issue with the FFixedHW space ID where the ID was not always
2131 recognized properly (Both ACPICA and iASL). ACPICA BZ 926.
2133 Fixed a problem with the 32-bit generation of the unix-specific OSL
2134 (osunixxf.c). Lin Ming, ACPICA BZ 936.
2136 Several changes made to enable generation with the GCC 4.6 compiler.
2140 New error messages: Unsupported I/O requests (not 8/16/32 bit), and
2142 field registers out-of-range.
2144 2) iASL Compiler/Disassembler and Tools:
2146 iASL: Implemented the __PATH__ operator, which returns the full pathname
2148 the current source file.
2150 AcpiHelp: Automatically display expanded keyword information for all ASL
2153 Debugger: Add "Template" command to disassemble/dump resource template
2156 Added a new master script to generate and execute the ASLTS test suite.
2157 Automatically handles 32- and 64-bit generation. See tests/aslts.sh
2159 iASL: Fix problem with listing generation during processing of the
2161 operator where AML listing was disabled until the entire Switch block was
2164 iASL: Improve support for semicolon statement terminators. Fix "invalid
2165 character" message for some cases when the semicolon is used. Semicolons
2167 now allowed after every <Term> grammar element. ACPICA BZ 927.
2169 iASL: Fixed some possible aliasing warnings during generation. ACPICA BZ
2172 Disassembler: Fix problem with disassembly of the DataTableRegion
2174 where an inadvertent "Unhandled deferred opcode" message could be
2177 3) Example Code and Data Size
2179 These are the sizes for the OS-independent acpica.lib produced by the
2180 Microsoft Visual C++ 9.0 32-bit compiler. The debug version of the code
2181 includes the debug output trace mechanism and has a much larger code and
2186 Non-Debug Version: 90.2K Code, 23.9K Data, 114.1K Total
2187 Debug Version: 165.6K Code, 68.4K Data, 234.0K Total
2189 Non-Debug Version: 92.3K Code, 24.9K Data, 117.2K Total
2190 Debug Version: 170.8K Code, 72.6K Data, 243.4K Total
2192 ----------------------------------------
2193 22 September 2011. Summary of changes for version 20110922:
2197 Support for ACPI 5.0 in ACPICA has been underway for several months and
2199 be released at the same time that ACPI 5.0 is officially released.
2201 The ACPI 5.0 specification is on track for release in the next few
2204 1) ACPICA Core Subsystem:
2206 Fixed a problem where the maximum sleep time for the Sleep() operator was
2207 intended to be limited to two seconds, but was inadvertently limited to
2211 Linux and Unix makefiles: Added header file dependencies to ensure
2213 generation of ACPICA core code and utilities. Also simplified the
2215 considerably through the use of the vpath variable to specify search
2219 2) iASL Compiler/Disassembler and Tools:
2221 iASL: Implemented support to check the access length for all fields
2223 access named Resource Descriptor fields. For example, if a resource field
2225 defined to be two bits, a warning is issued if a CreateXxxxField() is
2227 with an incorrect bit length. This is implemented for all current
2229 descriptor names. ACPICA BZ 930.
2231 Disassembler: Fixed a byte ordering problem with the output of 24-bit and
2235 iASL: Fixed a couple of issues associated with variable-length package
2236 objects. 1) properly handle constants like One, Ones, Zero -- do not make
2238 VAR_PACKAGE when these are used as a package length. 2) Allow the
2240 opcode (in addition to PACKAGE) when validating object types for
2244 iASL: Emit statistics for all output files (instead of just the ASL input
2246 AML output). Includes listings, hex files, etc.
2248 iASL: Added -G option to the table compiler to allow the compilation of
2250 ACPI tables. The only part of a table that is required is the standard
2255 AcpiXtract: Ported to the standard ACPICA environment (with ACPICA
2257 which also adds correct 64-bit support. Also, now all output filenames
2259 completely lower case.
2261 AcpiExec: Ignore any non-AML tables (tables other than DSDT or SSDT) when
2262 loading table files. A warning is issued for any such tables. The only
2263 exception is an FADT. This also fixes a possible fault when attempting to
2265 non-AML tables. ACPICA BZ 932.
2267 AcpiHelp: Added the AccessAs and Offset operators. Fixed a problem where
2269 missing table terminator could cause a fault when using the -p option.
2271 AcpiSrc: Fixed a possible divide-by-zero fault when generating file
2274 3) Example Code and Data Size
2276 These are the sizes for the OS-independent acpica.lib produced by the
2277 Microsoft Visual C++ 9.0 32-bit compiler. The debug version of the code
2278 includes the debug output trace mechanism and has a much larger code and
2282 Previous Release (VC 9.0):
2283 Non-Debug Version: 90.2K Code, 23.9K Data, 114.1K Total
2284 Debug Version: 165.6K Code, 68.4K Data, 234.0K Total
2285 Current Release (VC 9.0):
2286 Non-Debug Version: 90.2K Code, 23.9K Data, 114.1K Total
2287 Debug Version: 165.6K Code, 68.4K Data, 234.0K Total
2290 ----------------------------------------
2291 23 June 2011. Summary of changes for version 20110623:
2293 1) ACPI CA Core Subsystem:
2295 Updated the predefined name repair mechanism to not attempt repair of a
2297 return object if a _PSS object is present. We can only sort the _TSS
2299 package if there is no _PSS within the same scope. This is because if
2302 present, the ACPI specification dictates that the _TSS Power Dissipation
2304 is to be ignored, and therefore some BIOSs leave garbage values in the
2306 Power field(s). In this case, it is best to just return the _TSS package
2308 is. Reported by, and fixed with assistance from Fenghua Yu.
2310 Added an option to globally disable the control method return value
2312 and repair. This runtime option can be used to disable return value
2315 this is causing a problem on a particular machine. Also added an option
2317 AcpiExec (-dr) to set this disable flag.
2319 All makefiles and project files: Major changes to improve generation of
2321 tools. ACPICA BZ 912:
2322 Reduce default optimization levels to improve compatibility
2323 For Linux, add strict-aliasing=0 for gcc 4
2324 Cleanup and simplify use of command line defines
2325 Cleanup multithread library support
2326 Improve usage messages
2328 Linux-specific header: update handling of THREAD_ID and pthread. For the
2330 bit case, improve casting to eliminate possible warnings, especially with
2334 Example Code and Data Size: These are the sizes for the OS-independent
2335 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
2337 version of the code includes the debug output trace mechanism and has a
2339 larger code and data size.
2341 Previous Release (VC 9.0):
2342 Non-Debug Version: 90.1K Code, 23.9K Data, 114.0K Total
2343 Debug Version: 165.6K Code, 68.4K Data, 234.0K Total
2344 Current Release (VC 9.0):
2345 Non-Debug Version: 90.2K Code, 23.9K Data, 114.1K Total
2346 Debug Version: 165.6K Code, 68.4K Data, 234.0K Total
2348 2) iASL Compiler/Disassembler and Tools:
2350 With this release, a new utility named "acpihelp" has been added to the
2352 package. This utility summarizes the ACPI specification chapters for the
2354 and AML languages. It generates under Linux/Unix as well as Windows, and
2355 provides the following functionality:
2356 Find/display ASL operator(s) -- with description and syntax.
2357 Find/display ASL keyword(s) -- with exact spelling and descriptions.
2358 Find/display ACPI predefined name(s) -- with description, number
2359 of arguments, and the return value data type.
2360 Find/display AML opcode name(s) -- with opcode, arguments, and
2362 Decode/display AML opcode -- with opcode name, arguments, and
2365 Service Layers: Make multi-thread support configurable. Conditionally
2367 the multi-thread support so that threading libraries will not be linked
2370 necessary. The only tool that requires multi-thread support is AcpiExec.
2372 iASL: Update yyerrror/AslCompilerError for "const" errors. Newer versions
2374 Bison appear to want the interface to yyerror to be a const char * (or at
2375 least this is a problem when generating iASL on some systems.) ACPICA BZ
2379 Tools: Fix for systems where O_BINARY is not defined. Only used for
2381 versions of the tools.
2383 ----------------------------------------
2384 27 May 2011. Summary of changes for version 20110527:
2386 1) ACPI CA Core Subsystem:
2388 ASL Load() operator: Reinstate most restrictions on the incoming ACPI
2390 signature. Now, only allow SSDT, OEMx, and a null signature. History:
2391 1) Originally, we checked the table signature for "SSDT" or "PSDT".
2392 (PSDT is now obsolete.)
2393 2) We added support for OEMx tables, signature "OEM" plus a fourth
2394 "don't care" character.
2395 3) Valid tables were encountered with a null signature, so we just
2396 gave up on validating the signature, (05/2008).
2397 4) We encountered non-AML tables such as the MADT, which caused
2398 interpreter errors and kernel faults. So now, we once again allow
2399 only SSDT, OEMx, and now, also a null signature. (05/2011).
2401 Added the missing _TDL predefined name to the global name list in order
2403 enable validation. Affects both the core ACPICA code and the iASL
2406 Example Code and Data Size: These are the sizes for the OS-independent
2407 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
2409 version of the code includes the debug output trace mechanism and has a
2411 larger code and data size.
2413 Previous Release (VC 9.0):
2414 Non-Debug Version: 90.0K Code, 23.8K Data, 113.8K Total
2415 Debug Version: 164.5K Code, 68.0K Data, 232.5K Total
2416 Current Release (VC 9.0):
2417 Non-Debug Version: 90.1K Code, 23.9K Data, 114.0K Total
2418 Debug Version: 165.6K Code, 68.4K Data, 234.0K Total
2420 2) iASL Compiler/Disassembler and Tools:
2422 Debugger/AcpiExec: Implemented support for "complex" method arguments on
2424 debugger command line. This adds support beyond simple integers --
2426 Strings, Buffers, and Packages. Includes support for nested packages.
2427 Increased the default command line buffer size to accommodate these
2429 See the ACPICA reference for details and syntax. ACPICA BZ 917.
2431 Debugger/AcpiExec: Implemented support for "default" method arguments for
2433 Execute/Debug command. Now, the debugger will always invoke a control
2435 with the required number of arguments -- even if the command line
2437 none or insufficient arguments. It uses default integer values for any
2439 arguments. Also fixes a bug where only six method arguments maximum were
2440 supported instead of the required seven.
2442 Debugger/AcpiExec: Add a maximum buffer length parameter to AcpiOsGetLine
2444 also return status in order to prevent buffer overruns. See the ACPICA
2445 reference for details and syntax. ACPICA BZ 921
2447 iASL: Cleaned up support for Berkeley yacc. A general cleanup of code and
2448 makefiles to simplify support for the two different but similar parser
2449 generators, bison and yacc.
2451 Updated the generic unix makefile for gcc 4. The default gcc version is
2453 expected to be 4 or greater, since options specific to gcc 4 are used.
2455 ----------------------------------------
2456 13 April 2011. Summary of changes for version 20110413:
2458 1) ACPI CA Core Subsystem:
2460 Implemented support to execute a so-called "orphan" _REG method under the
2462 device. This change will force the execution of a _REG method underneath
2465 device even if there is no corresponding operation region of type
2466 EmbeddedControl. Fixes a problem seen on some machines and apparently is
2467 compatible with Windows behavior. ACPICA BZ 875.
2469 Added more predefined methods that are eligible for automatic NULL
2471 element removal. This change adds another group of predefined names to
2474 of names that can be repaired by having NULL package elements dynamically
2475 removed. This group are those methods that return a single variable-
2477 package containing simple data types such as integers, buffers, strings.
2479 includes: _ALx, _BCL, _CID,_ DOD, _EDL, _FIX, _PCL, _PLD, _PMD, _PRx,
2482 and _TZD. ACPICA BZ 914.
2484 Split and segregated all internal global lock functions to a new file,
2487 Updated internal address SpaceID for DataTable regions. Moved this
2490 id in preparation for ACPI 5.0 changes that will include some new space
2493 change should not affect user/host code.
2495 Example Code and Data Size: These are the sizes for the OS-independent
2497 produced by the Microsoft Visual C++ 9.0 32-bit compiler. The debug
2499 the code includes the debug output trace mechanism and has a much larger
2504 Previous Release (VC 9.0):
2505 Non-Debug Version: 89.8K Code, 23.8K Data, 113.6K Total
2506 Debug Version: 164.2K Code, 67.9K Data, 232.1K Total
2507 Current Release (VC 9.0):
2508 Non-Debug Version: 90.0K Code, 23.8K Data, 113.8K Total
2509 Debug Version: 164.5K Code, 68.0K Data, 232.5K Total
2511 2) iASL Compiler/Disassembler and Tools:
2513 iASL/DTC: Major update for new grammar features. Allow generic data types
2515 custom ACPI tables. Field names are now optional. Any line can be split
2517 multiple lines using the continuation char (\). Large buffers now use
2519 continuation character(s) and no colon on the continuation lines. See the
2521 update in the iASL compiler reference. ACPI BZ 910,911. Lin Ming, Bob
2524 iASL: Mark ASL "Return()" and the simple "Return" as "Null" return
2526 Since the parser stuffs a "zero" as the return value for these statements
2529 the underlying AML grammar), they were seen as "return with value" by the
2531 semantic checking. They are now seen correctly as "null" return
2534 iASL: Check if a_REG declaration has a corresponding Operation Region.
2536 check for each _REG to ensure that there is in fact a corresponding
2538 region declaration in the same scope. If not, the _REG method is not very
2540 since it probably won't be executed. ACPICA BZ 915.
2542 iASL/DTC: Finish support for expression evaluation. Added a new
2545 that implements c-style operator precedence and parenthesization. ACPICA
2549 Disassembler/DTC: Remove support for () and <> style comments in data
2552 that DTC has full expression support, we don't want to have comment
2555 start with a parentheses or a less-than symbol. Now, only the standard /*
2558 comments are supported, as well as the bracket [] comments.
2560 AcpiXtract: Fix for RSDP and dynamic SSDT extraction. These tables have
2562 headers in the acpidump file. Update the header validation to support
2564 tables. Problem introduced in previous AcpiXtract version in the change
2566 support "wrong checksum" error messages emitted by acpidump utility.
2568 iASL: Add a * option to generate all template files (as a synonym for
2572 "iasl -T *" or "iasl -T ALL".
2574 iASL/DTC: Do not abort compiler on fatal errors. We do not want to
2576 abort the compiler on "fatal" errors, simply should abort the current
2578 This allows multiple compiles with a single (possibly wildcard) compiler
2581 ----------------------------------------
2582 16 March 2011. Summary of changes for version 20110316:
2584 1) ACPI CA Core Subsystem:
2586 Fixed a problem caused by a _PRW method appearing at the namespace root
2588 during the setup of wake GPEs. A fault could occur if a _PRW directly
2591 root object was passed to the AcpiSetupGpeForWake interface. Lin Ming.
2593 Implemented support for "spurious" Global Lock interrupts. On some
2595 global lock interrupt can occur without the pending flag being set. Upon
2598 interrupt, we now ensure that a thread is actually waiting for the lock
2600 signaling GL availability. Rafael Wysocki, Bob Moore.
2602 Example Code and Data Size: These are the sizes for the OS-independent
2604 produced by the Microsoft Visual C++ 9.0 32-bit compiler. The debug
2606 the code includes the debug output trace mechanism and has a much larger
2611 Previous Release (VC 9.0):
2612 Non-Debug Version: 89.7K Code, 23.7K Data, 113.4K Total
2613 Debug Version: 163.9K Code, 67.5K Data, 231.4K Total
2614 Current Release (VC 9.0):
2615 Non-Debug Version: 89.8K Code, 23.8K Data, 113.6K Total
2616 Debug Version: 164.2K Code, 67.9K Data, 232.1K Total
2618 2) iASL Compiler/Disassembler and Tools:
2620 Implemented full support for the "SLIC" ACPI table. Includes support in
2622 header files, disassembler, table compiler, and template generator. Bob
2626 AcpiXtract: Correctly handle embedded comments and messages from
2628 Apparently some or all versions of acpidump will occasionally emit a
2631 "Wrong checksum", etc., into the dump file. This was causing problems for
2632 AcpiXtract. ACPICA BZ 905.
2634 iASL: Fix the Linux makefile by removing an inadvertent double file
2638 AcpiExec: Update installation of operation region handlers. Install one
2640 for a user-defined address space. This is used by the ASL test suite
2643 ----------------------------------------
2644 11 February 2011. Summary of changes for version 20110211:
2646 1) ACPI CA Core Subsystem:
2648 Added a mechanism to defer _REG methods for some early-installed
2650 Most user handlers should be installed before call to
2651 AcpiEnableSubsystem.
2652 However, Event handlers and region handlers should be installed after
2653 AcpiInitializeObjects. Override handlers for the "default" regions should
2655 installed early, however. This change executes all _REG methods for the
2656 default regions (Memory/IO/PCI/DataTable) simultaneously to prevent any
2657 chicken/egg issues between them. ACPICA BZ 848.
2659 Implemented an optimization for GPE detection. This optimization will
2661 ignore GPE registers that contain no enabled GPEs -- there is no need to
2662 read the register since this information is available internally. This
2663 becomes more important on machines with a large GPE space. ACPICA
2665 884. Lin Ming. Suggestion from Joe Liu.
2667 Removed all use of the highly unreliable FADT revision field. The
2669 number in the FADT has been found to be completely unreliable and cannot
2671 trusted. Only the actual table length can be used to infer the version.
2673 change updates the ACPICA core and the disassembler so that both no
2675 even look at the FADT version and instead depend solely upon the FADT
2678 Fix an unresolved name issue for the no-debug and no-error-message source
2679 generation cases. The _AcpiModuleName was left undefined in these cases,
2681 it is actually needed as a parameter to some interfaces. Define
2682 _AcpiModuleName as a null string in these cases. ACPICA Bugzilla 888.
2684 Split several large files (makefiles and project files updated)
2685 utglobal.c -> utdecode.c
2686 dbcomds.c -> dbmethod.c dbnames.c
2687 dsopcode.c -> dsargs.c dscontrol.c
2688 dsload.c -> dsload2.c
2689 aslanalyze.c -> aslbtypes.c aslwalks.c
2691 Example Code and Data Size: These are the sizes for the OS-independent
2692 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
2693 debug version of the code includes the debug output trace mechanism and
2695 a much larger code and data size.
2697 Previous Release (VC 9.0):
2698 Non-Debug Version: 89.7K Code, 23.7K Data, 113.4K Total
2699 Debug Version: 163.9K Code, 67.5K Data, 231.4K Total
2700 Current Release (VC 9.0):
2701 Non-Debug Version: 89.7K Code, 23.7K Data, 113.4K Total
2702 Debug Version: 163.9K Code, 67.5K Data, 231.4K Total
2704 2) iASL Compiler/Disassembler and Tools:
2706 iASL: Implemented the predefined macros __LINE__, __FILE__, and __DATE__.
2707 These are useful C-style macros with the standard definitions. ACPICA
2710 iASL/DTC: Added support for integer expressions and labels. Support for
2712 expressions for all integer fields in all ACPI tables. Support for labels
2714 "generic" portions of tables such as UEFI. See the iASL reference manual.
2716 Debugger: Added a command to display the status of global handlers. The
2717 "handlers" command will display op region, fixed event, and miscellaneous
2718 global handlers. installation status -- and for op regions, whether
2720 or user-installed handler will be used.
2722 iASL: Warn if reserved method incorrectly returns a value. Many
2724 names are defined such that they do not return a value. If implemented as
2726 method, issue a warning if such a name explicitly returns a value. ACPICA
2729 iASL: Added detection of GPE method name conflicts. Detects a conflict
2731 there are two GPE methods of the form _Lxy and _Exy in the same scope.
2733 example, _L1D and _E1D in the same scope.) ACPICA bugzilla 848.
2735 iASL/DTC: Fixed a couple input scanner issues with comments and line
2736 numbers. Comment remover could get confused and miss a comment ending.
2738 a problem with line counter maintenance.
2740 iASL/DTC: Reduced the severity of some errors from fatal to error. There
2742 no need to abort on simple errors within a field definition.
2744 Debugger: Simplified the output of the help command. All help output now
2746 a single screen, instead of help subcommands. ACPICA Bugzilla 897.
2748 ----------------------------------------
2749 12 January 2011. Summary of changes for version 20110112:
2751 1) ACPI CA Core Subsystem:
2753 Fixed a race condition between method execution and namespace walks that
2755 possibly cause a fault. The problem was apparently introduced in version
2756 20100528 as a result of a performance optimization that reduces the
2759 namespace walks upon method exit by using the delete_namespace_subtree
2760 function instead of the delete_namespace_by_owner function used
2762 Bug is a missing namespace lock in the delete_namespace_subtree function.
2763 dana.myers@oracle.com
2765 Fixed several issues and a possible fault with the automatic "serialized"
2766 method support. History: This support changes a method to "serialized" on
2768 fly if the method generates an AE_ALREADY_EXISTS error, indicating the
2769 possibility that it cannot handle reentrancy. This fix repairs a couple
2771 issues seen in the field, especially on machines with many cores:
2773 1) Delete method children only upon the exit of the last thread,
2774 so as to not delete objects out from under other running threads
2775 (and possibly causing a fault.)
2776 2) Set the "serialized" bit for the method only upon the exit of the
2777 Last thread, so as to not cause deadlock when running threads
2779 3) Cleanup the use of the AML "MethodFlags" and internal method flags
2780 so that there is no longer any confusion between the two.
2782 Lin Ming, Bob Moore. Reported by dana.myers@oracle.com.
2784 Debugger: Now lock the namespace for duration of a namespace dump.
2786 issues if the namespace is changing dynamically underneath the debugger.
2787 Especially affects temporary namespace nodes, since the debugger displays
2790 Updated the ordering of include files. The ACPICA headers should appear
2791 before any compiler-specific headers (stdio.h, etc.) so that acenv.h can
2793 any necessary compiler-specific defines, etc. Affects the ACPI-related
2797 Updated all ACPICA copyrights and signons to 2011. Added the 2011
2799 to all module headers and signons, including the Linux header. This
2801 virtually every file in the ACPICA core subsystem, iASL compiler, and all
2804 Added project files for MS Visual Studio 2008 (VC++ 9.0). The original
2805 project files for VC++ 6.0 are now obsolete. New project files can be
2807 under acpica/generate/msvc9. See acpica/generate/msvc9/readme.txt for
2810 Example Code and Data Size: These are the sizes for the OS-independent
2811 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The
2812 debug version of the code includes the debug output trace mechanism and
2814 much larger code and data size.
2816 Previous Release (VC 6.0):
2817 Non-Debug Version: 89.8K Code, 18.9K Data, 108.7K Total
2818 Debug Version: 166.6K Code, 52.1K Data, 218.7K Total
2819 Current Release (VC 9.0):
2820 Non-Debug Version: 89.7K Code, 23.7K Data, 113.4K Total
2821 Debug Version: 163.9K Code, 67.5K Data, 231.4K Total
2823 2) iASL Compiler/Disassembler and Tools:
2825 iASL: Added generic data types to the Data Table compiler. Add "generic"
2827 types such as UINT32, String, Unicode, etc., to simplify the generation
2829 platform-defined tables such as UEFI. Lin Ming.
2831 iASL: Added listing support for the Data Table Compiler. Adds listing
2833 (-l) to display actual binary output for each line of input code.
2835 ----------------------------------------
2836 09 December 2010. Summary of changes for version 20101209:
2838 1) ACPI CA Core Subsystem:
2840 Completed the major overhaul of the GPE support code that was begun in
2842 2010. Major features include: removal of _PRW execution in ACPICA (host
2843 executes _PRWs anyway), cleanup of "wake" GPE interfaces and processing,
2844 changes to existing interfaces, simplification of GPE handler operation,
2846 a handful of new interfaces:
2852 One new file, evxfgpe.c to consolidate all external GPE interfaces.
2854 See the ACPICA Programmer Reference for full details and programming
2855 information. See the new section 4.4 "General Purpose Event (GPE)
2857 for a full overview, and section 8.7 "ACPI General Purpose Event
2859 for programming details. ACPICA BZ 858,870,877. Matthew Garrett, Lin
2861 Bob Moore, Rafael Wysocki.
2863 Implemented a new GPE feature for Windows compatibility, the "Implicit
2865 GPE Notify". This feature will automatically issue a Notify(2) on a
2867 when a Wake GPE is received if there is no corresponding GPE method or
2868 handler. ACPICA BZ 870.
2870 Fixed a problem with the Scope() operator during table parse and load
2872 During load phase (table load or method execution), the scope operator
2874 not enter the target into the namespace. Instead, it should open a new
2876 at the target location. Linux BZ 19462, ACPICA BZ 882.
2878 Example Code and Data Size: These are the sizes for the OS-independent
2879 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
2880 debug version of the code includes the debug output trace mechanism and
2882 much larger code and data size.
2885 Non-Debug Version: 89.8K Code, 18.9K Data, 108.7K Total
2886 Debug Version: 166.6K Code, 52.1K Data, 218.7K Total
2888 Non-Debug Version: 89.9K Code, 19.0K Data, 108.9K Total
2889 Debug Version: 166.3K Code, 52.1K Data, 218.4K Total
2891 2) iASL Compiler/Disassembler and Tools:
2893 iASL: Relax the alphanumeric restriction on _CID strings. These strings
2895 "bus-specific" per the ACPI specification, and therefore any characters
2897 acceptable. The only checks that can be performed are for a null string
2899 perhaps for a leading asterisk. ACPICA BZ 886.
2901 iASL: Fixed a problem where a syntax error that caused a premature EOF
2902 condition on the source file emitted a very confusing error message. The
2903 premature EOF is now detected correctly. ACPICA BZ 891.
2905 Disassembler: Decode the AccessSize within a Generic Address Structure
2907 access, word access, etc.) Note, this field does not allow arbitrary bit
2908 access, the size is encoded as 1=byte, 2=word, 3=dword, and 4=qword.
2910 New: AcpiNames utility - Example namespace dump utility. Shows an example
2912 ACPICA configuration for a minimal namespace dump utility. Uses table and
2913 namespace managers, but no AML interpreter. Does not add any
2915 over AcpiExec, it is a subset of AcpiExec. The purpose is to show how to
2916 partition and configure ACPICA. ACPICA BZ 883.
2918 AML Debugger: Increased the debugger buffer size for method return
2920 Was 4K, increased to 16K. Also enhanced error messages for debugger
2922 execution, including the buffer overflow case.
2924 ----------------------------------------
2925 13 October 2010. Summary of changes for version 20101013:
2927 1) ACPI CA Core Subsystem:
2929 Added support to clear the PCIEXP_WAKE event. When clearing ACPI events,
2931 clear the PCIEXP_WAKE_STS bit in the ACPI PM1 Status Register, via
2932 HwClearAcpiStatus. Original change from Colin King. ACPICA BZ 880.
2934 Changed the type of the predefined namespace object _TZ from ThermalZone
2936 Device. This was found to be confusing to the host software that
2938 the various thermal zones, since _TZ is not really a ThermalZone.
2941 Notify() can still be performed on it. ACPICA BZ 876. Suggestion from Rui
2944 Added Windows Vista SP2 to the list of supported _OSI strings. The actual
2945 string is "Windows 2006 SP2".
2947 Eliminated duplicate code in AcpiUtExecute* functions. Now that the
2949 code automatically repairs _HID-related strings, this type of code is no
2950 longer needed in Execute_HID, Execute_CID, and Execute_UID. ACPICA BZ
2953 Example Code and Data Size: These are the sizes for the OS-independent
2954 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
2955 debug version of the code includes the debug output trace mechanism and
2957 much larger code and data size.
2960 Non-Debug Version: 89.9K Code, 19.0K Data, 108.9K Total
2961 Debug Version: 166.3K Code, 52.1K Data, 218.4K Total
2963 Non-Debug Version: 89.9K Code, 19.0K Data, 108.9K Total
2964 Debug Version: 166.3K Code, 52.1K Data, 218.4K Total
2966 2) iASL Compiler/Disassembler and Tools:
2968 iASL: Implemented additional compile-time validation for _HID strings.
2970 non-hex prefix (such as "PNP" or "ACPI") must be uppercase, and the
2973 the string must be exactly seven or eight characters. For both _HID and
2975 strings, all characters must be alphanumeric. ACPICA BZ 874.
2977 iASL: Allow certain "null" resource descriptors. Some BIOS code creates
2978 descriptors that are mostly or all zeros, with the expectation that they
2980 be filled in at runtime. iASL now allows this as long as there is a
2982 tag" (name) associated with the descriptor, which gives the ASL a handle
2983 needed to modify the descriptor. ACPICA BZ 873.
2985 Added single-thread support to the generic Unix application OSL.
2987 for iASL support, this change removes the use of semaphores in the
2989 threaded ACPICA tools/applications - increasing performance. The
2990 _MULTI_THREADED option was replaced by the (reverse) ACPI_SINGLE_THREADED
2991 option. ACPICA BZ 879.
2993 AcpiExec: several fixes for the 64-bit version. Adds XSDT support and
2995 for 64-bit DSDT/FACS addresses in the FADT. Lin Ming.
2997 iASL: Moved all compiler messages to a new file, aslmessages.h.
2999 ----------------------------------------
3000 15 September 2010. Summary of changes for version 20100915:
3002 1) ACPI CA Core Subsystem:
3004 Removed the AcpiOsDerivePciId OSL interface. The various host
3006 of this function were not OS-dependent and are now obsolete and can be
3007 removed from all host OSLs. This function has been replaced by
3008 AcpiHwDerivePciId, which is now part of the ACPICA core code.
3009 AcpiHwDerivePciId has been implemented without recursion. Adds one new
3010 module, hwpci.c. ACPICA BZ 857.
3012 Implemented a dynamic repair for _HID and _CID strings. The following
3013 problems are now repaired at runtime: 1) Remove a leading asterisk in the
3014 string, and 2) the entire string is uppercased. Both repairs are in
3015 accordance with the ACPI specification and will simplify host driver
3019 The ACPI_THREAD_ID type is no longer configurable, internally it is now
3020 always UINT64. This simplifies the ACPICA code, especially any printf
3022 UINT64 is the only common data type for all thread_id types across all
3023 operating systems. It is now up to the host OSL to cast the native
3025 type to UINT64 before returning the value to ACPICA (via
3027 Lin Ming, Bob Moore.
3029 Added the ACPI_INLINE type to enhance the ACPICA configuration. The
3031 keyword is not standard across compilers, and this type allows inline to
3033 configured on a per-compiler basis. Lin Ming.
3035 Made the system global AcpiGbl_SystemAwakeAndRunning publically
3037 Added an extern for this boolean in acpixf.h. Some hosts utilize this
3039 during suspend/restore operations. ACPICA BZ 869.
3041 All code that implements error/warning messages with the "ACPI:" prefix
3043 been moved to a new module, utxferror.c.
3045 The UINT64_OVERLAY was moved to utmath.c, which is the only module where
3047 is used. ACPICA BZ 829. Lin Ming, Bob Moore.
3049 Example Code and Data Size: These are the sizes for the OS-independent
3050 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
3051 debug version of the code includes the debug output trace mechanism and
3053 much larger code and data size.
3056 Non-Debug Version: 89.1K Code, 19.0K Data, 108.1K Total
3057 Debug Version: 165.1K Code, 51.9K Data, 217.0K Total
3059 Non-Debug Version: 89.9K Code, 19.0K Data, 108.9K Total
3060 Debug Version: 166.3K Code, 52.1K Data, 218.4K Total
3062 2) iASL Compiler/Disassembler and Tools:
3064 iASL/Disassembler: Write ACPI errors to stderr instead of the output
3066 This keeps the output files free of random error messages that may
3068 from within the namespace/interpreter code. Used this opportunity to
3070 all ACPI:-style messages into a single new module, utxferror.c. ACPICA BZ
3071 866. Lin Ming, Bob Moore.
3073 Tools: update some printfs for ansi warnings on size_t. Handle width
3075 of size_t on 32-bit versus 64-bit generations. Lin Ming.
3077 ----------------------------------------
3078 06 August 2010. Summary of changes for version 20100806:
3080 1) ACPI CA Core Subsystem:
3082 Designed and implemented a new host interface to the _OSI support code.
3084 will allow the host to dynamically add or remove multiple _OSI strings,
3086 well as install an optional handler that is called for each _OSI
3088 Also added a new AML debugger command, 'osi' to display and modify the
3090 _OSI string table, and test support in the AcpiExec utility. See the
3092 reference manual for full details. Lin Ming, Bob Moore. ACPICA BZ 836.
3094 AcpiInstallInterface - Add an _OSI string.
3095 AcpiRemoveInterface - Delete an _OSI string.
3096 AcpiInstallInterfaceHandler - Install optional _OSI handler.
3098 AcpiOsValidateInterface - no longer used.
3100 source/components/utilities/utosi.c
3102 Re-introduced the support to enable multi-byte transfers for Embedded
3103 Controller (EC) operation regions. A reported problem was found to be a
3105 in the host OS, not in the multi-byte support. Previously, the maximum
3107 size passed to the EC operation region handler was a single byte. There
3109 often EC Fields larger than one byte that need to be transferred, and it
3111 useful for the EC driver to lock these as a single transaction. This
3113 enables single transfers larger than 8 bits. This effectively changes the
3114 access to the EC space from ByteAcc to AnyAcc, and will probably require
3115 changes to the host OS Embedded Controller driver to enable 16/32/64/256-
3117 transfers in addition to 8-bit transfers. Alexey Starikovskiy, Lin Ming.
3119 Fixed a problem with the prototype for AcpiOsReadPciConfiguration. The
3120 prototype in acpiosxf.h had the output value pointer as a (void *).
3121 It should be a (UINT64 *). This may affect some host OSL code.
3123 Fixed a couple problems with the recently modified Linux makefiles for
3125 and AcpiExec. These new makefiles place the generated object files in the
3126 local directory so that there can be no collisions between the files that
3128 shared between them that are compiled with different options.
3130 Example Code and Data Size: These are the sizes for the OS-independent
3131 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
3132 debug version of the code includes the debug output trace mechanism and
3134 much larger code and data size.
3137 Non-Debug Version: 88.3K Code, 18.8K Data, 107.1K Total
3138 Debug Version: 164.0K Code, 51.5K Data, 215.5K Total
3140 Non-Debug Version: 89.1K Code, 19.0K Data, 108.1K Total
3141 Debug Version: 165.1K Code, 51.9K Data, 217.0K Total
3143 2) iASL Compiler/Disassembler and Tools:
3145 iASL/Disassembler: Added a new option (-da, "disassemble all") to load
3147 namespace from and disassemble an entire group of AML files. Useful for
3148 loading all of the AML tables for a given machine (DSDT, SSDT1...SSDTn)
3150 disassembling with one simple command. ACPICA BZ 865. Lin Ming.
3152 iASL: Allow multiple invocations of -e option. This change allows
3154 uses of -e on the command line: "-e ssdt1.dat -e ssdt2.dat". ACPICA BZ
3158 ----------------------------------------
3159 02 July 2010. Summary of changes for version 20100702:
3161 1) ACPI CA Core Subsystem:
3163 Implemented several updates to the recently added GPE reference count
3164 support. The model for "wake" GPEs is changing to give the host OS
3166 control of these GPEs. Eventually, the ACPICA core will not execute any
3168 methods, since the host already must execute them. Also, additional
3170 were made to help ensure that the reference counts are kept in proper
3171 synchronization with reality. Rafael J. Wysocki.
3173 1) Ensure that GPEs are not enabled twice during initialization.
3174 2) Ensure that GPE enable masks stay in sync with the reference count.
3175 3) Do not inadvertently enable GPEs when writing GPE registers.
3176 4) Remove the internal wake reference counter and add new AcpiGpeWakeup
3177 interface. This interface will set or clear individual GPEs for wakeup.
3178 5) Remove GpeType argument from AcpiEnable and AcpiDisable. These
3180 are now used for "runtime" GPEs only.
3182 Changed the behavior of the GPE install/remove handler interfaces. The
3185 no longer disabled during this process, as it was found to cause problems
3187 some machines. Rafael J. Wysocki.
3189 Reverted a change introduced in version 20100528 to enable Embedded
3190 Controller multi-byte transfers. This change was found to cause problems
3192 Index Fields and possibly Bank Fields. It will be reintroduced when these
3193 problems have been resolved.
3195 Fixed a problem with references to Alias objects within Package Objects.
3197 reference to an Alias within the definition of a Package was not always
3198 resolved properly. Aliases to objects like Processors, Thermal zones,
3200 were resolved to the actual object instead of a reference to the object
3203 should be. Package objects are only allowed to contain integer, string,
3204 buffer, package, and reference objects. Redhat bugzilla 608648.
3206 Example Code and Data Size: These are the sizes for the OS-independent
3207 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
3208 debug version of the code includes the debug output trace mechanism and
3210 much larger code and data size.
3213 Non-Debug Version: 88.3K Code, 18.8K Data, 107.1K Total
3214 Debug Version: 164.1K Code, 51.5K Data, 215.6K Total
3216 Non-Debug Version: 88.3K Code, 18.8K Data, 107.1K Total
3217 Debug Version: 164.0K Code, 51.5K Data, 215.5K Total
3219 2) iASL Compiler/Disassembler and Tools:
3221 iASL: Implemented a new compiler subsystem to allow definition and
3222 compilation of the non-AML ACPI tables such as FADT, MADT, SRAT, etc.
3224 are called "ACPI Data Tables", and the new compiler is the "Data Table
3225 Compiler". This compiler is intended to simplify the existing error-prone
3226 process of creating these tables for the BIOS, as well as allowing the
3227 disassembly, modification, recompilation, and override of existing ACPI
3229 tables. See the iASL User Guide for detailed information.
3231 iASL: Implemented a new Template Generator option in support of the new
3233 Table Compiler. This option will create examples of all known ACPI tables
3234 that can be used as the basis for table development. See the iASL
3235 documentation and the -T option.
3237 Disassembler and headers: Added support for the WDDT ACPI table (Watchdog
3240 Updated the Linux makefiles for iASL and AcpiExec to place the generated
3241 object files in the local directory so that there can be no collisions
3242 between the shared files between them that are generated with different
3245 Added support for Mac OS X in the Unix OSL used for iASL and AcpiExec.
3247 the #define __APPLE__ to enable this support.
3249 ----------------------------------------
3250 28 May 2010. Summary of changes for version 20100528:
3252 Note: The ACPI 4.0a specification was released on April 5, 2010 and is
3253 available at www.acpi.info. This is primarily an errata release.
3255 1) ACPI CA Core Subsystem:
3257 Undefined ACPI tables: We are looking for the definitions for the
3259 ACPI tables that have been seen in the field: ATKG, IEIT, GSCI.
3261 Implemented support to enable multi-byte transfers for Embedded
3263 (EC) operation regions. Previously, the maximum data size passed to the
3265 operation region handler was a single byte. There are often EC Fields
3267 than one byte that need to be transferred, and it is useful for the EC
3269 to lock these as a single transaction. This change enables single
3271 larger than 8 bits. This effectively changes the access to the EC space
3273 ByteAcc to AnyAcc, and will probably require changes to the host OS
3275 Controller driver to enable 16/32/64/256-bit transfers in addition to 8-
3277 transfers. Alexey Starikovskiy, Lin Ming
3279 Implemented a performance enhancement for namespace search and access.
3281 change enhances the performance of namespace searches and walks by adding
3283 backpointer to the parent in each namespace node. On large namespaces,
3285 change can improve overall ACPI performance by up to 9X. Adding a pointer
3287 each namespace node increases the overall size of the internal namespace
3289 about 5%, since each namespace entry usually consists of both a namespace
3290 node and an ACPI operand object. However, this is the first growth of the
3291 namespace in ten years. ACPICA bugzilla 817. Alexey Starikovskiy.
3293 Implemented a performance optimization that reduces the number of
3295 walks. On control method exit, only walk the namespace if the method is
3297 to have created namespace objects outside of its local scope. Previously,
3299 entire namespace was traversed on each control method exit. This change
3301 improve overall ACPI performance by up to 3X. Alexey Starikovskiy, Bob
3304 Added support to truncate I/O addresses to 16 bits for Windows
3306 Some ASL code has been seen in the field that inadvertently has bits set
3307 above bit 15. This feature is optional and is enabled if the BIOS
3309 any Windows OSI strings. It can also be enabled by the host OS. Matthew
3312 Added support to limit the maximum time for the ASL Sleep() operator. To
3313 prevent accidental deep sleeps, limit the maximum time that Sleep() will
3314 actually sleep. Configurable, the default maximum is two seconds. ACPICA
3317 Added run-time validation support for the _WDG and_WED Microsoft
3319 methods. These objects are defined by "Windows Instrumentation", and are
3321 part of the ACPI spec. ACPICA BZ 860.
3323 Expanded all statistic counters used during namespace and device
3324 initialization from 16 to 32 bits in order to support very large
3327 Replaced all instances of %d in printf format specifiers with %u since
3329 all integers in ACPICA are unsigned.
3331 Fixed the exception namestring for AE_WAKE_ONLY_GPE. Was incorrectly
3335 Example Code and Data Size: These are the sizes for the OS-independent
3336 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
3337 debug version of the code includes the debug output trace mechanism and
3339 much larger code and data size.
3342 Non-Debug Version: 88.4K Code, 18.8K Data, 107.2K Total
3343 Debug Version: 164.2K Code, 51.5K Data, 215.7K Total
3345 Non-Debug Version: 88.3K Code, 18.8K Data, 107.1K Total
3346 Debug Version: 164.1K Code, 51.5K Data, 215.6K Total
3348 2) iASL Compiler/Disassembler and Tools:
3350 iASL: Added compiler support for the _WDG and_WED Microsoft predefined
3351 methods. These objects are defined by "Windows Instrumentation", and are
3353 part of the ACPI spec. ACPICA BZ 860.
3355 AcpiExec: added option to disable the memory tracking mechanism. The -dt
3356 option will disable the tracking mechanism, which improves performance
3359 AcpiExec: Restructured the command line options into -d (disable) and -e
3362 ----------------------------------------
3363 28 April 2010. Summary of changes for version 20100428:
3365 1) ACPI CA Core Subsystem:
3367 Implemented GPE support for dynamically loaded ACPI tables. For all GPEs,
3368 including FADT-based and GPE Block Devices, execute any _PRW methods in
3370 new table, and process any _Lxx/_Exx GPE methods in the new table. Any
3371 runtime GPE that is referenced by an _Lxx/_Exx method in the new table is
3372 immediately enabled. Handles the FADT-defined GPEs as well as GPE Block
3373 Devices. Provides compatibility with other ACPI implementations. Two new
3374 files added, evgpeinit.c and evgpeutil.c. ACPICA BZ 833. Lin Ming, Bob
3377 Fixed a regression introduced in version 20100331 within the table
3379 where initial table loading could fail. This was introduced in the fix
3381 AcpiReallocateRootTable. Also, renamed some of fields in the table
3383 data structures to clarify their meaning and use.
3385 Fixed a possible allocation overrun during internal object copy in
3386 AcpiUtCopySimpleObject. The original code did not correctly handle the
3388 where the object to be copied was a namespace node. Lin Ming. ACPICA BZ
3391 Updated the allocation dump routine, AcpiUtDumpAllocation and fixed a
3392 possible access beyond end-of-allocation. Also, now fully validate
3394 (size and type) before output. Lin Ming, Bob Moore. ACPICA BZ 847
3396 Example Code and Data Size: These are the sizes for the OS-independent
3397 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
3398 debug version of the code includes the debug output trace mechanism and
3400 much larger code and data size.
3403 Non-Debug Version: 87.9K Code, 18.6K Data, 106.5K Total
3404 Debug Version: 163.5K Code, 51.3K Data, 214.8K Total
3406 Non-Debug Version: 88.4K Code, 18.8K Data, 107.2K Total
3407 Debug Version: 164.2K Code, 51.5K Data, 215.7K Total
3409 2) iASL Compiler/Disassembler and Tools:
3411 iASL: Implemented Min/Max/Len/Gran validation for address resource
3412 descriptors. This change implements validation for the address fields
3414 are common to all address-type resource descriptors. These checks are
3415 implemented: Checks for valid Min/Max, length within the Min/Max window,
3416 valid granularity, Min/Max a multiple of granularity, and _MIF/_MAF as
3418 table 6-40 in the ACPI 4.0a specification. Also split the large
3420 and aslrestype2.c files into five new files. ACPICA BZ 840.
3422 iASL: Added support for the _Wxx predefined names. This support was
3424 and these names were not recognized by the compiler as valid predefined
3425 names. ACPICA BZ 851.
3427 iASL: Added an error for all predefined names that are defined to return
3429 value and thus must be implemented as Control Methods. These include all
3431 the _Lxx, _Exx, _Wxx, and _Qxx names, as well as some other miscellaneous
3432 names such as _DIS, _INI, _IRC, _OFF, _ON, and _PSx. ACPICA BZ 850, 856.
3434 iASL: Implemented the -ts option to emit hex AML data in ASL format, as
3436 ASL Buffer. Allows ACPI tables to be easily included within ASL files, to
3438 dynamically loaded via the Load() operator. Also cleaned up output for
3441 ta and -tc options. ACPICA BZ 853.
3443 Tests: Added a new file with examples of extended iASL error checking.
3444 Demonstrates the advanced error checking ability of the iASL compiler.
3445 Available at tests/misc/badcode.asl.
3447 ----------------------------------------
3448 31 March 2010. Summary of changes for version 20100331:
3450 1) ACPI CA Core Subsystem:
3452 Completed a major update for the GPE support in order to improve support
3454 shared GPEs and to simplify both host OS and ACPICA code. Added a
3456 count mechanism to support shared GPEs that require multiple device
3458 Several external interfaces have changed. One external interface has been
3459 removed. One new external interface was added. Most of the GPE external
3460 interfaces now use the GPE spinlock instead of the events mutex (and the
3461 Flags parameter for many GPE interfaces has been removed.) See the
3463 ACPICA Programmer Reference for details. Matthew Garrett, Bob Moore,
3465 Wysocki. ACPICA BZ 831.
3468 AcpiEnableGpe, AcpiDisableGpe, AcpiClearGpe, AcpiGetGpeStatus
3474 Implemented write support for DataTable operation regions. These regions
3476 defined via the DataTableRegion() operator. Previously, only read support
3478 implemented. The ACPI specification allows DataTableRegions to be
3482 Implemented a new subsystem option to force a copy of the DSDT to local
3483 memory. Optionally copy the entire DSDT to local memory (instead of
3485 mapping it.) There are some (albeit very rare) BIOSs that corrupt or
3487 the original DSDT, creating the need for this option. Default is FALSE,
3491 Implemented detection of a corrupted or replaced DSDT. This change adds
3492 support to detect a DSDT that has been corrupted and/or replaced from
3494 the OS (by firmware). This is typically catastrophic for the system, but
3496 been seen on some machines. Once this problem has been detected, the DSDT
3497 copy option can be enabled via system configuration. Lin Ming, Bob Moore.
3499 Fixed two problems with AcpiReallocateRootTable during the root table
3501 When copying the root table to the new allocation, the length used was
3502 incorrect. The new size was used instead of the current table size,
3504 too much data was copied. Also, the count of available slots for ACPI
3506 was not set correctly. Alexey Starikovskiy, Bob Moore.
3508 Example Code and Data Size: These are the sizes for the OS-independent
3509 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
3510 debug version of the code includes the debug output trace mechanism and
3512 much larger code and data size.
3515 Non-Debug Version: 87.5K Code, 18.4K Data, 105.9K Total
3516 Debug Version: 163.4K Code, 51.1K Data, 214.5K Total
3518 Non-Debug Version: 87.9K Code, 18.6K Data, 106.5K Total
3519 Debug Version: 163.5K Code, 51.3K Data, 214.8K Total
3521 2) iASL Compiler/Disassembler and Tools:
3523 iASL: Implement limited typechecking for values returned from predefined
3524 control methods. The type of any returned static (unnamed) object is now
3525 validated. For example, Return(1). ACPICA BZ 786.
3527 iASL: Fixed a predefined name object verification regression. Fixes a
3529 introduced in version 20100304. An error is incorrectly generated if a
3530 predefined name is declared as a static named object with a value defined
3531 using the keywords "Zero", "One", or "Ones". Lin Ming.
3533 iASL: Added Windows 7 support for the -g option (get local ACPI tables)
3535 reducing the requested registry access rights. ACPICA BZ 842.
3537 Disassembler: fixed a possible fault when generating External()
3539 Introduced in commit ae7d6fd: Properly handle externals with parent-
3541 (carat). Fixes a string length allocation calculation. Lin Ming.
3543 ----------------------------------------
3544 04 March 2010. Summary of changes for version 20100304:
3546 1) ACPI CA Core Subsystem:
3548 Fixed a possible problem with the AML Mutex handling function
3549 AcpiExReleaseMutex where the function could fault under the very rare
3550 condition when the interpreter has blocked, the interpreter lock is
3552 the interpreter is then reentered via the same thread, and attempts to
3553 acquire an AML mutex that was previously acquired. FreeBSD report 140979.
3557 Implemented additional configuration support for the AML "Debug Object".
3558 Output from the debug object can now be enabled via a global variable,
3559 AcpiGbl_EnableAmlDebugObject. This will assist with remote machine
3561 This debug output is now available in the release version of ACPICA
3563 of just the debug version. Also, the entire debug output module can now
3565 configured out of the ACPICA build if desired. One new file added,
3566 executer/exdebug.c. Lin Ming, Bob Moore.
3568 Added header support for the ACPI MCHI table (Management Controller Host
3569 Interface Table). This table was added in ACPI 4.0, but the defining
3571 has only recently become available.
3573 Standardized output of integer values for ACPICA warnings/errors. Always
3575 0x prefix for hex output, always use %u for unsigned integer decimal
3577 Affects ACPI_INFO, ACPI_ERROR, ACPI_EXCEPTION, and ACPI_WARNING (about
3579 invocations.) These invocations were converted from the original
3580 ACPI_DEBUG_PRINT invocations and were not consistent. ACPICA BZ 835.
3582 Example Code and Data Size: These are the sizes for the OS-independent
3583 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
3584 debug version of the code includes the debug output trace mechanism and
3586 much larger code and data size.
3589 Non-Debug Version: 87.1K Code, 18.0K Data, 105.1K Total
3590 Debug Version: 163.5K Code, 50.9K Data, 214.4K Total
3592 Non-Debug Version: 87.5K Code, 18.4K Data, 105.9K Total
3593 Debug Version: 163.4K Code, 51.1K Data, 214.5K Total
3595 2) iASL Compiler/Disassembler and Tools:
3597 iASL: Implemented typechecking support for static (non-control method)
3598 predefined named objects that are declared with the Name() operator. For
3599 example, the type of this object is now validated to be of type Integer:
3600 Name(_BBN, 1). This change migrates the compiler to using the core
3602 name table instead of maintaining a local version. Added a new file,
3603 aslpredef.c. ACPICA BZ 832.
3605 Disassembler: Added support for the ACPI 4.0 MCHI table.
3607 ----------------------------------------
3608 21 January 2010. Summary of changes for version 20100121:
3610 1) ACPI CA Core Subsystem:
3612 Added the 2010 copyright to all module headers and signons. This affects
3613 virtually every file in the ACPICA core subsystem, the iASL compiler, the
3614 tools/utilities, and the test suites.
3616 Implemented a change to the AcpiGetDevices interface to eliminate
3618 invocations of the _STA method. In the case where a specific _HID is
3619 requested, do not run _STA until a _HID match is found. This eliminates
3620 potentially dozens of _STA calls during a search for a particular
3622 which in turn can improve boot times. ACPICA BZ 828. Lin Ming.
3624 Implemented an additional repair for predefined method return values.
3626 to repair unexpected NULL elements within returned Package objects.
3629 Integer of value zero, a NULL String, or a zero-length Buffer as
3631 ACPICA BZ 818. Lin Ming, Bob Moore.
3633 Removed the obsolete ACPI_INTEGER data type. This type was introduced as
3635 code was migrated from ACPI 1.0 (with 32-bit AML integers) to ACPI 2.0
3637 64-bit AML integers). It is now obsolete and this change removes it from
3639 ACPICA code base, replaced by UINT64. The original typedef has been
3641 for now for compatibility with existing device driver code. ACPICA BZ
3644 Removed the unused UINT32_STRUCT type, and the obsolete Integer64 field
3646 the parse tree object.
3648 Added additional warning options for the gcc-4 generation. Updated the
3650 accordingly. This includes some code restructuring to eliminate
3652 code, elimination of some gotos, elimination of unused return values,
3654 additional casting, and removal of redundant declarations.
3656 Example Code and Data Size: These are the sizes for the OS-independent
3657 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
3658 debug version of the code includes the debug output trace mechanism and
3660 much larger code and data size.
3663 Non-Debug Version: 87.0K Code, 18.0K Data, 105.0K Total
3664 Debug Version: 163.4K Code, 50.8K Data, 214.2K Total
3666 Non-Debug Version: 87.1K Code, 18.0K Data, 105.1K Total
3667 Debug Version: 163.5K Code, 50.9K Data, 214.4K Total
3669 2) iASL Compiler/Disassembler and Tools:
3671 No functional changes for this release.
3673 ----------------------------------------
3674 14 December 2009. Summary of changes for version 20091214:
3676 1) ACPI CA Core Subsystem:
3678 Enhanced automatic data type conversions for predefined name repairs.
3680 change expands the automatic repairs/conversions for predefined name
3682 values to make Integers, Strings, and Buffers fully interchangeable.
3685 Buffer can be converted to a Package of Integers if necessary. The
3687 module was completely restructured. Lin Ming, Bob Moore.
3689 Implemented automatic removal of null package elements during predefined
3691 repairs. This change will automatically remove embedded and trailing NULL
3692 package elements from returned package objects that are defined to
3695 variable number of sub-packages. The driver is then presented with a
3697 with no null elements to deal with. ACPICA BZ 819.
3699 Implemented a repair for the predefined _FDE and _GTM names. The expected
3700 return value for both names is a Buffer of 5 DWORDs. This repair fixes
3702 possible problems (both seen in the field), where a package of integers
3704 returned, or a buffer of BYTEs is returned. With assistance from Jung-uk
3707 Implemented additional module-level code support. This change will
3709 execute module-level code that is not at the root of the namespace (under
3711 Device object, etc.). Now executes the code within the current scope
3713 of the root. ACPICA BZ 762. Lin Ming.
3715 Fixed possible mutex acquisition errors when running _REG methods. Fixes
3717 problem where mutex errors can occur when running a _REG method that is
3719 the same scope as a method-defined operation region or an operation
3721 under a module-level IF block. This type of code is rare, so the problem
3723 not been seen before. ACPICA BZ 826. Lin Ming, Bob Moore.
3725 Fixed a possible memory leak during module-level code execution. An
3727 could be leaked for each block of executed module-level code if the
3728 interpreter slack mode is enabled This change deletes any implicitly
3730 object from the module-level code block. Lin Ming.
3732 Removed messages for successful predefined repair(s). The repair
3734 was considered too wordy. Now, messages are only unconditionally emitted
3736 the return object cannot be repaired. Existing messages for successful
3737 repairs were converted to ACPI_DEBUG_PRINT messages for now. ACPICA BZ
3740 Example Code and Data Size: These are the sizes for the OS-independent
3741 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
3742 debug version of the code includes the debug output trace mechanism and
3744 much larger code and data size.
3747 Non-Debug Version: 86.6K Code, 18.2K Data, 104.8K Total
3748 Debug Version: 162.7K Code, 50.8K Data, 213.5K Total
3750 Non-Debug Version: 87.0K Code, 18.0K Data, 105.0K Total
3751 Debug Version: 163.4K Code, 50.8K Data, 214.2K Total
3753 2) iASL Compiler/Disassembler and Tools:
3755 iASL: Fixed a regression introduced in 20091112 where intermediate .SRC
3757 were no longer automatically removed at the termination of the compile.
3759 acpiexec: Implemented the -f option to specify default region fill value.
3760 This option specifies the value used to initialize buffers that simulate
3761 operation regions. Default value is zero. Useful for debugging problems
3763 depend on a specific initial value for a region or field.
3765 ----------------------------------------
3766 12 November 2009. Summary of changes for version 20091112:
3768 1) ACPI CA Core Subsystem:
3770 Implemented a post-order callback to AcpiWalkNamespace. The existing
3771 interface only has a pre-order callback. This change adds an additional
3772 parameter for a post-order callback which will be more useful for bus
3774 ACPICA BZ 779. Lin Ming. Updated the ACPICA Programmer Reference.
3776 Modified the behavior of the operation region memory mapping cache for
3777 SystemMemory. Ensure that the memory mappings created for operation
3779 do not cross 4K page boundaries. Crossing a page boundary while mapping
3780 regions can cause kernel warnings on some hosts if the pages have
3782 attributes. Such regions are probably BIOS bugs, and this is the
3784 Linux BZ 14445. Lin Ming.
3786 Implemented an automatic repair for predefined methods that must return
3787 sorted lists. This change will repair (by sorting) packages returned by
3789 _PSS, and _TSS. Drivers can now assume that the packages are correctly
3791 and do not contain NULL package elements. Adds one new file,
3792 namespace/nsrepair2.c. ACPICA BZ 784. Lin Ming, Bob Moore.
3794 Fixed a possible fault during predefined name validation if a return
3796 object contains NULL elements. Also adds a warning if a NULL element is
3797 followed by any non-null elements. ACPICA BZ 813, 814. Future enhancement
3799 include repair or removal of all such NULL elements where possible.
3801 Implemented additional module-level executable AML code support. This
3803 will execute module-level code that is not at the root of the namespace
3804 (under a Device object, etc.) at table load time. Module-level executable
3806 code has been illegal since ACPI 2.0. ACPICA BZ 762. Lin Ming.
3808 Implemented a new internal function to create Integer objects. This
3810 simplifies miscellaneous object creation code. ACPICA BZ 823.
3812 Reduced the severity of predefined repair messages, Warning to Info.
3814 the object was successfully repaired, a warning is too severe. Reduced to
3816 info message for now. These messages may eventually be changed to debug-
3820 Example Code and Data Size: These are the sizes for the OS-independent
3821 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
3822 debug version of the code includes the debug output trace mechanism and
3824 much larger code and data size.
3827 Non-Debug Version: 85.8K Code, 18.0K Data, 103.8K Total
3828 Debug Version: 161.8K Code, 50.6K Data, 212.4K Total
3830 Non-Debug Version: 86.6K Code, 18.2K Data, 104.8K Total
3831 Debug Version: 162.7K Code, 50.8K Data, 213.5K Total
3833 2) iASL Compiler/Disassembler and Tools:
3835 iASL: Implemented Switch() with While(1) so that Break works correctly.
3837 change correctly implements the Switch operator with a surrounding
3839 so that the Break operator works as expected. ACPICA BZ 461. Lin Ming.
3841 iASL: Added a message if a package initializer list is shorter than
3843 length. Adds a new remark for a Package() declaration if an initializer
3845 exists, but is shorter than the declared length of the package. Although
3846 technically legal, this is probably a coding error and it is seen in the
3847 field. ACPICA BZ 815. Lin Ming, Bob Moore.
3849 iASL: Fixed a problem where the compiler could fault after the maximum
3851 of errors was reached (200).
3853 acpixtract: Fixed a possible warning for pointer cast if the compiler
3855 level set very high.
3857 ----------------------------------------
3858 13 October 2009. Summary of changes for version 20091013:
3860 1) ACPI CA Core Subsystem:
3862 Fixed a problem where an Operation Region _REG method could be executed
3864 than once. If a custom address space handler is installed by the host
3866 the "initialize operation regions" phase of the ACPICA initialization,
3868 _REG methods for that address space could be executed twice. This change
3869 fixes the problem. ACPICA BZ 427. Lin Ming.
3871 Fixed a possible memory leak for the Scope() ASL operator. When the exact
3872 invocation of "Scope(\)" is executed (change scope to root), one internal
3873 operand object was leaked. Lin Ming.
3875 Implemented a run-time repair for the _MAT predefined method. If the _MAT
3876 return value is defined as a Field object in the AML, and the field
3877 size is less than or equal to the default width of an integer (32 or
3879 can incorrectly return an Integer instead of a Buffer. ACPICA now
3880 automatically repairs this problem. ACPICA BZ 810.
3882 Implemented a run-time repair for the _BIF and _BIX predefined methods.
3884 "OEM Information" field is often incorrectly returned as an Integer with
3885 value zero if the field is not supported by the platform. This is due to
3887 ambiguity in the ACPI specification. The field should always be a string.
3888 ACPICA now automatically repairs this problem by returning a NULL string
3889 within the returned Package. ACPICA BZ 807.
3891 Example Code and Data Size: These are the sizes for the OS-independent
3892 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
3893 debug version of the code includes the debug output trace mechanism and
3895 much larger code and data size.
3898 Non-Debug Version: 85.6K Code, 18.0K Data, 103.6K Total
3899 Debug Version: 161.7K Code, 50.9K Data, 212.6K Total
3901 Non-Debug Version: 85.8K Code, 18.0K Data, 103.8K Total
3902 Debug Version: 161.8K Code, 50.6K Data, 212.4K Total
3904 2) iASL Compiler/Disassembler and Tools:
3906 Disassembler: Fixed a problem where references to external symbols that
3907 contained one or more parent-prefixes (carats) were not handled
3909 possibly causing a fault. ACPICA BZ 806. Lin Ming.
3911 Disassembler: Restructured the code so that all functions that handle
3912 external symbols are in a single module. One new file is added,
3915 AML Debugger: Added a max count argument for the Batch command (which
3916 executes multiple predefined methods within the namespace.)
3918 iASL: Updated the compiler documentation (User Reference.) Available at
3919 http://www.acpica.org/documentation/. ACPICA BZ 750.
3921 AcpiXtract: Updated for Lint and other formatting changes. Close all open
3924 ----------------------------------------
3925 03 September 2009. Summary of changes for version 20090903:
3927 1) ACPI CA Core Subsystem:
3929 For Windows Vista compatibility, added the automatic execution of an _INI
3930 method located at the namespace root (\_INI). This method is executed at
3931 table load time. This support is in addition to the automatic execution
3933 \_SB._INI. Lin Ming.
3935 Fixed a possible memory leak in the interpreter for AML package objects
3937 the package initializer list is longer than the defined size of the
3939 This apparently can only happen if the BIOS changes the package size on
3941 fly (seen in a _PSS object), as ASL compilers do not allow this. The
3942 interpreter will truncate the package to the defined size (and issue an
3944 message), but previously could leave the extra objects undeleted if they
3946 pre-created during the argument processing (such is the case if the
3948 consists of a number of sub-packages as in the _PSS.) ACPICA BZ 805.
3950 Fixed a problem seen when a Buffer or String is stored to itself via ASL.
3951 This has been reported in the field. Previously, ACPICA would zero out
3953 buffer/string. Now, the operation is treated as a noop. Provides Windows
3954 compatibility. ACPICA BZ 803. Lin Ming.
3956 Removed an extraneous error message for ASL constructs of the form
3957 Store(LocalX,LocalX) when LocalX is uninitialized. These curious
3959 are seen in many BIOSs and are once again treated as NOOPs and no error
3961 emitted when they are encountered. ACPICA BZ 785.
3963 Fixed an extraneous warning message if a _DSM reserved method returns a
3964 Package object. _DSM can return any type of object, so validation on the
3965 return type cannot be performed. ACPICA BZ 802.
3967 Example Code and Data Size: These are the sizes for the OS-independent
3968 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
3969 debug version of the code includes the debug output trace mechanism and
3971 much larger code and data size.
3974 Non-Debug Version: 85.5K Code, 18.0K Data, 103.5K Total
3975 Debug Version: 161.6K Code, 50.9K Data, 212.5K Total
3977 Non-Debug Version: 85.6K Code, 18.0K Data, 103.6K Total
3978 Debug Version: 161.7K Code, 50.9K Data, 212.6K Total
3980 2) iASL Compiler/Disassembler and Tools:
3982 iASL: Fixed a problem with the use of the Alias operator and Resource
3983 Templates. The correct alias is now constructed and no error is emitted.
3986 iASL: Implemented the -I option to specify additional search directories
3988 include files. Allows multiple additional search paths for include files.
3989 Directories are searched in the order specified on the command line
3991 the local directory is searched.) ACPICA BZ 800.
3993 iASL: Fixed a problem where the full pathname for include files was not
3994 emitted for warnings/errors. This caused the IDE support to not work
3995 properly. ACPICA BZ 765.
3997 iASL: Implemented the -@ option to specify a Windows-style response file
3998 containing additional command line options. ACPICA BZ 801.
4000 AcpiExec: Added support to load multiple AML files simultaneously (such
4003 DSDT and multiple SSDTs). Also added support for wildcards within the AML
4004 pathname. These features allow all machine tables to be easily loaded and
4005 debugged together. ACPICA BZ 804.
4007 Disassembler: Added missing support for disassembly of HEST table Error
4011 ----------------------------------------
4012 30 July 2009. Summary of changes for version 20090730:
4014 The ACPI 4.0 implementation for ACPICA is complete with this release.
4016 1) ACPI CA Core Subsystem:
4018 ACPI 4.0: Added header file support for all new and changed ACPI tables.
4019 Completely new tables are: IBFT, IVRS, MSCT, and WAET. Tables that are
4021 for ACPI 4.0, but have previously been supported in ACPICA are: CPEP,
4023 EINJ, ERST, and HEST. Other newly supported tables are: UEFI and WDAT.
4025 have been some ACPI 4.0 changes to other existing tables. Split the large
4026 actbl1.h header into the existing actbl2.h header. ACPICA BZ 774.
4028 ACPI 4.0: Implemented predefined name validation for all new names. There
4030 31 new names in ACPI 4.0. The predefined validation module was split into
4032 files. The new file is namespace/nsrepair.c. ACPICA BZ 770.
4034 Implemented support for so-called "module-level executable code". This is
4035 executable AML code that exists outside of any control method and is
4037 to be executed at table load time. Although illegal since ACPI 2.0, this
4039 of code still exists and is apparently still being created. Blocks of
4041 code are now detected and executed as intended. Currently, the code
4043 must exist under either an If, Else, or While construct; these are the
4044 typical cases seen in the field. ACPICA BZ 762. Lin Ming.
4046 Implemented an automatic dynamic repair for predefined names that return
4047 nested Package objects. This applies to predefined names that are defined
4049 return a variable-length Package of sub-packages. If the number of sub-
4050 packages is one, BIOS code is occasionally seen that creates a simple
4052 package with no sub-packages. This code attempts to fix the problem by
4053 wrapping a new package object around the existing package. These methods
4055 be repaired: _ALR, _CSD, _HPX, _MLS, _PRT, _PSS, _TRT, and _TSS. ACPICA
4059 Fixed a regression introduced in 20090625 for the AcpiGetDevices
4061 The _HID/_CID matching was broken and no longer matched IDs correctly.
4065 Fixed a problem with AcpiReset where the reset would silently fail if the
4066 register was one of the protected I/O ports. AcpiReset now bypasses the
4068 validation mechanism. This may eventually be driven into the
4072 Fixed a regression related to the recent update of the AcpiRead/Write
4073 interfaces. A sleep/suspend could fail if the optional PM2 Control
4075 does not exist during an attempt to write the Bus Master Arbitration bit.
4076 (However, some hosts already delete the code that writes this bit, and
4078 code may in fact be obsolete at this date.) ACPICA BZ 799.
4080 Fixed a problem where AcpiTerminate could fault if inadvertently called
4082 in succession. ACPICA BZ 795.
4084 Example Code and Data Size: These are the sizes for the OS-independent
4085 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
4086 debug version of the code includes the debug output trace mechanism and
4088 much larger code and data size.
4091 Non-Debug Version: 84.7K Code, 17.8K Data, 102.5K Total
4092 Debug Version: 160.5K Code, 50.6K Data, 211.1K Total
4094 Non-Debug Version: 85.5K Code, 18.0K Data, 103.5K Total
4095 Debug Version: 161.6K Code, 50.9K Data, 212.5K Total
4097 2) iASL Compiler/Disassembler and Tools:
4099 ACPI 4.0: Implemented disassembler support for all new ACPI tables and
4100 changes to existing tables. ACPICA BZ 775.
4102 ----------------------------------------
4103 25 June 2009. Summary of changes for version 20090625:
4105 The ACPI 4.0 Specification was released on June 16 and is available at
4106 www.acpi.info. ACPICA implementation of ACPI 4.0 is underway and will
4107 continue for the next few releases.
4109 1) ACPI CA Core Subsystem:
4111 ACPI 4.0: Implemented interpreter support for the IPMI operation region
4112 address space. Includes support for bi-directional data buffers and an
4114 address space handler (to be installed by an IPMI device driver.) ACPICA
4118 ACPI 4.0: Added changes for existing ACPI tables - FACS and SRAT.
4120 support in both the header files and the disassembler.
4122 Completed a major update for the AcpiGetObjectInfo external interface.
4124 - Support for variable, unlimited length HID, UID, and CID strings.
4125 - Support Processor objects the same as Devices (HID,UID,CID,ADR,STA,
4127 - Call the _SxW power methods on behalf of a device object.
4128 - Determine if a device is a PCI root bridge.
4129 - Change the ACPI_BUFFER parameter to ACPI_DEVICE_INFO.
4130 These changes will require an update to all callers of this interface.
4132 the updated ACPICA Programmer Reference for details. One new source file
4134 been added - utilities/utids.c. ACPICA BZ 368, 780.
4136 Updated the AcpiRead and AcpiWrite external interfaces to support 64-bit
4137 transfers. The Value parameter has been extended from 32 bits to 64 bits
4139 order to support new ACPI 4.0 tables. These changes will require an
4142 all callers of these interfaces. See the ACPICA Programmer Reference for
4143 details. ACPICA BZ 768.
4145 Fixed several problems with AcpiAttachData. The handler was not invoked
4147 the host node was deleted. The data sub-object was not automatically
4149 when the host node was deleted. The interface to the handler had an
4151 parameter, this was removed. ACPICA BZ 778.
4153 Enhanced the function that dumps ACPI table headers. All non-printable
4154 characters in the string fields are now replaced with '?' (Signature,
4156 OemTableId, and CompilerId.) ACPI tables with non-printable characters in
4157 these fields are occasionally seen in the field. ACPICA BZ 788.
4159 Fixed a problem with predefined method repair code where the code that
4160 attempts to repair/convert an object of incorrect type is only executed
4162 the first time the predefined method is called. The mechanism that
4164 warnings on subsequent calls was interfering with the repair mechanism.
4167 Fixed a possible memory leak in the predefined validation/repair code
4170 buffer is automatically converted to an expected string object.
4172 Removed obsolete 16-bit files from the distribution and from the current
4174 tree head. ACPICA BZ 776.
4176 Example Code and Data Size: These are the sizes for the OS-independent
4177 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
4178 debug version of the code includes the debug output trace mechanism and
4180 much larger code and data size.
4183 Non-Debug Version: 83.4K Code, 17.5K Data, 100.9K Total
4184 Debug Version: 158.9K Code, 50.0K Data, 208.9K Total
4186 Non-Debug Version: 84.7K Code, 17.8K Data, 102.5K Total
4187 Debug Version: 160.5K Code, 50.6K Data, 211.1K Total
4189 2) iASL Compiler/Disassembler and Tools:
4191 ACPI 4.0: iASL and Disassembler - implemented support for the new IPMI
4192 operation region keyword. ACPICA BZ 771, 772. Lin Ming.
4194 ACPI 4.0: iASL - implemented compile-time validation support for all new
4195 predefined names and control methods (31 total). ACPICA BZ 769.
4197 ----------------------------------------
4198 21 May 2009. Summary of changes for version 20090521:
4200 1) ACPI CA Core Subsystem:
4202 Disabled the preservation of the SCI enable bit in the PM1 control
4204 The SCI enable bit (bit 0, SCI_EN) is defined by the ACPI specification
4207 a "preserved" bit - "OSPM always preserves this bit position", section
4208 4.7.3.2.1. However, some machines fail if this bit is in fact preserved
4209 because the bit needs to be explicitly set by the OS as a workaround. No
4210 machines fail if the bit is not preserved. Therefore, ACPICA no longer
4211 attempts to preserve this bit.
4213 Fixed a problem in AcpiRsGetPciRoutingTableLength where an invalid or
4214 incorrectly formed _PRT package could cause a fault. Added validation to
4215 ensure that each package element is actually a sub-package.
4217 Implemented a new interface to install or override a single control
4219 AcpiInstallMethod. This interface is useful when debugging in order to
4221 an existing method or to install a missing method without having to
4223 the entire ACPI table. See the ACPICA Programmer Reference for use and
4224 examples. Lin Ming, Bob Moore.
4226 Fixed several reference count issues with the DdbHandle object that is
4227 created from a Load or LoadTable operator. Prevent premature deletion of
4229 object. Also, mark the object as invalid once the table has been
4231 This is needed because the handle itself may not be deleted after the
4233 unload, depending on whether it has been stored in a named object by the
4236 Fixed a problem with Mutex Sync Levels. Fixed a problem where if multiple
4237 mutexes of the same sync level are acquired but then not released in
4239 opposite order, the internally maintained Current Sync Level becomes
4241 and can cause subsequent execution errors. ACPICA BZ 471.
4243 Changed the allowable release order for ASL mutex objects. The ACPI 4.0
4244 specification has been changed to make the SyncLevel for mutex objects
4246 useful. When releasing a mutex, the SyncLevel of the mutex must now be
4248 same as the current sync level. This makes more sense than the previous
4250 (SyncLevel less than or equal). This change updates the code to match the
4253 Fixed a problem with the local version of the AcpiOsPurgeCache function.
4255 (local) cache must be locked during all cache object deletions. Andrew
4258 Updated the Load operator to use operation region interfaces. This
4260 direct memory mapping with region access calls. Now, all region accesses
4262 through the installed region handler as they should.
4264 Simplified and optimized the NsGetNextNode function. Reduced parameter
4266 and reduced code for this frequently used function.
4268 Example Code and Data Size: These are the sizes for the OS-independent
4269 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
4270 debug version of the code includes the debug output trace mechanism and
4272 much larger code and data size.
4275 Non-Debug Version: 82.8K Code, 17.5K Data, 100.3K Total
4276 Debug Version: 158.0K Code, 49.9K Data, 207.9K Total
4278 Non-Debug Version: 83.4K Code, 17.5K Data, 100.9K Total
4279 Debug Version: 158.9K Code, 50.0K Data, 208.9K Total
4281 2) iASL Compiler/Disassembler and Tools:
4283 Disassembler: Fixed some issues with DMAR, HEST, MADT tables. Some
4285 with sub-table disassembly and handling invalid sub-tables. Attempt
4287 after an invalid sub-table ID.
4289 ----------------------------------------
4290 22 April 2009. Summary of changes for version 20090422:
4292 1) ACPI CA Core Subsystem:
4294 Fixed a compatibility issue with the recently released I/O port
4296 mechanism. For windows compatibility, 1) On a port protection violation,
4297 simply ignore the request and do not return an exception (allow the
4299 method to continue execution.) 2) If only part of the request overlaps a
4300 protected port, read/write the individual ports that are not protected.
4304 Enhanced the execution of the ASL/AML BreakPoint operator so that it
4306 breaks into the AML debugger if the debugger is present. This matches the
4307 ACPI-defined behavior.
4309 Fixed several possible warnings related to the use of the configurable
4310 ACPI_THREAD_ID. This type can now be configured as either an integer or a
4311 pointer with no warnings. Also fixes several warnings in printf-like
4312 statements for the 64-bit build when the type is configured as a pointer.
4315 Fixed a number of possible warnings when compiling with gcc 4+ (depending
4317 warning options.) Examples include printf formats, aliasing, unused
4319 missing prototypes, missing switch default statements, use of non-ANSI
4320 library functions, use of non-ANSI constructs. See generate/unix/Makefile
4322 a list of warning options used with gcc 3 and 4. ACPICA BZ 735.
4324 Example Code and Data Size: These are the sizes for the OS-independent
4325 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
4326 debug version of the code includes the debug output trace mechanism and
4328 much larger code and data size.
4331 Non-Debug Version: 82.6K Code, 17.6K Data, 100.2K Total
4332 Debug Version: 157.7K Code, 49.9K Data, 207.6K Total
4334 Non-Debug Version: 82.8K Code, 17.5K Data, 100.3K Total
4335 Debug Version: 158.0K Code, 49.9K Data, 207.9K Total
4337 2) iASL Compiler/Disassembler and Tools:
4339 iASL: Fixed a generation warning from Bison 2.3 and fixed several
4344 iASL: Fixed a problem where the Unix/Linux versions of the compiler could
4346 correctly digest Windows/DOS formatted files (with CR/LF).
4348 iASL: Added a new option for "quiet mode" (-va) that produces only the
4349 compilation summary, not individual errors and warnings. Useful for large
4352 AcpiExec: Implemented a new option (-z) to enable a forced
4354 timeout that can be used to detect hang conditions during execution of
4356 code (includes both internal semaphores and AML-defined mutexes and
4359 Added new makefiles for the generation of acpica in a generic unix-like
4360 environment. These makefiles are intended to generate the acpica tools
4362 utilities from the original acpica git source tree structure.
4364 Test Suites: Updated and cleaned up the documentation files. Updated the
4365 copyrights to 2009, affecting all source files. Use the new version of
4367 with quiet mode. Increased the number of available semaphores in the
4369 OSL, allowing the aslts to execute fully on Windows. For the Unix OSL,
4371 an alternate implementation of the semaphore timeout to allow aslts to
4372 execute fully on Cygwin.
4374 ----------------------------------------
4375 20 March 2009. Summary of changes for version 20090320:
4377 1) ACPI CA Core Subsystem:
4379 Fixed a possible race condition between AcpiWalkNamespace and dynamic
4381 unloads. Added a reader/writer locking mechanism to allow multiple
4383 namespace walks (readers), but block a dynamic table unload until it can
4385 exclusive write access to the namespace. This fixes a problem where a
4387 unload could (possibly catastrophically) delete the portion of the
4389 that is currently being examined by a walk. Adds a new file, utlock.c,
4391 implements the reader/writer lock mechanism. ACPICA BZ 749.
4393 Fixed a regression introduced in version 20090220 where a change to the
4395 handling could cause the ACPICA subsystem to access non-existent I/O
4398 Modified the handling of FADT register and table (FACS/DSDT) addresses.
4400 FADT can contain both 32-bit and 64-bit versions of these addresses.
4401 Previously, the 64-bit versions were favored, meaning that if both 32 and
4403 versions were valid, but not equal, the 64-bit version was used. This was
4404 found to cause some machines to fail. Now, in this case, the 32-bit
4406 is used instead. This now matches the Windows behavior.
4408 Implemented a new mechanism to protect certain I/O ports. Provides
4410 compatibility and protects the standard PC I/O ports from access via AML
4411 code. Adds a new file, hwvalid.c
4413 Fixed a possible extraneous warning message from the FADT support. The
4414 message warns of a 32/64 length mismatch between the legacy and GAS
4415 definitions for a register.
4417 Removed the obsolete AcpiOsValidateAddress OSL interface. This interface
4419 made obsolete by the port protection mechanism above. It was previously
4421 to validate the entire address range of an operation region, which could
4423 incorrect if the range included illegal ports, but fields within the
4424 operation region did not actually access those ports. Validation is now
4425 performed on a per-field basis instead of the entire region.
4427 Modified the handling of the PM1 Status Register ignored bit (bit 11.)
4428 Ignored bits must be "preserved" according to the ACPI spec. Usually,
4430 means a read/modify/write when writing to the register. However, for
4432 registers, writing a one means clear the event. Writing a zero means
4434 the event (do not clear.) This behavior is clarified in the ACPI 4.0
4436 and the ACPICA code now simply always writes a zero to the ignored bit.
4438 Modified the handling of ignored bits for the PM1 A/B Control Registers.
4440 per the ACPI specification, for the control registers, preserve
4441 (read/modify/write) all bits that are defined as either reserved or
4444 Updated the handling of write-only bits in the PM1 A/B Control Registers.
4445 When reading the register, zero the write-only bits as per the ACPI spec.
4446 ACPICA BZ 443. Lin Ming.
4448 Removed "Linux" from the list of supported _OSI strings. Linux no longer
4449 wants to reply true to this request. The Windows strings are the only
4451 through the AML that are tested and known to work properly.
4454 Non-Debug Version: 82.0K Code, 17.5K Data, 99.5K Total
4455 Debug Version: 156.9K Code, 49.8K Data, 206.7K Total
4457 Non-Debug Version: 82.6K Code, 17.6K Data, 100.2K Total
4458 Debug Version: 157.7K Code, 49.9K Data, 207.6K Total
4460 2) iASL Compiler/Disassembler and Tools:
4462 Acpiexec: Split the large aeexec.c file into two new files, aehandlers.c
4466 ----------------------------------------
4467 20 February 2009. Summary of changes for version 20090220:
4469 1) ACPI CA Core Subsystem:
4471 Optimized the ACPI register locking. Removed locking for reads from the
4473 bit registers in PM1 Status, Enable, Control, and PM2 Control. The lock
4475 not required when reading the single-bit registers. The
4476 AcpiGetRegisterUnlocked function is no longer needed and has been
4478 This will improve performance for reads on these registers. ACPICA BZ
4481 Fixed the parameter validation for AcpiRead/Write. Now return
4482 AE_BAD_PARAMETER if the input register pointer is null, and
4485 the register has an address of zero. Previously, these cases simply
4487 AE_OK. For optional registers such as PM1B status/enable/control, the
4489 should check for a valid register address before calling. ACPICA BZ 748.
4491 Renamed the external ACPI bit register access functions. Renamed
4492 AcpiGetRegister and AcpiSetRegister to clarify the purpose of these
4493 functions. The new names are AcpiReadBitRegister and
4494 AcpiWriteBitRegister.
4495 Also, restructured the code for these functions by simplifying the code
4497 and condensing duplicate code to reduce code size.
4499 Added new functions to transparently handle the possibly split PM1 A/B
4500 registers. AcpiHwReadMultiple and AcpiHwWriteMultiple. These two
4502 now handle the split registers for PM1 Status, Enable, and Control.
4507 Added a function to handle the PM1 control registers,
4508 AcpiHwWritePm1Control.
4509 This function writes both of the PM1 control registers (A/B). These
4511 are different than the PM1 A/B status and enable registers in that
4513 values can be written to the A/B registers. Most notably, the SLP_TYP
4515 can be different, as per the values returned from the _Sx predefined
4518 Removed an extra register write within AcpiHwClearAcpiStatus. This
4520 was writing an optional PM1B status register twice. The existing call to
4522 low-level AcpiHwRegisterWrite automatically handles a possibly split PM1
4524 register. ACPICA BZ 751.
4526 Split out the PM1 Status registers from the FADT. Added new globals for
4528 registers (A/B), similar to the way the PM1 Enable registers are handled.
4529 Instead of overloading the FADT Event Register blocks. This makes the
4531 clearer and less prone to error.
4533 Fixed the warning message for when the platform contains too many ACPI
4535 for the default size of the global root table data structure. The
4537 for the truncation value was incorrect.
4539 Removed the ACPI_GET_OBJECT_TYPE macro. Removed all instances of this
4540 obsolete macro, since it is now a simple reference to ->common.type.
4542 were about 150 invocations of the macro across 41 files. ACPICA BZ 755.
4544 Removed the redundant ACPI_BITREG_SLEEP_TYPE_B. This type is the same as
4545 TYPE_A. Removed this and all related instances. Renamed SLEEP_TYPE_A to
4546 simply SLEEP_TYPE. ACPICA BZ 754.
4548 Conditionally compile the AcpiSetFirmwareWakingVector64 function. This
4549 function is only needed on 64-bit host operating systems and is thus not
4550 included for 32-bit hosts.
4552 Debug output: print the input and result for invocations of the _OSI
4554 control method via the ACPI_LV_INFO debug level. Also, reduced some of
4556 verbosity of this debug level. Len Brown.
4558 Example Code and Data Size: These are the sizes for the OS-independent
4559 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
4560 debug version of the code includes the debug output trace mechanism and
4562 much larger code and data size.
4565 Non-Debug Version: 82.3K Code, 17.5K Data, 99.8K Total
4566 Debug Version: 157.3K Code, 49.8K Data, 207.1K Total
4568 Non-Debug Version: 82.0K Code, 17.5K Data, 99.5K Total
4569 Debug Version: 156.9K Code, 49.8K Data, 206.7K Total
4571 2) iASL Compiler/Disassembler and Tools:
4573 Disassembler: Decode the FADT PM_Profile field. Emit ascii names for the
4574 various legal performance profiles.
4576 ----------------------------------------
4577 23 January 2009. Summary of changes for version 20090123:
4579 1) ACPI CA Core Subsystem:
4581 Added the 2009 copyright to all module headers and signons. This affects
4582 virtually every file in the ACPICA core subsystem, the iASL compiler, and
4583 the tools/utilities.
4585 Implemented a change to allow the host to override any ACPI table,
4587 dynamically loaded tables. Previously, only the DSDT could be replaced by
4589 host. With this change, the AcpiOsTableOverride interface is called for
4591 table found in the RSDT/XSDT during ACPICA initialization, and also
4593 a table is dynamically loaded via the AML Load operator.
4595 Updated FADT flag definitions, especially the Boot Architecture flags.
4597 Debugger: For the Find command, automatically pad the input ACPI name
4599 underscores if the name is shorter than 4 characters. This enables a
4601 with the actual namespace entry which is itself padded with underscores.
4603 Example Code and Data Size: These are the sizes for the OS-independent
4604 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
4605 debug version of the code includes the debug output trace mechanism and
4607 much larger code and data size.
4610 Non-Debug Version: 82.3K Code, 17.4K Data, 99.7K Total
4611 Debug Version: 157.1K Code, 49.7K Data, 206.8K Total
4613 Non-Debug Version: 82.3K Code, 17.5K Data, 99.8K Total
4614 Debug Version: 157.3K Code, 49.8K Data, 207.1K Total
4616 2) iASL Compiler/Disassembler and Tools:
4618 Fix build error under Bison-2.4.
4620 Dissasembler: Enhanced FADT support. Added decoding of the Boot
4622 flags. Now decode all flags, regardless of the FADT version. Flag output
4623 includes the FADT version which first defined each flag.
4625 The iASL -g option now dumps the RSDT to a file (in addition to the FADT
4627 DSDT). Windows only.
4629 ----------------------------------------
4630 04 December 2008. Summary of changes for version 20081204:
4632 1) ACPI CA Core Subsystem:
4634 The ACPICA Programmer Reference has been completely updated and revamped
4636 this release. This includes updates to the external interfaces, OSL
4637 interfaces, the overview sections, and the debugger reference.
4639 Several new ACPICA interfaces have been implemented and documented in the
4640 programmer reference:
4641 AcpiReset - Writes the reset value to the FADT-defined reset register.
4642 AcpiDisableAllGpes - Disable all available GPEs.
4643 AcpiEnableAllRuntimeGpes - Enable all available runtime GPEs.
4644 AcpiGetGpeDevice - Get the GPE block device associated with a GPE.
4645 AcpiGbl_CurrentGpeCount - Tracks the current number of available GPEs.
4646 AcpiRead - Low-level read ACPI register (was HwLowLevelRead.)
4647 AcpiWrite - Low-level write ACPI register (was HwLowLevelWrite.)
4649 Most of the public ACPI hardware-related interfaces have been moved to a
4651 file, components/hardware/hwxface.c
4653 Enhanced the FADT parsing and low-level ACPI register access: The ACPI
4654 register lengths within the FADT are now used, and the low level ACPI
4655 register access no longer hardcodes the ACPI register lengths. Given that
4656 there may be some risk in actually trusting the FADT register lengths, a
4658 time option was added to fall back to the default hardcoded lengths if
4660 FADT proves to contain incorrect values - UseDefaultRegisterWidths. This
4661 option is set to true for now, and a warning is issued if a suspicious
4663 register length is overridden with the default value.
4665 Fixed a reference count issue in NsRepairObject. This problem was
4667 in version 20081031 as part of a fix to repair Buffer objects within
4670 Added semaphore support to the Linux/Unix application OS-services layer
4671 (OSL). ACPICA BZ 448. Lin Ming.
4673 Added the ACPI_MUTEX_TYPE configuration option to select whether mutexes
4675 be implemented in the OSL, or will binary semaphores be used instead.
4677 Example Code and Data Size: These are the sizes for the OS-independent
4678 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
4679 debug version of the code includes the debug output trace mechanism and
4681 much larger code and data size.
4684 Non-Debug Version: 81.7K Code, 17.3K Data, 99.0K Total
4685 Debug Version: 156.4K Code, 49.4K Data, 205.8K Total
4687 Non-Debug Version: 82.3K Code, 17.4K Data, 99.7K Total
4688 Debug Version: 157.1K Code, 49.7K Data, 206.8K Total
4690 2) iASL Compiler/Disassembler and Tools:
4692 iASL: Completed the '-e' option to include additional ACPI tables in
4695 aid with disassembly and External statement generation. ACPICA BZ 742.
4699 iASL: Removed the "named object in while loop" error. The compiler cannot
4700 determine how many times a loop will execute. ACPICA BZ 730.
4702 Disassembler: Implemented support for FADT revision 2 (MS extension).
4706 Disassembler: Updates for several ACPI data tables (HEST, EINJ, and
4709 ----------------------------------------
4710 31 October 2008. Summary of changes for version 20081031:
4712 1) ACPI CA Core Subsystem:
4714 Restructured the ACPICA header files into public/private. acpi.h now
4716 only the "public" acpica headers. All other acpica headers are "private"
4718 should not be included by acpica users. One new file, accommon.h is used
4720 include the commonly used private headers for acpica code generation.
4722 plans include moving all private headers to a new subdirectory.
4724 Implemented an automatic Buffer->String return value conversion for
4725 predefined ACPI methods. For these methods (such as _BIF), added
4727 conversion for return objects that are required to be a String, but a
4729 was found instead. This can happen when reading string battery data from
4731 operation region, because it used to be difficult to convert the data
4733 buffer to string from within the ASL. Ensures that the host OS is
4735 with a valid null-terminated string. Linux BZ 11822.
4737 Updated the FACS waking vector interfaces. Split
4738 AcpiSetFirmwareWakingVector
4739 into two: one for the 32-bit vector, another for the 64-bit vector. This
4741 required because the host OS must setup the wake much differently for
4743 vector (real vs. protected mode, etc.) and the interface itself should
4746 deciding which vector to use. Also, eliminated the
4747 GetFirmwareWakingVector
4748 interface, as it served no purpose (only the firmware reads the vector,
4750 only writes the vector.) ACPICA BZ 731.
4752 Implemented a mechanism to escape infinite AML While() loops. Added a
4754 counter to force exit from AML While loops if the count becomes too
4756 This can occur in poorly written AML when the hardware does not respond
4757 within a while loop and the loop does not implement a timeout. The
4759 loop count is configurable. A new exception code is returned when a loop
4761 broken, AE_AML_INFINITE_LOOP. Alexey Starikovskiy, Bob Moore.
4763 Optimized the execution of AML While loops. Previously, a control state
4764 object was allocated and freed for each execution of the loop. The
4765 optimization is to simply reuse the control state for each iteration.
4767 speeds up the raw loop execution time by about 5%.
4769 Enhanced the implicit return mechanism. For Windows compatibility, return
4771 implicit integer of value zero for methods that contain no executable
4773 Such methods are seen in the field as stubs (presumably), and can cause
4774 drivers to fail if they expect a return value. Lin Ming.
4776 Allow multiple backslashes as root prefixes in namepaths. In a fully
4777 qualified namepath, allow multiple backslash prefixes. This can happen
4779 is seen in the field) because of the use of a double-backslash in strings
4780 (since backslash is the escape character) causing confusion. ACPICA BZ
4784 Emit a warning if two different FACS or DSDT tables are discovered in the
4785 FADT. Checks if there are two valid but different addresses for the FACS
4787 DSDT within the FADT (mismatch between the 32-bit and 64-bit fields.)
4789 Consolidated the method argument count validation code. Merged the code
4791 validates control method argument counts into the predefined validation
4792 module. Eliminates possible multiple warnings for incorrect argument
4795 Implemented ACPICA example code. Includes code for ACPICA initialization,
4796 handler installation, and calling a control method. Available at
4797 source/tools/examples.
4799 Added a global pointer for FACS table to simplify internal FACS access.
4801 the global pointer instead of using AcpiGetTableByIndex for each FACS
4803 This simplifies the code for the Global Lock and the Firmware Waking
4806 Example Code and Data Size: These are the sizes for the OS-independent
4807 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
4808 debug version of the code includes the debug output trace mechanism and
4810 much larger code and data size.
4813 Non-Debug Version: 81.2K Code, 17.0K Data, 98.2K Total
4814 Debug Version: 155.8K Code, 49.1K Data, 204.9K Total
4816 Non-Debug Version: 81.7K Code, 17.3K Data, 99.0K Total
4817 Debug Version: 156.4K Code, 49.4K Data, 205.8K Total
4819 2) iASL Compiler/Disassembler and Tools:
4821 iASL: Improved disassembly of external method calls. Added the -e option
4823 allow the inclusion of additional ACPI tables to help with the
4826 method invocations and the generation of external declarations during the
4827 disassembly. Certain external method invocations cannot be disassembled
4828 properly without the actual declaration of the method. Use the -e option
4830 include the table where the external method(s) are actually declared.
4832 useful for disassembling SSDTs that make method calls back to the master
4833 DSDT. Lin Ming. Example: To disassemble an SSDT with calls to DSDT: iasl
4835 -e dsdt.aml ssdt1.aml
4837 iASL: Fix to allow references to aliases within ASL namepaths. Fixes a
4838 problem where the use of an alias within a namepath would result in a not
4839 found error or cause the compiler to fault. Also now allows forward
4840 references from the Alias operator itself. ACPICA BZ 738.
4842 ----------------------------------------
4843 26 September 2008. Summary of changes for version 20080926:
4845 1) ACPI CA Core Subsystem:
4847 Designed and implemented a mechanism to validate predefined ACPI methods
4849 objects. This code validates the predefined ACPI objects (objects whose
4851 start with underscore) that appear in the namespace, at the time they are
4852 evaluated. The argument count and the type of the returned object are
4853 validated against the ACPI specification. The purpose of this validation
4855 to detect problems with the BIOS-implemented predefined ACPI objects
4857 the results are returned to the ACPI-related drivers. Future enhancements
4859 include actual repair of incorrect return objects where possible. Two new
4860 files are nspredef.c and acpredef.h.
4862 Fixed a fault in the AML parser if a memory allocation fails during the
4864 completion routine AcpiPsCompleteThisOp. Lin Ming. ACPICA BZ 492.
4866 Fixed an issue with implicit return compatibility. This change improves
4868 implicit return mechanism to be more compatible with the MS interpreter.
4870 Ming, ACPICA BZ 349.
4872 Implemented support for zero-length buffer-to-string conversions. Allow
4874 length strings during interpreter buffer-to-string conversions. For
4876 during the ToDecimalString and ToHexString operators, as well as implicit
4877 conversions. Fiodor Suietov, ACPICA BZ 585.
4879 Fixed two possible memory leaks in the error exit paths of
4880 AcpiUtUpdateObjectReference and AcpiUtWalkPackageTree. These functions
4882 similar in that they use a stack of state objects in order to eliminate
4883 recursion. The stack must be fully unwound and deallocated if an error
4884 occurs. Lin Ming. ACPICA BZ 383.
4886 Removed the unused ACPI_BITREG_WAKE_ENABLE definition and entry in the
4888 ACPI register table. This bit does not exist and is unused. Lin Ming, Bob
4889 Moore ACPICA BZ 442.
4891 Removed the obsolete version number in module headers. Removed the
4892 "$Revision" number that appeared in each module header. This version
4894 was useful under SourceSafe and CVS, but has no meaning under git. It is
4896 only incorrect, it could also be misleading.
4898 Example Code and Data Size: These are the sizes for the OS-independent
4899 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
4900 debug version of the code includes the debug output trace mechanism and
4902 much larger code and data size.
4905 Non-Debug Version: 79.7K Code, 16.4K Data, 96.1K Total
4906 Debug Version: 153.7K Code, 48.2K Data, 201.9K Total
4908 Non-Debug Version: 81.2K Code, 17.0K Data, 98.2K Total
4909 Debug Version: 155.8K Code, 49.1K Data, 204.9K Total
4911 ----------------------------------------
4912 29 August 2008. Summary of changes for version 20080829:
4914 1) ACPI CA Core Subsystem:
4916 Completed a major cleanup of the internal ACPI_OPERAND_OBJECT of type
4917 Reference. Changes include the elimination of cheating on the Object
4919 for the DdbHandle subtype, addition of a reference class field to
4920 differentiate the various reference types (instead of an AML opcode), and
4922 cleanup of debug output for this object. Lin Ming, Bob Moore. BZ 723
4924 Reduce an error to a warning for an incorrect method argument count.
4925 Previously aborted with an error if too few arguments were passed to a
4926 control method via the external ACPICA interface. Now issue a warning
4928 and continue. Handles the case where the method inadvertently declares
4930 many arguments, but does not actually use the extra ones. Applies mainly
4932 the predefined methods. Lin Ming. Linux BZ 11032.
4934 Disallow the evaluation of named object types with no intrinsic value.
4936 AE_TYPE for objects that have no value and therefore evaluation is
4938 Device, Event, Mutex, Region, Thermal, and Scope. Previously, evaluation
4940 these types were allowed, but an exception would be generated at some
4942 during the evaluation. Now, the error is generated up front.
4944 Fixed a possible memory leak in the AcpiNsGetExternalPathname function
4945 (nsnames.c). Fixes a leak in the error exit path.
4947 Removed the obsolete debug levels ACPI_DB_WARN and ACPI_DB_ERROR. These
4949 levels were made obsolete by the ACPI_WARNING, ACPI_ERROR, and
4951 interfaces. Also added ACPI_DB_EVENTS to correspond with the existing
4954 Removed obsolete and/or unused exception codes from the acexcep.h header.
4955 There is the possibility that certain device drivers may be affected if
4957 use any of these exceptions.
4959 The ACPICA documentation has been added to the public git source tree,
4961 acpica/documents. Included are the ACPICA programmer reference, the iASL
4962 compiler reference, and the changes.txt release logfile.
4964 Example Code and Data Size: These are the sizes for the OS-independent
4965 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
4966 debug version of the code includes the debug output trace mechanism and
4968 much larger code and data size.
4971 Non-Debug Version: 79.7K Code, 16.4K Data, 96.1K Total
4972 Debug Version: 153.9K Code, 48.4K Data, 202.3K Total
4974 Non-Debug Version: 79.7K Code, 16.4K Data, 96.1K Total
4975 Debug Version: 153.7K Code, 48.2K Data, 201.9K Total
4977 2) iASL Compiler/Disassembler and Tools:
4979 Allow multiple argument counts for the predefined _SCP method. ACPI 3.0
4980 defines _SCP with 3 arguments. Previous versions defined it with only 1
4981 argument. iASL now allows both definitions.
4983 iASL/disassembler: avoid infinite loop on bad ACPI tables. Check for
4985 length subtables when disassembling ACPI tables. Also fixed a couple of
4986 errors where a full 16-bit table type field was not extracted from the
4990 acpisrc: Improve comment counting mechanism for generating source code
4991 statistics. Count first and last lines of multi-line comments as
4993 not comment lines. Handle Linux legal header in addition to standard
4997 ----------------------------------------
4999 29 July 2008. Summary of changes for version 20080729:
5001 1) ACPI CA Core Subsystem:
5003 Fix a possible deadlock in the GPE dispatch. Remove call to
5004 AcpiHwDisableAllGpes during wake in AcpiEvGpeDispatch. This call will
5006 to acquire the GPE lock but can deadlock since the GPE lock is already
5008 at dispatch time. This code was introduced in version 20060831 as a
5010 to Linux BZ 6881 and has since been removed from Linux.
5012 Add a function to dereference returned reference objects. Examines the
5014 object from a call to AcpiEvaluateObject. Any Index or RefOf references
5016 automatically dereferenced in an attempt to return something useful
5018 reference types cannot be converted into an external ACPI_OBJECT.)
5020 MS compatibility. Lin Ming, Bob Moore. Linux BZ 11105
5022 x2APIC support: changes for MADT and SRAT ACPI tables. There are 2 new
5023 subtables for the MADT and one new subtable for the SRAT. Includes
5024 disassembler and AcpiSrc support. Data from the Intel 64 Architecture
5026 Specification, June 2008.
5028 Additional error checking for pathname utilities. Add error check after
5030 calls to AcpiNsGetPathnameLength. Add status return from
5031 AcpiNsBuildExternalPath and check after all calls. Add parameter
5033 to AcpiUtInitializeBuffer. Reported by and initial patch by Ingo Molnar.
5035 Return status from the global init function AcpiUtGlobalInitialize. This
5037 used by both the kernel subsystem and the utilities such as iASL
5039 The function could possibly fail when the caches are initialized. Yang
5042 Add a function to decode reference object types to strings. Created for
5043 improved error messages.
5045 Improve object conversion error messages. Better error messages during
5047 conversion from internal to the external ACPI_OBJECT. Used for external
5049 to AcpiEvaluateObject.
5051 Example Code and Data Size: These are the sizes for the OS-independent
5052 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
5053 debug version of the code includes the debug output trace mechanism and
5055 much larger code and data size.
5058 Non-Debug Version: 79.6K Code, 16.2K Data, 95.8K Total
5059 Debug Version: 153.5K Code, 48.2K Data, 201.7K Total
5061 Non-Debug Version: 79.7K Code, 16.4K Data, 96.1K Total
5062 Debug Version: 153.9K Code, 48.4K Data, 202.3K Total
5064 2) iASL Compiler/Disassembler and Tools:
5066 Debugger: fix a possible hang when evaluating non-methods. Fixes a
5068 introduced in version 20080701. If the object being evaluated (via
5070 command) is not a method, the debugger can hang while trying to obtain
5072 existent parameters.
5074 iASL: relax error for using reserved "_T_x" identifiers. These names can
5075 appear in a disassembled ASL file if they were emitted by the original
5076 compiler. Instead of issuing an error or warning and forcing the user to
5077 manually change these names, issue a remark instead.
5079 iASL: error if named object created in while loop. Emit an error if any
5081 object is created within a While loop. If allowed, this code will
5084 run-time error on the second iteration of the loop when an attempt is
5087 create the same named object twice. ACPICA bugzilla 730.
5089 iASL: Support absolute pathnames for include files. Add support for
5091 pathnames within the Include operator. previously, only relative
5095 iASL: Enforce minimum 1 interrupt in interrupt macro and Resource
5097 The ACPI spec requires one interrupt minimum. BZ 423
5099 iASL: Handle a missing ResourceSource arg, with a present SourceIndex.
5100 Handles the case for the Interrupt Resource Descriptor where
5101 the ResourceSource argument is omitted but ResourceSourceIndex
5102 is present. Now leave room for the Index. BZ 426
5104 iASL: Prevent error message if CondRefOf target does not exist. Fixes
5106 where an error message is emitted if the target does not exist. BZ 516
5108 iASL: Fix broken -g option (get Windows ACPI tables). Fixes the -g option
5109 (get ACPI tables on Windows). This was apparently broken in version
5112 AcpiXtract: Handle EOF while extracting data. Correctly handle the case
5114 the EOF happens immediately after the last table in the input file. Print
5115 completion message. Previously, no message was displayed in this case.
5117 ----------------------------------------
5118 01 July 2008. Summary of changes for version 20080701:
5120 0) Git source tree / acpica.org
5122 Fixed a problem where a git-clone from http would not transfer the entire
5125 1) ACPI CA Core Subsystem:
5127 Implemented a "careful" GPE disable in AcpiEvDisableGpe, only modify one
5128 enable bit. Now performs a read-change-write of the enable register
5130 of simply writing out the cached enable mask. This will prevent
5132 enabling of GPEs if a rogue GPE is received during initialization (before
5134 handlers are installed.)
5136 Implemented a copy for dynamically loaded tables. Previously, dynamically
5137 loaded tables were simply mapped - but on some machines this memory is
5138 corrupted after suspend. Now copy the table to a local buffer. For the
5139 OpRegion case, added checksum verify. Use the table length from the table
5140 header, not the region length. For the Buffer case, use the table length
5141 also. Dennis Noordsij, Bob Moore. BZ 10734
5143 Fixed a problem where the same ACPI table could not be dynamically loaded
5145 unloaded more than once. Without this change, a table cannot be loaded
5147 once it has been loaded/unloaded one time. The current mechanism does not
5148 unregister a table upon an unload. During a load, if the same table is
5150 this no longer returns an exception. BZ 722
5152 Fixed a problem where the wrong descriptor length was calculated for the
5153 EndTag descriptor in 64-bit mode. The "minimal" descriptors such as
5155 are calculated as 12 bytes long, but the actual length in the internal
5156 descriptor is 16 because of the round-up to 8 on the 64-bit build.
5158 by Linn Crosetto. BZ 728
5160 Fixed a possible memory leak in the Unload operator. The DdbHandle
5162 by Load() did not have its reference count decremented during unload,
5164 to a memory leak. Lin Ming. BZ 727
5166 Fixed a possible memory leak when deleting thermal/processor objects. Any
5167 associated notify handlers (and objects) were not being deleted. Fiodor
5170 Fixed the ordering of the ASCII names in the global mutex table to match
5172 actual mutex IDs. Used by AcpiUtGetMutexName, a function used for debug
5174 Vegard Nossum. BZ 726
5176 Enhanced the AcpiGetObjectInfo interface to return the number of required
5177 arguments if the object is a control method. Added this call to the
5179 so the proper number of default arguments are passed to a method. This
5180 prevents a warning when executing methods from AcpiExec.
5182 Added a check for an invalid handle in AcpiGetObjectInfo. Return
5183 AE_BAD_PARAMETER if input handle is invalid. BZ 474
5185 Fixed an extraneous warning from exconfig.c on the 64-bit build.
5187 Example Code and Data Size: These are the sizes for the OS-independent
5188 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
5189 debug version of the code includes the debug output trace mechanism and
5191 much larger code and data size.
5194 Non-Debug Version: 79.3K Code, 16.2K Data, 95.5K Total
5195 Debug Version: 153.0K Code, 48.2K Data, 201.2K Total
5197 Non-Debug Version: 79.6K Code, 16.2K Data, 95.8K Total
5198 Debug Version: 153.5K Code, 48.2K Data, 201.7K Total
5200 2) iASL Compiler/Disassembler and Tools:
5202 iASL: Added two missing ACPI reserved names. Added _MTP and _ASZ, both
5203 resource descriptor names.
5205 iASL: Detect invalid ASCII characters in input (windows version). Removed
5207 "-CF" flag from the flex compile, enables correct detection of non-ASCII
5208 characters in the input. BZ 441
5210 iASL: Eliminate warning when result of LoadTable is not used. Eliminate
5212 "result of operation not used" warning when the DDB handle returned from
5213 LoadTable is not used. The warning is not needed. BZ 590
5215 AcpiExec: Add support for dynamic table load/unload. Now calls _CFG
5218 pass address of table to the AML. Added option to disable OpRegion
5220 to allow creation of an OpRegion with a real address that was passed to
5222 All of this allows testing of the Load and Unload operators from
5225 Debugger: update tables command for unloaded tables. Handle unloaded
5227 and use the standard table header output routine.
5229 ----------------------------------------
5230 09 June 2008. Summary of changes for version 20080609:
5232 1) ACPI CA Core Subsystem:
5234 Implemented a workaround for reversed _PRT entries. A significant number
5236 BIOSs erroneously reverse the _PRT SourceName and the SourceIndex. This
5237 change dynamically detects and repairs this problem. Provides
5239 with MS ACPI. BZ 6859
5241 Simplified the internal ACPI hardware interfaces to eliminate the locking
5242 flag parameter from Register Read/Write. Added a new external interface,
5243 AcpiGetRegisterUnlocked.
5245 Fixed a problem where the invocation of a GPE control method could hang.
5247 was a regression introduced in 20080514. The new method argument count
5248 validation mechanism can enter an infinite loop when a GPE method is
5249 dispatched. Problem fixed by removing the obsolete code that passed GPE
5251 information to the notify handler via the control method parameter
5254 Fixed a problem where the _SST execution status was incorrectly returned
5256 the caller of AcpiEnterSleepStatePrep. This was a regression introduced
5258 20080514. _SST is optional and a NOT_FOUND exception should never be
5261 Fixed a problem where a deleted object could be accessed from within the
5263 parser. This was a regression introduced in version 20080123 as a fix for
5265 Unload operator. Lin Ming. BZ 10669
5267 Cleaned up the debug operand dump mechanism. Eliminated unnecessary
5269 and eliminated the use of a negative index in a loop. Operands are now
5270 displayed in the correct order, not backwards. This also fixes a
5272 introduced in 20080514 on 64-bit systems where the elimination of
5273 ACPI_NATIVE_UINT caused the negative index to go large and positive. BZ
5276 Fixed a possible memory leak in EvPciConfigRegionSetup where the error
5278 path did not delete a locally allocated structure.
5280 Updated definitions for the DMAR and SRAT tables to synchronize with the
5281 current specifications. Includes disassembler support.
5283 Fixed a problem in the mutex debug code (in utmutex.c) where an incorrect
5284 loop termination value was used. Loop terminated on iteration early,
5286 one mutex. Linn Crosetto
5288 Example Code and Data Size: These are the sizes for the OS-independent
5289 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
5290 debug version of the code includes the debug output trace mechanism and
5292 much larger code and data size.
5295 Non-Debug Version: 79.5K Code, 16.2K Data, 95.7K Total
5296 Debug Version: 153.3K Code, 48.3K Data, 201.6K Total
5298 Non-Debug Version: 79.3K Code, 16.2K Data, 95.5K Total
5299 Debug Version: 153.0K Code, 48.2K Data, 201.2K Total
5301 2) iASL Compiler/Disassembler and Tools:
5303 Disassembler: Implemented support for EisaId() within _CID objects. Now
5304 disassemble integer _CID objects back to EisaId invocations, including
5305 multiple integers within _CID packages. Includes single-step support for
5308 Disassembler: Added support for DMAR and SRAT table definition changes.
5310 ----------------------------------------
5311 14 May 2008. Summary of changes for version 20080514:
5313 1) ACPI CA Core Subsystem:
5315 Fixed a problem where GPEs were enabled too early during the ACPICA
5316 initialization. This could lead to "handler not installed" errors on some
5317 machines. Moved GPE enable until after _REG/_STA/_INI methods are run.
5319 ensures that all operation regions and devices throughout the namespace
5321 been initialized before GPEs are enabled. Alexey Starikovskiy, BZ 9916.
5323 Implemented a change to the enter sleep code. Moved execution of the _GTS
5324 method to just before setting sleep enable bit. The execution was moved
5326 AcpiEnterSleepStatePrep to AcpiEnterSleepState. _GTS is now executed
5327 immediately before the SLP_EN bit is set, as per the ACPI specification.
5330 Implemented a fix to disable unknown GPEs (2nd version). Now always
5332 the GPE, even if ACPICA thinks that that it is already disabled. It is
5333 possible that the AML or some other code has enabled the GPE unbeknownst
5337 Fixed a problem with the Field operator where zero-length fields would
5339 an AE_AML_NO_OPERAND exception during table load. Fix enables zero-length
5341 field declarations in Field(), BankField(), and IndexField(). BZ 10606.
5343 Implemented a fix for the Load operator, now load the table at the
5345 root. This reverts a change introduced in version 20071019. The table is
5347 loaded at the namespace root even though this goes against the ACPI
5348 specification. This provides compatibility with other ACPI
5350 The ACPI specification will be updated to reflect this in ACPI 4.0. Lin
5353 Fixed a problem where ACPICA would not Load() tables with unusual
5355 Now ignore ACPI table signature for Load() operator. Only "SSDT" is
5356 acceptable to the ACPI spec, but tables are seen with OEMx and null sigs.
5357 Therefore, signature validation is worthless. Apparently MS ACPI accepts
5359 signatures, ACPICA must be compatible. BZ 10454.
5361 Fixed a possible negative array index in AcpiUtValidateException. Added
5363 fields to the exception string arrays to eliminate a -1 subtraction on
5367 Updated the debug tracking macros to reduce overall code and data size.
5368 Changed ACPI_MODULE_NAME and ACPI_FUNCTION_NAME to use arrays of strings
5369 instead of pointers to static strings. Jan Beulich and Bob Moore.
5371 Implemented argument count checking in control method invocation via
5372 AcpiEvaluateObject. Now emit an error if too few arguments, warning if
5374 many. This applies only to extern programmatic control method execution,
5376 method-to-method calls within the AML. Lin Ming.
5378 Eliminated the ACPI_NATIVE_UINT type across all ACPICA code. This type is
5380 longer needed, especially with the removal of 16-bit support. It was
5382 mostly with UINT32, but also ACPI_SIZE where a type that changes 32/64
5385 32/64-bit platforms is required.
5387 Added the C const qualifier for appropriate string constants -- mostly
5388 MODULE_NAME and printf format strings. Jan Beulich.
5390 Example Code and Data Size: These are the sizes for the OS-independent
5391 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
5392 debug version of the code includes the debug output trace mechanism and
5394 much larger code and data size.
5397 Non-Debug Version: 80.0K Code, 17.4K Data, 97.4K Total
5398 Debug Version: 159.4K Code, 64.4K Data, 223.8K Total
5400 Non-Debug Version: 79.5K Code, 16.2K Data, 95.7K Total
5401 Debug Version: 153.3K Code, 48.3K Data, 201.6K Total
5403 2) iASL Compiler/Disassembler and Tools:
5405 Implemented ACPI table revision ID validation in the disassembler. Zero
5407 always invalid. For DSDTs, the ID controls the interpreter integer width.
5409 means 32-bit and this is unusual. 2 or greater is 64-bit.
5411 ----------------------------------------
5412 21 March 2008. Summary of changes for version 20080321:
5414 1) ACPI CA Core Subsystem:
5416 Implemented an additional change to the GPE support in order to suppress
5417 spurious or stray GPEs. The AcpiEvDisableGpe function will now
5419 disable incoming GPEs that are neither enabled nor disabled -- meaning
5421 the GPE is unknown to the system. This should prevent future interrupt
5423 from that GPE. BZ 6217 (Zhang Rui)
5425 Fixed a problem where NULL package elements were not returned to the
5426 AcpiEvaluateObject interface correctly. The element was simply ignored
5427 instead of returning a NULL ACPI_OBJECT package element, potentially
5429 a buffer overflow and/or confusing the caller who expected a fixed number
5431 elements. BZ 10132 (Lin Ming, Bob Moore)
5433 Fixed a problem with the CreateField, CreateXXXField (Bit, Byte, Word,
5435 Qword), Field, BankField, and IndexField operators when invoked from
5437 an executing control method. In this case, these operators created
5439 nodes that were incorrectly left marked as permanent nodes instead of
5440 temporary nodes. This could cause a problem if there is race condition
5441 between an exiting control method and a running namespace walk. (Reported
5445 Fixed a problem where the CreateField and CreateXXXField operators would
5446 incorrectly allow duplicate names (the name of the field) with no
5450 Implemented several changes for Notify handling. Added support for new
5452 values (ACPI 2.0+) and improved the Notify debug output. Notify on
5453 PowerResource objects is no longer allowed, as per the ACPI
5455 (Bob Moore, Zhang Rui)
5457 All Reference Objects returned via the AcpiEvaluateObject interface are
5459 marked as type "REFERENCE" instead of "ANY". The type ANY is now reserved
5461 NULL objects - either NULL package elements or unresolved named
5464 Fixed a problem where an extraneous debug message was produced for
5466 objects (when debugging enabled). The message "Package List length larger
5467 than NumElements count" is now produced in the correct case, and is now
5469 error message rather than a debug message. Added a debug message for the
5470 opposite case, where NumElements is larger than the Package List (the
5472 will be padded out with NULL elements as per the ACPI spec.)
5474 Implemented several improvements for the output of the ASL "Debug" object
5476 clarify and keep all data for a given object on one output line.
5478 Fixed two size calculation issues with the variable-length Start
5480 resource descriptor.
5482 Example Code and Data Size: These are the sizes for the OS-independent
5483 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
5484 debug version of the code includes the debug output trace mechanism and
5486 a much larger code and data size.
5489 Non-Debug Version: 79.7K Code, 17.3K Data, 97.0K Total
5490 Debug Version: 158.9K Code, 64.0K Data, 222.9K Total
5492 Non-Debug Version: 80.0K Code, 17.4K Data, 97.4K Total
5493 Debug Version: 159.4K Code, 64.4K Data, 223.8K Total
5495 2) iASL Compiler/Disassembler and Tools:
5497 Fixed a problem with the use of the Switch operator where execution of
5499 containing method by multiple concurrent threads could cause an
5500 AE_ALREADY_EXISTS exception. This is caused by the fact that there is no
5501 actual Switch opcode, it must be simulated with local named temporary
5502 variables and if/else pairs. The solution chosen was to mark any method
5504 uses Switch as Serialized, thus preventing multiple thread entries. BZ
5507 ----------------------------------------
5508 13 February 2008. Summary of changes for version 20080213:
5510 1) ACPI CA Core Subsystem:
5512 Implemented another MS compatibility design change for GPE/Notify
5514 GPEs are now cleared/enabled asynchronously to allow all pending notifies
5516 complete first. It is expected that the OSL will queue the enable request
5517 behind all pending notify requests (may require changes to the local host
5519 in AcpiOsExecute). Alexey Starikovskiy.
5521 Fixed a problem where buffer and package objects passed as arguments to a
5522 control method via the external AcpiEvaluateObject interface could cause
5524 AE_AML_INTERNAL exception depending on the order and type of operators
5525 executed by the target control method.
5527 Fixed a problem where resource descriptor size optimization could cause a
5528 problem when a _CRS resource template is passed to a _SRS method. The
5530 resource template must use the same descriptors (with the same size) as
5531 returned from _CRS. This change affects the following resource
5533 IRQ / IRQNoFlags and StartDependendentFn / StartDependentFnNoPri. (BZ
5536 Fixed a problem where a CopyObject to RegionField, BankField, and
5538 objects did not perform an implicit conversion as it should. These types
5540 retain their initial type permanently as per the ACPI specification.
5542 a CopyObject to all other object types should not perform an implicit
5543 conversion, as per the ACPI specification. (Lin Ming, Bob Moore) BZ 388
5545 Fixed a problem with the AcpiGetDevices interface where the mechanism to
5546 match device CIDs did not examine the entire list of available CIDs, but
5547 instead aborted on the first non-matching CID. Andrew Patterson.
5549 Fixed a regression introduced in version 20071114. The ACPI_HIDWORD macro
5551 inadvertently changed to return a 16-bit value instead of a 32-bit value,
5552 truncating the upper dword of a 64-bit value. This macro is only used to
5553 display debug output, so no incorrect calculations were made. Also,
5554 reimplemented the macro so that a 64-bit shift is not performed by
5555 inefficient compilers.
5557 Added missing va_end statements that should correspond with each va_start
5560 Example Code and Data Size: These are the sizes for the OS-independent
5561 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
5562 debug version of the code includes the debug output trace mechanism and
5564 a much larger code and data size.
5567 Non-Debug Version: 79.5K Code, 17.2K Data, 96.7K Total
5568 Debug Version: 159.0K Code, 63.8K Data, 222.8K Total
5570 Non-Debug Version: 79.7K Code, 17.3K Data, 97.0K Total
5571 Debug Version: 158.9K Code, 64.0K Data, 222.9K Total
5573 2) iASL Compiler/Disassembler and Tools:
5575 Implemented full disassembler support for the following new ACPI tables:
5576 BERT, EINJ, and ERST. Implemented partial disassembler support for the
5577 complicated HEST table. These tables support the Windows Hardware Error
5578 Architecture (WHEA).
5580 ----------------------------------------
5581 23 January 2008. Summary of changes for version 20080123:
5583 1) ACPI CA Core Subsystem:
5585 Added the 2008 copyright to all module headers and signons. This affects
5586 virtually every file in the ACPICA core subsystem, the iASL compiler, and
5587 the tools/utilities.
5589 Fixed a problem with the SizeOf operator when used with Package and
5591 objects. These objects have deferred execution for some arguments, and
5593 execution is now completed before the SizeOf is executed. This problem
5595 unexpected AE_PACKAGE_LIMIT errors on some systems (Lin Ming, Bob Moore)
5599 Implemented an enhancement to the interpreter "slack mode". In the
5602 an explicit return or an implicitly returned object from the last
5604 opcode, a control method will now implicitly return an integer of value 0
5606 Microsoft compatibility. (Lin Ming) BZ 392
5608 Fixed a problem with the Load operator where an exception was not
5611 the case where the table is already loaded. (Lin Ming) BZ 463
5613 Implemented support for the use of DDBHandles as an Indexed Reference, as
5615 the ACPI spec. (Lin Ming) BZ 486
5617 Implemented support for UserTerm (Method invocation) for the Unload
5619 as per the ACPI spec. (Lin Ming) BZ 580
5621 Fixed a problem with the LoadTable operator where the OemId and
5623 input strings could cause unexpected failures if they were shorter than
5625 maximum lengths allowed. (Lin Ming, Bob Moore) BZ 576
5627 Implemented support for UserTerm (Method invocation) for the Unload
5629 as per the ACPI spec. (Lin Ming) BZ 580
5631 Implemented header file support for new ACPI tables - BERT, ERST, EINJ,
5633 IBFT, UEFI, WDAT. Disassembler support is forthcoming.
5635 Example Code and Data Size: These are the sizes for the OS-independent
5636 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
5637 debug version of the code includes the debug output trace mechanism and
5639 a much larger code and data size.
5642 Non-Debug Version: 79.3K Code, 17.2K Data, 96.5K Total
5643 Debug Version: 158.6K Code, 63.8K Data, 222.4K Total
5645 Non-Debug Version: 79.5K Code, 17.2K Data, 96.7K Total
5646 Debug Version: 159.0K Code, 63.8K Data, 222.8K Total
5648 2) iASL Compiler/Disassembler and Tools:
5650 Implemented support in the disassembler for checksum validation on
5652 binary DSDTs and SSDTs. If incorrect, a message is displayed within the
5654 header dump at the start of the disassembly.
5656 Implemented additional debugging information in the namespace listing
5658 created during compilation. In addition to the namespace hierarchy, the
5660 pathname to each namespace object is displayed.
5662 Fixed a problem with the disassembler where invalid ACPI tables could
5664 faults or infinite loops.
5666 Fixed an unexpected parse error when using the optional "parameter types"
5667 list in a control method declaration. (Lin Ming) BZ 397
5669 Fixed a problem where two External declarations with the same name did
5671 cause an error (Lin Ming) BZ 509
5673 Implemented support for full TermArgs (adding Argx, Localx and method
5674 invocation) for the ParameterData parameter to the LoadTable operator.
5678 ----------------------------------------
5679 19 December 2007. Summary of changes for version 20071219:
5681 1) ACPI CA Core Subsystem:
5683 Implemented full support for deferred execution for the TermArg string
5684 arguments for DataTableRegion. This enables forward references and full
5685 operand resolution for the three string arguments. Similar to
5687 deferred argument execution.) Lin Ming. BZ 430
5689 Implemented full argument resolution support for the BankValue argument
5691 BankField. Previously, only constants were supported, now any TermArg may
5693 used. Lin Ming BZ 387, 393
5695 Fixed a problem with AcpiGetDevices where the search of a branch of the
5696 device tree could be terminated prematurely. In accordance with the ACPI
5697 specification, the search down the current branch is terminated if a
5699 is both not present and not functional (instead of just not present.)
5703 Fixed a problem where "unknown" GPEs could be allowed to fire repeatedly
5705 the underlying AML code changed the GPE enable registers. Now, any
5707 incoming GPE (no _Lxx/_Exx method and not the EC GPE) is immediately
5709 instead of simply ignored. Rui Zhang.
5711 Fixed a problem with Index Fields where the Index register was
5713 limited to a maximum of 32 bits. Now any size may be used.
5715 Fixed a couple memory leaks associated with "implicit return" objects
5717 the AML Interpreter slack mode is enabled. Lin Ming BZ 349
5719 Example Code and Data Size: These are the sizes for the OS-independent
5720 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
5721 debug version of the code includes the debug output trace mechanism and
5723 a much larger code and data size.
5726 Non-Debug Version: 79.0K Code, 17.2K Data, 96.2K Total
5727 Debug Version: 157.9K Code, 63.6K Data, 221.5K Total
5729 Non-Debug Version: 79.3K Code, 17.2K Data, 96.5K Total
5730 Debug Version: 158.6K Code, 63.8K Data, 222.4K Total
5732 ----------------------------------------
5733 14 November 2007. Summary of changes for version 20071114:
5735 1) ACPI CA Core Subsystem:
5737 Implemented event counters for each of the Fixed Events, the ACPI SCI
5738 (interrupt) itself, and control methods executed. Named
5739 AcpiFixedEventCount[], AcpiSciCount, and AcpiMethodCount respectively.
5741 should be useful for debugging and statistics.
5743 Implemented a new external interface, AcpiGetStatistics, to retrieve the
5744 contents of the various event counters. Returns the current values for
5745 AcpiSciCount, AcpiGpeCount, the AcpiFixedEventCount array, and
5746 AcpiMethodCount. The interface can be expanded in the future if new
5748 are added. Device drivers should use this interface rather than access
5752 Fixed a problem with the FromBCD and ToBCD operators. With some
5754 the ShortDivide function worked incorrectly, causing problems with the
5756 functions with large input values. A truncation from 64-bit to 32-bit
5757 inadvertently occurred. Internal BZ 435. Lin Ming
5759 Fixed a problem with Index references passed as method arguments.
5761 passed as arguments to control methods were dereferenced immediately
5763 control was passed to the called method). The references are now
5765 passed directly to the called method. BZ 5389. Lin Ming
5767 Fixed a problem with CopyObject used in conjunction with the Index
5769 The reference was incorrectly dereferenced before the copy. The reference
5771 now correctly copied. BZ 5391. Lin Ming
5773 Fixed a problem with Control Method references within Package objects.
5775 references are now correctly generated. This completes the package
5776 construction overhaul that began in version 20071019.
5778 Example Code and Data Size: These are the sizes for the OS-independent
5779 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
5780 debug version of the code includes the debug output trace mechanism and
5782 a much larger code and data size.
5785 Non-Debug Version: 78.8K Code, 17.2K Data, 96.0K Total
5786 Debug Version: 157.2K Code, 63.4K Data, 220.6K Total
5788 Non-Debug Version: 79.0K Code, 17.2K Data, 96.2K Total
5789 Debug Version: 157.9K Code, 63.6K Data, 221.5K Total
5792 2) iASL Compiler/Disassembler and Tools:
5794 The AcpiExec utility now installs handlers for all of the predefined
5795 Operation Region types. New types supported are: PCI_Config, CMOS, and
5798 Fixed a problem with the 64-bit version of AcpiExec where the extended
5800 bit) address fields for the DSDT and FACS within the FADT were not being
5801 used, causing truncation of the upper 32-bits of these addresses. Lin
5805 ----------------------------------------
5806 19 October 2007. Summary of changes for version 20071019:
5808 1) ACPI CA Core Subsystem:
5810 Fixed a problem with the Alias operator when the target of the alias is a
5811 named ASL operator that opens a new scope -- Scope, Device,
5813 Processor, and ThermalZone. In these cases, any children of the original
5814 operator could not be accessed via the alias, potentially causing
5816 AE_NOT_FOUND exceptions. (BZ 9067)
5818 Fixed a problem with the Package operator where all named references were
5819 created as object references and left otherwise unresolved. According to
5821 ACPI specification, a Package can only contain Data Objects or references
5823 control methods. The implication is that named references to Data Objects
5824 (Integer, Buffer, String, Package, BufferField, Field) should be resolved
5825 immediately upon package creation. This is the approach taken with this
5826 change. References to all other named objects (Methods, Devices, Scopes,
5827 etc.) are all now properly created as reference objects. (BZ 5328)
5829 Reverted a change to Notify handling that was introduced in version
5830 20070508. This version changed the Notify handling from asynchronous to
5831 fully synchronous (Device driver Notify handling with respect to the
5833 ASL operator). It was found that this change caused more problems than it
5834 solved and was removed by most users.
5836 Fixed a problem with the Increment and Decrement operators where the type
5838 the target object could be unexpectedly and incorrectly changed. (BZ 353)
5841 Fixed a problem with the Load and LoadTable operators where the table
5842 location within the namespace was ignored. Instead, the table was always
5843 loaded into the root or current scope. Lin Ming.
5845 Fixed a problem with the Load operator when loading a table from a buffer
5846 object. The input buffer was prematurely zeroed and/or deleted. (BZ 577)
5848 Fixed a problem with the Debug object where a store of a DdbHandle
5850 object to the Debug object could cause a fault.
5852 Added a table checksum verification for the Load operator, in the case
5854 the load is from a buffer. (BZ 578).
5856 Implemented additional parameter validation for the LoadTable operator.
5858 length of the input strings SignatureString, OemIdString, and OemTableId
5860 now checked for maximum lengths. (BZ 582) Lin Ming.
5862 Example Code and Data Size: These are the sizes for the OS-independent
5863 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
5864 debug version of the code includes the debug output trace mechanism and
5866 a much larger code and data size.
5869 Non-Debug Version: 78.5K Code, 17.1K Data, 95.6K Total
5870 Debug Version: 156.7K Code, 63.2K Data, 219.9K Total
5872 Non-Debug Version: 78.8K Code, 17.2K Data, 96.0K Total
5873 Debug Version: 157.2K Code, 63.4K Data, 220.6K Total
5876 2) iASL Compiler/Disassembler:
5878 Fixed a problem where if a single file was specified and the file did not
5879 exist, no error message was emitted. (Introduced with wildcard support in
5882 ----------------------------------------
5883 19 September 2007. Summary of changes for version 20070919:
5885 1) ACPI CA Core Subsystem:
5887 Designed and implemented new external interfaces to install and remove
5888 handlers for ACPI table-related events. Current events that are defined
5890 LOAD and UNLOAD. These interfaces allow the host to track ACPI tables as
5891 they are dynamically loaded and unloaded. See AcpiInstallTableHandler and
5892 AcpiRemoveTableHandler. (Lin Ming and Bob Moore)
5894 Fixed a problem where the use of the AcpiGbl_AllMethodsSerialized flag
5895 (acpi_serialized option on Linux) could cause some systems to hang during
5896 initialization. (Bob Moore) BZ 8171
5898 Fixed a problem where objects of certain types (Device, ThermalZone,
5899 Processor, PowerResource) can be not found if they are declared and
5900 referenced from within the same control method (Lin Ming) BZ 341
5902 Example Code and Data Size: These are the sizes for the OS-independent
5903 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
5904 debug version of the code includes the debug output trace mechanism and
5906 a much larger code and data size.
5909 Non-Debug Version: 78.3K Code, 17.0K Data, 95.3K Total
5910 Debug Version: 156.3K Code, 63.1K Data, 219.4K Total
5912 Non-Debug Version: 78.5K Code, 17.1K Data, 95.6K Total
5913 Debug Version: 156.7K Code, 63.2K Data, 219.9K Total
5916 2) iASL Compiler/Disassembler:
5918 Implemented support to allow multiple files to be compiled/disassembled
5921 single invocation. This includes command line wildcard support for both
5923 Windows and Unix versions of the compiler. This feature simplifies the
5924 disassembly and compilation of multiple ACPI tables in a single
5927 ----------------------------------------
5928 08 May 2007. Summary of changes for version 20070508:
5930 1) ACPI CA Core Subsystem:
5932 Implemented a Microsoft compatibility design change for the handling of
5934 Notify AML operator. Previously, notify handlers were dispatched and
5935 executed completely asynchronously in a deferred thread. The new design
5936 still executes the notify handlers in a different thread, but the
5938 thread that executed the Notify() now waits at a synchronization point
5940 the notify handler to complete. Some machines depend on a synchronous
5942 operator in order to operate correctly.
5944 Implemented support to allow Package objects to be passed as method
5945 arguments to the external AcpiEvaluateObject interface. Previously, this
5946 would return the AE_NOT_IMPLEMENTED exception. This feature had not been
5947 implemented since there were no reserved control methods that required it
5950 Fixed a problem with the internal FADT conversion where ACPI 1.0 FADTs
5952 contained invalid non-zero values in reserved fields could cause later
5953 failures because these fields have meaning in later revisions of the
5955 For incoming ACPI 1.0 FADTs, these fields are now always zeroed. (The
5957 are: Preferred_PM_Profile, PSTATE_CNT, CST_CNT, and IAPC_BOOT_FLAGS.)
5959 Fixed a problem where the Global Lock handle was not properly updated if
5961 thread that acquired the Global Lock via executing AML code then
5963 to acquire the lock via the AcpiAcquireGlobalLock interface. Reported by
5967 Fixed a problem in AcpiEvDeleteGpeXrupt where the global interrupt list
5968 could be corrupted if the interrupt being removed was at the head of the
5969 list. Reported by Linn Crosetto.
5971 Example Code and Data Size: These are the sizes for the OS-independent
5972 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
5973 debug version of the code includes the debug output trace mechanism and
5975 a much larger code and data size.
5978 Non-Debug Version: 78.0K Code, 17.1K Data, 95.1K Total
5979 Debug Version: 155.9K Code, 63.1K Data, 219.0K Total
5981 Non-Debug Version: 78.3K Code, 17.0K Data, 95.3K Total
5982 Debug Version: 156.3K Code, 63.1K Data, 219.4K Total
5984 ----------------------------------------
5985 20 March 2007. Summary of changes for version 20070320:
5987 1) ACPI CA Core Subsystem:
5989 Implemented a change to the order of interpretation and evaluation of AML
5990 operand objects within the AML interpreter. The interpreter now evaluates
5991 operands in the order that they appear in the AML stream (and the
5992 corresponding ASL code), instead of in the reverse order (after the
5994 operand list has been parsed). The previous behavior caused several
5996 incompatibilities with the Microsoft AML interpreter as well as being
5997 somewhat non-intuitive. BZ 7871, local BZ 263. Valery Podrezov.
5999 Implemented a change to the ACPI Global Lock support. All interfaces to
6001 global lock now allow the same thread to acquire the lock multiple times.
6002 This affects the AcpiAcquireGlobalLock external interface to the global
6004 as well as the internal use of the global lock to support AML fields -- a
6005 control method that is holding the global lock can now simultaneously
6007 AML fields that require global lock protection. Previously, in both
6009 this would have resulted in an AE_ALREADY_ACQUIRED exception. The change
6011 AcpiAcquireGlobalLock is of special interest to drivers for the Embedded
6012 Controller. There is no change to the behavior of the AML Acquire
6014 as this can already be used to acquire a mutex multiple times by the same
6015 thread. BZ 8066. With assistance from Alexey Starikovskiy.
6017 Fixed a problem where invalid objects could be referenced in the AML
6018 Interpreter after error conditions. During operand evaluation, ensure
6020 the internal "Return Object" field is cleared on error and only valid
6021 pointers are stored there. Caused occasional access to deleted objects
6023 resulted in "large reference count" warning messages. Valery Podrezov.
6025 Fixed a problem where an AE_STACK_OVERFLOW internal exception could occur
6027 deeply nested control method invocations. BZ 7873, local BZ 487. Valery
6030 Fixed an internal problem with the handling of result objects on the
6031 interpreter result stack. BZ 7872. Valery Podrezov.
6033 Removed obsolete code that handled the case where AML_NAME_OP is the
6035 of a reference (Reference.Opcode). This code was no longer necessary. BZ
6036 7874. Valery Podrezov.
6038 Removed obsolete ACPI_NO_INTEGER64_SUPPORT from two header files. This
6041 remnant from the previously discontinued 16-bit support.
6043 Example Code and Data Size: These are the sizes for the OS-independent
6044 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
6045 debug version of the code includes the debug output trace mechanism and
6047 a much larger code and data size.
6050 Non-Debug Version: 78.0K Code, 17.1K Data, 95.1K Total
6051 Debug Version: 155.8K Code, 63.3K Data, 219.1K Total
6053 Non-Debug Version: 78.0K Code, 17.1K Data, 95.1K Total
6054 Debug Version: 155.9K Code, 63.1K Data, 219.0K Total
6056 ----------------------------------------
6057 26 January 2007. Summary of changes for version 20070126:
6059 1) ACPI CA Core Subsystem:
6061 Added the 2007 copyright to all module headers and signons. This affects
6062 virtually every file in the ACPICA core subsystem, the iASL compiler, and
6065 Implemented a fix for an incorrect parameter passed to AcpiTbDeleteTable
6066 during a table load. A bad pointer was passed in the case where the DSDT
6068 overridden, causing a fault in this case.
6070 Example Code and Data Size: These are the sizes for the OS-independent
6071 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
6072 debug version of the code includes the debug output trace mechanism and
6074 a much larger code and data size.
6077 Non-Debug Version: 78.0K Code, 17.1K Data, 95.1K Total
6078 Debug Version: 155.8K Code, 63.3K Data, 219.1K Total
6080 Non-Debug Version: 78.0K Code, 17.1K Data, 95.1K Total
6081 Debug Version: 155.8K Code, 63.3K Data, 219.1K Total
6083 ----------------------------------------
6084 15 December 2006. Summary of changes for version 20061215:
6086 1) ACPI CA Core Subsystem:
6088 Support for 16-bit ACPICA has been completely removed since it is no
6090 necessary and it clutters the code. All 16-bit macros, types, and
6091 conditional compiles have been removed, cleaning up and simplifying the
6093 across the entire subsystem. DOS support is no longer needed since the
6094 bootable Linux firmware kit is now available.
6096 The handler for the Global Lock is now removed during AcpiTerminate to
6097 enable a clean subsystem restart, via the implementation of the
6098 AcpiEvRemoveGlobalLockHandler function. (With assistance from Joel Bretz,
6101 Implemented enhancements to the multithreading support within the
6103 to enable improved multithreading debugging and evaluation of the
6107 Debugger: Enhanced the Statistics/Memory command to emit the total
6109 memory used during the execution, as well as the maximum memory consumed
6111 each of the various object types. (Valery Podrezov)
6113 Example Code and Data Size: These are the sizes for the OS-independent
6114 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
6115 debug version of the code includes the debug output trace mechanism and
6117 a much larger code and data size.
6120 Non-Debug Version: 77.9K Code, 17.0K Data, 94.9K Total
6121 Debug Version: 155.2K Code, 63.1K Data, 218.3K Total
6123 Non-Debug Version: 78.0K Code, 17.1K Data, 95.1K Total
6124 Debug Version: 155.8K Code, 63.3K Data, 219.1K Total
6127 2) iASL Compiler/Disassembler and Tools:
6129 AcpiExec: Implemented a new option (-m) to display full memory use
6130 statistics upon subsystem/program termination. (Valery Podrezov)
6132 ----------------------------------------
6133 09 November 2006. Summary of changes for version 20061109:
6135 1) ACPI CA Core Subsystem:
6137 Optimized the Load ASL operator in the case where the source operand is
6139 operation region. Simply map the operation region memory, instead of
6140 performing a bytewise read. (Region must be of type SystemMemory, see
6143 Fixed the Load ASL operator for the case where the source operand is a
6144 region field. A buffer object is also allowed as the source operand. BZ
6147 Fixed a problem where the Load ASL operator allowed the source operand to
6149 an operation region of any type. It is now restricted to regions of type
6150 SystemMemory, as per the ACPI specification. BZ 481
6152 Additional cleanup and optimizations for the new Table Manager code.
6154 AcpiEnable will now fail if all of the required ACPI tables are not
6156 (FADT, FACS, DSDT). BZ 477
6158 Added #pragma pack(8/4) to acobject.h to ensure that the structures in
6160 header are always compiled as aligned. The ACPI_OPERAND_OBJECT has been
6161 manually optimized to be aligned and will not work if it is byte-packed.
6163 Example Code and Data Size: These are the sizes for the OS-independent
6164 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
6165 debug version of the code includes the debug output trace mechanism and
6167 a much larger code and data size.
6170 Non-Debug Version: 78.1K Code, 17.1K Data, 95.2K Total
6171 Debug Version: 155.4K Code, 63.1K Data, 218.5K Total
6173 Non-Debug Version: 77.9K Code, 17.0K Data, 94.9K Total
6174 Debug Version: 155.2K Code, 63.1K Data, 218.3K Total
6177 2) iASL Compiler/Disassembler and Tools:
6179 Fixed a problem where the presence of the _OSI predefined control method
6180 within complex expressions could cause an internal compiler error.
6182 AcpiExec: Implemented full region support for multiple address spaces.
6183 SpaceId is now part of the REGION object. BZ 429
6185 ----------------------------------------
6186 11 October 2006. Summary of changes for version 20061011:
6188 1) ACPI CA Core Subsystem:
6190 Completed an AML interpreter performance enhancement for control method
6191 execution. Previously a 2-pass parse/execution, control methods are now
6192 completely parsed and executed in a single pass. This improves overall
6193 interpreter performance by ~25%, reduces code size, and reduces CPU stack
6194 use. (Valery Podrezov + interpreter changes in version 20051202 that
6195 eliminated namespace loading during the pass one parse.)
6197 Implemented _CID support for PCI Root Bridge detection. If the _HID does
6199 match the predefined PCI Root Bridge IDs, the _CID list (if present) is
6201 obtained and also checked for an ID match.
6203 Implemented additional support for the PCI _ADR execution: upsearch until
6205 device scope is found before executing _ADR. This allows PCI_Config
6206 operation regions to be declared locally within control methods
6210 Fixed a problem with a possible race condition between threads executing
6211 AcpiWalkNamespace and the AML interpreter. This condition was removed by
6212 modifying AcpiWalkNamespace to (by default) ignore all temporary
6214 entries created during any concurrent control method execution. An
6215 additional namespace race condition is known to exist between
6216 AcpiWalkNamespace and the Load/Unload ASL operators and is still under
6219 Restructured the AML ParseLoop function, breaking it into several
6220 subfunctions in order to reduce CPU stack use and improve
6224 AcpiGetHandle: Fix for parameter validation to detect invalid
6226 of prefix handle and pathname. BZ 478
6228 Example Code and Data Size: These are the sizes for the OS-independent
6229 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
6230 debug version of the code includes the debug output trace mechanism and
6232 a much larger code and data size.
6235 Non-Debug Version: 77.9K Code, 17.1K Data, 95.0K Total
6236 Debug Version: 154.6K Code, 63.0K Data, 217.6K Total
6238 Non-Debug Version: 78.1K Code, 17.1K Data, 95.2K Total
6239 Debug Version: 155.4K Code, 63.1K Data, 218.5K Total
6241 2) iASL Compiler/Disassembler and Tools:
6243 Ported the -g option (get local ACPI tables) to the new ACPICA Table
6245 to restore original behavior.
6247 ----------------------------------------
6248 27 September 2006. Summary of changes for version 20060927:
6250 1) ACPI CA Core Subsystem:
6252 Removed the "Flags" parameter from AcpiGetRegister and AcpiSetRegister.
6253 These functions now use a spinlock for mutual exclusion and the interrupt
6254 level indication flag is not needed.
6256 Fixed a problem with the Global Lock where the lock could appear to be
6257 obtained before it is actually obtained. The global lock semaphore was
6258 inadvertently created with one unit instead of zero units. (BZ 464)
6262 Fixed a possible memory leak and fault in AcpiExResolveObjectToValue
6264 a read from a buffer or region field. (BZ 458) Fiodor Suietov.
6266 Example Code and Data Size: These are the sizes for the OS-independent
6267 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
6268 debug version of the code includes the debug output trace mechanism and
6270 a much larger code and data size.
6273 Non-Debug Version: 77.9K Code, 17.1K Data, 95.0K Total
6274 Debug Version: 154.7K Code, 63.0K Data, 217.7K Total
6276 Non-Debug Version: 77.9K Code, 17.1K Data, 95.0K Total
6277 Debug Version: 154.6K Code, 63.0K Data, 217.6K Total
6280 2) iASL Compiler/Disassembler and Tools:
6282 Fixed a compilation problem with the pre-defined Resource Descriptor
6284 names where an "object does not exist" error could be incorrectly
6286 if the parent ResourceTemplate pathname places the template within a
6287 different namespace scope than the current scope. (BZ 7212)
6289 Fixed a problem where the compiler could hang after syntax errors
6291 in an ElseIf construct. (BZ 453)
6293 Fixed a problem with the AmlFilename parameter to the DefinitionBlock()
6294 operator. An incorrect output filename was produced when this parameter
6296 a null string (""). Now, the original input filename is used as the AML
6297 output filename, with an ".aml" extension.
6299 Implemented a generic batch command mode for the AcpiExec utility
6301 any AML debugger command) (Valery Podrezov).
6303 ----------------------------------------
6304 12 September 2006. Summary of changes for version 20060912:
6306 1) ACPI CA Core Subsystem:
6308 Enhanced the implementation of the "serialized mode" of the interpreter
6309 (enabled via the AcpiGbl_AllMethodsSerialized flag.) When this mode is
6310 specified, instead of creating a serialization semaphore per control
6312 the interpreter lock is simply no longer released before a blocking
6313 operation during control method execution. This effectively makes the AML
6314 Interpreter single-threaded. The overhead of a semaphore per-method is
6317 Fixed a regression where an error was no longer emitted if a control
6319 attempts to create 2 objects of the same name. This once again returns
6320 AE_ALREADY_EXISTS. When this exception occurs, it invokes the mechanism
6322 will dynamically serialize the control method to possible prevent future
6325 Integrated a fix for a problem with PCI Express HID detection in the PCI
6326 Config Space setup procedure. (BZ 7145)
6328 Moved all FADT-related functions to a new file, tbfadt.c. Eliminated the
6329 AcpiHwInitialize function - the FADT registers are now validated when the
6332 Added two new warnings during FADT verification - 1) if the FADT is
6334 than the largest known FADT version, and 2) if there is a mismatch
6337 32-bit block address and the 64-bit X counterpart (when both are non-
6340 Example Code and Data Size: These are the sizes for the OS-independent
6341 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
6342 debug version of the code includes the debug output trace mechanism and
6344 a much larger code and data size.
6347 Non-Debug Version: 77.9K Code, 16.7K Data, 94.6K Total
6348 Debug Version: 154.9K Code, 62.6K Data, 217.5K Total
6350 Non-Debug Version: 77.9K Code, 17.1K Data, 95.0K Total
6351 Debug Version: 154.7K Code, 63.0K Data, 217.7K Total
6354 2) iASL Compiler/Disassembler and Tools:
6356 Fixed a problem with the implementation of the Switch() operator where
6358 temporary variable was declared too close to the actual Switch, instead
6360 at method level. This could cause a problem if the Switch() operator is
6361 within a while loop, causing an error on the second iteration. (BZ 460)
6363 Disassembler - fix for error emitted for unknown type for target of scope
6364 operator. Now, ignore it and continue.
6366 Disassembly of an FADT now verifies the input FADT and reports any errors
6367 found. Fix for proper disassembly of full-sized (ACPI 2.0) FADTs.
6369 Disassembly of raw data buffers with byte initialization data now
6371 each output line with the current buffer offset.
6373 Disassembly of ASF! table now includes all variable-length data fields at
6374 the end of some of the subtables.
6376 The disassembler now emits a comment if a buffer appears to be a
6377 ResourceTemplate, but cannot be disassembled as such because the EndTag
6379 not appear at the very end of the buffer.
6381 AcpiExec - Added the "-t" command line option to enable the serialized
6383 of the AML interpreter.
6385 ----------------------------------------
6386 31 August 2006. Summary of changes for version 20060831:
6388 1) ACPI CA Core Subsystem:
6390 Miscellaneous fixes for the Table Manager:
6391 - Correctly initialize internal common FADT for all 64-bit "X" fields
6392 - Fixed a couple table mapping issues during table load
6393 - Fixed a couple alignment issues for IA64
6394 - Initialize input array to zero in AcpiInitializeTables
6395 - Additional parameter validation for AcpiGetTable, AcpiGetTableHeader,
6398 Change for GPE support: when a "wake" GPE is received, all wake GPEs are
6400 immediately disabled to prevent the waking GPE from firing again and to
6401 prevent other wake GPEs from interrupting the wake process.
6403 Added the AcpiGpeCount global that tracks the number of processed GPEs,
6405 be used for debugging systems with a large number of ACPI interrupts.
6407 Implemented support for the "DMAR" ACPI table (DMA Redirection Table) in
6408 both the ACPICA headers and the disassembler.
6410 Example Code and Data Size: These are the sizes for the OS-independent
6411 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
6412 debug version of the code includes the debug output trace mechanism and
6414 a much larger code and data size.
6417 Non-Debug Version: 77.8K Code, 16.5K Data, 94.3K Total
6418 Debug Version: 154.6K Code, 62.3K Data, 216.9K Total
6420 Non-Debug Version: 77.9K Code, 16.7K Data, 94.6K Total
6421 Debug Version: 154.9K Code, 62.6K Data, 217.5K Total
6424 2) iASL Compiler/Disassembler and Tools:
6426 Disassembler support for the DMAR ACPI table.
6428 ----------------------------------------
6429 23 August 2006. Summary of changes for version 20060823:
6431 1) ACPI CA Core Subsystem:
6433 The Table Manager component has been completely redesigned and
6434 reimplemented. The new design is much simpler, and reduces the overall
6436 and data size of the kernel-resident ACPICA by approximately 5%. Also, it
6438 now possible to obtain the ACPI tables very early during kernel
6439 initialization, even before dynamic memory management is initialized.
6440 (Alexey Starikovskiy, Fiodor Suietov, Bob Moore)
6442 Obsolete ACPICA interfaces:
6444 - AcpiGetFirmwareTable: Use AcpiGetTable instead (works at early kernel
6447 - AcpiLoadTable: Not needed.
6448 - AcpiUnloadTable: Not needed.
6450 New ACPICA interfaces:
6452 - AcpiInitializeTables: Must be called before the table manager can be
6454 - AcpiReallocateRootTable: Used to transfer the root table to dynamically
6455 allocated memory after it becomes available.
6456 - AcpiGetTableByIndex: Allows the host to easily enumerate all ACPI
6460 Other ACPICA changes:
6462 - AcpiGetTableHeader returns the actual mapped table header, not a copy.
6464 AcpiOsUnmapMemory to free this mapping.
6465 - AcpiGetTable returns the actual mapped table. The mapping is managed
6466 internally and must not be deleted by the caller. Use of this interface
6467 causes no additional dynamic memory allocation.
6468 - AcpiFindRootPointer: Support for physical addressing has been
6470 it appeared to be unused.
6471 - The interface to AcpiOsMapMemory has changed to be consistent with the
6472 other allocation interfaces.
6473 - The interface to AcpiOsGetRootPointer has changed to eliminate
6476 - ACPI_PHYSICAL_ADDRESS is now 32 bits on 32-bit platforms, 64 bits on
6478 bit platforms. Was previously 64 bits on all platforms.
6479 - The interface to the ACPI Global Lock acquire/release macros have
6481 slightly since ACPICA no longer keeps a local copy of the FACS with a
6482 constructed pointer to the actual global lock.
6484 Porting to the new table manager:
6486 - AcpiInitializeTables: Must be called once, and can be called anytime
6487 during the OS initialization process. It allows the host to specify an
6489 of memory to be used to store the internal version of the RSDT/XSDT (root
6490 table). This allows the host to access ACPI tables before memory
6492 is initialized and running.
6493 - AcpiReallocateRootTable: Can be called after memory management is
6495 to copy the root table to a dynamically allocated array, freeing up the
6496 scratch memory specified in the call to AcpiInitializeTables.
6497 - AcpiSubsystemInitialize: This existing interface is independent of the
6498 Table Manager, and does not have to be called before the Table Manager
6500 be used, it only must be called before the rest of ACPICA can be used.
6501 - ACPI Tables: Some changes have been made to the names and structure of
6503 actbl.h and actbl1.h header files and may require changes to existing
6505 For example, bitfields have been completely removed because of their lack
6507 portability across C compilers.
6508 - Update interfaces to the Global Lock acquire/release macros if local
6509 versions are used. (see acwin.h)
6511 Obsolete files: tbconvrt.c, tbget.c, tbgetall.c, tbrsdt.c
6515 Example Code and Data Size: These are the sizes for the OS-independent
6516 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
6517 debug version of the code includes the debug output trace mechanism and
6519 a much larger code and data size.
6522 Non-Debug Version: 80.7K Code, 17.9K Data, 98.6K Total
6523 Debug Version: 161.0K Code, 65.1K Data, 226.1K Total
6525 Non-Debug Version: 77.8K Code, 16.5K Data, 94.3K Total
6526 Debug Version: 154.6K Code, 62.3K Data, 216.9K Total
6529 2) iASL Compiler/Disassembler and Tools:
6531 No changes for this release.
6533 ----------------------------------------
6534 21 July 2006. Summary of changes for version 20060721:
6536 1) ACPI CA Core Subsystem:
6538 The full source code for the ASL test suite used to validate the iASL
6539 compiler and the ACPICA core subsystem is being released with the ACPICA
6540 source for the first time. The source is contained in a separate package
6542 consists of over 1100 files that exercise all ASL/AML operators. The
6544 should appear on the Intel/ACPI web site shortly. (Valery Podrezov,
6548 Completed a new design and implementation for support of the ACPI Global
6549 Lock. On the OS side, the global lock is now treated as a standard AML
6550 mutex. Previously, multiple OS threads could "acquire" the global lock
6551 simultaneously. However, this could cause the BIOS to be starved out of
6553 lock - especially in cases such as the Embedded Controller driver where
6554 there is a tight coupling between the OS and the BIOS.
6556 Implemented an optimization for the ACPI Global Lock interrupt mechanism.
6557 The Global Lock interrupt handler no longer queues the execution of a
6558 separate thread to signal the global lock semaphore. Instead, the
6560 is signaled directly from the interrupt handler.
6562 Implemented support within the AML interpreter for package objects that
6563 contain a larger AML length (package list length) than the package
6565 count. In this case, the length of the package is truncated to match the
6566 package element count. Some BIOS code apparently modifies the package
6568 on the fly, and this change supports this behavior. Provides
6570 with the MS AML interpreter. (With assistance from Fiodor Suietov)
6572 Implemented a temporary fix for the BankValue parameter of a Bank Field
6574 support all constant values, now including the Zero and One opcodes.
6575 Evaluation of this parameter must eventually be converted to a full
6577 evaluation. A not-implemented error is now returned (temporarily) for
6579 constant values for this parameter.
6581 Fixed problem reports (Fiodor Suietov) integrated:
6582 - Fix for premature object deletion after CopyObject on Operation Region
6586 Example Code and Data Size: These are the sizes for the OS-independent
6587 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
6588 debug version of the code includes the debug output trace mechanism and
6590 a much larger code and data size.
6593 Non-Debug Version: 80.7K Code, 18.0K Data, 98.7K Total
6594 Debug Version: 160.9K Code, 65.1K Data, 226.0K Total
6596 Non-Debug Version: 80.7K Code, 17.9K Data, 98.6K Total
6597 Debug Version: 161.0K Code, 65.1K Data, 226.1K Total
6600 2) iASL Compiler/Disassembler and Tools:
6602 No changes for this release.
6604 ----------------------------------------
6605 07 July 2006. Summary of changes for version 20060707:
6607 1) ACPI CA Core Subsystem:
6609 Added the ACPI_PACKED_POINTERS_NOT_SUPPORTED macro to support C compilers
6610 that do not allow the initialization of address pointers within packed
6611 structures - even though the hardware itself may support misaligned
6612 transfers. Some of the debug data structures are packed by default to
6615 Added an error message for the case where AcpiOsGetThreadId() returns
6617 A non-zero value is required by the core ACPICA code to ensure the proper
6618 operation of AML mutexes and recursive control methods.
6620 The DSDT is now the only ACPI table that determines whether the AML
6621 interpreter is in 32-bit or 64-bit mode. Not really a functional change,
6623 the hooks for per-table 32/64 switching have been removed from the code.
6625 clarification to the ACPI specification is forthcoming in ACPI 3.0B.
6627 Fixed a possible leak of an OwnerID in the error path of
6628 AcpiTbInitTableDescriptor (tbinstal.c), and migrated all table OwnerID
6629 deletion to a single place in AcpiTbUninstallTable to correct possible
6631 when using the AcpiTbDeleteTablesByType interface (with assistance from
6634 Fixed a problem with Serialized control methods where the semaphore
6635 associated with the method could be over-signaled after multiple method
6638 Fixed two issues with the locking of the internal namespace data
6640 Both the Unload() operator and AcpiUnloadTable interface now lock the
6641 namespace during the namespace deletion associated with the table unload
6642 (with assistance from Linn Crosetto.)
6644 Fixed problem reports (Valery Podrezov) integrated:
6645 - Eliminate unnecessary memory allocation for CreateXxxxField (BZ 5426)
6647 Fixed problem reports (Fiodor Suietov) integrated:
6648 - Incomplete cleanup branches in AcpiTbGetTableRsdt (BZ 369)
6649 - On Address Space handler deletion, needless deactivation call (BZ 374)
6650 - AcpiRemoveAddressSpaceHandler: validate Device handle parameter (BZ
6652 - Possible memory leak, Notify sub-objects of Processor, Power,
6655 - AcpiRemoveAddressSpaceHandler: validate Handler parameter (BZ 378)
6656 - Minimum Length of RSDT should be validated (BZ 379)
6657 - AcpiRemoveNotifyHandler: return AE_NOT_EXIST if Processor Obj has no
6659 - AcpiUnloadTable: return AE_NOT_EXIST if no table of specified type
6663 Example Code and Data Size: These are the sizes for the OS-independent
6664 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
6665 debug version of the code includes the debug output trace mechanism and
6667 a much larger code and data size.
6670 Non-Debug Version: 80.5K Code, 17.8K Data, 98.3K Total
6671 Debug Version: 160.8K Code, 64.8K Data, 225.6K Total
6673 Non-Debug Version: 80.7K Code, 17.9K Data, 98.6K Total
6674 Debug Version: 161.0K Code, 65.1K Data, 226.1K Total
6677 2) iASL Compiler/Disassembler and Tools:
6679 Fixed problem reports:
6680 Compiler segfault when ASL contains a long (>1024) String declaration (BZ
6683 ----------------------------------------
6684 23 June 2006. Summary of changes for version 20060623:
6686 1) ACPI CA Core Subsystem:
6688 Implemented a new ACPI_SPINLOCK type for the OSL lock interfaces. This
6689 allows the type to be customized to the host OS for improved efficiency
6690 (since a spinlock is usually a very small object.)
6692 Implemented support for "ignored" bits in the ACPI registers. According
6694 the ACPI specification, these bits should be preserved when writing the
6695 registers via a read/modify/write cycle. There are 3 bits preserved in
6697 manner: PM1_CONTROL[0] (SCI_EN), PM1_CONTROL[9], and PM1_STATUS[11].
6699 Implemented the initial deployment of new OSL mutex interfaces. Since
6701 host operating systems have separate mutex and semaphore objects, this
6702 feature was requested. The base code now uses mutexes (and the new mutex
6703 interfaces) wherever a binary semaphore was used previously. However, for
6704 the current release, the mutex interfaces are defined as macros to map
6706 to the existing semaphore interfaces. Therefore, no OSL changes are
6708 at this time. (See acpiosxf.h)
6710 Fixed several problems with the support for the control method SyncLevel
6711 parameter. The SyncLevel now works according to the ACPI specification
6713 in concert with the Mutex SyncLevel parameter, since the current
6715 is a property of the executing thread. Mutual exclusion for control
6717 is now implemented with a mutex instead of a semaphore.
6719 Fixed three instances of the use of the C shift operator in the bitfield
6720 support code (exfldio.c) to avoid the use of a shift value larger than
6722 target data width. The behavior of C compilers is undefined in this case
6724 can cause unpredictable results, and therefore the case must be detected
6726 avoided. (Fiodor Suietov)
6728 Added an info message whenever an SSDT or OEM table is loaded dynamically
6729 via the Load() or LoadTable() ASL operators. This should improve
6731 capability since it will show exactly what tables have been loaded
6733 the tables present in the RSDT/XSDT.)
6735 Example Code and Data Size: These are the sizes for the OS-independent
6736 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
6737 debug version of the code includes the debug output trace mechanism and
6739 a much larger code and data size.
6742 Non-Debug Version: 80.0K Code, 17.6K Data, 97.6K Total
6743 Debug Version: 160.2K Code, 64.7K Data, 224.9K Total
6745 Non-Debug Version: 80.5K Code, 17.8K Data, 98.3K Total
6746 Debug Version: 160.8K Code, 64.8K Data, 225.6K Total
6749 2) iASL Compiler/Disassembler and Tools:
6751 No changes for this release.
6753 ----------------------------------------
6754 08 June 2006. Summary of changes for version 20060608:
6756 1) ACPI CA Core Subsystem:
6758 Converted the locking mutex used for the ACPI hardware to a spinlock.
6760 change should eliminate all problems caused by attempting to acquire a
6761 semaphore at interrupt level, and it means that all ACPICA external
6762 interfaces that directly access the ACPI hardware can be safely called
6764 interrupt level. OSL code that implements the semaphore interfaces should
6766 able to eliminate any workarounds for being called at interrupt level.
6768 Fixed a regression introduced in 20060526 where the ACPI device
6769 initialization could be prematurely aborted with an AE_NOT_FOUND if a
6771 did not have an optional _INI method.
6773 Fixed an IndexField issue where a write to the Data Register should be
6774 limited in size to the AccessSize (width) of the IndexField itself. (BZ
6778 Fixed problem reports (Valery Podrezov) integrated:
6779 - Allow store of ThermalZone objects to Debug object (BZ 5369/5370)
6781 Fixed problem reports (Fiodor Suietov) integrated:
6782 - AcpiGetTableHeader doesn't handle multiple instances correctly (BZ 364)
6784 Removed four global mutexes that were obsolete and were no longer being
6787 Example Code and Data Size: These are the sizes for the OS-independent
6788 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
6789 debug version of the code includes the debug output trace mechanism and
6791 a much larger code and data size.
6794 Non-Debug Version: 80.0K Code, 17.7K Data, 97.7K Total
6795 Debug Version: 160.3K Code, 64.9K Data, 225.2K Total
6797 Non-Debug Version: 80.0K Code, 17.6K Data, 97.6K Total
6798 Debug Version: 160.2K Code, 64.7K Data, 224.9K Total
6801 2) iASL Compiler/Disassembler and Tools:
6803 Fixed a fault when using -g option (get tables from registry) on Windows
6806 Fixed problem reports integrated:
6807 - Generate error if CreateField NumBits parameter is zero. (BZ 405)
6808 - Fault if Offset/Length in Field unit is very large (BZ 432, Fiodor
6810 - Global table revision override (-r) is ignored (BZ 413)
6812 ----------------------------------------
6813 26 May 2006. Summary of changes for version 20060526:
6815 1) ACPI CA Core Subsystem:
6817 Restructured, flattened, and simplified the internal interfaces for
6818 namespace object evaluation - resulting in smaller code, less CPU stack
6820 and fewer interfaces. (With assistance from Mikhail Kouzmich)
6822 Fixed a problem with the CopyObject operator where the first parameter
6824 not typed correctly for the parser, interpreter, compiler, and
6826 Caused various errors and unexpected behavior.
6828 Fixed a problem where a ShiftLeft or ShiftRight of more than 64 bits
6829 produced incorrect results with some C compilers. Since the behavior of C
6830 compilers when the shift value is larger than the datatype width is
6831 apparently not well defined, the interpreter now detects this condition
6833 simply returns zero as expected in all such cases. (BZ 395)
6835 Fixed problem reports (Valery Podrezov) integrated:
6836 - Update String-to-Integer conversion to match ACPI 3.0A spec (BZ 5329)
6837 - Allow interpreter to handle nested method declarations (BZ 5361)
6839 Fixed problem reports (Fiodor Suietov) integrated:
6840 - AcpiTerminate doesn't free debug memory allocation list objects (BZ
6842 - After Core Subsystem shutdown, AcpiSubsystemStatus returns AE_OK (BZ
6844 - AcpiOsUnmapMemory for RSDP can be invoked inconsistently (BZ 357)
6845 - Resource Manager should return AE_TYPE for non-device objects (BZ 358)
6846 - Incomplete cleanup branch in AcpiNsEvaluateRelative (BZ 359)
6847 - Use AcpiOsFree instead of ACPI_FREE in AcpiRsSetSrsMethodData (BZ 360)
6848 - Incomplete cleanup branch in AcpiPsParseAml (BZ 361)
6849 - Incomplete cleanup branch in AcpiDsDeleteWalkState (BZ 362)
6850 - AcpiGetTableHeader returns AE_NO_ACPI_TABLES until DSDT is loaded (BZ
6852 - Status of the Global Initialization Handler call not used (BZ 366)
6853 - Incorrect object parameter to Global Initialization Handler (BZ 367)
6855 Example Code and Data Size: These are the sizes for the OS-independent
6856 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
6857 debug version of the code includes the debug output trace mechanism and
6859 a much larger code and data size.
6862 Non-Debug Version: 79.8K Code, 17.7K Data, 97.5K Total
6863 Debug Version: 160.5K Code, 65.1K Data, 225.6K Total
6865 Non-Debug Version: 80.0K Code, 17.7K Data, 97.7K Total
6866 Debug Version: 160.3K Code, 64.9K Data, 225.2K Total
6869 2) iASL Compiler/Disassembler and Tools:
6871 Modified the parser to allow the names IO, DMA, and IRQ to be used as
6872 namespace identifiers with no collision with existing resource descriptor
6873 macro names. This provides compatibility with other ASL compilers and is
6874 most useful for disassembly/recompilation of existing tables without
6876 errors. (With assistance from Thomas Renninger)
6878 Disassembler: fixed an incorrect disassembly problem with the
6879 DataTableRegion and CopyObject operators. Fixed a possible fault during
6880 disassembly of some Alias operators.
6882 ----------------------------------------
6883 12 May 2006. Summary of changes for version 20060512:
6885 1) ACPI CA Core Subsystem:
6887 Replaced the AcpiOsQueueForExecution interface with a new interface named
6888 AcpiOsExecute. The major difference is that the new interface does not
6890 a Priority parameter, this appeared to be useless and has been replaced
6893 Type parameter. The Type tells the host what type of execution is being
6894 requested, such as global lock handler, notify handler, GPE handler, etc.
6895 This allows the host to queue and execute the request as appropriate for
6897 request type, possibly using different work queues and different
6899 for the various request types. This enables fixes for multithreading
6900 deadlock problems such as BZ #5534, and will require changes to all
6902 OS interface layers. (Alexey Starikovskiy and Bob Moore)
6904 Fixed a possible memory leak associated with the support for the so-
6906 "implicit return" ACPI extension. Reported by FreeBSD, BZ #6514. (Fiodor
6909 Fixed a problem with the Load() operator where a table load from an
6910 operation region could overwrite an internal table buffer by up to 7
6912 and cause alignment faults on IPF systems. (With assistance from Luming
6915 Example Code and Data Size: These are the sizes for the OS-independent
6916 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
6917 debug version of the code includes the debug output trace mechanism and
6919 a much larger code and data size.
6922 Non-Debug Version: 79.7K Code, 17.7K Data, 97.4K Total
6923 Debug Version: 160.1K Code, 65.2K Data, 225.3K Total
6925 Non-Debug Version: 79.8K Code, 17.7K Data, 97.5K Total
6926 Debug Version: 160.5K Code, 65.1K Data, 225.6K Total
6930 2) iASL Compiler/Disassembler and Tools:
6932 Disassembler: Implemented support to cross reference the internal
6934 and automatically generate ASL External() statements for symbols not
6936 within the current table being disassembled. This will simplify the
6937 disassembly and recompilation of interdependent tables such as SSDTs
6939 these statements will no longer have to be added manually.
6941 Disassembler: Implemented experimental support to automatically detect
6942 invocations of external control methods and generate appropriate
6944 statements. This is problematic because the AML cannot be correctly
6946 until the number of arguments for each control method is known.
6948 standalone method invocations and invocations as the source operand of a
6949 Store() statement are supported.
6951 Disassembler: Implemented support for the ASL pseudo-operators LNotEqual,
6952 LLessEqual, and LGreaterEqual. Previously disassembled as LNot(LEqual()),
6953 LNot(LGreater()), and LNot(LLess()), this makes the disassembled ASL code
6954 more readable and likely closer to the original ASL source.
6956 ----------------------------------------
6957 21 April 2006. Summary of changes for version 20060421:
6959 1) ACPI CA Core Subsystem:
6961 Removed a device initialization optimization introduced in 20051216 where
6962 the _STA method was not run unless an _INI was also present for the same
6963 device. This optimization could cause problems because it could allow
6965 methods to be run within a not-present device subtree. (If a not-present
6966 device had no _INI, _STA would not be run, the not-present status would
6968 be discovered, and the children of the device would be incorrectly
6971 Implemented a new _STA optimization where namespace subtrees that do not
6972 contain _INI are identified and ignored during device initialization.
6973 Selectively running _STA can significantly improve boot time on large
6974 machines (with assistance from Len Brown.)
6976 Implemented support for the device initialization case where the returned
6977 _STA flags indicate a device not-present but functioning. In this case,
6979 is not run, but the device children are examined for presence, as per the
6982 Implemented an additional change to the IndexField support in order to
6983 conform to MS behavior. The value written to the Index Register is not
6984 simply a byte offset, it is a byte offset in units of the access width of
6985 the parent Index Field. (Fiodor Suietov)
6987 Defined and deployed a new OSL interface, AcpiOsValidateAddress. This
6988 interface is called during the creation of all AML operation regions, and
6989 allows the host OS to exert control over what addresses it will allow the
6990 AML code to access. Operation Regions whose addresses are disallowed will
6991 cause a runtime exception when they are actually accessed (will not
6993 or abort table loading.) See oswinxf or osunixxf for an example
6996 Defined and deployed a new OSL interface, AcpiOsValidateInterface. This
6997 interface allows the host OS to match the various "optional"
6998 interface/behavior strings for the _OSI predefined control method as
6999 appropriate (with assistance from Bjorn Helgaas.) See oswinxf or osunixxf
7000 for an example implementation.
7002 Restructured and corrected various problems in the exception handling
7004 paths within DsCallControlMethod and DsTerminateControlMethod in dsmethod
7005 (with assistance from Takayoshi Kochi.)
7007 Modified the Linux source converter to ignore quoted string literals
7009 converting identifiers from mixed to lower case. This will correct
7011 with the disassembler and other areas where such strings must not be
7014 The ACPI_FUNCTION_* macros no longer require quotes around the function
7015 name. This allows the Linux source converter to convert the names, now
7017 the converter ignores quoted strings.
7019 Example Code and Data Size: These are the sizes for the OS-independent
7020 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
7021 debug version of the code includes the debug output trace mechanism and
7023 a much larger code and data size.
7027 Non-Debug Version: 81.1K Code, 17.7K Data, 98.8K Total
7028 Debug Version: 158.9K Code, 64.9K Data, 223.8K Total
7030 Non-Debug Version: 79.7K Code, 17.7K Data, 97.4K Total
7031 Debug Version: 160.1K Code, 65.2K Data, 225.3K Total
7034 2) iASL Compiler/Disassembler and Tools:
7036 Implemented 3 new warnings for iASL, and implemented multiple warning
7040 1) Ignored timeouts: If the TimeoutValue parameter to Wait or Acquire is
7042 WAIT_FOREVER (0xFFFF) and the code does not examine the return value to
7043 check for the possible timeout, a warning is issued.
7045 2) Useless operators: If an ASL operator does not specify an optional
7047 operand and it also does not use the function return value from the
7048 operator, a warning is issued since the operator effectively does
7051 3) Unreferenced objects: If a namespace object is created, but never
7052 referenced, a warning is issued. This is a warning level 2 since there
7054 cases where this is ok, such as when a secondary table is loaded that
7056 the unreferenced objects. Even so, care is taken to only flag objects
7058 don't look like they will ever be used. For example, the reserved methods
7059 (starting with an underscore) are usually not referenced because it is
7060 expected that the OS will invoke them.
7062 ----------------------------------------
7063 31 March 2006. Summary of changes for version 20060331:
7065 1) ACPI CA Core Subsystem:
7067 Implemented header file support for the following additional ACPI tables:
7068 ASF!, BOOT, CPEP, DBGP, MCFG, SPCR, SPMI, TCPA, and WDRT. With this
7070 all current and known ACPI tables are now defined in the ACPICA headers
7072 are available for use by device drivers and other software.
7074 Implemented support to allow tables that contain ACPI names with invalid
7075 characters to be loaded. Previously, this would cause the table load to
7076 fail, but since there are several known cases of such tables on existing
7077 machines, this change was made to enable ACPI support for them. Also,
7079 matches the behavior of the Microsoft ACPI implementation.
7081 Fixed a couple regressions introduced during the memory optimization in
7083 20060317 release. The namespace node definition required additional
7084 reorganization and an internal datatype that had been changed to 8-bit
7086 restored to 32-bit. (Valery Podrezov)
7088 Fixed a problem where a null pointer passed to AcpiUtDeleteGenericState
7089 could be passed through to AcpiOsReleaseObject which is unexpected. Such
7090 null pointers are now trapped and ignored, matching the behavior of the
7091 previous implementation before the deployment of AcpiOsReleaseObject.
7092 (Valery Podrezov, Fiodor Suietov)
7094 Fixed a memory mapping leak during the deletion of a SystemMemory
7096 region where a cached memory mapping was not deleted. This became a
7097 noticeable problem for operation regions that are defined within
7099 used control methods. (Dana Meyers)
7101 Reorganized the ACPI table header files into two main files: one for the
7102 ACPI tables consumed by the ACPICA core, and another for the
7104 ACPI tables that are consumed by the drivers and other software. The
7106 FADT definitions were merged into one common section and three different
7107 tables (ACPI 1.0, 1.0+, and 2.0)
7109 Example Code and Data Size: These are the sizes for the OS-independent
7110 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The
7111 debug version of the code includes the debug output trace mechanism and
7113 a much larger code and data size.
7116 Non-Debug Version: 80.9K Code, 17.7K Data, 98.6K Total
7117 Debug Version: 158.7K Code, 64.8K Data, 223.5K Total
7119 Non-Debug Version: 81.1K Code, 17.7K Data, 98.8K Total
7120 Debug Version: 158.9K Code, 64.9K Data, 223.8K Total
7123 2) iASL Compiler/Disassembler and Tools:
7125 Disassembler: Implemented support to decode and format all non-AML ACPI
7126 tables (tables other than DSDTs and SSDTs.) This includes the new tables
7127 added to the ACPICA headers, therefore all current and known ACPI tables
7131 Disassembler: The change to allow ACPI names with invalid characters also
7132 enables the disassembly of such tables. Invalid characters within names
7134 changed to '*' to make the name printable; the iASL compiler will still
7135 generate an error for such names, however, since this is an invalid ACPI
7138 Implemented an option for AcpiXtract (-a) to extract all tables found in
7140 input file. The default invocation extracts only the DSDTs and SSDTs.
7142 Fixed a couple of gcc generation issues for iASL and AcpiExec and added a
7143 makefile for the AcpiXtract utility.
7145 ----------------------------------------
7146 17 March 2006. Summary of changes for version 20060317:
7148 1) ACPI CA Core Subsystem:
7150 Implemented the use of a cache object for all internal namespace nodes.
7151 Since there are about 1000 static nodes in a typical system, this will
7152 decrease memory use for cache implementations that minimize per-
7154 overhead (such as a slab allocator.)
7156 Removed the reference count mechanism for internal namespace nodes, since
7158 was deemed unnecessary. This reduces the size of each namespace node by
7159 about 5%-10% on all platforms. Nodes are now 20 bytes for the 32-bit
7161 and 32 bytes for the 64-bit case.
7163 Optimized several internal data structures to reduce object size on 64-
7165 platforms by packing data within the 64-bit alignment. This includes the
7166 frequently used ACPI_OPERAND_OBJECT, of which there can be ~1000 static
7167 instances corresponding to the namespace objects.
7169 Added two new strings for the predefined _OSI method: "Windows 2001.1
7173 Split the allocation tracking mechanism out to a separate file, from
7174 utalloc.c to uttrack.c. This mechanism appears to be only useful for
7175 application-level code. Kernels may wish to not include uttrack.c in
7178 Removed all remnants of the obsolete ACPI_REPORT_* macros and the
7180 code. (These macros have been replaced by the ACPI_ERROR and ACPI_WARNING
7183 Code and Data Size: These are the sizes for the acpica.lib produced by
7185 Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any
7187 driver or OSPM code. The debug version of the code includes the debug
7189 trace mechanism and has a much larger code and data size. Note that these
7190 values will vary depending on the efficiency of the compiler and the
7191 compiler options used during generation.
7194 Non-Debug Version: 81.1K Code, 17.8K Data, 98.9K Total
7195 Debug Version: 161.6K Code, 65.7K Data, 227.3K Total
7197 Non-Debug Version: 80.9K Code, 17.7K Data, 98.6K Total
7198 Debug Version: 158.7K Code, 64.8K Data, 223.5K Total
7201 2) iASL Compiler/Disassembler and Tools:
7203 Implemented an ANSI C version of the acpixtract utility. This version
7205 automatically extract the DSDT and all SSDTs from the input acpidump text
7206 file and dump the binary output to separate files. It can also display a
7207 summary of the input file including the headers for each table found and
7208 will extract any single ACPI table, with any signature. (See
7209 source/tools/acpixtract)
7211 ----------------------------------------
7212 10 March 2006. Summary of changes for version 20060310:
7214 1) ACPI CA Core Subsystem:
7216 Tagged all external interfaces to the subsystem with the new
7217 ACPI_EXPORT_SYMBOL macro. This macro can be defined as necessary to
7219 kernel integration. For Linux, the macro resolves to the EXPORT_SYMBOL
7220 macro. The default definition is NULL.
7222 Added the ACPI_THREAD_ID type for the return value from
7224 This allows the host to define this as necessary to simplify kernel
7225 integration. The default definition is ACPI_NATIVE_UINT.
7227 Fixed two interpreter problems related to error processing, the deletion
7229 objects, and placing invalid pointers onto the internal operator result
7230 stack. BZ 6028, 6151 (Valery Podrezov)
7232 Increased the reference count threshold where a warning is emitted for
7234 reference counts in order to eliminate unnecessary warnings on systems
7236 large namespaces (especially 64-bit.) Increased the value from 0x400 to
7239 Due to universal disagreement as to the meaning of the 'c' in the
7241 function, the ACPI_MEM_CALLOCATE macro has been renamed to
7242 ACPI_ALLOCATE_ZEROED so that the purpose of the interface is 'clear'.
7243 ACPI_MEM_ALLOCATE and ACPI_MEM_FREE are renamed to ACPI_ALLOCATE and
7246 Code and Data Size: These are the sizes for the acpica.lib produced by
7248 Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any
7250 driver or OSPM code. The debug version of the code includes the debug
7252 trace mechanism and has a much larger code and data size. Note that these
7253 values will vary depending on the efficiency of the compiler and the
7254 compiler options used during generation.
7257 Non-Debug Version: 81.0K Code, 17.8K Data, 98.8K Total
7258 Debug Version: 161.4K Code, 65.7K Data, 227.1K Total
7260 Non-Debug Version: 81.1K Code, 17.8K Data, 98.9K Total
7261 Debug Version: 161.6K Code, 65.7K Data, 227.3K Total
7264 2) iASL Compiler/Disassembler:
7266 Disassembler: implemented support for symbolic resource descriptor
7267 references. If a CreateXxxxField operator references a fixed offset
7270 resource descriptor, a name is assigned to the descriptor and the offset
7272 translated to the appropriate resource tag and pathname. The addition of
7273 this support brings the disassembled code very close to the original ASL
7274 source code and helps eliminate run-time errors when the disassembled
7276 is modified (and recompiled) in such a way as to invalidate the original
7279 Implemented support for a Descriptor Name as the last parameter to the
7281 Register() macro. This parameter was inadvertently left out of the ACPI
7282 specification, and will be added for ACPI 3.0b.
7284 Fixed a problem where the use of the "_OSI" string (versus the full path
7285 "\_OSI") caused an internal compiler error. ("No back ptr to op")
7287 Fixed a problem with the error message that occurs when an invalid string
7289 used for a _HID object (such as one with an embedded asterisk:
7291 The correct message is now displayed.
7293 ----------------------------------------
7294 17 February 2006. Summary of changes for version 20060217:
7296 1) ACPI CA Core Subsystem:
7298 Implemented a change to the IndexField support to match the behavior of
7300 Microsoft AML interpreter. The value written to the Index register is now
7302 byte offset, no longer an index based upon the width of the Data
7304 This should fix IndexField problems seen on some machines where the Data
7305 register is not exactly one byte wide. The ACPI specification will be
7306 clarified on this point.
7308 Fixed a problem where several resource descriptor types could overrun the
7309 internal descriptor buffer due to size miscalculation: VendorShort,
7310 VendorLong, and Interrupt. This was noticed on IA64 machines, but could
7311 affect all platforms.
7313 Fixed a problem where individual resource descriptors were misaligned
7315 the internal buffer, causing alignment faults on IA64 platforms.
7317 Code and Data Size: These are the sizes for the acpica.lib produced by
7319 Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any
7321 driver or OSPM code. The debug version of the code includes the debug
7323 trace mechanism and has a much larger code and data size. Note that these
7324 values will vary depending on the efficiency of the compiler and the
7325 compiler options used during generation.
7328 Non-Debug Version: 81.1K Code, 17.8K Data, 98.9K Total
7329 Debug Version: 161.3K Code, 65.6K Data, 226.9K Total
7331 Non-Debug Version: 81.0K Code, 17.8K Data, 98.8K Total
7332 Debug Version: 161.4K Code, 65.7K Data, 227.1K Total
7335 2) iASL Compiler/Disassembler:
7337 Implemented support for new reserved names: _WDG and _WED are Microsoft
7338 extensions for Windows Instrumentation Management, _TDL is a new ACPI-
7339 defined method (Throttling Depth Limit.)
7341 Fixed a problem where a zero-length VendorShort or VendorLong resource
7342 descriptor was incorrectly emitted as a descriptor of length one.
7344 ----------------------------------------
7345 10 February 2006. Summary of changes for version 20060210:
7347 1) ACPI CA Core Subsystem:
7349 Removed a couple of extraneous ACPI_ERROR messages that appeared during
7350 normal execution. These became apparent after the conversion from
7353 Fixed a problem where the CreateField operator could hang if the BitIndex
7355 NumBits parameter referred to a named object. (Valery Podrezov, BZ 5359)
7357 Fixed a problem where a DeRefOf operation on a buffer object incorrectly
7358 failed with an exception. This also fixes a couple of related RefOf and
7359 DeRefOf issues. (Valery Podrezov, BZ 5360/5392/5387)
7361 Fixed a problem where the AE_BUFFER_LIMIT exception was returned instead
7363 AE_STRING_LIMIT on an out-of-bounds Index() operation. (Valery Podrezov,
7367 Implemented a memory cleanup at the end of the execution of each
7369 of an AML While() loop, preventing the accumulation of outstanding
7371 (Valery Podrezov, BZ 5427)
7373 Eliminated a chunk of duplicate code in the object resolution code.
7377 Fixed several warnings during the 64-bit code generation.
7379 The AcpiSrc source code conversion tool now inserts one line of
7381 after an if() statement that is followed immediately by a comment,
7383 readability of the Linux code.
7385 Code and Data Size: The current and previous library sizes for the core
7386 subsystem are shown below. These are the code and data sizes for the
7387 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler.
7389 values do not include any ACPI driver or OSPM code. The debug version of
7391 code includes the debug output trace mechanism and has a much larger code
7392 and data size. Note that these values will vary depending on the
7394 of the compiler and the compiler options used during generation.
7397 Non-Debug Version: 81.0K Code, 17.9K Data, 98.9K Total
7398 Debug Version: 161.3K Code, 65.7K Data, 227.0K Total
7400 Non-Debug Version: 81.1K Code, 17.8K Data, 98.9K Total
7401 Debug Version: 161.3K Code, 65.6K Data, 226.9K Total
7404 2) iASL Compiler/Disassembler:
7406 Fixed a problem with the disassembly of a BankField operator with a
7408 expression for the BankValue parameter.
7410 ----------------------------------------
7411 27 January 2006. Summary of changes for version 20060127:
7413 1) ACPI CA Core Subsystem:
7415 Implemented support in the Resource Manager to allow unresolved
7417 references within resource package objects for the _PRT method. This
7419 is in addition to the previously implemented unresolved reference support
7420 within the AML parser. If the interpreter slack mode is enabled, these
7421 unresolved references will be passed through to the caller as a NULL
7425 Implemented and deployed new macros and functions for error and warning
7426 messages across the subsystem. These macros are simpler and generate less
7427 code than their predecessors. The new macros ACPI_ERROR, ACPI_EXCEPTION,
7428 ACPI_WARNING, and ACPI_INFO replace the ACPI_REPORT_* macros. The older
7429 macros remain defined to allow ACPI drivers time to migrate to the new
7432 Implemented the ACPI_CPU_FLAGS type to simplify host OS integration of
7434 Acquire/Release Lock OSL interfaces.
7436 Fixed a problem where Alias ASL operators are sometimes not correctly
7437 resolved, in both the interpreter and the iASL compiler.
7439 Fixed several problems with the implementation of the
7440 ConcatenateResTemplate
7441 ASL operator. As per the ACPI specification, zero length buffers are now
7442 treated as a single EndTag. One-length buffers always cause a fatal
7443 exception. Non-zero length buffers that do not end with a full 2-byte
7445 cause a fatal exception.
7447 Fixed a possible structure overwrite in the AcpiGetObjectInfo external
7448 interface. (With assistance from Thomas Renninger)
7450 Code and Data Size: The current and previous library sizes for the core
7451 subsystem are shown below. These are the code and data sizes for the
7452 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler.
7454 values do not include any ACPI driver or OSPM code. The debug version of
7456 code includes the debug output trace mechanism and has a much larger code
7457 and data size. Note that these values will vary depending on the
7459 of the compiler and the compiler options used during generation.
7462 Non-Debug Version: 83.1K Code, 18.4K Data, 101.5K Total
7463 Debug Version: 163.2K Code, 66.2K Data, 229.4K Total
7465 Non-Debug Version: 81.0K Code, 17.9K Data, 98.9K Total
7466 Debug Version: 161.3K Code, 65.7K Data, 227.0K Total
7469 2) iASL Compiler/Disassembler:
7471 Fixed an internal error that was generated for any forward references to
7475 ----------------------------------------
7476 13 January 2006. Summary of changes for version 20060113:
7478 1) ACPI CA Core Subsystem:
7480 Added 2006 copyright to all module headers and signons. This affects
7481 virtually every file in the ACPICA core subsystem, iASL compiler, and the
7484 Enhanced the ACPICA error reporting in order to simplify user migration
7486 the non-debug version of ACPICA. Replaced all instances of the
7487 ACPI_DEBUG_PRINT macro invoked at the ACPI_DB_ERROR and ACPI_DB_WARN
7489 levels with the ACPI_REPORT_ERROR and ACPI_REPORT_WARNING macros,
7490 respectively. This preserves all error and warning messages in the non-
7492 version of the ACPICA code (this has been referred to as the "debug lite"
7493 option.) Over 200 cases were converted to create a total of over 380
7494 error/warning messages across the ACPICA code. This increases the code
7496 data size of the default non-debug version of the code somewhat (about
7498 but all error/warning reporting may be disabled if desired (and code
7499 eliminated) by specifying the ACPI_NO_ERROR_MESSAGES compile-time
7500 configuration option. The size of the debug version of ACPICA remains
7504 Fixed a memory leak within the AML Debugger "Set" command. One object was
7505 not properly deleted for every successful invocation of the command.
7507 Code and Data Size: The current and previous library sizes for the core
7508 subsystem are shown below. These are the code and data sizes for the
7509 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler.
7511 values do not include any ACPI driver or OSPM code. The debug version of
7513 code includes the debug output trace mechanism and has a much larger code
7514 and data size. Note that these values will vary depending on the
7516 of the compiler and the compiler options used during generation.
7519 Non-Debug Version: 76.6K Code, 12.3K Data, 88.9K Total
7520 Debug Version: 163.7K Code, 67.5K Data, 231.2K Total
7522 Non-Debug Version: 83.1K Code, 18.4K Data, 101.5K Total
7523 Debug Version: 163.2K Code, 66.2K Data, 229.4K Total
7526 2) iASL Compiler/Disassembler:
7528 The compiler now officially supports the ACPI 3.0a specification that was
7529 released on December 30, 2005. (Specification is available at
7532 ----------------------------------------
7533 16 December 2005. Summary of changes for version 20051216:
7535 1) ACPI CA Core Subsystem:
7537 Implemented optional support to allow unresolved names within ASL Package
7538 objects. A null object is inserted in the package when a named reference
7539 cannot be located in the current namespace. Enabled via the interpreter
7540 slack flag, this should eliminate AE_NOT_FOUND exceptions seen on
7542 that contain such code.
7544 Implemented an optimization to the initialization sequence that can
7546 boot time. During ACPI device initialization, the _STA method is now run
7548 and only if the _INI method exists. The _STA method is used to determine
7550 the device is present; An _INI can only be run if _STA returns present,
7552 it is a waste of time to run the _STA method if the _INI does not exist.
7553 (Prototype and assistance from Dong Wei)
7555 Implemented use of the C99 uintptr_t for the pointer casting macros if it
7557 available in the current compiler. Otherwise, the default (void *) cast
7561 Fixed some possible memory leaks found within the execution path of the
7562 Break, Continue, If, and CreateField operators. (Valery Podrezov)
7564 Fixed a problem introduced in the 20051202 release where an exception is
7565 generated during method execution if a control method attempts to declare
7568 Moved resource descriptor string constants that are used by both the AML
7569 disassembler and AML debugger to the common utilities directory so that
7570 these components are independent.
7572 Implemented support in the AcpiExec utility (-e switch) to globally
7574 exceptions during control method execution (method is not aborted.)
7576 Added the rsinfo.c source file to the AcpiExec makefile for Linux/Unix
7579 Code and Data Size: The current and previous library sizes for the core
7580 subsystem are shown below. These are the code and data sizes for the
7581 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler.
7583 values do not include any ACPI driver or OSPM code. The debug version of
7585 code includes the debug output trace mechanism and has a much larger code
7586 and data size. Note that these values will vary depending on the
7588 of the compiler and the compiler options used during generation.
7591 Non-Debug Version: 76.3K Code, 12.3K Data, 88.6K Total
7592 Debug Version: 163.2K Code, 67.4K Data, 230.6K Total
7594 Non-Debug Version: 76.6K Code, 12.3K Data, 88.9K Total
7595 Debug Version: 163.7K Code, 67.5K Data, 231.2K Total
7598 2) iASL Compiler/Disassembler:
7600 Fixed a problem where a CPU stack overflow fault could occur if a
7602 method call was made from within a Return statement.
7604 ----------------------------------------
7605 02 December 2005. Summary of changes for version 20051202:
7607 1) ACPI CA Core Subsystem:
7609 Modified the parsing of control methods to no longer create namespace
7610 objects during the first pass of the parse. Objects are now created only
7611 during the execute phase, at the moment the namespace creation operator
7613 encountered in the AML (Name, OperationRegion, CreateByteField, etc.)
7615 should eliminate ALREADY_EXISTS exceptions seen on some machines where
7616 reentrant control methods are protected by an AML mutex. The mutex will
7618 correctly block multiple threads from attempting to create the same
7622 Increased the number of available Owner Ids for namespace object tracking
7623 from 32 to 255. This should eliminate the OWNER_ID_LIMIT exceptions seen
7625 some machines with a large number of ACPI tables (either static or
7628 Fixed a problem with the AcpiExec utility where a fault could occur when
7630 -b switch (batch mode) is used.
7632 Enhanced the namespace dump routine to output the owner ID for each
7635 Code and Data Size: The current and previous library sizes for the core
7636 subsystem are shown below. These are the code and data sizes for the
7637 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler.
7639 values do not include any ACPI driver or OSPM code. The debug version of
7641 code includes the debug output trace mechanism and has a much larger code
7642 and data size. Note that these values will vary depending on the
7644 of the compiler and the compiler options used during generation.
7647 Non-Debug Version: 76.3K Code, 12.3K Data, 88.6K Total
7648 Debug Version: 163.0K Code, 67.4K Data, 230.4K Total
7650 Non-Debug Version: 76.3K Code, 12.3K Data, 88.6K Total
7651 Debug Version: 163.2K Code, 67.4K Data, 230.6K Total
7654 2) iASL Compiler/Disassembler:
7656 Fixed a parse error during compilation of certain Switch/Case constructs.
7658 simplify the parse, the grammar now allows for multiple Default
7660 and this error is now detected and flagged during the analysis phase.
7662 Disassembler: The disassembly now includes the contents of the original
7663 table header within a comment at the start of the file. This includes the
7664 name and version of the original ASL compiler.
7666 ----------------------------------------
7667 17 November 2005. Summary of changes for version 20051117:
7669 1) ACPI CA Core Subsystem:
7671 Fixed a problem in the AML parser where the method thread count could be
7672 decremented below zero if any errors occurred during the method parse
7674 This should eliminate AE_AML_METHOD_LIMIT exceptions seen on some
7676 This also fixed a related regression with the mechanism that detects and
7677 corrects methods that cannot properly handle reentrancy (related to the
7678 deployment of the new OwnerId mechanism.)
7680 Eliminated the pre-parsing of control methods (to detect errors) during
7681 table load. Related to the problem above, this was causing unwind issues
7683 any errors occurred during the parse, and it seemed to be overkill. A
7685 load should not be aborted if there are problems with any single control
7686 method, thus rendering this feature rather pointless.
7688 Fixed a problem with the new table-driven resource manager where an
7690 buffer overflow could occur for small resource templates.
7692 Implemented a new external interface, AcpiGetVendorResource. This
7694 will find and return a vendor-defined resource descriptor within a _CRS
7696 _PRS method via an ACPI 3.0 UUID match. With assistance from Bjorn
7699 Removed the length limit (200) on string objects as per the upcoming ACPI
7700 3.0A specification. This affects the following areas of the interpreter:
7702 any implicit conversion of a Buffer to a String, 2) a String object
7704 of the ASL Concatentate operator, 3) the String object result of the ASL
7707 Fixed a problem in the Windows OS interface layer (OSL) where a
7709 on a semaphore object would incorrectly timeout. This allows the
7710 multithreading features of the AcpiExec utility to work properly under
7713 Updated the Linux makefiles for the iASL compiler and AcpiExec to include
7714 the recently added file named "utresrc.c".
7716 Code and Data Size: The current and previous library sizes for the core
7717 subsystem are shown below. These are the code and data sizes for the
7718 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler.
7720 values do not include any ACPI driver or OSPM code. The debug version of
7722 code includes the debug output trace mechanism and has a much larger code
7723 and data size. Note that these values will vary depending on the
7725 of the compiler and the compiler options used during generation.
7728 Non-Debug Version: 76.2K Code, 12.3K Data, 88.5K Total
7729 Debug Version: 163.0K Code, 67.4K Data, 230.4K Total
7731 Non-Debug Version: 76.3K Code, 12.3K Data, 88.6K Total
7732 Debug Version: 163.0K Code, 67.4K Data, 230.4K Total
7735 2) iASL Compiler/Disassembler:
7737 Removed the limit (200) on string objects as per the upcoming ACPI 3.0A
7738 specification. For the iASL compiler, this means that string literals
7740 the source ASL can be of any length.
7742 Enhanced the listing output to dump the AML code for resource descriptors
7743 immediately after the ASL code for each descriptor, instead of in a block
7745 the end of the entire resource template.
7747 Enhanced the compiler debug output to dump the entire original parse tree
7748 constructed during the parse phase, before any transforms are applied to
7750 tree. The transformed tree is dumped also.
7752 ----------------------------------------
7753 02 November 2005. Summary of changes for version 20051102:
7755 1) ACPI CA Core Subsystem:
7757 Modified the subsystem initialization sequence to improve GPE support.
7759 GPE initialization has been split into two parts in order to defer
7761 of the _PRW methods (Power Resources for Wake) until after the hardware
7763 fully initialized and the SCI handler is installed. This allows the _PRW
7764 methods to access fields protected by the Global Lock. This will fix
7766 where a NO_GLOBAL_LOCK exception has been seen during initialization.
7768 Converted the ACPI internal object disassemble and display code within
7770 AML debugger to fully table-driven operation, reducing code size and
7771 increasing maintainability.
7773 Fixed a regression with the ConcatenateResTemplate() ASL operator
7775 in the 20051021 release.
7777 Implemented support for "local" internal ACPI object types within the
7778 debugger "Object" command and the AcpiWalkNamespace external interfaces.
7779 These local types include RegionFields, BankFields, IndexFields, Alias,
7783 Moved common AML resource handling code into a new file, "utresrc.c".
7785 code is shared by both the Resource Manager and the AML Debugger.
7787 Code and Data Size: The current and previous library sizes for the core
7788 subsystem are shown below. These are the code and data sizes for the
7789 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler.
7791 values do not include any ACPI driver or OSPM code. The debug version of
7793 code includes the debug output trace mechanism and has a much larger code
7794 and data size. Note that these values will vary depending on the
7796 of the compiler and the compiler options used during generation.
7799 Non-Debug Version: 76.1K Code, 12.2K Data, 88.3K Total
7800 Debug Version: 163.5K Code, 67.0K Data, 230.5K Total
7802 Non-Debug Version: 76.2K Code, 12.3K Data, 88.5K Total
7803 Debug Version: 163.0K Code, 67.4K Data, 230.4K Total
7806 2) iASL Compiler/Disassembler:
7808 Fixed a problem with very large initializer lists (more than 4000
7810 for both Buffer and Package objects where the parse stack could overflow.
7812 Enhanced the pre-compile source code scan for non-ASCII characters to
7814 characters within comment fields. The scan is now always performed and is
7816 longer optional, detecting invalid characters within a source file
7817 immediately rather than during the parse phase or later.
7819 Enhanced the ASL grammar definition to force early reductions on all
7821 style grammar elements so that the overall parse stack usage is greatly
7822 reduced. This should improve performance and reduce the possibility of
7826 Eliminated all reduce/reduce conflicts in the iASL parser generation.
7828 with the addition of a %expected statement, the compiler generates from
7829 source with no warnings.
7831 Fixed a possible segment fault in the disassembler if the input filename
7832 does not contain a "dot" extension (Thomas Renninger).
7834 ----------------------------------------
7835 21 October 2005. Summary of changes for version 20051021:
7837 1) ACPI CA Core Subsystem:
7839 Implemented support for the EM64T and other x86-64 processors. This
7840 essentially entails recognizing that these processors support non-aligned
7841 memory transfers. Previously, all 64-bit processors were assumed to lack
7842 hardware support for non-aligned transfers.
7844 Completed conversion of the Resource Manager to nearly full table-driven
7845 operation. Specifically, the resource conversion code (convert AML to
7846 internal format and the reverse) and the debug code to dump internal
7847 resource descriptors are fully table-driven, reducing code and data size
7849 improving maintainability.
7851 The OSL interfaces for Acquire and Release Lock now use a 64-bit flag
7853 on 64-bit processors instead of a fixed 32-bit word. (With assistance
7855 Alexey Starikovskiy)
7857 Implemented support within the resource conversion code for the Type-
7858 Specific byte within the various ACPI 3.0 *WordSpace macros.
7860 Fixed some issues within the resource conversion code for the type-
7862 flags for both Memory and I/O address resource descriptors. For Memory,
7863 implemented support for the MTP and TTP flags. For I/O, split the TRS and
7864 TTP flags into two separate fields.
7866 Code and Data Size: The current and previous library sizes for the core
7867 subsystem are shown below. These are the code and data sizes for the
7868 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler.
7870 values do not include any ACPI driver or OSPM code. The debug version of
7872 code includes the debug output trace mechanism and has a much larger code
7873 and data size. Note that these values will vary depending on the
7875 of the compiler and the compiler options used during generation.
7878 Non-Debug Version: 77.1K Code, 12.1K Data, 89.2K Total
7879 Debug Version: 168.0K Code, 68.3K Data, 236.3K Total
7881 Non-Debug Version: 76.1K Code, 12.2K Data, 88.3K Total
7882 Debug Version: 163.5K Code, 67.0K Data, 230.5K Total
7886 2) iASL Compiler/Disassembler:
7888 Relaxed a compiler restriction that disallowed a ResourceIndex byte if
7890 corresponding ResourceSource string was not also present in a resource
7891 descriptor declaration. This restriction caused problems with existing
7892 AML/ASL code that includes the Index byte without the string. When such
7894 was disassembled, it could not be compiled without modification. Further,
7895 the modified code created a resource template with a different size than
7897 original, breaking code that used fixed offsets into the resource
7901 Removed a recent feature of the disassembler to ignore a lone
7903 byte. This byte is now emitted if present so that the exact AML can be
7904 reproduced when the disassembled code is recompiled.
7906 Improved comments and text alignment for the resource descriptor code
7907 emitted by the disassembler.
7909 Implemented disassembler support for the ACPI 3.0 AccessSize field within
7911 Register() resource descriptor.
7913 ----------------------------------------
7914 30 September 2005. Summary of changes for version 20050930:
7916 1) ACPI CA Core Subsystem:
7918 Completed a major overhaul of the Resource Manager code - specifically,
7919 optimizations in the area of the AML/internal resource conversion code.
7921 code has been optimized to simplify and eliminate duplicated code, CPU
7923 use has been decreased by optimizing function parameters and local
7924 variables, and naming conventions across the manager have been
7926 for clarity and ease of maintenance (this includes function, parameter,
7927 variable, and struct/typedef names.) The update may force changes in some
7928 driver code, depending on how resources are handled by the host OS.
7930 All Resource Manager dispatch and information tables have been moved to a
7931 single location for clarity and ease of maintenance. One new file was
7932 created, named "rsinfo.c".
7934 The ACPI return macros (return_ACPI_STATUS, etc.) have been modified to
7935 guarantee that the argument is not evaluated twice, making them less
7937 to macro side-effects. However, since there exists the possibility of
7938 additional stack use if a particular compiler cannot optimize them (such
7940 in the debug generation case), the original macros are optionally
7942 Note that some invocations of the return_VALUE macro may now cause size
7943 mismatch warnings; the return_UINT8 and return_UINT32 macros are provided
7945 eliminate these. (From Randy Dunlap)
7947 Implemented a new mechanism to enable debug tracing for individual
7949 methods. A new external interface, AcpiDebugTrace, is provided to enable
7950 this mechanism. The intent is to allow the host OS to easily enable and
7951 disable tracing for problematic control methods. This interface can be
7952 easily exposed to a user or debugger interface if desired. See the file
7953 psxface.c for details.
7955 AcpiUtCallocate will now return a valid pointer if a length of zero is
7956 specified - a length of one is used and a warning is issued. This matches
7957 the behavior of AcpiUtAllocate.
7959 Code and Data Size: The current and previous library sizes for the core
7960 subsystem are shown below. These are the code and data sizes for the
7961 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler.
7963 values do not include any ACPI driver or OSPM code. The debug version of
7965 code includes the debug output trace mechanism and has a much larger code
7966 and data size. Note that these values will vary depending on the
7968 of the compiler and the compiler options used during generation.
7971 Non-Debug Version: 77.5K Code, 12.0K Data, 89.5K Total
7972 Debug Version: 168.1K Code, 68.4K Data, 236.5K Total
7974 Non-Debug Version: 77.1K Code, 12.1K Data, 89.2K Total
7975 Debug Version: 168.0K Code, 68.3K Data, 236.3K Total
7978 2) iASL Compiler/Disassembler:
7980 A remark is issued if the effective compile-time length of a package or
7981 buffer is zero. Previously, this was a warning.
7983 ----------------------------------------
7984 16 September 2005. Summary of changes for version 20050916:
7986 1) ACPI CA Core Subsystem:
7988 Fixed a problem within the Resource Manager where support for the Generic
7989 Register descriptor was not fully implemented. This descriptor is now
7991 recognized, parsed, disassembled, and displayed.
7993 Completely restructured the Resource Manager code to utilize table-driven
7994 dispatch and lookup, eliminating many of the large switch() statements.
7996 reduces overall subsystem code size and code complexity. Affects the
7997 resource parsing and construction, disassembly, and debug dump output.
7999 Cleaned up and restructured the debug dump output for all resource
8000 descriptors. Improved readability of the output and reduced code size.
8002 Fixed a problem where changes to internal data structures caused the
8003 optional ACPI_MUTEX_DEBUG code to fail compilation if specified.
8005 Code and Data Size: The current and previous library sizes for the core
8006 subsystem are shown below. These are the code and data sizes for the
8007 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler.
8009 values do not include any ACPI driver or OSPM code. The debug version of
8011 code includes the debug output trace mechanism and has a much larger code
8012 and data size. Note that these values will vary depending on the
8014 of the compiler and the compiler options used during generation.
8017 Non-Debug Version: 78.4K Code, 11.8K Data, 90.2K Total
8018 Debug Version: 169.6K Code, 69.9K Data, 239.5K Total
8020 Non-Debug Version: 77.5K Code, 12.0K Data, 89.5K Total
8021 Debug Version: 168.1K Code, 68.4K Data, 236.5K Total
8024 2) iASL Compiler/Disassembler:
8026 Updated the disassembler to automatically insert an EndDependentFn()
8028 into the ASL stream if this macro is missing in the original AML code,
8029 simplifying compilation of the resulting ASL module.
8031 Fixed a problem in the disassembler where a disassembled ResourceSource
8032 string (within a large resource descriptor) was not surrounded by quotes
8034 not followed by a comma, causing errors when the resulting ASL module was
8035 compiled. Also, escape sequences within a ResourceSource string are now
8036 handled correctly (especially "\\")
8038 ----------------------------------------
8039 02 September 2005. Summary of changes for version 20050902:
8041 1) ACPI CA Core Subsystem:
8043 Fixed a problem with the internal Owner ID allocation and deallocation
8044 mechanisms for control method execution and recursive method invocation.
8045 This should eliminate the OWNER_ID_LIMIT exceptions and "Invalid OwnerId"
8046 messages seen on some systems. Recursive method invocation depth is
8047 currently limited to 255. (Alexey Starikovskiy)
8049 Completely eliminated all vestiges of support for the "module-level
8050 executable code" until this support is fully implemented and debugged.
8052 should eliminate the NO_RETURN_VALUE exceptions seen during table load on
8053 some systems that invoke this support.
8055 Fixed a problem within the resource manager code where the transaction
8057 for a 64-bit address descriptor were handled incorrectly in the type-
8060 Consolidated duplicate code within the address descriptor resource
8062 code, reducing overall subsystem code size.
8064 Fixed a fault when using the AML debugger "disassemble" command to
8065 disassemble individual control methods.
8067 Removed references to the "release_current" directory within the Unix
8070 Code and Data Size: The current and previous core subsystem library sizes
8071 are shown below. These are the code and data sizes for the acpica.lib
8072 produced by the Microsoft Visual C++ 6.0 compiler. These values do not
8073 include any ACPI driver or OSPM code. The debug version of the code
8075 the debug output trace mechanism and has a much larger code and data
8077 Note that these values will vary depending on the efficiency of the
8079 and the compiler options used during generation.
8082 Non-Debug Version: 78.6K Code, 11.7K Data, 90.3K Total
8083 Debug Version: 170.0K Code, 69.9K Data, 239.9K Total
8085 Non-Debug Version: 78.4K Code, 11.8K Data, 90.2K Total
8086 Debug Version: 169.6K Code, 69.9K Data, 239.5K Total
8089 2) iASL Compiler/Disassembler:
8091 Implemented an error check for illegal duplicate values in the interrupt
8093 dma lists for the following ASL macros: Dma(), Irq(), IrqNoFlags(), and
8096 Implemented error checking for the Irq() and IrqNoFlags() macros to
8098 too many values in the interrupt list (16 max) and invalid values in the
8101 The maximum length string literal within an ASL file is now restricted to
8102 200 characters as per the ACPI specification.
8104 Fixed a fault when using the -ln option (generate namespace listing).
8106 Implemented an error check to determine if a DescriptorName within a
8107 resource descriptor has already been used within the current scope.
8109 ----------------------------------------
8110 15 August 2005. Summary of changes for version 20050815:
8112 1) ACPI CA Core Subsystem:
8114 Implemented a full bytewise compare to determine if a table load request
8116 attempting to load a duplicate table. The compare is performed if the
8118 signatures and table lengths match. This will allow different tables with
8119 the same OEM Table ID and revision to be loaded - probably against the
8121 specification, but discovered in the field nonetheless.
8123 Added the changes.txt logfile to each of the zipped release packages.
8125 Code and Data Size: Current and previous core subsystem library sizes are
8126 shown below. These are the code and data sizes for the acpica.lib
8128 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
8129 any ACPI driver or OSPM code. The debug version of the code includes the
8130 debug output trace mechanism and has a much larger code and data size.
8132 that these values will vary depending on the efficiency of the compiler
8134 the compiler options used during generation.
8137 Non-Debug Version: 78.6K Code, 11.7K Data, 90.3K Total
8138 Debug Version: 167.0K Code, 69.9K Data, 236.9K Total
8140 Non-Debug Version: 78.6K Code, 11.7K Data, 90.3K Total
8141 Debug Version: 170.0K Code, 69.9K Data, 239.9K Total
8144 2) iASL Compiler/Disassembler:
8146 Fixed a problem where incorrect AML code could be generated for Package
8147 objects if optimization is disabled (via the -oa switch).
8149 Fixed a problem with where incorrect AML code is generated for variable-
8150 length packages when the package length is not specified and the number
8152 initializer values is greater than 255.
8155 ----------------------------------------
8156 29 July 2005. Summary of changes for version 20050729:
8158 1) ACPI CA Core Subsystem:
8160 Implemented support to ignore an attempt to install/load a particular
8162 table more than once. Apparently there exists BIOS code that repeatedly
8163 attempts to load the same SSDT upon certain events. With assistance from
8164 Venkatesh Pallipadi.
8166 Restructured the main interface to the AML parser in order to correctly
8167 handle all exceptional conditions. This will prevent leakage of the
8169 resource and should eliminate the AE_OWNER_ID_LIMIT exceptions seen on
8171 machines. With assistance from Alexey Starikovskiy.
8173 Support for "module level code" has been disabled in this version due to
8175 number of issues that have appeared on various machines. The support can
8177 enabled by defining ACPI_ENABLE_MODULE_LEVEL_CODE during subsystem
8178 compilation. When the issues are fully resolved, the code will be enabled
8182 Modified the internal functions for debug print support to define the
8183 FunctionName parameter as a (const char *) for compatibility with
8185 built-in macros such as __FUNCTION__, etc.
8187 Linted the entire ACPICA source tree for both 32-bit and 64-bit.
8189 Implemented support to display an object count summary for the AML
8191 commands Object and Methods.
8193 Code and Data Size: Current and previous core subsystem library sizes are
8194 shown below. These are the code and data sizes for the acpica.lib
8196 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
8197 any ACPI driver or OSPM code. The debug version of the code includes the
8198 debug output trace mechanism and has a much larger code and data size.
8200 that these values will vary depending on the efficiency of the compiler
8202 the compiler options used during generation.
8205 Non-Debug Version: 78.6K Code, 11.6K Data, 90.2K Total
8206 Debug Version: 170.0K Code, 69.7K Data, 239.7K Total
8208 Non-Debug Version: 78.6K Code, 11.7K Data, 90.3K Total
8209 Debug Version: 167.0K Code, 69.9K Data, 236.9K Total
8212 2) iASL Compiler/Disassembler:
8214 Fixed a regression that appeared in the 20050708 version of the compiler
8215 where an error message was inadvertently emitted for invocations of the
8217 reserved control method.
8219 ----------------------------------------
8220 08 July 2005. Summary of changes for version 20050708:
8222 1) ACPI CA Core Subsystem:
8224 The use of the CPU stack in the debug version of the subsystem has been
8225 considerably reduced. Previously, a debug structure was declared in every
8226 function that used the debug macros. This structure has been removed in
8227 favor of declaring the individual elements as parameters to the debug
8228 functions. This reduces the cumulative stack use during nested execution
8230 ACPI function calls at the cost of a small increase in the code size of
8232 debug version of the subsystem. With assistance from Alexey Starikovskiy
8236 Added the ACPI_GET_FUNCTION_NAME macro to enable the compiler-dependent
8237 headers to define a macro that will return the current function name at
8238 runtime (such as __FUNCTION__ or _func_, etc.) The function name is used
8240 the debug trace output. If ACPI_GET_FUNCTION_NAME is not defined in the
8241 compiler-dependent header, the function name is saved on the CPU stack
8243 pointer per function.) This mechanism is used because apparently there
8244 exists no standard ANSI-C defined macro that that returns the function
8247 Redesigned and reimplemented the "Owner ID" mechanism used to track
8248 namespace objects created/deleted by ACPI tables and control method
8249 execution. A bitmap is now used to allocate and free the IDs, thus
8251 the wraparound problem present in the previous implementation. The size
8253 the namespace node descriptor was reduced by 2 bytes as a result (Alexey
8256 Removed the UINT32_BIT and UINT16_BIT types that were used for the
8258 flag definitions within the headers for the predefined ACPI tables. These
8259 have been replaced by UINT8_BIT in order to increase the code portability
8261 the subsystem. If the use of UINT8 remains a problem, we may be forced to
8262 eliminate bitfields entirely because of a lack of portability.
8264 Enhanced the performance of the AcpiUtUpdateObjectReference procedure.
8266 is a frequently used function and this improvement increases the
8268 of the entire subsystem (Alexey Starikovskiy).
8270 Fixed several possible memory leaks and the inverse - premature object
8271 deletion (Alexey Starikovskiy).
8273 Code and Data Size: Current and previous core subsystem library sizes are
8274 shown below. These are the code and data sizes for the acpica.lib
8276 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
8277 any ACPI driver or OSPM code. The debug version of the code includes the
8278 debug output trace mechanism and has a much larger code and data size.
8280 that these values will vary depending on the efficiency of the compiler
8282 the compiler options used during generation.
8285 Non-Debug Version: 78.6K Code, 11.5K Data, 90.1K Total
8286 Debug Version: 165.2K Code, 69.6K Data, 234.8K Total
8288 Non-Debug Version: 78.6K Code, 11.6K Data, 90.2K Total
8289 Debug Version: 170.0K Code, 69.7K Data, 239.7K Total
8291 ----------------------------------------
8292 24 June 2005. Summary of changes for version 20050624:
8294 1) ACPI CA Core Subsystem:
8296 Modified the new OSL cache interfaces to use ACPI_CACHE_T as the type for
8297 the host-defined cache object. This allows the OSL implementation to
8299 and type this object in any manner desired, simplifying the OSL
8300 implementation. For example, ACPI_CACHE_T is defined as kmem_cache_t for
8301 Linux, and should be defined in the OS-specific header file for other
8302 operating systems as required.
8304 Changed the interface to AcpiOsAcquireObject to directly return the
8305 requested object as the function return (instead of ACPI_STATUS.) This
8306 change was made for performance reasons, since this is the purpose of the
8307 interface in the first place. AcpiOsAcquireObject is now similar to the
8308 AcpiOsAllocate interface.
8310 Implemented a new AML debugger command named Businfo. This command
8312 information about all devices that have an associate _PRT object. The
8314 _HID, _UID, and _CID are displayed for these devices.
8316 Modified the initialization sequence in AcpiInitializeSubsystem to call
8318 OSL interface AcpiOslInitialize first, before any local initialization.
8320 change was required because the global initialization now calls OSL
8323 Enhanced the Dump command to display the entire contents of Package
8325 (including all sub-objects and their values.)
8327 Restructured the code base to split some files because of size and/or
8328 because the code logically belonged in a separate file. New files are
8330 below. All makefiles and project files included in the ACPI CA release
8333 utilities/utcache.c /* Local cache interfaces */
8334 utilities/utmutex.c /* Local mutex support */
8335 utilities/utstate.c /* State object support */
8336 interpreter/parser/psloop.c /* Main AML parse loop */
8338 Code and Data Size: Current and previous core subsystem library sizes are
8339 shown below. These are the code and data sizes for the acpica.lib
8341 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
8342 any ACPI driver or OSPM code. The debug version of the code includes the
8343 debug output trace mechanism and has a much larger code and data size.
8345 that these values will vary depending on the efficiency of the compiler
8347 the compiler options used during generation.
8350 Non-Debug Version: 78.3K Code, 11.6K Data, 89.9K Total
8351 Debug Version: 164.0K Code, 69.1K Data, 233.1K Total
8353 Non-Debug Version: 78.6K Code, 11.5K Data, 90.1K Total
8354 Debug Version: 165.2K Code, 69.6K Data, 234.8K Total
8357 2) iASL Compiler/Disassembler:
8359 Fixed a regression introduced in version 20050513 where the use of a
8361 object within a Case() statement caused a compile time exception. The
8362 original behavior has been restored (a Match() operator is emitted.)
8364 ----------------------------------------
8365 17 June 2005. Summary of changes for version 20050617:
8367 1) ACPI CA Core Subsystem:
8369 Moved the object cache operations into the OS interface layer (OSL) to
8371 the host OS to handle these operations if desired (for example, the Linux
8372 OSL will invoke the slab allocator). This support is optional; the
8374 time define ACPI_USE_LOCAL_CACHE may be used to utilize the original
8376 code in the ACPI CA core. The new OSL interfaces are shown below. See
8377 utalloc.c for an example implementation, and acpiosxf.h for the exact
8378 interface definitions. With assistance from Alexey Starikovskiy.
8385 Modified the interfaces to AcpiOsAcquireLock and AcpiOsReleaseLock to
8387 and restore a flags parameter. This fits better with many OS lock models.
8388 Note: the current execution state (interrupt handler or not) is no longer
8389 passed to these interfaces. If necessary, the OSL must determine this
8391 by itself, a simple and fast operation. With assistance from Alexey
8394 Fixed a problem in the ACPI table handling where a valid XSDT was assumed
8395 present if the revision of the RSDP was 2 or greater. According to the
8397 specification, the XSDT is optional in all cases, and the table manager
8398 therefore now checks for both an RSDP >=2 and a valid XSDT pointer.
8399 Otherwise, the RSDT pointer is used. Some ACPI 2.0 compliant BIOSs
8403 Fixed an interpreter problem with the Mid() operator in the case of an
8405 string where the resulting output string is of zero length. It now
8407 returns a valid, null terminated string object instead of a string object
8408 with a null pointer.
8410 Fixed a problem with the control method argument handling to allow a
8412 to an Arg object that already contains an object of type Device. The
8414 object is now correctly overwritten. Previously, an error was returned.
8417 Enhanced the debugger Find command to emit object values in addition to
8419 found object pathnames. The output format is the same as the dump
8423 Enhanced the debugger Set command. It now has the ability to set the
8425 of any Named integer object in the namespace (Previously, only method
8427 and args could be set.)
8429 Code and Data Size: Current and previous core subsystem library sizes are
8430 shown below. These are the code and data sizes for the acpica.lib
8432 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
8433 any ACPI driver or OSPM code. The debug version of the code includes the
8434 debug output trace mechanism and has a much larger code and data size.
8436 that these values will vary depending on the efficiency of the compiler
8438 the compiler options used during generation.
8441 Non-Debug Version: 78.1K Code, 11.6K Data, 89.7K Total
8442 Debug Version: 164.0K Code, 69.3K Data, 233.3K Total
8444 Non-Debug Version: 78.3K Code, 11.6K Data, 89.9K Total
8445 Debug Version: 164.0K Code, 69.1K Data, 233.1K Total
8448 2) iASL Compiler/Disassembler:
8450 Fixed a regression in the disassembler where if/else/while constructs
8452 output incorrectly. This problem was introduced in the previous release
8453 (20050526). This problem also affected the single-step disassembly in the
8456 Fixed a problem where compiling the reserved _OSI method would randomly
8458 rarely) produce compile errors.
8460 Enhanced the disassembler to emit compilable code in the face of
8462 AML resource descriptors. If the optional ResourceSourceIndex is present,
8463 but the ResourceSource is not, do not emit the ResourceSourceIndex in the
8464 disassembly. Otherwise, the resulting code cannot be compiled without
8467 ----------------------------------------
8468 26 May 2005. Summary of changes for version 20050526:
8470 1) ACPI CA Core Subsystem:
8472 Implemented support to execute Type 1 and Type 2 AML opcodes appearing at
8473 the module level (not within a control method.) These opcodes are
8475 exactly once at the time the table is loaded. This type of code was legal
8477 until the release of ACPI 2.0B (2002) and is now supported within ACPI CA
8479 order to provide backwards compatibility with earlier BIOS
8481 This eliminates the "Encountered executable code at module level" warning
8482 that was previously generated upon detection of such code.
8484 Fixed a problem in the interpreter where an AE_NOT_FOUND exception could
8485 inadvertently be generated during the lookup of namespace objects in the
8486 second pass parse of ACPI tables and control methods. It appears that
8488 problem could occur during the resolution of forward references to
8492 Added the ACPI_MUTEX_DEBUG #ifdef to the AcpiUtReleaseMutex function,
8493 corresponding to the same #ifdef in the AcpiUtAcquireMutex function. This
8494 allows the deadlock detection debug code to be compiled out in the normal
8495 case, improving mutex performance (and overall subsystem performance)
8498 Implemented a handful of miscellaneous fixes for possible memory leaks on
8499 error conditions and error handling control paths. These fixes were
8500 suggested by FreeBSD and the Coverity Prevent source code analysis tool.
8502 Added a check for a null RSDT pointer in AcpiGetFirmwareTable
8504 to prevent a fault in this error case.
8506 Code and Data Size: Current and previous core subsystem library sizes are
8507 shown below. These are the code and data sizes for the acpica.lib
8509 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
8510 any ACPI driver or OSPM code. The debug version of the code includes the
8511 debug output trace mechanism and has a much larger code and data size.
8513 that these values will vary depending on the efficiency of the compiler
8515 the compiler options used during generation.
8518 Non-Debug Version: 78.2K Code, 11.6K Data, 89.8K Total
8519 Debug Version: 163.7K Code, 69.3K Data, 233.0K Total
8521 Non-Debug Version: 78.1K Code, 11.6K Data, 89.7K Total
8522 Debug Version: 164.0K Code, 69.3K Data, 233.3K Total
8525 2) iASL Compiler/Disassembler:
8527 Implemented support to allow Type 1 and Type 2 ASL operators to appear at
8528 the module level (not within a control method.) These operators will be
8529 executed once at the time the table is loaded. This type of code was
8531 up until the release of ACPI 2.0B (2002) and is now supported by the iASL
8532 compiler in order to provide backwards compatibility with earlier BIOS
8536 The ACPI integer width (specified via the table revision ID or the -r
8537 override, 32 or 64 bits) is now used internally during compile-time
8539 folding to ensure that constants are truncated to 32 bits if necessary.
8540 Previously, the revision ID value was only emitted in the AML table
8543 An error message is now generated for the Mutex and Method operators if
8545 SyncLevel parameter is outside the legal range of 0 through 15.
8547 Fixed a problem with the Method operator ParameterTypes list handling
8549 3.0). Previously, more than 2 types or 2 arguments generated a syntax
8551 The actual underlying implementation of method argument typechecking is
8552 still under development, however.
8554 ----------------------------------------
8555 13 May 2005. Summary of changes for version 20050513:
8557 1) ACPI CA Core Subsystem:
8559 Implemented support for PCI Express root bridges -- added support for
8561 PNP0A08 in the root bridge search within AcpiEvPciConfigRegionSetup.
8563 The interpreter now automatically truncates incoming 64-bit constants to
8565 bits if currently executing out of a 32-bit ACPI table (Revision < 2).
8567 also affects the iASL compiler constant folding. (Note: as per below, the
8568 iASL compiler no longer allows 64-bit constants within 32-bit tables.)
8570 Fixed a problem where string and buffer objects with "static" pointers
8571 (pointers to initialization data within an ACPI table) were not handled
8572 consistently. The internal object copy operation now always copies the
8574 to a newly allocated buffer, regardless of whether the source object is
8577 Fixed a problem with the FromBCD operator where an implicit result
8578 conversion was improperly performed while storing the result to the
8580 operand. Since this is an "explicit conversion" operator, the implicit
8581 conversion should never be performed on the output.
8583 Fixed a problem with the CopyObject operator where a copy to an existing
8584 named object did not always completely overwrite the existing object
8586 at name. Specifically, a buffer-to-buffer copy did not delete the
8590 Replaced "InterruptLevel" with "InterruptNumber" in all GPE interfaces
8592 structs for consistency.
8594 Code and Data Size: Current and previous core subsystem library sizes are
8595 shown below. These are the code and data sizes for the acpica.lib
8597 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
8598 any ACPI driver or OSPM code. The debug version of the code includes the
8599 debug output trace mechanism and has a much larger code and data size.
8601 that these values will vary depending on the efficiency of the compiler
8603 the compiler options used during generation.
8606 Non-Debug Version: 78.2K Code, 11.6K Data, 89.8K Total
8607 Debug Version: 163.7K Code, 69.3K Data, 233.0K Total
8608 Current Release: (Same sizes)
8609 Non-Debug Version: 78.2K Code, 11.6K Data, 89.8K Total
8610 Debug Version: 163.7K Code, 69.3K Data, 233.0K Total
8613 2) iASL Compiler/Disassembler:
8615 The compiler now emits a warning if an attempt is made to generate a 64-
8617 integer constant from within a 32-bit ACPI table (Revision < 2). The
8619 is truncated to 32 bits.
8621 Fixed a problem with large package objects: if the static length of the
8622 package is greater than 255, the "variable length package" opcode is
8623 emitted. Previously, this caused an error. This requires an update to the
8624 ACPI spec, since it currently (incorrectly) states that packages larger
8626 255 elements are not allowed.
8628 The disassembler now correctly handles variable length packages and
8630 larger than 255 elements.
8632 ----------------------------------------
8633 08 April 2005. Summary of changes for version 20050408:
8635 1) ACPI CA Core Subsystem:
8637 Fixed three cases in the interpreter where an "index" argument to an ASL
8638 function was still (internally) 32 bits instead of the required 64 bits.
8639 This was the Index argument to the Index, Mid, and Match operators.
8641 The "strupr" function is now permanently local (AcpiUtStrupr), since this
8643 not a POSIX-defined function and not present in most kernel-level C
8644 libraries. All references to the C library strupr function have been
8648 Completed the deployment of static functions/prototypes. All prototypes
8650 the static attribute have been moved from the headers to the owning C
8653 Implemented an extract option (-e) for the AcpiBin utility (AML binary
8654 utility). This option allows the utility to extract individual ACPI
8656 from the output of AcpiDmp. It provides the same functionality of the
8657 acpixtract.pl perl script without the worry of setting the correct perl
8658 options. AcpiBin runs on Windows and has not yet been generated/validated
8660 the Linux/Unix environment (but should be soon).
8662 Updated and fixed the table dump option for AcpiBin (-d). This option
8663 converts a single ACPI table to a hex/ascii file, similar to the output
8667 Code and Data Size: Current and previous core subsystem library sizes are
8668 shown below. These are the code and data sizes for the acpica.lib
8670 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
8671 any ACPI driver or OSPM code. The debug version of the code includes the
8672 debug output trace mechanism and has a much larger code and data size.
8674 that these values will vary depending on the efficiency of the compiler
8676 the compiler options used during generation.
8679 Non-Debug Version: 78.0K Code, 11.6K Data, 89.6K Total
8680 Debug Version: 163.5K Code, 69.3K Data, 232.8K Total
8682 Non-Debug Version: 78.2K Code, 11.6K Data, 89.8K Total
8683 Debug Version: 163.7K Code, 69.3K Data, 233.0K Total
8686 2) iASL Compiler/Disassembler:
8688 Disassembler fix: Added a check to ensure that the table length found in
8690 ACPI table header within the input file is not longer than the actual
8692 file size. This indicates some kind of file or table corruption.
8694 ----------------------------------------
8695 29 March 2005. Summary of changes for version 20050329:
8697 1) ACPI CA Core Subsystem:
8699 An error is now generated if an attempt is made to create a Buffer Field
8701 length zero (A CreateField with a length operand of zero.)
8703 The interpreter now issues a warning whenever executable code at the
8705 level is detected during ACPI table load. This will give some idea of the
8706 prevalence of this type of code.
8708 Implemented support for references to named objects (other than control
8709 methods) within package objects.
8711 Enhanced package object output for the debug object. Package objects are
8713 completely dumped, showing all elements.
8715 Enhanced miscellaneous object output for the debug object. Any object can
8716 now be written to the debug object (for example, a device object can be
8717 written, and the type of the object will be displayed.)
8719 The "static" qualifier has been added to all local functions across both
8721 core subsystem and the iASL compiler.
8723 The number of "long" lines (> 80 chars) within the source has been
8724 significantly reduced, by about 1/3.
8726 Cleaned up all header files to ensure that all CA/iASL functions are
8727 prototyped (even static functions) and the formatting is consistent.
8729 Two new header files have been added, acopcode.h and acnames.h.
8731 Removed several obsolete functions that were no longer used.
8733 Code and Data Size: Current and previous core subsystem library sizes are
8734 shown below. These are the code and data sizes for the acpica.lib
8736 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
8737 any ACPI driver or OSPM code. The debug version of the code includes the
8738 debug output trace mechanism and has a much larger code and data size.
8740 that these values will vary depending on the efficiency of the compiler
8742 the compiler options used during generation.
8745 Non-Debug Version: 78.3K Code, 11.5K Data, 89.8K Total
8746 Debug Version: 165.4K Code, 69.7K Data, 236.1K Total
8748 Non-Debug Version: 78.0K Code, 11.6K Data, 89.6K Total
8749 Debug Version: 163.5K Code, 69.3K Data, 232.8K Total
8753 2) iASL Compiler/Disassembler:
8755 Fixed a problem with the resource descriptor generation/support. For the
8756 ResourceSourceIndex and the ResourceSource fields, both must be present,
8758 both must be not present - can't have one without the other.
8760 The compiler now returns non-zero from the main procedure if any errors
8762 occurred during the compilation.
8765 ----------------------------------------
8766 09 March 2005. Summary of changes for version 20050309:
8768 1) ACPI CA Core Subsystem:
8770 The string-to-buffer implicit conversion code has been modified again
8772 a change to the ACPI specification. In order to match the behavior of
8774 other major ACPI implementation, the target buffer is no longer truncated
8776 the source string is smaller than an existing target buffer. This change
8777 requires an update to the ACPI spec, and should eliminate the recent
8778 AE_AML_BUFFER_LIMIT issues.
8780 The "implicit return" support was rewritten to a new algorithm that
8782 the general case. Rather than attempt to determine when a method is about
8784 exit, the result of every ASL operator is saved momentarily until the
8786 next ASL operator is executed. Therefore, no matter how the method exits,
8787 there will always be a saved implicit return value. This feature is only
8788 enabled with the AcpiGbl_EnableInterpreterSlack flag, and should
8790 AE_AML_NO_RETURN_VALUE errors when enabled.
8792 Implemented implicit conversion support for the predicate (operand) of
8794 If, Else, and While operators. String and Buffer arguments are
8796 converted to Integers.
8798 Changed the string-to-integer conversion behavior to match the new ACPI
8799 errata: "If no integer object exists, a new integer is created. The ASCII
8800 string is interpreted as a hexadecimal constant. Each string character is
8801 interpreted as a hexadecimal value ('0'-'9', 'A'-'F', 'a', 'f'), starting
8802 with the first character as the most significant digit, and ending with
8804 first non-hexadecimal character or end-of-string." This means that the
8806 non-hex character terminates the conversion and this is the code that was
8809 Fixed a problem where the ObjectType operator would fail (fault) when
8811 on an Index of a Package which pointed to a null package element. The
8812 operator now properly returns zero (Uninitialized) in this case.
8814 Fixed a problem where the While operator used excessive memory by not
8815 properly popping the result stack during execution. There was no memory
8817 after execution, however. (Code provided by Valery Podrezov.)
8819 Fixed a problem where references to control methods within Package
8821 caused the method to be invoked, instead of producing a reference object
8822 pointing to the method.
8824 Restructured and simplified the pswalk.c module (AcpiPsDeleteParseTree)
8826 improve performance and reduce code size. (Code provided by Alexey
8829 Code and Data Size: Current and previous core subsystem library sizes are
8830 shown below. These are the code and data sizes for the acpica.lib
8832 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
8833 any ACPI driver or OSPM code. The debug version of the code includes the
8834 debug output trace mechanism and has a much larger code and data size.
8836 that these values will vary depending on the efficiency of the compiler
8838 the compiler options used during generation.
8841 Non-Debug Version: 78.3K Code, 11.5K Data, 89.8K Total
8842 Debug Version: 165.4K Code, 69.6K Data, 236.0K Total
8844 Non-Debug Version: 78.3K Code, 11.5K Data, 89.8K Total
8845 Debug Version: 165.4K Code, 69.7K Data, 236.1K Total
8848 2) iASL Compiler/Disassembler:
8850 Fixed a problem with the Return operator with no arguments. Since the AML
8851 grammar for the byte encoding requires an operand for the Return opcode,
8853 compiler now emits a Return(Zero) for this case. An ACPI specification
8854 update has been written for this case.
8856 For tables other than the DSDT, namepath optimization is automatically
8857 disabled. This is because SSDTs can be loaded anywhere in the namespace,
8859 compiler has no knowledge of where, and thus cannot optimize namepaths.
8861 Added "ProcessorObj" to the ObjectTypeKeyword list. This object type was
8862 inadvertently omitted from the ACPI specification, and will require an
8865 The source file scan for ASCII characters is now optional (-a). This
8867 was made because some vendors place non-ascii characters within comments.
8868 However, the scan is simply a brute-force byte compare to ensure all
8869 characters in the file are in the range 0x00 to 0x7F.
8871 Fixed a problem with the CondRefOf operator where the compiler was
8872 inappropriately checking for the existence of the target. Since the point
8874 the operator is to check for the existence of the target at run-time, the
8875 compiler no longer checks for the target existence.
8877 Fixed a problem where errors generated from the internal AML interpreter
8878 during constant folding were not handled properly, causing a fault.
8880 Fixed a problem with overly aggressive range checking for the Stall
8881 operator. The valid range (max 255) is now only checked if the operand is
8883 type Integer. All other operand types cannot be statically checked.
8885 Fixed a problem where control method references within the RefOf,
8887 and ObjectType operators were not treated properly. They are now treated
8889 actual references, not method invocations.
8891 Fixed and enhanced the "list namespace" option (-ln). This option was
8893 a number of releases ago.
8895 Improved error handling for the Field, IndexField, and BankField
8897 The compiler now cleanly reports and recovers from errors in the field
8898 component (FieldUnit) list.
8900 Fixed a disassembler problem where the optional ResourceDescriptor fields
8901 TRS and TTP were not always handled correctly.
8903 Disassembler - Comments in output now use "//" instead of "/*"
8905 ----------------------------------------
8906 28 February 2005. Summary of changes for version 20050228:
8908 1) ACPI CA Core Subsystem:
8910 Fixed a problem where the result of an Index() operator (an object
8911 reference) must increment the reference count on the target object for
8913 life of the object reference.
8915 Implemented AML Interpreter and Debugger support for the new ACPI 3.0
8916 Extended Address (IO, Memory, Space), QwordSpace, DwordSpace, and
8918 resource descriptors.
8920 Implemented support in the _OSI method for the ACPI 3.0 "Extended Address
8921 Space Descriptor" string, indicating interpreter support for the
8925 Implemented header support for the new ACPI 3.0 FADT flag bits.
8927 Implemented header support for the new ACPI 3.0 PCI Express bits for the
8929 status/enable registers.
8931 Updated header support for the MADT processor local Apic struct and MADT
8932 platform interrupt source struct for new ACPI 3.0 fields.
8934 Implemented header support for the SRAT and SLIT ACPI tables.
8936 Implemented the -s switch in AcpiExec to enable the "InterpreterSlack"
8940 Code and Data Size: Current and previous core subsystem library sizes are
8941 shown below. These are the code and data sizes for the acpica.lib
8943 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
8944 any ACPI driver or OSPM code. The debug version of the code includes the
8945 debug output trace mechanism and has a much larger code and data size.
8947 that these values will vary depending on the efficiency of the compiler
8949 the compiler options used during generation.
8952 Non-Debug Version: 78.2K Code, 11.5K Data, 89.7K Total
8953 Debug Version: 164.9K Code, 69.2K Data, 234.1K Total
8955 Non-Debug Version: 78.3K Code, 11.5K Data, 89.8K Total
8956 Debug Version: 165.4K Code, 69.6K Data, 236.0K Total
8959 2) iASL Compiler/Disassembler:
8961 Fixed a problem with the internal 64-bit String-to-integer conversion
8963 strings less than two characters long.
8965 Fixed a problem with constant folding where the result of the Index()
8966 operator can not be considered a constant. This means that Index() cannot
8968 a type3 opcode and this will require an update to the ACPI specification.
8970 Disassembler: Implemented support for the TTP, MTP, and TRS resource
8971 descriptor fields. These fields were inadvertently ignored and not output
8973 the disassembly of the resource descriptor.
8976 ----------------------------------------
8977 11 February 2005. Summary of changes for version 20050211:
8979 1) ACPI CA Core Subsystem:
8981 Implemented ACPI 3.0 support for implicit conversion within the Match()
8982 operator. MatchObjects can now be of type integer, buffer, or string
8984 of just type integer. Package elements are implicitly converted to the
8986 of the MatchObject. This change aligns the behavior of Match() with the
8987 behavior of the other logical operators (LLess(), etc.) It also requires
8989 errata change to the ACPI specification as this support was intended for
8990 ACPI 3.0, but was inadvertently omitted.
8992 Fixed a problem with the internal implicit "to buffer" conversion.
8994 that are converted to buffers will cause buffer truncation if the string
8996 smaller than the target buffer. Integers that are converted to buffers
8998 not cause buffer truncation, only zero extension (both as per the ACPI
8999 spec.) The problem was introduced when code was added to truncate the
9000 buffer, but this should not be performed in all cases, only the string
9003 Fixed a problem with the Buffer and Package operators where the
9005 would get confused if two such operators were used as operands to an ASL
9006 operator (such as LLess(Buffer(1){0},Buffer(1){1}). The internal result
9007 stack was not being popped after the execution of these operators,
9009 in an AE_NO_RETURN_VALUE exception.
9011 Fixed a problem with constructs of the form Store(Index(...),...). The
9012 reference object returned from Index was inadvertently resolved to an
9014 value. This problem was introduced in version 20050114 when the behavior
9016 Store() was modified to restrict the object types that can be used as the
9017 source operand (to match the ACPI specification.)
9019 Reduced excessive stack use within the AcpiGetObjectInfo procedure.
9021 Added a fix to aclinux.h to allow generation of AcpiExec on Linux.
9023 Updated the AcpiSrc utility to add the FADT_DESCRIPTOR_REV2_MINUS struct.
9025 Code and Data Size: Current and previous core subsystem library sizes are
9026 shown below. These are the code and data sizes for the acpica.lib
9028 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
9029 any ACPI driver or OSPM code. The debug version of the code includes the
9030 debug output trace mechanism and has a much larger code and data size.
9032 that these values will vary depending on the efficiency of the compiler
9034 the compiler options used during generation.
9037 Non-Debug Version: 78.1K Code, 11.5K Data, 89.6K Total
9038 Debug Version: 164.8K Code, 69.2K Data, 234.0K Total
9040 Non-Debug Version: 78.2K Code, 11.5K Data, 89.7K Total
9041 Debug Version: 164.9K Code, 69.2K Data, 234.1K Total
9044 2) iASL Compiler/Disassembler:
9046 Fixed a code generation problem in the constant folding optimization code
9047 where incorrect code was generated if a constant was reduced to a buffer
9048 object (i.e., a reduced type 5 opcode.)
9050 Fixed a typechecking problem for the ToBuffer operator. Caused by an
9051 incorrect return type in the internal opcode information table.
9053 ----------------------------------------
9054 25 January 2005. Summary of changes for version 20050125:
9056 1) ACPI CA Core Subsystem:
9058 Fixed a recently introduced problem with the Global Lock where the
9059 underlying semaphore was not created. This problem was introduced in
9060 version 20050114, and caused an AE_AML_NO_OPERAND exception during an
9061 Acquire() operation on _GL.
9063 The local object cache is now optional, and is disabled by default. Both
9064 AcpiExec and the iASL compiler enable the cache because they run in user
9065 mode and this enhances their performance. #define
9066 ACPI_ENABLE_OBJECT_CACHE
9067 to enable the local cache.
9069 Fixed an issue in the internal function AcpiUtEvaluateObject concerning
9071 optional "implicit return" support where an error was returned if no
9073 object was expected, but one was implicitly returned. AE_OK is now
9075 in this case and the implicitly returned object is deleted.
9076 AcpiUtEvaluateObject is only occasionally used, and only to execute
9078 methods such as _STA and _INI where the return type is known up front.
9080 Fixed a few issues with the internal convert-to-integer code. It now
9082 an error if an attempt is made to convert a null string, a string of only
9083 blanks/tabs, or a zero-length buffer. This affects both implicit
9085 and explicit conversion via the ToInteger() operator.
9087 The internal debug code in AcpiUtAcquireMutex has been commented out. It
9089 not needed for normal operation and should increase the performance of
9091 entire subsystem. The code remains in case it is needed for debug
9095 The AcpiExec source and makefile are included in the Unix/Linux package
9099 Code and Data Size: Current and previous core subsystem library sizes are
9100 shown below. These are the code and data sizes for the acpica.lib
9102 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
9103 any ACPI driver or OSPM code. The debug version of the code includes the
9104 debug output trace mechanism and has a much larger code and data size.
9106 that these values will vary depending on the efficiency of the compiler
9108 the compiler options used during generation.
9111 Non-Debug Version: 78.4K Code, 11.5K Data, 89.9K Total
9112 Debug Version: 165.4K Code, 69.4K Data, 234.8K Total
9114 Non-Debug Version: 78.1K Code, 11.5K Data, 89.6K Total
9115 Debug Version: 164.8K Code, 69.2K Data, 234.0K Total
9117 2) iASL Compiler/Disassembler:
9119 Switch/Case support: A warning is now issued if the type of the Switch
9121 cannot be determined at compile time. For example, Switch(Arg0) will
9122 generate the warning, and the type is assumed to be an integer. As per
9124 ACPI spec, use a construct such as Switch(ToInteger(Arg0)) to eliminate
9128 Switch/Case support: Implemented support for buffer and string objects as
9129 the switch value. This is an ACPI 3.0 feature, now that LEqual supports
9130 buffers and strings.
9132 Switch/Case support: The emitted code for the LEqual() comparisons now
9134 the switch value as the first operand, not the second. The case value is
9136 the second operand, and this allows the case value to be implicitly
9137 converted to the type of the switch value, not the other way around.
9139 Switch/Case support: Temporary variables are now emitted immediately
9141 the control method, not at the global level. This means that there are
9143 36 temps available per-method, not 36 temps per-module as was the case
9145 the earlier implementation (_T_0 through _T_9 and _T_A through _T_Z.)
9147 ----------------------------------------
9148 14 January 2005. Summary of changes for version 20050114:
9150 Added 2005 copyright to all module headers. This affects every module in
9151 the core subsystem, iASL compiler, and the utilities.
9153 1) ACPI CA Core Subsystem:
9155 Fixed an issue with the String-to-Buffer conversion code where the string
9156 null terminator was not included in the buffer after conversion, but
9158 is existing ASL that assumes the string null terminator is included. This
9160 the root of the ACPI_AML_BUFFER_LIMIT regression. This problem was
9161 introduced in the previous version when the code was updated to correctly
9162 set the converted buffer size as per the ACPI specification. The ACPI
9164 is ambiguous and will be updated to specify that the null terminator must
9166 included in the converted buffer. This also affects the ToBuffer() ASL
9169 Fixed a problem with the Mid() ASL/AML operator where it did not work
9170 correctly on Buffer objects. Newly created sub-buffers were not being
9175 Fixed a problem in AcpiTbFindTable where incorrect string compares were
9176 performed on the OemId and OemTableId table header fields. These fields
9178 not null terminated, so strncmp is now used instead of strcmp.
9180 Implemented a restriction on the Store() ASL/AML operator to align the
9181 behavior with the ACPI specification. Previously, any object could be
9183 as the source operand. Now, the only objects that may be used are
9185 Buffers, Strings, Packages, Object References, and DDB Handles. If
9186 necessary, the original behavior can be restored by enabling the
9187 EnableInterpreterSlack flag.
9189 Enhanced the optional "implicit return" support to allow an implicit
9191 value from methods that are invoked externally via the AcpiEvaluateObject
9192 interface. This enables implicit returns from the _STA and _INI methods,
9195 Changed the Revision() ASL/AML operator to return the current version of
9197 AML interpreter, in the YYYYMMDD format. Previously, it incorrectly
9199 the supported ACPI version (This is the function of the _REV method).
9201 Updated the _REV predefined method to return the currently supported
9205 Implemented batch mode option for the AcpiExec utility (-b).
9207 Code and Data Size: Current and previous core subsystem library sizes are
9208 shown below. These are the code and data sizes for the acpica.lib
9210 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
9211 any ACPI driver or OSPM code. The debug version of the code includes the
9212 debug output trace mechanism and has a much larger code and data size.
9214 that these values will vary depending on the efficiency of the compiler
9216 the compiler options used during generation.
9219 Non-Debug Version: 78.3K Code, 11.5K Data, 89.8K Total
9220 Debug Version: 165.3K Code, 69.4K Data, 234.7K Total
9222 Non-Debug Version: 78.4K Code, 11.5K Data, 89.9K Total
9223 Debug Version: 165.4K Code, 69.4K Data, 234.8K Total
9225 ----------------------------------------
9226 10 December 2004. Summary of changes for version 20041210:
9228 ACPI 3.0 support is nearing completion in both the iASL compiler and the
9229 ACPI CA core subsystem.
9231 1) ACPI CA Core Subsystem:
9233 Fixed a problem in the ToDecimalString operator where the resulting
9235 length was incorrectly calculated. The length is now calculated exactly,
9236 eliminating incorrect AE_STRING_LIMIT exceptions.
9238 Fixed a problem in the ToHexString operator to allow a maximum 200
9240 string to be produced.
9242 Fixed a problem in the internal string-to-buffer and buffer-to-buffer
9244 routine where the length of the resulting buffer was not truncated to the
9245 new size (if the target buffer already existed).
9247 Code and Data Size: Current and previous core subsystem library sizes are
9248 shown below. These are the code and data sizes for the acpica.lib
9250 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
9251 any ACPI driver or OSPM code. The debug version of the code includes the
9252 debug output trace mechanism and has a much larger code and data size.
9254 that these values will vary depending on the efficiency of the compiler
9256 the compiler options used during generation.
9259 Non-Debug Version: 78.3K Code, 11.5K Data, 89.8K Total
9260 Debug Version: 164.7K Code, 68.5K Data, 233.2K Total
9262 Non-Debug Version: 78.3K Code, 11.5K Data, 89.8K Total
9263 Debug Version: 165.3K Code, 69.4K Data, 234.7K Total
9266 2) iASL Compiler/Disassembler:
9268 Implemented the new ACPI 3.0 resource template macros - DWordSpace,
9269 ExtendedIO, ExtendedMemory, ExtendedSpace, QWordSpace, and WordSpace.
9270 Includes support in the disassembler.
9272 Implemented support for the new (ACPI 3.0) parameter to the Register
9276 Fixed a problem where the _HE resource name for the Interrupt macro was
9277 referencing bit 0 instead of bit 1.
9279 Implemented check for maximum 255 interrupts in the Interrupt macro.
9281 Fixed a problem with the predefined resource descriptor names where
9282 incorrect AML code was generated if the offset within the resource buffer
9283 was 0 or 1. The optimizer shortened the AML code to a single byte opcode
9284 but did not update the surrounding package lengths.
9286 Changes to the Dma macro: All channels within the channel list must be
9288 the range 0-7. Maximum 8 channels can be specified. BusMaster operand is
9289 optional (default is BusMaster).
9291 Implemented check for maximum 7 data bytes for the VendorShort macro.
9293 The ReadWrite parameter is now optional for the Memory32 and similar
9296 ----------------------------------------
9297 03 December 2004. Summary of changes for version 20041203:
9299 1) ACPI CA Core Subsystem:
9301 The low-level field insertion/extraction code (exfldio) has been
9303 rewritten to eliminate unnecessary complexity, bugs, and boundary
9306 Fixed a problem in the ToInteger, ToBuffer, ToHexString, and
9308 operators where the input operand could be inadvertently deleted if no
9309 conversion was necessary (e.g., if the input to ToInteger was an Integer
9312 Fixed a problem with the ToDecimalString and ToHexString where an
9314 exception code was returned if the resulting string would be > 200 chars.
9315 AE_STRING_LIMIT is now returned.
9317 Fixed a problem with the Concatenate operator where AE_OK was always
9318 returned, even if the operation failed.
9320 Fixed a problem in oswinxf (used by AcpiExec and iASL) to allow > 128
9321 semaphores to be allocated.
9323 Code and Data Size: Current and previous core subsystem library sizes are
9324 shown below. These are the code and data sizes for the acpica.lib
9326 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
9327 any ACPI driver or OSPM code. The debug version of the code includes the
9328 debug output trace mechanism and has a much larger code and data size.
9330 that these values will vary depending on the efficiency of the compiler
9332 the compiler options used during generation.
9335 Non-Debug Version: 78.5K Code, 11.5K Data, 90.0K Total
9336 Debug Version: 165.2K Code, 68.6K Data, 233.8K Total
9338 Non-Debug Version: 78.3K Code, 11.5K Data, 89.8K Total
9339 Debug Version: 164.7K Code, 68.5K Data, 233.2K Total
9342 2) iASL Compiler/Disassembler:
9344 Fixed typechecking for the ObjectType and SizeOf operators. Problem was
9345 recently introduced in 20041119.
9347 Fixed a problem with the ToUUID macro where the upper nybble of each
9349 byte was inadvertently set to zero.
9351 ----------------------------------------
9352 19 November 2004. Summary of changes for version 20041119:
9354 1) ACPI CA Core Subsystem:
9356 Fixed a problem in the internal ConvertToInteger routine where new
9358 were not truncated to 32 bits for 32-bit ACPI tables. This routine
9360 buffers and strings to integers.
9362 Implemented support to store a value to an Index() on a String object.
9364 is an ACPI 2.0 feature that had not yet been implemented.
9366 Implemented new behavior for storing objects to individual package
9368 (via the Index() operator). The previous behavior was to invoke the
9370 conversion rules if an object was already present at the index. The new
9371 behavior is to simply delete any existing object and directly store the
9373 object. Although the ACPI specification seems unclear on this subject,
9375 ACPI implementations behave in this manner. (This is the root of the
9376 AE_BAD_HEX_CONSTANT issue.)
9378 Modified the RSDP memory scan mechanism to support the extended checksum
9380 ACPI 2.0 (and above) RSDPs. Note that the search continues until a valid
9381 RSDP signature is found with a valid checksum.
9383 Code and Data Size: Current and previous core subsystem library sizes are
9384 shown below. These are the code and data sizes for the acpica.lib
9386 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
9387 any ACPI driver or OSPM code. The debug version of the code includes the
9388 debug output trace mechanism and has a much larger code and data size.
9390 that these values will vary depending on the efficiency of the compiler
9392 the compiler options used during generation.
9395 Non-Debug Version: 78.5K Code, 11.5K Data, 90.0K Total
9396 Debug Version: 165.2K Code, 68.6K Data, 233.8K Total
9398 Non-Debug Version: 78.5K Code, 11.5K Data, 90.0K Total
9399 Debug Version: 165.2K Code, 68.6K Data, 233.8K Total
9402 2) iASL Compiler/Disassembler:
9404 Fixed a missing semicolon in the aslcompiler.y file.
9406 ----------------------------------------
9407 05 November 2004. Summary of changes for version 20041105:
9409 1) ACPI CA Core Subsystem:
9411 Implemented support for FADT revision 2. This was an interim table
9413 ACPI 1.0 and ACPI 2.0) that adds support for the FADT reset register.
9415 Implemented optional support to allow uninitialized LocalX and ArgX
9416 variables in a control method. The variables are initialized to an
9418 object with a value of zero. This support is enabled by setting the
9419 AcpiGbl_EnableInterpreterSlack flag to TRUE.
9421 Implemented support for Integer objects for the SizeOf operator. Either
9423 or 8 is returned, depending on the current integer size (32-bit or 64-
9425 depending on the parent table revision).
9427 Fixed a problem in the implementation of the SizeOf and ObjectType
9429 where the operand was resolved to a value too early, causing incorrect
9430 return values for some objects.
9432 Fixed some possible memory leaks during exceptional conditions.
9434 Code and Data Size: Current and previous core subsystem library sizes are
9435 shown below. These are the code and data sizes for the acpica.lib
9437 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
9438 any ACPI driver or OSPM code. The debug version of the code includes the
9439 debug output trace mechanism and has a much larger code and data size.
9441 that these values will vary depending on the efficiency of the compiler
9443 the compiler options used during generation.
9446 Non-Debug Version: 78.0K Code, 11.5K Data, 89.5K Total
9447 Debug Version: 164.8K Code, 68.6K Data, 233.4K Total
9449 Non-Debug Version: 78.5K Code, 11.5K Data, 90.0K Total
9450 Debug Version: 165.2K Code, 68.6K Data, 233.8K Total
9453 2) iASL Compiler/Disassembler:
9455 Implemented support for all ACPI 3.0 reserved names and methods.
9457 Implemented all ACPI 3.0 grammar elements in the front-end, including
9458 support for semicolons.
9460 Implemented the ACPI 3.0 Function() and ToUUID() macros
9462 Fixed a problem in the disassembler where a Scope() operator would not be
9463 emitted properly if the target of the scope was in another table.
9465 ----------------------------------------
9466 15 October 2004. Summary of changes for version 20041015:
9468 Note: ACPI CA is currently undergoing an in-depth and complete formal
9469 evaluation to test/verify the following areas. Other suggestions are
9470 welcome. This will result in an increase in the frequency of releases and
9471 the number of bug fixes in the next few months.
9472 - Functional tests for all ASL/AML operators
9473 - All implicit/explicit type conversions
9474 - Bit fields and operation regions
9475 - 64-bit math support and 32-bit-only "truncated" math support
9476 - Exceptional conditions, both compiler and interpreter
9477 - Dynamic object deletion and memory leaks
9478 - ACPI 3.0 support when implemented
9479 - External interfaces to the ACPI subsystem
9482 1) ACPI CA Core Subsystem:
9484 Fixed two alignment issues on 64-bit platforms - within debug statements
9486 AcpiEvGpeDetect and AcpiEvCreateGpeBlock. Removed references to the
9488 field within the non-aligned ACPI generic address structure.
9490 Fixed a problem in the Increment and Decrement operators where incorrect
9491 operand resolution could result in the inadvertent modification of the
9492 original integer when the integer is passed into another method as an
9493 argument and the arg is then incremented/decremented.
9495 Fixed a problem in the FromBCD operator where the upper 32-bits of a 64-
9497 BCD number were truncated during conversion.
9499 Fixed a problem in the ToDecimal operator where the length of the
9501 string could be set incorrectly too long if the input operand was a
9505 Fixed a problem in the Logical operators (LLess, etc.) where a NULL byte
9507 within a buffer would prematurely terminate a compare between buffer
9510 Added a check for string overflow (>200 characters as per the ACPI
9511 specification) during the Concatenate operator with two string operands.
9513 Code and Data Size: Current and previous core subsystem library sizes are
9514 shown below. These are the code and data sizes for the acpica.lib
9516 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
9517 any ACPI driver or OSPM code. The debug version of the code includes the
9518 debug output trace mechanism and has a much larger code and data size.
9520 that these values will vary depending on the efficiency of the compiler
9522 the compiler options used during generation.
9525 Non-Debug Version: 77.8K Code, 11.5K Data, 89.3K Total
9526 Debug Version: 164.6K Code, 68.5K Data, 233.1K Total
9528 Non-Debug Version: 78.0K Code, 11.5K Data, 89.5K Total
9529 Debug Version: 164.8K Code, 68.6K Data, 233.4K Total
9533 2) iASL Compiler/Disassembler:
9535 Allow the use of the ObjectType operator on uninitialized Locals and Args
9536 (returns 0 as per the ACPI specification).
9538 Fixed a problem where the compiler would fault if there was a syntax
9540 in the FieldName of all of the various CreateXXXField operators.
9542 Disallow the use of lower case letters within the EISAID macro, as per
9544 ACPI specification. All EISAID strings must be of the form "UUUNNNN"
9546 U is an uppercase letter and N is a hex digit.
9549 ----------------------------------------
9550 06 October 2004. Summary of changes for version 20041006:
9552 1) ACPI CA Core Subsystem:
9554 Implemented support for the ACPI 3.0 Timer operator. This ASL function
9555 implements a 64-bit timer with 100 nanosecond granularity.
9557 Defined a new OSL interface, AcpiOsGetTimer. This interface is used to
9558 implement the ACPI 3.0 Timer operator. This allows the host OS to
9560 the timer with the best clock available. Also, it keeps the core
9562 out of the clock handling business, since the host OS (usually) performs
9565 Fixed an alignment issue on 64-bit platforms. The HwLowLevelRead(Write)
9566 functions use a 64-bit address which is part of the packed ACPI Generic
9567 Address Structure. Since the structure is non-aligned, the alignment
9569 are now used to extract the address to a local variable before use.
9571 Fixed a problem where the ToInteger operator assumed all input strings
9573 hexadecimal. The operator now handles both decimal strings and hex
9575 (prefixed with "0x").
9577 Fixed a problem where the string length in the string object created as a
9578 result of the internal ConvertToString procedure could be incorrect. This
9579 potentially affected all implicit conversions and also the
9581 and ToHexString operators.
9583 Fixed two problems in the ToString operator. If the length parameter was
9584 zero, an incorrect string object was created and the value of the input
9585 length parameter was inadvertently changed from zero to Ones.
9587 Fixed a problem where the optional ResourceSource string in the
9589 resource macro was ignored.
9591 Simplified the interfaces to the internal division functions, reducing
9593 size and complexity.
9595 Code and Data Size: Current and previous core subsystem library sizes are
9596 shown below. These are the code and data sizes for the acpica.lib
9598 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
9599 any ACPI driver or OSPM code. The debug version of the code includes the
9600 debug output trace mechanism and has a much larger code and data size.
9602 that these values will vary depending on the efficiency of the compiler
9604 the compiler options used during generation.
9607 Non-Debug Version: 77.9K Code, 11.4K Data, 89.3K Total
9608 Debug Version: 164.5K Code, 68.3K Data, 232.8K Total
9610 Non-Debug Version: 77.8K Code, 11.5K Data, 89.3K Total
9611 Debug Version: 164.6K Code, 68.5K Data, 233.1K Total
9614 2) iASL Compiler/Disassembler:
9616 Implemented support for the ACPI 3.0 Timer operator.
9618 Fixed a problem where the Default() operator was inadvertently ignored in
9620 Switch/Case block. This was a problem in the translation of the Switch
9621 statement to If...Else pairs.
9623 Added support to allow a standalone Return operator, with no parentheses
9627 Fixed a problem with code generation for the ElseIf operator where the
9628 translated Else...If parse tree was improperly constructed leading to the
9631 ----------------------------------------
9632 22 September 2004. Summary of changes for version 20040922:
9634 1) ACPI CA Core Subsystem:
9636 Fixed a problem with the implementation of the LNot() operator where
9638 was not returned for the TRUE case. Changed the code to return Ones
9640 of (!Arg) which was usually 1. This change affects iASL constant folding
9644 Fixed a problem in AcpiUtInitializeBuffer where an existing buffer was
9646 initialized properly -- Now zero the entire buffer in this case where the
9647 buffer already exists.
9649 Changed the interface to AcpiOsSleep from (UINT32 Seconds, UINT32
9650 Milliseconds) to simply (ACPI_INTEGER Milliseconds). This simplifies all
9651 related code considerably. This will require changes/updates to all OS
9652 interface layers (OSLs.)
9654 Implemented a new external interface, AcpiInstallExceptionHandler, to
9656 a system exception handler to be installed. This handler is invoked upon
9658 run-time exception that occurs during control method execution.
9660 Added support for the DSDT in AcpiTbFindTable. This allows the
9661 DataTableRegion() operator to access the local copy of the DSDT.
9663 Code and Data Size: Current and previous core subsystem library sizes are
9664 shown below. These are the code and data sizes for the acpica.lib
9666 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
9667 any ACPI driver or OSPM code. The debug version of the code includes the
9668 debug output trace mechanism and has a much larger code and data size.
9670 that these values will vary depending on the efficiency of the compiler
9672 the compiler options used during generation.
9675 Non-Debug Version: 77.8K Code, 11.4K Data, 89.2K Total
9676 Debug Version: 164.2K Code, 68.2K Data, 232.4K Total
9678 Non-Debug Version: 77.9K Code, 11.4K Data, 89.3K Total
9679 Debug Version: 164.5K Code, 68.3K Data, 232.8K Total
9682 2) iASL Compiler/Disassembler:
9684 Fixed a problem with constant folding and the LNot operator. LNot was
9685 returning 1 in the TRUE case, not Ones as per the ACPI specification.
9687 could result in the generation of an incorrect folded/reduced constant.
9689 End-Of-File is now allowed within a "//"-style comment. A parse error no
9690 longer occurs if such a comment is at the very end of the input ASL
9694 Implemented the "-r" option to override the Revision in the table header.
9695 The initial use of this option will be to simplify the evaluation of the
9697 interpreter by allowing a single ASL source module to be compiled for
9699 32-bit or 64-bit integers.
9702 ----------------------------------------
9703 27 August 2004. Summary of changes for version 20040827:
9705 1) ACPI CA Core Subsystem:
9707 - Implemented support for implicit object conversion in the non-numeric
9708 logical operators (LEqual, LGreater, LGreaterEqual, LLess, LLessEqual,
9710 LNotEqual.) Any combination of Integers/Strings/Buffers may now be used;
9711 the second operand is implicitly converted on the fly to match the type
9713 the first operand. For example:
9715 LEqual (Source1, Source2)
9717 Source1 and Source2 must each evaluate to an integer, a string, or a
9719 The data type of Source1 dictates the required type of Source2. Source2
9721 implicitly converted if necessary to match the type of Source1.
9723 - Updated and corrected the behavior of the string conversion support.
9725 rules concerning conversion of buffers to strings (according to the ACPI
9726 specification) are as follows:
9728 ToDecimalString - explicit byte-wise conversion of buffer to string of
9729 decimal values (0-255) separated by commas. ToHexString - explicit byte-
9731 conversion of buffer to string of hex values (0-FF) separated by commas.
9732 ToString - explicit byte-wise conversion of buffer to string. Byte-by-
9734 copy with no transform except NULL terminated. Any other implicit buffer-
9736 string conversion - byte-wise conversion of buffer to string of hex
9738 (0-FF) separated by spaces.
9740 - Fixed typo in definition of AcpiGbl_EnableInterpreterSlack.
9742 - Fixed a problem in AcpiNsGetPathnameLength where the returned length
9744 one byte too short in the case of a node in the root scope. This could
9745 cause a fault during debug output.
9747 - Code and Data Size: Current and previous core subsystem library sizes
9749 shown below. These are the code and data sizes for the acpica.lib
9751 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
9752 any ACPI driver or OSPM code. The debug version of the code includes the
9753 debug output trace mechanism and has a much larger code and data size.
9755 that these values will vary depending on the efficiency of the compiler
9757 the compiler options used during generation.
9760 Non-Debug Version: 77.9K Code, 11.5K Data, 89.4K Total
9761 Debug Version: 164.1K Code, 68.3K Data, 232.4K Total
9763 Non-Debug Version: 77.8K Code, 11.4K Data, 89.2K Total
9764 Debug Version: 164.2K Code, 68.2K Data, 232.4K Total
9767 2) iASL Compiler/Disassembler:
9769 - Fixed a Linux generation error.
9772 ----------------------------------------
9773 16 August 2004. Summary of changes for version 20040816:
9775 1) ACPI CA Core Subsystem:
9777 Designed and implemented support within the AML interpreter for the so-
9778 called "implicit return". This support returns the result of the last
9780 operation within a control method, in the absence of an explicit Return()
9781 operator. A few machines depend on this behavior, even though it is not
9782 explicitly supported by the ASL language. It is optional support that
9784 be enabled at runtime via the AcpiGbl_EnableInterpreterSlack flag.
9786 Removed support for the PCI_Config address space from the internal low
9788 hardware interfaces (AcpiHwLowLevelRead and AcpiHwLowLevelWrite). This
9789 support was not used internally, and would not work correctly anyway
9791 the PCI bus number and segment number were not supported. There are
9792 separate interfaces for PCI configuration space access because of the
9796 Code and Data Size: Current and previous core subsystem library sizes are
9797 shown below. These are the code and data sizes for the acpica.lib
9799 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
9800 any ACPI driver or OSPM code. The debug version of the code includes the
9801 debug output trace mechanism and has a much larger code and data size.
9803 that these values will vary depending on the efficiency of the compiler
9805 the compiler options used during generation.
9808 Non-Debug Version: 78.0K Code, 11.5K Data, 89.5K Total
9809 Debug Version: 164.1K Code, 68.2K Data, 232.3K Total
9811 Non-Debug Version: 77.9K Code, 11.5K Data, 89.4K Total
9812 Debug Version: 164.1K Code, 68.3K Data, 232.4K Total
9815 2) iASL Compiler/Disassembler:
9817 Fixed a problem where constants in ASL expressions at the root level (not
9818 within a control method) could be inadvertently truncated during code
9819 generation. This problem was introduced in the 20040715 release.
9822 ----------------------------------------
9823 15 July 2004. Summary of changes for version 20040715:
9825 1) ACPI CA Core Subsystem:
9827 Restructured the internal HW GPE interfaces to pass/track the current
9829 of interrupts (enabled/disabled) in order to avoid possible deadlock and
9830 increase flexibility of the interfaces.
9832 Implemented a "lexicographical compare" for String and Buffer objects
9834 the logical operators -- LGreater, LLess, LGreaterEqual, and LLessEqual -
9836 as per further clarification to the ACPI specification. Behavior is
9838 to C library "strcmp".
9840 Completed a major reduction in CPU stack use for the AcpiGetFirmwareTable
9841 external function. In the 32-bit non-debug case, the stack use has been
9842 reduced from 168 bytes to 32 bytes.
9844 Deployed a new run-time configuration flag,
9845 AcpiGbl_EnableInterpreterSlack,
9846 whose purpose is to allow the AML interpreter to forgive certain bad AML
9847 constructs. Default setting is FALSE.
9849 Implemented the first use of AcpiGbl_EnableInterpreterSlack in the Field
9851 support code. If enabled, it allows field access to go beyond the end of
9853 region definition if the field is within the region length rounded up to
9855 next access width boundary (a common coding error.)
9857 Renamed OSD_HANDLER to ACPI_OSD_HANDLER, and OSD_EXECUTION_CALLBACK to
9858 ACPI_OSD_EXEC_CALLBACK for consistency with other ACPI symbols. Also,
9860 symbols are lowercased by the latest version of the AcpiSrc tool.
9862 The prototypes for the PCI interfaces in acpiosxf.h have been updated to
9863 rename "Register" to simply "Reg" to prevent certain compilers from
9866 Code and Data Size: Current and previous core subsystem library sizes are
9867 shown below. These are the code and data sizes for the acpica.lib
9869 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
9870 any ACPI driver or OSPM code. The debug version of the code includes the
9871 debug output trace mechanism and has a much larger code and data size.
9873 that these values will vary depending on the efficiency of the compiler
9875 the compiler options used during generation.
9878 Non-Debug Version: 77.8K Code, 11.5K Data, 89.3K Total
9879 Debug Version: 163.8K Code, 68.2K Data, 232.0K Total
9881 Non-Debug Version: 78.0K Code, 11.5K Data, 89.5K Total
9882 Debug Version: 164.1K Code, 68.2K Data, 232.3K Total
9885 2) iASL Compiler/Disassembler:
9887 Implemented full support for Package objects within the Case() operator.
9888 Note: The Break() operator is currently not supported within Case blocks
9889 (TermLists) as there is some question about backward compatibility with
9894 Fixed a problem where complex terms were not supported properly within
9898 Eliminated extraneous warning for compiler-emitted reserved names of the
9899 form "_T_x". (Used in Switch/Case operators.)
9901 Eliminated optimization messages for "_T_x" objects and small constants
9902 within the DefinitionBlock operator.
9905 ----------------------------------------
9906 15 June 2004. Summary of changes for version 20040615:
9908 1) ACPI CA Core Subsystem:
9910 Implemented support for Buffer and String objects (as per ACPI 2.0) for
9912 following ASL operators: LEqual, LGreater, LLess, LGreaterEqual, and
9915 All directory names in the entire source package are lower case, as they
9916 were in earlier releases.
9918 Implemented "Disassemble" command in the AML debugger that will
9920 a single control method.
9922 Code and Data Size: Current and previous core subsystem library sizes are
9923 shown below. These are the code and data sizes for the acpica.lib
9925 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
9926 any ACPI driver or OSPM code. The debug version of the code includes the
9927 debug output trace mechanism and has a much larger code and data size.
9929 that these values will vary depending on the efficiency of the compiler
9931 the compiler options used during generation.
9934 Non-Debug Version: 77.7K Code, 11.5K Data, 89.2K Total
9935 Debug Version: 163.3K Code, 67.2K Data, 230.5K Total
9938 Non-Debug Version: 77.8K Code, 11.5K Data, 89.3K Total
9939 Debug Version: 163.8K Code, 68.2K Data, 232.0K Total
9942 2) iASL Compiler/Disassembler:
9944 Implemented support for Buffer and String objects (as per ACPI 2.0) for
9946 following ASL operators: LEqual, LGreater, LLess, LGreaterEqual, and
9949 All directory names in the entire source package are lower case, as they
9950 were in earlier releases.
9952 Fixed a fault when using the -g or -d<nofilename> options if the FADT was
9955 Fixed an issue with the Windows version of the compiler where later
9957 of Windows place the FADT in the registry under the name "FADT" and not
9958 "FACP" as earlier versions did. This applies when using the -g or -
9959 d<nofilename> options. The compiler now looks for both strings as
9962 Fixed a problem with compiler namepath optimization where a namepath
9964 the Scope() operator could not be optimized if the namepath was a subpath
9966 the current scope path.
9968 ----------------------------------------
9969 27 May 2004. Summary of changes for version 20040527:
9971 1) ACPI CA Core Subsystem:
9973 Completed a new design and implementation for EBDA (Extended BIOS Data
9975 support in the RSDP scan code. The original code improperly scanned for
9977 EBDA by simply scanning from memory location 0 to 0x400. The correct
9979 is to first obtain the EBDA pointer from within the BIOS data area, then
9980 scan 1K of memory starting at the EBDA pointer. There appear to be few
9982 any machines that place the RSDP in the EBDA, however.
9984 Integrated a fix for a possible fault during evaluation of BufferField
9985 arguments. Obsolete code that was causing the problem was removed.
9987 Found and fixed a problem in the Field Support Code where data could be
9988 corrupted on a bit field read that starts on an aligned boundary but does
9989 not end on an aligned boundary. Merged the read/write "datum length"
9990 calculation code into a common procedure.
9992 Rolled in a couple of changes to the FreeBSD-specific header.
9995 Code and Data Size: Current and previous core subsystem library sizes are
9996 shown below. These are the code and data sizes for the acpica.lib
9998 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
9999 any ACPI driver or OSPM code. The debug version of the code includes the
10000 debug output trace mechanism and has a much larger code and data size.
10002 that these values will vary depending on the efficiency of the compiler
10004 the compiler options used during generation.
10007 Non-Debug Version: 77.6K Code, 11.5K Data, 89.1K Total
10008 Debug Version: 163.2K Code, 67.2K Data, 230.4K Total
10010 Non-Debug Version: 77.7K Code, 11.5K Data, 89.2K Total
10011 Debug Version: 163.3K Code, 67.2K Data, 230.5K Total
10014 2) iASL Compiler/Disassembler:
10016 Fixed a generation warning produced by some overly-verbose compilers for
10020 ----------------------------------------
10021 14 May 2004. Summary of changes for version 20040514:
10023 1) ACPI CA Core Subsystem:
10025 Fixed a problem where hardware GPE enable bits sometimes not set properly
10026 during and after GPE method execution. Result of 04/27 changes.
10028 Removed extra "clear all GPEs" when sleeping/waking.
10030 Removed AcpiHwEnableGpe and AcpiHwDisableGpe, replaced by the single
10031 AcpiHwWriteGpeEnableReg. Changed a couple of calls to the functions above
10033 the new AcpiEv* calls as appropriate.
10035 ACPI_OS_NAME was removed from the OS-specific headers. The default name
10037 now "Microsoft Windows NT" for maximum compatibility. However this can
10039 changed by modifying the acconfig.h file.
10041 Allow a single invocation of AcpiInstallNotifyHandler for a handler that
10042 traps both types of notifies (System, Device). Use ACPI_ALL_NOTIFY flag.
10044 Run _INI methods on ThermalZone objects. This is against the ACPI
10045 specification, but there is apparently ASL code in the field that has
10047 _INI methods, and apparently "other" AML interpreters execute them.
10049 Performed a full 16/32/64 bit lint that resulted in some small changes.
10051 Added a sleep simulation command to the AML debugger to test sleep code.
10053 Code and Data Size: Current and previous core subsystem library sizes are
10054 shown below. These are the code and data sizes for the acpica.lib
10056 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
10057 any ACPI driver or OSPM code. The debug version of the code includes the
10058 debug output trace mechanism and has a much larger code and data size.
10060 that these values will vary depending on the efficiency of the compiler
10062 the compiler options used during generation.
10065 Non-Debug Version: 77.6K Code, 11.5K Data, 89.1K Total
10066 Debug Version: 162.9K Code, 67.0K Data, 229.9K Total
10068 Non-Debug Version: 77.6K Code, 11.5K Data, 89.1K Total
10069 Debug Version: 163.2K Code, 67.2K Data, 230.4K Total
10071 ----------------------------------------
10072 27 April 2004. Summary of changes for version 20040427:
10074 1) ACPI CA Core Subsystem:
10076 Completed a major overhaul of the GPE handling within ACPI CA. There are
10077 now three types of GPEs: wake-only, runtime-only, and combination
10079 The only GPEs allowed to be combination wake/run are for button-style
10080 devices such as a control-method power button, control-method sleep
10082 or a notebook lid switch. GPEs that have an _Lxx or _Exx method and are
10084 referenced by any _PRW methods are marked for "runtime" and hardware
10085 enabled. Any GPE that is referenced by a _PRW method is marked for
10087 (and disabled at runtime). However, at sleep time, only those GPEs that
10088 have been specifically enabled for wake via the AcpiEnableGpe interface
10090 actually be hardware enabled.
10092 A new external interface has been added, AcpiSetGpeType(), that is meant
10094 be used by device drivers to force a GPE to a particular type. It will
10096 especially useful for the drivers for the button devices mentioned above.
10098 Completed restructuring of the ACPI CA initialization sequence so that
10099 default operation region handlers are installed before GPEs are
10101 and the _PRW methods are executed. This will prevent errors when the
10103 methods attempt to access system memory or I/O space.
10105 GPE enable/disable no longer reads the GPE enable register. We now keep
10107 enable info for runtime and wake separate and in the GPE_EVENT_INFO. We
10108 thus no longer depend on the hardware to maintain these bits.
10110 Always clear the wake status and fixed/GPE status bits before sleep, even
10113 Improved the AML debugger output for displaying the GPE blocks and their
10116 Added new strings for the _OSI method, of the form "Windows 2001 SPx"
10120 Fixed a problem where the physical address was incorrectly calculated
10122 the Load() operator was used to directly load from an Operation Region
10124 loading from a Field object.) Also added check for minimum table length
10128 Fix for multiple mutex acquisition. Restore original thread SyncLevel on
10131 Added ACPI_VALID_SXDS flag to the AcpiGetObjectInfo interface for
10132 consistency with the other fields returned.
10134 Shrunk the ACPI_GPE_EVENT_INFO structure by 40%. There is one such
10135 structure for each GPE in the system, so the size of this structure is
10138 CPU stack requirement reduction: Cleaned up the method execution and
10140 evaluation paths so that now a parameter structure is passed, instead of
10141 copying the various method parameters over and over again.
10143 In evregion.c: Correctly exit and reenter the interpreter region if and
10144 only if dispatching an operation region request to a user-installed
10146 Do not exit/reenter when dispatching to a default handler (e.g., default
10147 system memory or I/O handlers)
10150 Notes for updating drivers for the new GPE support. The following
10152 must be made to ACPI-related device drivers that are attached to one or
10154 GPEs: (This information will be added to the ACPI CA Programmer
10157 1) AcpiInstallGpeHandler no longer automatically enables the GPE, you
10159 explicitly call AcpiEnableGpe.
10160 2) There is a new interface called AcpiSetGpeType. This should be called
10161 before enabling the GPE. Also, this interface will automatically disable
10162 the GPE if it is currently enabled.
10163 3) AcpiEnableGpe no longer supports a GPE type flag.
10165 Specific drivers that must be changed:
10167 AcpiInstallGpeHandler (NULL, GpeNum, ACPI_GPE_EDGE_TRIGGERED,
10168 AeGpeHandler, NULL);
10169 AcpiSetGpeType (NULL, GpeNum, ACPI_GPE_TYPE_RUNTIME);
10170 AcpiEnableGpe (NULL, GpeNum, ACPI_NOT_ISR);
10172 2) Button Drivers (Power, Lid, Sleep):
10173 Run _PRW method under parent device
10174 If _PRW exists: /* This is a control-method button */
10175 Extract GPE number and possibly GpeDevice
10176 AcpiSetGpeType (GpeDevice, GpeNum, ACPI_GPE_TYPE_WAKE_RUN);
10177 AcpiEnableGpe (GpeDevice, GpeNum, ACPI_NOT_ISR);
10179 For all other devices that have _PRWs, we automatically set the GPE type
10181 ACPI_GPE_TYPE_WAKE, but the GPE is NOT automatically (wake) enabled.
10183 must be done on a selective basis, usually requiring some kind of user
10185 to allow the user to pick the wake devices.
10188 Code and Data Size: Current and previous core subsystem library sizes are
10189 shown below. These are the code and data sizes for the acpica.lib
10191 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
10192 any ACPI driver or OSPM code. The debug version of the code includes the
10193 debug output trace mechanism and has a much larger code and data size.
10195 that these values will vary depending on the efficiency of the compiler
10197 the compiler options used during generation.
10200 Non-Debug Version: 77.0K Code, 11.4K Data, 88.4K Total
10201 Debug Version: 161.0K Code, 66.3K Data, 227.3K Total
10204 Non-Debug Version: 77.6K Code, 11.5K Data, 89.1K Total
10205 Debug Version: 162.9K Code, 67.0K Data, 229.9K Total
10209 ----------------------------------------
10210 02 April 2004. Summary of changes for version 20040402:
10212 1) ACPI CA Core Subsystem:
10214 Fixed an interpreter problem where an indirect store through an ArgX
10215 parameter was incorrectly applying the "implicit conversion rules" during
10216 the store. From the ACPI specification: "If the target is a method local
10218 argument (LocalX or ArgX), no conversion is performed and the result is
10219 stored directly to the target". The new behavior is to disable implicit
10220 conversion during ALL stores to an ArgX.
10222 Changed the behavior of the _PRW method scan to ignore any and all errors
10223 returned by a given _PRW. This prevents the scan from aborting from the
10224 failure of any single _PRW.
10226 Moved the runtime configuration parameters from the global init procedure
10228 static variables in acglobal.h. This will allow the host to override the
10229 default values easily.
10231 Code and Data Size: Current and previous core subsystem library sizes are
10232 shown below. These are the code and data sizes for the acpica.lib
10234 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
10235 any ACPI driver or OSPM code. The debug version of the code includes the
10236 debug output trace mechanism and has a much larger code and data size.
10238 that these values will vary depending on the efficiency of the compiler
10240 the compiler options used during generation.
10243 Non-Debug Version: 76.9K Code, 11.4K Data, 88.3K Total
10244 Debug Version: 160.8K Code, 66.1K Data, 226.9K Total
10246 Non-Debug Version: 77.0K Code, 11.4K Data, 88.4K Total
10247 Debug Version: 161.0K Code, 66.3K Data, 227.3K Total
10250 2) iASL Compiler/Disassembler:
10252 iASL now fully disassembles SSDTs. However, External() statements are
10254 generated automatically for unresolved symbols at this time. This is a
10255 planned feature for future implementation.
10257 Fixed a scoping problem in the disassembler that occurs when the type of
10259 target of a Scope() operator is overridden. This problem caused an
10260 incorrectly nested internal namespace to be constructed.
10262 Any warnings or errors that are emitted during disassembly are now
10264 out automatically so that the resulting file can be recompiled without
10268 ----------------------------------------
10269 26 March 2004. Summary of changes for version 20040326:
10271 1) ACPI CA Core Subsystem:
10273 Implemented support for "wake" GPEs via interaction between GPEs and the
10274 _PRW methods. Every GPE that is pointed to by one or more _PRWs is
10275 identified as a WAKE GPE and by default will no longer be enabled at
10276 runtime. Previously, we were blindly enabling all GPEs with a
10278 _Lxx or _Exx method - but most of these turn out to be WAKE GPEs anyway.
10280 believe this has been the cause of thousands of "spurious" GPEs on some
10283 This new GPE behavior is can be reverted to the original behavior (enable
10284 ALL GPEs at runtime) via a runtime flag.
10286 Fixed a problem where aliased control methods could not access objects
10287 properly. The proper scope within the namespace was not initialized
10288 (transferred to the target of the aliased method) before executing the
10291 Fixed a potential race condition on internal object deletion on the
10293 object in AcpiEvaluateObject.
10295 Integrated a fix for resource descriptors where both _MEM and _MTP were
10296 being extracted instead of just _MEM. (i.e. bitmask was incorrectly too
10297 wide, 0x0F instead of 0x03.)
10299 Added a special case for ACPI_ROOT_OBJECT in AcpiUtGetNodeName,
10302 fault in some cases.
10304 Updated Notify() values for debug statements in evmisc.c
10306 Return proper status from AcpiUtMutexInitialize, not just simply AE_OK.
10308 Code and Data Size: Current and previous core subsystem library sizes are
10309 shown below. These are the code and data sizes for the acpica.lib
10311 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
10312 any ACPI driver or OSPM code. The debug version of the code includes the
10313 debug output trace mechanism and has a much larger code and data size.
10315 that these values will vary depending on the efficiency of the compiler
10317 the compiler options used during generation.
10321 Non-Debug Version: 76.5K Code, 11.3K Data, 87.8K Total
10322 Debug Version: 160.3K Code, 66.0K Data, 226.3K Total
10324 Non-Debug Version: 76.9K Code, 11.4K Data, 88.3K Total
10325 Debug Version: 160.8K Code, 66.1K Data, 226.9K Total
10327 ----------------------------------------
10328 11 March 2004. Summary of changes for version 20040311:
10330 1) ACPI CA Core Subsystem:
10332 Fixed a problem where errors occurring during the parse phase of control
10333 method execution did not abort cleanly. For example, objects created and
10334 installed in the namespace were not deleted. This caused all subsequent
10335 invocations of the method to return the AE_ALREADY_EXISTS exception.
10337 Implemented a mechanism to force a control method to "Serialized"
10339 if the method attempts to create namespace objects. (The root of the
10340 AE_ALREADY_EXISTS problem.)
10342 Implemented support for the predefined _OSI "internal" control method.
10343 Initial supported strings are "Linux", "Windows 2000", "Windows 2001",
10345 "Windows 2001.1", and can be easily upgraded for new strings as
10347 This feature will allow "other" operating systems to execute the fully
10348 tested, "Windows" code path through the ASL code
10350 Global Lock Support: Now allows multiple acquires and releases with any
10351 internal thread. Removed concept of "owning thread" for this special
10354 Fixed two functions that were inappropriately declaring large objects on
10356 CPU stack: PsParseLoop, NsEvaluateRelative. Reduces the stack usage
10358 method execution considerably.
10360 Fixed a problem in the ACPI 2.0 FACS descriptor (actbl2.h) where the
10361 S4Bios_f field was incorrectly defined as UINT32 instead of UINT32_BIT.
10363 Fixed a problem where AcpiEvGpeDetect would fault if there were no GPEs
10364 defined on the machine.
10366 Implemented two runtime options: One to force all control method
10368 to "Serialized" to mimic Windows behavior, another to disable _OSI
10370 if it causes problems on a given machine.
10372 Code and Data Size: Current and previous core subsystem library sizes are
10373 shown below. These are the code and data sizes for the acpica.lib
10375 by the Microsoft Visual C++ 6.0 compiler, and these values do not include
10376 any ACPI driver or OSPM code. The debug version of the code includes the
10377 debug output trace mechanism and has a much larger code and data size.
10379 that these values will vary depending on the efficiency of the compiler
10381 the compiler options used during generation.
10384 Non-Debug Version: 74.8K Code, 10.1K Data, 84.9K Total
10385 Debug Version: 158.7K Code, 65.1K Data, 223.8K Total
10387 Non-Debug Version: 76.5K Code, 11.3K Data, 87.8K Total
10388 Debug Version: 160.3K Code, 66.0K Data, 226.3K Total
10390 2) iASL Compiler/Disassembler:
10392 Fixed an array size problem for FreeBSD that would cause the compiler to
10395 ----------------------------------------
10396 20 February 2004. Summary of changes for version 20040220:
10399 1) ACPI CA Core Subsystem:
10401 Implemented execution of _SxD methods for Device objects in the
10402 GetObjectInfo interface.
10404 Fixed calls to _SST method to pass the correct arguments.
10406 Added a call to _SST on wake to restore to "working" state.
10408 Check for End-Of-Buffer failure case in the WalkResources interface.
10410 Integrated fix for 64-bit alignment issue in acglobal.h by moving two
10411 structures to the beginning of the file.
10413 After wake, clear GPE status register(s) before enabling GPEs.
10415 After wake, clear/enable power button. (Perhaps we should clear/enable
10417 fixed events upon wake.)
10419 Fixed a couple of possible memory leaks in the Namespace manager.
10421 Integrated latest acnetbsd.h file.
10423 ----------------------------------------
10424 11 February 2004. Summary of changes for version 20040211:
10427 1) ACPI CA Core Subsystem:
10429 Completed investigation and implementation of the call-by-reference
10430 mechanism for control method arguments.
10432 Fixed a problem where a store of an object into an indexed package could
10433 fail if the store occurs within a different method than the method that
10434 created the package.
10436 Fixed a problem where the ToDecimal operator could return incorrect
10439 Fixed a problem where the CopyObject operator could fail on some of the
10441 obscure objects (e.g., Reference objects.)
10443 Improved the output of the Debug object to display buffer, package, and
10446 Fixed a problem where constructs of the form "RefOf (ArgX)" did not
10448 the expected result.
10450 Added permanent ACPI_REPORT_ERROR macros for all instances of the
10451 ACPI_AML_INTERNAL exception.
10453 Integrated latest version of acfreebsd.h
10455 ----------------------------------------
10456 16 January 2004. Summary of changes for version 20040116:
10458 The purpose of this release is primarily to update the copyright years in
10459 each module, thus causing a huge number of diffs. There are a few small
10460 functional changes, however.
10462 1) ACPI CA Core Subsystem:
10464 Improved error messages when there is a problem finding one or more of
10466 required base ACPI tables
10468 Reintroduced the definition of APIC_HEADER in actbl.h
10470 Changed definition of MADT_ADDRESS_OVERRIDE to 64 bits (actbl.h)
10472 Removed extraneous reference to NewObj in dsmthdat.c
10476 Fixed a problem introduced in December that disabled the correct
10478 of Resource Templates
10481 ----------------------------------------
10482 03 December 2003. Summary of changes for version 20031203:
10484 1) ACPI CA Core Subsystem:
10486 Changed the initialization of Operation Regions during subsystem
10487 init to perform two entire walks of the ACPI namespace; The first
10488 to initialize the regions themselves, the second to execute the
10489 _REG methods. This fixed some interdependencies across _REG
10490 methods found on some machines.
10492 Fixed a problem where a Store(Local0, Local1) could simply update
10493 the object reference count, and not create a new copy of the
10494 object if the Local1 is uninitialized.
10496 Implemented support for the _SST reserved method during sleep
10499 Implemented support to clear the SLP_TYP and SLP_EN bits when
10500 waking up, this is apparently required by some machines.
10502 When sleeping, clear the wake status only if SleepState is not S5.
10504 Fixed a problem in AcpiRsExtendedIrqResource() where an incorrect
10505 pointer arithmetic advanced a string pointer too far.
10507 Fixed a problem in AcpiTbGetTablePtr() where a garbage pointer
10508 could be returned if the requested table has not been loaded.
10510 Within the support for IRQ resources, restructured the handling of
10511 the active and edge/level bits.
10513 Fixed a few problems in AcpiPsxExecute() where memory could be
10514 leaked under certain error conditions.
10516 Improved error messages for the cases where the ACPI mode could
10519 Code and Data Size: Current and previous core subsystem library
10520 sizes are shown below. These are the code and data sizes for the
10521 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
10522 these values do not include any ACPI driver or OSPM code. The
10523 debug version of the code includes the debug output trace
10524 mechanism and has a much larger code and data size. Note that
10525 these values will vary depending on the efficiency of the compiler
10526 and the compiler options used during generation.
10528 Previous Release (20031029):
10529 Non-Debug Version: 74.4K Code, 10.1K Data, 84.5K Total
10530 Debug Version: 158.3K Code, 65.0K Data, 223.3K Total
10532 Non-Debug Version: 74.8K Code, 10.1K Data, 84.9K Total
10533 Debug Version: 158.7K Code, 65.1K Data, 223.8K Total
10535 2) iASL Compiler/Disassembler:
10537 Implemented a fix for the iASL disassembler where a bad index was
10538 generated. This was most noticeable on 64-bit platforms
10541 ----------------------------------------
10542 29 October 2003. Summary of changes for version 20031029:
10544 1) ACPI CA Core Subsystem:
10547 Fixed a problem where a level-triggered GPE with an associated
10548 _Lxx control method was incorrectly cleared twice.
10550 Fixed a problem with the Field support code where an access can
10551 occur beyond the end-of-region if the field is non-aligned but
10552 extends to the very end of the parent region (resulted in an
10553 AE_AML_REGION_LIMIT exception.)
10555 Fixed a problem with ACPI Fixed Events where an RT Clock handler
10556 would not get invoked on an RTC event. The RTC event bitmasks for
10557 the PM1 registers were not being initialized properly.
10559 Implemented support for executing _STA and _INI methods for
10560 Processor objects. Although this is currently not part of the
10561 ACPI specification, there is existing ASL code that depends on the
10562 init-time execution of these methods.
10564 Implemented and deployed a GetDescriptorName function to decode
10565 the various types of internal descriptors. Guards against null
10566 descriptors during debug output also.
10568 Implemented and deployed a GetNodeName function to extract the 4-
10569 character namespace node name. This function simplifies the debug
10570 and error output, as well as guarding against null pointers during
10573 Implemented and deployed the ACPI_FORMAT_UINT64 helper macro to
10574 simplify the debug and error output of 64-bit integers. This
10575 macro replaces the HIDWORD and LODWORD macros for dumping these
10578 Updated the implementation of the Stall() operator to only call
10579 AcpiOsStall(), and also return an error if the operand is larger
10580 than 255. This preserves the required behavior of not
10581 relinquishing the processor, as would happen if AcpiOsSleep() was
10582 called for "long stalls".
10584 Constructs of the form "Store(LocalX,LocalX)" where LocalX is not
10585 initialized are now treated as NOOPs.
10587 Cleaned up a handful of warnings during 64-bit generation.
10589 Fixed a reported error where and incorrect GPE number was passed
10590 to the GPE dispatch handler. This value is only used for error
10591 output, however. Used this opportunity to clean up and streamline
10592 the GPE dispatch code.
10594 Code and Data Size: Current and previous core subsystem library
10595 sizes are shown below. These are the code and data sizes for the
10596 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
10597 these values do not include any ACPI driver or OSPM code. The
10599 debug version of the code includes the debug output trace
10600 mechanism and has a much larger code and data size. Note that
10601 these values will vary depending on the efficiency of the compiler
10602 and the compiler options used during generation.
10604 Previous Release (20031002):
10605 Non-Debug Version: 74.1K Code, 9.7K Data, 83.8K Total
10606 Debug Version: 157.9K Code, 64.8K Data, 222.7K Total
10608 Non-Debug Version: 74.4K Code, 10.1K Data, 84.5K Total
10609 Debug Version: 158.3K Code, 65.0K Data, 223.3K Total
10612 2) iASL Compiler/Disassembler:
10614 Updated the iASL compiler to return an error if the operand to the
10615 Stall() operator is larger than 255.
10618 ----------------------------------------
10619 02 October 2003. Summary of changes for version 20031002:
10622 1) ACPI CA Core Subsystem:
10624 Fixed a problem with Index Fields where the index was not
10625 incremented for fields that require multiple writes to the
10626 index/data registers (Fields that are wider than the data
10629 Fixed a problem with all Field objects where a write could go
10630 beyond the end-of-field if the field was larger than the access
10631 granularity and therefore required multiple writes to complete the
10632 request. An extra write beyond the end of the field could happen
10635 Fixed a problem with Index Fields where a BUFFER_OVERFLOW error
10636 would incorrectly be returned if the width of the Data Register
10637 was larger than the specified field access width.
10639 Completed fixes for LoadTable() and Unload() and verified their
10640 operation. Implemented full support for the "DdbHandle" object
10641 throughout the ACPI CA subsystem.
10643 Implemented full support for the MADT and ECDT tables in the ACPI
10644 CA header files. Even though these tables are not directly
10645 consumed by ACPI CA, the header definitions are useful for ACPI
10648 Integrated resource descriptor fixes posted to the Linux ACPI
10649 list. This included checks for minimum descriptor length, and
10650 support for trailing NULL strings within descriptors that have
10651 optional string elements.
10653 Code and Data Size: Current and previous core subsystem library
10654 sizes are shown below. These are the code and data sizes for the
10655 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
10656 these values do not include any ACPI driver or OSPM code. The
10657 debug version of the code includes the debug output trace
10658 mechanism and has a much larger code and data size. Note that
10659 these values will vary depending on the efficiency of the compiler
10660 and the compiler options used during generation.
10662 Previous Release (20030918):
10663 Non-Debug Version: 73.9K Code, 9.7K Data, 83.6K Total
10664 Debug Version: 157.3K Code, 64.5K Data, 221.8K Total
10666 Non-Debug Version: 74.1K Code, 9.7K Data, 83.8K Total
10667 Debug Version: 157.9K Code, 64.8K Data, 222.7K Total
10672 Implemented detection of non-ASCII characters within the input
10673 source ASL file. This catches attempts to compile binary (AML)
10674 files early in the compile, with an informative error message.
10676 Fixed a problem where the disassembler would fault if the output
10677 filename could not be generated or if the output file could not be
10680 ----------------------------------------
10681 18 September 2003. Summary of changes for version 20030918:
10684 1) ACPI CA Core Subsystem:
10686 Found and fixed a longstanding problem with the late execution of
10687 the various deferred AML opcodes (such as Operation Regions,
10688 Buffer Fields, Buffers, and Packages). If the name string
10689 specified for the name of the new object placed the object in a
10690 scope other than the current scope, the initialization/execution
10691 of the opcode failed. The solution to this problem was to
10692 implement a mechanism where the late execution of such opcodes
10693 does not attempt to lookup/create the name a second time in an
10694 incorrect scope. This fixes the "region size computed
10695 incorrectly" problem.
10697 Fixed a call to AcpiHwRegisterWrite in hwregs.c that was causing a
10698 Global Lock AE_BAD_PARAMETER error.
10700 Fixed several 64-bit issues with prototypes, casting and data
10703 Removed duplicate prototype from acdisasm.h
10705 Fixed an issue involving EC Operation Region Detach (Shaohua Li)
10707 Code and Data Size: Current and previous core subsystem library
10708 sizes are shown below. These are the code and data sizes for the
10709 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
10710 these values do not include any ACPI driver or OSPM code. The
10711 debug version of the code includes the debug output trace
10712 mechanism and has a much larger code and data size. Note that
10713 these values will vary depending on the efficiency of the compiler
10714 and the compiler options used during generation.
10718 Non-Debug Version: 73.7K Code, 9.7K Data, 83.4K Total
10719 Debug Version: 156.9K Code, 64.2K Data, 221.1K Total
10721 Non-Debug Version: 73.9K Code, 9.7K Data, 83.6K Total
10722 Debug Version: 157.3K Code, 64.5K Data, 221.8K Total
10727 Fixed the AcpiOsSleep implementation in osunixxf.c to pass the
10728 correct sleep time in seconds.
10730 ----------------------------------------
10731 14 July 2003. Summary of changes for version 20030619:
10733 1) ACPI CA Core Subsystem:
10735 Parse SSDTs in order discovered, as opposed to reverse order
10738 Fixes from FreeBSD and NetBSD. (Frank van der Linden, Thomas
10745 Dynamically allocate SDT list (suggested by Andi Kleen)
10747 proc function return value cleanups (Andi Kleen)
10749 Correctly handle NMI watchdog during long stalls (Andrew Morton)
10751 Make it so acpismp=force works (reported by Andrew Morton)
10754 ----------------------------------------
10755 19 June 2003. Summary of changes for version 20030619:
10757 1) ACPI CA Core Subsystem:
10759 Fix To/FromBCD, eliminating the need for an arch-specific #define.
10761 Do not acquire a semaphore in the S5 shutdown path.
10763 Fix ex_digits_needed for 0. (Takayoshi Kochi)
10765 Fix sleep/stall code reversal. (Andi Kleen)
10767 Revert a change having to do with control method calling
10772 acpiphp update (Takayoshi Kochi)
10774 Export acpi_disabled for sonypi (Stelian Pop)
10776 Mention acpismp=force in config help
10778 Re-add acpitable.c and acpismp=force. This improves backwards
10780 compatibility and also cleans up the code to a significant degree.
10782 Add ASUS Value-add driver (Karol Kozimor and Julien Lerouge)
10784 ----------------------------------------
10785 22 May 2003. Summary of changes for version 20030522:
10787 1) ACPI CA Core Subsystem:
10789 Found and fixed a reported problem where an AE_NOT_FOUND error
10790 occurred occasionally during _BST evaluation. This turned out to
10791 be an Owner ID allocation issue where a called method did not get
10792 a new ID assigned to it. Eventually, (after 64k calls), the Owner
10793 ID UINT16 would wraparound so that the ID would be the same as the
10794 caller's and the called method would delete the caller's
10797 Implemented extended error reporting for control methods that are
10798 aborted due to a run-time exception. Output includes the exact
10799 AML instruction that caused the method abort, a dump of the method
10800 locals and arguments at the time of the abort, and a trace of all
10801 nested control method calls.
10803 Modified the interpreter to allow the creation of buffers of zero
10804 length from the AML code. Implemented new code to ensure that no
10805 attempt is made to actually allocate a memory buffer (of length
10806 zero) - instead, a simple buffer object with a NULL buffer pointer
10807 and length zero is created. A warning is no longer issued when
10808 the AML attempts to create a zero-length buffer.
10810 Implemented a workaround for the "leading asterisk issue" in
10811 _HIDs, _UIDs, and _CIDs in the AML interpreter. One leading
10812 asterisk is automatically removed if present in any HID, UID, or
10813 CID strings. The iASL compiler will still flag this asterisk as
10816 Implemented full support for _CID methods that return a package of
10817 multiple CIDs (Compatible IDs). The AcpiGetObjectInfo() interface
10818 now additionally returns a device _CID list if present. This
10819 required a change to the external interface in order to pass an
10820 ACPI_BUFFER object as a parameter since the _CID list is of
10823 Fixed a problem with the new AE_SAME_HANDLER exception where
10824 handler initialization code did not know about this exception.
10826 Code and Data Size: Current and previous core subsystem library
10827 sizes are shown below. These are the code and data sizes for the
10828 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
10829 these values do not include any ACPI driver or OSPM code. The
10830 debug version of the code includes the debug output trace
10831 mechanism and has a much larger code and data size. Note that
10832 these values will vary depending on the efficiency of the compiler
10833 and the compiler options used during generation.
10835 Previous Release (20030509):
10836 Non-Debug Version: 73.4K Code, 9.7K Data, 83.1K Total
10837 Debug Version: 156.1K Code, 63.9K Data, 220.0K Total
10839 Non-Debug Version: 73.7K Code, 9.7K Data, 83.4K Total
10840 Debug Version: 156.9K Code, 64.2K Data, 221.1K Total
10845 Fixed a bug in which we would reinitialize the ACPI interrupt
10846 after it was already working, thus disabling all ACPI and the IRQs
10847 for any other device sharing the interrupt. (Thanks to Stian
10850 Toshiba driver update (John Belmonte)
10852 Return only 0 or 1 for our interrupt handler status (Andrew
10858 Fixed a reported problem where multiple (nested) ElseIf()
10859 statements were not handled correctly by the compiler, resulting
10860 in incorrect warnings and incorrect AML code. This was a problem
10861 in both the ASL parser and the code generator.
10866 Added changes to existing interfaces, new exception codes, and new
10867 text concerning reference count object management versus garbage
10870 ----------------------------------------
10871 09 May 2003. Summary of changes for version 20030509.
10874 1) ACPI CA Core Subsystem:
10876 Changed the subsystem initialization sequence to hold off
10877 installation of address space handlers until the hardware has been
10878 initialized and the system has entered ACPI mode. This is because
10879 the installation of space handlers can cause _REG methods to be
10880 run. Previously, the _REG methods could potentially be run before
10881 ACPI mode was enabled.
10883 Fixed some memory leak issues related to address space handler and
10884 notify handler installation. There were some problems with the
10885 reference count mechanism caused by the fact that the handler
10886 objects are shared across several namespace objects.
10888 Fixed a reported problem where reference counts within the
10889 namespace were not properly updated when named objects created by
10890 method execution were deleted.
10892 Fixed a reported problem where multiple SSDTs caused a deletion
10893 issue during subsystem termination. Restructured the table data
10894 structures to simplify the linked lists and the related code.
10896 Fixed a problem where the table ID associated with secondary
10897 tables (SSDTs) was not being propagated into the namespace objects
10898 created by those tables. This would only present a problem for
10899 tables that are unloaded at run-time, however.
10901 Updated AcpiOsReadable and AcpiOsWritable to use the ACPI_SIZE
10902 type as the length parameter (instead of UINT32).
10904 Solved a long-standing problem where an ALREADY_EXISTS error
10905 appears on various systems. This problem could happen when there
10906 are multiple PCI_Config operation regions under a single PCI root
10907 bus. This doesn't happen very frequently, but there are some
10908 systems that do this in the ASL.
10910 Fixed a reported problem where the internal DeleteNode function
10911 was incorrectly handling the case where a namespace node was the
10912 first in the parent's child list, and had additional peers (not
10913 the only child, but first in the list of children.)
10915 Code and Data Size: Current core subsystem library sizes are shown
10916 below. These are the code and data sizes for the acpica.lib
10917 produced by the Microsoft Visual C++ 6.0 compiler, and these
10918 values do not include any ACPI driver or OSPM code. The debug
10919 version of the code includes the debug output trace mechanism and
10920 has a much larger code and data size. Note that these values will
10921 vary depending on the efficiency of the compiler and the compiler
10922 options used during generation.
10925 Non-Debug Version: 73.7K Code, 9.5K Data, 83.2K Total
10926 Debug Version: 156.1K Code, 63.6K Data, 219.7K Total
10928 Non-Debug Version: 73.4K Code, 9.7K Data, 83.1K Total
10929 Debug Version: 156.1K Code, 63.9K Data, 220.0K Total
10934 Allow ":" in OS override string (Ducrot Bruno)
10936 Kobject fix (Greg KH)
10939 3 iASL Compiler/Disassembler:
10941 Fixed a problem in the generation of the C source code files (AML
10942 is emitted in C source statements for BIOS inclusion) where the
10943 Ascii dump that appears within a C comment at the end of each line
10944 could cause a compile time error if the AML sequence happens to
10945 have an open comment or close comment sequence embedded.
10948 ----------------------------------------
10949 24 April 2003. Summary of changes for version 20030424.
10952 1) ACPI CA Core Subsystem:
10954 Support for big-endian systems has been implemented. Most of the
10955 support has been invisibly added behind big-endian versions of the
10956 ACPI_MOVE_* macros.
10958 Fixed a problem in AcpiHwDisableGpeBlock() and
10959 AcpiHwClearGpeBlock() where an incorrect offset was passed to the
10960 low level hardware write routine. The offset parameter was
10961 actually eliminated from the low level read/write routines because
10962 they had become obsolete.
10964 Fixed a problem where a handler object was deleted twice during
10965 the removal of a fixed event handler.
10970 A fix for SMP systems with link devices was contributed by
10974 (2.5) Return whether we handled the interrupt in our IRQ handler.
10975 (Linux ISRs no longer return void, so we can propagate the handler
10976 return value from the ACPI CA core back to the OS.)
10982 The ACPI CA Programmer Reference has been updated to reflect new
10983 interfaces and changes to existing interfaces.
10985 ----------------------------------------
10986 28 March 2003. Summary of changes for version 20030328.
10988 1) ACPI CA Core Subsystem:
10990 The GPE Block Device support has been completed. New interfaces
10991 are AcpiInstallGpeBlock and AcpiRemoveGpeBlock. The Event
10992 interfaces (enable, disable, clear, getstatus) have been split
10993 into separate interfaces for Fixed Events and General Purpose
10994 Events (GPEs) in order to support GPE Block Devices properly.
10996 Fixed a problem where the error message "Failed to acquire
10997 semaphore" would appear during operations on the embedded
11000 Code and Data Size: Current core subsystem library sizes are shown
11001 below. These are the code and data sizes for the acpica.lib
11002 produced by the Microsoft Visual C++ 6.0 compiler, and these
11003 values do not include any ACPI driver or OSPM code. The debug
11004 version of the code includes the debug output trace mechanism and
11005 has a much larger code and data size. Note that these values will
11006 vary depending on the efficiency of the compiler and the compiler
11007 options used during generation.
11010 Non-Debug Version: 72.3K Code, 9.5K Data, 81.8K Total
11011 Debug Version: 154.0K Code, 63.4K Data, 217.4K Total
11013 Non-Debug Version: 73.7K Code, 9.5K Data, 83.2K Total
11014 Debug Version: 156.1K Code, 63.6K Data, 219.7K Total
11017 ----------------------------------------
11018 28 February 2003. Summary of changes for version 20030228.
11021 1) ACPI CA Core Subsystem:
11023 The GPE handling and dispatch code has been completely overhauled
11024 in preparation for support of GPE Block Devices (ID ACPI0006).
11025 This affects internal data structures and code only; there should
11026 be no differences visible externally. One new file has been
11029 The FADT fields GPE0_BLK_LEN and GPE1_BLK_LEN are now the only
11030 fields that are used to determine the GPE block lengths. The
11031 REGISTER_BIT_WIDTH field of the X_GPEx_BLK extended address
11032 structures are ignored. This is per the ACPI specification but it
11033 isn't very clear. The full 256 Block 0/1 GPEs are now supported
11034 (the use of REGISTER_BIT_WIDTH limited the number of GPEs to 128).
11036 In the SCI interrupt handler, removed the read of the PM1_CONTROL
11037 register to look at the SCI_EN bit. On some machines, this read
11038 causes an SMI event and greatly slows down SCI events. (This may
11039 in fact be the cause of slow battery status response on some
11042 Fixed a problem where a store of a NULL string to a package object
11043 could cause the premature deletion of the object. This was seen
11044 during execution of the battery _BIF method on some systems,
11045 resulting in no battery data being returned.
11047 Added AcpiWalkResources interface to simplify parsing of resource
11050 Code and Data Size: Current core subsystem library sizes are shown
11051 below. These are the code and data sizes for the acpica.lib
11052 produced by the Microsoft Visual C++ 6.0 compiler, and these
11053 values do not include any ACPI driver or OSPM code. The debug
11054 version of the code includes the debug output trace mechanism and
11055 has a much larger code and data size. Note that these values will
11056 vary depending on the efficiency of the compiler and the compiler
11057 options used during generation.
11060 Non-Debug Version: 72.0K Code, 9.5K Data, 81.5K Total
11061 Debug Version: 153.0K Code, 62.9K Data, 215.9K Total
11063 Non-Debug Version: 72.3K Code, 9.5K Data, 81.8K Total
11064 Debug Version: 154.0K Code, 63.4K Data, 217.4K Total
11069 S3 fixes (Ole Rohne)
11071 Update ACPI PHP driver with to use new acpi_walk_resource API
11074 Add S4BIOS support (Pavel Machek)
11076 Map in entire table before performing checksum (John Stultz)
11078 Expand the mem= cmdline to allow the specification of reserved and
11079 ACPI DATA blocks (Pavel Machek)
11081 Never use ACPI on VISWS
11083 Fix derive_pci_id (Ducrot Bruno, Alvaro Lopez)
11085 Revert a change that allowed P_BLK lengths to be 4 or 5. This is
11086 causing us to think that some systems support C2 when they really
11089 Do not count processor objects for non-present CPUs (Thanks to
11095 Fixed a problem where ASL include files could not be found and
11098 Added support for the _PDC reserved name.
11101 ----------------------------------------
11102 22 January 2003. Summary of changes for version 20030122.
11105 1) ACPI CA Core Subsystem:
11107 Added a check for constructs of the form: Store (Local0, Local0)
11108 where Local0 is not initialized. Apparently, some BIOS
11109 programmers believe that this is a NOOP. Since this store doesn't
11110 do anything anyway, the new prototype behavior will ignore this
11111 error. This is a case where we can relax the strict checking in
11112 the interpreter in the name of compatibility.
11117 The AcpiSrc Source Conversion Utility has been released with the
11118 Linux package for the first time. This is the utility that is
11119 used to convert the ACPI CA base source code to the Linux version.
11121 (Both) Handle P_BLK lengths shorter than 6 more gracefully
11123 (Both) Move more headers to include/acpi, and delete an unused
11126 (Both) Move drivers/acpi/include directory to include/acpi
11128 (Both) Boot functions don't use cmdline, so don't pass it around
11130 (Both) Remove include of unused header (Adrian Bunk)
11132 (Both) acpiphp.h includes both linux/acpi.h and acpi_bus.h. Since
11134 former now also includes the latter, acpiphp.h only needs the one,
11137 (2.5) Make it possible to select method of bios restoring after S3
11138 resume. [=> no more ugly ifdefs] (Pavel Machek)
11140 (2.5) Make proc write interfaces work (Pavel Machek)
11142 (2.5) Properly init/clean up in cpufreq/acpi (Dominik Brodowski)
11144 (2.5) Break out ACPI Perf code into its own module, under cpufreq
11145 (Dominik Brodowski)
11147 (2.4) S4BIOS support (Ducrot Bruno)
11149 (2.4) Fix acpiphp_glue.c for latest ACPI struct changes (Sergio
11155 Added support to disassemble SSDT and PSDTs.
11157 Implemented support to obtain SSDTs from the Windows registry if
11161 ----------------------------------------
11162 09 January 2003. Summary of changes for version 20030109.
11164 1) ACPI CA Core Subsystem:
11166 Changed the behavior of the internal Buffer-to-String conversion
11167 function. The current ACPI specification states that the contents
11168 of the buffer are "converted to a string of two-character
11169 hexadecimal numbers, each separated by a space". Unfortunately,
11170 this definition is not backwards compatible with existing ACPI 1.0
11171 implementations (although the behavior was not defined in the ACPI
11172 1.0 specification). The new behavior simply copies data from the
11173 buffer to the string until a null character is found or the end of
11174 the buffer is reached. The new String object is always null
11175 terminated. This problem was seen during the generation of _BIF
11176 battery data where incorrect strings were returned for battery
11177 type, etc. This will also require an errata to the ACPI
11180 Renamed all instances of NATIVE_UINT and NATIVE_INT to
11181 ACPI_NATIVE_UINT and ACPI_NATIVE_INT, respectively.
11183 Copyright in all module headers (both Linux and non-Linux) has be
11186 Code and Data Size: Current core subsystem library sizes are shown
11187 below. These are the code and data sizes for the acpica.lib
11188 produced by the Microsoft Visual C++ 6.0 compiler, and these
11189 values do not include any ACPI driver or OSPM code. The debug
11190 version of the code includes the debug output trace mechanism and
11191 has a much larger code and data size. Note that these values will
11192 vary depending on the efficiency of the compiler and the compiler
11193 options used during generation.
11196 Non-Debug Version: 72.0K Code, 9.5K Data, 81.5K Total
11197 Debug Version: 153.0K Code, 62.9K Data, 215.9K Total
11199 Non-Debug Version: 72.0K Code, 9.5K Data, 81.5K Total
11200 Debug Version: 153.0K Code, 62.9K Data, 215.9K Total
11205 Fixed an oops on module insertion/removal (Matthew Tippett)
11207 (2.4) Fix to handle dynamic size of mp_irqs (Joerg Prante)
11209 (2.5) Replace pr_debug (Randy Dunlap)
11211 (2.5) Remove usage of CPUFREQ_ALL_CPUS (Dominik Brodowski)
11213 (Both) Eliminate spawning of thread from timer callback, in favor
11216 (Both) Show Lid status in /proc (Zdenek OGAR Skalak)
11218 (Both) Added define for Fixed Function HW region (Matthew Wilcox)
11220 (Both) Add missing statics to button.c (Pavel Machek)
11222 Several changes have been made to the source code translation
11223 utility that generates the Linux Code in order to make the code
11226 All typedefs on structs and unions have been removed in keeping
11227 with the Linux coding style.
11229 Removed the non-Linux SourceSafe module revision number from each
11232 Completed major overhaul of symbols to be lowercased for linux.
11233 Doubled the number of symbols that are lowercased.
11235 Fixed a problem where identifiers within procedure headers and
11236 within quotes were not fully lower cased (they were left with a
11239 Some C macros whose only purpose is to allow the generation of 16-
11240 bit code are now completely removed in the Linux code, increasing
11241 readability and maintainability.
11243 ----------------------------------------
11245 12 December 2002. Summary of changes for version 20021212.
11248 1) ACPI CA Core Subsystem:
11250 Fixed a problem where the creation of a zero-length AML Buffer
11251 would cause a fault.
11253 Fixed a problem where a Buffer object that pointed to a static AML
11254 buffer (in an ACPI table) could inadvertently be deleted, causing
11257 Fixed a problem where a user buffer (passed in to the external
11258 ACPI CA interfaces) could be overwritten if the buffer was too
11259 small to complete the operation, causing memory corruption.
11261 Fixed a problem in the Buffer-to-String conversion code where a
11262 string of length one was always returned, regardless of the size
11263 of the input Buffer object.
11265 Removed the NATIVE_CHAR data type across the entire source due to
11266 lack of need and lack of consistent use.
11268 Code and Data Size: Current core subsystem library sizes are shown
11269 below. These are the code and data sizes for the acpica.lib
11270 produced by the Microsoft Visual C++ 6.0 compiler, and these
11271 values do not include any ACPI driver or OSPM code. The debug
11272 version of the code includes the debug output trace mechanism and
11273 has a much larger code and data size. Note that these values will
11274 vary depending on the efficiency of the compiler and the compiler
11275 options used during generation.
11278 Non-Debug Version: 72.1K Code, 9.5K Data, 81.6K Total
11279 Debug Version: 152.7K Code, 62.7K Data, 215.4K Total
11281 Non-Debug Version: 72.0K Code, 9.5K Data, 81.5K Total
11282 Debug Version: 153.0K Code, 62.9K Data, 215.9K Total
11285 ----------------------------------------
11286 05 December 2002. Summary of changes for version 20021205.
11288 1) ACPI CA Core Subsystem:
11290 Fixed a problem where a store to a String or Buffer object could
11291 cause corruption of the DSDT if the object type being stored was
11292 the same as the target object type and the length of the object
11293 being stored was equal to or smaller than the original (existing)
11294 target object. This was seen to cause corruption of battery _BIF
11295 buffers if the _BIF method modified the buffer on the fly.
11297 Fixed a problem where an internal error was generated if a control
11298 method invocation was used in an OperationRegion, Buffer, or
11299 Package declaration. This was caused by the deferred parsing of
11300 the control method and thus the deferred creation of the internal
11301 method object. The solution to this problem was to create the
11302 internal method object at the moment the method is encountered in
11303 the first pass - so that subsequent references to the method will
11304 able to obtain the required parameter count and thus properly
11305 parse the method invocation. This problem presented itself as an
11306 AE_AML_INTERNAL during the pass 1 parse phase during table load.
11308 Fixed a problem where the internal String object copy routine did
11309 not always allocate sufficient memory for the target String object
11310 and caused memory corruption. This problem was seen to cause
11311 "Allocation already present in list!" errors as memory allocation
11314 Implemented a new function for the evaluation of namespace objects
11315 that allows the specification of the allowable return object
11316 types. This simplifies a lot of code that checks for a return
11317 object of one or more specific objects returned from the
11318 evaluation (such as _STA, etc.) This may become and external
11319 function if it would be useful to ACPI-related drivers.
11321 Completed another round of prefixing #defines with "ACPI_" for
11324 Completed additional code restructuring to allow more modular
11325 linking for iASL compiler and AcpiExec. Several files were split
11326 creating new files. New files: nsparse.c dsinit.c evgpe.c
11328 Implemented an abort mechanism to terminate an executing control
11329 method via the AML debugger. This feature is useful for debugging
11330 control methods that depend (wait) for specific hardware
11333 Code and Data Size: Current core subsystem library sizes are shown
11334 below. These are the code and data sizes for the acpica.lib
11335 produced by the Microsoft Visual C++ 6.0 compiler, and these
11336 values do not include any ACPI driver or OSPM code. The debug
11337 version of the code includes the debug output trace mechanism and
11338 has a much larger code and data size. Note that these values will
11339 vary depending on the efficiency of the compiler and the compiler
11340 options used during generation.
11343 Non-Debug Version: 71.4K Code, 9.0K Data, 80.4K Total
11344 Debug Version: 152.9K Code, 63.3K Data, 216.2K Total
11346 Non-Debug Version: 72.1K Code, 9.5K Data, 81.6K Total
11347 Debug Version: 152.7K Code, 62.7K Data, 215.4K Total
11350 2) iASL Compiler/Disassembler
11352 Fixed a compiler code generation problem for "Interrupt" Resource
11353 Descriptors. If specified in the ASL, the optional "Resource
11354 Source Index" and "Resource Source" fields were not inserted into
11355 the correct location within the AML resource descriptor, creating
11356 an invalid descriptor.
11358 Fixed a disassembler problem for "Interrupt" resource descriptors.
11359 The optional "Resource Source Index" and "Resource Source" fields
11363 ----------------------------------------
11364 22 November 2002. Summary of changes for version 20021122.
11367 1) ACPI CA Core Subsystem:
11369 Fixed a reported problem where an object stored to a Method Local
11370 or Arg was not copied to a new object during the store - the
11371 object pointer was simply copied to the Local/Arg. This caused
11372 all subsequent operations on the Local/Arg to also affect the
11373 original source of the store operation.
11375 Fixed a problem where a store operation to a Method Local or Arg
11376 was not completed properly if the Local/Arg contained a reference
11377 (from RefOf) to a named field. The general-purpose store-to-
11378 namespace-node code is now used so that this case is handled
11381 Fixed a problem where the internal object copy routine would cause
11382 a protection fault if the object being copied was a Package and
11383 contained either 1) a NULL package element or 2) a nested sub-
11386 Fixed a problem with the GPE initialization that resulted from an
11387 ambiguity in the ACPI specification. One section of the
11388 specification states that both the address and length of the GPE
11389 block must be zero if the block is not supported. Another section
11390 implies that only the address need be zero if the block is not
11391 supported. The code has been changed so that both the address and
11392 the length must be non-zero to indicate a valid GPE block (i.e.,
11393 if either the address or the length is zero, the GPE block is
11396 Code and Data Size: Current core subsystem library sizes are shown
11397 below. These are the code and data sizes for the acpica.lib
11398 produced by the Microsoft Visual C++ 6.0 compiler, and these
11399 values do not include any ACPI driver or OSPM code. The debug
11400 version of the code includes the debug output trace mechanism and
11401 has a much larger code and data size. Note that these values will
11402 vary depending on the efficiency of the compiler and the compiler
11403 options used during generation.
11406 Non-Debug Version: 71.3K Code, 9.0K Data, 80.3K Total
11407 Debug Version: 152.7K Code, 63.2K Data, 215.5K Total
11409 Non-Debug Version: 71.4K Code, 9.0K Data, 80.4K Total
11410 Debug Version: 152.9K Code, 63.3K Data, 216.2K Total
11415 Cleaned up EC driver. Exported an external EC read/write
11416 interface. By going through this, other drivers (most notably
11417 sonypi) will be able to serialize access to the EC.
11420 3) iASL Compiler/Disassembler
11422 Implemented support to optionally generate include files for both
11423 ASM and C (the -i switch). This simplifies BIOS development by
11424 automatically creating include files that contain external
11425 declarations for the symbols that are created within the
11427 (optionally generated) ASM and C AML source files.
11430 ----------------------------------------
11431 15 November 2002. Summary of changes for version 20021115.
11433 1) ACPI CA Core Subsystem:
11435 Fixed a memory leak problem where an error during resolution of
11437 method arguments during a method invocation from another method
11438 failed to cleanup properly by deleting all successfully resolved
11441 Fixed a problem where the target of the Index() operator was not
11442 correctly constructed if the source object was a package. This
11443 problem has not been detected because the use of a target operand
11444 with Index() is very rare.
11446 Fixed a problem with the Index() operator where an attempt was
11447 made to delete the operand objects twice.
11449 Fixed a problem where an attempt was made to delete an operand
11450 twice during execution of the CondRefOf() operator if the target
11453 Implemented the first of perhaps several internal create object
11454 functions that create and initialize a specific object type. This
11455 consolidates duplicated code wherever the object is created, thus
11456 shrinking the size of the subsystem.
11458 Implemented improved debug/error messages for errors that occur
11459 during nested method invocations. All executing method pathnames
11460 are displayed (with the error) as the call stack is unwound - thus
11463 Fixed a problem introduced in the 10/02 release that caused
11464 premature deletion of a buffer object if a buffer was used as an
11465 ASL operand where an integer operand is required (Thus causing an
11466 implicit object conversion from Buffer to Integer.) The change in
11467 the 10/02 release was attempting to fix a memory leak (albeit
11470 Code and Data Size: Current core subsystem library sizes are shown
11471 below. These are the code and data sizes for the acpica.lib
11472 produced by the Microsoft Visual C++ 6.0 compiler, and these
11473 values do not include any ACPI driver or OSPM code. The debug
11474 version of the code includes the debug output trace mechanism and
11475 has a much larger code and data size. Note that these values will
11476 vary depending on the efficiency of the compiler and the compiler
11477 options used during generation.
11480 Non-Debug Version: 71.9K Code, 9.1K Data, 81.0K Total
11481 Debug Version: 153.1K Code, 63.3K Data, 216.4K Total
11483 Non-Debug Version: 71.3K Code, 9.0K Data, 80.3K Total
11484 Debug Version: 152.7K Code, 63.2K Data, 215.5K Total
11489 Changed the implementation of the ACPI semaphores to use down()
11490 instead of down_interruptable(). It is important that the
11491 execution of ACPI control methods not be interrupted by signals.
11492 Methods must run to completion, or the system may be left in an
11493 unknown/unstable state.
11495 Fixed a compilation error when CONFIG_SOFTWARE_SUSPEND is not set.
11499 3) iASL Compiler/Disassembler
11502 Changed the default location of output files. All output files
11503 are now placed in the current directory by default instead of in
11504 the directory of the source file. This change may affect some
11505 existing makefiles, but it brings the behavior of the compiler in
11506 line with other similar tools. The location of the output files
11507 can be overridden with the -p command line switch.
11510 ----------------------------------------
11511 11 November 2002. Summary of changes for version 20021111.
11514 0) ACPI Specification 2.0B is released and is now available at:
11515 http://www.acpi.info/index.html
11518 1) ACPI CA Core Subsystem:
11520 Implemented support for the ACPI 2.0 SMBus Operation Regions.
11521 This includes the early detection and handoff of the request to
11522 the SMBus region handler (avoiding all of the complex field
11523 support code), and support for the bidirectional return packet
11524 from an SMBus write operation. This paves the way for the
11525 development of SMBus drivers in each host operating system.
11527 Fixed a problem where the semaphore WAIT_FOREVER constant was
11528 defined as 32 bits, but must be 16 bits according to the ACPI
11529 specification. This had the side effect of causing ASL
11530 Mutex/Event timeouts even though the ASL code requested a wait
11531 forever. Changed all internal references to the ACPI timeout
11532 parameter to 16 bits to prevent future problems. Changed the name
11533 of WAIT_FOREVER to ACPI_WAIT_FOREVER.
11535 Code and Data Size: Current core subsystem library sizes are shown
11536 below. These are the code and data sizes for the acpica.lib
11537 produced by the Microsoft Visual C++ 6.0 compiler, and these
11538 values do not include any ACPI driver or OSPM code. The debug
11539 version of the code includes the debug output trace mechanism and
11540 has a much larger code and data size. Note that these values will
11541 vary depending on the efficiency of the compiler and the compiler
11542 options used during generation.
11545 Non-Debug Version: 71.4K Code, 9.0K Data, 80.4K Total
11546 Debug Version: 152.3K Code, 63.0K Data, 215.3K Total
11548 Non-Debug Version: 71.9K Code, 9.1K Data, 81.0K Total
11549 Debug Version: 153.1K Code, 63.3K Data, 216.4K Total
11554 Module loading/unloading fixes (John Cagle)
11557 3) iASL Compiler/Disassembler
11559 Added support for the SMBBlockProcessCall keyword (ACPI 2.0)
11561 Implemented support for the disassembly of all SMBus protocol
11562 keywords (SMBQuick, SMBWord, etc.)
11564 ----------------------------------------
11565 01 November 2002. Summary of changes for version 20021101.
11568 1) ACPI CA Core Subsystem:
11570 Fixed a problem where platforms that have a GPE1 block but no GPE0
11571 block were not handled correctly. This resulted in a "GPE
11572 overlap" error message. GPE0 is no longer required.
11574 Removed code added in the previous release that inserted nodes
11575 into the namespace in alphabetical order. This caused some side-
11576 effects on various machines. The root cause of the problem is
11577 still under investigation since in theory, the internal ordering
11578 of the namespace nodes should not matter.
11581 Enhanced error reporting for the case where a named object is not
11582 found during control method execution. The full ACPI namepath
11583 (name reference) of the object that was not found is displayed in
11586 Note: as a result of the overhaul of the namespace object types in
11587 the previous release, the namespace nodes for the predefined
11588 scopes (_TZ, _PR, etc.) are now of the type ACPI_TYPE_LOCAL_SCOPE
11589 instead of ACPI_TYPE_ANY. This simplifies the namespace
11590 management code but may affect code that walks the namespace tree
11591 looking for specific object types.
11593 Code and Data Size: Current core subsystem library sizes are shown
11594 below. These are the code and data sizes for the acpica.lib
11595 produced by the Microsoft Visual C++ 6.0 compiler, and these
11596 values do not include any ACPI driver or OSPM code. The debug
11597 version of the code includes the debug output trace mechanism and
11598 has a much larger code and data size. Note that these values will
11599 vary depending on the efficiency of the compiler and the compiler
11600 options used during generation.
11603 Non-Debug Version: 70.7K Code, 8.6K Data, 79.3K Total
11604 Debug Version: 151.7K Code, 62.4K Data, 214.1K Total
11606 Non-Debug Version: 71.4K Code, 9.0K Data, 80.4K Total
11607 Debug Version: 152.3K Code, 63.0K Data, 215.3K Total
11612 Fixed a problem introduced in the previous release where the
11613 Processor and Thermal objects were not recognized and installed in
11614 /proc. This was related to the scope type change described above.
11617 3) iASL Compiler/Disassembler
11619 Implemented the -g option to get all of the required ACPI tables
11620 from the registry and save them to files (Windows version of the
11621 compiler only.) The required tables are the FADT, FACS, and DSDT.
11623 Added ACPI table checksum validation during table disassembly in
11624 order to catch corrupted tables.
11627 ----------------------------------------
11628 22 October 2002. Summary of changes for version 20021022.
11630 1) ACPI CA Core Subsystem:
11632 Implemented a restriction on the Scope operator that the target
11633 must already exist in the namespace at the time the operator is
11634 encountered (during table load or method execution). In other
11635 words, forward references are not allowed and Scope() cannot
11636 create a new object. This changes the previous behavior where the
11637 interpreter would create the name if not found. This new behavior
11638 correctly enables the search-to-root algorithm during namespace
11639 lookup of the target name. Because of this upsearch, this fixes
11640 the known Compaq _SB_.OKEC problem and makes both the AML
11641 interpreter and iASL compiler compatible with other ACPI
11644 Completed a major overhaul of the internal ACPI object types for
11645 the ACPI Namespace and the associated operand objects. Many of
11646 these types had become obsolete with the introduction of the two-
11647 pass namespace load. This cleanup simplifies the code and makes
11648 the entire namespace load mechanism much clearer and easier to
11651 Improved debug output for tracking scope opening/closing to help
11652 diagnose scoping issues. The old scope name as well as the new
11653 scope name are displayed. Also improved error messages for
11654 problems with ASL Mutex objects and error messages for GPE
11657 Cleaned up the namespace dump code, removed obsolete code.
11659 All string output (for all namespace/object dumps) now uses the
11660 common ACPI string output procedure which handles escapes properly
11661 and does not emit non-printable characters.
11663 Fixed some issues with constants in the 64-bit version of the
11664 local C library (utclib.c)
11669 EC Driver: No longer attempts to acquire the Global Lock at
11673 3) iASL Compiler/Disassembler
11675 Implemented ACPI 2.0B grammar change that disallows all Type 1 and
11676 2 opcodes outside of a control method. This means that the
11677 "executable" operators (versus the "namespace" operators) cannot
11678 be used at the table level; they can only be used within a control
11681 Implemented the restriction on the Scope() operator where the
11682 target must already exist in the namespace at the time the
11683 operator is encountered (during ASL compilation). In other words,
11684 forward references are not allowed and Scope() cannot create a new
11685 object. This makes the iASL compiler compatible with other ACPI
11686 implementations and makes the Scope() implementation adhere to the
11687 ACPI specification.
11689 Fixed a problem where namepath optimization for the Alias operator
11690 was optimizing the wrong path (of the two namepaths.) This caused
11691 a "Missing alias link" error message.
11693 Fixed a problem where an "unknown reserved name" warning could be
11694 incorrectly generated for names like "_SB" when the trailing
11695 underscore is not used in the original ASL.
11697 Fixed a problem where the reserved name check did not handle
11698 NamePaths with multiple NameSegs correctly. The first nameseg of
11699 the NamePath was examined instead of the last NameSeg.
11702 ----------------------------------------
11704 02 October 2002. Summary of changes for this release.
11707 1) ACPI CA Core Subsystem version 20021002:
11709 Fixed a problem where a store/copy of a string to an existing
11710 string did not always set the string length properly in the String
11713 Fixed a reported problem with the ToString operator where the
11714 behavior was identical to the ToHexString operator instead of just
11715 simply converting a raw buffer to a string data type.
11717 Fixed a problem where CopyObject and the other "explicit"
11718 conversion operators were not updating the internal namespace node
11719 type as part of the store operation.
11721 Fixed a memory leak during implicit source operand conversion
11722 where the original object was not deleted if it was converted to a
11723 new object of a different type.
11725 Enhanced error messages for all problems associated with namespace
11726 lookups. Common procedure generates and prints the lookup name as
11727 well as the formatted status.
11729 Completed implementation of a new design for the Alias support
11730 within the namespace. The existing design did not handle the case
11731 where a new object was assigned to one of the two names due to the
11732 use of an explicit conversion operator, resulting in the two names
11733 pointing to two different objects. The new design simply points
11734 the Alias name to the original name node - not to the object.
11735 This results in a level of indirection that must be handled in the
11736 name resolution mechanism.
11738 Code and Data Size: Current core subsystem library sizes are shown
11739 below. These are the code and data sizes for the acpica.lib
11740 produced by the Microsoft Visual C++ 6.0 compiler, and these
11741 values do not include any ACPI driver or OSPM code. The debug
11742 version of the code includes the debug output trace mechanism and
11743 has a larger code and data size. Note that these values will vary
11744 depending on the efficiency of the compiler and the compiler
11745 options used during generation.
11748 Non-Debug Version: 69.6K Code, 8.3K Data, 77.9K Total
11749 Debug Version: 150.0K Code, 61.7K Data, 211.7K Total
11751 Non-Debug Version: 70.7K Code, 8.6K Data, 79.3K Total
11752 Debug Version: 151.7K Code, 62.4K Data, 214.1K Total
11757 Initialize thermal driver's timer before it is used. (Knut
11760 Allow handling negative celsius values. (Kochi Takayoshi)
11762 Fix thermal management and make trip points. R/W (Pavel Machek)
11764 Fix /proc/acpi/sleep. (P. Christeas)
11766 IA64 fixes. (David Mosberger)
11768 Fix reversed logic in blacklist code. (Sergio Monteiro Basto)
11770 Replace ACPI_DEBUG define with ACPI_DEBUG_OUTPUT. (Dominik
11774 3) iASL Compiler/Disassembler
11776 Clarified some warning/error messages.
11779 ----------------------------------------
11780 18 September 2002. Summary of changes for this release.
11783 1) ACPI CA Core Subsystem version 20020918:
11785 Fixed a reported problem with reference chaining (via the Index()
11786 and RefOf() operators) in the ObjectType() and SizeOf() operators.
11787 The definition of these operators includes the dereferencing of
11788 all chained references to return information on the base object.
11790 Fixed a problem with stores to indexed package elements - the
11791 existing code would not complete the store if an "implicit
11792 conversion" was not performed. In other words, if the existing
11793 object (package element) was to be replaced completely, the code
11794 didn't handle this case.
11796 Relaxed typechecking on the ASL "Scope" operator to allow the
11797 target name to refer to an object of type Integer, String, or
11798 Buffer, in addition to the scoping object types (Device,
11799 predefined Scopes, Processor, PowerResource, and ThermalZone.)
11800 This allows existing AML code that has workarounds for a bug in
11801 Windows to function properly. A warning is issued, however. This
11802 affects both the AML interpreter and the iASL compiler. Below is
11803 an example of this type of ASL code:
11809 Fixed some reported problems with 64-bit integer support in the
11810 local implementation of C library functions (clib.c)
11815 Use ACPI fix map region instead of IOAPIC region, since it is
11816 undefined in non-SMP.
11818 Ensure that the SCI has the proper polarity and trigger, even on
11819 systems that do not have an interrupt override entry in the MADT.
11821 2.5 big driver reorganization (Pat Mochel)
11823 Use early table mapping code from acpitable.c (Andi Kleen)
11825 New blacklist entries (Andi Kleen)
11827 Blacklist improvements. Split blacklist code out into a separate
11828 file. Move checking the blacklist to very early. Previously, we
11829 would use ACPI tables, and then halfway through init, check the
11830 blacklist -- too late. Now, it's early enough to completely fall-
11834 3) iASL Compiler/Disassembler version 20020918:
11836 Fixed a problem where the typechecking code didn't know that an
11837 alias could point to a method. In other words, aliases were not
11838 being dereferenced during typechecking.
11841 ----------------------------------------
11842 29 August 2002. Summary of changes for this release.
11844 1) ACPI CA Core Subsystem Version 20020829:
11846 If the target of a Scope() operator already exists, it must be an
11847 object type that actually opens a scope -- such as a Device,
11848 Method, Scope, etc. This is a fatal runtime error. Similar error
11849 check has been added to the iASL compiler also.
11851 Tightened up the namespace load to disallow multiple names in the
11852 same scope. This previously was allowed if both objects were of
11853 the same type. (i.e., a lookup was the same as entering a new
11859 Ensure that the ACPI interrupt has the proper trigger and
11862 local_irq_disable is extraneous. (Matthew Wilcox)
11864 Make "acpi=off" actually do what it says, and not use the ACPI
11865 interpreter *or* the tables.
11867 Added arch-neutral support for parsing SLIT and SRAT tables (Kochi
11871 3) iASL Compiler/Disassembler Version 20020829:
11873 Implemented namepath optimization for name declarations. For
11874 example, a declaration like "Method (\_SB_.ABCD)" would get
11875 optimized to "Method (ABCD)" if the declaration is within the
11876 \_SB_ scope. This optimization is in addition to the named
11877 reference path optimization first released in the previous
11878 version. This would seem to complete all possible optimizations
11879 for namepaths within the ASL/AML.
11881 If the target of a Scope() operator already exists, it must be an
11882 object type that actually opens a scope -- such as a Device,
11883 Method, Scope, etc.
11885 Implemented a check and warning for unreachable code in the same
11886 block below a Return() statement.
11888 Fixed a problem where the listing file was not generated if the
11889 compiler aborted if the maximum error count was exceeded (200).
11891 Fixed a problem where the typechecking of method return values was
11892 broken. This includes the check for a return value when the
11893 method is invoked as a TermArg (a return value is expected.)
11895 Fixed a reported problem where EOF conditions during a quoted
11896 string or comment caused a fault.
11899 ----------------------------------------
11900 15 August 2002. Summary of changes for this release.
11902 1) ACPI CA Core Subsystem Version 20020815:
11904 Fixed a reported problem where a Store to a method argument that
11905 contains a reference did not perform the indirect store correctly.
11906 This problem was created during the conversion to the new
11907 reference object model - the indirect store to a method argument
11908 code was not updated to reflect the new model.
11910 Reworked the ACPI mode change code to better conform to ACPI 2.0,
11911 handle corner cases, and improve code legibility (Kochi Takayoshi)
11913 Fixed a problem with the pathname parsing for the carat (^)
11914 prefix. The heavy use of the carat operator by the new namepath
11915 optimization in the iASL compiler uncovered a problem with the AML
11916 interpreter handling of this prefix. In the case where one or
11917 more carats precede a single nameseg, the nameseg was treated as
11918 standalone and the search rule (to root) was inadvertently
11919 applied. This could cause both the iASL compiler and the
11920 interpreter to find the wrong object or to miss the error that
11921 should occur if the object does not exist at that exact pathname.
11923 Found and fixed the problem where the HP Pavilion DSDT would not
11924 load. This was a relatively minor tweak to the table loading code
11925 (a problem caused by the unexpected encounter with a method
11926 invocation not within a control method), but it does not solve the
11927 overall issue of the execution of AML code at the table level.
11928 This investigation is still ongoing.
11930 Code and Data Size: Current core subsystem library sizes are shown
11931 below. These are the code and data sizes for the acpica.lib
11932 produced by the Microsoft Visual C++ 6.0 compiler, and these
11933 values do not include any ACPI driver or OSPM code. The debug
11934 version of the code includes the debug output trace mechanism and
11935 has a larger code and data size. Note that these values will vary
11936 depending on the efficiency of the compiler and the compiler
11937 options used during generation.
11940 Non-Debug Version: 69.1K Code, 8.2K Data, 77.3K Total
11941 Debug Version: 149.4K Code, 61.6K Data, 211.0K Total
11943 Non-Debug Version: 69.6K Code, 8.3K Data, 77.9K Total
11944 Debug Version: 150.0K Code, 61.7K Data, 211.7K Total
11949 Remove redundant slab.h include (Brad Hards)
11951 Fix several bugs in thermal.c (Herbert Nachtnebel)
11953 Make CONFIG_ACPI_BOOT work properly (Pavel Machek)
11955 Change acpi_system_suspend to use updated irq functions (Pavel
11958 Export acpi_get_firmware_table (Matthew Wilcox)
11960 Use proper root proc entry for ACPI (Kochi Takayoshi)
11962 Fix early-boot table parsing (Bjorn Helgaas)
11965 3) iASL Compiler/Disassembler
11967 Reworked the compiler options to make them more consistent and to
11968 use two-letter options where appropriate. We were running out of
11969 sensible letters. This may break some makefiles, so check the
11970 current options list by invoking the compiler with no parameters.
11972 Completed the design and implementation of the ASL namepath
11973 optimization option for the compiler. This option optimizes all
11974 references to named objects to the shortest possible path. The
11975 first attempt tries to utilize a single nameseg (4 characters) and
11976 the "search-to-root" algorithm used by the interpreter. If that
11977 cannot be used (because either the name is not in the search path
11978 or there is a conflict with another object with the same name),
11979 the pathname is optimized using the carat prefix (usually a
11980 shorter string than specifying the entire path from the root.)
11982 Implemented support to obtain the DSDT from the Windows registry
11983 (when the disassembly option is specified with no input file).
11984 Added this code as the implementation for AcpiOsTableOverride in
11985 the Windows OSL. Migrated the 16-bit code (used in the AcpiDump
11986 utility) to scan memory for the DSDT to the AcpiOsTableOverride
11987 function in the DOS OSL to make the disassembler truly OS
11990 Implemented a new option to disassemble and compile in one step.
11991 When used without an input filename, this option will grab the
11992 DSDT from the local machine, disassemble it, and compile it in one
11995 Added a warning message for invalid escapes (a backslash followed
11996 by any character other than the allowable escapes). This catches
11997 the quoted string error "\_SB_" (which should be "\\_SB_" ).
11999 Also, there are numerous instances in the ACPI specification where
12002 Added a compiler option to disable all optimizations. This is
12003 basically the "compatibility mode" because by using this option,
12004 the AML code will come out exactly the same as other ASL
12007 Added error messages for incorrectly ordered dependent resource
12008 functions. This includes: missing EndDependentFn macro at end of
12009 dependent resource list, nested dependent function macros (both
12010 start and end), and missing StartDependentFn macro. These are
12011 common errors that should be caught at compile time.
12013 Implemented _OSI support for the disassembler and compiler. _OSI
12014 must be included in the namespace for proper disassembly (because
12015 the disassembler must know the number of arguments.)
12017 Added an "optimization" message type that is optional (off by
12018 default). This message is used for all optimizations - including
12019 constant folding, integer optimization, and namepath optimization.
12021 ----------------------------------------
12022 25 July 2002. Summary of changes for this release.
12025 1) ACPI CA Core Subsystem Version 20020725:
12027 The AML Disassembler has been enhanced to produce compilable ASL
12028 code and has been integrated into the iASL compiler (see below) as
12029 well as the single-step disassembly for the AML debugger and the
12030 disassembler for the AcpiDump utility. All ACPI 2.0A opcodes,
12031 resource templates and macros are fully supported. The
12032 disassembler has been tested on over 30 different AML files,
12033 producing identical AML when the resulting disassembled ASL file
12034 is recompiled with the same ASL compiler.
12036 Modified the Resource Manager to allow zero interrupts and zero
12037 dma channels during the GetCurrentResources call. This was
12038 causing problems on some platforms.
12040 Added the AcpiOsRedirectOutput interface to the OSL to simplify
12041 output redirection for the AcpiOsPrintf and AcpiOsVprintf
12044 Code and Data Size: Current core subsystem library sizes are shown
12045 below. These are the code and data sizes for the acpica.lib
12046 produced by the Microsoft Visual C++ 6.0 compiler, and these
12047 values do not include any ACPI driver or OSPM code. The debug
12048 version of the code includes the debug output trace mechanism and
12049 has a larger code and data size. Note that these values will vary
12050 depending on the efficiency of the compiler and the compiler
12051 options used during generation.
12054 Non-Debug Version: 68.7K Code, 7.4K Data, 76.1K Total
12055 Debug Version: 142.9K Code, 58.7K Data, 201.6K Total
12057 Non-Debug Version: 69.1K Code, 8.2K Data, 77.3K Total
12058 Debug Version: 149.4K Code, 61.6K Data, 211.0K Total
12063 Fixed a panic in the EC driver (Dominik Brodowski)
12065 Implemented checksum of the R/XSDT itself during Linux table scan
12071 The AML disassembler is integrated into the compiler. The "-d"
12072 option invokes the disassembler to completely disassemble an
12073 input AML file, producing as output a text ASL file with the
12074 extension ".dsl" (to avoid name collisions with existing .asl
12075 source files.) A future enhancement will allow the disassembler
12076 to obtain the BIOS DSDT from the registry under Windows.
12078 Fixed a problem with the VendorShort and VendorLong resource
12079 descriptors where an invalid AML sequence was created.
12081 Implemented a fix for BufferData term in the ASL parser. It was
12082 inadvertently defined twice, allowing invalid syntax to pass and
12083 causing reduction conflicts.
12085 Fixed a problem where the Ones opcode could get converted to a
12086 value of zero if "Ones" was used where a byte, word or dword value
12087 was expected. The 64-bit value is now truncated to the correct
12088 size with the correct value.
12092 ----------------------------------------
12093 02 July 2002. Summary of changes for this release.
12096 1) ACPI CA Core Subsystem Version 20020702:
12098 The Table Manager code has been restructured to add several new
12099 features. Tables that are not required by the core subsystem
12100 (other than the FADT, DSDT, FACS, PSDTs, etc.) are no longer
12101 validated in any way and are returned from AcpiGetFirmwareTable if
12102 requested. The AcpiOsTableOverride interface is now called for
12103 each table that is loaded by the subsystem in order to allow the
12104 host to override any table it chooses. Previously, only the DSDT
12105 could be overridden. Added one new files, tbrsdt.c and
12108 Fixed a problem with the conversion of internal package objects to
12109 external objects (when a package is returned from a control
12110 method.) The return buffer length was set to zero instead of the
12111 proper length of the package object.
12113 Fixed a reported problem with the use of the RefOf and DeRefOf
12114 operators when passing reference arguments to control methods. A
12115 new type of Reference object is used internally for references
12116 produced by the RefOf operator.
12118 Added additional error messages in the Resource Manager to explain
12119 AE_BAD_DATA errors when they occur during resource parsing.
12121 Split the AcpiEnableSubsystem into two primitives to enable a
12122 finer granularity initialization sequence. These two calls should
12123 be called in this order: AcpiEnableSubsystem (flags),
12124 AcpiInitializeObjects (flags). The flags parameter remains the
12130 Updated the ACPI utilities module to understand the new style of
12131 fully resolved package objects that are now returned from the core
12132 subsystem. This eliminates errors of the form:
12134 ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PPB_._PRT]
12135 acpi_utils-0430 [145] acpi_evaluate_reference:
12136 Invalid element in package (not a device reference)
12138 The method evaluation utility uses the new buffer allocation
12139 scheme instead of calling AcpiEvaluate Object twice.
12141 Added support for ECDT. This allows the use of the Embedded
12143 Controller before the namespace has been fully initialized, which
12144 is necessary for ACPI 2.0 support, and for some laptops to
12145 initialize properly. (Laptops using ECDT are still rare, so only
12146 limited testing was performed of the added functionality.)
12148 Fixed memory leaks in the EC driver.
12150 Eliminated a brittle code structure in acpi_bus_init().
12152 Eliminated the acpi_evaluate() helper function in utils.c. It is
12153 no longer needed since acpi_evaluate_object can optionally
12154 allocate memory for the return object.
12156 Implemented fix for keyboard hang when getting battery readings on
12157 some systems (Stephen White)
12159 PCI IRQ routing update (Dominik Brodowski)
12161 Fix an ifdef to allow compilation on UP with LAPIC but no IOAPIC
12164 ----------------------------------------
12165 11 June 2002. Summary of changes for this release.
12168 1) ACPI CA Core Subsystem Version 20020611:
12170 Fixed a reported problem where constants such as Zero and One
12171 appearing within _PRT packages were not handled correctly within
12172 the resource manager code. Originally reported against the ASL
12173 compiler because the code generator now optimizes integers to
12174 their minimal AML representation (i.e. AML constants if possible.)
12175 The _PRT code now handles all AML constant opcodes correctly
12176 (Zero, One, Ones, Revision).
12178 Fixed a problem with the Concatenate operator in the AML
12179 interpreter where a buffer result object was incorrectly marked as
12180 not fully evaluated, causing a run-time error of AE_AML_INTERNAL.
12182 All package sub-objects are now fully resolved before they are
12183 returned from the external ACPI interfaces. This means that name
12184 strings are resolved to object handles, and constant operators
12185 (Zero, One, Ones, Revision) are resolved to Integers.
12187 Implemented immediate resolution of the AML Constant opcodes
12188 (Zero, One, Ones, Revision) to Integer objects upon detection
12189 within the AML stream. This has simplified and reduced the
12190 generated code size of the subsystem by eliminating about 10
12191 switch statements for these constants (which previously were
12192 contained in Reference objects.) The complicating issues are that
12193 the Zero opcode is used as a "placeholder" for unspecified
12194 optional target operands and stores to constants are defined to be
12197 Code and Data Size: Current core subsystem library sizes are shown
12198 below. These are the code and data sizes for the acpica.lib
12199 produced by the Microsoft Visual C++ 6.0 compiler, and these
12200 values do not include any ACPI driver or OSPM code. The debug
12201 version of the code includes the debug output trace mechanism and
12202 has a larger code and data size. Note that these values will vary
12203 depending on the efficiency of the compiler and the compiler
12204 options used during generation.
12207 Non-Debug Version: 69.3K Code, 7.4K Data, 76.7K Total
12208 Debug Version: 143.8K Code, 58.8K Data, 202.6K Total
12210 Non-Debug Version: 68.7K Code, 7.4K Data, 76.1K Total
12211 Debug Version: 142.9K Code, 58.7K Data, 201.6K Total
12217 Added preliminary support for obtaining _TRA data for PCI root
12218 bridges (Bjorn Helgaas).
12221 3) iASL Compiler Version X2046:
12223 Fixed a problem where the "_DDN" reserved name was defined to be a
12224 control method with one argument. There are no arguments, and
12225 _DDN does not have to be a control method.
12227 Fixed a problem with the Linux version of the compiler where the
12228 source lines printed with error messages were the wrong lines.
12229 This turned out to be the "LF versus CR/LF" difference between
12230 Windows and Unix. This appears to be the longstanding issue
12231 concerning listing output and error messages.
12233 Fixed a problem with the Linux version of compiler where opcode
12234 names within error messages were wrong. This was caused by a
12235 slight difference in the output of the Flex tool on Linux versus
12238 Fixed a problem with the Linux compiler where the hex output files
12239 contained some garbage data caused by an internal buffer overrun.
12242 ----------------------------------------
12243 17 May 2002. Summary of changes for this release.
12246 1) ACPI CA Core Subsystem Version 20020517:
12248 Implemented a workaround to an BIOS bug discovered on the HP
12249 OmniBook where the FADT revision number and the table size are
12250 inconsistent (ACPI 2.0 revision vs. ACPI 1.0 table size). The new
12251 behavior is to fallback to using only the ACPI 1.0 fields of the
12252 FADT if the table is too small to be a ACPI 2.0 table as claimed
12253 by the revision number. Although this is a BIOS bug, this is a
12254 case where the workaround is simple enough and with no side
12255 effects, so it seemed prudent to add it. A warning message is
12258 Implemented minimum size checks for the fixed-length ACPI tables -
12259 - the FADT and FACS, as well as consistency checks between the
12260 revision number and the table size.
12262 Fixed a reported problem in the table override support where the
12263 new table pointer was incorrectly treated as a physical address
12264 instead of a logical address.
12266 Eliminated the use of the AE_AML_ERROR exception and replaced it
12267 with more descriptive codes.
12269 Fixed a problem where an exception would occur if an ASL Field was
12270 defined with no named Field Units underneath it (used by some
12273 Code and Data Size: Current core subsystem library sizes are shown
12274 below. These are the code and data sizes for the acpica.lib
12275 produced by the Microsoft Visual C++ 6.0 compiler, and these
12276 values do not include any ACPI driver or OSPM code. The debug
12277 version of the code includes the debug output trace mechanism and
12278 has a larger code and data size. Note that these values will vary
12279 depending on the efficiency of the compiler and the compiler
12280 options used during generation.
12283 Non-Debug Version: 68.8K Code, 7.1K Data, 75.9K Total
12284 Debug Version: 142.9K Code, 58.4K Data, 201.3K Total
12286 Non-Debug Version: 69.3K Code, 7.4K Data, 76.7K Total
12287 Debug Version: 143.8K Code, 58.8K Data, 202.6K Total
12293 Much work done on ACPI init (MADT and PCI IRQ routing support).
12294 (Paul D. and Dominik Brodowski)
12296 Fix PCI IRQ-related panic on boot (Sam Revitch)
12298 Set BM_ARB_DIS when entering a sleep state (Ducrot Bruno)
12300 Fix "MHz" typo (Dominik Brodowski)
12302 Fix RTC year 2000 issue (Dominik Brodowski)
12304 Preclude multiple button proc entries (Eric Brunet)
12306 Moved arch-specific code out of include/platform/aclinux.h
12308 3) iASL Compiler Version X2044:
12310 Implemented error checking for the string used in the EISAID macro
12311 (Usually used in the definition of the _HID object.) The code now
12312 strictly enforces the PnP format - exactly 7 characters, 3
12313 uppercase letters and 4 hex digits.
12315 If a raw string is used in the definition of the _HID object
12316 (instead of the EISAID macro), the string must contain all
12317 alphanumeric characters (e.g., "*PNP0011" is not allowed because
12320 Implemented checking for invalid use of ACPI reserved names for
12321 most of the name creation operators (Name, Device, Event, Mutex,
12322 OperationRegion, PowerResource, Processor, and ThermalZone.)
12323 Previously, this check was only performed for control methods.
12325 Implemented an additional check on the Name operator to emit an
12326 error if a reserved name that must be implemented in ASL as a
12327 control method is used. We know that a reserved name must be a
12328 method if it is defined with input arguments.
12330 The warning emitted when a namespace object reference is not found
12331 during the cross reference phase has been changed into an error.
12332 The "External" directive should be used for names defined in other
12336 4) Tools and Utilities
12338 The 16-bit tools (adump16 and aexec16) have been regenerated and
12341 Fixed a problem with the output of both acpidump and adump16 where
12342 the indentation of closing parentheses and brackets was not
12344 aligned properly with the parent block.
12347 ----------------------------------------
12348 03 May 2002. Summary of changes for this release.
12351 1) ACPI CA Core Subsystem Version 20020503:
12353 Added support a new OSL interface that allows the host operating
12355 system software to override the DSDT found in the firmware -
12356 AcpiOsTableOverride. With this interface, the OSL can examine the
12357 version of the firmware DSDT and replace it with a different one
12360 Added new external interfaces for accessing ACPI registers from
12361 device drivers and other system software - AcpiGetRegister and
12362 AcpiSetRegister. This was simply an externalization of the
12363 existing AcpiHwBitRegister interfaces.
12365 Fixed a regression introduced in the previous build where the
12366 ASL/AML CreateField operator always returned an error,
12367 "destination must be a NS Node".
12369 Extended the maximum time (before failure) to successfully enable
12370 ACPI mode to 3 seconds.
12372 Code and Data Size: Current core subsystem library sizes are shown
12373 below. These are the code and data sizes for the acpica.lib
12374 produced by the Microsoft Visual C++ 6.0 compiler, and these
12375 values do not include any ACPI driver or OSPM code. The debug
12376 version of the code includes the debug output trace mechanism and
12377 has a larger code and data size. Note that these values will vary
12378 depending on the efficiency of the compiler and the compiler
12379 options used during generation.
12382 Non-Debug Version: 68.5K Code, 7.0K Data, 75.5K Total
12383 Debug Version: 142.4K Code, 58.3K Data, 200.7K Total
12385 Non-Debug Version: 68.8K Code, 7.1K Data, 75.9K Total
12386 Debug Version: 142.9K Code, 58.4K Data, 201.3K Total
12391 Enhanced ACPI init code for SMP. We are now fully MPS and $PIR-
12392 free. While 3 out of 4 of our in-house systems work fine, the last
12393 one still hangs when testing the LAPIC timer.
12395 Renamed many files in 2.5 kernel release to omit "acpi_" from the
12398 Added warning on boot for Presario 711FR.
12400 Sleep improvements (Pavel Machek)
12402 ACPI can now be built without CONFIG_PCI enabled.
12404 IA64: Fixed memory map functions (JI Lee)
12407 3) iASL Compiler Version X2043:
12409 Added support to allow the compiler to be integrated into the MS
12410 VC++ development environment for one-button compilation of single
12411 files or entire projects -- with error-to-source-line mapping.
12413 Implemented support for compile-time constant folding for the
12414 Type3, Type4, and Type5 opcodes first defined in the ACPI 2.0
12415 specification. This allows the ASL writer to use expressions
12416 instead of Integer/Buffer/String constants in terms that must
12417 evaluate to constants at compile time and will also simplify the
12418 emitted AML in any such sub-expressions that can be folded
12419 (evaluated at compile-time.) This increases the size of the
12420 compiler significantly because a portion of the ACPI CA AML
12421 interpreter is included within the compiler in order to pre-
12422 evaluate constant expressions.
12425 Fixed a problem with the "Unicode" ASL macro that caused the
12426 compiler to fault. (This macro is used in conjunction with the
12427 _STR reserved name.)
12429 Implemented an AML opcode optimization to use the Zero, One, and
12430 Ones opcodes where possible to further reduce the size of integer
12431 constants and thus reduce the overall size of the generated AML
12434 Implemented error checking for new reserved terms for ACPI version
12437 Implemented the -qr option to display the current list of ACPI
12438 reserved names known to the compiler.
12440 Implemented the -qc option to display the current list of ASL
12441 operators that are allowed within constant expressions and can
12442 therefore be folded at compile time if the operands are constants.
12447 Updated the Programmer's Reference for new interfaces, data types,
12448 and memory allocation model options.
12450 Updated the iASL Compiler User Reference to apply new format and
12451 add information about new features and options.
12453 ----------------------------------------
12454 19 April 2002. Summary of changes for this release.
12456 1) ACPI CA Core Subsystem Version 20020419:
12458 The source code base for the Core Subsystem has been completely
12459 cleaned with PC-lint (FlexLint) for both 32-bit and 64-bit
12460 versions. The Lint option files used are included in the
12461 /acpi/generate/lint directory.
12463 Implemented enhanced status/error checking across the entire
12464 Hardware manager subsystem. Any hardware errors (reported from
12465 the OSL) are now bubbled up and will abort a running control
12469 Fixed a problem where the per-ACPI-table integer width (32 or 64)
12470 was stored only with control method nodes, causing a fault when
12471 non-control method code was executed during table loading. The
12472 solution implemented uses a global variable to indicate table
12473 width across the entire ACPI subsystem. Therefore, ACPI CA does
12474 not support mixed integer widths across different ACPI tables
12477 Fixed a problem where NULL extended fields (X fields) in an ACPI
12478 2.0 ACPI FADT caused the table load to fail. Although the
12479 existing ACPI specification is a bit fuzzy on this topic, the new
12480 behavior is to fall back on a ACPI 1.0 field if the corresponding
12481 ACPI 2.0 X field is zero (even though the table revision indicates
12482 a full ACPI 2.0 table.) The ACPI specification will be updated to
12483 clarify this issue.
12485 Fixed a problem with the SystemMemory operation region handler
12486 where memory was always accessed byte-wise even if the AML-
12487 specified access width was larger than a byte. This caused
12488 problems on systems with memory-mapped I/O. Memory is now
12489 accessed with the width specified. On systems that do not support
12490 non-aligned transfers, a check is made to guarantee proper address
12491 alignment before proceeding in order to avoid an AML-caused
12492 alignment fault within the kernel.
12495 Fixed a problem with the ExtendedIrq resource where only one byte
12496 of the 4-byte Irq field was extracted.
12498 Fixed the AcpiExDigitsNeeded() procedure to support _UID. This
12499 function was out of date and required a rewrite.
12501 Code and Data Size: Current core subsystem library sizes are shown
12502 below. These are the code and data sizes for the acpica.lib
12503 produced by the Microsoft Visual C++ 6.0 compiler, and these
12504 values do not include any ACPI driver or OSPM code. The debug
12505 version of the code includes the debug output trace mechanism and
12506 has a larger code and data size. Note that these values will vary
12507 depending on the efficiency of the compiler and the compiler
12508 options used during generation.
12511 Non-Debug Version: 66.6K Code, 6.5K Data, 73.1K Total
12512 Debug Version: 139.8K Code, 57.4K Data, 197.2K Total
12514 Non-Debug Version: 68.5K Code, 7.0K Data, 75.5K Total
12515 Debug Version: 142.4K Code, 58.3K Data, 200.7K Total
12520 PCI IRQ routing fixes (Dominik Brodowski)
12523 3) iASL Compiler Version X2042:
12525 Implemented an additional compile-time error check for a field
12526 unit whose size + minimum access width would cause a run-time
12527 access beyond the end-of-region. Previously, only the field size
12528 itself was checked.
12530 The Core subsystem and iASL compiler now share a common parse
12531 object in preparation for compile-time evaluation of the type
12532 3/4/5 ASL operators.
12535 ----------------------------------------
12536 Summary of changes for this release: 03_29_02
12538 1) ACPI CA Core Subsystem Version 20020329:
12540 Implemented support for late evaluation of TermArg operands to
12541 Buffer and Package objects. This allows complex expressions to be
12542 used in the declarations of these object types.
12544 Fixed an ACPI 1.0 compatibility issue when reading Fields. In ACPI
12545 1.0, if the field was larger than 32 bits, it was returned as a
12546 buffer - otherwise it was returned as an integer. In ACPI 2.0,
12547 the field is returned as a buffer only if the field is larger than
12548 64 bits. The TableRevision is now considered when making this
12549 conversion to avoid incompatibility with existing ASL code.
12551 Implemented logical addressing for AcpiOsGetRootPointer. This
12552 allows an RSDP with either a logical or physical address. With
12553 this support, the host OS can now override all ACPI tables with
12554 one logical RSDP. Includes implementation of "typed" pointer
12555 support to allow a common data type for both physical and logical
12556 pointers internally. This required a change to the
12557 AcpiOsGetRootPointer interface.
12559 Implemented the use of ACPI 2.0 Generic Address Structures for all
12560 GPE, Fixed Event, and PM Timer I/O. This allows the use of memory
12561 mapped I/O for these ACPI features.
12563 Initialization now ignores not only non-required tables (All
12564 tables other than the FADT, FACS, DSDT, and SSDTs), but also does
12565 not validate the table headers of unrecognized tables.
12567 Fixed a problem where a notify handler could only be
12568 installed/removed on an object of type Device. All "notify"
12570 objects are now supported -- Devices, Processor, Power, and
12573 Removed most verbosity from the ACPI_DB_INFO debug level. Only
12574 critical information is returned when this debug level is enabled.
12576 Code and Data Size: Current core subsystem library sizes are shown
12577 below. These are the code and data sizes for the acpica.lib
12578 produced by the Microsoft Visual C++ 6.0 compiler, and these
12579 values do not include any ACPI driver or OSPM code. The debug
12580 version of the code includes the debug output trace mechanism and
12581 has a larger code and data size. Note that these values will vary
12582 depending on the efficiency of the compiler and the compiler
12583 options used during generation.
12586 Non-Debug Version: 65.4K Code, 6.2K Data, 71.6K Total
12587 Debug Version: 138.0K Code, 56.6K Data, 194.6K Total
12589 Non-Debug Version: 66.6K Code, 6.5K Data, 73.1K Total
12590 Debug Version: 139.8K Code, 57.4K Data, 197.2K Total
12595 The processor driver (acpi_processor.c) now fully supports ACPI
12596 2.0-based processor performance control (e.g. Intel(R)
12597 SpeedStep(TM) technology) Note that older laptops that only have
12598 the Intel "applet" interface are not supported through this. The
12599 'limit' and 'performance' interface (/proc) are fully functional.
12600 [Note that basic policy for controlling performance state
12601 transitions will be included in the next version of ospmd.] The
12602 idle handler was modified to more aggressively use C2, and PIIX4
12603 errata handling underwent a complete overhaul (big thanks to
12604 Dominik Brodowski).
12606 Added support for ACPI-PCI device binding (acpi_pci_root.c). _ADR-
12607 based devices in the ACPI namespace are now dynamically bound
12608 (associated) with their PCI counterparts (e.g. PCI1->01:00.0).
12609 This allows, among other things, ACPI to resolve bus numbers for
12610 subordinate PCI bridges.
12612 Enhanced PCI IRQ routing to get the proper bus number for _PRT
12613 entries defined underneath PCI bridges.
12615 Added IBM 600E to bad bios list due to invalid _ADR value for
12616 PIIX4 PCI-ISA bridge, resulting in improper PCI IRQ routing.
12618 In the process of adding full MADT support (e.g. IOAPIC) for IA32
12619 (acpi.c, mpparse.c) -- stay tuned.
12621 Added back visual differentiation between fixed-feature and
12622 control-method buttons in dmesg. Buttons are also subtyped (e.g.
12623 button/power/PWRF) to simplify button identification.
12625 We no longer use -Wno-unused when compiling debug. Please ignore
12626 any "_THIS_MODULE defined but not used" messages.
12628 Can now shut down the system using "magic sysrq" key.
12631 3) iASL Compiler version 2041:
12633 Fixed a problem where conversion errors for hex/octal/decimal
12634 constants were not reported.
12636 Implemented a fix for the General Register template Address field.
12637 This field was 8 bits when it should be 64.
12639 Fixed a problem where errors/warnings were no longer being emitted
12640 within the listing output file.
12642 Implemented the ACPI 2.0A restriction on ACPI Table Signatures to
12643 exactly 4 characters, alphanumeric only.
12648 ----------------------------------------
12649 Summary of changes for this release: 03_08_02
12652 1) ACPI CA Core Subsystem Version 20020308:
12654 Fixed a problem with AML Fields where the use of the "AccessAny"
12655 keyword could cause an interpreter error due to attempting to read
12656 or write beyond the end of the parent Operation Region.
12658 Fixed a problem in the SystemMemory Operation Region handler where
12659 an attempt was made to map memory beyond the end of the region.
12660 This was the root cause of the "AE_ERROR" and "AE_NO_MEMORY"
12661 errors on some Linux systems.
12663 Fixed a problem where the interpreter/namespace "search to root"
12664 algorithm was not functioning for some object types. Relaxed the
12665 internal restriction on the search to allow upsearches for all
12666 external object types as well as most internal types.
12671 We now use safe_halt() macro versus individual calls to sti | hlt.
12673 Writing to the processor limit interface should now work. "echo 1"
12674 will increase the limit, 2 will decrease, and 0 will reset to the
12681 Fixed segfault on Linux version.
12684 ----------------------------------------
12685 Summary of changes for this release: 02_25_02
12687 1) ACPI CA Core Subsystem:
12690 Fixed a problem where the GPE bit masks were not initialized
12691 properly, causing erratic GPE behavior.
12693 Implemented limited support for multiple calling conventions. The
12694 code can be generated with either the VPL (variable parameter
12695 list, or "C") convention, or the FPL (fixed parameter list, or
12696 "Pascal") convention. The core subsystem is about 3.4% smaller
12697 when generated with FPL.
12702 Re-add some /proc/acpi/event functionality that was lost during
12705 Resolved issue with /proc events for fixed-feature buttons showing
12706 up as the system device.
12708 Fixed checks on C2/C3 latencies to be inclusive of maximum values.
12710 Replaced AE_ERRORs in acpi_osl.c with more specific error codes.
12712 Changed ACPI PRT option from "pci=noacpi-routing" to "pci=noacpi"
12714 Fixed limit interface & usage to fix bugs with passive cooling
12717 Restructured PRT support.
12720 ----------------------------------------
12721 Summary of changes for this label: 02_14_02
12724 1) ACPI CA Core Subsystem:
12726 Implemented support in AcpiLoadTable to allow loading of FACS and
12729 Suport for the now-obsolete interim 0.71 64-bit ACPI tables has
12730 been removed. All 64-bit platforms should be migrated to the ACPI
12731 2.0 tables. The actbl71.h header has been removed from the source
12734 All C macros defined within the subsystem have been prefixed with
12735 "ACPI_" to avoid collision with other system include files.
12737 Removed the return value for the two AcpiOsPrint interfaces, since
12738 it is never used and causes lint warnings for ignoring the return
12741 Added error checking to all internal mutex acquire and release
12742 calls. Although a failure from one of these interfaces is
12743 probably a fatal system error, these checks will cause the
12744 immediate abort of the currently executing method or interface.
12746 Fixed a problem where the AcpiSetCurrentResources interface could
12747 fault. This was a side effect of the deployment of the new memory
12750 Fixed a couple of problems with the Global Lock support introduced
12751 in the last major build. The "common" (1.0/2.0) internal FACS was
12752 being overwritten with the FACS signature and clobbering the
12753 Global Lock pointer. Also, the actual firmware FACS was being
12754 unmapped after construction of the "common" FACS, preventing
12755 access to the actual Global Lock field within it. The "common"
12756 internal FACS is no longer installed as an actual ACPI table; it
12757 is used simply as a global.
12759 Code and Data Size: Current core subsystem library sizes are shown
12760 below. These are the code and data sizes for the acpica.lib
12761 produced by the Microsoft Visual C++ 6.0 compiler, and these
12762 values do not include any ACPI driver or OSPM code. The debug
12763 version of the code includes the debug output trace mechanism and
12764 has a larger code and data size. Note that these values will vary
12765 depending on the efficiency of the compiler and the compiler
12766 options used during generation.
12768 Previous Release (02_07_01)
12769 Non-Debug Version: 65.2K Code, 6.2K Data, 71.4K Total
12770 Debug Version: 136.9K Code, 56.4K Data, 193.3K Total
12772 Non-Debug Version: 65.4K Code, 6.2K Data, 71.6K Total
12773 Debug Version: 138.0K Code, 56.6K Data, 194.6K Total
12778 Updated Linux-specific code for core macro and OSL interface
12779 changes described above.
12781 Improved /proc/acpi/event. It now can be opened only once and has
12782 proper poll functionality.
12784 Fixed and restructured power management (acpi_bus).
12786 Only create /proc "view by type" when devices of that class exist.
12788 Fixed "charging/discharging" bug (and others) in acpi_battery.
12790 Improved thermal zone code.
12793 3) ASL Compiler, version X2039:
12796 Implemented the new compiler restriction on ASL String hex/octal
12797 escapes to non-null, ASCII values. An error results if an invalid
12798 value is used. (This will require an ACPI 2.0 specification
12801 AML object labels that are output to the optional C and ASM source
12802 are now prefixed with both the ACPI table signature and table ID
12803 to help guarantee uniqueness within a large BIOS project.
12806 ----------------------------------------
12807 Summary of changes for this label: 02_01_02
12809 1) ACPI CA Core Subsystem:
12811 ACPI 2.0 support is complete in the entire Core Subsystem and the
12812 ASL compiler. All new ACPI 2.0 operators are implemented and all
12813 other changes for ACPI 2.0 support are complete. With
12814 simultaneous code and data optimizations throughout the subsystem,
12815 ACPI 2.0 support has been implemented with almost no additional
12816 cost in terms of code and data size.
12818 Implemented a new mechanism for allocation of return buffers. If
12819 the buffer length is set to ACPI_ALLOCATE_BUFFER, the buffer will
12820 be allocated on behalf of the caller. Consolidated all return
12821 buffer validation and allocation to a common procedure. Return
12822 buffers will be allocated via the primary OSL allocation interface
12823 since it appears that a separate pool is not needed by most users.
12824 If a separate pool is required for these buffers, the caller can
12825 still use the original mechanism and pre-allocate the buffer(s).
12827 Implemented support for string operands within the DerefOf
12830 Restructured the Hardware and Event managers to be table driven,
12831 simplifying the source code and reducing the amount of generated
12834 Split the common read/write low-level ACPI register bitfield
12835 procedure into a separate read and write, simplifying the code
12838 Obsoleted the AcpiOsCallocate OSL interface. This interface was
12839 used only a handful of times and didn't have enough critical mass
12840 for a separate interface. Replaced with a common calloc procedure
12843 Fixed a reported problem with the GPE number mapping mechanism
12844 that allows GPE1 numbers to be non-contiguous with GPE0.
12845 Reorganized the GPE information and shrunk a large array that was
12846 originally large enough to hold info for all possible GPEs (256)
12847 to simply large enough to hold all GPEs up to the largest GPE
12848 number on the machine.
12850 Fixed a reported problem with resource structure alignment on 64-
12853 Changed the AcpiEnableEvent and AcpiDisableEvent external
12854 interfaces to not require any flags for the common case of
12855 enabling/disabling a GPE.
12857 Implemented support to allow a "Notify" on a Processor object.
12859 Most TBDs in comments within the source code have been resolved
12863 Fixed a problem in the interpreter where a standalone parent
12864 prefix (^) was not handled correctly in the interpreter and
12867 Removed obsolete and unnecessary GPE save/restore code.
12869 Implemented Field support in the ASL Load operator. This allows a
12870 table to be loaded from a named field, in addition to loading a
12871 table directly from an Operation Region.
12873 Implemented timeout and handle support in the external Global Lock
12876 Fixed a problem in the AcpiDump utility where pathnames were no
12877 longer being generated correctly during the dump of named objects.
12879 Modified the AML debugger to give a full display of if/while
12880 predicates instead of just one AML opcode at a time. (The
12881 predicate can have several nested ASL statements.) The old method
12882 was confusing during single stepping.
12884 Code and Data Size: Current core subsystem library sizes are shown
12885 below. These are the code and data sizes for the acpica.lib
12886 produced by the Microsoft Visual C++ 6.0 compiler, and these
12887 values do not include any ACPI driver or OSPM code. The debug
12888 version of the code includes the debug output trace mechanism and
12889 has a larger code and data size. Note that these values will vary
12890 depending on the efficiency of the compiler and the compiler
12891 options used during generation.
12893 Previous Release (12_18_01)
12894 Non-Debug Version: 66.1K Code, 5.5K Data, 71.6K Total
12895 Debug Version: 138.3K Code, 55.9K Data, 194.2K Total
12897 Non-Debug Version: 65.2K Code, 6.2K Data, 71.4K Total
12898 Debug Version: 136.9K Code, 56.4K Data, 193.3K Total
12902 Implemented fix for PIIX reverse throttling errata (Processor
12905 Added new Limit interface (Processor and Thermal drivers)
12907 New thermal policy (Thermal driver)
12909 Many updates to /proc
12911 Battery "low" event support (Battery driver)
12913 Supports ACPI PCI IRQ routing (PCI Link and PCI root drivers)
12915 IA32 - IA64 initialization unification, no longer experimental
12917 Menuconfig options redesigned
12919 3) ASL Compiler, version X2037:
12921 Implemented several new output features to simplify integration of
12922 AML code into firmware: 1) Output the AML in C source code with
12923 labels for each named ASL object. The original ASL source code
12924 is interleaved as C comments. 2) Output the AML in ASM source code
12925 with labels and interleaved ASL source. 3) Output the AML in
12926 raw hex table form, in either C or ASM.
12928 Implemented support for optional string parameters to the
12929 LoadTable operator.
12931 Completed support for embedded escape sequences within string
12932 literals. The compiler now supports all single character escapes
12933 as well as the Octal and Hex escapes. Note: the insertion of a
12934 null byte into a string literal (via the hex/octal escape) causes
12935 the string to be immediately terminated. A warning is issued.
12937 Fixed a problem where incorrect AML was generated for the case
12938 where an ASL namepath consists of a single parent prefix (
12940 ) with no trailing name segments.
12942 The compiler has been successfully generated with a 64-bit C
12948 ----------------------------------------
12949 Summary of changes for this label: 12_18_01
12953 Enhanced blacklist with reason and severity fields. Any table's
12954 signature may now be used to identify a blacklisted system.
12956 Call _PIC control method to inform the firmware which interrupt
12957 model the OS is using. Turn on any disabled link devices.
12959 Cleaned up busmgr /proc error handling (Andreas Dilger)
12961 2) ACPI CA Core Subsystem:
12963 Implemented ACPI 2.0 semantics for the "Break" operator (Exit from
12966 Completed implementation of the ACPI 2.0 "Continue",
12967 "ConcatenateResTemplate", "DataTableRegion", and "LoadTable"
12968 operators. All new ACPI 2.0 operators are now implemented in both
12969 the ASL compiler and the AML interpreter. The only remaining ACPI
12970 2.0 task is support for the String data type in the DerefOf
12971 operator. Fixed a problem with AcquireMutex where the status code
12972 was lost if the caller had to actually wait for the mutex.
12974 Increased the maximum ASL Field size from 64K bits to 4G bits.
12976 Completed implementation of the external Global Lock interfaces --
12977 AcpiAcquireGlobalLock and AcpiReleaseGlobalLock. The Timeout and
12978 Handler parameters were added.
12980 Completed another pass at removing warnings and issues when
12981 compiling with 64-bit compilers. The code now compiles cleanly
12982 with the Intel 64-bit C/C++ compiler. Most notably, the pointer
12983 add and subtract (diff) macros have changed considerably.
12986 Created and deployed a new ACPI_SIZE type that is 64-bits wide on
12987 64-bit platforms, 32-bits on all others. This type is used
12988 wherever memory allocation and/or the C sizeof() operator is used,
12989 and affects the OSL memory allocation interfaces AcpiOsAllocate
12990 and AcpiOsCallocate.
12992 Implemented sticky user breakpoints in the AML debugger.
12994 Code and Data Size: Current core subsystem library sizes are shown
12995 below. These are the code and data sizes for the acpica.lib
12996 produced by the Microsoft Visual C++ 6.0 compiler, and these
12997 values do not include any ACPI driver or OSPM code. The debug
12998 version of the code includes the debug output trace mechanism and
12999 has a larger code and data size. Note that these values will vary
13000 depending on the efficiency of the compiler and the compiler
13001 options used during generation.
13003 Previous Release (12_05_01)
13004 Non-Debug Version: 64.7K Code, 5.3K Data, 70.0K Total
13005 Debug Version: 136.2K Code, 55.6K Data, 191.8K Total
13007 Non-Debug Version: 66.1K Code, 5.5K Data, 71.6K Total
13008 Debug Version: 138.3K Code, 55.9K Data, 194.2K Total
13010 3) ASL Compiler, version X2034:
13012 Now checks for (and generates an error if detected) the use of a
13013 Break or Continue statement without an enclosing While statement.
13016 Successfully generated the compiler with the Intel 64-bit C
13019 ----------------------------------------
13020 Summary of changes for this label: 12_05_01
13022 1) ACPI CA Core Subsystem:
13024 The ACPI 2.0 CopyObject operator is fully implemented. This
13025 operator creates a new copy of an object (and is also used to
13026 bypass the "implicit conversion" mechanism of the Store operator.)
13028 The ACPI 2.0 semantics for the SizeOf operator are fully
13029 implemented. The change is that performing a SizeOf on a
13030 reference object causes an automatic dereference of the object to
13031 tha actual value before the size is evaluated. This behavior was
13032 undefined in ACPI 1.0.
13034 The ACPI 2.0 semantics for the Extended IRQ resource descriptor
13035 have been implemented. The interrupt polarity and mode are now
13038 Fixed a problem where ASL Constants (Zero, One, Ones, Revision)
13039 appearing in Package objects were not properly converted to
13040 integers when the internal Package was converted to an external
13041 object (via the AcpiEvaluateObject interface.)
13043 Fixed a problem with the namespace object deletion mechanism for
13044 objects created by control methods. There were two parts to this
13045 problem: 1) Objects created during the initialization phase method
13046 parse were not being deleted, and 2) The object owner ID mechanism
13047 to track objects was broken.
13049 Fixed a problem where the use of the ASL Scope operator within a
13050 control method would result in an invalid opcode exception.
13052 Fixed a problem introduced in the previous label where the buffer
13053 length required for the _PRT structure was not being returned
13056 Code and Data Size: Current core subsystem library sizes are shown
13057 below. These are the code and data sizes for the acpica.lib
13058 produced by the Microsoft Visual C++ 6.0 compiler, and these
13059 values do not include any ACPI driver or OSPM code. The debug
13060 version of the code includes the debug output trace mechanism and
13061 has a larger code and data size. Note that these values will vary
13062 depending on the efficiency of the compiler and the compiler
13063 options used during generation.
13065 Previous Release (11_20_01)
13066 Non-Debug Version: 64.1K Code, 5.3K Data, 69.4K Total
13067 Debug Version: 135.1K Code, 55.4K Data, 190.5K Total
13070 Non-Debug Version: 64.7K Code, 5.3K Data, 70.0K Total
13071 Debug Version: 136.2K Code, 55.6K Data, 191.8K Total
13075 Updated all files to apply cleanly against 2.4.16.
13077 Added basic PCI Interrupt Routing Table (PRT) support for IA32
13078 (acpi_pci.c), and unified the PRT code for IA32 and IA64. This
13079 version supports both static and dyanmic PRT entries, but dynamic
13080 entries are treated as if they were static (not yet
13081 reconfigurable). Architecture- specific code to use this data is
13082 absent on IA32 but should be available shortly.
13084 Changed the initialization sequence to start the ACPI interpreter
13085 (acpi_init) prior to initialization of the PCI driver (pci_init)
13086 in init/main.c. This ordering is required to support PRT and
13087 facilitate other (future) enhancement. A side effect is that the
13088 ACPI bus driver and certain device drivers can no longer be loaded
13091 Modified the 'make menuconfig' options to allow PCI Interrupt
13092 Routing support to be included without the ACPI Bus and other
13095 3) ASL Compiler, version X2033:
13097 Fixed some issues with the use of the new CopyObject and
13098 DataTableRegion operators. Both are fully functional.
13100 ----------------------------------------
13101 Summary of changes for this label: 11_20_01
13103 20 November 2001. Summary of changes for this release.
13105 1) ACPI CA Core Subsystem:
13107 Updated Index support to match ACPI 2.0 semantics. Storing a
13108 Integer, String, or Buffer to an Index of a Buffer will store only
13109 the least-significant byte of the source to the Indexed buffer
13110 byte. Multiple writes are not performed.
13112 Fixed a problem where the access type used in an AccessAs ASL
13113 operator was not recorded correctly into the field object.
13115 Fixed a problem where ASL Event objects were created in a
13116 signalled state. Events are now created in an unsignalled state.
13118 The internal object cache is now purged after table loading and
13119 initialization to reduce the use of dynamic kernel memory -- on
13120 the assumption that object use is greatest during the parse phase
13121 of the entire table (versus the run-time use of individual control
13124 ACPI 2.0 variable-length packages are now fully operational.
13126 Code and Data Size: Code and Data optimizations have permitted new
13127 feature development with an actual reduction in the library size.
13128 Current core subsystem library sizes are shown below. These are
13129 the code and data sizes for the acpica.lib produced by the
13130 Microsoft Visual C++ 6.0 compiler, and these values do not include
13131 any ACPI driver or OSPM code. The debug version of the code
13132 includes the debug output trace mechanism and has a larger code
13133 and data size. Note that these values will vary depending on the
13134 efficiency of the compiler and the compiler options used during
13137 Previous Release (11_09_01):
13138 Non-Debug Version: 63.7K Code, 5.2K Data, 68.9K Total
13139 Debug Version: 134.5K Code, 55.4K Data, 189.9K Total
13142 Non-Debug Version: 64.1K Code, 5.3K Data, 69.4K Total
13143 Debug Version: 135.1K Code, 55.4K Data, 190.5K Total
13147 Enhanced the ACPI boot-time initialization code to allow the use
13148 of Local APIC tables for processor enumeration on IA-32, and to
13149 pave the way for a fully MPS-free boot (on SMP systems) in the
13150 near future. This functionality replaces
13151 arch/i386/kernel/acpitables.c, which was introduced in an earlier
13152 2.4.15-preX release. To enable this feature you must add
13153 "acpi_boot=on" to the kernel command line -- see the help entry
13154 for CONFIG_ACPI_BOOT for more information. An IA-64 release is in
13157 Restructured the configuration options to allow boot-time table
13158 parsing support without inclusion of the ACPI Interpreter (and
13161 NOTE: This release does not include fixes for the reported events,
13162 power-down, and thermal passive cooling issues (coming soon).
13166 Added additional typechecking for Fields within restricted access
13167 Operation Regions. All fields within EC and CMOS regions must be
13168 declared with ByteAcc. All fields withing SMBus regions must be
13169 declared with the BufferAcc access type.
13171 Fixed a problem where the listing file output of control methods
13172 no longer interleaved the actual AML code with the ASL source
13178 ----------------------------------------
13179 Summary of changes for this label: 11_09_01
13181 1) ACPI CA Core Subsystem:
13183 Implemented ACPI 2.0-defined support for writes to fields with a
13184 Buffer, String, or Integer source operand that is smaller than the
13185 target field. In these cases, the source operand is zero-extended
13186 to fill the target field.
13188 Fixed a problem where a Field starting bit offset (within the
13189 parent operation region) was calculated incorrectly if the
13191 alignment of the field differed from the access width. This
13192 affected CreateWordField, CreateDwordField, CreateQwordField, and
13193 possibly other fields that use the "AccessAny" keyword.
13195 Fixed a problem introduced in the 11_02_01 release where indirect
13196 stores through method arguments did not operate correctly.
13200 Implemented boot-time ACPI table parsing support
13201 (CONFIG_ACPI_BOOT) for IA32 and IA64 UP/SMP systems. This code
13202 facilitates the use of ACPI tables (e.g. MADT, SRAT) rather than
13203 legacy BIOS interfaces (e.g. MPS) for the configuration of system
13204 processors, memory, and interrupts during setup_arch(). Note that
13205 this patch does not include the required architecture-specific
13206 changes required to apply this information -- subsequent patches
13207 will be posted for both IA32 and IA64 to achieve this.
13209 Added low-level sleep support for IA32 platforms, courtesy of Pat
13210 Mochel. This allows IA32 systems to transition to/from various
13211 sleeping states (e.g. S1, S3), although the lack of a centralized
13212 driver model and power-manageable drivers will prevent its
13213 (successful) use on most systems.
13215 Revamped the ACPI 'menuconfig' layout: created new "ACPI Support"
13216 submenu, unified IA32 and IA64 options, added new "Boot using ACPI
13217 tables" option, etc.
13219 Increased the default timeout for the EC driver from 1ms to 10ms
13220 (1000 cycles of 10us) to try to address AE_TIME errors during EC
13223 ----------------------------------------
13224 Summary of changes for this label: 11_02_01
13226 1) ACPI CA Core Subsystem:
13228 ACPI 2.0 Support: Implemented ACPI 2.0 64-bit Field access
13229 (QWordAcc keyword). All ACPI 2.0 64-bit support is now
13232 OSL Interfaces: Several of the OSL (AcpiOs*) interfaces required
13233 changes to support ACPI 2.0 Qword field access. Read/Write
13234 PciConfiguration(), Read/Write Memory(), and Read/Write Port() now
13235 accept an ACPI_INTEGER (64 bits) as the value parameter. Also,
13236 the value parameter for the address space handler interface is now
13237 an ACPI_INTEGER. OSL implementations of these interfaces must now
13238 handle the case where the Width parameter is 64.
13240 Index Fields: Fixed a problem where unaligned bit assembly and
13241 disassembly for IndexFields was not supported correctly.
13243 Index and Bank Fields: Nested Index and Bank Fields are now
13244 supported. During field access, a check is performed to ensure
13245 that the value written to an Index or Bank register is not out of
13246 the range of the register. The Index (or Bank) register is
13247 written before each access to the field data. Future support will
13248 include allowing individual IndexFields to be wider than the
13249 DataRegister width.
13251 Fields: Fixed a problem where the AML interpreter was incorrectly
13252 attempting to write beyond the end of a Field/OpRegion. This was
13253 a boundary case that occurred when a DWORD field was written to a
13254 BYTE access OpRegion, forcing multiple writes and causing the
13255 interpreter to write one datum too many.
13257 Fields: Fixed a problem with Field/OpRegion access where the
13258 starting bit address of a field was incorrectly calculated if the
13259 current access type was wider than a byte (WordAcc, DwordAcc, or
13262 Fields: Fixed a problem where forward references to individual
13263 FieldUnits (individual Field names within a Field definition) were
13264 not resolved during the AML table load.
13266 Fields: Fixed a problem where forward references from a Field
13267 definition to the parent Operation Region definition were not
13268 resolved during the AML table load.
13270 Fields: Duplicate FieldUnit names within a scope are now detected
13271 during AML table load.
13273 Acpi Interfaces: Fixed a problem where the AcpiGetName() interface
13274 returned an incorrect name for the root node.
13276 Code and Data Size: Code and Data optimizations have permitted new
13277 feature development with an actual reduction in the library size.
13278 Current core subsystem library sizes are shown below. These are
13279 the code and data sizes for the acpica.lib produced by the
13280 Microsoft Visual C++ 6.0 compiler, and these values do not include
13281 any ACPI driver or OSPM code. The debug version of the code
13282 includes the debug output trace mechanism and has a larger code
13283 and data size. Note that these values will vary depending on the
13284 efficiency of the compiler and the compiler options used during
13287 Previous Release (10_18_01):
13288 Non-Debug Version: 63.9K Code, 5.1K Data, 69.0K Total
13289 Debug Version: 136.7K Code, 57.4K Data, 194.2K Total
13292 Non-Debug Version: 63.7K Code, 5.2K Data, 68.9K Total
13293 Debug Version: 134.5K Code, 55.4K Data, 189.9K Total
13297 Improved /proc processor output (Pavel Machek) Re-added
13298 MODULE_LICENSE("GPL") to all modules.
13300 3) ASL Compiler version X2030:
13302 Duplicate FieldUnit names within a scope are now detected and
13307 Programmer Reference updated to reflect OSL and address space
13308 handler interface changes described above.
13310 ----------------------------------------
13311 Summary of changes for this label: 10_18_01
13313 ACPI CA Core Subsystem:
13315 Fixed a problem with the internal object reference count mechanism
13316 that occasionally caused premature object deletion. This resolves
13317 all of the outstanding problem reports where an object is deleted
13318 in the middle of an interpreter evaluation. Although this problem
13319 only showed up in rather obscure cases, the solution to the
13320 problem involved an adjustment of all reference counts involving
13321 objects attached to namespace nodes.
13323 Fixed a problem with Field support in the interpreter where
13324 writing to an aligned field whose length is an exact multiple (2
13325 or greater) of the field access granularity would cause an attempt
13326 to write beyond the end of the field.
13328 The top level AML opcode execution functions within the
13329 interpreter have been renamed with a more meaningful and
13330 consistent naming convention. The modules exmonad.c and
13331 exdyadic.c were eliminated. New modules are exoparg1.c,
13332 exoparg2.c, exoparg3.c, and exoparg6.c.
13334 Support for the ACPI 2.0 "Mid" ASL operator has been implemented.
13336 Fixed a problem where the AML debugger was causing some internal
13337 objects to not be deleted during subsystem termination.
13339 Fixed a problem with the external AcpiEvaluateObject interface
13340 where the subsystem would fault if the named object to be
13341 evaluated refered to a constant such as Zero, Ones, etc.
13343 Fixed a problem with IndexFields and BankFields where the
13344 subsystem would fault if the index, data, or bank registers were
13345 not defined in the same scope as the field itself.
13347 Added printf format string checking for compilers that support
13348 this feature. Corrected more than 50 instances of issues with
13349 format specifiers within invocations of ACPI_DEBUG_PRINT
13350 throughout the core subsystem code.
13352 The ASL "Revision" operator now returns the ACPI support level
13353 implemented in the core - the value "2" since the ACPI 2.0 support
13354 is more than 50% implemented.
13356 Enhanced the output of the AML debugger "dump namespace" command
13357 to output in a more human-readable form.
13359 Current core subsystem library code sizes are shown below. These
13361 are the code and data sizes for the acpica.lib produced by the
13362 Microsoft Visual C++ 6.0 compiler, and these values do not include
13363 any ACPI driver or OSPM code. The debug version of the code
13364 includes the full debug trace mechanism -- leading to a much
13366 larger code and data size. Note that these values will vary
13367 depending on the efficiency of the compiler and the compiler
13368 options used during generation.
13370 Previous Label (09_20_01):
13371 Non-Debug Version: 65K Code, 5K Data, 70K Total
13372 Debug Version: 138K Code, 58K Data, 196K Total
13376 Non-Debug Version: 63.9K Code, 5.1K Data, 69.0K Total
13377 Debug Version: 136.7K Code, 57.4K Data, 194.2K Total
13381 Implemented a "Bad BIOS Blacklist" to track machines that have
13382 known ASL/AML problems.
13384 Enhanced the /proc interface for the thermal zone driver and added
13385 support for _HOT (the critical suspend trip point). The 'info'
13386 file now includes threshold/policy information, and allows setting
13387 of _SCP (cooling preference) and _TZP (polling frequency) values
13388 to the 'info' file. Examples: "echo tzp=5 > info" sets the polling
13389 frequency to 5 seconds, and "echo scp=1 > info" sets the cooling
13390 preference to the passive/quiet mode (if supported by the ASL).
13392 Implemented a workaround for a gcc bug that resuted in an OOPs
13393 when loading the control method battery driver.
13395 ----------------------------------------
13396 Summary of changes for this label: 09_20_01
13398 ACPI CA Core Subsystem:
13400 The AcpiEnableEvent and AcpiDisableEvent interfaces have been
13401 modified to allow individual GPE levels to be flagged as wake-
13402 enabled (i.e., these GPEs are to remain enabled when the platform
13405 The AcpiEnterSleepState and AcpiLeaveSleepState interfaces now
13406 support wake-enabled GPEs. This means that upon entering the
13407 sleep state, all GPEs that are not wake-enabled are disabled.
13408 When leaving the sleep state, these GPEs are reenabled.
13410 A local double-precision divide/modulo module has been added to
13411 enhance portability to OS kernels where a 64-bit math library is
13412 not available. The new module is "utmath.c".
13414 Several optimizations have been made to reduce the use of CPU
13415 stack. Originally over 2K, the maximum stack usage is now below
13416 2K at 1860 bytes (1.82k)
13418 Fixed a problem with the AcpiGetFirmwareTable interface where the
13419 root table pointer was not mapped into a logical address properly.
13421 Fixed a problem where a NULL pointer was being dereferenced in the
13422 interpreter code for the ASL Notify operator.
13424 Fixed a problem where the use of the ASL Revision operator
13425 returned an error. This operator now returns the current version
13426 of the ACPI CA core subsystem.
13428 Fixed a problem where objects passed as control method parameters
13429 to AcpiEvaluateObject were always deleted at method termination.
13430 However, these objects may end up being stored into the namespace
13431 by the called method. The object reference count mechanism was
13432 applied to these objects instead of a force delete.
13434 Fixed a problem where static strings or buffers (contained in the
13435 AML code) that are declared as package elements within the ASL
13436 code could cause a fault because the interpreter would attempt to
13437 delete them. These objects are now marked with the "static
13438 object" flag to prevent any attempt to delete them.
13440 Implemented an interpreter optimization to use operands directly
13441 from the state object instead of extracting the operands to local
13442 variables. This reduces stack use and code size, and improves
13445 The module exxface.c was eliminated as it was an unnecessary extra
13448 Current core subsystem library code sizes are shown below. These
13449 are the code and data sizes for the acpica.lib produced by the
13450 Microsoft Visual C++ 6.0 compiler, and these values do not include
13451 any ACPI driver or OSPM code. The debug version of the code
13452 includes the full debug trace mechanism -- leading to a much
13453 larger code and data size. Note that these values will vary
13454 depending on the efficiency of the compiler and the compiler
13455 options used during generation.
13457 Non-Debug Version: 65K Code, 5K Data, 70K Total
13458 (Previously 69K) Debug Version: 138K Code, 58K Data, 196K
13459 Total (Previously 195K)
13463 Support for ACPI 2.0 64-bit integers has been added. All ACPI
13464 Integer objects are now 64 bits wide
13466 All Acpi data types and structures are now in lower case. Only
13467 Acpi macros are upper case for differentiation.
13471 Changes to the external interfaces as described above.
13473 ----------------------------------------
13474 Summary of changes for this label: 08_31_01
13476 ACPI CA Core Subsystem:
13478 A bug with interpreter implementation of the ASL Divide operator
13479 was found and fixed. The implicit function return value (not the
13480 explicit store operands) was returning the remainder instead of
13481 the quotient. This was a longstanding bug and it fixes several
13482 known outstanding issues on various platforms.
13484 The ACPI_DEBUG_PRINT and function trace entry/exit macros have
13485 been further optimized for size. There are 700 invocations of the
13486 DEBUG_PRINT macro alone, so each optimization reduces the size of
13487 the debug version of the subsystem significantly.
13489 A stack trace mechanism has been implemented. The maximum stack
13490 usage is about 2K on 32-bit platforms. The debugger command "stat
13491 stack" will display the current maximum stack usage.
13493 All public symbols and global variables within the subsystem are
13494 now prefixed with the string "Acpi". This keeps all of the
13495 symbols grouped together in a kernel map, and avoids conflicts
13496 with other kernel subsystems.
13498 Most of the internal fixed lookup tables have been moved into the
13499 code segment via the const operator.
13501 Several enhancements have been made to the interpreter to both
13502 reduce the code size and improve performance.
13504 Current core subsystem library code sizes are shown below. These
13505 are the code and data sizes for the acpica.lib produced by the
13506 Microsoft Visual C++ 6.0 compiler, and these values do not include
13507 any ACPI driver or OSPM code. The debug version of the code
13508 includes the full debug trace mechanism which contains over 700
13509 invocations of the DEBUG_PRINT macro, 500 function entry macro
13510 invocations, and over 900 function exit macro invocations --
13511 leading to a much larger code and data size. Note that these
13512 values will vary depending on the efficiency of the compiler and
13513 the compiler options used during generation.
13515 Non-Debug Version: 64K Code, 5K Data, 69K Total
13516 Debug Version: 137K Code, 58K Data, 195K Total
13520 Implemented wbinvd() macro, pending a kernel-wide definition.
13522 Fixed /proc/acpi/event to handle poll() and short reads.
13524 ASL Compiler, version X2026:
13526 Fixed a problem introduced in the previous label where the AML
13528 code emitted for package objects produced packages with zero
13531 ----------------------------------------
13532 Summary of changes for this label: 08_16_01
13534 ACPI CA Core Subsystem:
13536 The following ACPI 2.0 ASL operators have been implemented in the
13537 AML interpreter (These are already supported by the Intel ASL
13538 compiler): ToDecimalString, ToHexString, ToString, ToInteger, and
13539 ToBuffer. Support for 64-bit AML constants is implemented in the
13540 AML parser, debugger, and disassembler.
13542 The internal memory tracking mechanism (leak detection code) has
13543 been upgraded to reduce the memory overhead (a separate tracking
13544 block is no longer allocated for each memory allocation), and now
13545 supports all of the internal object caches.
13547 The data structures and code for the internal object caches have
13548 been coelesced and optimized so that there is a single cache and
13549 memory list data structure and a single group of functions that
13550 implement generic cache management. This has reduced the code
13551 size in both the debug and release versions of the subsystem.
13553 The DEBUG_PRINT macro(s) have been optimized for size and replaced
13554 by ACPI_DEBUG_PRINT. The syntax for this macro is slightly
13555 different, because it generates a single call to an internal
13556 function. This results in a savings of about 90 bytes per
13557 invocation, resulting in an overall code and data savings of about
13558 16% in the debug version of the subsystem.
13562 Fixed C3 disk corruption problems and re-enabled C3 on supporting
13565 Integrated low-level sleep code by Patrick Mochel.
13567 Further tweaked source code Linuxization.
13573 Support for ACPI 2.0 variable length packages is fixed/completed.
13575 Fixed a problem where the optional length parameter for the ACPI
13576 2.0 ToString operator.
13578 Fixed multiple extraneous error messages when a syntax error is
13579 detected within the declaration line of a control method.
13581 ----------------------------------------
13582 Summary of changes for this label: 07_17_01
13584 ACPI CA Core Subsystem:
13586 Added a new interface named AcpiGetFirmwareTable to obtain any
13587 ACPI table via the ACPI signature. The interface can be called at
13588 any time during kernel initialization, even before the kernel
13589 virtual memory manager is initialized and paging is enabled. This
13590 allows kernel subsystems to obtain ACPI tables very early, even
13591 before the ACPI CA subsystem is initialized.
13593 Fixed a problem where Fields defined with the AnyAcc attribute
13594 could be resolved to the incorrect address under the following
13595 conditions: 1) the field width is larger than 8 bits and 2) the
13596 parent operation region is not defined on a DWORD boundary.
13598 Fixed a problem where the interpreter is not being locked during
13599 namespace initialization (during execution of the _INI control
13600 methods), causing an error when an attempt is made to release it
13603 ACPI 2.0 support in the AML Interpreter has begun and will be
13604 ongoing throughout the rest of this year. In this label, The Mod
13605 operator is implemented.
13607 Added a new data type to contain full PCI addresses named
13608 ACPI_PCI_ID. This structure contains the PCI Segment, Bus, Device,
13609 and Function values.
13613 Enhanced the Linux version of the source code to change most
13614 capitalized ACPI type names to lowercase. For example, all
13615 instances of ACPI_STATUS are changed to acpi_status. This will
13616 result in a large diff, but the change is strictly cosmetic and
13617 aligns the CA code closer to the Linux coding standard.
13621 The interfaces to the PCI configuration space have been changed to
13622 add the PCI Segment number and to split the single 32-bit combined
13623 DeviceFunction field into two 16-bit fields. This was
13624 accomplished by moving the four values that define an address in
13625 PCI configuration space (segment, bus, device, and function) to
13626 the new ACPI_PCI_ID structure.
13628 The changes to the PCI configuration space interfaces led to a
13629 reexamination of the complete set of address space access
13630 interfaces for PCI, I/O, and Memory. The previously existing 18
13631 interfaces have proven difficult to maintain (any small change
13632 must be propagated across at least 6 interfaces) and do not easily
13633 allow for future expansion to 64 bits if necessary. Also, on some
13634 systems, it would not be appropriate to demultiplex the access
13635 width (8, 16, 32,or 64) before calling the OSL if the
13636 corresponding native OS interfaces contain a similar access width
13637 parameter. For these reasons, the 18 address space interfaces
13638 have been replaced by these 6 new ones:
13640 AcpiOsReadPciConfiguration
13641 AcpiOsWritePciConfiguration
13647 Added a new interface named AcpiOsGetRootPointer to allow the OSL
13648 to perform the platform and/or OS-specific actions necessary to
13649 obtain the ACPI RSDP table pointer. On IA-32 platforms, this
13650 interface will simply call down to the CA core to perform the low-
13651 memory search for the table. On IA-64, the RSDP is obtained from
13652 EFI. Migrating this interface to the OSL allows the CA core to
13654 remain OS and platform independent.
13656 Added a new interface named AcpiOsSignal to provide a generic
13657 "function code and pointer" interface for various miscellaneous
13658 signals and notifications that must be made to the host OS. The
13659 first such signals are intended to support the ASL Fatal and
13660 Breakpoint operators. In the latter case, the AcpiOsBreakpoint
13661 interface has been obsoleted.
13663 The definition of the AcpiFormatException interface has been
13664 changed to simplify its use. The caller no longer must supply a
13665 buffer to the call; A pointer to a const string is now returned
13666 directly. This allows the call to be easily used in printf
13667 statements, etc. since the caller does not have to manage a local
13671 ASL Compiler, Version X2025:
13673 The ACPI 2.0 Switch/Case/Default operators have been implemented
13674 and are fully functional. They will work with all ACPI 1.0
13675 interpreters, since the operators are simply translated to If/Else
13678 The ACPI 2.0 ElseIf operator is implemented and will also work
13679 with 1.0 interpreters, for the same reason.
13681 Implemented support for ACPI 2.0 variable-length packages. These
13682 packages have a separate opcode, and their size is determined by
13683 the interpreter at run-time.
13685 Documentation The ACPI CA Programmer Reference has been updated to
13686 reflect the new interfaces and changes to existing interfaces.
13688 ------------------------------------------
13689 Summary of changes for this label: 06_15_01
13691 ACPI CA Core Subsystem:
13693 Fixed a problem where a DWORD-accessed field within a Buffer
13694 object would get its byte address inadvertently rounded down to
13695 the nearest DWORD. Buffers are always Byte-accessible.
13697 ASL Compiler, version X2024:
13699 Fixed a problem where the Switch() operator would either fault or
13700 hang the compiler. Note however, that the AML code for this ACPI
13701 2.0 operator is not yet implemented.
13703 Compiler uses the new AcpiOsGetTimer interface to obtain compile
13706 Implementation of the CreateField operator automatically converts
13707 a reference to a named field within a resource descriptor from a
13708 byte offset to a bit offset if required.
13710 Added some missing named fields from the resource descriptor
13711 support. These are the names that are automatically created by the
13712 compiler to reference fields within a descriptor. They are only
13713 valid at compile time and are not passed through to the AML
13716 Resource descriptor named fields are now typed as Integers and
13717 subject to compile-time typechecking when used in expressions.
13719 ------------------------------------------
13720 Summary of changes for this label: 05_18_01
13722 ACPI CA Core Subsystem:
13724 Fixed a couple of problems in the Field support code where bits
13725 from adjacent fields could be returned along with the proper field
13726 bits. Restructured the field support code to improve performance,
13727 readability and maintainability.
13729 New DEBUG_PRINTP macro automatically inserts the procedure name
13730 into the output, saving hundreds of copies of procedure name
13731 strings within the source, shrinking the memory footprint of the
13732 debug version of the core subsystem.
13734 Source Code Structure:
13736 The source code directory tree was restructured to reflect the
13737 current organization of the component architecture. Some files
13738 and directories have been moved and/or renamed.
13742 Fixed leaking kacpidpc processes.
13744 Fixed queueing event data even when /proc/acpi/event is not
13747 ASL Compiler, version X2020:
13749 Memory allocation performance enhancement - over 24X compile time
13750 improvement on large ASL files. Parse nodes and namestring
13751 buffers are now allocated from a large internal compiler buffer.
13753 The temporary .SRC file is deleted unless the "-s" option is
13756 The "-d" debug output option now sends all output to the .DBG file
13757 instead of the console.
13759 "External" second parameter is now optional
13761 "ElseIf" syntax now properly allows the predicate
13763 Last operand to "Load" now recognized as a Target operand
13765 Debug object can now be used anywhere as a normal object.
13767 ResourceTemplate now returns an object of type BUFFER
13769 EISAID now returns an object of type INTEGER
13771 "Index" now works with a STRING operand
13773 "LoadTable" now accepts optional parameters
13775 "ToString" length parameter is now optional
13777 "Interrupt (ResourceType," parse error fixed.
13779 "Register" with a user-defined region space parse error fixed
13781 Escaped backslash at the end of a string ("\\") scan/parse error
13784 "Revision" is now an object of type INTEGER.
13788 ------------------------------------------
13789 Summary of changes for this label: 05_02_01
13793 /proc/acpi/event now blocks properly.
13795 Removed /proc/sys/acpi. You can still dump your DSDT from
13798 ACPI CA Core Subsystem:
13800 Fixed a problem introduced in the previous label where some of the
13801 "small" resource descriptor types were not recognized.
13803 Improved error messages for the case where an ASL Field is outside
13804 the range of the parent operation region.
13806 ASL Compiler, version X2018:
13809 Added error detection for ASL Fields that extend beyond the length
13810 of the parent operation region (only if the length of the region
13811 is known at compile time.) This includes fields that have a
13812 minimum access width that is smaller than the parent region, and
13813 individual field units that are partially or entirely beyond the
13814 extent of the parent.
13818 ------------------------------------------
13819 Summary of changes for this label: 04_27_01
13821 ACPI CA Core Subsystem:
13823 Fixed a problem where the namespace mutex could be released at the
13824 wrong time during execution of AcpiRemoveAddressSpaceHandler.
13826 Added optional thread ID output for debug traces, to simplify
13827 debugging of multiple threads. Added context switch notification
13828 when the debug code realizes that a different thread is now
13829 executing ACPI code.
13831 Some additional external data types have been prefixed with the
13832 string "ACPI_" for consistency. This may effect existing code.
13833 The data types affected are the external callback typedefs - e.g.,
13835 WALK_CALLBACK becomes ACPI_WALK_CALLBACK.
13839 Fixed an issue with the OSL semaphore implementation where a
13840 thread was waking up with an error from receiving a SIGCHLD
13843 Linux version of ACPI CA now uses the system C library for string
13844 manipulation routines instead of a local implementation.
13846 Cleaned up comments and removed TBDs.
13848 ASL Compiler, version X2017:
13850 Enhanced error detection and reporting for all file I/O
13855 Programmer Reference updated to version 1.06.
13859 ------------------------------------------
13860 Summary of changes for this label: 04_13_01
13862 ACPI CA Core Subsystem:
13864 Restructured support for BufferFields and RegionFields.
13865 BankFields support is now fully operational. All known 32-bit
13866 limitations on field sizes have been removed. Both BufferFields
13867 and (Operation) RegionFields are now supported by the same field
13870 Resource support now supports QWORD address and IO resources. The
13871 16/32/64 bit address structures and the Extended IRQ structure
13872 have been changed to properly handle Source Resource strings.
13874 A ThreadId of -1 is now used to indicate a "mutex not acquired"
13875 condition internally and must never be returned by AcpiOsThreadId.
13876 This reserved value was changed from 0 since Unix systems allow a
13881 Driver code reorganized to enhance portability
13883 Added a kernel configuration option to control ACPI_DEBUG
13885 Fixed the EC driver to honor _GLK.
13887 ASL Compiler, version X2016:
13889 Fixed support for the "FixedHw" keyword. Previously, the FixedHw
13890 address space was set to 0, not 0x7f as it should be.
13892 ------------------------------------------
13893 Summary of changes for this label: 03_13_01
13895 ACPI CA Core Subsystem:
13897 During ACPI initialization, the _SB_._INI method is now run if
13900 Notify handler fix - notifies are deferred until the parent method
13901 completes execution. This fixes the "mutex already acquired"
13902 issue seen occasionally.
13904 Part of the "implicit conversion" rules in ACPI 2.0 have been
13905 found to cause compatibility problems with existing ASL/AML. The
13906 convert "result-to-target-type" implementation has been removed
13907 for stores to method Args and Locals. Source operand conversion
13908 is still fully implemented. Possible changes to ACPI 2.0
13909 specification pending.
13911 Fix to AcpiRsCalculatePciRoutingTableLength to return correct
13914 Fix for compiler warnings for 64-bit compiles.
13918 /proc output aligned for easier parsing.
13920 Release-version compile problem fixed.
13922 New kernel configuration options documented in Configure.help.
13924 IBM 600E - Fixed Sleep button may generate "Invalid <NULL>
13929 Power resource driver integrated with bus manager.
13931 Fixed kernel fault during active cooling for thermal zones.
13935 The source code tree has been restructured.
13939 ------------------------------------------
13940 Summary of changes for this label: 03_02_01
13942 Linux OS Services Layer (OSL):
13944 Major revision of all Linux-specific code.
13946 Modularized all ACPI-specific drivers.
13948 Added new thermal zone and power resource drivers.
13950 Revamped /proc interface (new functionality is under /proc/acpi).
13952 New kernel configuration options.
13954 Linux known issues:
13956 New kernel configuration options not documented in Configure.help
13960 Module dependencies not currently implemented. If used, they
13961 should be loaded in this order: busmgr, power, ec, system,
13962 processor, battery, ac_adapter, button, thermal.
13964 Modules will not load if CONFIG_MODVERSION is set.
13966 IBM 600E - entering S5 may reboot instead of shutting down.
13968 IBM 600E - Sleep button may generate "Invalid <NULL> context"
13971 Some systems may fail with "execution mutex already acquired"
13974 ACPI CA Core Subsystem:
13976 Added a new OSL Interface, AcpiOsGetThreadId. This was required
13977 for the deadlock detection code. Defined to return a non-zero, 32-
13978 bit thread ID for the currently executing thread. May be a non-
13979 zero constant integer on single-thread systems.
13981 Implemented deadlock detection for internal subsystem mutexes. We
13982 may add conditional compilation for this code (debug only) later.
13984 ASL/AML Mutex object semantics are now fully supported. This
13985 includes multiple acquires/releases by owner and support for the
13987 Mutex SyncLevel parameter.
13989 A new "Force Release" mechanism automatically frees all ASL
13990 Mutexes that have been acquired but not released when a thread
13991 exits the interpreter. This forces conformance to the ACPI spec
13992 ("All mutexes must be released when an invocation exits") and
13993 prevents deadlocked ASL threads. This mechanism can be expanded
13994 (later) to monitor other resource acquisitions if OEM ASL code
13995 continues to misbehave (which it will).
13997 Several new ACPI exception codes have been added for the Mutex
14000 Recursive method calls are now allowed and supported (the ACPI
14001 spec does in fact allow recursive method calls.) The number of
14002 recursive calls is subject to the restrictions imposed by the
14003 SERIALIZED method keyword and SyncLevel (ACPI 2.0) method
14006 Implemented support for the SyncLevel parameter for control
14007 methods (ACPI 2.0 feature)
14009 Fixed a deadlock problem when multiple threads attempted to use
14012 Fixed a problem where the string length of a String package
14013 element was not always set in a package returned from
14014 AcpiEvaluateObject.
14016 Fixed a problem where the length of a String package element was
14017 not always included in the length of the overall package returned
14018 from AcpiEvaluateObject.
14020 Added external interfaces (Acpi*) to the ACPI debug memory
14021 manager. This manager keeps a list of all outstanding
14022 allocations, and can therefore detect memory leaks and attempts to
14023 free memory blocks more than once. Useful for code such as the
14024 power manager, etc. May not be appropriate for device drivers.
14025 Performance with the debug code enabled is slow.
14027 The ACPI Global Lock is now an optional hardware element.
14029 ASL Compiler Version X2015:
14031 Integrated changes to allow the compiler to be generated on
14032 multiple platforms.
14034 Linux makefile added to generate the compiler on Linux
14038 All platform-specific headers have been moved to their own
14039 subdirectory, Include/Platform.
14041 New source file added, Interpreter/ammutex.c
14043 New header file, Include/acstruct.h
14047 The programmer reference has been updated for the following new
14048 interfaces: AcpiOsGetThreadId AcpiAllocate AcpiCallocate AcpiFree
14050 ------------------------------------------
14051 Summary of changes for this label: 02_08_01
14053 Core ACPI CA Subsystem: Fixed a problem where an error was
14054 incorrectly returned if the return resource buffer was larger than
14055 the actual data (in the resource interfaces).
14057 References to named objects within packages are resolved to the
14059 full pathname string before packages are returned directly (via
14060 the AcpiEvaluateObject interface) or indirectly via the resource
14063 Linux OS Services Layer (OSL):
14065 Improved /proc battery interface.
14068 Added C-state debugging output and other miscellaneous fixes.
14070 ASL Compiler Version X2014:
14072 All defined method arguments can now be used as local variables,
14073 including the ones that are not actually passed in as parameters.
14074 The compiler tracks initialization of the arguments and issues an
14075 exception if they are used without prior assignment (just like
14078 The -o option now specifies a filename prefix that is used for all
14079 output files, including the AML output file. Otherwise, the
14080 default behavior is as follows: 1) the AML goes to the file
14081 specified in the DSDT. 2) all other output files use the input
14082 source filename as the base.
14084 ------------------------------------------
14085 Summary of changes for this label: 01_25_01
14087 Core ACPI CA Subsystem: Restructured the implementation of object
14088 store support within the interpreter. This includes support for
14089 the Store operator as well as any ASL operators that include a
14092 Partially implemented support for Implicit Result-to-Target
14093 conversion. This is when a result object is converted on the fly
14094 to the type of an existing target object. Completion of this
14095 support is pending further analysis of the ACPI specification
14096 concerning this matter.
14098 CPU-specific code has been removed from the subsystem (hardware
14101 New Power Management Timer functions added
14103 Linux OS Services Layer (OSL): Moved system state transition code
14104 to the core, fixed it, and modified Linux OSL accordingly.
14106 Fixed C2 and C3 latency calculations.
14109 We no longer use the compilation date for the version message on
14110 initialization, but retrieve the version from AcpiGetSystemInfo().
14112 Incorporated for fix Sony VAIO machines.
14114 Documentation: The Programmer Reference has been updated and
14118 ASL Compiler: Version X2013: Fixed a problem where the line
14119 numbering and error reporting could get out of sync in the
14120 presence of multiple include files.
14122 ------------------------------------------
14123 Summary of changes for this label: 01_15_01
14125 Core ACPI CA Subsystem:
14127 Implemented support for type conversions in the execution of the
14128 ASL Concatenate operator (The second operand is converted to
14129 match the type of the first operand before concatenation.)
14131 Support for implicit source operand conversion is partially
14132 implemented. The ASL source operand types Integer, Buffer, and
14133 String are freely interchangeable for most ASL operators and are
14134 converted by the interpreter on the fly as required. Implicit
14135 Target operand conversion (where the result is converted to the
14136 target type before storing) is not yet implemented.
14138 Support for 32-bit and 64-bit BCD integers is implemented.
14140 Problem fixed where a field read on an aligned field could cause a
14141 read past the end of the field.
14143 New exception, AE_AML_NO_RETURN_VALUE, is returned when a method
14144 does not return a value, but the caller expects one. (The ASL
14145 compiler flags this as a warning.)
14150 1. Static typechecking of all operands is implemented. This
14151 prevents the use of invalid objects (such as using a Package where
14152 an Integer is required) at compile time instead of at interpreter
14154 2. The ASL source line is printed with ALL errors and warnings.
14155 3. Bug fix for source EOF without final linefeed.
14156 4. Debug option is split into a parse trace and a namespace trace.
14157 5. Namespace output option (-n) includes initial values for
14158 integers and strings.
14159 6. Parse-only option added for quick syntax checking.
14160 7. Compiler checks for duplicate ACPI name declarations
14163 1. Relaxed typechecking to allow interchangeability between
14164 strings, integers, and buffers. These types are now converted by
14165 the interpreter at runtime.
14166 2. Compiler reports time taken by each internal subsystem in the
14170 ------------------------------------------
14171 Summary of changes for this label: 12_14_00
14175 This is the first official release of the compiler. Since the
14176 compiler requires elements of the Core Subsystem, this label
14177 synchronizes everything.
14179 ------------------------------------------
14180 Summary of changes for this label: 12_08_00
14183 Fixed a problem where named references within the ASL definition
14184 of both OperationRegions and CreateXXXFields did not work
14185 properly. The symptom was an AE_AML_OPERAND_TYPE during
14186 initialization of the region/field. This is similar (but not
14187 related internally) to the problem that was fixed in the last
14190 Implemented both 32-bit and 64-bit support for the BCD ASL
14191 functions ToBCD and FromBCD.
14193 Updated all legal headers to include "2000" in the copyright
14196 ------------------------------------------
14197 Summary of changes for this label: 12_01_00
14199 Fixed a problem where method invocations within the ASL definition
14200 of both OperationRegions and CreateXXXFields did not work
14201 properly. The symptom was an AE_AML_OPERAND_TYPE during
14202 initialization of the region/field:
14204 nsinit-0209: AE_AML_OPERAND_TYPE while getting region arguments
14205 [DEBG] ammonad-0284: Exec_monadic2_r/Not: bad operand(s)
14208 Fixed a problem where operators with more than one nested
14209 subexpression would fail. The symptoms were varied, by mostly
14210 AE_AML_OPERAND_TYPE errors. This was actually a rather serious
14211 problem that has gone unnoticed until now.
14213 Subtract (Add (1,2), Multiply (3,4))
14215 Fixed a problem where AcpiGetHandle didn't quite get fixed in the
14216 previous build (The prefix part of a relative path was handled
14219 Fixed a problem where Operation Region initialization failed if
14220 the operation region name was a "namepath" instead of a simple
14221 "nameseg". Symptom was an AE_NO_OPERAND error.
14223 Fixed a problem where an assignment to a local variable via the
14224 indirect RefOf mechanism only worked for the first such
14225 assignment. Subsequent assignments were ignored.
14227 ------------------------------------------
14228 Summary of changes for this label: 11_15_00
14230 ACPI 2.0 table support with backwards support for ACPI 1.0 and the
14231 0.71 extensions. Note: although we can read ACPI 2.0 BIOS tables,
14232 the AML interpreter does NOT have support for the new 2.0 ASL
14233 grammar terms at this time.
14235 All ACPI hardware access is via the GAS structures in the ACPI 2.0
14238 All physical memory addresses across all platforms are now 64 bits
14239 wide. Logical address width remains dependent on the platform
14242 AcpiOsMapMemory interface changed to a 64-bit physical address.
14244 The AML interpreter integer size is now 64 bits, as per the ACPI
14247 For backwards compatibility with ACPI 1.0, ACPI tables with a
14248 revision number less than 2 use 32-bit integers only.
14250 Fixed a problem where the evaluation of OpRegion operands did not
14251 always resolve them to numbers properly.
14253 ------------------------------------------
14254 Summary of changes for this label: 10_20_00
14256 Fix for CBN_._STA issue. This fix will allow correct access to
14257 CBN_ OpRegions when the _STA returns 0x8.
14259 Support to convert ACPI constants (Ones, Zeros, One) to actual
14260 values before a package object is returned
14262 Fix for method call as predicate to if/while construct causing
14263 incorrect if/while behavior
14265 Fix for Else block package lengths sometimes calculated wrong (if
14268 Fix for Processor object length field, was always zero
14270 Table load abort if FACP sanity check fails
14272 Fix for problem with Scope(name) if name already exists
14274 Warning emitted if a named object referenced cannot be found
14275 (resolved) during method execution.
14281 ------------------------------------------
14282 Summary of changes for this label: 9_29_00
14284 New table initialization interfaces: AcpiInitializeSubsystem no
14285 longer has any parameters AcpiFindRootPointer - Find the RSDP (if
14286 necessary) AcpiLoadTables (RSDP) - load all tables found at RSDP-
14287 >RSDT Obsolete Interfaces AcpiLoadFirmwareTables - replaced by
14290 Note: These interface changes require changes to all existing OSDs
14292 The PCI_Config default address space handler is always installed
14293 at the root namespace object.
14295 -------------------------------------------
14296 Summary of changes for this label: 09_15_00
14298 The new initialization architecture is implemented. New
14299 interfaces are: AcpiInitializeSubsystem (replaces AcpiInitialize)
14300 AcpiEnableSubsystem Obsolete Interfaces: AcpiLoadNamespace
14302 (Namespace is automatically loaded when a table is loaded)
14304 The ACPI_OPERAND_OBJECT has been optimized to shrink its size from
14305 52 bytes to 32 bytes. There is usually one of these for every
14306 namespace object, so the memory savings is significant.
14308 Implemented just-in-time evaluation of the CreateField operators.
14310 Bug fixes for IA-64 support have been integrated.
14312 Additional code review comments have been implemented
14314 The so-called "third pass parse" has been replaced by a final walk
14315 through the namespace to initialize all operation regions (address
14316 spaces) and fields that have not yet been initialized during the
14317 execution of the various _INI and REG methods.
14319 New file - namespace/nsinit.c
14321 -------------------------------------------
14322 Summary of changes for this label: 09_01_00
14324 Namespace manager data structures have been reworked to change the
14325 primary object from a table to a single object. This has
14326 resulted in dynamic memory savings of 3X within the namespace and
14327 2X overall in the ACPI CA subsystem.
14329 Fixed problem where the call to AcpiEvFindPciRootBuses was
14330 inadvertently left commented out.
14332 Reduced the warning count when generating the source with the GCC
14335 Revision numbers added to each module header showing the
14336 SourceSafe version of the file. Please refer to this version
14337 number when giving us feedback or comments on individual modules.
14339 The main object types within the subsystem have been renamed to
14340 clarify their purpose:
14342 ACPI_INTERNAL_OBJECT -> ACPI_OPERAND_OBJECT
14343 ACPI_GENERIC_OP -> ACPI_PARSE_OBJECT
14344 ACPI_NAME_TABLE_ENTRY -> ACPI_NAMESPACE_NODE
14346 NOTE: no changes to the initialization sequence are included in
14349 -------------------------------------------
14350 Summary of changes for this label: 08_23_00
14352 Fixed problem where TerminateControlMethod was being called
14353 multiple times per method
14355 Fixed debugger problem where single stepping caused a semaphore to
14358 Improved performance through additional parse object caching -
14359 added ACPI_EXTENDED_OP type
14361 -------------------------------------------
14362 Summary of changes for this label: 08_10_00
14364 Parser/Interpreter integration: Eliminated the creation of
14365 complete parse trees for ACPI tables and control methods.
14366 Instead, parse subtrees are created and then deleted as soon as
14367 they are processed (Either entered into the namespace or executed
14368 by the interpreter). This reduces the use of dynamic kernel
14369 memory significantly. (about 10X)
14371 Exception codes broken into classes and renumbered. Be sure to
14372 recompile all code that includes acexcep.h. Hopefully we won't
14373 have to renumber the codes again now that they are split into
14374 classes (environment, programmer, AML code, ACPI table, and
14377 Fixed some additional alignment issues in the Resource Manager
14380 Implemented semaphore tracking in the AcpiExec utility, and fixed
14381 several places where mutexes/semaphores were being unlocked
14382 without a corresponding lock operation. There are no known
14383 semaphore or mutex "leaks" at this time.
14385 Fixed the case where an ASL Return operator is used to return an
14388 -------------------------------------------
14389 Summary of changes for this label: 07_28_00
14391 Fixed a problem with the way addresses were calculated in
14392 AcpiAmlReadFieldData() and AcpiAmlWriteFieldData(). This problem
14393 manifested itself when a Field was created with WordAccess or
14394 DwordAccess, but the field unit defined within the Field was less
14396 than a Word or Dword.
14398 Fixed a problem in AmlDumpOperands() module's loop to pull
14399 operands off of the operand stack to display information. The
14400 problem manifested itself as a TLB error on 64-bit systems when
14401 accessing an operand stack with two or more operands.
14403 Fixed a problem with the PCI configuration space handlers where
14404 context was getting confused between accesses. This required a
14405 change to the generic address space handler and address space
14406 setup definitions. Handlers now get both a global handler context
14407 (this is the one passed in by the user when executing
14408 AcpiInstallAddressSpaceHandler() and a specific region context
14409 that is unique to each region (For example, the _ADR, _SEG and
14410 _BBN values associated with a specific region). The generic
14411 function definitions have changed to the following:
14413 typedef ACPI_STATUS (*ADDRESS_SPACE_HANDLER) ( UINT32 Function,
14414 UINT32 Address, UINT32 BitWidth, UINT32 *Value, void
14415 *HandlerContext, // This used to be void *Context void
14416 *RegionContext); // This is an additional parameter
14418 typedef ACPI_STATUS (*ADDRESS_SPACE_SETUP) ( ACPI_HANDLE
14419 RegionHandle, UINT32 Function, void *HandlerContext, void
14420 **RegionContext); // This used to be **ReturnContext
14422 -------------------------------------------
14423 Summary of changes for this label: 07_21_00
14425 Major file consolidation and rename. All files within the
14426 interpreter have been renamed as well as most header files. This
14427 was done to prevent collisions with existing files in the host
14428 OSs -- filenames such as "config.h" and "global.h" seem to be
14429 quite common. The VC project files have been updated. All
14430 makefiles will require modification.
14432 The parser/interpreter integration continues in Phase 5 with the
14433 implementation of a complete 2-pass parse (the AML is parsed
14434 twice) for each table; This avoids the construction of a huge
14435 parse tree and therefore reduces the amount of dynamic memory
14436 required by the subsystem. Greater use of the parse object cache
14437 means that performance is unaffected.
14439 Many comments from the two code reviews have been rolled in.
14441 The 64-bit alignment support is complete.
14443 -------------------------------------------
14444 Summary of changes for this label: 06_30_00
14446 With a nod and a tip of the hat to the technology of yesteryear,
14447 we've added support in the source code for 80 column output
14448 devices. The code is now mostly constrained to 80 columns or
14449 less to support environments and editors that 1) cannot display
14450 or print more than 80 characters on a single line, and 2) cannot
14451 disable line wrapping.
14453 A major restructuring of the namespace data structure has been
14454 completed. The result is 1) cleaner and more
14455 understandable/maintainable code, and 2) a significant reduction
14456 in the dynamic memory requirement for each named ACPI object
14459 -------------------------------------------
14460 Summary of changes for this label: 06_23_00
14462 Linux support has been added. In order to obtain approval to get
14463 the ACPI CA subsystem into the Linux kernel, we've had to make
14464 quite a few changes to the base subsystem that will affect all
14465 users (all the changes are generic and OS- independent). The
14466 effects of these global changes have been somewhat far reaching.
14467 Files have been merged and/or renamed and interfaces have been
14468 renamed. The major changes are described below.
14470 Osd* interfaces renamed to AcpiOs* to eliminate namespace
14471 pollution/confusion within our target kernels. All OSD
14472 interfaces must be modified to match the new naming convention.
14474 Files merged across the subsystem. A number of the smaller source
14475 and header files have been merged to reduce the file count and
14476 increase the density of the existing files. There are too many
14477 to list here. In general, makefiles that call out individual
14478 files will require rebuilding.
14480 Interpreter files renamed. All interpreter files now have the
14481 prefix am* instead of ie* and is*.
14483 Header files renamed: The acapi.h file is now acpixf.h. The
14484 acpiosd.h file is now acpiosxf.h. We are removing references to
14485 the acronym "API" since it is somewhat windowsy. The new name is
14486 "external interface" or xface or xf in the filenames.j
14489 All manifest constants have been forced to upper case (some were
14490 mixed case.) Also, the string "ACPI_" has been prepended to many
14491 (not all) of the constants, typedefs, and structs.
14493 The globals "DebugLevel" and "DebugLayer" have been renamed
14494 "AcpiDbgLevel" and "AcpiDbgLayer" respectively.
14496 All other globals within the subsystem are now prefixed with
14497 "AcpiGbl_" Internal procedures within the subsystem are now
14498 prefixed with "Acpi" (with only a few exceptions). The original
14499 two-letter abbreviation for the subcomponent remains after "Acpi"
14500 - for example, CmCallocate became AcpiCmCallocate.
14502 Added a source code translation/conversion utility. Used to
14503 generate the Linux source code, it can be modified to generate
14504 other types of source as well. Can also be used to cleanup
14505 existing source by removing extraneous spaces and blank lines.
14506 Found in tools/acpisrc/*
14508 OsdUnMapMemory was renamed to OsdUnmapMemory and then
14509 AcpiOsUnmapMemory. (UnMap became Unmap).
14511 A "MaxUnits" parameter has been added to AcpiOsCreateSemaphore.
14512 When set to one, this indicates that the caller wants to use the
14514 semaphore as a mutex, not a counting semaphore. ACPI CA uses
14515 both types. However, implementers of this call may want to use
14516 different OS primitives depending on the type of semaphore
14517 requested. For example, some operating systems provide separate
14519 "mutex" and "semaphore" interfaces - where the mutex interface is
14520 much faster because it doesn't have all the overhead of a full
14521 semaphore implementation.
14523 Fixed a deadlock problem where a method that accesses the PCI
14524 address space can block forever if it is the first access to the
14527 -------------------------------------------
14528 Summary of changes for this label: 06_02_00
14530 Support for environments that cannot handle unaligned data
14531 accesses (e.g. firmware and OS environments devoid of alignment
14532 handler technology namely SAL/EFI and the IA-64 Linux kernel) has
14533 been added (via configurable macros) in these three areas: -
14534 Transfer of data from the raw AML byte stream is done via byte
14535 moves instead of word/dword/qword moves. - External objects are
14536 aligned within the user buffer, including package elements (sub-
14537 objects). - Conversion of name strings to UINT32 Acpi Names is now
14540 The Store operator was modified to mimic Microsoft's
14541 implementation when storing to a Buffer Field.
14543 Added a check of the BM_STS bit before entering C3.
14545 The methods subdirectory has been obsoleted and removed. A new
14546 file, cmeval.c subsumes the functionality.
14548 A 16-bit (DOS) version of AcpiExec has been developed. The
14549 makefile is under the acpiexec directory.