Home | History | Annotate | Line # | Download | only in dist
changes.txt revision 1.1.1.28
      1 ----------------------------------------
      2 04 June 2021. Summary of changes for version 20210604:
      3 
      4 1) ACPICA kernel-resident subsystem:
      5 
      6 Cleaned up (delete) the context mutex during local address handler object 
      7 deletion.
      8 
      9 Fixed a memory leak caused by the _CID repair function.
     10 
     11 Added support for PlatformRtMechanism OperationRegion handler. Adds a new 
     12 utility function, AcpiUtConvertUuidToString. Writing a buffer to a 
     13 PlatformRtMechanism fieldunit invokes a bidirectional transaction. The 
     14 input buffer contains 26 bytes containing 9 bytes of status, a command 
     15 byte and a 16-byte UUID. This change will simply pass this incoming 
     16 buffer to a handler registered by the OS.
     17 
     18 2) iASL Compiler/Disassembler and ACPICA tools:
     19 
     20 Added full support for the PRMT ACPI table (Platform Runtime Mechanism 
     21 Table). Includes support in the iASL compiler, the disassembler, and the 
     22 template generator.
     23 
     24 Added full support for the BDAT (BIOS Data ACPI Table) ACPI table.
     25 
     26 Added full support for the RGRT (Regulatory Graphics Resource Table) ACPI 
     27 table.
     28 
     29 Added full support for the SVKL (Storage Volume Key Location Table) ACPI 
     30 table. Header file support from Kuppuswamy Sathyanarayanan 
     31 <sathyanarayanan.kuppuswamy (a] linux.intel.com>.
     32 
     33 Completed full support for the IVRS (I/O Virtualization Reporting 
     34 Structure) ACPI table. Added compiler support for IVRS, updated 
     35 disassembler support. Adds a new utility, UtIsIdInteger, to determine if 
     36 a HID/CID is an integer or a string.
     37 
     38 Headers: Added more structs to the CEDT table: CXL fixed memory window 
     39 structure.
     40 
     41 ACPI 6.4: MADT: added Multiprocessor Wakeup Mailbox Structure.
     42 
     43 ----------------------------------------
     44 31 March 2021. Summary of changes for version 20210331:
     45 
     46 This release is available at https://acpica.org/downloads, and includes 
     47 all ACPI 6.4 support
     48 
     49 1) ACPICA kernel-resident subsystem:
     50 ACPI 6.4: iASL: deprecate DDBHandleObj keyword
     51 Always create namespace nodes using AcpiNsCreateNode(). ACPICA is 
     52 allocating an object using kmalloc(), but then frees it
     53 using kmem_cache_free(<"Acpi-Namespace" kmem_cache>). This is wrong.
     54 Fixed a race condition in generic serial bus operation region handler. 
     55 Fixed by Hans de Goede.
     56 
     57 2) iASL Compiler/Disassembler and ACPICA tools:
     58 
     59 ACPI 6.4: NFIT: add Location Cookie field
     60 ACPI 6.4: HMAT: add new fields/flags
     61 ACPI 6.4: Add new flags in SRAT
     62 ACPI 6.4: add SDEV secure access components
     63 ACPI 6.4: add Csi2Bus resource template
     64 ACPI 6.4: add support for PHAT table
     65 ACPI 6.4: add support for PMTT table
     66 Add disassembly support for the IVRS table. Compilation of the table is 
     67 not yet complete.
     68 Fixed a potential infinite loop due to type mismatch. The for-loop is 
     69 using a UINT8 counter and comparing the upper
     70 limit against a UINT32 AslGbl_ExpectedMessagesIndex maximum. In
     71 the case where AslGbl_ExpectedMessagesIndex is > 255 the counter i
     72 will wrap around to zero and the loop will never exit. I suspect
     73 the AslGbl_ExpectedMessagesIndex is never that high, but fixing
     74 this does future proof the code and cleans up static analysis
     75 warnings.Colin King.
     76 iASL/TableCompiler: update it with IORT table E.b revision changes. From 
     77 shamiali2008.
     78 iASL/TableCompiler: Add compilation support for the VIOT table. Signed-
     79 off-by: Jean-Philippe Brucker.
     80 iASL/TableCompiler: Add compilation support for CEDT table. Also, update 
     81 the CEDT template.
     82 
     83 ----------------------------------------
     84 05 January 2021. Summary of changes for version 20210105:
     85 
     86 This release is available at https://acpica.org/downloads
     87 
     88 
     89 1) ACPICA kernel-resident subsystem:
     90 
     91 Updated all copyrights to 2021. This affects all ACPICA source code 
     92 modules.
     93 
     94 2) iASL Compiler/Disassembler and ACPICA tools:
     95 
     96 ASL test suite (ASLTS): Updated all copyrights to 2021.
     97 
     98 Tools and utilities: Updated all signon copyrights to 2021.
     99 
    100 iASL Table Compiler: Removed support for obsolete ACPI tables: VRTC, 
    101 MTMR. Al Stone.
    102 
    103 
    104 ----------------------------------------
    105 17 December 2020. Summary of changes for version 20201217:
    106 
    107 This release is available at https://acpica.org/downloads
    108 
    109 
    110 1) ACPICA kernel-resident subsystem:
    111 
    112 Note: The implementation of ACPI 6.4 is underway, and is expected to be 
    113 mostly finished next month, when ACPI 6.4 is released.
    114 
    115 From qzed:- fixed-ae-class-macros. Fix exception code class checks. Added 
    116 several new macros, such as ACPI_CNTL_EXCEPTION(Status) in order to 
    117 enable this.
    118 
    119 AcpiExec/iASL/AcpiHelp: Added a few changes for support of GCC 10.2.0. 
    120 These included a few casts, as well as a null pointer check.
    121 
    122 Fix -Wfallthrough: GCC 7.1 gained -Wimplicit-fallthrough to warn on 
    123 implicit fallthrough, as well as __attribute__((__fallthrough__)) and 
    124 comments to explicitly denote that cases of fallthrough were intentional. 
    125 Clang also supports this warning and statement attribute, but not the 
    126 comment form. Added a new macro, ACPI_FALLTHROUGH to support this feature 
    127 of GCC. With assistance from @nickdesaulniers. 
    128 
    129 2) iASL Compiler/Disassembler and ACPICA tools: 
    130 
    131 Added improvement to method call analysis by saving the return type and 
    132 relaxing certain cases of type checking.
    133 
    134 iASL Table Compiler: Improved info messages. Added a message to the -T 
    135 option for when the default template (DSDT) is used.
    136 Also added a note for when multiple SSDTs are created with a DSDT that 
    137 the SSDTs are created in the same file as the DSDT.
    138 
    139 
    140 ----------------------------------------
    141 
    142 13 November 2020. Summary of changes for version 20201113:
    143 
    144 This release is available at https://acpica.org/downloads
    145 
    146 
    147 1) ACPICA kernel-resident subsystem:
    148 
    149 Interpreter: fixed a memory leak by using use existing buffer in _HID 
    150 repair. There was a memory leak that occurred when a _CID object is 
    151 defined as a package containing string objects. When _CID is checked for 
    152 any possible repairs, it calls a helper function to repair _HID (because 
    153 _CID basically contains multiple _HID entries). The _HID repair function 
    154 assumes that string objects are standalone objects that are not contained 
    155 inside of any packages. The _HID repair function replaced the string 
    156 object with a brand new object and attempted to delete the old object by 
    157 decrementing the reference count of the old object. Strings inside of 
    158 packages have a reference count of 2 so the _HID repair function leaves 
    159 this object in a dangling state and causes a memory leak. Instead of 
    160 allocating a brand new object and removing the old object, use the 
    161 existing object when repairing the _HID object.
    162 
    163 Added function trace macros to improve namespace debugging. The namespace 
    164 repair mechanism does not have function tracing macros. Add several trace 
    165 macros to improve debuggability.
    166 
    167 Handle "orphan" _REG methods for GPIO OpRegions. Before this change 
    168 AcpiEvExecuteRegMethods() had special handling to handle "orphan" (no 
    169 matching OpRegion declared) _REG methods for EC nodes. On Intel Cherry 
    170 Trail devices there are 2 possible ACPI OpRegions for accessing GPIOs. 
    171 The standard GeneralPurposeIo OpRegion and the Cherry Trail - specific 
    172 UserDefined 0x9X OpRegions. Having 2 different types of OpRegions leads 
    173 to potential issues with checks for OpRegion availability, or in other 
    174 words checks if _REG has been called for the OpRegion which the ACPI code 
    175 wants to use. Except for the "orphan" EC handling, ACPICA core does not 
    176 call _REG on an ACPI node which does not define an OpRegion matching the 
    177 type being registered; and the reference design DSDT, from which most 
    178 Cherry Trail DSDTs are derived, does not define GeneralPurposeIo, nor 
    179 UserDefined(0x93) OpRegions for the GPO2 (UID 3) device, because no pins 
    180 were assigned ACPI controlled functions in the reference design. Together 
    181 this leads to the perfect storm, at least on the Cherry Trail based 
    182 Medion Akayo E1239T. This design does use a GPO2 pin from its ACPI code 
    183 and has added the Cherry Trail specific UserDefined(0x93) opregion to its 
    184 GPO2 ACPI node to access this pin. But it uses a "has _REG been called" 
    185 availability check for the standard GeneralPurposeIo OpRegion. This 
    186 clearly is a bug in the DSDT, but this does work under Windows. This 
    187 issue leads to the intel vbtn driver reporting the device always being in 
    188 tablet-mode at boot, even if it is in laptop mode. Which in turn causes 
    189 userspace to ignore touchpad events. So in other words, this issue causes 
    190 the touchpad to not work at boot. This change fixes this by extending the 
    191 "orphan" _REG method handling to also apply to GPIO address-space 
    192 handlers.
    193 
    194 
    195 2) iASL Compiler/Disassembler and ACPICA tools: 
    196 
    197 iASL: Added more info to namespace dump file (-ln option). In a separate 
    198 section of the dump file (after the main namespace dump), emit the full 
    199 pathname for each namespace node, its type, and the ASL filename and line 
    200 number where it is declared.
    201 
    202 AcpiHelp: Added an option to display/decode iASL exceptions. Option is: -
    203 x [Hex Value] where "Hex Value" is the iASL exception code. If Hex Value 
    204 is omitted, all iASL exceptions are displayed.
    205 
    206 iASL: Use StringLiteral instead of StringData for some ASL macros. The 
    207 use of the stringData rule allows for some "string" oriented opcodes 
    208 (Such as ToString, ToHexString, etc.) None of which make sense with the 
    209 macros in question. This change modifies the StringData part of the rule 
    210 for these macros to a simple string  literal - thus disallowing the use 
    211 of ToString, ToHexString, etc.
    212 The following ASL operators (macros) are affected:
    213 EisaId
    214 Fprintf
    215 Printf
    216 ToUuid
    217 Unicode
    218 Note: The MS compiler requires the use of string literals for these 
    219 operators also.
    220 
    221 iASL: Added a remark for an unknown UUID: ASL_MSG_UUID_NOT_FOUND. Search 
    222 the list of "known" UUIDs for the input to the ToUUID macro.
    223 
    224 Added 5 new UUIDs to the known UUID table. All related to NVDIMM and the 
    225 NFIT table.
    226 
    227 
    228 ----------------------------------------
    229 
    230 25 September 2020. Summary of changes for version 20200925:
    231 
    232 This release is available at https://acpica.org/downloads
    233 
    234 
    235 1) ACPICA kernel-resident subsystem:
    236 
    237 Preserve memory opregion mappings. The ACPICA's strategy with respect to 
    238 the handling of memory mappings associated with memory operation regions 
    239 is to avoid mapping the entire region at once which may be problematic at 
    240 least in principle (for example, it may lead to conflicts with 
    241 overlapping mappings having different attributes created by drivers).  It 
    242 may also be wasteful, because memory opregions on some systems take up 
    243 vastchunks of address space while the fields in those regions actually 
    244 accessed by AML are sparsely distributed.
    245 
    246 For this reason, a one-page "window" is mapped for a given opregion on 
    247 the first memory access through it and if that "window" does not cover an 
    248 address range accessed through that opregion subsequently, it is unmapped 
    249 and a new "window" is mapped to replace it.  Next, if the new "window" is 
    250 not sufficient to access memory through the opregion in question in the 
    251 future, it will be replaced with yet another "window" and so on.  That 
    252 may lead to a suboptimal sequence of memory mapping and unmapping 
    253 operations, for example if two fields in one opregion separated from each 
    254 other by a sufficiently wide chunk of unused address space are accessed 
    255 in an alternating pattern.
    256 
    257 Added support for 64 bit risc-v compilation.  Useful for acpica tools and 
    258 incorporating ACPICA into the Firmware Test Suite. Colin Ian King 
    259 <colin.king (a] canonical.com>.
    260 
    261 Added support for SMBus predefined names (from SMBus Control Method 
    262 Interface Specification, Version 1.0, December 10, 1999. New predefined 
    263 names:
    264     _SBA
    265     _SBI
    266     _SBR
    267     _SBT
    268     _SBW
    269 
    270 AML Disassembler: Added a new command, "All <NameSeg>". This command will 
    271 evaluate all objects in the current namespace whose NameString contains 
    272 the input NameSeg as the last element of the NameString. Useful for 
    273 debugging.
    274 
    275 
    276 2) iASL Compiler/Disassembler and ACPICA tools: 
    277 
    278 iASL: fixed a crash that occurred when predefined objects return packages 
    279 with lengths that exceed the initializer list.
    280 
    281 iASL: added more detail to external resolution error message when 
    282 compiling multiple definition blocks.
    283 
    284 iASL: added a remark for an attempt to create a nameseg or namestring 
    285 containing lower-case letters. This should prevent declaring multiple 
    286 namesegs or namestrings in an attempt to refer to different objects (with 
    287 different cases), but actually refer to the same object(s).
    288 
    289 iASL: improve alias analysis by saving object type. If the alias is a 
    290 method type, the parameter count is also recorded.
    291 
    292 AcpiExec: Increase the default loop timeout value. Was 1 second, is now 
    293 10 seconds. Prevents unnecessary timeouts when executing control methods 
    294 from the command line.
    295 
    296 AcpiHelp/disassembler: Added a bunch of "known" UUIDs to the internal 
    297 list. Includes:
    298     Memory Device
    299     Generic Buttons Device
    300     NVDIMM Root Device
    301     Control Method Battery
    302     Device Graphs for _DSD method
    303     Hierarchical Data Extension
    304 ....ARM CoreSight Graph
    305 
    306 ----------------------------------------
    307 
    308 
    309 17 July 2020. Summary of changes for version 20200717:
    310 
    311 This release is available at https://acpica.org/downloads
    312 
    313 
    314 1) ACPICA kernel-resident subsystem:
    315 
    316 Do not increment OperationRegion reference counts for field units. Recent 
    317 server firmware has revealed that this reference count can overflow on 
    318 large servers that declare many field units (thousands) under the same 
    319 OperationRegion. This occurs because each field unit declaration will add 
    320 a reference count to the source OperationRegion. This release solves the 
    321 reference count overflow for OperationRegion objects by preventing 
    322 fieldUnits from incrementing their parent OperationRegion's reference 
    323 count.
    324 
    325 Replaced one-element arrays with flexible-arrays, which were introduced 
    326 in C99.
    327 
    328 Restored the readme file containing the directions for generation of 
    329 ACPICA from source on MSVC 2017. Updated the file for MSVC 2017. File is 
    330 located at: generate/msvc2017/readme.txt
    331 
    332 2) iASL Compiler/Disassembler and ACPICA tools: 
    333 
    334 iASL: Fixed a regression found in version 20200214. Prevent iASL from 
    335 emitting an extra byte of garbage data when control methods declared a 
    336 single parameter type without using braces. This extra byte is known to 
    337 cause a blue screen on the Windows AML interpreter.
    338 
    339 iASL: Made a change to allow external declarations to specify the type of 
    340 a named object even when some name segments are not defined.
    341 This change allows the following ASL code to compile (When DEV0 is not 
    342 defined or not defined yet):
    343 
    344     External (\_SB.DEV0.OBJ1, IntObj)
    345     External (\_SB.DEV0, DeviceObj)
    346 
    347 iASL: Fixed a problem where method names in "Alias ()" statement could be 
    348 misinterpreted. They are now interpreted correctly as method invocations.
    349 
    350 iASL: capture a method parameter count (Within the Method info segment, 
    351 as well as the argument node) when using parameter type lists.
    352 
    353 ----------------------------------------
    354 
    355 
    356 28 May 2020. Summary of changes for version 20200528:
    357 
    358 
    359 1) ACPICA kernel-resident subsystem:
    360 
    361 Removed old/obsolete Visual Studio files which were used to build the 
    362 Windows versions of the ACPICA tools. Since we have moved to Visual 
    363 Studio 2017, we are no longer supporting Visual Studio 2006 and 2009 
    364 project files. The new subdirectory and solution file are located at:
    365 
    366     acpica/generate/msvc2017/AcpiComponents.sln
    367 
    368 
    369 2) iASL Compiler/Disassembler and ACPICA tools: 
    370 
    371 iASL: added support for a new OperationRegion Address Space (subtype): 
    372 PlatformRtMechanism. Support for this new keyword is being released for 
    373 early prototyping. It will appear in the next release of the ACPI 
    374 specification.
    375 
    376 iASL: do not optimize the NameString parameter of the CondRefOf operator. 
    377 In the previous iASL compiler release, the NameString parameter of the 
    378 CondRefOf was optimized. There is evidence that some implementations of 
    379 the AML interpreter do not perform the recursive search-to-parent search 
    380 during the execution of the CondRefOf operator. Therefore, the CondRefOf 
    381 operator behaves differently when the NameString parameter is a single 
    382 name segment (a NameSeg) as opposed to a full NamePath (starting at the 
    383 root scope) or a NameString containing parent prefixes.
    384 
    385 iASL: Prevent an inadvertent remark message. This change prevents a 
    386 remark if within a control method the following exist:
    387 1) An Operation Region is defined, and
    388 2) A Field operator is defined that refers to the region.
    389 This happens because at the top level, the Field operator does not 
    390 actually create a new named object, it simply references the operation 
    391 region.
    392 
    393 Removed support for the acpinames utility. The acpinames was a simple 
    394 utility used to populate and display the ACPI namespace without executing 
    395 any AML code. However, ACPICA now supports executable opcodes outside of 
    396 control methods. This means that executable AML opcodes such as If and 
    397 Store opcodes need to be executed during table load. Therefore, acpinames 
    398 would need to be updated to match the same behavior as the acpiexec 
    399 utility and since acpiexec can already dump the entire namespace (via the 
    400 'namespace' command), we no longer have the need to maintain acpinames.
    401 
    402     In order to dump the contents of the ACPI namespace using acpiexec,
    403 execute the following command from the command line:
    404 
    405         acpiexec -b "n" [aml files]
    406 
    407 ----------------------------------------
    408 
    409 
    410 30 April 2020. Summary of changes for version 20200430:
    411 
    412 1) ACPICA kernel-resident subsystem:
    413 
    414 Cleaned up the coding style of a couple of global variables 
    415 (AcpiGbl_NextCmdNum and AcpiProtocolLengths) caught by static analyzers. 
    416 AcpiProtocolLengths was made static, and the definition of 
    417 AcpiGbl_NextCmdNum was moved to acglobal.h.
    418 
    419 
    420 2) iASL Compiler/Disassembler and ACPICA tools: 
    421 
    422 iASL DataTable Compiler:  Fixed a segfault on errors that aren't directly 
    423 associated with a field.
    424 
    425 Disassembler: has been made more resilient so that it will continue to 
    426 parse AML even if the AML generates ACPI namespace errors. This enables 
    427 iASL to disassemble some AML that may have been compiled using older 
    428 versions of iASL that no longer compile with newer versions of iASL.
    429 
    430 iASL: Fixed the required parameters for _NIH and _NIG. Previously, there 
    431 was a mixup where _NIG required one parameter and _NIH required zero 
    432 parameters. This change swaps these parameter requirements. Now it is 
    433 required that _NIH must be called with one parameter and _NIG requires 
    434 zero parameters.
    435 
    436 iASL: Allow use of undefined externals as long as they are protected by 
    437 an if (CondRefOf (...)) block when compiling multiple definition blocks.
    438 
    439 iASL: Fixed the type override behavior of named objects that are declared 
    440 as External. External declarations will no longer override the type of 
    441 the actual definition if it already exists.
    442 
    443 AcpiNames: Added setargv.obj to the MSVC 2017 link sequence to enable 
    444 command line wildcard support on Windows. Note: the AcpiNames utility is 
    445 essentially redundant with the AcpiExec utility (using the "namespace" 
    446 command) and is therefore deprecated. It will be removed in future 
    447 releases of ACPICA.
    448 
    449 Disassembler: ignore AE_ALREADY_EXISTS status when parsing create* 
    450 operators. The disassembler is intended to emit existing ASL code as-is. 
    451 Therefore, error messages emitted during disassembly should be ignored or 
    452 handled in a way such that the disassembler can continue to parse the 
    453 AML. This change ignores AE_ALREADY_EXISTS errors during the deferred Op 
    454 parsing for create operators in order to complete parsing ASL termlists.
    455 
    456 iASL DataTable Compiler: IVRS table: fix potentially uninitialized 
    457 variable warning. Some compilers catch potential uninitialized variables. 
    458 This is done by examining branches of if/else statements. This change 
    459 replaces an "else if" with an "else" to fix the uninitialized variable 
    460 warning.
    461 
    462 
    463 ----------------------------------------
    464 26 March 2020. Summary of changes for version 20200326:
    465 
    466 
    467 1) ACPICA kernel-resident subsystem:
    468 
    469 Performed a code clean-up to prevent build errors on early versions of 
    470 GCC-10.
    471 
    472 Added the NHLT table signature. iASL data table compiler/disassembler 
    473 support for this table is coming soon.
    474 
    475 
    476 2) iASL Compiler/Disassembler and ACPICA tools: 
    477 
    478 AcpiExec: Fixed several problems with the namespace initialization file 
    479 (-fi<filename> option). Includes fixes to prevent AE_ALREADY_EXISTS 
    480 errors, several seg faults, and enhancements to line parsing within the 
    481 init file. In addition, each object found in the init file and it's new 
    482 value is displayed, as well as any such entries that do not have a 
    483 corresponding name in the namespace. For reference, the syntax for the 
    484 various supported data types are presented below:
    485 	PCHG 0x777788889999BBBB	// Integer
    486 	\DEV1.STR1 "XYZ"			// String
    487 	BUF1 (88 99 AA)			// Buffer
    488 	PKG1 [0x1111 0x2222]		// Package
    489 	\BF1 0x7980				// BufferField
    490 	RCRV 0x0123456789ABCDEF	// Field Unit
    491 
    492 iASL: Added a custom iASL macro __EXPECT__(iASL-Error-Code). This macro 
    493 can be used anywhere in a given ASL file to configure iASL to expect an 
    494 iASL compiler error code on the line where this macro was placed. If the 
    495 error code does not exist, an error is generated. This is intended to be 
    496 used for ACPICA's ASL test suite, but can be used by ASL developers as 
    497 well.
    498 
    499 iASL: table compiler: Implemented IVRS IVHD type 11h parsing. The AMD 
    500 IVRS table parsing supported only IVHD type 10h structures. Parsing an 
    501 IVHD type 11h caused the iasl to report unknown subtable type. Add 
    502 necessary structure definition for IVHD type 11h and apply correct 
    503 parsing method based on subtable type. Micha? ?ygowski.
    504 
    505 iASL: table compiler: Fixed IVRS table IVHD type 10h reserved field name 
    506 According to AMD IOMMU Specification Revision 3.05 the reserved field 
    507 should be IOMMU Feature Reporting. Change the name of the field to the 
    508 correct one. Micha? ?ygowski.
    509 
    510 acpiexec: removed redeclaration of AcpiGbl_DbOpt_NoRegionSupport. Patch 
    511 based on suggestions by David Seifert and Benjamin Berg.
    512 
    513 iASL: table compiler: removed an unused variable (DtCompilerParserResult) 
    514 causing linking errors. Patch based on suggestions by David Seifert and 
    515 Benjamin Berg.
    516 
    517 iASL: table compiler: make LexBuffer static to avoid linking errors in 
    518 newer compilers. Patch based on suggestions by David Seifert and Benjamin 
    519 Berg.
    520 
    521 iASL: fixed type matching between External and Named objects. External 
    522 object types can only be expressed with ACPI object type values that are 
    523 defined in the ACPI spec. However, iASL uses ACPI object type values that 
    524 are local to ACPICA in addition to the values defined in the ACPI spec. 
    525 This change implements type matching to map some object type values 
    526 specific to ACPICA to ones that are defined in the ACPI spec.
    527 
    528 iASL: Dropped the type mismatch compiler error that can arise from 
    529 External declarations to a warning. This warning can occur when there is 
    530 a type difference between the external declaration and the actual object 
    531 declaration (when compiling multiple files/modules simultaneously).
    532 
    533 iASL: removed an incorrect error message regarding externals. This change 
    534 removes an incorrect error that is emitted when a duplicate external 
    535 declaration does not contain a type that opens a scope. This is incorrect 
    536 because the duplicate external with conflicting types are already caught 
    537 by iASL and it doesn't make any sense to enforce what this conflicting 
    538 type should be.
    539 
    540 AcpiXtract: fix AX_IS_TABLE_BLOCK_HEADER macro. This macro needs to be 
    541 surrounded by parens. Otherwise, a logical statement that applies a 
    542 logical not operator to this macro could result in a computation that 
    543 applies the operator to the left side of the logical and but not the 
    544 right. Reported-by: John Levon <john.levon (a] joyent.com>
    545 
    546 Fixed a problem with the local version of sprint(): On 32-bit, the 
    547 provided sprintf() is non-functional: with a size of ACPI_UINT32_MAX, 
    548 String + Size will wrap, meaning End < Start, and 
    549 AcpiUtBoundStringOutput() will never output anything as a result. The 
    550 symptom seen of this was acpixtract failing to output anything -- with a 
    551 custom build that included utprint.c. Signed-off-by: John Levon 
    552 <john.levon (a] joyent.com>
    553 
    554 iASL: Changed the "PlatformCommChannel" ASL keyword to "PCC", as per the 
    555 ACPI specification.
    556 
    557 
    558 ----------------------------------------
    559 14 February 2020. Summary of changes for version 20200214:
    560 
    561 
    562 1) ACPICA kernel-resident subsystem:
    563 
    564 Enable sleep button on ACPI legacy wake:  Hibernation (S4) is triggered 
    565 in a guest when it receives a sleep trigger from the hypervisor. When the 
    566 guest resumes from this power state, it does not see the SleepEnabled 
    567 bit. In other words, the sleepHibernation (S4) is triggered in a guest 
    568 when it receives a sleep trigger from the hypervisor. When the guest 
    569 resumes from this power state, it does not see the SleepEnabled bit. In 
    570 other words, the sleep button is not enabled on waking from an S4 state. 
    571 This causes subsequent invocation of sleep state to fail since the 
    572 guest.button is not enabled on waking from an S4 state. This causes 
    573 subsequent invocation of sleep state to fail in the guest. Fix this 
    574 problem by enabling the sleep button in ACPI legacy wake. From Anchal 
    575 Agarwal <anchalag (a] amazon.com>.
    576 
    577 Implemented a new external interface, AcpiAnyGpeStatusSet (). To be used 
    578 for checking the status bits of all enabled GPEs in one go. It is needed 
    579 to distinguish spurious SCIs from genuine ones when deciding whether or 
    580 not to wake up the system from suspend-to-idle.
    581 
    582 Generic Makefiles: replace HOST name with ACPI_HOST: Some machines may be 
    583 using HOST in their environment to represent the host name for their 
    584 machines. Avoid this problem by renaming this variable from HOST to 
    585 ACPI_HOST.
    586 
    587 MSVC 2017 project files: Enable multiprocessor generation to improve 
    588 build performance.
    589 
    590 Added a macro to get the byte width of a Generic Address structure. New 
    591 ACPI_ACCESS_BYTE_WIDTH is in addition to the existing 
    592 ACPI_ACCESS_BIT_WIDTH. From Mika Westerberg.
    593 
    594 
    595 2) iASL Compiler/Disassembler and ACPICA tools: 
    596 
    597 iASL: Implemented full support for the (optional, rarely used) ReturnType 
    598 and ParameterTypesList for the Method, Function, and External operators. 
    599 For Method declarations, the number of individual ParameterTypes must 
    600 match the declaration of the number of arguments (NumArgs). This also 
    601 Fixes a problem with the External operator where extra/extraneous bytes 
    602 were emitted in the AML code if the optional ReturnType/ParameterTypes 
    603 were specified for a MethodObj declaration.
    604 New error message:
    605 1) Method NumArgs count does not match length of ParameterTypes list
    606 
    607 iASL: Implemented detection of type mismatches between External 
    608 declarations and named object declarations. Also, detect type mismatches 
    609 between multiple External declarations of the same Name.
    610 New error messages:
    611 1) Type mismatch between external declaration and actual object 
    612 declaration detected
    613 2) Type mismatch between multiple external declarations detected
    614 
    615 iASL: Implemented new error messages for External operators that specify 
    616 a ReturnType and/or ParameterTypesList for any object type other than 
    617 control methods (MethodObj).
    618 New error messages:
    619 1) Return type is only allowed for Externals declared as MethodObj
    620 2) Parameter type is only allowed for Externals declared as MethodObj
    621 
    622 iASL: Implemented two new remark/warning messages for ASL code that 
    623 creates named objects from within a control method. This is very 
    624 inefficient since the named object must be created and deleted each time 
    625 the method is executed.
    626 New messages:
    627 1) Creation of named objects within a method is highly inefficient, use 
    628 globals or method local variables instead (remark)
    629 2) Static OperationRegion should be declared outside control method 
    630 (warning)
    631 
    632 iASL: Improved illegal forward reference detection by adding support to 
    633 detect forward-reference method invocations.
    634 
    635 iASL: Detect and issue an error message for NameStrings that contain too 
    636 many individual NameSegs (>255). This is an AML limitation that is 
    637 defined in the ACPI specification.
    638 New message:
    639 1) NameString contains too many NameSegs (>255)
    640 
    641 acpidump: windows: use GetSystemFirmwareTable API for all tables except 
    642 SSDT. By using this API, acpidump is able to get all tables in the XSDT
    643 
    644 iASL: Removed unused parser file and updated msvc2017 project files. 
    645 Removed the obsolete AslCompiler.y from the repository.
    646 
    647 iASL: msvc2017: Fixed macros in the file dependency list to prevent 
    648 unnecessary rebuilds. Replace %(Directory) with %(RelativeDir).
    649 
    650 Disassembler: Prevent spilling error messages to the output file. All 
    651 errors are directed to the console instead. These error messages 
    652 prevented re-compilation of the resulting disassembled ASL output file 
    653 (.DSL).
    654 
    655 
    656 ----------------------------------------
    657 10 January 2020. Summary of changes for version 20200110:
    658 
    659 
    660 1) ACPICA kernel-resident subsystem:
    661 
    662 Updated all copyrights to 2020. This affects all ACPICA source code 
    663 modules.
    664 
    665 
    666 2) iASL Compiler/Disassembler and ACPICA tools:
    667 
    668 ASL test suite (ASLTS): Updated all copyrights to 2020.
    669 
    670 Tools and utilities: Updated all signon copyrights to 2020.
    671 
    672 iASL: fix forward reference analysis for field declarations. Fixes 
    673 forward reference analysis for field declarations by searching the 
    674 parent scope for the named object when the object is not present in 
    675 the current scope.
    676 
    677 iASL: Improved the error output for ALREADY_EXISTS errors. Now, the 
    678 full pathname of the name that already exists is printed.
    679 
    680 iASL: Enhance duplicate Case() detection for buffers. Add check for 
    681 buffers with no initializer list (these buffers will be filled with 
    682 zeros at runtime.)
    683 
    684 
    685 ----------------------------------------
    686 13 December 2019. Summary of changes for version 20191213:
    687 
    688 
    689 1) ACPICA kernel-resident subsystem:
    690 
    691 Return a Buffer object for all fields created via the CreateField
    692 operator. Previously, an Integer would be returned if the size of
    693 the field was less than or equal to the current size of an Integer.
    694 Although this goes against the ACPI specification, it provides
    695 compatibility with other ACPI implementations. Also updated the
    696 ASLTS test suite to reflect this new behavior.
    697 
    698 2) iASL Compiler/Disassembler and ACPICA tools:
    699 
    700 iASL: Implemented detection of (and throw an error for) duplicate
    701 values for Case statements within a single Switch statement. Duplicate
    702 Integers, Strings, and Buffers are supported.
    703 
    704 iASL: Fix error logging issue during multiple file compilation --
    705 Switch to the correct input file during error node creation.
    706 
    707 iASL: For duplicate named object creation, now emit an error instead
    708 of a warning - since this will cause a runtime error.
    709 
    710 AcpiSrc: Add unix line-ending support for non-Windows builds.
    711 
    712 iASL: Add an error condition for an attempt to create a NameString
    713 with > 255 NameSegs (the max allowable via the AML definition).
    714 
    715 
    716 ----------------------------------------
    717 18 October 2019. Summary of changes for version 20191018:
    718 
    719 
    720 1) ACPICA kernel-resident subsystem:
    721 
    722 Debugger: added a new command: ?Fields [address space ID]?. This command 
    723 dumps the contents of all field units that are defined within the 
    724 namespace with a particular address space ID.
    725 
    726 Modified the external interface AcpiLoadTable() to return a table index. 
    727 This table index can be used for unloading a table for debugging.
    728     ACPI_STATUS
    729     AcpiLoadTable (
    730         ACPI_TABLE_HEADER       *Table,
    731         UINT32                  *TableIndex))
    732 
    733 Implemented a new external interface: AcpiUnloadTable() This new function 
    734 takes a table index as an argument and unloads the table. Useful for 
    735 debugging only.
    736     ACPI_STATUS
    737     AcpiUnloadTable (
    738         UINT32                  TableIndex))
    739 
    740 Ported the AcpiNames utility to use the new table initialization 
    741 sequence. The utility was broken before this change. Also, it was 
    742 required to include most of the AML interpreter into the utility in order 
    743 to process table initialization (module-level code execution.)
    744 
    745 Update for results from running Clang V8.0.1. This fixes all "dead 
    746 assignment" warnings. There are still several "Dereference of NULL 
    747 pointer" warnings, but these have been found to be false positive 
    748 warnings.
    749 
    750 
    751 2) iASL Compiler/Disassembler and ACPICA tools:
    752 
    753 iASL: numerous table compiler changes to ensure that the usage of 
    754 yacc/bison syntax is POSIX-compliant.
    755 
    756 iASL/disassembler: several simple bug fixes in the data table 
    757 disassembler.
    758 
    759 Acpiexec: expanded the initialization file (the -fi option) to initialize 
    760 strings, buffers, packages, and field units.
    761 
    762 
    763 ----------------------------------------
    764 16 August 2019. Summary of changes for version 20190816:
    765 
    766 This release is available at https://acpica.org/downloads
    767 
    768 
    769 1) ACPICA kernel-resident subsystem:
    770 
    771 Modified the OwnerId mechanism to allow for more Owner Ids. The previous 
    772 limit was 256 Ids, now it is 4096 Ids. This prevents OWNER_ID_LIMIT 
    773 exceptions on machines with a large number of initialization threads, 
    774 many CPU cores and nested initialization control methods.
    775 
    776 Introduced acpi_dispatch_gpe() as a wrapper around AcpiEvDetectGpe() for 
    777 checking if the given GPE (as represented by a GPE device handle and a 
    778 GPE number) is currently active and dispatching it (if that's the case) 
    779 outside of interrupt context.
    780 
    781 Table load: exit the interpreter before initializing objects within the 
    782 new table This prevents re-acquiring the interpreter lock when loading 
    783 tables
    784 
    785 Added the "Windows 2019" string to the _OSI support (version 1903). Jung-
    786 uk Kim
    787 
    788 Macros: removed pointer math on a null pointer. Causes warnings on some 
    789 compilers and/or tools. Changed ACPI_TO_POINTER to use ACPI_CAST_PTR 
    790 instead of using arithmetic.
    791 
    792 Fully deployed the ACPI_PRINTF_LIKE macro. This macro was not being used 
    793 across all "printf-like" internal functions. Also, cleanup all calls to 
    794 such functions (both in 32-bit mode and 64-bit mode) now that they are 
    795 analyzed by the gcc compiler via ACPI_PRINTF_LIKE.
    796 
    797 
    798 2) iASL Compiler/Disassembler and ACPICA tools:
    799 
    800 iASL: implemented a new data table compiler flex/bison front-end. This 
    801 change is internal and is not intended to result in changes to the 
    802 compiled code. This new compiler front-end can be invoked using the -tp 
    803 option for now, until the old mechanism is removed.
    804 
    805 ASLTS: Implemented a new data table compiler test suite. This test suite 
    806 generates all table templates and compile/disassemble/re-compile/binary-
    807 compare each file. 
    808 
    809 iASL: return -1 if AML files were not generated due to compiler errors
    810 
    811 iASL: added a warning on use of the now-legacy ASL Processor () keyword.
    812 
    813 iASL: added an error on _UID object declaration that returns a String 
    814 within a Processor () declaration. A _UID for a processor must be an 
    815 Integer.
    816 
    817 iASL: added a null terminator to name strings that consist only of 
    818 multiple parent prefixes (^)
    819 
    820 iASL: added support to compile both ASL and data table files in a single 
    821 command.
    822 
    823 Updated the tool generation project files that were recently migrated to 
    824 MSVC 2017 to eliminate all new warnings. The new project files appear in 
    825 the directory \acpica\generate\msvc2017. This change effectively 
    826 deprecates the older project files in \acpica\generate\msvc9.
    827 
    828 
    829 ----------------------------------------
    830 03 July 2019. Summary of changes for version 20190703:
    831 
    832 
    833 1) ACPICA kernel-resident subsystem:
    834 
    835 Remove legacy module-level support code. There were still some remnants 
    836 of the legacy module-level code executions. Since we no longer support 
    837 this option, this is essentially dead code and has been removed from the 
    838 ACPICA source.
    839 
    840 iASL: ensure that _WAK, _PTS, _TTS, and _Sx are declared only at the root 
    841 scope. If these named objects are declared outside the root scope, they 
    842 will not be invoked by any host Operating System.
    843 
    844 Clear status of GPEs on first direct enable. ACPI GPEs (other than the EC 
    845 one) can be enabled in two situations. First, the GPEs with existing _Lxx 
    846 and _Exx methods are enabled implicitly by ACPICA during system 
    847 initialization.  Second, the GPEs without these methods (like GPEs listed 
    848 by _PRW objects for wakeup devices) need to be enabled directly by the 
    849 code that is going to use them (e.g. ACPI power management or device 
    850 drivers).
    851 
    852 In the former case, if the status of a given GPE is set to start with, 
    853 its handler method (either _Lxx or _Exx) needs to be invoked to take care 
    854 of the events (possibly) signaled before the GPE was enabled. In the 
    855 latter case, however, the first caller of AcpiEnableGpe() for a given GPE 
    856 should not be expected to care about any events that might be signaled 
    857 through it earlier.  In that case, it is better to clear the status of 
    858 the GPE before enabling it, to prevent stale events from triggering 
    859 unwanted actions (like spurious system resume, for example).
    860 
    861 For this reason, modify AcpiEvAddGpeReference() to take an additional 
    862 boolean argument indicating whether or not the GPE status needs to be 
    863 cleared when its reference counter changes from zero to one and make 
    864 AcpiEnableGpe() pass TRUE to it through that new argument.
    865 
    866 
    867 2) iASL Compiler/Disassembler and ACPICA tools:
    868 
    869 The tool generation process has been migrated to MSVC 2017, and all 
    870 project files have been upgraded. The new project files appear in the 
    871 directory \acpica\generate\msvc2017. This change effectively deprecates 
    872 the older project files in \acpica\generate\msvc9.
    873 
    874 iASL: ensure that _WAK, _PTS, _TTS, and _Sx are declared only at the root 
    875 scope. If these named objects are declared outside the root scope, they 
    876 will not be invoked by any host Operating System
    877 
    878 ----------------------------------------
    879 09 May 2019. Summary of changes for version 20190509:
    880 
    881 
    882 1) ACPICA kernel-resident subsystem:
    883 
    884 Revert commit  6c43e1a ("ACPICA: Clear status of GPEs before enabling 
    885 them") that causes problems with Thunderbolt controllers to occur if a 
    886 dock device is connected at init time (the xhci_hcd and thunderbolt 
    887 modules crash which prevents peripherals connected through them from 
    888 working). Commit 6c43e1a effectively causes commit ecc1165b8b74 ("ACPICA: 
    889 Dispatch active GPEs at init time") to get undone, so the problem 
    890 addressed by commit ecc1165b8b74 appears again as a result of it.
    891 
    892 
    893 2) iASL Compiler/Disassembler and ACPICA tools:
    894 
    895 Reverted iASL: Additional forward reference detection. This change 
    896 reverts forward reference detection for field declarations. The feature 
    897 unintentionally emitted AML bytecode with incorrect package lengths for 
    898 some ASL code related to Fields and OperationRegions. This malformed AML 
    899 can cause systems to crash
    900 during boot. The malformed AML bytecode is emitted in iASL version 
    901 20190329 and 20190405.
    902 
    903 iASL: improve forward reference detection. This change improves forward 
    904 reference detection for named objects inside of scopes. If a parse object 
    905 has the OP_NOT_FOUND_DURING_LOAD set, it means that Op is a reference to 
    906 a named object that is declared later in the AML bytecode. This is 
    907 allowed if the reference is inside of a method and the declaration is 
    908 outside of a method like so:
    909 
    910 DefinitionBlock(...)
    911 {
    912     Method (TEST)
    913     {
    914         Return (NUM0)
    915     }
    916     Name (NUM0,0)
    917 }
    918 
    919 However, if the declaration and reference are both in the same method or 
    920 outside any methods, this is a forward reference and should be marked as 
    921 an error because it would result in runtime errors.
    922 
    923 DefinitionBlock(...)
    924 {
    925     Name (BUFF, Buffer (NUM0) {}) // Forward reference
    926     Name (NUM0, 0x0)
    927 
    928     Method (TEST)
    929     {
    930         Local0 = NUM1
    931         Name (NUM1, 0x1) // Forward reference
    932         return (Local0)
    933     }
    934 }
    935 
    936 iASL: Implemented additional buffer overflow analysis for BufferField 
    937 declarations. Check if a buffer index argument to a create buffer field 
    938 operation is beyond the end of the target buffer.
    939 
    940 This affects these AML operators:
    941  
    942    AML_CREATE_FIELD_OP
    943    AML_CREATE_BIT_FIELD_OP
    944    AML_CREATE_BYTE_FIELD_OP
    945    AML_CREATE_WORD_FIELD_OP
    946    AML_CREATE_DWORD_FIELD_OP
    947    AML_CREATE_QWORD_FIELD_OP
    948 
    949  There are three conditions that must be satisfied in order to allow this 
    950 validation at compile time:
    951  
    952    1) The length of the target buffer must be an integer constant
    953    2) The index specified in the create* must be an integer constant
    954    3) For CreateField, the bit length argument must be non-zero.
    955 
    956 Example:
    957     Name (BUF1, Buffer() {1,2})
    958     CreateField (BUF1, 7, 9, CF03)  // 3: ERR
    959 
    960 dsdt.asl     14:     CreateField (BUF1, 7, 9, CF03)  // 3: ERR
    961 Error    6165 -                           ^ Buffer index beyond end of 
    962 target buffer
    963 
    964 
    965 ----------------------------------------
    966 05 April 2019. Summary of changes for version 20190405:
    967 
    968 
    969 1) ACPICA kernel-resident subsystem:
    970 
    971 Event Manager: History: Commit 18996f2db918 ("ACPICA: Events: Stop 
    972 unconditionally clearing ACPI IRQs during suspend/resume") was added 
    973 earlier to stop clearing of event status bits unconditionally on suspend 
    974 and resume paths. Though this change fixed an issue on suspend path, it 
    975 introduced regressions on several resume paths. In the case of S0ix, 
    976 events are enabled as part of device suspend path. If status bits for the 
    977 events are set when they are enabled, it could result in premature wake 
    978 from S0ix. If status is cleared for any event that is being enabled so 
    979 that any stale events are cleared out. In case of S0ix, events are 
    980 enabled as part of device suspend path. If status bits for the events are 
    981 set when they are enabled, it could result in premature wake from S0ix.
    982 
    983 This change ensures that status is cleared for any event that is being 
    984 enabled so that any stale events are cleared out.
    985 
    986 
    987 2) iASL Compiler/Disassembler and ACPICA tools:
    988 
    989 iASL: Implemented an enhanced multiple file compilation that combines 
    990 named objects from all input files to a single namespace. With this 
    991 feature, any unresolved external declarations as well as duplicate named 
    992 object declarations can be detected during compilation rather than 
    993 generating errors much later at runtime. The following commands are 
    994 examples that utilize this feature:
    995     iasl dsdt.asl ssdt.asl
    996     iasl dsdt.asl ssdt1.asl ssdt2.asl
    997     iasl dsdt.asl ssdt*.asl
    998 
    999 ----------------------------------------
   1000 29 March 2019. Summary of changes for version 20190329:
   1001 
   1002 
   1003 1) ACPICA kernel-resident subsystem:
   1004 
   1005 Namespace support: Remove the address nodes from global list after method 
   1006 termination. The global address list contains pointers to namespace nodes 
   1007 that represent Operation Regions. This change properly removes Operation 
   1008 Region namespace nodes that are declared dynamically during method 
   1009 execution.
   1010 
   1011 Linux: Use a different debug default than ACPICA. There was a divergence 
   1012 between Linux and the ACPICA codebases. In order to resolve this 
   1013 divergence, Linux now declares its own debug default in aclinux.h
   1014 
   1015 Renamed some internal macros to improve code understanding and 
   1016 maintenance. The macros below all operate on single 4-character ACPI 
   1017 NameSegs, not generic strings (old -> new):
   1018     ACPI_NAME_SIZE    -> ACPI_NAMESEG_SIZE
   1019     ACPI_COMPARE_NAME -> ACPI_COMPARE_NAMESEG
   1020     ACPI_MOVE_NAME    -> ACPI_COPY_NAMESEG
   1021 
   1022 Fix for missing comma in array declaration for the AcpiGbl_GenericNotify 
   1023 table.
   1024 
   1025 Test suite: Update makefiles, add PCC operation region support
   1026 
   1027 
   1028 2) iASL Compiler/Disassembler and Tools:
   1029 
   1030 iASL: Implemented additional illegal forward reference detection. Now 
   1031 detect and emit an error upon detection of a forward reference from a 
   1032 Field to an Operation Region. This will fail at runtime if allowed to 
   1033 pass the compiler.
   1034 
   1035 AcpiExec: Add an address list check for dynamic Operation Regions. This 
   1036 feature performs a sanity test for each node the global address list. 
   1037 This is done in order to ensure that all dynamic operation regions are 
   1038 properly removed from the global address list and no dangling pointers 
   1039 are left behind.
   1040 
   1041 Disassembler: Improved generation of resource pathnames. This change 
   1042 improves the code that generates resource descriptor and resource tag 
   1043 pathnames. The original code used a bunch of str* C library functions 
   1044 that caused warnings on some compilers.
   1045 
   1046 iASL: Removed some uses of strncpy and replaced with memmove. The strncpy 
   1047 function can overwrite buffers if the calling code is not very careful. 
   1048 In the case of generating a module/table header, use of memmove is a 
   1049 better implementation.
   1050 
   1051 
   1052 3) Status of new features that have not been completed at this time:
   1053 
   1054 iASL: Implementing an enhanced multiple file compilation into a single 
   1055 namespace feature (Status): This feature will be released soon, and 
   1056 allows multiple ASL files to be compiled into the same single namespace. 
   1057 By doing so, any unresolved external declarations as well as duplicate 
   1058 named object declarations can be detected during compilation (rather than 
   1059 later during runtime). The following commands are examples that utilize 
   1060 this feature:
   1061     iasl dsdt.asl ssdt.asl
   1062     iasl dsdt.asl ssdt1.asl ssdt2.asl
   1063     iasl dsdt.asl ssdt*.asl
   1064 
   1065 ASL tutorial status: Feedback is being gathered internally and the 
   1066 current plan is to publish this tutorial on the ACPICA website after a 
   1067 final review by a tech writer.
   1068 
   1069 ----------------------------------------
   1070 15 February 2019. Summary of changes for version 20190215:
   1071 
   1072 
   1073 0) Support for ACPI specification version 6.3:
   1074 
   1075 Add PCC operation region support for the AML interpreter. This adds PCC 
   1076 operation region support in the AML interpreter and a default handler for 
   1077 acpiexec. The change also renames the PCC region address space keyword to 
   1078 PlatformCommChannel.
   1079 
   1080 Support for new predefined methods _NBS, _NCH, _NIC, _NIH, and _NIG. 
   1081 These methods provide OSPM with health information and device boot 
   1082 status.
   1083 
   1084 PDTT: Add TriggerOrder to the PCC Identifier structure. The field value 
   1085 defines if the trigger needs to be invoked by OSPM before or at the end 
   1086 of kernel crash dump processing/handling operation.
   1087 
   1088 SRAT: Add Generic Affinity Structure subtable. This subtable in the SRAT 
   1089 is used for describing devices such as heterogeneous processors, 
   1090 accelerators, GPUs, and IO devices with integrated compute or DMA 
   1091 engines.
   1092 
   1093 MADT: Add support for statistical profiling in GICC. Statistical 
   1094 profiling extension (SPE) is an architecture-specific feature for ARM.
   1095 
   1096 MADT: Add online capable flag. If this bit is set, system hardware 
   1097 supports enabling this processor during OS runtime.
   1098 
   1099 New Error Disconnect Recover Notification value. There are a number of 
   1100 scenarios where system Firmware in collaboration with hardware may 
   1101 disconnect one or more devices from the rest of the system for purposes 
   1102 of error containment. Firmware can use this new notification value to 
   1103 alert OSPM of such a removal.
   1104 
   1105 PPTT: New additional fields in Processor Structure Flags. These flags 
   1106 provide more information about processor topology.
   1107 
   1108 NFIT/Disassembler: Change a field name from "Address Range" to "Region 
   1109 Type".
   1110 
   1111 HMAT updates: make several existing fields to be reserved as well as 
   1112 rename subtable 0 to "memory proximity domain attributes".
   1113 
   1114 GTDT: Add support for new GTDT Revision 3. This revision adds information 
   1115 for the EL2 timer.
   1116 
   1117 iASL: Update the HMAT example template for new fields.
   1118 
   1119 iASL: Add support for the new revision of the GTDT (Rev 3).
   1120 
   1121 
   1122 1) ACPICA kernel-resident subsystem:
   1123 
   1124 AML Parser: fix the main AML parse loop to correctly skip erroneous 
   1125 extended opcodes. AML opcodes come in two lengths: 1-byte opcodes and 2-
   1126 byte extended opcodes. If an error occurs during an AML table load, the 
   1127 AML parser will continue loading the table by skipping the offending 
   1128 opcode. This implements a "load table at any cost" philosophy.
   1129 
   1130 
   1131 2) iASL Compiler/Disassembler and Tools:
   1132 
   1133 iASL: Add checks for illegal object references, such as a reference 
   1134 outside of method to an object within a method. Such an object is only 
   1135 temporary.
   1136 
   1137 iASL: Emit error for creation of a zero-length operation region. Such a 
   1138 region is rather pointless. If encountered, a runtime error is also 
   1139 implemented in the interpreter.
   1140 
   1141 Debugger: Fix a possible fault with the "test objects" command.
   1142 
   1143 iASL: Makefile: support parent directory filenames containing embedded 
   1144 spaces.
   1145 
   1146 iASL: Update the TPM2 template to revision 4.
   1147 
   1148 iASL: Add the ability to report specific warnings or remarks as errors.
   1149 
   1150 Disassembler: Disassemble OEMx tables as actual AML byte code. 
   1151 Previously, these tables were treated as "unknown table".
   1152 
   1153 iASL: Add definition and disassembly for TPM2 revision 3.
   1154 
   1155 iASL: Add support for TPM2 rev 3 compilation.
   1156 
   1157 
   1158 ----------------------------------------
   1159 08 January 2019. Summary of changes for version 20190108:
   1160 
   1161 
   1162 1) ACPICA kernel-resident subsystem:
   1163 
   1164 Updated all copyrights to 2019. This affects all source code modules.
   1165 
   1166 
   1167 2) iASL Compiler/Disassembler and Tools:
   1168 
   1169 ASL test suite (ASLTS): Updated all copyrights to 2019.
   1170 
   1171 Tools: Updated all signon copyrights to 2019.
   1172 
   1173 AcpiExec: Added a new option to dump extra information concerning any 
   1174 memory leaks detected by the internal object/cache tracking mechanism. -
   1175 va
   1176 
   1177 iASL: Updated the table template for the TPM2 table to the newest version 
   1178 of the table (Revision 4)
   1179 
   1180 
   1181 ----------------------------------------
   1182 13 December 2018. Summary of changes for version 20181213:
   1183 
   1184 
   1185 1) ACPICA Kernel-resident Subsystem:
   1186 
   1187 Fixed some buffer length issues with the GenericSerialBus, related to two 
   1188 of the bidirectional protocols: AttribRawProcessBytes and AttribRawBytes, 
   1189 which are rarely seen in the field. For these, the LEN field of the ASL 
   1190 buffer is now ignored. Hans de Goede
   1191 
   1192 Implemented a new object evaluation trace mechanism for control methods 
   1193 and data objects. This includes nested control methods. It is 
   1194 particularly useful for examining the ACPI execution during system 
   1195 initialization since the output is relatively terse. The flag below 
   1196 enables the output of the trace via the ACPI_DEBUG_PRINT_RAW interface:
   1197    #define ACPI_LV_EVALUATION          0x00080000
   1198 
   1199 Examples:
   1200    Enter evaluation       :  _SB.PCI0._INI (Method)
   1201    Exit evaluation        :  _SB.PCI0._INI
   1202    Enter evaluation       :  _OSI (Method)
   1203    Exit evaluation        :  _OSI
   1204    Enter evaluation       :  _SB.PCI0.TEST (Method)
   1205    Nested method call     :     _SB.PCI0.NST1
   1206    Exit nested method     :     _SB.PCI0.NST1
   1207    Exit evaluation        :  _SB.PCI0.TEST
   1208 
   1209 Added two recently-defined _OSI strings. See 
   1210 https://docs.microsoft.com/en-us/windows-hardware/drivers/acpi/winacpi-
   1211 osi.
   1212    "Windows 2018"
   1213    "Windows 2018.2"
   1214 
   1215 Update for buffer-to-string conversions via the ToHexString ASL operator. 
   1216 A "0x" is now prepended to each of the hex values in the output string. 
   1217 This provides compatibility with other ACPI implementations. The ACPI 
   1218 specification is somewhat vague on this issue.
   1219    Example output string after conversion: 
   1220 "0x01,0x02,0x03,0x04,0x05,0x06"
   1221 
   1222 Return a run-time error for TermArg expressions within individual package 
   1223 elements. Although this is technically supported by the ASL grammar, 
   1224 other ACPI implementations do not support this either. Also, this fixes a 
   1225 fault if this type of construct is ever encountered (it never has been).
   1226 
   1227 
   1228 2) iASL Compiler/Disassembler and Tools:
   1229 
   1230 iASL: Implemented a new compile option (-ww) that will promote individual 
   1231 warnings and remarks to errors. This is intended to enhance the firmware 
   1232 build process.
   1233 
   1234 AcpiExec: Implemented a new command-line option (-eo) to support the new 
   1235 object evaluation trace mechanism described above.
   1236 
   1237 Disassembler: Added support to disassemble OEMx tables as AML/ASL tables 
   1238 instead of a "unknown table" message.
   1239 
   1240 AcpiHelp: Improved support for the "special" predefined names such as 
   1241 _Lxx, _Exx, _EJx, _T_x, etc. For these, any legal hex value can now be 
   1242 used for "xx" and "x".
   1243 
   1244 ----------------------------------------
   1245 31 October 2018. Summary of changes for version 20181031:
   1246 
   1247 
   1248 An Operation Region regression was fixed by properly adding address 
   1249 ranges to a global list during initialization. This allows OS to 
   1250 accurately check for overlapping regions between native devices (such as 
   1251 PCI) and Operation regions as well as checking for region conflicts 
   1252 between two Operation Regions.
   1253 
   1254 Added support for the 2-byte extended opcodes in the code/feature that 
   1255 attempts to continue parsing during the table load phase. Skip parsing 
   1256 Device declarations (and other extended opcodes) when an error occurs 
   1257 during parsing. Previously, only single-byte opcodes were supported.
   1258 
   1259 Cleanup: Simplified the module-level code support by eliminating a 
   1260 useless global variable (AcpiGbl_GroupModuleLeveCode).
   1261 
   1262 
   1263 2) iASL Compiler/Disassembler and Tools:
   1264 
   1265 iASL/Preprocessor: Fixed a regression where an incorrect use of ACPI_FREE 
   1266 could cause a fault in the preprocessor. This was an inadvertent side-
   1267 effect from moving more allocations/frees to the local cache/memory 
   1268 mechanism.
   1269 
   1270 iASL: Enhanced error detection by validating that all NameSeg elements 
   1271 within a NamePatch actually exist. The previous behavior was spotty at 
   1272 best, and such errors could be improperly ignored at compiler time (never 
   1273 at runtime, however. There are two new error messages, as shown in the 
   1274 examples below:
   1275 
   1276 dsdt.asl     33:     CreateByteField (TTTT.BXXX, 1, CBF1)
   1277 Error    6161 -                              ^ One or more objects within 
   1278 the Pathname do not exist (TTTT.BXXX)
   1279 
   1280 dsdt.asl     34:     CreateByteField (BUF1, UUUU.INT1, BBBB.CBF1)
   1281 Error    6160 -        One or more prefix Scopes do not exist ^  
   1282 (BBBB.CBF1)
   1283 
   1284 iASL: Disassembler/table-compiler: Added support for the static data 
   1285 table TPM2 revision 3 (an older version of TPM2). The support has been 
   1286 added for the compiler and the disassembler.
   1287 
   1288 Fixed compilation of DOS format data table file on Unix/Linux systems. 
   1289 iASL now properly detects line continuations (\) for DOS format data 
   1290 table definition language files on when executing on Unix/Linux.
   1291 
   1292 ----------------------------------------
   1293 03 October 2018. Summary of changes for version 20181003:
   1294 
   1295 
   1296 2) iASL Compiler/Disassembler and Tools:
   1297 
   1298 Fixed a regression introduced in version 20180927 that could cause the 
   1299 compiler to fault, especially with NamePaths containing one or more 
   1300 carats (^). Such as: ^^_SB_PCI0
   1301 
   1302 Added a new remark for the Sleep() operator when the sleep time operand 
   1303 is larger than one second. This is a very long time for the ASL/BIOS code 
   1304 and may not be what was intended by the ASL writer.
   1305 
   1306 ----------------------------------------
   1307 27 September 2018. Summary of changes for version 20180927:
   1308 
   1309 
   1310 1) ACPICA kernel-resident subsystem:
   1311 
   1312 Updated the GPE support to clear the status of all ACPI events when 
   1313 entering any/all sleep states in order to avoid premature wakeups. In 
   1314 theory, this may cause some wakeup events to be missed, but the 
   1315 likelihood of this is small. This change restores the original behavior 
   1316 of the ACPICA code in order to fix a regression seen from the previous 
   1317 "Stop unconditionally clearing ACPI IRQs during suspend/resume" change. 
   1318 This regression could cause some systems to incorrectly wake immediately.
   1319 
   1320 Updated the execution of the _REG methods during initialization and 
   1321 namespace loading to bring the behavior into closer conformance to the 
   1322 ACPI specification and other ACPI implementations:
   1323 
   1324 From the ACPI specification 6.2A, section 6.5.4 "_REG (Region):
   1325     "Control methods must assume all operation regions are inaccessible 
   1326 until the _REG(RegionSpace, 1) method is executed"
   1327 
   1328     "The exceptions to this rule are:
   1329 1.  OSPM must guarantee that the following operation regions are always 
   1330 accessible:
   1331     SystemIO operation regions.
   1332     SystemMemory operation regions when accessing memory returned by the 
   1333 System Address Map reporting interfaces."
   1334 
   1335 Since the state of both the SystemIO and SystemMemory address spaces are 
   1336 defined by the specification to never change, this ACPICA change ensures 
   1337 that now _REG is never called on them. This solves some problems seen in 
   1338 the field and provides compatibility with other ACPI implementations. An 
   1339 update to the upcoming new version of the ACPI specification will help 
   1340 clarify this behavior.
   1341 
   1342 Updated the implementation of support for the Generic Serial Bus. For the 
   1343 "bidirectional" protocols, the internal implementation now automatically 
   1344 creates a return data buffer of the maximum size (255). This handles the 
   1345 worst-case for data that is returned from the serial bus handler, and 
   1346 fixes some problems seen in the field. This new buffer is directly 
   1347 returned to the ASL. As such, there is no true "bidirectional" buffer, 
   1348 which matches the ACPI specification. This is the reason for the "double 
   1349 store" seen in the example ASL code in the specification, shown below:
   1350 
   1351 Word Process Call (AttribProcessCall):
   1352     OperationRegion(TOP1, GenericSerialBus, 0x00, 0x100)
   1353     Field(TOP1, BufferAcc, NoLock, Preserve)
   1354     {
   1355         FLD1, 8, // Virtual register at command value 1.
   1356     }
   1357 
   1358     Name(BUFF, Buffer(20){}) // Create GenericSerialBus data buffer
   1359                              // as BUFF
   1360     CreateWordField(BUFF, 0x02, DATA) // DATA = Data (Word)
   1361 
   1362     Store(0x5416, DATA)               // Save 0x5416 into the data buffer
   1363     Store(Store(BUFF, FLD1), BUFF)    // Invoke a write/read Process Call 
   1364 transaction
   1365                            // This is the "double store". The write to
   1366                            // FLD1 returns a new buffer, which is stored
   1367                            // back into BUFF with the second Store.
   1368 
   1369 
   1370 2) iASL Compiler/Disassembler and Tools:
   1371 
   1372 iASL: Implemented detection of extraneous/redundant uses of the Offset() 
   1373 operator within a Field Unit list. A remark is now issued for these. For 
   1374 example, the first two of the Offset() operators below are extraneous. 
   1375 Because both the compiler and the interpreter track the offsets 
   1376 automatically, these Offsets simply refer to the current offset and are 
   1377 unnecessary. Note, when optimization is enabled, the iASL compiler will 
   1378 in fact remove the redundant Offset operators and will not emit any AML 
   1379 code for them.
   1380 
   1381     OperationRegion (OPR1, SystemMemory, 0x100, 0x100)
   1382     Field (OPR1)
   1383     {
   1384         Offset (0),     // Never needed
   1385         FLD1, 32,
   1386         Offset (4),     // Redundant, offset is already 4 (bytes)
   1387         FLD2, 8,
   1388         Offset (64),    // OK use of Offset.
   1389         FLD3, 16,
   1390     }
   1391 dsdt.asl     14:         Offset (0),
   1392 Remark   2158 -                 ^ Unnecessary/redundant use of Offset 
   1393 operator
   1394 
   1395 dsdt.asl     16:         Offset (4),
   1396 Remark   2158 -                 ^ Unnecessary/redundant use of Offset 
   1397 operator
   1398 
   1399 ----------------------------------------
   1400 10 August 2018. Summary of changes for version 20180810:
   1401 
   1402 
   1403 1) ACPICA kernel-resident subsystem:
   1404 
   1405 Initial ACPI table loading: Attempt to continue loading ACPI tables 
   1406 regardless of malformed AML. Since migrating table initialization to the 
   1407 new module-level code support, the AML interpreter rejected tables upon 
   1408 any ACPI error encountered during table load. This is a problem because 
   1409 non-serious ACPI errors during table load do not necessarily mean that 
   1410 the entire definition block (DSDT or SSDT) is invalid. This change 
   1411 improves the table loading by ignoring some types of errors that can be 
   1412 generated by incorrect AML. This can range from object type errors, scope 
   1413 errors, and index errors.
   1414 
   1415 Suspend/Resume support: Update to stop unconditionally clearing ACPI IRQs 
   1416 during suspend/resume. The status of ACPI events is no longer cleared 
   1417 when entering the ACPI S5 system state (power off) which caused some 
   1418 systems to power up immediately after turning off power in certain 
   1419 situations. This was a functional regression. It was fixed by clearing 
   1420 the status of all ACPI events again when entering S5 (for system-wide 
   1421 suspend or hibernation the clearing of the status of all events is not 
   1422 desirable, as it might cause the kernel to miss wakeup events sometimes). 
   1423 Rafael Wysocki.
   1424 
   1425 
   1426 2) iASL Compiler/Disassembler and Tools:
   1427 
   1428 AcpiExec: Enhanced the -fi option (Namespace initialization file). Field 
   1429 elements listed in the initialization file were previously initialized 
   1430 after the table load and before executing module-level code blocks. 
   1431 Recent changes in the module-level code support means that the table load 
   1432 becomes a large control method execution. If fields are used within 
   1433 module-level code and we are executing with the -fi option, the 
   1434 initialization values were used to initialize the namespace object(s) 
   1435 only after the table was finished loading. This change Provides an early 
   1436 initialization of objects specified in the initialization file so that 
   1437 field unit values are populated during the table load (not after the 
   1438 load).
   1439 
   1440 AcpiExec: Fixed a small memory leak regression that could result in 
   1441 warnings during exit of the utility. These warnings were similar to 
   1442 these:
   1443     0002D690 Length 0x0006 nsnames-0502 [Not a Descriptor - too small]
   1444     0002CD70 Length 0x002C utcache-0453 [Operand] Integer RefCount 0x0001
   1445 
   1446 ----------------------------------------
   1447 29 June 2018. Summary of changes for version 20180629:
   1448 
   1449 
   1450 1) iASL Compiler/Disassembler and Tools:
   1451 
   1452 iASL: Fixed a regression related to the use of the ASL External 
   1453 statement. Error checking for the use of the External() statement has 
   1454 been relaxed. Previously, a restriction on the use of External meant that 
   1455 the referenced named object was required to be defined in a different 
   1456 table (an SSDT). Thus it would be an error to declare an object as an 
   1457 external and then define the same named object in the same table. For 
   1458 example:
   1459     DefinitionBlock (...)
   1460     {
   1461         External (DEV1)
   1462         Device (DEV1){...} // This was an error
   1463     }
   1464 However, this behavior has caused regressions in some existing ASL code, 
   1465 because there is code that depends on named objects and externals (with 
   1466 the same name) being declared in the same table. This change will allow 
   1467 the ASL code above to compile without errors or warnings.
   1468 
   1469 iASL: Implemented ASL language extensions for four operators to make some 
   1470 of their arguments optional instead of required:
   1471     1) Field (RegionName, AccessType, LockRule, UpdateRule)
   1472     2) BankField (RegionName, BankName, BankValue,
   1473                 AccessType, LockRule, UpdateRule)
   1474     3) IndexField (IndexName, DataName,
   1475                 AccessType, LockRule, UpdateRule)
   1476 For the Field operators above, the AccessType, LockRule, and UpdateRule 
   1477 are now optional arguments. The default values are:
   1478         AccessType: AnyAcc
   1479         LockRule:   NoLock
   1480         UpdateRule: Preserve
   1481     4) Mutex (MutexName, SyncLevel)
   1482 For this operator, the SyncLevel argument is now optional. This argument 
   1483 is rarely used in any meaningful way by ASL code, and thus it makes sense 
   1484 to make it optional. The default value is:
   1485         SyncLevel:  0
   1486 
   1487 iASL: Attempted use of the ASL Unload() operator now results in the 
   1488 following warning:
   1489     "Unload is not supported by all operating systems"
   1490 This is in fact very true, and the Unload operator may be completely 
   1491 deprecated in the near future.
   1492 
   1493 AcpiExec: Fixed a regression for the -fi option (Namespace initialization 
   1494 file. Recent changes in the ACPICA module-level code support altered the 
   1495 table load/initialization sequence . This means that the table load has 
   1496 become a large method execution of the table itself. If Operation Region 
   1497 Fields are used within any module-level code and the -fi option was 
   1498 specified, the initialization values were populated only after the table 
   1499 had completely finished loading (and thus the module-level code had 
   1500 already been executed). This change moves the initialization of objects 
   1501 listed in the initialization file to before the table is executed as a 
   1502 method. Field unit values are now initialized before the table execution 
   1503 is performed.
   1504 
   1505 ----------------------------------------
   1506 31 May 2018. Summary of changes for version 20180531:
   1507 
   1508 
   1509 1) ACPICA kernel-resident Subsystem:
   1510 
   1511 Implemented additional support to help ensure that a DSDT or SSDT is 
   1512 fully loaded even if errors are incurred during the load. The majority of 
   1513 the problems that are seen is the failure of individual AML operators 
   1514 that occur during execution of any module-level code (MLC) existing in 
   1515 the table. This support adds a mechanism to abort the current ASL 
   1516 statement (AML opcode), emit an error message, and to simply move on to 
   1517 the next opcode -- instead of aborting the entire table load. This is 
   1518 different than the execution of a control method where the entire method 
   1519 is aborted upon any error. The goal is to perform a very "best effort" to 
   1520 load the ACPI tables. The most common MLC errors that have been seen in 
   1521 the field are direct references to unresolved ASL/AML symbols (referenced 
   1522 directly without the use of the CondRefOf operator to validate the 
   1523 symbol). This new ACPICA behavior is now compatible with other ACPI 
   1524 implementations.
   1525 
   1526 Interpreter: The Unload AML operator is no longer supported for the 
   1527 reasons below. An AE_NOT_IMPLEMENTED exception is returned.
   1528 1) A correct implementation on at least some hosts may not be possible.
   1529 2) Other ACPI implementations do not correctly/fully support it.
   1530 3) It requires host device driver support which is not known to exist.
   1531     (To properly support namespace unload out from underneath.)
   1532 4) This AML operator has never been seen in the field.
   1533 
   1534 Parser: Added a debug option to dump AML parse sub-trees as they are 
   1535 being executed. Used with ACPI_DEBUG_PRINT, the enabling debug level is 
   1536 ACPI_DB_PARSE_TREES.
   1537 
   1538 Debugger: Reduced the verbosity for errors incurred during table load and 
   1539 module-level code execution.
   1540 
   1541 Completed an investigation into adding a namespace node "owner list" 
   1542 instead of the current "owner ID" associated with namespace nodes. This 
   1543 list would link together all nodes that are owned by an individual 
   1544 control method. The purpose would be to enhance control method execution 
   1545 by speeding up cleanup during method exit (all namespace nodes created by 
   1546 a method are deleted upon method termination.) Currently, the entire 
   1547 namespace must be searched for matching owner IDs if (and only if) the 
   1548 method creates named objects outside of the local scope. However, by far 
   1549 the most common case is that methods create objects locally, not outside 
   1550 the method scope. There is already an ACPICA optimization in place that 
   1551 only searches the entire namespace in the rare case of a method creating 
   1552 objects elsewhere in the namespace. Therefore, it is felt that the 
   1553 overhead of adding an additional pointer to each namespace node to 
   1554 implement the owner list makes this feature unnecessary.
   1555 
   1556 
   1557 2) iASL Compiler/Disassembler and Tools:
   1558 
   1559 iASL, Disassembler, and Template generator: Implemented support for 
   1560 Revision D of the IORT table. Adds a new subtable that is used to specify 
   1561 SMMUv3 PMCGs. rmurphy-arm.
   1562 
   1563 Disassembler: Restored correct table header validation for the "special" 
   1564 ACPI tables -- RSDP and FACS. These tables do not contain a standard ACPI 
   1565 table header and must be special-cased. This was a regression that has 
   1566 been present for apparently a long time.
   1567 
   1568 AcpiExec: Reduced verbosity of the local exception handler implemented 
   1569 within acpiexec. This handler is invoked by ACPICA upon any exceptions 
   1570 generated during control method execution. A new option was added: -vh 
   1571 restores the original verbosity level if desired.
   1572 
   1573 AcpiExec: Changed the default base from decimal to hex for the -x option 
   1574 (set debug level). This simplifies the use of this option and matches the 
   1575 behavior of the corresponding iASL -x option.
   1576 
   1577 AcpiExec: Restored a force-exit on multiple control-c (sigint) 
   1578 interrupts. This allows program termination even if other issues cause 
   1579 the control-c to fail.
   1580 
   1581 ASL test suite (ASLTS): Added tests for the recently implemented package 
   1582 element resolution mechanism that allows forward references to named 
   1583 objects from individual package elements (this mechanism provides 
   1584 compatibility with other ACPI implementations.)
   1585 
   1586 
   1587 ----------------------------------------
   1588 8 May 2018. Summary of changes for version 20180508:
   1589 
   1590 
   1591 1) ACPICA kernel-resident subsystem:
   1592 
   1593 Completed the new (recently deployed) package resolution mechanism for 
   1594 the Load and LoadTable ASL/AML operators. This fixes a regression that 
   1595 was introduced in version 20180209 that could result in an 
   1596 AE_AML_INTERNAL exception during the loading of a dynamic ACPI/AML table 
   1597 (SSDT) that contains package objects.
   1598 
   1599 
   1600 2) iASL Compiler/Disassembler and Tools:
   1601 
   1602 AcpiDump and AcpiXtract: Implemented support for ACPI tables larger than 
   1603 1 MB. This change allows for table offsets within the acpidump file to be 
   1604 up to 8 characters. These changes are backwards compatible with existing 
   1605 acpidump files.
   1606 
   1607 
   1608 ----------------------------------------
   1609 27 April 2018. Summary of changes for version 20180427: 
   1610 
   1611 
   1612 1) ACPICA kernel-resident subsystem:
   1613 
   1614 Debugger: Added support for Package objects in the "Test Objects" 
   1615 command. This command walks the entire namespace and evaluates all named 
   1616 data objects (Integers, Strings, Buffers, and now Packages).
   1617 
   1618 Improved error messages for the namespace root node. Originally, the root 
   1619 was referred to by the confusing string "\___". This has been replaced by 
   1620 "Namespace Root" for clarification.
   1621 
   1622 Fixed a potential infinite loop in the AcpiRsDumpByteList function. Colin 
   1623 Ian King <colin.king (a] canonical.com>.
   1624 
   1625 
   1626 2) iASL Compiler/Disassembler and Tools: 
   1627 
   1628 iASL: Implemented support to detect and flag illegal forward references. 
   1629 For compatibility with other ACPI implementations, these references are 
   1630 now illegal at the root level of the DSDT or SSDTs. Forward references 
   1631 have always been illegal within control methods. This change should not 
   1632 affect existing ASL/AML code because of the fact that these references 
   1633 have always been illegal in the other ACPI implementation.
   1634 
   1635 iASL: Added error messages for the case where a table OEM ID and OEM 
   1636 TABLE ID strings are longer than the ACPI-defined length. Previously, 
   1637 these strings were simply silently truncated.
   1638 
   1639 iASL: Enhanced the -tc option (which creates an AML hex file in C, 
   1640 suitable for import into a firmware project):
   1641   1) Create a unique name for the table, to simplify use of multiple 
   1642 SSDTs.
   1643   2) Add a protection #ifdef in the file, similar to a .h header file.
   1644 With assistance from Sami Mujawar, sami.mujawar (a] arm.com and Evan Lloyd, 
   1645 evan.lloyd (a] arm.com
   1646 
   1647 AcpiExec: Added a new option, -df, to disable the local fault handler. 
   1648 This is useful during debugging, where it may be desired to drop into a 
   1649 debugger on a fault.
   1650 
   1651 ----------------------------------------
   1652 13 March 2018. Summary of changes for version 20180313:
   1653 
   1654 
   1655 1) ACPICA kernel-resident subsystem:
   1656 
   1657 Implemented various improvements to the GPE support:
   1658 
   1659 1) Dispatch all active GPEs at initialization time so that no GPEs are 
   1660 lost.
   1661 2) Enable runtime GPEs earlier. Some systems expect GPEs to be enabled 
   1662 before devices are enumerated.
   1663 3) Don't unconditionally clear ACPI IRQs during suspend/resume, so that 
   1664 IRQs are not lost.
   1665 4) Add parallel GPE handling to eliminate the possibility of dispatching 
   1666 the same GPE twice.
   1667 5) Dispatch any pending GPEs after enabling for the first time.
   1668 
   1669 AcpiGetObjectInfo - removed support for the _STA method. This was causing 
   1670 problems on some platforms.
   1671 
   1672 Added a new _OSI string, "Windows 2017.2".
   1673 
   1674 Cleaned up and simplified the module-level code support. These changes 
   1675 are in preparation for the eventual removal of the legacy MLC support 
   1676 (deferred execution), replaced by the new MLC architecture which executes 
   1677 the MLC as a table is loaded (DSDT/SSDTs).
   1678 
   1679 Changed a compile-time option to a runtime option. Changes the option to 
   1680 ignore ACPI table load-time package resolution errors into a runtime 
   1681 option. Used only for platforms that generate many AE_NOT_FOUND errors 
   1682 during boot. AcpiGbl_IgnorePackageResolutionErrors.
   1683 
   1684 Fixed the ACPI_ERROR_NAMESPACE macro. This change involves putting some 
   1685 ACPI_ERROR_NAMESPACE parameters inside macros. By doing so, we avoid 
   1686 compilation errors from unused variables (seen with some compilers).
   1687 
   1688 
   1689 2) iASL Compiler/Disassembler and Tools:
   1690 
   1691 ASLTS: parallelized execution in order to achieve an (approximately) 2X 
   1692 performance increase.
   1693 
   1694 ASLTS: Updated to use the iASL __LINE__ and __METHOD__ macros. Improves 
   1695 error reporting.
   1696 
   1697 ----------------------------------------
   1698 09 February 2018. Summary of changes for version 20180209:
   1699 
   1700 
   1701 1) ACPICA kernel-resident subsystem:
   1702 
   1703 Completed the final integration of the recent changes to Package Object 
   1704 handling and the module-level AML code support. This allows forward 
   1705 references from individual package elements when the package object is 
   1706 declared from within module-level code blocks. Provides compatibility 
   1707 with other ACPI implementations.
   1708 
   1709 The new architecture for the AML module-level code has been completed and 
   1710 is now the default for the ACPICA code. This new architecture executes 
   1711 the module-level code in-line as the ACPI table is loaded/parsed instead 
   1712 of the previous architecture which deferred this code until after the 
   1713 table was fully loaded. This solves some ASL code ordering issues and 
   1714 provides compatibility with other ACPI implementations. At this time, 
   1715 there is an option to fallback to the earlier architecture, but this 
   1716 support is deprecated and is planned to be completely removed later this 
   1717 year.
   1718 
   1719 Added a compile-time option to ignore AE_NOT_FOUND exceptions during 
   1720 resolution of named reference elements within Package objects. Although 
   1721 this is potentially a serious problem, it can generate a lot of 
   1722 noise/errors on platforms whose firmware carries around a bunch of unused 
   1723 Package objects. To disable these errors, define 
   1724 ACPI_IGNORE_PACKAGE_RESOLUTION_ERRORS in the OS-specific header. All 
   1725 errors are always reported for ACPICA applications such as AcpiExec.
   1726 
   1727 Fixed a regression related to the explicit type-conversion AML operators 
   1728 (ToXXXX). The regression was introduced early in 2017 but was not seen 
   1729 until recently because these operators are not fully supported by other 
   1730 ACPI implementations and are thus rarely used by firmware developers. The 
   1731 operators are defined by the ACPI specification to not implement the 
   1732 "implicit result object conversion". The regression incorrectly 
   1733 introduced this object conversion for the following explicit conversion 
   1734 operators:
   1735     ToInteger
   1736     ToString
   1737     ToBuffer
   1738     ToDecimalString
   1739     ToHexString
   1740     ToBCD
   1741     FromBCD
   1742 
   1743 
   1744 2) iASL Compiler/Disassembler and Tools:
   1745 
   1746 iASL: Fixed a problem with the compiler constant folding feature as 
   1747 related to the ToXXXX explicit conversion operators. These operators do 
   1748 not support the "implicit result object conversion" by definition. Thus, 
   1749 ASL expressions that use these operators cannot be folded to a simple 
   1750 Store operator because Store implements the implicit conversion. This 
   1751 change uses the CopyObject operator for the ToXXXX operator folding 
   1752 instead. CopyObject is defined to not implement implicit result 
   1753 conversions and is thus appropriate for folding the ToXXXX operators.
   1754 
   1755 iASL: Changed the severity of an error condition to a simple warning for 
   1756 the case where a symbol is declared both locally and as an external 
   1757 symbol. This accommodates existing ASL code.
   1758 
   1759 AcpiExec: The -ep option to enable the new architecture for module-level 
   1760 code has been removed. It is replaced by the -dp option which instead has 
   1761 the opposite effect: it disables the new architecture (the default) and 
   1762 enables the legacy architecture. When the legacy code is removed in the 
   1763 future, the -dp option will be removed also.
   1764 
   1765 ----------------------------------------
   1766 05 January 2018. Summary of changes for version 20180105:
   1767 
   1768 
   1769 1) ACPICA kernel-resident subsystem:
   1770 
   1771 Updated all copyrights to 2018. This affects all source code modules.
   1772 
   1773 Fixed a possible build error caused by an unresolved reference to the 
   1774 AcpiUtSafeStrncpy function.
   1775 
   1776 Removed NULL pointer arithmetic in the various pointer manipulation 
   1777 macros. All "(void *) NULL" constructs are converted to "(void *) 0". 
   1778 This eliminates warnings/errors in newer C compilers. Jung-uk Kim.
   1779 
   1780 Added support for A32 ABI compilation, which uses the ILP32 model. Anuj 
   1781 Mittal.
   1782 
   1783 
   1784 2) iASL Compiler/Disassembler and Tools:
   1785 
   1786 ASLTS: Updated all copyrights to 2018.
   1787 
   1788 Tools: Updated all signon copyrights to 2018.
   1789 
   1790 AcpiXtract: Fixed a regression related to ACPI table signatures where the 
   1791 signature was truncated to 3 characters (instead of 4).
   1792 
   1793 AcpiExec: Restore the original terminal mode after the use of the -v and 
   1794 -vd options.
   1795 
   1796 ASLTS: Deployed the iASL __METHOD__ macro across the test suite.
   1797 
   1798 ----------------------------------------
   1799 14 December 2017. Summary of changes for version 20171214:
   1800 
   1801 
   1802 1) ACPICA kernel-resident subsystem:
   1803 
   1804 Fixed a regression in the external (public) AcpiEvaluateObjectTyped 
   1805 interface where the optional "pathname" argument had inadvertently become 
   1806 a required argument returning an error if omitted (NULL pointer 
   1807 argument).
   1808 
   1809 Fixed two possible memory leaks related to the recently developed "late 
   1810 resolution" of reference objects within ASL Package Object definitions.
   1811 
   1812 Added two recently defined _OSI strings: "Windows 2016" and "Windows 
   1813 2017". Mario Limonciello.
   1814 
   1815 Implemented and deployed a safer version of the C library function 
   1816 strncpy:  AcpiUtSafeStrncpy. The intent is to at least prevent the 
   1817 creation of unterminated strings as a possible result of a standard 
   1818 strncpy.
   1819 
   1820 Cleaned up and restructured the global variable file (acglobal.h). There 
   1821 are many changes, but no functional changes.
   1822 
   1823 
   1824 2) iASL Compiler/Disassembler and Tools:
   1825 
   1826 iASL Table Compiler: Fixed a problem with the DBG2 ACPI table where the 
   1827 optional OemData field at the end of the table was incorrectly required 
   1828 for proper compilation. It is now correctly an optional field.
   1829 
   1830 ASLTS: The entire suite was converted from standard ASL to the ASL+ 
   1831 language, using the ASL-to-ASL+ converter which is integrated into the 
   1832 iASL compiler. A binary compare of all output files has verified the 
   1833 correctness of the conversion.
   1834 
   1835 iASL: Fixed the source code build for platforms where "char" is unsigned. 
   1836 This affected the iASL lexer only. Jung-uk Kim.
   1837 
   1838 ----------------------------------------
   1839 10 November 2017. Summary of changes for version 20171110:
   1840 
   1841 
   1842 1) ACPICA kernel-resident subsystem:
   1843 
   1844 This release implements full support for ACPI 6.2A:
   1845     NFIT - Added a new subtable, "Platform Capabilities Structure"
   1846 No other changes to ACPICA were required, since ACPI 6.2A is primarily an 
   1847 errata release of the specification.
   1848 
   1849 Other ACPI table changes:
   1850     IORT: Added the SMMUv3 Device ID mapping index. Hanjun Guo
   1851     PPTT: Added cache attribute flag definitions to actbl1.h. Jeremy 
   1852 Linton
   1853 
   1854 Utilities: Modified the string/integer conversion functions to use 
   1855 internal 64-bit divide support instead of a native divide. On 32-bit 
   1856 platforms, a 64-bit divide typically requires a library function which 
   1857 may not be present in the build (kernel or otherwise).
   1858 
   1859 Implemented a targeted error message for timeouts returned from the 
   1860 Embedded Controller device driver. This is seen frequently enough to 
   1861 special-case an AE_TIME returned from an EC operation region access:
   1862     "Timeout from EC hardware or EC device driver"
   1863 
   1864 Changed the "ACPI Exception" message prefix to "ACPI Error" so that all 
   1865 runtime error messages have the identical prefix.
   1866 
   1867 
   1868 2) iASL Compiler/Disassembler and Tools:
   1869 
   1870 AcpiXtract: Fixed a problem with table header detection within the 
   1871 acpidump file. Processing a table could be ended early if a 0x40 (@) 
   1872 appears in the original binary table, resulting in the @ symbol appearing 
   1873 in the decoded ASCII field at the end of the acpidump text line. The 
   1874 symbol caused acpixtract to incorrectly think it had reached the end of 
   1875 the current table and the beginning of a new table.
   1876 
   1877 AcpiXtract: Added an option (-f) to ignore some errors during table 
   1878 extraction. This initial implementation ignores non-ASCII and non-
   1879 printable characters found in the acpidump text file.
   1880 
   1881 TestSuite(ASLTS)/AcpiExec: Fixed and restored the memory usage statistics 
   1882 for ASLTS. This feature is used to track memory allocations from 
   1883 different memory caches within the ACPICA code. At the end of an ASLTS 
   1884 run, these memory statistics are recorded and stored in a log file.
   1885 
   1886 Debugger (user-space version): Implemented a simple "Background" command. 
   1887 Creates a new thread to execute a control method in the background, while 
   1888 control returns to the debugger prompt to allow additional commands.
   1889     Syntax: Background <Namepath> [Arguments]
   1890 
   1891 ----------------------------------------
   1892 29 September 2017. Summary of changes for version 20170929:
   1893 
   1894 
   1895 1) ACPICA kernel-resident subsystem:
   1896 
   1897 Redesigned and implemented an improved ASL While() loop timeout 
   1898 mechanism. This mechanism is used to prevent infinite loops in the kernel 
   1899 AML interpreter caused by either non-responsive hardware or incorrect AML 
   1900 code. The new implementation uses AcpiOsGetTimer instead of a simple 
   1901 maximum loop count, and is thus more accurate and constant across 
   1902 different machines. The default timeout is currently 30 seconds, but this 
   1903 may be adjusted later.
   1904 
   1905 Renamed the ACPI_AML_INFINITE_LOOP exception to AE_AML_LOOP_TIMEOUT to 
   1906 better reflect the new implementation of the loop timeout mechanism.
   1907 
   1908 Updated the AcpiGetTimerDuration interface to cleanup the 64-bit support 
   1909 and to fix an off-by-one error. Jung-uk Kim.
   1910 
   1911 Fixed an EFI build problem by updating the makefiles to for a new file 
   1912 that was added, utstrsuppt.c
   1913 
   1914 
   1915 2) iASL Compiler/Disassembler and Tools:
   1916 
   1917 Implemented full support for the PDTT, SDEV, and TPM2 ACPI tables. This 
   1918 includes support in the table disassembler, compiler, and template 
   1919 generator.
   1920 
   1921 iASL: Added an exception for an illegal type of recursive method 
   1922 invocation. If a method creates named objects, the first recursive call 
   1923 will fail at runtime. This change adds an error detection at compile time 
   1924 to catch the problem up front. Note: Marking such a method as 
   1925 "serialized" will not help with this problem, because the same thread can 
   1926 acquire the method mutex more than once. Example compiler and runtime 
   1927 output:
   1928 
   1929     Method (MTH1)
   1930     {
   1931         Name (INT1, 1)
   1932         MTH1 ()
   1933     }
   1934 
   1935     dsdt.asl     22: MTH1 ()
   1936     Error    6152 -  ^ Illegal recursive call to method
   1937                        that creates named objects (MTH1)
   1938 
   1939 Previous runtime exception:
   1940     ACPI Error: [INT1] Namespace lookup failure,
   1941     AE_ALREADY_EXISTS (20170831/dswload2-465)
   1942 
   1943 iASL: Updated support for External() opcodes to improve namespace 
   1944 management and error detection. These changes are related to issues seen 
   1945 with multiple-segment namespace pathnames within External declarations, 
   1946 such as below:
   1947 
   1948     External(\_SB.PCI0.GFX0, DeviceObj)
   1949     External(\_SB.PCI0.GFX0.ALSI)
   1950 
   1951 iASL: Implemented support for multi-line error/warning messages. This 
   1952 enables more detailed and helpful error messages as below, from the 
   1953 initial deployment for the duplicate names error:
   1954 
   1955     DSDT.iiii   1692:       Device(PEG2) {
   1956     Error    6074 -                  ^ Name already exists in scope 
   1957 (PEG2)
   1958 
   1959         Original name creation/declaration below:
   1960         DSDT.iiii     93:   External(\_SB.PCI0.PEG2, DeviceObj)
   1961 
   1962 AcpiXtract: Added additional flexibility to support differing input hex 
   1963 dump formats. Specifically, hex dumps that contain partial disassembly 
   1964 and/or comments within the ACPI table data definition. There exist some 
   1965 dump utilities seen in the field that create this type of hex dump (such 
   1966 as Simics). For example:
   1967 
   1968     DSDT @ 0xdfffd0c0 (10999 bytes)
   1969         Signature DSDT
   1970         Length 10999
   1971         Revision 1
   1972         Checksum 0xf3 (Ok)
   1973         OEM_ID BXPC
   1974         OEM_table_id BXDSDT
   1975         OEM_revision 1
   1976         Creator_id 1280593481
   1977         Creator_revision 537399345
   1978       0000: 44 53 44 54 f7 2a 00 00 01 f3 42 58 50 43 00 00
   1979       ...
   1980       2af0: 5f 4c 30 46 00 a4 01
   1981 
   1982 Test suite: Miscellaneous changes/fixes:
   1983     More cleanup and simplification of makefiles
   1984     Continue compilation of test cases after a compile failure
   1985     Do not perform binary compare unless both files actually exist
   1986 
   1987 iASL: Performed some code/module restructuring. Moved all memory 
   1988 allocation functions to new modules. Two new files, aslallocate.c and 
   1989 aslcache.c
   1990 
   1991 ----------------------------------------
   1992 31 August 2017. Summary of changes for version 20170831:
   1993 
   1994 
   1995 1) ACPICA kernel-resident subsystem:
   1996 
   1997 Implemented internal support for full 64-bit addresses that appear in all 
   1998 Generic Address Structure (GAS) structures. Previously, only the lower 32 
   1999 bits were used. Affects the use of GAS structures in the FADT and other 
   2000 tables, as well as the GAS structures passed to the AcpiRead and 
   2001 AcpiWrite public external interfaces that are used by drivers. Lv Zheng.
   2002 
   2003 Added header support for the PDTT ACPI table (Processor Debug Trigger 
   2004 Table). Full support in the iASL Data Table Compiler and disassembler is 
   2005 forthcoming.
   2006 
   2007 
   2008 2) iASL Compiler/Disassembler and Tools:
   2009 
   2010 iASL/Disassembler: Fixed a problem with the PPTT ACPI table (Processor 
   2011 Properties Topology Table) where a flag bit was specified in the wrong 
   2012 bit position ("Line Size Valid", bit 6).
   2013 
   2014 iASL: Implemented support for Octal integer constants as defined by the 
   2015 ASL language grammar, per the ACPI specification. Any integer constant 
   2016 that starts with a zero is an octal constant. For example,
   2017     Store (037777, Local0) /* Octal constant */
   2018     Store (0x3FFF, Local0) /* Hex equivalent */
   2019     Store (16383,  Local0) /* Decimal equivalent */
   2020 
   2021 iASL: Improved overflow detection for 64-bit string conversions during 
   2022 compilation of integer constants. "Overflow" in this case means a string 
   2023 that represents an integer that is too large to fit into a 64-bit value. 
   2024 Any 64-bit constants within a 32-bit DSDT or SSDT are still truncated to 
   2025 the low-order 32 bits with a warning, as previously implemented. Several 
   2026 new exceptions are defined that indicate a 64-bit overflow, as well as 
   2027 the base (radix) that was used during the attempted conversion. Examples:
   2028     Local0 = 0xAAAABBBBCCCCDDDDEEEEFFFF        // AE_HEX_OVERFLOW
   2029     Local0 = 01111222233334444555566667777     // AE_OCTAL_OVERFLOW
   2030     Local0 = 11112222333344445555666677778888  // AE_DECIMAL_OVERFLOW
   2031 
   2032 iASL: Added a warning for the case where a ResourceTemplate is declared 
   2033 with no ResourceDescriptor entries (coded as "ResourceTemplate(){}"). In 
   2034 this case, the resulting template is created with a single END_TAG 
   2035 descriptor, which is essentially useless.
   2036 
   2037 iASL: Expanded the -vw option (ignore specific warnings/remarks) to 
   2038 include compilation error codes as well.
   2039 
   2040 ----------------------------------------
   2041 28 July 2017. Summary of changes for version 20170728:
   2042 
   2043 
   2044 1) ACPICA kernel-resident subsystem:
   2045 
   2046 Fixed a regression seen with small resource descriptors that could cause 
   2047 an inadvertent AE_AML_NO_RESOURCE_END_TAG exception.
   2048 
   2049 AML interpreter: Implemented a new feature that allows forward references 
   2050 from individual named references within package objects that are 
   2051 contained within blocks of "module-level code". This provides 
   2052 compatibility with other ACPI implementations and supports existing 
   2053 firmware that depends on this feature. Example:
   2054 
   2055     Name (ABCD, 1)
   2056     If (ABCD)                       /* An If() at module-level */
   2057     {
   2058         Name (PKG1, Package()
   2059         {
   2060             INT1                    /* Forward reference to object INT1 
   2061 */
   2062         })
   2063         Name (INT1, 0x1234)
   2064     }
   2065 
   2066 AML Interpreter: Fixed a problem with the Alias() operator where aliases 
   2067 to some ASL objects were not handled properly. Objects affected are: 
   2068 Mutex, Event, and OperationRegion.
   2069 
   2070 AML Debugger: Enhanced to properly handle AML Alias objects. These 
   2071 objects have one level of indirection which was not fully supported by 
   2072 the debugger.
   2073 
   2074 Table Manager: Added support to detect and ignore duplicate SSDTs within 
   2075 the XSDT/RSDT. This error in the XSDT has been seen in the field.
   2076 
   2077 EFI and EDK2 support:
   2078     Enabled /WX flag for MSVC builds
   2079     Added support for AcpiOsStall, AcpiOsSleep, and AcpiOsGetTimer
   2080     Added local support for 64-bit multiply and shift operations
   2081     Added support to compile acpidump.efi on Windows
   2082     Added OSL function stubs for interfaces not used under EFI
   2083 
   2084 Added additional support for the _DMA predefined name. _DMA returns a 
   2085 buffer containing a resource template. This change add support within the 
   2086 resource manager (AcpiWalkResourceBuffer) to walk and parse this list of 
   2087 resource descriptors. Lorenzo Pieralisi <lorenzo.pieralisi (a] arm.com>
   2088 
   2089 
   2090 2) iASL Compiler/Disassembler and Tools:
   2091 
   2092 iASL: Fixed a problem where the internal input line buffer(s) could 
   2093 overflow if there are very long lines in the input ASL source code file. 
   2094 Implemented buffer management that automatically increases the size of 
   2095 the buffers as necessary.
   2096 
   2097 iASL: Added an option (-vx) to "expect" particular remarks, warnings and 
   2098 errors. If the specified exception is not raised during compilation, the 
   2099 compiler emits an error. This is intended to support the ASL test suite, 
   2100 but may be useful in other contexts.
   2101 
   2102 iASL: Implemented a new predefined macro, __METHOD__, which returns a 
   2103 string containing the name of the current control method that is being 
   2104 compiled.
   2105 
   2106 iASL: Implemented debugger and table compiler support for the SDEI ACPI 
   2107 table (Software Delegated Exception Interface). James Morse 
   2108 <james.morse (a] arm.com>
   2109 
   2110 Unix/Linux makefiles: Added an option to disable compile optimizations. 
   2111 The disable occurs when the NOOPT flag is set to TRUE. 
   2112 theracermaster (a] gmail.com
   2113 
   2114 Acpidump: Added support for multiple DSDT and FACS tables. This can occur 
   2115 when there are different tables for 32-bit versus 64-bit.
   2116 
   2117 Enhanced error reporting for the ASL test suite (ASLTS) by removing 
   2118 unnecessary/verbose text, and emit the actual line number where an error 
   2119 has occurred. These changes are intended to improve the usefulness of the 
   2120 test suite.
   2121 
   2122 ----------------------------------------
   2123 29 June 2017. Summary of changes for version 20170629:
   2124 
   2125 
   2126 1) ACPICA kernel-resident subsystem:
   2127 
   2128 Tables: Implemented a deferred ACPI table verification. This is useful 
   2129 for operating systems where the tables cannot be verified in the early 
   2130 initialization stage due to early memory mapping limitations on some 
   2131 architectures. Lv Zheng.
   2132 
   2133 Tables: Removed the signature validation for dynamically loaded tables. 
   2134 Provides compatibility with other ACPI implementations. Previously, only 
   2135 SSDT tables were allowed, as per the ACPI specification. Now, any table 
   2136 signature can be used via the Load() operator. Lv Zheng.
   2137 
   2138 Tables: Fixed several mutex issues that could cause errors during table 
   2139 acquisition. Lv Zheng.
   2140 
   2141 Tables: Fixed a problem where an ACPI warning could be generated if a 
   2142 null pointer was passed to the AcpiPutTable interface. Lv Zheng.
   2143 
   2144 Tables: Added a mechanism to handle imbalances for the AcpiGetTable and 
   2145 AcpiPutTable interfaces. This applies to the "late stage" table loading 
   2146 when the use of AcpiPutTable is no longer required (since the system 
   2147 memory manager is fully running and available). Lv Zheng.
   2148 
   2149 Fixed/Reverted a regression during processing of resource descriptors 
   2150 that contain only a single EndTag. Fixes an AE_AML_NO_RESOURCE_END_TAG 
   2151 exception in this case.
   2152 
   2153 Headers: IORT/SMMU support: Updated the SMMU models for Revision C of the 
   2154 I/O Remapping specification. Robin Murphy <robin.murphy (a] arm.com>
   2155 
   2156 Interpreter: Fixed a possible fault if an Alias operator with an invalid 
   2157 or duplicate target is encountered during Alias creation in 
   2158 AcpiExCreateAlias. Alex James <theracermaster (a] gmail.com>
   2159 
   2160 Added an option to use designated initializers for function pointers. 
   2161 Kees Cook <keescook (a] google.com>
   2162 
   2163 
   2164 2) iASL Compiler/Disassembler and Tools:
   2165 
   2166 iASL: Allow compilation of External declarations with target pathnames 
   2167 that refer to existing named objects within the table. Erik Schmauss.
   2168 
   2169 iASL: Fixed a regression when compiling FieldUnits. Fixes an error if a 
   2170 FieldUnit name also is declared via External in the same table. Erik 
   2171 Schmauss.
   2172 
   2173 iASL: Allow existing scope names within pathnames used in External 
   2174 statements. For example:
   2175     External (ABCD.EFGH) // ABCD exists, but EFGH is truly external
   2176     Device (ABCD)
   2177 
   2178 iASL: IORT ACPI table: Implemented changes required to decode the new 
   2179 Proximity Domain for the SMMUv3 IORT. Disassembler and Data Table 
   2180 compiler. Ganapatrao Kulkarni <ganapatrao.kulkarni (a] cavium.com>
   2181 
   2182 Disassembler: Don't abort disassembly on errors from External() 
   2183 statements. Erik Schmauss.
   2184 
   2185 Disassembler: fixed a possible fault when one of the Create*Field 
   2186 operators references a Resource Template. ACPICA Bugzilla 1396.
   2187 
   2188 iASL: In the source code, resolved some naming inconsistences across the 
   2189 parsing support. Fixes confusion between "Parse Op" and "Parse Node". 
   2190 Adds a new file, aslparseop.c
   2191 
   2192 ----------------------------------------
   2193 31 May 2017. Summary of changes for version 20170531:
   2194 
   2195 
   2196 0) ACPI 6.2 support:
   2197 
   2198 The ACPI specification version 6.2 has been released and is available at
   2199 http://uefi.org/specifications
   2200 
   2201 This version of ACPICA fully supports the ACPI 6.2 specification. Changes 
   2202 are summarized below.
   2203 
   2204 New ACPI tables (Table Compiler/Disassembler/Templates):
   2205     HMAT (Heterogeneous Memory Attributes Table)
   2206     WSMT (Windows SMM Security Mitigation Table)
   2207     PPTT (Processor Properties Topology Table)
   2208 
   2209 New subtables for existing ACPI tables:
   2210     HEST (New subtable, Arch-deferred machine check)
   2211     SRAT (New subtable, Arch-specific affinity structure)
   2212     PCCT (New subtables, Extended PCC subspaces (types 3 and 4))
   2213 
   2214 Simple updates for existing ACPI tables:
   2215     BGRT (two new flag bits)
   2216     HEST (New bit defined for several subtables, GHES_ASSIST)
   2217 
   2218 New Resource Descriptors and Resource macros (Compiler/Disassembler):
   2219     PinConfig()
   2220     PinFunction()
   2221     PinGroup()
   2222     PinGroupConfig()
   2223     PinGroupFunction()
   2224     New type for hardware error notification (section 18.3.2.9)
   2225 
   2226 New predefined names/methods (Compiler/Interpreter):
   2227     _HMA (Heterogeneous Memory Attributes)
   2228     _LSI (Label Storage Information)
   2229     _LSR (Label Storage Read)
   2230     _LSW (Label Storage Write)
   2231 
   2232 ASL grammar/macro changes (Compiler):
   2233     For() ASL macro, implemented with the AML while operator
   2234     Extensions to Concatenate operator
   2235     Support for multiple definition blocks in same ASL file
   2236     Clarification for Buffer operator
   2237     Allow executable AML code underneath all scopes (Devices, etc.)
   2238     Clarification/change for the _OSI return value
   2239     ASL grammar update for reference operators
   2240     Allow a zero-length string for AML filename in DefinitionBlock
   2241 
   2242 Miscellaneous:
   2243     New device object notification value
   2244     Remove a notify value (0x0C) for graceful shutdown
   2245     New UUIDs for processor/cache properties and
   2246         physical package property
   2247     New _HID, ACPI0014 (Wireless Power Calibration Device)
   2248 
   2249 
   2250 1) ACPICA kernel-resident subsystem:
   2251 
   2252 Added support to disable ACPI events on hardware-reduced platforms. 
   2253 Eliminates error messages of the form "Could not enable fixed event". Lv 
   2254 Zheng
   2255 
   2256 Fixed a problem using Device/Thermal objects with the ObjectType and 
   2257 DerefOf ASL operators. This support had not been fully/properly 
   2258 implemented.
   2259 
   2260 Fixed a problem where if a Buffer object containing a resource template 
   2261 was longer than the actual resource template, an error was generated -- 
   2262 even though the AML is legal. This case has been seen in the field.
   2263 
   2264 Fixed a problem with the header definition of the MADT PCAT_COMPAT flag. 
   2265 The values for DUAL_PIC and MULTIPLE_APIC were reversed.
   2266 
   2267 Added header file changes for the TPM2 ACPI table. Update to new version 
   2268 of the TCG specification. Adds a new TPM2 subtable for ARM SMC.
   2269 
   2270 Exported the external interfaces AcpiAcquireMutex and AcpiReleaseMutex. 
   2271 These interfaces are intended to be used only in conjunction with the 
   2272 predefined _DLM method (Device Lock Method). "This object appears in a 
   2273 device scope when AML access to the device must be synchronized with the 
   2274 OS environment".
   2275 
   2276 Example Code and Data Size: These are the sizes for the OS-independent 
   2277 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   2278 debug version of the code includes the debug output trace mechanism and 
   2279 has a much larger code and data size.
   2280 
   2281   Current Release:
   2282     Non-Debug Version: 143.1K Code, 60.0K Data, 203.1K Total
   2283     Debug Version:     204.0K Code, 84.3K Data, 288.3K Total
   2284   Previous Release:
   2285     Non-Debug Version: 141.7K Code, 58.5K Data, 200.2K Total
   2286     Debug Version:     207.5K Code, 82.7K Data, 290.2K Total
   2287 
   2288 
   2289 2) iASL Compiler/Disassembler and Tools:
   2290 
   2291 iASL: Fixed a problem where an External() declaration could not refer to 
   2292 a Field Unit. Erik Schmauss.
   2293 
   2294 Disassembler: Improved support for the Switch/Case operators. This 
   2295 feature will disassemble AML code back to the original Switch operators 
   2296 when possible, instead of an If..Else sequence. David Box
   2297 
   2298 iASL and disassembler: Improved the handling of multiple extraneous 
   2299 parentheses for both ASL input and disassembled ASL output.
   2300 
   2301 Improved the behavior of the iASL compiler and disassembler to detect 
   2302 improper use of external declarations
   2303 
   2304 Disassembler: Now aborts immediately upon detection of an unknown AML 
   2305 opcode. The AML parser has no real way to recover from this, and can 
   2306 result in the creation of an ill-formed parse tree that causes errors 
   2307 later during the disassembly.
   2308 
   2309 All tools: Fixed a problem where the Unix application OSL did not handle 
   2310 control-c correctly. For example, a control-c could incorrectly wake the 
   2311 debugger.
   2312 
   2313 AcpiExec: Improved the Control-C handling and added a handler for 
   2314 segmentation faults (SIGSEGV). Supports both Windows and Unix-like 
   2315 environments.
   2316 
   2317 Reduced the verbosity of the generic unix makefiles. Previously, each 
   2318 compilation displayed the full set of compiler options. This has been 
   2319 eliminated as the options are easily inspected within the makefiles. Each 
   2320 compilation now results in a single line of output.
   2321 
   2322 ----------------------------------------
   2323 03 March 2017. Summary of changes for version 20170303:
   2324 
   2325 
   2326 0) ACPICA licensing:
   2327 
   2328 The licensing information at the start of each source code module has 
   2329 been updated. In addition to the Intel license, the dual GPLv2/BSD 
   2330 license has been added for completeness. Now, a single version of the 
   2331 source code should be suitable for all ACPICA customers. This is the 
   2332 major change for this release since it affects all source code modules.
   2333 
   2334 
   2335 1) ACPICA kernel-resident subsystem: 
   2336 
   2337 Fixed two issues with the common asltypes.h header that could cause 
   2338 problems in some environments: (Kim Jung-uk)
   2339     Removed typedef for YY_BUFFER_STATE ?
   2340        Fixes an error with earlier versions of Flex.
   2341     Removed use of FILE typedef (which is only defined in stdio.h)
   2342 
   2343 
   2344 2) iASL Compiler/Disassembler and Tools: 
   2345 
   2346 Disassembler: fixed a regression introduced in 20170224. A fix for a 
   2347 memory leak related to resource descriptor tags (names) could fault when 
   2348 the disassembler was generated with 64-bit compilers.
   2349 
   2350 The ASLTS test suite has been updated to implement a new testing 
   2351 architecture. During generation of the suite from ASL source, both the 
   2352 ASL and ASL+ compilers are now validated, as well as the disassembler 
   2353 itself (Erik Schmauss). The architecture executes as follows:
   2354 
   2355     For every ASL source module:
   2356         Compile (legacy ASL compilation)
   2357         Disassemble the resulting AML to ASL+ source code
   2358         Compile the new ASL+ module
   2359         Perform a binary compare on the legacy AML and the new ASL+ AML
   2360     The ASLTS suite then executes normally using the AML binaries.
   2361 
   2362 ----------------------------------------
   2363 24 February 2017. Summary of changes for version 20170224:
   2364 
   2365 
   2366 1) ACPICA kernel-resident subsystem:
   2367 
   2368 Interpreter: Fixed two issues with the control method return value auto-
   2369 repair feature, where an attempt to double-delete an internal object 
   2370 could result in an ACPICA warning (for _CID repair and others). No fault 
   2371 occurs, however, because the attempted deletion (actually a release to an 
   2372 internal cache) is detected and ignored via object poisoning.
   2373 
   2374 Debugger: Fixed an AML interpreter mutex issue during the single stepping 
   2375 of control methods. If certain debugger commands are executed during 
   2376 stepping, a mutex acquire/release error could occur. Lv Zheng.
   2377 
   2378 Fixed some issues generating ACPICA with the Intel C compiler by 
   2379 restoring the original behavior and compiler-specific include file in 
   2380 acenv.h. Lv Zheng.
   2381 
   2382 Example Code and Data Size: These are the sizes for the OS-independent 
   2383 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   2384 debug version of the code includes the debug output trace mechanism and 
   2385 has a much larger code and data size.
   2386 
   2387   Current Release:
   2388     Non-Debug Version: 141.7K Code, 58.5K Data, 200.2K Total
   2389     Debug Version:     207.5K Code, 82.7K Data, 290.2K Total
   2390   Previous Release:
   2391     Non-Debug Version: 137.4K Code, 52.6K Data, 190.0K Total
   2392     Debug Version:     201.5K Code, 82.2K Data, 283.7K Total
   2393 
   2394 
   2395 2) iASL Compiler/Disassembler and Tools:
   2396 
   2397 iASL/Disassembler: A preliminary version of a new ASL-to-ASL+ conversion 
   2398 tool has been designed, implemented, and included in this release. The 
   2399 key feature of this utility is that the original comments within the 
   2400 input ASL file are preserved during the conversion process, and included 
   2401 within the converted ASL+ file -- thus creating a transparent conversion 
   2402 of existing ASL files to ASL+ (ASL 2.0). Erik Schmauss.
   2403 
   2404     Usage: iasl -ca <ASL-filename>  // Output is a .dsl file with 
   2405 converted code
   2406 
   2407 iASL/Disassembler: Improved the detection and correct disassembly of 
   2408 Switch/Case operators. This feature detects sequences of if/elseif/else 
   2409 operators that originated from ASL Switch/Case/Default operators and 
   2410 emits the original operators. David Box.
   2411 
   2412 iASL: Improved the IORT ACPI table support in the following areas. Lv 
   2413 Zheng:
   2414     Clear MappingOffset if the MappingCount is zero.
   2415     Fix the disassembly of the SMMU GSU interrupt offset.
   2416     Update the template file for the IORT table.
   2417 
   2418 Disassembler: Enhanced the detection and disassembly of resource 
   2419 template/descriptor within a Buffer object. An EndTag descriptor is now 
   2420 required to have a zero second byte, since all known ASL compilers emit 
   2421 this. This helps eliminate incorrect decisions when a buffer is 
   2422 disassembled (false positives on resource templates).
   2423 
   2424 ----------------------------------------
   2425 19 January 2017. Summary of changes for version 20170119:
   2426 
   2427 
   2428 1) General ACPICA software:
   2429 
   2430 Entire source code base: Added the 2017 copyright to all source code 
   2431 legal/licensing module headers and utility/tool signons. This includes 
   2432 the standard Linux dual-license header. This affects virtually every file 
   2433 in the ACPICA core subsystem, iASL compiler, all ACPICA utilities, and 
   2434 the ACPICA test suite.
   2435 
   2436 
   2437 2) iASL Compiler/Disassembler and Tools:
   2438 
   2439 iASL: Removed/fixed an inadvertent remark when a method argument 
   2440 containing a reference is used as a target operand within the method (and 
   2441 never used as a simple argument), as in the example below. Jeffrey Hugo.
   2442 
   2443     dsdt.asl   1507:    Store(0x1, Arg0)
   2444     Remark   2146 -                ^ Method Argument is never used (Arg0)
   2445 
   2446 All tools: Removed the bit width of the compiler that generated the tool 
   2447 from the common signon for all user space tools. This proved to be 
   2448 confusing and unnecessary. This includes similar removal of HARDWARE_NAME 
   2449 from the generic makefiles (Thomas Petazzoni). Example below.
   2450 
   2451     Old:
   2452     ASL+ Optimizing Compiler version 20170119-32
   2453     ASL+ Optimizing Compiler version 20170119-64
   2454 
   2455     New:
   2456     ASL+ Optimizing Compiler version 20170119
   2457 
   2458 ----------------------------------------
   2459 22 December 2016. Summary of changes for version 20161222:
   2460 
   2461 
   2462 1) ACPICA kernel-resident subsystem:
   2463 
   2464 AML Debugger: Implemented a new mechanism to simplify and enhance 
   2465 debugger integration into all environments, including kernel debuggers 
   2466 and user-space utilities, as well as remote debug services. This 
   2467 mechanism essentially consists of new OSL interfaces to support debugger 
   2468 initialization/termination, as well as wait/notify interfaces to perform 
   2469 the debugger handshake with the host. Lv Zheng.
   2470 
   2471     New OSL interfaces:
   2472         AcpiOsInitializeDebugger (void)
   2473         AcpiOsTerminateDebugger (void)
   2474         AcpiOsWaitCommandReady (void)
   2475         AcpiOsNotifyCommandComplete (void)
   2476 
   2477     New OS services layer:
   2478         osgendbg.c -- Example implementation, and used for AcpiExec
   2479 
   2480 Update for Generic Address Space (GAS) support: Although the AccessWidth 
   2481 and/or BitOffset fields of the GAS are not often used, this change now 
   2482 fully supports these fields. This affects the internal support for FADT 
   2483 registers, registers in other ACPI data tables, and the AcpiRead and 
   2484 AcpiWrite public interfaces. Lv Zheng.
   2485 
   2486 Sleep support: In order to simplify integration of ACPI sleep for the 
   2487 various host operating systems, a new OSL interface has been introduced. 
   2488 AcpiOsEnterSleep allows the host to perform any required operations 
   2489 before the final write to the sleep control register(s) is performed by 
   2490 ACPICA. Lv Zheng.
   2491 
   2492     New OSL interface:
   2493         AcpiOsEnterSleep(SleepState, RegisterAValue, RegisterBValue)
   2494 
   2495     Called from these internal interfaces:
   2496         AcpiHwLegacySleep
   2497         AcpiHwExtendedSleep
   2498 
   2499 EFI support: Added a very small EFI/ACPICA example application. Provides 
   2500 a simple demo for EFI integration, as well as assisting with resolution 
   2501 of issues related to customer ACPICA/EFI integration. Lv Zheng. See:
   2502 
   2503     source/tools/efihello/efihello.c
   2504 
   2505 Local C library: Implemented several new functions to enhance ACPICA 
   2506 portability, for environments where these clib functions are not 
   2507 available (such as EFI). Lv Zheng:
   2508     putchar
   2509     getchar
   2510     strpbrk
   2511     strtok
   2512     memmove
   2513 
   2514 Fixed a regression where occasionally a valid resource descriptor was 
   2515 incorrectly detected as invalid at runtime, and a 
   2516 AE_AML_NO_RESOURCE_END_TAG was returned.
   2517 
   2518 Fixed a problem with the recently implemented support that enables 
   2519 control method invocations as Target operands to many ASL operators. 
   2520 Warnings of this form: "Needed type [Reference], found [Processor]" were 
   2521 seen at runtime for some method invocations.
   2522 
   2523 Example Code and Data Size: These are the sizes for the OS-independent 
   2524 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   2525 debug version of the code includes the debug output trace mechanism and 
   2526 has a much larger code and data size.
   2527 
   2528   Current Release:
   2529     Non-Debug Version: 141.5K Code, 58.5K Data, 200.0K Total
   2530     Debug Version:     201.7K Code, 82.7K Data, 284.4K Total
   2531   Previous Release:
   2532     Non-Debug Version: 140.5K Code, 58.5K Data, 198.9K Total
   2533     Debug Version:     201.3K Code, 82.7K Data, 284.0K Total
   2534 
   2535 
   2536 2) iASL Compiler/Disassembler and Tools:
   2537 
   2538 Disassembler: Enhanced output by adding the capability to detect and 
   2539 disassemble ASL Switch/Case statements back to the original ASL source 
   2540 code instead of if/else blocks. David Box.
   2541 
   2542 AcpiHelp: Split a large file into separate files based upon 
   2543 functionality/purpose. New files are:
   2544     ahaml.c
   2545     ahasl.c
   2546 
   2547 ----------------------------------------
   2548 17 November 2016. Summary of changes for version 20161117:
   2549 
   2550 
   2551 1) ACPICA kernel-resident subsystem:
   2552 
   2553 Table Manager: Fixed a regression introduced in 20160729, "FADT support 
   2554 cleanup". This was an attempt to remove all references in the source to 
   2555 the FADT version 2, which never was a legal version number. It was 
   2556 skipped because it was an early version of 64-bit support that was 
   2557 eventually abandoned for the current 64-bit support.
   2558 
   2559 Interpreter: Fixed a problem where runtime implicit conversion was 
   2560 incorrectly disabled for the ASL operators below. This brings the 
   2561 behavior into compliance with the ACPI specification:
   2562     FromBCD
   2563     ToBCD
   2564     ToDecimalString
   2565     ToHexString
   2566     ToInteger
   2567     ToBuffer
   2568 
   2569 Table Manager: Added a new public interface, AcpiPutTable, used to 
   2570 release and free an ACPI table returned by AcpiGetTable and related 
   2571 interfaces. Lv Zheng.
   2572 
   2573 Example Code and Data Size: These are the sizes for the OS-independent 
   2574 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   2575 debug version of the code includes the debug output trace mechanism and 
   2576 has a much larger code and data size.
   2577 
   2578   Current Release:
   2579     Non-Debug Version: 140.5K Code, 58.5K Data, 198.9K Total
   2580     Debug Version:     201.3K Code, 82.7K Data, 284.0K Total
   2581   Previous Release:
   2582     Non-Debug Version: 140.4K Code, 58.1K Data, 198.5K Total
   2583     Debug Version:     200.7K Code, 82.1K Data, 282.8K Total
   2584 
   2585 
   2586 2) iASL Compiler/Disassembler and Tools:
   2587 
   2588 Disassembler: Fixed a regression for disassembly of Resource Template. 
   2589 Detection of templates in the AML stream missed some types of templates.
   2590 
   2591 iASL: Fixed a problem where an Access Size error was returned for the PCC 
   2592 address space when the AccessSize of the GAS register is greater than a 
   2593 DWORD. Hoan Tran.
   2594 
   2595 iASL: Implemented several grammar changes for the operators below. These 
   2596 changes are slated for the next version of the ACPI specification:
   2597     RefOf        - Disallow method invocation as an operand
   2598     CondRefOf    - Disallow method invocation as an operand
   2599     DerefOf      - Disallow operands that use the result from operators 
   2600 that
   2601                    do not return a reference (Changed TermArg to 
   2602 SuperName).
   2603 
   2604 iASL: Control method invocations are now allowed for Target operands, as 
   2605 per the ACPI specification. Removed error for using a control method 
   2606 invocation as a Target operand.
   2607 
   2608 Disassembler: Improved detection of Resource Templates, Unicode, and 
   2609 Strings within Buffer objects. These subtypes do not contain a specific 
   2610 opcode to indicate the originating ASL code, and they must be detected by 
   2611 other means within the disassembler. 
   2612 
   2613 iASL: Implemented an optimization improvement for 32-bit ACPI tables 
   2614 (DSDT/SSDT). For the 32-bit case only, compute the optimum integer opcode 
   2615 only after 64-bit to 32-bit truncation. A truncation warning message is 
   2616 still emitted, however.
   2617 
   2618 AcpiXtract: Implemented handling for both types of line terminators (LF 
   2619 or CR/LF) so that it can accept AcpiDump output files from any system. 
   2620 Peter Wu.
   2621 
   2622 AcpiBin: Added two new options for comparing AML files:
   2623     -a: compare and display ALL mismatches
   2624     -o: start compare at this offset into the second file
   2625 
   2626 ----------------------------------------
   2627 30 September 2016. Summary of changes for version 20160930:
   2628 
   2629 
   2630 1) ACPICA kernel-resident subsystem:
   2631 
   2632 Fixed a regression in the internal AcpiTbFindTable function where a non 
   2633 AE_OK exception could inadvertently be returned even if the function did 
   2634 not fail. This problem affects the following operators:
   2635     DataTableRegion
   2636     LoadTable
   2637 
   2638 Fixed a regression in the LoadTable operator where a load to any 
   2639 namespace location other than the root no longer worked properly.
   2640 
   2641 Increased the maximum loop count value that will result in the 
   2642 AE_AML_INFINITE_LOOP exception. This is a mechanism that is intended to 
   2643 prevent infinite loops within the AML interpreter and thus the host OS 
   2644 kernel. The value is increased from 0xFFFF to 0xFFFFF loops (65,535 to 
   2645 1,048,575).
   2646 
   2647 Moved the AcpiGbl_MaxLoopIterations configuration variable to the public 
   2648 acpixf.h file. This allows hosts to easily configure the maximum loop 
   2649 count at runtime.
   2650 
   2651 Removed an illegal character in the strtoul64.c file. This character 
   2652 caused errors with some C compilers.
   2653 
   2654 Example Code and Data Size: These are the sizes for the OS-independent 
   2655 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   2656 debug version of the code includes the debug output trace mechanism and 
   2657 has a much larger code and data size.
   2658 
   2659   Current Release:
   2660     Non-Debug Version: 140.4K Code, 58.1K Data, 198.5K Total
   2661     Debug Version:     200.7K Code, 82.1K Data, 282.8K Total
   2662   Previous Release:
   2663     Non-Debug Version: 140.0K Code, 58.1K Data, 198.1K Total
   2664     Debug Version:     200.3K Code, 82.1K Data, 282.4K Total
   2665 
   2666 
   2667 2) iASL Compiler/Disassembler and Tools:
   2668 
   2669 Disassembler: Fixed a problem with the conversion of Else{If{ blocks into 
   2670 the simpler ASL ElseIf keyword. During the conversion, a trailing If 
   2671 block could be lost and missing from the disassembled output.
   2672 
   2673 iASL: Fixed a missing parser rule for the ObjectType operator. For ASL+, 
   2674 the missing rule caused a parse error when using the Index operator as an 
   2675 operand to ObjectType. This construct now compiles properly. Example:
   2676     ObjectType(PKG1[4]).
   2677 
   2678 iASL: Correctly handle unresolved symbols in the hardware map file (-lm 
   2679 option). Previously, unresolved symbols could cause a protection fault. 
   2680 Such symbols are now marked as unresolved in the map file.
   2681 
   2682 iASL: Implemented support to allow control method invocations as an 
   2683 operand to the ASL DeRefOf operator. Example:
   2684     DeRefOf(MTH1(Local0))
   2685 
   2686 Disassembler: Improved support for the ToPLD ASL macro. Detection of a 
   2687 possible _PLD buffer now includes examination of both the normal buffer 
   2688 length (16 or 20) as well as the surrounding AML package length.
   2689 
   2690 Disassembler: Fixed a problem with the decoding of complex expressions 
   2691 within the Divide operator for ASL+. For the case where both the quotient 
   2692 and remainder targets are specified, the entire statement cannot be 
   2693 disassembled. Previously, the output incorrectly contained a mix of ASL- 
   2694 and ASL+ operators. This mixed statement causes a syntax error when 
   2695 compiled. Example:
   2696     Divide (Add (INT1, 6), 128, RSLT, QUOT)  // was incorrectly 
   2697 disassembled to:
   2698     Divide (INT1 + 6, 128, RSLT, QUOT)
   2699 
   2700 iASL/Tools: Added support to process AML and non-AML ACPI tables 
   2701 consistently. For the disassembler and AcpiExec, allow all types of ACPI 
   2702 tables (AML and data tables). For the iASL -e option, allow only AML 
   2703 tables (DSDT/SSDT).
   2704 
   2705 ----------------------------------------
   2706 31 August 2016. Summary of changes for version 20160831:
   2707 
   2708 
   2709 1) ACPICA kernel-resident subsystem:
   2710 
   2711 Improve support for the so-called "module-level code", which is defined 
   2712 to be math, logical and control AML opcodes that appear outside of any 
   2713 control method. This change improves the support by adding more opcodes 
   2714 that can be executed in the manner. Some other issues have been solved, 
   2715 and the ASL grammar changes to support such code under all scope 
   2716 operators (Device, etc.) are complete. Lv Zheng.
   2717 
   2718 UEFI support: these OSL functions have been implemented. This is an 
   2719 additional step toward supporting the AcpiExec utility natively (with 
   2720 full hardware access) under UEFI. Marcelo Ferreira.
   2721     AcpiOsReadPciConfiguration
   2722     AcpiOsWritePciConfiguration
   2723 
   2724 Fixed a possible mutex error during control method auto-serialization. Lv 
   2725 Zheng. 
   2726 
   2727 Updated support for the Generic Address Structure by fully implementing 
   2728 all GAS fields when a 32-bit address is expanded to a 64-bit GAS. Lv 
   2729 Zheng.
   2730 
   2731 Updated the return value for the internal _OSI method. Instead of 
   2732 0xFFFFFFFF, the "Ones" value is now returned, which is 0xFFFFFFFFFFFFFFFF 
   2733 for 64-bit ACPI tables. This fixes an incompatibility with other ACPI 
   2734 implementations, and will be reflected and clarified in the next version 
   2735 of the ACPI specification.
   2736 
   2737 Implemented two new table events that can be passed to an ACPICA table 
   2738 handler. These events are used to indicate a table installation or 
   2739 uninstallation. These events are used in addition to existed table load 
   2740 and unload events. Lv Zheng.
   2741 
   2742 Implemented a cleanup for all internal string-to-integer conversions. 
   2743 Consolidate multiple versions of this functionality and limit possible 
   2744 bases to either 10 or 16 to simplify the code. Adds a new file, 
   2745 utstrtoul64.
   2746 
   2747 Cleanup the inclusion order of the various compiler-specific headers. 
   2748 This simplifies build configuration management. The compiler-specific 
   2749 headers are now split out from the host-specific headers. Lv Zheng.
   2750 
   2751 Example Code and Data Size: These are the sizes for the OS-independent 
   2752 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   2753 debug version of the code includes the debug output trace mechanism and 
   2754 has a much larger code and data size.
   2755 
   2756   Current Release:
   2757     Non-Debug Version: 140.1K Code, 58.1K Data, 198.1K Total
   2758     Debug Version:     200.3K Code, 82.1K Data, 282.4K Total
   2759 
   2760 
   2761 2) iASL Compiler/Disassembler and Tools:
   2762 
   2763 iASL/AcpiExec: Added a command line option to display the build date/time 
   2764 of the tool (-vd). This can be useful to verify that the correct version 
   2765 of the tools are being used.
   2766 
   2767 AML Debugger: Implemented a new subcommand ("execute predef") to execute 
   2768 all predefined control methods and names within the current namespace. 
   2769 This can be useful for debugging problems with ACPI tables and the ACPI 
   2770 namespace.
   2771 
   2772 ----------------------------------------
   2773 29 July 2016. Summary of changes for version 20160729:
   2774 
   2775 
   2776 1) ACPICA kernel-resident subsystem:
   2777 
   2778 Implemented basic UEFI support for the various ACPICA tools. This 
   2779 includes:
   2780 1) An OSL to implement the various AcpiOs* interfaces on UEFI.
   2781 2) Support to obtain the ACPI tables on UEFI.
   2782 3) Local implementation of required C library functions not available on 
   2783 UEFI.
   2784 4) A front-end (main) function for the tools for UEFI-related 
   2785 initialization.
   2786 
   2787 The initial deployment of this support is the AcpiDump utility executing 
   2788 as an UEFI application via EDK2 (EDKII, "UEFI Firmware Development Kit"). 
   2789 Current environments supported are Linux/Unix. MSVC generation is not 
   2790 supported at this time. See the generate/efi/README file for build 
   2791 instructions. Lv Zheng.
   2792 
   2793 Future plans include porting the AcpiExec utility to execute natively on 
   2794 the platform with I/O and memory access. This will allow viewing/dump of 
   2795 the platform namespace and native execution of ACPI control methods that 
   2796 access the actual hardware. To fully implement this support, the OSL 
   2797 functions below must be implemented with UEFI interfaces. Any community 
   2798 help in the implementation of these functions would be appreciated:
   2799     AcpiOsReadPort
   2800     AcpiOsWritePort
   2801     AcpiOsReadMemory
   2802     AcpiOsWriteMemory
   2803     AcpiOsReadPciConfiguration
   2804     AcpiOsWritePciConfiguration
   2805 
   2806 Restructured and standardized the C library configuration for ACPICA, 
   2807 resulting in the various configuration options below. This includes a 
   2808 global restructuring of the compiler-dependent and platform-dependent 
   2809 include files. These changes may affect the existing platform-dependent 
   2810 configuration files on some hosts. Lv Zheng. 
   2811 
   2812 The current C library configuration options appear below. For any issues, 
   2813 it may be helpful to examine the existing compiler-dependent and 
   2814 platform-dependent files as examples. Lv Zheng. 
   2815 
   2816 1) Linux kernel:
   2817     ACPI_USE_STANDARD_HEADERS=n in order not to use system-provided C 
   2818 library.
   2819     ACPI_USE_SYSTEM_CLIBRARY=y in order not to use ACPICA mini C library.
   2820 2) Unix/Windows/BSD applications:
   2821     ACPI_USE_STANDARD_HEADERS=y in order to use system-provided C 
   2822 library.
   2823     ACPI_USE_SYSTEM_CLIBRARY=y in order not to use ACPICA mini C library.
   2824 3) UEFI applications:
   2825     ACPI_USE_STANDARD_HEADERS=n in order not to use system-provided C 
   2826 library.
   2827     ACPI_USE_SYSTEM_CLIBRARY=n in order to use ACPICA mini C library.
   2828 4) UEFI applications (EDK2/StdLib):
   2829     ACPI_USE_STANDARD_HEADERS=y in order to use EDK2 StdLib C library.
   2830     ACPI_USE_SYSTEM_CLIBRARY=y in order to use EDK2 StdLib C library.
   2831 
   2832 
   2833 AML interpreter: "module-level code" support. Allows for execution of so-
   2834 called "executable" AML code (math/logical operations, etc.) outside of 
   2835 control methods not just at the module level (top level) but also within 
   2836 any scope declared outside of a control method - Scope{}, Device{}, 
   2837 Processor{}, PowerResource{}, and ThermalZone{}. Lv Zheng. 
   2838 
   2839 Simplified the configuration of the "maximum AML loops" global option by 
   2840 adding a global public variable, "AcpiGbl_MaxLoopIterations" which can be 
   2841 modified at runtime.
   2842 
   2843 
   2844 Example Code and Data Size: These are the sizes for the OS-independent 
   2845 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   2846 debug version of the code includes the debug output trace mechanism and 
   2847 has a much larger code and data size.
   2848 
   2849   Current Release:
   2850     Non-Debug Version: 139.1K Code, 22.9K Data, 162.0K Total
   2851     Debug Version:     199.0K Code, 81.8K Data, 280.8K Total
   2852 
   2853 
   2854 2) iASL Compiler/Disassembler and Tools:
   2855 
   2856 iASL: Add full support for the RASF ACPI table (RAS Features Table). 
   2857 Includes disassembler, data table compiler, and header support.
   2858 
   2859 iASL Expand "module-level code" support. Allows for 
   2860 compilation/disassembly of so-called "executable" AML code (math/logical 
   2861 operations, etc.) outside of control methods not just at the module level 
   2862 (top level) but also within any scope declared outside of a control 
   2863 method - Scope{}, Device{}, Processor{}, PowerResource{}, and 
   2864 ThermalZone{}.
   2865 
   2866 AcpiDump: Added support for dumping all SSDTs on newer versions of 
   2867 Windows. These tables are now easily available -- SSDTs are not available 
   2868 through the registry on older versions.
   2869 
   2870 ----------------------------------------
   2871 27 May 2016. Summary of changes for version 20160527:
   2872 
   2873 
   2874 1) ACPICA kernel-resident subsystem:
   2875 
   2876 Temporarily reverted the new arbitrary bit length/alignment support in 
   2877 AcpiHwRead/AcpiHwWrite for the Generic Address Structure. There have been 
   2878 a number of regressions with the new code that need to be fully resolved 
   2879 and tested before this support can be finally integrated into ACPICA. 
   2880 Apologies for any inconveniences these issues may have caused.
   2881 
   2882 The ACPI message macros are not configurable (ACPI_MSG_ERROR, 
   2883 ACPI_MSG_EXCEPTION, ACPI_MSG_WARNING, ACPI_MSG_INFO, ACPI_MSG_BIOS_ERROR, 
   2884 and ACPI_MSG_BIOS_WARNING). Lv Zheng.
   2885 
   2886 Fixed a couple of GCC warnings associated with the use of the -Wcast-qual 
   2887 option. Adds a new return macro, return_STR. Junk-uk Kim.
   2888 
   2889 Example Code and Data Size: These are the sizes for the OS-independent 
   2890 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   2891 debug version of the code includes the debug output trace mechanism and 
   2892 has a much larger code and data size.
   2893 
   2894   Current Release:
   2895     Non-Debug Version: 136.8K Code, 51.6K Data, 188.4K Total
   2896     Debug Version:     201.5K Code, 82.2K Data, 283.7K Total
   2897   Previous Release:
   2898     Non-Debug Version: 137.4K Code, 52.6K Data, 190.0K Total
   2899     Debug Version:     200.9K Code, 82.2K Data, 283.1K Total
   2900 
   2901 ----------------------------------------
   2902 22 April 2016. Summary of changes for version 20160422:
   2903 
   2904 1) ACPICA kernel-resident subsystem:
   2905 
   2906 Fixed a regression in the GAS (generic address structure) arbitrary bit 
   2907 support in AcpiHwRead/AcpiHwWrite. Problem could cause incorrect behavior 
   2908 and incorrect return values. Lv Zheng. ACPICA BZ 1270.
   2909 
   2910 ACPI 6.0: Added support for new/renamed resource macros. One new argument 
   2911 was added to each of these macros, and the original name has been 
   2912 deprecated. The AML disassembler will always disassemble to the new 
   2913 names. Support for the new macros was added to iASL, disassembler, 
   2914 resource manager, and the acpihelp utility. ACPICA BZ 1274.
   2915 
   2916     I2cSerialBus  -> I2cSerialBusV2
   2917     SpiSerialBus  -> SpiSerialBusV2
   2918     UartSerialBus -> UartSerialBusV2
   2919 
   2920 ACPI 6.0: Added support for a new integer field that was appended to the 
   2921 package object returned by the _BIX method. This adds iASL compile-time 
   2922 and AML runtime error checking. ACPICA BZ 1273.
   2923 
   2924 ACPI 6.1: Added support for a new PCCT subtable, "HW-Reduced Comm 
   2925 Subspace Type2" (Headers, Disassembler, and data table compiler).
   2926 
   2927 Example Code and Data Size: These are the sizes for the OS-independent 
   2928 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   2929 debug version of the code includes the debug output trace mechanism and 
   2930 has a much larger code and data size.
   2931 
   2932   Current Release:
   2933     Non-Debug Version: 137.4K Code, 52.6K Data, 190.0K Total
   2934     Debug Version:     201.5K Code, 82.2K Data, 283.7K Total
   2935   Previous Release:
   2936     Non-Debug Version: 137.1K Code, 51.5K Data, 188.6K Total
   2937     Debug Version:     201.0K Code, 82.0K Data, 283.0K Total
   2938 
   2939 
   2940 2) iASL Compiler/Disassembler and Tools:
   2941 
   2942 iASL: Implemented an ASL grammar extension to allow/enable executable 
   2943 "module-level code" to be created and executed under the various 
   2944 operators that create new scopes. This type of AML code is already 
   2945 supported in all known AML interpreters, and the grammar change will 
   2946 appear in the next version of the ACPI specification. Simplifies the 
   2947 conditional runtime creation of named objects under these object types: 
   2948 
   2949     Device
   2950     PowerResource
   2951     Processor
   2952     Scope
   2953     ThermalZone
   2954 
   2955 iASL: Implemented a new ASL extension, a "For" loop macro to add greater 
   2956 ease-of-use to the ASL language. The syntax is similar to the 
   2957 corresponding C operator, and is implemented with the existing AML While 
   2958 opcode -- thus requiring no changes to existing AML interpreters.
   2959 
   2960     For (Initialize, Predicate, Update) {TermList}
   2961 
   2962 Grammar:
   2963     ForTerm :=
   2964         For (
   2965             Initializer    // Nothing | TermArg => ComputationalData
   2966             Predicate      // Nothing | TermArg => ComputationalData
   2967             Update         // Nothing | TermArg => ComputationalData
   2968         ) {TermList}
   2969 
   2970 
   2971 iASL: The _HID/_ADR detection and validation has been enhanced to search 
   2972 under conditionals in order to allow these objects to be conditionally 
   2973 created at runtime.
   2974 
   2975 iASL: Fixed several issues with the constant folding feature. The 
   2976 improvement allows better detection and resolution of statements that can 
   2977 be folded at compile time. ACPICA BZ 1266. 
   2978 
   2979 iASL/Disassembler: Fixed a couple issues with the Else{If{}...} 
   2980 conversion to the ASL ElseIf operator where incorrect ASL code could be 
   2981 generated.
   2982 
   2983 iASL/Disassembler: Fixed a problem with the ASL+ code disassembly where 
   2984 sometimes an extra (and extraneous) set of parentheses were emitted for 
   2985 some combinations of operators. Although this did not cause any problems 
   2986 with recompilation of the disassembled code, it made the code more 
   2987 difficult to read. David Box. ACPICA BZ 1231.
   2988 
   2989 iASL: Changed to ignore the unreferenced detection for predefined names 
   2990 of resource descriptor elements, when the resource descriptor is 
   2991 created/defined within a control method.
   2992 
   2993 iASL: Disassembler: Fix a possible fault with externally declared Buffer 
   2994 objects.
   2995 
   2996 ----------------------------------------
   2997 18 March 2016. Summary of changes for version 20160318:
   2998 
   2999 1) ACPICA kernel-resident subsystem:
   3000 
   3001 Added support for arbitrary bit lengths and bit offsets for registers 
   3002 defined by the Generic Address Structure. Previously, only aligned bit 
   3003 lengths of 8/16/32/64 were supported. This was sufficient for many years, 
   3004 but recently some machines have been seen that require arbitrary bit-
   3005 level support. ACPICA BZ 1240. Lv Zheng.
   3006 
   3007 Fixed an issue where the \_SB._INI method sometimes must be evaluated 
   3008 before any _REG methods are evaluated. Lv Zheng.
   3009 
   3010 Implemented several changes related to ACPI table support 
   3011 (Headers/Disassembler/TableCompiler):
   3012 NFIT: For ACPI 6.1, updated to add some additional new fields and 
   3013 constants.
   3014 FADT: Updated a warning message and set compliance to ACPI 6.1 (Version 
   3015 6).
   3016 DMAR: Added new constants per the 10/2014 DMAR spec.
   3017 IORT: Added new subtable per the 10/2015 IORT spec.
   3018 HEST: For ACPI 6.1, added new constants and new subtable.
   3019 DBG2: Added new constants per the 12/2015 DBG2 spec.
   3020 FPDT: Fixed several incorrect fields, add the FPDT boot record structure. 
   3021 ACPICA BZ 1249.
   3022 ERST/EINJ: Updated disassembler with new "Execute Timings" actions.
   3023 
   3024 Updated header support for the DMAR table to match the current version of 
   3025 the related spec.
   3026 
   3027 Added extensions to the ASL Concatenate operator to allow any ACPI object 
   3028 to be passed as an operand. Any object other than Integer/String/Buffer 
   3029 simply returns a string containing the object type. This extends the 
   3030 usefulness of the Printf macros. Previously, Concatenate would abort the 
   3031 control method if a non-data object was encountered.
   3032 
   3033 ACPICA source code: Deployed the C "const" keyword across the source code 
   3034 where appropriate. ACPICA BZ 732. Joerg Sonnenberger (NetBSD).
   3035 
   3036 Example Code and Data Size: These are the sizes for the OS-independent 
   3037 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   3038 debug version of the code includes the debug output trace mechanism and 
   3039 has a much larger code and data size.
   3040 
   3041   Current Release:
   3042     Non-Debug Version: 137.1K Code, 51.5K Data, 188.6K Total
   3043     Debug Version:     201.0K Code, 82.0K Data, 283.0K Total
   3044   Previous Release:
   3045     Non-Debug Version: 136.2K Code, 51.5K Data, 187.7K Total
   3046     Debug Version:     200.4K Code, 82.0K Data, 282.4K Total
   3047 
   3048 
   3049 2) iASL Compiler/Disassembler and Tools:
   3050 
   3051 iASL/Disassembler: Improved the heuristic used to determine the number of 
   3052 arguments for an externally defined control method (a method in another 
   3053 table). Although this is an improvement, there is no deterministic way to 
   3054 "guess" the number of method arguments. Only the ACPI 6.0 External opcode 
   3055 will completely solve this problem as it is deployed (automatically) in 
   3056 newer BIOS code.
   3057 
   3058 iASL/Disassembler: Fixed an ordering issue for emitted External() ASL 
   3059 statements that could cause errors when the disassembled file is 
   3060 compiled. ACPICA BZ 1243. David Box.
   3061 
   3062 iASL: Fixed a regression caused by the merger of the two versions of the 
   3063 local strtoul64. Because of a dependency on a global variable, strtoul64 
   3064 could return an error for integers greater than a 32-bit value. ACPICA BZ 
   3065 1260.
   3066 
   3067 iASL: Fixed a regression where a fault could occur for an ASL Return 
   3068 statement if it invokes a control method that is not resolved. ACPICA BZ 
   3069 1264.
   3070 
   3071 AcpiXtract: Improved input file validation: detection of binary files and 
   3072 non-acpidump text files.
   3073 
   3074 ----------------------------------------
   3075 12 February 2016. Summary of changes for version 20160212:
   3076 
   3077 1) ACPICA kernel-resident subsystem:
   3078 
   3079 Implemented full support for the ACPI 6.1 specification (released in 
   3080 January). This version of the specification is available at:  
   3081 http://www.uefi.org/specifications
   3082 
   3083 Only a relatively small number of changes were required in ACPICA to 
   3084 support ACPI 6.1, in these areas:
   3085 - New predefined names
   3086 - New _HID values
   3087 - A new subtable for HEST
   3088 - A few other header changes for new values
   3089 
   3090 Ensure \_SB_._INI is executed before any _REG methods are executed. There 
   3091 appears to be existing BIOS code that relies on this behavior. Lv Zheng.
   3092 
   3093 Reverted a change made in version 20151218 which enabled method 
   3094 invocations to be targets of various ASL operators (SuperName and Target 
   3095 grammar elements). While the new behavior is supported by the ACPI 
   3096 specification, other AML interpreters do not support this behavior and 
   3097 never will. The ACPI specification will be updated for ACPI 6.2 to remove 
   3098 this support. Therefore, the change was reverted to the original ACPICA 
   3099 behavior.
   3100 
   3101 ACPICA now supports the GCC 6 compiler.
   3102 
   3103 Current Release: (Note: build changes increased sizes)
   3104     Non-Debug Version: 136.2K Code, 51.5K Data, 187.7K Total
   3105     Debug Version:     200.4K Code, 82.0K Data, 282.4K Total
   3106 Previous Release:
   3107     Non-Debug Version: 102.7K Code, 28.4K Data, 131.1K Total
   3108     Debug Version:     200.4K Code, 81.9K Data, 282.3K Total
   3109 
   3110 
   3111 2) iASL Compiler/Disassembler and Tools:
   3112 
   3113 Completed full support for the ACPI 6.0 External() AML opcode. The 
   3114 compiler emits an external AML opcode for each ASL External statement. 
   3115 This opcode is used by the disassembler to assist with the disassembly of 
   3116 external control methods by specifying the required number of arguments 
   3117 for the method. AML interpreters do not use this opcode. To ensure that 
   3118 interpreters do not even see the opcode, a block of one or more external 
   3119 opcodes is surrounded by an "If(0)" construct. As this feature becomes 
   3120 commonly deployed in BIOS code, the ability of disassemblers to correctly 
   3121 disassemble AML code will be greatly improved. David Box.
   3122 
   3123 iASL: Implemented support for an optional cross-reference output file. 
   3124 The -lx option will create a the cross-reference file with the suffix 
   3125 "xrf". Three different types of cross-reference are created in this file:
   3126 - List of object references made from within each control method
   3127 - Invocation (caller) list for each user-defined control method
   3128 - List of references to each non-method object in the namespace
   3129 
   3130 iASL: Method invocations as ASL Target operands are now disallowed and 
   3131 flagged as errors in preparation for ACPI 6.2 (see the description of the 
   3132 problem above).
   3133 
   3134 ----------------------------------------
   3135 8 January 2016. Summary of changes for version 20160108:
   3136 
   3137 1) ACPICA kernel-resident subsystem:
   3138 
   3139 Updated all ACPICA copyrights and signons to 2016: Added the 2016 
   3140 copyright to all source code module headers and utility/tool signons. 
   3141 This includes the standard Linux dual-license header. This affects 
   3142 virtually every file in the ACPICA core subsystem, iASL compiler, all 
   3143 ACPICA utilities, and the ACPICA test suite.
   3144 
   3145 Fixed a regression introduced in version 20151218 concerning the 
   3146 execution of so-called module-level ASL/AML code. Namespace objects 
   3147 created under a module-level If() construct were not properly/fully 
   3148 entered into the namespace and could cause an interpreter fault when 
   3149 accessed.
   3150 
   3151 Example Code and Data Size: These are the sizes for the OS-independent 
   3152 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   3153 debug version of the code includes the debug output trace mechanism and 
   3154 has a much larger code and data size.
   3155 
   3156 Current Release:
   3157     Non-Debug Version: 102.7K Code, 28.4K Data, 131.1K Total
   3158     Debug Version:     200.4K Code, 81.9K Data, 282.4K Total
   3159   Previous Release:
   3160     Non-Debug Version: 102.6K Code, 28.4K Data, 131.0K Total
   3161     Debug Version:     200.3K Code, 81.9K Data, 282.3K Total
   3162 
   3163 
   3164 2) iASL Compiler/Disassembler and Tools:
   3165 
   3166 Fixed a problem with the compilation of the GpioIo and GpioInt resource 
   3167 descriptors. The _PIN field name was incorrectly defined to be an array 
   3168 of 32-bit values, but the _PIN values are in fact 16 bits each. This 
   3169 would cause incorrect bit width warnings when using Word (16-bit) fields 
   3170 to access the descriptors.
   3171 
   3172 
   3173 ----------------------------------------
   3174 18 December 2015. Summary of changes for version 20151218:
   3175 
   3176 1) ACPICA kernel-resident subsystem:
   3177 
   3178 Implemented per-AML-table execution of "module-level code" as individual 
   3179 ACPI tables are loaded into the namespace during ACPICA initialization. 
   3180 In other words, any module-level code within an AML table is executed 
   3181 immediately after the table is loaded, instead of batched and executed 
   3182 after all of the tables have been loaded. This provides compatibility 
   3183 with other ACPI implementations. ACPICA BZ 1219. Bob Moore, Lv Zheng, 
   3184 David Box.
   3185 
   3186 To fully support the feature above, the default operation region handlers 
   3187 for the SystemMemory, SystemIO, and PCI_Config address spaces are now 
   3188 installed before any ACPI tables are loaded. This enables module-level 
   3189 code to access these address spaces during the table load and module-
   3190 level code execution phase. ACPICA BZ 1220. Bob Moore, Lv Zheng, David 
   3191 Box.
   3192 
   3193 Implemented several changes to the internal _REG support in conjunction 
   3194 with the changes above. Also, changes to the AcpiExec/AcpiNames/Examples 
   3195 utilities for the changes above. Although these tools were changed, host 
   3196 operating systems that simply use the default handlers for SystemMemory, 
   3197 SystemIO, and PCI_Config spaces should not require any update. Lv Zheng.
   3198 
   3199 For example, in the code below, DEV1 is conditionally added to the 
   3200 namespace by the DSDT via module-level code that accesses an operation 
   3201 region. The SSDT references DEV1 via the Scope operator. DEV1 must be 
   3202 created immediately after the DSDT is loaded in order for the SSDT to 
   3203 successfully reference DEV1. Previously, this code would cause an 
   3204 AE_NOT_EXIST exception during the load of the SSDT. Now, this code is 
   3205 fully supported by ACPICA.
   3206 
   3207     DefinitionBlock ("", "DSDT", 2, "Intel", "DSDT1", 1)
   3208     {
   3209         OperationRegion (OPR1, SystemMemory, 0x400, 32)
   3210         Field (OPR1, AnyAcc, NoLock, Preserve)
   3211         {
   3212             FLD1, 1
   3213         }
   3214         If (FLD1)
   3215         {
   3216             Device (\DEV1)
   3217             {
   3218             }
   3219         }
   3220     }
   3221     DefinitionBlock ("", "SSDT", 2, "Intel", "SSDT1", 1)
   3222     {
   3223         External (\DEV1, DeviceObj)
   3224         Scope (\DEV1)
   3225         {
   3226         }
   3227     }
   3228 
   3229 Fixed an AML interpreter problem where control method invocations were 
   3230 not handled correctly when the invocation was itself a SuperName argument 
   3231 to another ASL operator. In these cases, the method was not invoked. 
   3232 ACPICA BZ 1002. Affects the following ASL operators that have a SuperName 
   3233 argument:
   3234     Store
   3235     Acquire, Wait
   3236     CondRefOf, RefOf
   3237     Decrement, Increment
   3238     Load, Unload
   3239     Notify
   3240     Signal, Release, Reset
   3241     SizeOf
   3242 
   3243 Implemented automatic String-to-ObjectReference conversion support for 
   3244 packages returned by predefined names (such as _DEP). A common BIOS error 
   3245 is to add double quotes around an ObjectReference namepath, which turns 
   3246 the reference into an unexpected string object. This support detects the 
   3247 problem and corrects it before the package is returned to the caller that 
   3248 invoked the method. Lv Zheng.
   3249 
   3250 Implemented extensions to the Concatenate operator. Concatenate now 
   3251 accepts any type of object, it is not restricted to simply 
   3252 Integer/String/Buffer. For objects other than these 3 basic data types, 
   3253 the argument is treated as a string containing the name of the object 
   3254 type. This expands the utility of Concatenate and the Printf/Fprintf 
   3255 macros. ACPICA BZ 1222.
   3256 
   3257 Cleaned up the output of the ASL Debug object. The timer() value is now 
   3258 optional and no longer emitted by default. Also, the basic data types of 
   3259 Integer/String/Buffer are simply emitted as their values, without a data 
   3260 type string -- since the data type is obvious from the output. ACPICA BZ 
   3261 1221.
   3262 
   3263 Example Code and Data Size: These are the sizes for the OS-independent 
   3264 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   3265 debug version of the code includes the debug output trace mechanism and 
   3266 has a much larger code and data size.
   3267 
   3268   Current Release:
   3269     Non-Debug Version: 102.6K Code, 28.4K Data, 131.0K Total
   3270     Debug Version:     200.3K Code, 81.9K Data, 282.3K Total
   3271   Previous Release:
   3272     Non-Debug Version: 102.0K Code, 28.3K Data, 130.3K Total
   3273     Debug Version:     199.6K Code, 81.8K Data, 281.4K Total
   3274 
   3275 
   3276 2) iASL Compiler/Disassembler and Tools:
   3277 
   3278 iASL: Fixed some issues with the ASL Include() operator. This operator 
   3279 was incorrectly defined in the iASL parser rules, causing a new scope to 
   3280 be opened for the code within the include file. This could lead to 
   3281 several issues, including allowing ASL code that is technically illegal 
   3282 and not supported by AML interpreters. Note, this does not affect the 
   3283 related #include preprocessor operator. ACPICA BZ 1212.
   3284 
   3285 iASL/Disassembler: Implemented support for the ASL ElseIf operator. This 
   3286 operator is essentially an ASL macro since there is no AML opcode 
   3287 associated with it. The code emitted by the iASL compiler for ElseIf is 
   3288 an Else opcode followed immediately by an If opcode. The disassembler 
   3289 will now emit an ElseIf if it finds an Else immediately followed by an 
   3290 If. This simplifies the decoded ASL, especially for deeply nested 
   3291 If..Else and large Switch constructs. Thus, the disassembled code more 
   3292 closely follows the original source ASL. ACPICA BZ 1211. Example:
   3293 
   3294     Old disassembly:
   3295         Else
   3296         {
   3297             If (Arg0 == 0x02)
   3298             {
   3299                 Local0 = 0x05
   3300             }
   3301         }
   3302 
   3303     New disassembly:
   3304         ElseIf (Arg0 == 0x02)
   3305         {
   3306             Local0 = 0x05
   3307         }
   3308 
   3309 AcpiExec: Added support for the new module level code behavior and the 
   3310 early region installation. This required a small change to the 
   3311 initialization, since AcpiExec must install its own operation region 
   3312 handlers.
   3313 
   3314 AcpiExec: Added support to make the debug object timer optional. Default 
   3315 is timer disabled. This cleans up the debug object output -- the timer 
   3316 data is rarely used.
   3317 
   3318 AcpiExec: Multiple ACPI tables are now loaded in the order that they 
   3319 appear on the command line. This can be important when there are 
   3320 interdependencies/references between the tables.
   3321 
   3322 iASL/Templates. Add support to generate template files with multiple 
   3323 SSDTs within a single output file. Also added ommand line support to 
   3324 specify the number of SSDTs (in addition to a single DSDT). ACPICA BZ 
   3325 1223, 1225.
   3326 
   3327 
   3328 ----------------------------------------
   3329 24 November 2015. Summary of changes for version 20151124:
   3330 
   3331 1) ACPICA kernel-resident subsystem:
   3332 
   3333 Fixed a possible regression for a previous update to FADT handling. The 
   3334 FADT no longer has a fixed table ID, causing some issues with code that 
   3335 was hardwired to a specific ID. Lv Zheng.
   3336 
   3337 Fixed a problem where the method auto-serialization could interfere with 
   3338 the current SyncLevel. This change makes the auto-serialization support 
   3339 transparent to the SyncLevel support and management.
   3340 
   3341 Removed support for the _SUB predefined name in AcpiGetObjectInfo. This 
   3342 interface is intended for early access to the namespace during the 
   3343 initial namespace device discovery walk. The _SUB method has been seen to 
   3344 access operation regions in some cases, causing errors because the 
   3345 operation regions are not fully initialized.
   3346 
   3347 AML Debugger: Fixed some issues with the terminate/quit/exit commands 
   3348 that can cause faults. Lv Zheng.
   3349 
   3350 AML Debugger: Add thread ID support so that single-step mode only applies 
   3351 to the AML Debugger thread. This prevents runtime errors within some 
   3352 kernels. Lv Zheng. 
   3353 
   3354 Eliminated extraneous warnings from AcpiGetSleepTypeData. Since the _Sx 
   3355 methods that are invoked by this interface are optional, removed warnings 
   3356 emitted for the case where one or more of these methods do not exist. 
   3357 ACPICA BZ 1208, original change by Prarit Bhargava.
   3358 
   3359 Made a major pass through the entire ACPICA source code base to 
   3360 standardize formatting that has diverged a bit over time. There are no 
   3361 functional changes, but this will of course cause quite a few code 
   3362 differences from the previous ACPICA release.
   3363 
   3364 Example Code and Data Size: These are the sizes for the OS-independent 
   3365 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   3366 debug version of the code includes the debug output trace mechanism and 
   3367 has a much larger code and data size.
   3368 
   3369   Current Release:
   3370     Non-Debug Version: 102.0K Code, 28.3K Data, 130.3K Total
   3371     Debug Version:     199.6K Code, 81.8K Data, 281.4K Total
   3372   Previous Release:
   3373     Non-Debug Version: 101.7K Code, 27.9K Data, 129.6K Total
   3374     Debug Version:     199.3K Code, 81.4K Data, 280.7K Total
   3375 
   3376 
   3377 2) iASL Compiler/Disassembler and Tools:
   3378 
   3379 iASL/acpiexec/acpixtract/disassembler: Added support to allow multiple 
   3380 definition blocks within a single ASL file and the resulting AML file. 
   3381 Support for this type of file was also added to the various tools that 
   3382 use binary AML files: acpiexec, acpixtract, and the AML disassembler. The 
   3383 example code below shows two definition blocks within the same file:
   3384 
   3385     DefinitionBlock ("dsdt.aml", "DSDT", 2, "Intel", "Template", 
   3386 0x12345678)
   3387     {
   3388     }
   3389     DefinitionBlock ("", "SSDT", 2, "Intel", "Template", 0xABCDEF01)
   3390     {
   3391     }
   3392 
   3393 iASL: Enhanced typechecking for the Name() operator. All expressions for 
   3394 the value of the named object must be reduced/folded to a single constant 
   3395 at compile time, as per the ACPI specification (the AML definition of 
   3396 Name()).
   3397 
   3398 iASL: Fixed some code indentation issues for the -ic and -ia options (C 
   3399 and assembly headers). Now all emitted code correctly begins in column 1.
   3400 
   3401 iASL: Added an error message for an attempt to open a Scope() on an 
   3402 object defined in an SSDT. The DSDT is always loaded into the namespace 
   3403 first, so any attempt to open a Scope on an SSDT object will fail at 
   3404 runtime.
   3405 
   3406 
   3407 ----------------------------------------
   3408 30 September 2015. Summary of changes for version 20150930:
   3409 
   3410 1) ACPICA kernel-resident subsystem:
   3411 
   3412 Debugger: Implemented several changes and bug fixes to assist support for 
   3413 the in-kernel version of the AML debugger. Lv Zheng.
   3414 - Fix the "predefined" command for in-kernel debugger.
   3415 - Do not enter debug command loop for the help and version commands.
   3416 - Disallow "execute" command during execution/single-step of a method.
   3417 
   3418 Interpreter: Updated runtime typechecking for all operators that have 
   3419 target operands. The operand is resolved and validated that it is legal. 
   3420 For example, the target cannot be a non-data object such as a Device, 
   3421 Mutex, ThermalZone, etc., as per the ACPI specification.
   3422 
   3423 Debugger: Fixed the double-mutex user I/O handshake to work when local 
   3424 deadlock detection is enabled.
   3425 
   3426 Debugger: limited display of method locals and arguments (LocalX and 
   3427 ArgX) to only those that have actually been initialized. This prevents 
   3428 lines of extraneous output.
   3429 
   3430 Updated the definition of the NFIT table to correct the bit polarity of 
   3431 one flag: ACPI_NFIT_MEM_ARMED --> ACPI_NFIT_MEM_NOT_ARMED
   3432 
   3433 Example Code and Data Size: These are the sizes for the OS-independent 
   3434 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   3435 debug version of the code includes the debug output trace mechanism and 
   3436 has a much larger code and data size.
   3437 
   3438   Current Release:
   3439     Non-Debug Version: 101.7K Code, 27.9K Data, 129.6K Total
   3440     Debug Version:     199.3K Code, 81.4K Data, 280.7K Total
   3441   Previous Release:
   3442     Non-Debug Version: 101.3K Code, 27.7K Data, 129.0K Total
   3443     Debug Version:     198.6K Code, 80.9K Data, 279.5K Total
   3444 
   3445 
   3446 2) iASL Compiler/Disassembler and Tools:
   3447 
   3448 iASL: Improved the compile-time typechecking for operands of many of the 
   3449 ASL operators:
   3450 
   3451 -- Added an option to disable compiler operand/operator typechecking (-
   3452 ot).
   3453 
   3454 -- For the following operators, the TermArg operands are now validated 
   3455 when possible to be Integer data objects: BankField, OperationRegion, 
   3456 DataTableRegion, Buffer, and Package.
   3457 
   3458 -- Store (Source, Target): Both the source and target operands are 
   3459 resolved and checked that the operands are both legal. For example, 
   3460 neither operand can be a non-data object such as a Device, Mutex, 
   3461 ThermalZone, etc. Note, as per the ACPI specification, the CopyObject 
   3462 operator can be used to store an object to any type of target object.
   3463 
   3464 -- Store (Source, Target): If the source is a Package object, the target 
   3465 must be a Package object, LocalX, ArgX, or Debug. Likewise, if the target 
   3466 is a Package, the source must also be a Package.
   3467 
   3468 -- Store (Source, Target): A warning is issued if the source and target 
   3469 resolve to the identical named object.
   3470 
   3471 -- Store (Source, <method invocation>): An error is generated for the 
   3472 target method invocation, as this construct is not supported by the AML 
   3473 interpreter.
   3474 
   3475 -- For all ASL math and logic operators, the target operand must be a 
   3476 data object (Integer, String, Buffer, LocalX, ArgX, or Debug). This 
   3477 includes the function return value also.
   3478 
   3479 -- External declarations are also included in the typechecking where 
   3480 possible. External objects defined using the UnknownObj keyword cannot be 
   3481 typechecked, however.
   3482 
   3483 iASL and Disassembler: Added symbolic (ASL+) support for the ASL Index 
   3484 operator:
   3485 - Legacy code: Index(PKG1, 3)
   3486 - New ASL+ code: PKG1[3]
   3487 This completes the ACPI 6.0 ASL+ support as it was the only operator not 
   3488 supported.
   3489 
   3490 iASL: Fixed the file suffix for the preprocessor output file (.i). Two 
   3491 spaces were inadvertently appended to the filename, causing file access 
   3492 and deletion problems on some systems.
   3493 
   3494 ASL Test Suite (ASLTS): Updated the master makefile to generate all 
   3495 possible compiler output files when building the test suite -- thus 
   3496 exercising these features of the compiler. These files are automatically 
   3497 deleted when the test suite exits.
   3498 
   3499 
   3500 ----------------------------------------
   3501 18 August 2015. Summary of changes for version 20150818:
   3502 
   3503 1) ACPICA kernel-resident subsystem:
   3504 
   3505 Fix a regression for AcpiGetTableByIndex interface causing it to fail. Lv 
   3506 Zheng. ACPICA BZ 1186.
   3507 
   3508 Completed development to ensure that the ACPICA Disassembler and Debugger 
   3509 are fully standalone components of ACPICA. Removed cross-component 
   3510 dependences. Lv Zheng.
   3511 
   3512 The max-number-of-AML-loops is now runtime configurable (previously was 
   3513 compile-time only). This is essentially a loop timeout to force-abort 
   3514 infinite AML loops. ACPCIA BZ 1192.
   3515 
   3516 Debugger: Cleanup output to dump ACPI names and namepaths without any 
   3517 trailing underscores. Lv Zheng. ACPICA BZ 1135.
   3518 
   3519 Removed unnecessary conditional compilations across the Debugger and 
   3520 Disassembler components where entire modules could be left uncompiled.
   3521 
   3522 The aapits test is deprecated and has been removed from the ACPICA git 
   3523 tree. The test has never been completed and has not been maintained, thus 
   3524 becoming rather useless. ACPICA BZ 1015, 794.
   3525 
   3526 A batch of small changes to close bugzilla and other reports:
   3527 - Remove duplicate code for _PLD processing. ACPICA BZ 1176.
   3528 - Correctly cleanup after a ACPI table load failure. ACPICA BZ 1185.
   3529 - iASL: Support POSIX yacc again in makefile. Jung-uk Kim.
   3530 - ACPI table support: general cleanup and simplification. Lv Zheng, Bob 
   3531 Moore.
   3532 - ACPI table support: fix for a buffer read overrun in AcpiTbFindTable. 
   3533 ACPICA BZ 1184.
   3534 - Enhance parameter validation for DataTableRegion and LoadTable ASL/AML 
   3535 operators.
   3536 - Debugger: Split debugger initialization/termination interfaces. Lv 
   3537 Zheng.
   3538 - AcpiExec: Emit OemTableId for SSDTs during the load phase for table 
   3539 identification.
   3540 - AcpiExec: Add debug message during _REG method phase during table 
   3541 load/init.
   3542 - AcpiNames: Fix a regression where some output was missing and no longer 
   3543 emitted.
   3544 - Debugger: General cleanup and simplification. Lv Zheng.
   3545 - Disassembler: Cleanup use of several global option variables. Lv Zheng.
   3546 
   3547 Example Code and Data Size: These are the sizes for the OS-independent 
   3548 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   3549 debug version of the code includes the debug output trace mechanism and 
   3550 has a much larger code and data size.
   3551 
   3552   Current Release:
   3553     Non-Debug Version: 101.3K Code, 27.7K Data, 129.0K Total
   3554     Debug Version:     198.6K Code, 80.9K Data, 279.5K Total
   3555   Previous Release:
   3556     Non-Debug Version: 100.9K Code, 24.5K Data, 125.4K Total
   3557     Debug Version:     197.8K Code, 81.5K Data, 279.3K Total
   3558 
   3559 
   3560 2) iASL Compiler/Disassembler and Tools:
   3561 
   3562 AcpiExec: Fixed a problem where any more than 32 ACPI tables in the XSDT 
   3563 were not handled properly and caused load errors. Now, properly invoke 
   3564 and use the ACPICA auto-reallocate mechanism for ACPI table data 
   3565 structures. ACPICA BZ 1188
   3566 
   3567 AcpiNames: Add command-line wildcard support for ACPI table files. ACPICA 
   3568 BZ 1190.
   3569 
   3570 AcpiExec and AcpiNames: Add -l option to load ACPI tables only. For 
   3571 AcpiExec, this means that no control methods (like _REG/_INI/_STA) are 
   3572 executed during initialization. ACPICA BZ 1187, 1189.
   3573 
   3574 iASL/Disassembler: Implemented a prototype "listing" mode that emits AML 
   3575 that corresponds to each disassembled ASL statement, to simplify 
   3576 debugging. ACPICA BZ 1191.
   3577 
   3578 Debugger: Add option to the "objects" command to display a summary of the 
   3579 current namespace objects (Object type and count). This is displayed if 
   3580 the command is entered with no arguments.
   3581 
   3582 AcpiNames: Add -x option to specify debug level, similar to AcpiExec.
   3583 
   3584 
   3585 ----------------------------------------
   3586 17 July 2015. Summary of changes for version 20150717:
   3587 
   3588 1) ACPICA kernel-resident subsystem:
   3589 
   3590 Improved the partitioning between the Debugger and Disassembler 
   3591 components. This allows the Debugger to be used standalone within kernel 
   3592 code without the Disassembler (which is used for single stepping also). 
   3593 This renames and moves one file, dmobject.c to dbobject.c. Lv Zheng.
   3594 
   3595 Debugger: Implemented a new command to trace the execution of control 
   3596 methods (Trace). This is especially useful for the in-kernel version of 
   3597 the debugger when file I/O may not be available for method trace output. 
   3598 See the ACPICA reference for more information. Lv Zheng.
   3599 
   3600 Moved all C library prototypes (used for the local versions of these 
   3601 functions when requested) to a new header, acclib.h
   3602 Cleaned up the use of non-ANSI C library functions. These functions are 
   3603 implemented locally in ACPICA. Moved all such functions to a common 
   3604 source file, utnonansi.c
   3605 
   3606 Debugger: Fixed a problem with the "!!" command (get last command 
   3607 executed) where the debugger could enter an infinite loop and eventually 
   3608 crash.
   3609 
   3610 Removed the use of local macros that were used for some of the standard C 
   3611 library functions to automatically cast input parameters. This mostly 
   3612 affected the is* functions where the input parameter is defined to be an 
   3613 int. This required a few modifications to the main ACPICA source code to 
   3614 provide casting for these functions and eliminate possible compiler 
   3615 warnings for these parameters.
   3616 
   3617 Across the source code, added additional status/error checking to resolve 
   3618 issues discovered by static source code analysis tools such as Coverity.
   3619 
   3620 Example Code and Data Size: These are the sizes for the OS-independent 
   3621 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   3622 debug version of the code includes the debug output trace mechanism and 
   3623 has a much larger code and data size.
   3624 
   3625   Current Release:
   3626     Non-Debug Version: 100.9K Code, 24.5K Data, 125.4K Total
   3627     Debug Version:     197.8K Code, 81.5K Data, 279.3K Total
   3628   Previous Release:
   3629     Non-Debug Version: 100.6K Code, 27.6K Data, 128.2K Total
   3630     Debug Version:     196.2K Code, 81.0K Data, 277.2K Total
   3631 
   3632 
   3633 2) iASL Compiler/Disassembler and Tools:
   3634 
   3635 iASL: Fixed a regression where the device map file feature no longer 
   3636 worked properly when used in conjunction with the disassembler. It only 
   3637 worked properly with the compiler itself.
   3638 
   3639 iASL: Implemented a new warning for method LocalX variables that are set 
   3640 but never used (similar to a C compiler such as gcc). This also applies 
   3641 to ArgX variables that are not defined by the parent method, and are 
   3642 instead (legally) used as local variables.
   3643 
   3644 iASL/Preprocessor: Finished the pass-through of line numbers from the 
   3645 preprocessor to the compiler. This ensures that compiler errors/warnings 
   3646 have the correct original line numbers and filenames, regardless of any 
   3647 #include files.
   3648 
   3649 iASL/Preprocessor: Fixed a couple of issues with comment handling and the 
   3650 pass-through of comments to the preprocessor output file (which becomes 
   3651 the compiler input file). Also fixed a problem with // comments that 
   3652 appear after a math expression.
   3653 
   3654 iASL: Added support for the TCPA server table to the table compiler and 
   3655 template generator. (The client table was already previously supported)
   3656 
   3657 iASL/Preprocessor: Added a permanent #define of the symbol "__IASL__" to 
   3658 identify the iASL compiler.
   3659 
   3660 Cleaned up the use of the macros NEGATIVE and POSITIVE which were defined 
   3661 multiple times. The new names are ACPI_SIGN_NEGATIVE and 
   3662 ACPI_SIGN_POSITIVE.
   3663 
   3664 AcpiHelp: Update to expand help messages for the iASL preprocessor 
   3665 directives.
   3666 
   3667 
   3668 ----------------------------------------
   3669 19 June 2015. Summary of changes for version 20150619:
   3670 
   3671 Two regressions in version 20150616 have been addressed:
   3672 
   3673 Fixes some problems/issues with the C library macro removal (ACPI_STRLEN, 
   3674 etc.) This update changes ACPICA to only use the standard headers for 
   3675 functions, or the prototypes for the local versions of the C library 
   3676 functions. Across the source code, this required some additional casts 
   3677 for some Clib invocations for portability. Moved all local prototypes to 
   3678 a new file, acclib.h
   3679 
   3680 Fixes several problems with recent changes to the handling of the FACS 
   3681 table that could cause some systems not to boot.
   3682 
   3683 
   3684 ----------------------------------------
   3685 16 June 2015. Summary of changes for version 20150616:
   3686 
   3687 
   3688 1) ACPICA kernel-resident subsystem:
   3689 
   3690 Across the entire ACPICA source code base, the various macros for the C 
   3691 library functions (such as ACPI_STRLEN, etc.) have been removed and 
   3692 replaced by the standard C library names (strlen, etc.) The original 
   3693 purpose for these macros is no longer applicable. This simplification 
   3694 reduces the number of macros used in the ACPICA source code 
   3695 significantly, improving readability and maintainability.
   3696 
   3697 Implemented support for a new ACPI table, the OSDT. This table, the 
   3698 "override" SDT, can be loaded directly by the host OS at boot time. It 
   3699 enables the replacement of existing namespace objects that were installed 
   3700 via the DSDT and/or SSDTs. The primary purpose for this is to replace 
   3701 buggy or incorrect ASL/AML code obtained via the BIOS. The OSDT is slated 
   3702 for inclusion in a future version of the ACPI Specification. Lv Zheng/Bob 
   3703 Moore.
   3704 
   3705 Added support for systems with (improperly) two FACS tables -- a "32-bit" 
   3706 table (via FADT 32-bit legacy field) and a "64-bit" table (via the 64-bit 
   3707 X field). This change will support both automatically. There continues to 
   3708 be systems found with this issue. This support requires a change to the 
   3709 AcpiSetFirmwareWakingVector interface. Also, a public global variable has 
   3710 been added to allow the host to select which FACS is desired 
   3711 (AcpiGbl_Use32BitFacsAddresses). See the ACPICA reference for more 
   3712 details Lv Zheng.
   3713 
   3714 Added a new feature to allow for systems that do not contain an FACS. 
   3715 Although this is already supported on hardware-reduced platforms, the 
   3716 feature has been extended for all platforms. The reasoning is that we do 
   3717 not want to abort the entire ACPICA initialization just because the 
   3718 system is seriously buggy and has no FACS.
   3719 
   3720 Fixed a problem where the GUID strings for NFIT tables (in acuuid.h) were 
   3721 not correctly transcribed from the ACPI specification in ACPICA version 
   3722 20150515.
   3723 
   3724 Implemented support for the _CLS object in the AcpiGetObjectInfo external 
   3725 interface.
   3726 
   3727 Updated the definitions of the TCPA and TPM2 ACPI tables to the more 
   3728 recent TCG ACPI Specification, December 14, 2014. Table disassembler and 
   3729 compiler also updated. Note: The TCPA "server" table is not supported by 
   3730 the disassembler/table-compiler at this time.
   3731 
   3732 ACPI 6.0: Added definitions for the new GIC version field in the MADT.
   3733 
   3734 Example Code and Data Size: These are the sizes for the OS-independent 
   3735 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   3736 debug version of the code includes the debug output trace mechanism and 
   3737 has a much larger code and data size.
   3738 
   3739   Current Release:
   3740     Non-Debug Version: 100.6K Code, 27.6K Data, 128.2K Total
   3741     Debug Version:     196.2K Code, 81.0K Data, 277.2K Total
   3742   Previous Release:
   3743     Non-Debug Version:  99.9K Code, 27.5K Data, 127.4K Total
   3744     Debug Version:     195.2K Code, 80.8K Data, 276.0K Total
   3745 
   3746 
   3747 2) iASL Compiler/Disassembler and Tools:
   3748 
   3749 Disassembler: Fixed a problem with the new symbolic operator disassembler 
   3750 where incorrect ASL code could be emitted in some cases for the "non-
   3751 commutative" operators -- Subtract, Divide, Modulo, ShiftLeft, and 
   3752 ShiftRight. The actual problem cases seem to be rather unusual in common 
   3753 ASL code, however. David Box.
   3754 
   3755 Modified the linux version of acpidump to obtain ACPI tables from not 
   3756 just /dev/mem (which may not exist) and /sys/firmware/acpi/tables. Lv 
   3757 Zheng.
   3758 
   3759 iASL: Fixed a problem where the user preprocessor output file (.i) 
   3760 contained extra data that was not expected. The compiler was using this 
   3761 file as a temporary file and passed through #line directives in order to 
   3762 keep compiler error messages in sync with the input file and line number 
   3763 across multiple include files. The (.i) is no longer a temporary file as 
   3764 the compiler uses a new, different file for the original purpose.
   3765 
   3766 iASL: Fixed a problem where comments within the original ASL source code 
   3767 file were not passed through to the preprocessor output file, nor any 
   3768 listing files.
   3769 
   3770 iASL: Fixed some issues for the handling of the "#include" preprocessor 
   3771 directive and the similar (but not the same) "Include" ASL operator.
   3772 
   3773 iASL: Add support for the new OSDT in both the disassembler and compiler.
   3774 
   3775 iASL: Fixed a problem with the constant folding support where a Buffer 
   3776 object could be incorrectly generated (incorrectly formed) during a 
   3777 conversion to a Store() operator.
   3778 
   3779 AcpiHelp: Updated for new NFIT GUIDs, "External" AML opcode, and new 
   3780 description text for the _REV predefined name. _REV now permanently 
   3781 returns 2, as per the ACPI 6.0 specification.
   3782 
   3783 Debugger: Enhanced the output of the Debug ASL object for references 
   3784 produced by the Index operator. For Buffers and strings, only output the 
   3785 actual byte pointed to by the index. For packages, only print the single 
   3786 package element decoded by the index. Previously, the entire 
   3787 buffer/string/package was emitted.
   3788 
   3789 iASL/Table-compiler: Fixed a regression where the "generic" data types 
   3790 were no longer recognized, causing errors.
   3791 
   3792 
   3793 ----------------------------------------
   3794 15 May 2015. Summary of changes for version 20150515:
   3795 
   3796 This release implements most of ACPI 6.0 as described below.
   3797 
   3798 1) ACPICA kernel-resident subsystem:
   3799 
   3800 Implemented runtime argument checking and return value checking for all 
   3801 new ACPI 6.0 predefined names. This includes: _BTH, _CR3, _DSD, _LPI, 
   3802 _MTL, _PRR, _RDI, _RST, _TFP, _TSN.
   3803 
   3804 Example Code and Data Size: These are the sizes for the OS-independent 
   3805 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   3806 debug version of the code includes the debug output trace mechanism and 
   3807 has a much larger code and data size.
   3808 
   3809   Current Release:
   3810     Non-Debug Version:  99.9K Code, 27.5K Data, 127.4K Total
   3811     Debug Version:     195.2K Code, 80.8K Data, 276.0K Total
   3812   Previous Release:
   3813     Non-Debug Version:  99.1K Code, 27.3K Data, 126.4K Total
   3814     Debug Version:     192.8K Code, 79.9K Data, 272.7K Total
   3815 
   3816 
   3817 2) iASL Compiler/Disassembler and Tools:
   3818 
   3819 iASL compiler: Added compile-time support for all new ACPI 6.0 predefined 
   3820 names (argument count validation and return value typechecking.)
   3821 
   3822 iASL disassembler and table compiler: implemented support for all new 
   3823 ACPI 6.0 tables. This includes: DRTM, IORT, LPIT, NFIT, STAO, WPBT, XENV. 
   3824 
   3825 iASL disassembler and table compiler: Added ACPI 6.0 changes to existing 
   3826 tables: FADT, MADT.
   3827 
   3828 iASL preprocessor: Added a new directive to enable inclusion of binary 
   3829 blobs into ASL code. The new directive is #includebuffer. It takes a 
   3830 binary file as input and emits a named ascii buffer object into the ASL 
   3831 code.
   3832 
   3833 AcpiHelp: Added support for all new ACPI 6.0 predefined names.
   3834 
   3835 AcpiHelp: Added a new option, -d, to display all iASL preprocessor 
   3836 directives.
   3837 
   3838 AcpiHelp: Added a new option, -t, to display all known/supported ACPI 
   3839 tables.
   3840 
   3841 
   3842 ----------------------------------------
   3843 10 April 2015. Summary of changes for version 20150410:
   3844 
   3845 Reverted a change introduced in version 20150408 that caused
   3846 a regression in the disassembler where incorrect operator
   3847 symbols could be emitted.
   3848 
   3849 
   3850 ----------------------------------------
   3851 08 April 2015. Summary of changes for version 20150408:
   3852 
   3853 
   3854 1) ACPICA kernel-resident subsystem:
   3855 
   3856 Permanently set the return value for the _REV predefined name. It now 
   3857 returns 2 (was 5). This matches other ACPI implementations. _REV will be 
   3858 deprecated in the future, and is now defined to be 1 for ACPI 1.0, and 2 
   3859 for ACPI 2.0 and later. It should never be used to differentiate or 
   3860 identify operating systems.
   3861 
   3862 Added the "Windows 2015" string to the _OSI support. ACPICA will now 
   3863 return TRUE to a query with this string.
   3864 
   3865 Fixed several issues with the local version of the printf function.
   3866 
   3867 Added the C99 compiler option (-std=c99) to the Unix makefiles.
   3868 
   3869   Current Release:
   3870     Non-Debug Version:  99.9K Code, 27.4K Data, 127.3K Total
   3871     Debug Version:     195.2K Code, 80.7K Data, 275.9K Total
   3872   Previous Release:
   3873     Non-Debug Version:  98.8K Code, 27.3K Data, 126.1K Total
   3874     Debug Version:     192.1K Code, 79.8K Data, 271.9K Total
   3875 
   3876 
   3877 2) iASL Compiler/Disassembler and Tools:
   3878 
   3879 iASL: Implemented an enhancement to the constant folding feature to 
   3880 transform the parse tree to a simple Store operation whenever possible:
   3881     Add (2, 3, X) ==> is converted to: Store (5, X)
   3882     X = 2 + 3     ==> is converted to: Store (5, X)
   3883 
   3884 Updated support for the SLIC table (Software Licensing Description Table) 
   3885 in both the Data Table compiler and the disassembler. The SLIC table 
   3886 support now conforms to "Microsoft Software Licensing Tables (SLIC and 
   3887 MSDM). November 29, 2011. Copyright 2011 Microsoft". Note: Any SLIC data 
   3888 following the ACPI header is now defined to be "Proprietary Data", and as 
   3889 such, can only be entered or displayed as a hex data block.
   3890 
   3891 Implemented full support for the MSDM table as described in the document 
   3892 above. Note: The format of MSDM is similar to SLIC. Any MSDM data 
   3893 following the ACPI header is defined to be "Proprietary Data", and can 
   3894 only be entered or displayed as a hex data block.
   3895 
   3896 Implemented the -Pn option for the iASL Table Compiler (was only 
   3897 implemented for the ASL compiler). This option disables the iASL 
   3898 preprocessor.
   3899 
   3900 Disassembler: For disassembly of Data Tables, added a comment field 
   3901 around the Ascii equivalent data that is emitted as part of the "Raw 
   3902 Table Data" block. This prevents the iASL Preprocessor from possible 
   3903 confusion if/when the table is compiled.
   3904 
   3905 Disassembler: Added an option (-df) to force the disassembler to assume 
   3906 that the table being disassembled contains valid AML. This feature is 
   3907 useful for disassembling AML files that contain ACPI signatures other 
   3908 than DSDT or SSDT (such as OEMx or other signatures).
   3909 
   3910 Changes for the EFI version of the tools:
   3911 1) Fixed a build error/issue
   3912 2) Fixed a cast warning
   3913 
   3914 iASL: Fixed a path issue with the __FILE__ operator by making the 
   3915 directory prefix optional within the internal SplitInputFilename 
   3916 function.
   3917 
   3918 Debugger: Removed some unused global variables.
   3919 
   3920 Tests: Updated the makefile for proper generation of the AAPITS suite.
   3921 
   3922 
   3923 ----------------------------------------
   3924 04 February 2015. Summary of changes for version 20150204:
   3925 
   3926 ACPICA kernel-resident subsystem:
   3927 
   3928 Updated all ACPICA copyrights and signons to 2014. Added the 2014 
   3929 copyright to all module headers and signons, including the standard Linux 
   3930 header. This affects virtually every file in the ACPICA core subsystem, 
   3931 iASL compiler, all ACPICA utilities, and the test suites.
   3932 
   3933 Events: Introduce ACPI_GPE_DISPATCH_RAW_HANDLER to fix GPE storm issues.
   3934 A raw gpe handling mechanism was created to allow better handling of GPE
   3935 storms that aren't easily managed by the normal handler. The raw handler
   3936 allows disabling/renabling of the GPE so that interrupt storms can be
   3937 avoided in cases where events cannot be timely serviced. In this 
   3938 scenario, handlers should use the AcpiSetGpe() API to disable/enable the 
   3939 GPE. This API will leave the reference counts undisturbed, thereby 
   3940 preventing unintentional clearing of the GPE when the intent in only to 
   3941 temporarily disable it. Raw handlers allow enabling and disabling of a 
   3942 GPE by removing GPE register locking. As such, raw handlers much provide 
   3943 their own locks while using GPE API's to protect access to GPE data 
   3944 structures.
   3945 Lv Zheng
   3946 
   3947 Events: Always modify GPE registers under the GPE lock.
   3948 Applies GPE lock around AcpiFinishGpe() to protect access to GPE register
   3949 values. Reported as bug by joe.liu (a] apple.com.
   3950 
   3951 Unix makefiles: Separate option to disable optimizations and 
   3952 _FORTIFY_SOURCE. This change removes the _FORTIFY_SOURCE flag from the 
   3953 NOOPT disable option and creates a separate flag (NOFORTIFY) for this 
   3954 purpose. Some toolchains may define _FORTIFY_SOURCE which leads redefined 
   3955 errors when building ACPICA. This allows disabling the option without 
   3956 also having to disable optimazations.
   3957 David Box
   3958 
   3959   Current Release:
   3960     Non-Debug Version: 101.7K Code, 27.9K Data, 129.6K Total
   3961     Debug Version:     199.2K Code, 82.4K Data, 281.6K Total
   3962 
   3963 --
   3964 --------------------------------------
   3965 07 November 2014. Summary of changes for version 20141107:
   3966 
   3967 This release is available at https://acpica.org/downloads
   3968 
   3969 This release introduces and implements language extensions to ASL that 
   3970 provide support for symbolic ("C-style") operators and expressions. These 
   3971 language extensions are known collectively as ASL+.
   3972 
   3973 
   3974 1) iASL Compiler/Disassembler and Tools:
   3975 
   3976 Disassembler: Fixed a problem with disassembly of the UartSerialBus 
   3977 macro. Changed "StopBitsNone" to the correct "StopBitsZero". David E. 
   3978 Box.
   3979 
   3980 Disassembler: Fixed the Unicode macro support to add escape sequences. 
   3981 All non-printable ASCII values are emitted as escape sequences, as well 
   3982 as the standard escapes for quote and backslash. Ensures that the 
   3983 disassembled macro can be correctly recompiled.
   3984 
   3985 iASL: Added Printf/Fprintf macros for formatted output. These macros are 
   3986 translated to existing AML Concatenate and Store operations. Printf 
   3987 writes to the ASL Debug object. Fprintf allows the specification of an 
   3988 ASL name as the target. Only a single format specifier is required, %o, 
   3989 since the AML interpreter dynamically converts objects to the required 
   3990 type. David E. Box.
   3991 
   3992     (old)    Store (Concatenate (Concatenate (Concatenate (Concatenate
   3993                  (Concatenate (Concatenate (Concatenate ("", Arg0),
   3994                  ": Unexpected value for "), Arg1), ", "), Arg2),
   3995                  " at line "), Arg3), Debug)
   3996 
   3997     (new)    Printf ("%o: Unexpected value for %o, %o at line %o",
   3998                  Arg0, Arg1, Arg2, Arg3)
   3999 
   4000     (old)    Store (Concatenate (Concatenate (Concatenate (Concatenate
   4001                  ("", Arg1), ": "), Arg0), " Successful"), STR1)
   4002 
   4003     (new)    Fprintf (STR1, "%o: %o Successful", Arg1, Arg0)
   4004 
   4005 iASL: Added debug options (-bp, -bt) to dynamically prune levels of the 
   4006 ASL parse tree before the AML code is generated. This allows blocks of 
   4007 ASL code to be removed in order to help locate and identify problem 
   4008 devices and/or code. David E. Box.
   4009 
   4010 AcpiExec: Added support (-fi) for an optional namespace object 
   4011 initialization file. This file specifies initial values for namespace 
   4012 objects as necessary for debugging and testing different ASL code paths 
   4013 that may be taken as a result of BIOS options.
   4014 
   4015 
   4016 2) Overview of symbolic operator support for ASL (ASL+)
   4017 -------------------------------------------------------
   4018 
   4019 As an extension to the ASL language, iASL implements support for symbolic 
   4020 (C-style) operators for math and logical expressions. This can greatly 
   4021 simplify ASL code as well as improve both readability and 
   4022 maintainability. These language extensions can exist concurrently with 
   4023 all legacy ASL code and expressions.
   4024 
   4025 The symbolic extensions are 100% compatible with existing AML 
   4026 interpreters, since no new AML opcodes are created. To implement the 
   4027 extensions, the iASL compiler transforms the symbolic expressions into 
   4028 the legacy ASL/AML equivalents at compile time.
   4029 
   4030 Full symbolic expressions are supported, along with the standard C 
   4031 precedence and associativity rules.
   4032 
   4033 Full disassembler support for the symbolic expressions is provided, and 
   4034 creates an automatic migration path for existing ASL code to ASL+ code 
   4035 via the disassembly process. By default, the disassembler now emits ASL+ 
   4036 code with symbolic expressions. An option (-dl) is provided to force the 
   4037 disassembler to emit legacy ASL code if desired.
   4038 
   4039 Below is the complete list of the currently supported symbolic operators 
   4040 with examples. See the iASL User Guide for additional information.
   4041 
   4042 
   4043 ASL+ Syntax      Legacy ASL Equivalent
   4044 -----------      ---------------------
   4045 
   4046     // Math operators
   4047 
   4048 Z = X + Y        Add (X, Y, Z)
   4049 Z = X - Y        Subtract (X, Y, Z)
   4050 Z = X * Y        Multiply (X, Y, Z)
   4051 Z = X / Y        Divide (X, Y, , Z)
   4052 Z = X % Y        Mod (X, Y, Z)
   4053 Z = X << Y       ShiftLeft (X, Y, Z)
   4054 Z = X >> Y       ShiftRight (X, Y, Z)
   4055 Z = X & Y        And (X, Y, Z)
   4056 Z = X | Y        Or (X, Y, Z)
   4057 Z = X ^ Y        Xor (X, Y, Z)
   4058 Z = ~X           Not (X, Z)
   4059 X++              Increment (X)
   4060 X--              Decrement (X)
   4061 
   4062     // Logical operators
   4063 
   4064 (X == Y)         LEqual (X, Y)
   4065 (X != Y)         LNotEqual (X, Y)
   4066 (X < Y)          LLess (X, Y)
   4067 (X > Y)          LGreater (X, Y)
   4068 (X <= Y)         LLessEqual (X, Y)
   4069 (X >= Y)         LGreaterEqual (X, Y)
   4070 (X && Y)         LAnd (X, Y)
   4071 (X || Y)         LOr (X, Y)
   4072 (!X)             LNot (X)
   4073 
   4074     // Assignment and compound assignment operations
   4075 
   4076 X = Y           Store (Y, X)
   4077 X += Y          Add (X, Y, X)
   4078 X -= Y          Subtract (X, Y, X)
   4079 X *= Y          Multiply (X, Y, X)
   4080 X /= Y          Divide (X, Y, , X)
   4081 X %= Y          Mod (X, Y, X)
   4082 X <<= Y         ShiftLeft (X, Y, X)
   4083 X >>= Y         ShiftRight (X, Y, X)
   4084 X &= Y          And (X, Y, X)
   4085 X |= Y          Or (X, Y, X)
   4086 X ^= Y          Xor (X, Y, X)
   4087 
   4088 
   4089 3) ASL+ Examples:
   4090 -----------------
   4091 
   4092 Legacy ASL:
   4093         If (LOr (LOr (LEqual (And (R510, 0x03FB), 0x02E0), LEqual (
   4094             And (R520, 0x03FB), 0x02E0)), LOr (LEqual (And (R530, 
   4095 0x03FB), 
   4096             0x02E0), LEqual (And (R540, 0x03FB), 0x02E0))))
   4097         {
   4098             And (MEMB, 0xFFFFFFF0, SRMB)
   4099             Store (MEMB, Local2)
   4100             Store (PDBM, Local1)
   4101             And (PDBM, 0xFFFFFFFFFFFFFFF9, PDBM)
   4102             Store (SRMB, MEMB)
   4103             Or (PDBM, 0x02, PDBM)
   4104         }
   4105 
   4106 ASL+ version:
   4107         If (((R510 & 0x03FB) == 0x02E0) ||
   4108             ((R520 & 0x03FB) == 0x02E0) ||
   4109             ((R530 & 0x03FB) == 0x02E0) || 
   4110             ((R540 & 0x03FB) == 0x02E0))
   4111         {
   4112             SRMB = (MEMB & 0xFFFFFFF0)
   4113             Local2 = MEMB
   4114             Local1 = PDBM
   4115             PDBM &= 0xFFFFFFFFFFFFFFF9
   4116             MEMB = SRMB
   4117             PDBM |= 0x02
   4118         }
   4119 
   4120 Legacy ASL:
   4121         Store (0x1234, Local1)
   4122         Multiply (Add (Add (Local1, TEST), 0x20), Local2, Local3)
   4123         Multiply (Local2, Add (Add (Local1, TEST), 0x20), Local3)
   4124         Add (Local1, Add (TEST, Multiply (0x20, Local2)), Local3)
   4125         Store (Index (PKG1, 0x03), Local6)
   4126         Store (Add (Local3, Local2), Debug)
   4127         Add (Local1, 0x0F, Local2)
   4128         Add (Local1, Multiply (Local2, Local3), Local2)
   4129         Multiply (Add (Add (Local1, TEST), 0x20), ToBCD (Local1), Local3)
   4130 
   4131 ASL+ version:
   4132         Local1 = 0x1234
   4133         Local3 = (((Local1 + TEST) + 0x20) * Local2)
   4134         Local3 = (Local2 * ((Local1 + TEST) + 0x20))
   4135         Local3 = (Local1 + (TEST + (0x20 * Local2)))
   4136         Local6 = Index (PKG1, 0x03)
   4137         Debug = (Local3 + Local2)
   4138         Local2 = (Local1 + 0x0F)
   4139         Local2 = (Local1 + (Local2 * Local3))
   4140         Local3 = (((Local1 + TEST) + 0x20) * ToBCD (Local1))
   4141 
   4142 
   4143 ----------------------------------------
   4144 26 September 2014. Summary of changes for version 20140926:
   4145 
   4146 1) ACPICA kernel-resident subsystem:
   4147 
   4148 Updated the GPIO operation region handler interface (GeneralPurposeIo). 
   4149 In order to support GPIO Connection objects with multiple pins, along 
   4150 with the related Field objects, the following changes to the interface 
   4151 have been made: The Address is now defined to be the offset in bits of 
   4152 the field unit from the previous invocation of a Connection. It can be 
   4153 viewed as a "Pin Number Index" into the connection resource descriptor. 
   4154 The BitWidth is the exact bit width of the field. It is usually one bit, 
   4155 but not always. See the ACPICA reference guide (section 8.8.6.2.1) for 
   4156 additional information and examples.
   4157 
   4158 GPE support: During ACPICA/GPE initialization, ensure that all GPEs with 
   4159 corresponding _Lxx/_Exx methods are disabled (they may have been enabled 
   4160 by the firmware), so that they cannot fire until they are enabled via 
   4161 AcpiUpdateAllGpes. Rafael J. Wysocki.
   4162 
   4163 Added a new return flag for the Event/GPE status interfaces -- 
   4164 AcpiGetEventStatus and AcpiGetGpeStatus. The new 
   4165 ACPI_EVENT_FLAGS_HAS_HANDLER flag is used to indicate that the event or 
   4166 GPE currently has a handler associated with it, and can thus actually 
   4167 affect the system. Lv Zheng.
   4168 
   4169 Example Code and Data Size: These are the sizes for the OS-independent 
   4170 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   4171 debug version of the code includes the debug output trace mechanism and 
   4172 has a much larger code and data size.
   4173 
   4174   Current Release:
   4175     Non-Debug Version:  99.1K Code, 27.3K Data, 126.4K Total
   4176     Debug Version:     192.8K Code, 79.9K Data, 272.7K Total
   4177   Previous Release:
   4178     Non-Debug Version:  98.8K Code, 27.3K Data, 126.1K Total
   4179     Debug Version:     192.1K Code, 79.8K Data, 271.9K Total
   4180 
   4181 2) iASL Compiler/Disassembler and Tools:
   4182 
   4183 iASL: Fixed a memory allocation/free regression introduced in 20140828 
   4184 that could cause the compiler to crash. This was introduced inadvertently 
   4185 during the effort to eliminate compiler memory leaks. ACPICA BZ 1111, 
   4186 1113.
   4187 
   4188 iASL: Removed two error messages that have been found to create false 
   4189 positives, until they can be fixed and fully validated (ACPICA BZ 1112):
   4190 1) Illegal forward reference within a method
   4191 2) Illegal reference across two methods
   4192 
   4193 iASL: Implemented a new option (-lm) to create a hardware mapping file 
   4194 that summarizes all GPIO, I2C, SPI, and UART connections. This option 
   4195 works for both the compiler and disassembler. See the iASL compiler user 
   4196 guide for additional information and examples (section 6.4.6).
   4197 
   4198 AcpiDump: Added support for the version 1 (ACPI 1.0) RSDP in addition to 
   4199 version 2. This corrects the AE_BAD_HEADER exception seen on systems with 
   4200 a version 1 RSDP. Lv Zheng ACPICA BZ 1097.
   4201 
   4202 AcpiExec: For Unix versions, don't attempt to put STDIN into raw mode 
   4203 unless STDIN is actually a terminal. Assists with batch-mode processing. 
   4204 ACPICA BZ 1114.
   4205 
   4206 Disassembler/AcpiHelp: Added another large group of recognized _HID 
   4207 values.
   4208 
   4209 
   4210 ----------------------------------------
   4211 28 August 2014. Summary of changes for version 20140828:
   4212 
   4213 1) ACPICA kernel-resident subsystem:
   4214 
   4215 Fixed a problem related to the internal use of the Timer() operator where 
   4216 a 64-bit divide could cause an attempted link to a double-precision math 
   4217 library. This divide is not actually necessary, so the code was 
   4218 restructured to eliminate it. Lv Zheng.
   4219 
   4220 ACPI 5.1: Added support for the runtime validation of the _DSD package 
   4221 (similar to the iASL support).
   4222 
   4223 ACPI 5.1/Headers: Added support for the GICC affinity subtable to the 
   4224 SRAT table. Hanjun Guo <hanjun.guo (a] linaro.org>.
   4225 
   4226 Example Code and Data Size: These are the sizes for the OS-independent 
   4227 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   4228 debug version of the code includes the debug output trace mechanism and 
   4229 has a much larger code and data size.
   4230 
   4231   Current Release:
   4232     Non-Debug Version:  98.8K Code, 27.3K Data, 126.1K Total
   4233     Debug Version:     192.1K Code, 79.8K Data, 271.9K Total
   4234   Previous Release:
   4235     Non-Debug Version:  98.7K Code, 27.3K Data, 126.0K Total1
   4236     Debug Version:     192.0K Code, 79.7K Data, 271.7K Total
   4237 
   4238 2) iASL Compiler/Disassembler and Tools:
   4239 
   4240 AcpiExec: Fixed a problem on unix systems where the original terminal 
   4241 state was not always properly restored upon exit. Seen when using the -v 
   4242 option. ACPICA BZ 1104.
   4243 
   4244 iASL: Fixed a problem with the validation of the ranges/length within the 
   4245 Memory24 resource descriptor. There was a boundary condition when the 
   4246 range was equal to the (length -1) caused by the fact that these values 
   4247 are defined in 256-byte blocks, not bytes. ACPICA BZ 1098
   4248 
   4249 Disassembler: Fixed a problem with the GpioInt descriptor interrupt 
   4250 polarity 
   4251 flags. The flags are actually 2 bits, not 1, and the "ActiveBoth" keyword 
   4252 is 
   4253 now supported properly.
   4254 
   4255 ACPI 5.1: Added the GICC affinity subtable to the SRAT table. Supported 
   4256 in the disassembler, data table compiler, and table template generator.
   4257 
   4258 iASL: Added a requirement for Device() objects that one of either a _HID 
   4259 or _ADR must exist within the scope of a Device, as per the ACPI 
   4260 specification. Remove a similar requirement that was incorrectly in place 
   4261 for the _DSD object.
   4262 
   4263 iASL: Added error detection for illegal named references within control 
   4264 methods that would cause runtime failures. Now trapped as errors are: 1) 
   4265 References to objects within a non-parent control method. 2) Forward 
   4266 references (within a method) -- for control methods, AML interpreters use 
   4267 a one-pass parse of control methods. ACPICA BZ 1008.
   4268 
   4269 iASL: Added error checking for dependencies related to the _PSx power 
   4270 methods. ACPICA BZ 1029.
   4271 1) For _PS0, one of these must exist within the same scope: _PS1, _PS2, 
   4272 _PS3.
   4273 2) For _PS1, _PS2, and PS3: A _PS0 object must exist within the same 
   4274 scope.
   4275 
   4276 iASL and table compiler: Cleanup miscellaneous memory leaks by fully 
   4277 deploying the existing object and string caches and adding new caches for 
   4278 the table compiler.
   4279 
   4280 iASL: Split the huge parser source file into multiple subfiles to improve 
   4281 manageability. Generation now requires the M4 macro preprocessor, which 
   4282 is part of the Bison distribution on both unix and windows platforms.
   4283 
   4284 AcpiSrc: Fixed and removed all extraneous warnings generated during 
   4285 entire ACPICA source code scan and/or conversion.
   4286 
   4287 
   4288 ----------------------------------------
   4289 
   4290 24 July 2014. Summary of changes for version 20140724: 
   4291 
   4292 The ACPI 5.1 specification has been released and is available at: 
   4293 http://uefi.org/specs/access
   4294 
   4295 
   4296 0) ACPI 5.1 support in ACPICA:
   4297 
   4298 ACPI 5.1 is fully supported in ACPICA as of this release.
   4299 
   4300 New predefined names. Support includes iASL and runtime ACPICA 
   4301 validation.
   4302     _CCA (Cache Coherency Attribute).
   4303     _DSD (Device-Specific Data). David Box.
   4304 
   4305 Modifications to existing ACPI tables. Support includes headers, iASL 
   4306 Data Table compiler, disassembler, and the template generator.
   4307     FADT - New fields and flags. Graeme Gregory.
   4308     GTDT - One new subtable and new fields. Tomasz Nowicki.
   4309     MADT - Two new subtables. Tomasz Nowicki.
   4310     PCCT - One new subtable.
   4311 
   4312 Miscellaneous.
   4313     New notification type for System Resource Affinity change events.
   4314 
   4315 
   4316 1) ACPICA kernel-resident subsystem:
   4317 
   4318 Fixed a regression introduced in 20140627 where a fault can happen during 
   4319 the deletion of Alias AML namespace objects. The problem affected both 
   4320 the core ACPICA and the ACPICA tools including iASL and AcpiExec.
   4321 
   4322 Implemented a new GPE public interface, AcpiMarkGpeForWake. Provides a 
   4323 simple mechanism to enable wake GPEs that have no associated handler or 
   4324 control method. Rafael Wysocki.
   4325 
   4326 Updated the AcpiEnableGpe interface to disallow the enable if there is no 
   4327 handler or control method associated with the particular GPE. This will 
   4328 help avoid meaningless GPEs and even GPE floods. Rafael Wysocki.
   4329 
   4330 Updated GPE handling and dispatch by disabling the GPE before clearing 
   4331 the status bit for edge-triggered GPEs. Lv Zheng.
   4332 
   4333 Added Timer() support to the AML Debug object. The current timer value is 
   4334 now displayed with each invocation of (Store to) the debug object to 
   4335 enable simple generation of execution times for AML code (method 
   4336 execution for example.) ACPICA BZ 1093.
   4337 
   4338 Example Code and Data Size: These are the sizes for the OS-independent 
   4339 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   4340 debug version of the code includes the debug output trace mechanism and 
   4341 has a much larger code and data size.
   4342 
   4343   Current Release:
   4344     Non-Debug Version:  98.7K Code, 27.3K Data, 126.0K Total
   4345     Debug Version:     192.0K Code, 79.7K Data, 271.7K Total
   4346   Previous Release:
   4347     Non-Debug Version:  98.7K Code, 27.2K Data, 125.9K Total
   4348     Debug Version:     191.7K Code, 79.6K Data, 271.3K Total
   4349 
   4350 
   4351 2) iASL Compiler/Disassembler and Tools:
   4352 
   4353 Fixed an issue with the recently added local printf implementation, 
   4354 concerning width/precision specifiers that could cause incorrect output. 
   4355 Lv Zheng. ACPICA BZ 1094.
   4356 
   4357 Disassembler: Added support to detect buffers that contain UUIDs and 
   4358 disassemble them to an invocation of the ToUUID operator. Also emit 
   4359 commented descriptions of known ACPI-related UUIDs.
   4360 
   4361 AcpiHelp: Added support to display known ACPI-related UUIDs. New option, 
   4362 -u. Adds three new files. 
   4363 
   4364 iASL: Update table compiler and disassembler for DMAR table changes that 
   4365 were introduced in September 2013. With assistance by David Woodhouse.
   4366 
   4367 ----------------------------------------
   4368 27 June 2014. Summary of changes for version 20140627:
   4369 
   4370 1) ACPICA kernel-resident subsystem:
   4371 
   4372 Formatted Output: Implemented local versions of standard formatted output 
   4373 utilities such as printf, etc. Over time, it has been discovered that 
   4374 there are in fact many portability issues with printf, and the addition 
   4375 of this feature will fix/prevent these issues once and for all. Some 
   4376 known issues are summarized below:
   4377 
   4378 1) Output of 64-bit values is not portable. For example, UINT64 is %ull 
   4379 for the Linux kernel and is %uI64 for some MSVC versions.
   4380 2) Invoking printf consistently in a manner that is portable across both 
   4381 32-bit and 64-bit platforms is difficult at best in many situations.
   4382 3) The output format for pointers varies from system to system (leading 
   4383 zeros especially), and leads to inconsistent output from ACPICA across 
   4384 platforms.
   4385 4) Certain platform-specific printf formats may conflict with ACPICA use.
   4386 5) If there is no local C library available, ACPICA now has local support 
   4387 for printf.
   4388 
   4389 -- To address these printf issues in a complete manner, ACPICA now 
   4390 directly implements a small subset of printf format specifiers, only 
   4391 those that it requires. Adds a new file, utilities/utprint.c. Lv Zheng.
   4392 
   4393 Implemented support for ACPICA generation within the EFI environment. 
   4394 Initially, the AcpiDump utility is supported in the UEFI shell 
   4395 environment. Lv Zheng.
   4396 
   4397 Added a new external interface, AcpiLogError, to improve ACPICA 
   4398 portability. This allows the host to redirect error messages from the 
   4399 ACPICA utilities. Lv Zheng.
   4400 
   4401 Added and deployed new OSL file I/O interfaces to improve ACPICA 
   4402 portability:
   4403   AcpiOsOpenFile
   4404   AcpiOsCloseFile
   4405   AcpiOsReadFile
   4406   AcpiOsWriteFile
   4407   AcpiOsGetFileOffset
   4408   AcpiOsSetFileOffset
   4409 There are C library implementations of these functions in the new file 
   4410 service_layers/oslibcfs.c -- however, the functions can be implemented by 
   4411 the local host in any way necessary. Lv Zheng.
   4412 
   4413 Implemented a mechanism to disable/enable ACPI table checksum validation 
   4414 at runtime. This can be useful when loading tables very early during OS 
   4415 initialization when it may not be possible to map the entire table in 
   4416 order to compute the checksum. Lv Zheng.
   4417 
   4418 Fixed a buffer allocation issue for the Generic Serial Bus support. 
   4419 Originally, a fixed buffer length was used. This change allows for 
   4420 variable-length buffers based upon the protocol indicated by the field 
   4421 access attributes. Reported by Lan Tianyu. Lv Zheng.
   4422 
   4423 Fixed a problem where an object detached from a namespace node was not 
   4424 properly terminated/cleared and could cause a circular list problem if 
   4425 reattached. ACPICA BZ 1063. David Box.
   4426 
   4427 Fixed a possible recursive lock acquisition in hwregs.c. Rakib Mullick.
   4428 
   4429 Fixed a possible memory leak in an error return path within the function 
   4430 AcpiUtCopyIobjectToIobject. ACPICA BZ 1087. Colin Ian King.
   4431 
   4432 Example Code and Data Size: These are the sizes for the OS-independent 
   4433 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   4434 debug version of the code includes the debug output trace mechanism and 
   4435 has a much larger code and data size.
   4436 
   4437   Current Release:
   4438     Non-Debug Version:  98.7K Code, 27.2K Data, 125.9K Total
   4439     Debug Version:     191.7K Code, 79.6K Data, 271.3K Total
   4440   Previous Release:
   4441     Non-Debug Version:  96.8K Code, 27.2K Data, 124.0K Total
   4442     Debug Version:     189.5K Code, 79.7K Data, 269.2K Total
   4443 
   4444 
   4445 2) iASL Compiler/Disassembler and Tools:
   4446 
   4447 Disassembler: Add dump of ASCII equivalent text within a comment at the 
   4448 end of each line of the output for the Buffer() ASL operator.
   4449 
   4450 AcpiDump: Miscellaneous changes:
   4451   Fixed repetitive table dump in -n mode.
   4452   For older EFI platforms, use the ACPI 1.0 GUID during RSDP search if 
   4453 the ACPI 2.0 GUID fails.
   4454 
   4455 iASL: Fixed a problem where the compiler could fault if incorrectly given 
   4456 an acpidump output file as input. ACPICA BZ 1088. David Box.
   4457 
   4458 AcpiExec/AcpiNames: Fixed a problem where these utilities could fault if 
   4459 they are invoked without any arguments.
   4460 
   4461 Debugger: Fixed a possible memory leak in an error return path. ACPICA BZ 
   4462 1086. Colin Ian King.
   4463 
   4464 Disassembler: Cleaned up a block of code that extracts a parent Op 
   4465 object. Added a comment that explains that the parent is guaranteed to be 
   4466 valid in this case. ACPICA BZ 1069.
   4467 
   4468 
   4469 ----------------------------------------
   4470 24 April 2014. Summary of changes for version 20140424:
   4471 
   4472 1) ACPICA kernel-resident subsystem:
   4473 
   4474 Implemented support to skip/ignore NULL address entries in the RSDT/XSDT. 
   4475 Some of these tables are known to contain a trailing NULL entry. Lv 
   4476 Zheng.
   4477 
   4478 Removed an extraneous error message for the case where there are a large 
   4479 number of system GPEs (> 124). This was the "32-bit FADT register is too 
   4480 long to convert to GAS struct" message, which is irrelevant for GPEs 
   4481 since the GPEx_BLK_LEN fields of the FADT are always used instead of the 
   4482 (limited capacity) GAS bit length. Also, several changes to ensure proper 
   4483 support for GPE numbers > 255, where some "GPE number" fields were 8-bits 
   4484 internally.
   4485 
   4486 Implemented and deployed additional configuration support for the public 
   4487 ACPICA external interfaces. Entire classes of interfaces can now be 
   4488 easily modified or configured out, replaced by stubbed inline functions 
   4489 by default. Lv Zheng.
   4490 
   4491 Moved all public ACPICA runtime configuration globals to the public 
   4492 ACPICA external interface file for convenience. Also, removed some 
   4493 obsolete/unused globals. See the file acpixf.h. Lv Zheng.
   4494 
   4495 Documentation: Added a new section to the ACPICA reference describing the 
   4496 maximum number of GPEs that can be supported by the FADT-defined GPEs in 
   4497 block zero and one. About 1200 total. See section 4.4.1 of the ACPICA 
   4498 reference.
   4499 
   4500 Example Code and Data Size: These are the sizes for the OS-independent 
   4501 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   4502 debug version of the code includes the debug output trace mechanism and 
   4503 has a much larger code and data size.
   4504 
   4505   Current Release:
   4506     Non-Debug Version:  96.8K Code, 27.2K Data, 124.0K Total
   4507     Debug Version:     189.5K Code, 79.7K Data, 269.2K Total
   4508   Previous Release:
   4509     Non-Debug Version:  97.0K Code, 27.2K Data, 124.2K Total
   4510     Debug Version:     189.7K Code, 79.5K Data, 269.2K Total
   4511 
   4512 
   4513 2) iASL Compiler/Disassembler and Tools:
   4514 
   4515 iASL and disassembler: Add full support for the LPIT table (Low Power 
   4516 Idle Table). Includes support in the disassembler, data table compiler, 
   4517 and template generator.
   4518 
   4519 AcpiDump utility:
   4520 1) Add option to force the use of the RSDT (over the XSDT).
   4521 2) Improve validation of the RSDP signature (use 8 chars instead of 4).
   4522 
   4523 iASL: Add check for predefined packages that are too large.  For 
   4524 predefined names that contain subpackages, check if each subpackage is 
   4525 too large. (Check for too small already exists.)
   4526 
   4527 Debugger: Updated the GPE command (which simulates a GPE by executing the 
   4528 GPE code paths in ACPICA). The GPE device is now optional, and defaults 
   4529 to the GPE 0/1 FADT-defined blocks.
   4530 
   4531 Unix application OSL: Update line-editing support. Add additional error 
   4532 checking and take care not to reset terminal attributes on exit if they 
   4533 were never set. This should help guarantee that the terminal is always 
   4534 left in the previous state on program exit.
   4535 
   4536 
   4537 ----------------------------------------
   4538 25 March 2014. Summary of changes for version 20140325:
   4539 
   4540 1) ACPICA kernel-resident subsystem:
   4541 
   4542 Updated the auto-serialize feature for control methods. This feature 
   4543 automatically serializes all methods that create named objects in order 
   4544 to prevent runtime errors. The update adds support to ignore the 
   4545 currently executing AML SyncLevel when invoking such a method, in order 
   4546 to prevent disruption of any existing SyncLevel priorities that may exist 
   4547 in the AML code. Although the use of SyncLevels is relatively rare, this 
   4548 change fixes a regression where an AE_AML_MUTEX_ORDER exception can 
   4549 appear on some machines starting with the 20140214 release.
   4550 
   4551 Added a new external interface to allow the host to install ACPI tables 
   4552 very early, before the namespace is even created. AcpiInstallTable gives 
   4553 the host additional flexibility for ACPI table management. Tables can be 
   4554 installed directly by the host as if they had originally appeared in the 
   4555 XSDT/RSDT. Installed tables can be SSDTs or other ACPI data tables 
   4556 (anything except the DSDT and FACS). Adds a new file, tbdata.c, along 
   4557 with additional internal restructuring and cleanup. See the ACPICA 
   4558 Reference for interface details. Lv Zheng.
   4559 
   4560 Added validation of the checksum for all incoming dynamically loaded 
   4561 tables (via external interfaces or via AML Load/LoadTable operators). Lv 
   4562 Zheng.
   4563 
   4564 Updated the use of the AcpiOsWaitEventsComplete interface during Notify 
   4565 and GPE handler removal. Restructured calls to eliminate possible race 
   4566 conditions. Lv Zheng.
   4567 
   4568 Added a warning for the use/execution of the ASL/AML Unload (table) 
   4569 operator. This will help detect and identify machines that use this 
   4570 operator if and when it is ever used. This operator has never been seen 
   4571 in the field and the usage model and possible side-effects of the drastic 
   4572 runtime action of a full table removal are unknown.
   4573 
   4574 Reverted the use of #pragma push/pop which was introduced in the 20140214 
   4575 release. It appears that push and pop are not implemented by enough 
   4576 compilers to make the use of this feature feasible for ACPICA at this 
   4577 time. However, these operators may be deployed in a future ACPICA 
   4578 release.
   4579 
   4580 Added the missing EXPORT_SYMBOL macros for the install and remove SCI 
   4581 handler interfaces.
   4582 
   4583 Source code generation:
   4584 1) Disabled the use of the "strchr" macro for the gcc-specific 
   4585 generation. For some versions of gcc, this macro can periodically expose 
   4586 a compiler bug which in turn causes compile-time error(s).
   4587 2) Added support for PPC64 compilation. Colin Ian King.
   4588 
   4589 Example Code and Data Size: These are the sizes for the OS-independent 
   4590 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   4591 debug version of the code includes the debug output trace mechanism and 
   4592 has a much larger code and data size.
   4593 
   4594   Current Release:
   4595     Non-Debug Version:  97.0K Code, 27.2K Data, 124.2K Total
   4596     Debug Version:     189.7K Code, 79.5K Data, 269.2K Total
   4597   Previous Release:
   4598     Non-Debug Version:  96.5K Code, 27.2K Data, 123.7K Total
   4599     Debug Version:     188.6K Code, 79.0K Data, 267.6K Total
   4600 
   4601 
   4602 2) iASL Compiler/Disassembler and Tools:
   4603 
   4604 Disassembler: Added several new features to improve the readability of 
   4605 the resulting ASL code. Extra information is emitted within comment 
   4606 fields in the ASL code:
   4607 1) Known _HID/_CID values are decoded to descriptive text.
   4608 2) Standard values for the Notify() operator are decoded to descriptive 
   4609 text.
   4610 3) Target operands are expanded to full pathnames (in a comment) when 
   4611 possible.
   4612 
   4613 Disassembler: Miscellaneous updates for extern() handling:
   4614 1) Abort compiler if file specified by -fe option does not exist.
   4615 2) Silence unnecessary warnings about argument count mismatches.
   4616 3) Update warning messages concerning unresolved method externals.
   4617 4) Emit "UnknownObj" keyword for externals whose type cannot be 
   4618 determined.
   4619 
   4620 AcpiHelp utility:
   4621 1) Added the -a option to display both the ASL syntax and the AML 
   4622 encoding for an input ASL operator. This effectively displays all known 
   4623 information about an ASL operator with one AcpiHelp invocation.
   4624 2) Added substring match support (similar to a wildcard) for the -i 
   4625 (_HID/PNP IDs) option.
   4626 
   4627 iASL/Disassembler: Since this tool does not yet support execution on big-
   4628 endian machines, added detection of endianness and an error message if 
   4629 execution is attempted on big-endian. Support for big-endian within iASL 
   4630 is a feature that is on the ACPICA to-be-done list.
   4631 
   4632 AcpiBin utility:
   4633 1) Remove option to extract binary files from an acpidump; this function 
   4634 is made obsolete by the AcpiXtract utility.
   4635 2) General cleanup of open files and allocated buffers.
   4636 
   4637 
   4638 ----------------------------------------
   4639 14 February 2014. Summary of changes for version 20140214:
   4640 
   4641 1) ACPICA kernel-resident subsystem:
   4642 
   4643 Implemented a new mechanism to proactively prevent problems with ill-
   4644 behaved reentrant control methods that create named ACPI objects. This 
   4645 behavior is illegal as per the ACPI specification, but is nonetheless 
   4646 frequently seen in the field. Previously, this could lead to an 
   4647 AE_ALREADY_EXISTS exception if the method was actually entered by more 
   4648 than one thread. This new mechanism detects such methods at table load 
   4649 time and marks them "serialized" to prevent reentrancy. A new global 
   4650 option, AcpiGbl_AutoSerializeMethods, has been added to disable this 
   4651 feature if desired. This mechanism and global option obsoletes and 
   4652 supersedes the previous AcpiGbl_SerializeAllMethods option.
   4653 
   4654 Added the "Windows 2013" string to the _OSI support. ACPICA will now 
   4655 respond TRUE to _OSI queries with this string. It is the stated policy of 
   4656 ACPICA to add new strings to the _OSI support as soon as possible after 
   4657 they are defined. See the full ACPICA _OSI policy which has been added to 
   4658 the utilities/utosi.c file.
   4659 
   4660 Hardened/updated the _PRT return value auto-repair code:
   4661 1) Do not abort the repair on a single subpackage failure, continue to 
   4662 check all subpackages.
   4663 2) Add check for the minimum subpackage length (4).
   4664 3) Properly handle extraneous NULL package elements.
   4665 
   4666 Added support to avoid the possibility of infinite loops when traversing 
   4667 object linked lists. Never allow an infinite loop, even in the face of 
   4668 corrupted object lists.
   4669 
   4670 ACPICA headers: Deployed the use of #pragma pack(push) and #pragma 
   4671 pack(pop) directives to ensure that the ACPICA headers are independent of 
   4672 compiler settings or other host headers.
   4673 
   4674 Example Code and Data Size: These are the sizes for the OS-independent 
   4675 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   4676 debug version of the code includes the debug output trace mechanism and 
   4677 has a much larger code and data size.
   4678 
   4679   Current Release:
   4680     Non-Debug Version:  96.5K Code, 27.2K Data, 123.7K Total
   4681     Debug Version:     188.6K Code, 79.0K Data, 267.6K Total
   4682   Previous Release:
   4683     Non-Debug Version:  96.2K Code, 27.0K Data, 123.2K Total
   4684     Debug Version:     187.5K Code, 78.3K Data, 265.8K Total
   4685 
   4686 
   4687 2) iASL Compiler/Disassembler and Tools:
   4688 
   4689 iASL/Table-compiler: Fixed a problem with support for the SPMI table. The 
   4690 first reserved field was incorrectly forced to have a value of zero. This 
   4691 change correctly forces the field to have a value of one. ACPICA BZ 1081.
   4692 
   4693 Debugger: Added missing support for the "Extra" and "Data" subobjects 
   4694 when displaying object data.
   4695 
   4696 Debugger: Added support to display entire object linked lists when 
   4697 displaying object data.
   4698 
   4699 iASL: Removed the obsolete -g option to obtain ACPI tables from the 
   4700 Windows registry. This feature has been superseded by the acpidump 
   4701 utility. 
   4702 
   4703 
   4704 ----------------------------------------
   4705 14 January 2014. Summary of changes for version 20140114:
   4706 
   4707 1) ACPICA kernel-resident subsystem:
   4708 
   4709 Updated all ACPICA copyrights and signons to 2014. Added the 2014 
   4710 copyright to all module headers and signons, including the standard Linux 
   4711 header. This affects virtually every file in the ACPICA core subsystem, 
   4712 iASL compiler, all ACPICA utilities, and the test suites.
   4713 
   4714 Improved parameter validation for AcpiInstallGpeBlock. Added the 
   4715 following checks:
   4716 1) The incoming device handle refers to type ACPI_TYPE_DEVICE.
   4717 2) There is not already a GPE block attached to the device.
   4718 Likewise, with AcpiRemoveGpeBlock, ensure that the incoming object is a 
   4719 device.
   4720 
   4721 Correctly support "references" in the ACPI_OBJECT. This change fixes the 
   4722 support to allow references (namespace nodes) to be passed as arguments 
   4723 to control methods via the evaluate object interface. This is probably 
   4724 most useful for testing purposes, however.
   4725 
   4726 Improved support for 32/64 bit physical addresses in printf()-like 
   4727 output. This change improves the support for physical addresses in printf 
   4728 debug statements and other output on both 32-bit and 64-bit hosts. It 
   4729 consistently outputs the appropriate number of bytes for each host. The 
   4730 %p specifier is unsatisfactory since it does not emit uniform output on 
   4731 all hosts/clib implementations (on some, leading zeros are not supported, 
   4732 leading to difficult-to-read output).
   4733 
   4734 Example Code and Data Size: These are the sizes for the OS-independent 
   4735 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   4736 debug version of the code includes the debug output trace mechanism and 
   4737 has a much larger code and data size.
   4738 
   4739   Current Release:
   4740     Non-Debug Version:  96.2K Code, 27.0K Data, 123.2K Total
   4741     Debug Version:     187.5K Code, 78.3K Data, 265.8K Total
   4742   Previous Release:
   4743     Non-Debug Version:  96.1K Code, 27.0K Data, 123.1K Total
   4744     Debug Version:     185.6K Code, 77.3K Data, 262.9K Total
   4745 
   4746 
   4747 2) iASL Compiler/Disassembler and Tools:
   4748 
   4749 iASL: Fix a possible fault when using the Connection() operator. Fixes a 
   4750 problem if the parent Field definition for the Connection operator refers 
   4751 to an operation region that does not exist. ACPICA BZ 1064.
   4752 
   4753 AcpiExec: Load of local test tables is now optional. The utility has the 
   4754 capability to load some various tables to test features of ACPICA. 
   4755 However, there are enough of them that the output of the utility became 
   4756 confusing. With this change, only the required local tables are displayed 
   4757 (RSDP, XSDT, etc.) along with the actual tables loaded via the command 
   4758 line specification. This makes the default output simler and easier to 
   4759 understand. The -el command line option restores the original behavior 
   4760 for testing purposes.
   4761 
   4762 AcpiExec: Added support for overlapping operation regions. This change 
   4763 expands the simulation of operation regions by supporting regions that 
   4764 overlap within the given address space. Supports SystemMemory and 
   4765 SystemIO. ASLTS test suite updated also. David Box. ACPICA BZ 1031.
   4766 
   4767 AcpiExec: Added region handler support for PCI_Config and EC spaces. This 
   4768 allows AcpiExec to simulate these address spaces, similar to the current 
   4769 support for SystemMemory and SystemIO.
   4770 
   4771 Debugger: Added new command to read/write/compare all namespace objects. 
   4772 The command "test objects" will exercise the entire namespace by writing 
   4773 new values to each data object, and ensuring that the write was 
   4774 successful. The original value is then restored and verified.
   4775 
   4776 Debugger: Added the "test predefined" command. This change makes this 
   4777 test public and puts it under the new "test" command. The test executes 
   4778 each and every predefined name within the current namespace.
   4779 
   4780 
   4781 ----------------------------------------
   4782 18 December 2013. Summary of changes for version 20131218:
   4783 
   4784 Global note: The ACPI 5.0A specification was released this month. There 
   4785 are no changes needed for ACPICA since this release of ACPI is an 
   4786 errata/clarification release. The specification is available at 
   4787 acpi.info. 
   4788 
   4789 
   4790 1) ACPICA kernel-resident subsystem:
   4791 
   4792 Added validation of the XSDT root table if it is present. Some older 
   4793 platforms contain an XSDT that is ill-formed or otherwise invalid (such 
   4794 as containing some or all entries that are NULL pointers). This change 
   4795 adds a new function to validate the XSDT before actually using it. If the 
   4796 XSDT is found to be invalid, ACPICA will now automatically fall back to 
   4797 using the RSDT instead. Original implementation by Zhao Yakui. Ported to 
   4798 ACPICA and enhanced by Lv Zheng and Bob Moore.
   4799 
   4800 Added a runtime option to ignore the XSDT and force the use of the RSDT. 
   4801 This change adds a runtime option that will force ACPICA to use the RSDT 
   4802 instead of the XSDT (AcpiGbl_DoNotUseXsdt). Although the ACPI spec 
   4803 requires that an XSDT be used instead of the RSDT, the XSDT has been 
   4804 found to be corrupt or ill-formed on some machines. Lv Zheng.
   4805 
   4806 Added a runtime option to favor 32-bit FADT register addresses over the 
   4807 64-bit addresses. This change adds an option to favor 32-bit FADT 
   4808 addresses when there is a conflict between the 32-bit and 64-bit versions 
   4809 of the same register. The default behavior is to use the 64-bit version 
   4810 in accordance with the ACPI specification. This can now be overridden via 
   4811 the AcpiGbl_Use32BitFadtAddresses flag. ACPICA BZ 885. Lv Zheng.
   4812 
   4813 During the change above, the internal "Convert FADT" and "Verify FADT" 
   4814 functions have been merged to simplify the code, making it easier to 
   4815 understand and maintain. ACPICA BZ 933.
   4816 
   4817 Improve exception reporting and handling for GPE block installation. 
   4818 Return an actual status from AcpiEvGetGpeXruptBlock and don't clobber the 
   4819 status when exiting AcpiEvInstallGpeBlock. ACPICA BZ 1019.
   4820 
   4821 Added helper macros to extract bus/segment numbers from the HEST table. 
   4822 This change adds two macros to extract the encoded bus and segment 
   4823 numbers from the HEST Bus field - ACPI_HEST_BUS and ACPI_HEST_SEGMENT. 
   4824 Betty Dall <betty.dall (a] hp.com>
   4825 
   4826 Removed the unused ACPI_FREE_BUFFER macro. This macro is no longer used 
   4827 by ACPICA. It is not a public macro, so it should have no effect on 
   4828 existing OSV code. Lv Zheng.
   4829 
   4830 Example Code and Data Size: These are the sizes for the OS-independent 
   4831 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   4832 debug version of the code includes the debug output trace mechanism and 
   4833 has a much larger code and data size.
   4834 
   4835   Current Release:
   4836     Non-Debug Version:  96.1K Code, 27.0K Data, 123.1K Total
   4837     Debug Version:     185.6K Code, 77.3K Data, 262.9K Total
   4838   Previous Release:
   4839     Non-Debug Version:  95.9K Code, 27.0K Data, 122.9K Total
   4840     Debug Version:     185.1K Code, 77.2K Data, 262.3K Total
   4841 
   4842 
   4843 2) iASL Compiler/Disassembler and Tools:
   4844 
   4845 Disassembler: Improved pathname support for emitted External() 
   4846 statements. This change adds full pathname support for external names 
   4847 that have been resolved internally by the inclusion of additional ACPI 
   4848 tables (via the iASL -e option). Without this change, the disassembler 
   4849 can emit multiple externals for the same object, or it become confused 
   4850 when the Scope() operator is used on an external object. Overall, greatly 
   4851 improves the ability to actually recompile the emitted ASL code when 
   4852 objects a referenced across multiple ACPI tables. Reported by Michael 
   4853 Tsirkin (mst (a] redhat.com).
   4854 
   4855 Tests/ASLTS: Updated functional control suite to execute with no errors. 
   4856 David Box. Fixed several errors related to the testing of the interpreter 
   4857 slack mode. Lv Zheng.
   4858 
   4859 iASL: Added support to detect names that are declared within a control 
   4860 method, but are unused (these are temporary names that are only valid 
   4861 during the time the method is executing). A remark is issued for these 
   4862 cases. ACPICA BZ 1022.
   4863 
   4864 iASL: Added full support for the DBG2 table. Adds full disassembler, 
   4865 table compiler, and template generator support for the DBG2 table (Debug 
   4866 Port 2 table).
   4867 
   4868 iASL: Added full support for the PCCT table, update the table definition. 
   4869 Updates the PCCT table definition in the actbl3.h header and adds table 
   4870 compiler and template generator support.
   4871 
   4872 iASL: Added an option to emit only error messages (no warnings/remarks). 
   4873 The -ve option will enable only error messages, warnings and remarks are 
   4874 suppressed. This can simplify debugging when only the errors are 
   4875 important, such as when an ACPI table is disassembled and there are many 
   4876 warnings and remarks -- but only the actual errors are of real interest.
   4877 
   4878 Example ACPICA code (source/tools/examples): Updated the example code so 
   4879 that it builds to an actual working program, not just example code. Added 
   4880 ACPI tables and execution of an example control method in the DSDT. Added 
   4881 makefile support for Unix generation.
   4882 
   4883 
   4884 ----------------------------------------
   4885 15 November 2013. Summary of changes for version 20131115:
   4886 
   4887 This release is available at https://acpica.org/downloads
   4888 
   4889 
   4890 1) ACPICA kernel-resident subsystem:
   4891 
   4892 Resource Manager: Fixed loop termination for the "get AML length" 
   4893 function. The loop previously had an error termination on a NULL resource 
   4894 pointer, which can never happen since the loop simply increments a valid 
   4895 resource pointer. This fix changes the loop to terminate with an error on 
   4896 an invalid end-of-buffer condition. The problem can be seen as an 
   4897 infinite loop by callers to AcpiSetCurrentResources with an invalid or 
   4898 corrupted resource descriptor, or a resource descriptor that is missing 
   4899 an END_TAG descriptor. Reported by Dan Carpenter 
   4900 <dan.carpenter (a] oracle.com>. Lv Zheng, Bob Moore.
   4901 
   4902 Table unload and ACPICA termination: Delete all attached data objects 
   4903 during namespace node deletion. This fix updates namespace node deletion 
   4904 to delete the entire list of attached objects (attached via 
   4905 AcpiAttachObject) instead of just one of the attached items. ACPICA BZ 
   4906 1024. Tomasz Nowicki (tomasz.nowicki (a] linaro.org).
   4907 
   4908 ACPICA termination: Added support to delete all objects attached to the 
   4909 root namespace node. This fix deletes any and all objects that have been 
   4910 attached to the root node via AcpiAttachData. Previously, none of these 
   4911 objects were deleted. Reported by Tomasz Nowicki. ACPICA BZ 1026.
   4912 
   4913 Debug output: Do not emit the function nesting level for the in-kernel 
   4914 build. The nesting level is really only useful during a single-thread 
   4915 execution. Therefore, only enable this output for the AcpiExec utility. 
   4916 Also, only emit the thread ID when executing under AcpiExec (Context 
   4917 switches are still always detected and a message is emitted). ACPICA BZ 
   4918 972.
   4919 
   4920 Example Code and Data Size: These are the sizes for the OS-independent 
   4921 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   4922 debug version of the code includes the debug output trace mechanism and 
   4923 has a much larger code and data size.
   4924 
   4925   Current Release:
   4926     Non-Debug Version:  95.9K Code, 27.0K Data, 122.9K Total
   4927     Debug Version:     185.1K Code, 77.2K Data, 262.3K Total
   4928   Previous Release:
   4929     Non-Debug Version:  95.8K Code, 27.0K Data, 122.8K Total
   4930     Debug Version:     185.2K Code, 77.2K Data, 262.4K Total
   4931 
   4932 
   4933 2) iASL Compiler/Disassembler and Tools:
   4934 
   4935 AcpiExec/Unix-OSL: Use <termios.h> instead of <termio.h>. This is the 
   4936 correct portable POSIX header for terminal control functions.
   4937 
   4938 Disassembler: Fixed control method invocation issues related to the use 
   4939 of the CondRefOf() operator. The problem is seen in the disassembly where 
   4940 control method invocations may not be disassembled properly if the 
   4941 control method name has been used previously as an argument to CondRefOf. 
   4942 The solution is to not attempt to emit an external declaration for the 
   4943 CondRefOf target (it is not necessary in the first place). This prevents 
   4944 disassembler object type confusion. ACPICA BZ 988.
   4945 
   4946 Unix Makefiles: Added an option to disable compiler optimizations and the 
   4947 _FORTIFY_SOURCE flag. Some older compilers have problems compiling ACPICA 
   4948 with optimizations (reportedly, gcc 4.4 for example). This change adds a 
   4949 command line option for make (NOOPT) that disables all compiler 
   4950 optimizations and the _FORTIFY_SOURCE compiler flag. The default 
   4951 optimization is -O2 with the _FORTIFY_SOURCE flag specified. ACPICA BZ 
   4952 1034. Lv Zheng, Bob Moore.
   4953 
   4954 Tests/ASLTS: Added options to specify individual test cases and modes. 
   4955 This allows testers running aslts.sh to optionally specify individual 
   4956 test modes and test cases. Also added an option to disable the forced 
   4957 generation of the ACPICA tools from source if desired. Lv Zheng.
   4958 
   4959 ----------------------------------------
   4960 27 September 2013. Summary of changes for version 20130927:
   4961 
   4962 This release is available at https://acpica.org/downloads
   4963 
   4964 
   4965 1) ACPICA kernel-resident subsystem:
   4966 
   4967 Fixed a problem with store operations to reference objects. This change 
   4968 fixes a problem where a Store operation to an ArgX object that contained 
   4969 a 
   4970 reference to a field object did not complete the automatic dereference 
   4971 and 
   4972 then write to the actual field object. Instead, the object type of the 
   4973 field object was inadvertently changed to match the type of the source 
   4974 operand. The new behavior will actually write to the field object (buffer 
   4975 field or field unit), thus matching the correct ACPI-defined behavior.
   4976 
   4977 Implemented support to allow the host to redefine individual OSL 
   4978 prototypes. This change enables the host to redefine OSL prototypes found 
   4979 in the acpiosxf.h file. This allows the host to implement OSL interfaces 
   4980 with a macro or inlined function. Further, it allows the host to add any 
   4981 additional required modifiers such as __iomem, __init, __exit, etc., as 
   4982 necessary on a per-interface basis. Enables maximum flexibility for the 
   4983 OSL interfaces. Lv Zheng.
   4984 
   4985 Hardcoded the access width for the FADT-defined reset register. The ACPI 
   4986 specification requires the reset register width to be 8 bits. ACPICA now 
   4987 hardcodes the width to 8 and ignores the FADT width value. This provides 
   4988 compatibility with other ACPI implementations that have allowed BIOS code 
   4989 with bad register width values to go unnoticed. Matthew Garett, Bob 
   4990 Moore, 
   4991 Lv Zheng.
   4992 
   4993 Changed the position/use of the ACPI_PRINTF_LIKE macro. This macro is 
   4994 used 
   4995 in the OSL header (acpiosxf). The change modifies the position of this 
   4996 macro in each instance where it is used (AcpiDebugPrint, etc.) to avoid 
   4997 build issues if the OSL defines the implementation of the interface to be 
   4998 an inline stub function. Lv Zheng.
   4999 
   5000 Deployed a new macro ACPI_EXPORT_SYMBOL_INIT for the main ACPICA 
   5001 initialization interfaces. This change adds a new macro for the main init 
   5002 and terminate external interfaces in order to support hosts that require 
   5003 additional or different processing for these functions. Changed from 
   5004 ACPI_EXPORT_SYMBOL to ACPI_EXPORT_SYMBOL_INIT for these functions. Lv 
   5005 Zheng, Bob Moore.
   5006 
   5007 Cleaned up the memory allocation macros for configurability. In the 
   5008 common 
   5009 case, the ACPI_ALLOCATE and related macros now resolve directly to their 
   5010 respective AcpiOs* OSL interfaces. Two options:
   5011 1) The ACPI_ALLOCATE_ZEROED macro uses a simple local implementation by 
   5012 default, unless overridden by the USE_NATIVE_ALLOCATE_ZEROED define.
   5013 2) For AcpiExec (and for debugging), the macros can optionally be 
   5014 resolved 
   5015 to the local ACPICA interfaces that track each allocation (local tracking 
   5016 is used to immediately detect memory leaks).
   5017 Lv Zheng.
   5018 
   5019 Simplified the configuration for ACPI_REDUCED_HARDWARE. Allows the kernel 
   5020 to predefine this macro to either TRUE or FALSE during the system build.
   5021 
   5022 Replaced __FUNCTION_ with __func__ in the gcc-specific header.
   5023 
   5024 Example Code and Data Size: These are the sizes for the OS-independent 
   5025 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   5026 debug version of the code includes the debug output trace mechanism and 
   5027 has a much larger code and data size.
   5028 
   5029   Current Release:
   5030     Non-Debug Version:  95.8K Code, 27.0K Data, 122.8K Total
   5031     Debug Version:     185.2K Code, 77.2K Data, 262.4K Total
   5032   Previous Release:
   5033     Non-Debug Version:  96.7K Code, 27.1K Data, 123.9K Total
   5034     Debug Version:     184.4K Code, 76.8K Data, 261.2K Total
   5035 
   5036 
   5037 2) iASL Compiler/Disassembler and Tools:
   5038 
   5039 iASL: Implemented wildcard support for the -e option. This simplifies use 
   5040 when there are many SSDTs that must be included to resolve external 
   5041 method 
   5042 declarations. ACPICA BZ 1041. Example:
   5043     iasl -e ssdt*.dat -d dsdt.dat
   5044 
   5045 AcpiExec: Add history/line-editing for Unix/Linux systems. This change 
   5046 adds a portable module that implements full history and limited line 
   5047 editing for Unix and Linux systems. It does not use readline() due to 
   5048 portability issues. Instead it uses the POSIX termio interface to put the 
   5049 terminal in raw input mode so that the various special keys can be 
   5050 trapped 
   5051 (such as up/down-arrow for history support and left/right-arrow for line 
   5052 editing). Uses the existing debugger history mechanism. ACPICA BZ 1036.
   5053 
   5054 AcpiXtract: Add support to handle (ignore) "empty" lines containing only 
   5055 one or more spaces. This provides compatible with early or different 
   5056 versions of the AcpiDump utility. ACPICA BZ 1044.
   5057 
   5058 AcpiDump: Do not ignore tables that contain only an ACPI table header. 
   5059 Apparently, some BIOSs create SSDTs that contain an ACPI table header but 
   5060 no other data. This change adds support to dump these tables. Any tables 
   5061 shorter than the length of an ACPI table header remain in error (an error 
   5062 message is emitted). Reported by Yi Li.
   5063 
   5064 Debugger: Echo actual command along with the "unknown command" message.
   5065 
   5066 ----------------------------------------
   5067 23 August 2013. Summary of changes for version 20130823:
   5068 
   5069 1) ACPICA kernel-resident subsystem:
   5070 
   5071 Implemented support for host-installed System Control Interrupt (SCI) 
   5072 handlers. Certain ACPI functionality requires the host to handle raw 
   5073 SCIs. For example, the "SCI Doorbell" that is defined for memory power 
   5074 state support requires the host device driver to handle SCIs to examine 
   5075 if the doorbell has been activated. Multiple SCI handlers can be 
   5076 installed to allow for future expansion. New external interfaces are 
   5077 AcpiInstallSciHandler, AcpiRemoveSciHandler; see the ACPICA reference for 
   5078 details. Lv Zheng, Bob Moore. ACPICA BZ 1032.
   5079 
   5080 Operation region support: Never locally free the handler "context" 
   5081 pointer. This change removes some dangerous code that attempts to free 
   5082 the handler context pointer in some (rare) circumstances. The owner of 
   5083 the handler owns this pointer and the ACPICA code should never touch it. 
   5084 Although not seen to be an issue in any kernel, it did show up as a 
   5085 problem (fault) under AcpiExec. Also, set the internal storage field for 
   5086 the context pointer to zero when the region is deactivated, simply for 
   5087 sanity. David Box. ACPICA BZ 1039.
   5088 
   5089 AcpiRead: On error, do not modify the return value target location. If an 
   5090 error happens in the middle of a split 32/32 64-bit I/O operation, do not 
   5091 modify the target of the return value pointer. Makes the code consistent 
   5092 with the rest of ACPICA. Bjorn Helgaas.
   5093 
   5094 Example Code and Data Size: These are the sizes for the OS-independent 
   5095 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   5096 debug version of the code includes the debug output trace mechanism and 
   5097 has a much larger code and data size.
   5098 
   5099   Current Release:
   5100     Non-Debug Version:  96.7K Code, 27.1K Data, 123.9K Total
   5101     Debug Version:     184.4K Code, 76.8K Data, 261.2K Total
   5102   Previous Release:
   5103     Non-Debug Version:  96.2K Code, 27.1K Data, 123.3K Total
   5104     Debug Version:     185.4K Code, 77.1K Data, 262.5K Total
   5105 
   5106 
   5107 2) iASL Compiler/Disassembler and Tools:
   5108 
   5109 AcpiDump: Implemented several new features and fixed some problems:
   5110 1) Added support to dump the RSDP, RSDT, and XSDT tables.
   5111 2) Added support for multiple table instances (SSDT, UEFI).
   5112 3) Added option to dump "customized" (overridden) tables (-c).
   5113 4) Fixed a problem where some table filenames were improperly 
   5114 constructed.
   5115 5) Improved some error messages, removed some unnecessary messages.
   5116 
   5117 iASL: Implemented additional support for disassembly of ACPI tables that 
   5118 contain invocations of external control methods. The -fe<file> option 
   5119 allows the import of a file that specifies the external methods along 
   5120 with the required number of arguments for each -- allowing for the 
   5121 correct disassembly of the table. This is a workaround for a limitation 
   5122 of AML code where the disassembler often cannot determine the number of 
   5123 arguments required for an external control method and generates incorrect 
   5124 ASL code. See the iASL reference for details. ACPICA BZ 1030.
   5125 
   5126 Debugger: Implemented a new command (paths) that displays the full 
   5127 pathnames (namepaths) and object types of all objects in the namespace. 
   5128 This is an alternative to the namespace command.
   5129 
   5130 Debugger: Implemented a new command (sci) that invokes the SCI dispatch 
   5131 mechanism and any installed handlers.
   5132 
   5133 iASL: Fixed a possible segfault for "too many parent prefixes" condition. 
   5134 This can occur if there are too many parent prefixes in a namepath (for 
   5135 example, ^^^^^^PCI0.ECRD). ACPICA BZ 1035.
   5136 
   5137 Application OSLs: Set the return value for the PCI read functions. These 
   5138 functions simply return AE_OK, but should set the return value to zero 
   5139 also. This change implements this. ACPICA BZ 1038.
   5140 
   5141 Debugger: Prevent possible command line buffer overflow. Increase the 
   5142 size of a couple of the debugger line buffers, and ensure that overflow 
   5143 cannot happen. ACPICA BZ 1037.
   5144 
   5145 iASL: Changed to abort immediately on serious errors during the parsing 
   5146 phase. Due to the nature of ASL, there is no point in attempting to 
   5147 compile these types of errors, and they typically end up causing a 
   5148 cascade of hundreds of errors which obscure the original problem.
   5149 
   5150 ----------------------------------------
   5151 25 July 2013. Summary of changes for version 20130725:
   5152 
   5153 1) ACPICA kernel-resident subsystem:
   5154 
   5155 Fixed a problem with the DerefOf operator where references to FieldUnits 
   5156 and BufferFields incorrectly returned the parent object, not the actual 
   5157 value of the object. After this change, a dereference of a FieldUnit 
   5158 reference results in a read operation on the field to get the value, and 
   5159 likewise, the appropriate BufferField value is extracted from the target 
   5160 buffer.
   5161 
   5162 Fixed a problem where the _WAK method could cause a fault under these 
   5163 circumstances: 1) Interpreter slack mode was not enabled, and 2) the _WAK 
   5164 method returned no value. The problem is rarely seen because most kernels 
   5165 run ACPICA in slack mode.
   5166 
   5167 For the DerefOf operator, a fatal error now results if an attempt is made 
   5168 to dereference a reference (created by the Index operator) to a NULL 
   5169 package element. Provides compatibility with other ACPI implementations, 
   5170 and this behavior will be added to a future version of the ACPI 
   5171 specification.
   5172 
   5173 The ACPI Power Management Timer (defined in the FADT) is now optional. 
   5174 This provides compatibility with other ACPI implementations and will 
   5175 appear in the next version of the ACPI specification. If there is no PM 
   5176 Timer on the platform, AcpiGetTimer returns AE_SUPPORT. An address of 
   5177 zero in the FADT indicates no PM timer.
   5178 
   5179 Implemented a new interface for _OSI support, AcpiUpdateInterfaces. This 
   5180 allows the host to globally enable/disable all vendor strings, all 
   5181 feature strings, or both. Intended to be primarily used for debugging 
   5182 purposes only. Lv Zheng.
   5183 
   5184 Expose the collected _OSI data to the host via a global variable. This 
   5185 data tracks the highest level vendor ID that has been invoked by the BIOS 
   5186 so that the host (and potentially ACPICA itself) can change behaviors 
   5187 based upon the age of the BIOS.
   5188 
   5189 Example Code and Data Size: These are the sizes for the OS-independent 
   5190 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   5191 debug version of the code includes the debug output trace mechanism and 
   5192 has a much larger code and data size.
   5193 
   5194   Current Release:
   5195     Non-Debug Version:  96.2K Code, 27.1K Data, 123.3K Total
   5196     Debug Version:     184.4K Code, 76.8K Data, 261.2K Total
   5197   Previous Release:
   5198     Non-Debug Version:  95.9K Code, 26.9K Data, 122.8K Total
   5199     Debug Version:     184.1K Code, 76.7K Data, 260.8K Total
   5200 
   5201 
   5202 2) iASL Compiler/Disassembler and Tools:
   5203 
   5204 iASL: Created the following enhancements for the -so option (create 
   5205 offset table):
   5206 1)Add offsets for the last nameseg in each namepath for every supported 
   5207 object type
   5208 2)Add support for Processor, Device, Thermal Zone, and Scope objects
   5209 3)Add the actual AML opcode for the parent object of every supported 
   5210 object type
   5211 4)Add support for the ZERO/ONE/ONES AML opcodes for integer objects
   5212 
   5213 Disassembler: Emit all unresolved external symbols in a single block. 
   5214 These are external references to control methods that could not be 
   5215 resolved, and thus, the disassembler had to make a guess at the number of 
   5216 arguments to parse.
   5217 
   5218 iASL: The argument to the -T option (create table template) is now 
   5219 optional. If not specified, the default table is a DSDT, typically the 
   5220 most common case.
   5221 
   5222 ----------------------------------------
   5223 26 June 2013. Summary of changes for version 20130626:
   5224 
   5225 1) ACPICA kernel-resident subsystem:
   5226 
   5227 Fixed an issue with runtime repair of the _CST object. Null or invalid 
   5228 elements were not always removed properly. Lv Zheng. 
   5229 
   5230 Removed an arbitrary restriction of 256 GPEs per GPE block (such as the 
   5231 FADT-defined GPE0 and GPE1). For GPE0, GPE1, and each GPE Block Device, 
   5232 the maximum number of GPEs is 1016. Use of multiple GPE block devices 
   5233 makes the system-wide number of GPEs essentially unlimited.
   5234 
   5235 Example Code and Data Size: These are the sizes for the OS-independent 
   5236 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   5237 debug version of the code includes the debug output trace mechanism and 
   5238 has a much larger code and data size.
   5239 
   5240   Current Release:
   5241     Non-Debug Version:  95.9K Code, 26.9K Data, 122.8K Total
   5242     Debug Version:     184.1K Code, 76.7K Data, 260.8K Total
   5243   Previous Release:
   5244     Non-Debug Version:  96.0K Code, 27.0K Data, 123.0K Total
   5245     Debug Version:     184.1K Code, 76.8K Data, 260.9K Total
   5246 
   5247 
   5248 2) iASL Compiler/Disassembler and Tools:
   5249 
   5250 Portable AcpiDump: Implemented full support for the Linux and FreeBSD 
   5251 hosts. Now supports Linux, FreeBSD, and Windows.
   5252 
   5253 Disassembler: Added some missing types for the HEST and EINJ tables: "Set 
   5254 Error Type With Address", "CMCI", "MCE", and "Flush Cacheline".
   5255 
   5256 iASL/Preprocessor: Implemented full support for nested 
   5257 #if/#else/#elif/#endif blocks. Allows arbitrary depth of nested blocks.
   5258 
   5259 Disassembler: Expanded maximum output string length to 64K. Was 256 bytes 
   5260 max. The original purpose of this constraint was to limit the amount of 
   5261 debug output. However, the string function in question (UtPrintString) is 
   5262 now used for the disassembler also, where 256 bytes is insufficient. 
   5263 Reported by RehabMan@GitHub.
   5264 
   5265 iASL/DataTables: Fixed some problems and issues with compilation of DMAR 
   5266 tables. ACPICA BZ 999. Lv Zheng.
   5267 
   5268 iASL: Fixed a couple of error exit issues that could result in a "Could 
   5269 not delete <file>" message during ASL compilation.
   5270 
   5271 AcpiDump: Allow "FADT" and "MADT" as valid table signatures, even though 
   5272 the actual signatures for these tables are "FACP" and "APIC", 
   5273 respectively.
   5274 
   5275 AcpiDump: Added support for multiple UEFI tables. Only SSDT and UEFI 
   5276 tables are allowed to have multiple instances.
   5277 
   5278 ----------------------------------------
   5279 17 May 2013. Summary of changes for version 20130517:
   5280 
   5281 1) ACPICA kernel-resident subsystem:
   5282 
   5283 Fixed a regression introduced in version 20130328 for _INI methods. This 
   5284 change fixes a problem introduced in 20130328 where _INI methods are no 
   5285 longer executed properly because of a memory block that was not 
   5286 initialized correctly. ACPICA BZ 1016. Tomasz Nowicki 
   5287 <tomasz.nowicki (a] linaro.org>.
   5288 
   5289 Fixed a possible problem with the new extended sleep registers in the 
   5290 ACPI 
   5291 5.0 FADT. Do not use these registers (even if populated) unless the HW-
   5292 reduced bit is set in the FADT (as per the ACPI specification). ACPICA BZ 
   5293 1020. Lv Zheng.
   5294 
   5295 Implemented return value repair code for _CST predefined objects: Sort 
   5296 the 
   5297 list and detect/remove invalid entries. ACPICA BZ 890. Lv Zheng.
   5298 
   5299 Implemented a debug-only option to disable loading of SSDTs from the 
   5300 RSDT/XSDT during ACPICA initialization. This can be useful for debugging 
   5301 ACPI problems on some machines. Set AcpiGbl_DisableSsdtTableLoad in 
   5302 acglobal.h - ACPICA BZ 1005. Lv Zheng.
   5303 
   5304 Fixed some issues in the ACPICA initialization and termination code: 
   5305 Tomasz Nowicki <tomasz.nowicki (a] linaro.org>
   5306 1) Clear events initialized flag upon event component termination. ACPICA 
   5307 BZ 1013.
   5308 2) Fixed a possible memory leak in GPE init error path. ACPICA BZ 1018. 
   5309 3) Delete global lock pending lock during termination. ACPICA BZ 1012.
   5310 4) Clear debug buffer global on termination to prevent possible multiple 
   5311 delete. ACPICA BZ 1010.
   5312 
   5313 Standardized all switch() blocks across the entire source base. After 
   5314 many 
   5315 years, different formatting for switch() had crept in. This change makes 
   5316 the formatting of every switch block identical. ACPICA BZ 997. Chao Guan.
   5317 
   5318 Split some files to enhance ACPICA modularity and configurability:
   5319 1) Split buffer dump routines into utilities/utbuffer.c
   5320 2) Split internal error message routines into utilities/uterror.c
   5321 3) Split table print utilities into tables/tbprint.c
   5322 4) Split iASL command-line option processing into asloptions.c
   5323 
   5324 Makefile enhancements:
   5325 1) Support for all new files above.
   5326 2) Abort make on errors from any subcomponent. Chao Guan.
   5327 3) Add build support for Apple Mac OS X. Liang Qi.
   5328 
   5329 Example Code and Data Size: These are the sizes for the OS-independent 
   5330 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   5331 debug version of the code includes the debug output trace mechanism and 
   5332 has a much larger code and data size.
   5333 
   5334   Current Release:
   5335     Non-Debug Version:  96.0K Code, 27.0K Data, 123.0K Total
   5336     Debug Version:     184.1K Code, 76.8K Data, 260.9K Total
   5337   Previous Release:
   5338     Non-Debug Version:  95.6K Code, 26.8K Data, 122.4K Total
   5339     Debug Version:     183.5K Code, 76.6K Data, 260.1K Total
   5340 
   5341 
   5342 2) iASL Compiler/Disassembler and Tools:
   5343 
   5344 New utility: Implemented an easily portable version of the acpidump 
   5345 utility to extract ACPI tables from the system (or a file) in an ASCII 
   5346 hex 
   5347 dump format. The top-level code implements the various command line 
   5348 options, file I/O, and table dump routines. To port to a new host, only 
   5349 three functions need to be implemented to get tables -- since this 
   5350 functionality is OS-dependent. See the tools/acpidump/apmain.c module and 
   5351 the ACPICA reference for porting instructions. ACPICA BZ 859. Notes:
   5352 1) The Windows version obtains the ACPI tables from the Registry.
   5353 2) The Linux version is under development.
   5354 3) Other hosts - If an OS-dependent module is submitted, it will be 
   5355 distributed with ACPICA.
   5356 
   5357 iASL: Fixed a regression for -D preprocessor option (define symbol). A 
   5358 restructuring/change to the initialization sequence caused this option to 
   5359 no longer work properly.
   5360 
   5361 iASL: Implemented a mechanism to disable specific warnings and remarks. 
   5362 Adds a new command line option, "-vw <messageid> as well as "#pragma 
   5363 disable <messageid>". ACPICA BZ 989. Chao Guan, Bob Moore.
   5364 
   5365 iASL: Fix for too-strict package object validation. The package object 
   5366 validation for return values from the predefined names is a bit too 
   5367 strict, it does not allow names references within the package (which will 
   5368 be resolved at runtime.) These types of references cannot be validated at 
   5369 compile time. This change ignores named references within package objects 
   5370 for names that return or define static packages.
   5371 
   5372 Debugger: Fixed the 80-character command line limitation for the History 
   5373 command. Now allows lines of arbitrary length. ACPICA BZ 1000. Chao Guan.
   5374 
   5375 iASL: Added control method and package support for the -so option 
   5376 (generates AML offset table for BIOS support.)
   5377 
   5378 iASL: issue a remark if a non-serialized method creates named objects. If 
   5379 a thread blocks within the method for any reason, and another thread 
   5380 enters the method, the method will fail because an attempt will be made 
   5381 to 
   5382 create the same (named) object twice. In this case, issue a remark that 
   5383 the method should be marked serialized. NOTE: may become a warning later. 
   5384 ACPICA BZ 909.
   5385 
   5386 ----------------------------------------
   5387 18 April 2013. Summary of changes for version 20130418:
   5388 
   5389 1) ACPICA kernel-resident subsystem:
   5390 
   5391 Fixed a possible buffer overrun during some rare but specific field unit 
   5392 read operations. This overrun can only happen if the DSDT version is 1 -- 
   5393 meaning that all AML integers are 32 bits -- and the field length is 
   5394 between 33 and 55 bits long. During the read, an internal buffer object 
   5395 is 
   5396 created for the field unit because the field is larger than an integer 
   5397 (32 
   5398 bits). However, in this case, the buffer will be incorrectly written 
   5399 beyond the end because the buffer length is less than the internal 
   5400 minimum 
   5401 of 64 bits (8 bytes) long. The buffer will be either 5, 6, or 7 bytes 
   5402 long, but a full 8 bytes will be written.
   5403 
   5404 Updated the Embedded Controller "orphan" _REG method support. This refers 
   5405 to _REG methods under the EC device that have no corresponding operation 
   5406 region. This is allowed by the ACPI specification. This update removes a 
   5407 dependency on the existence an ECDT table. It will execute an orphan _REG 
   5408 method as long as the operation region handler for the EC is installed at 
   5409 the EC device node and not the namespace root. Rui Zhang (original 
   5410 update), Bob Moore (update/integrate).
   5411 
   5412 Implemented run-time argument typechecking for all predefined ACPI names 
   5413 (_STA, _BIF, etc.) This change performs object typechecking on all 
   5414 incoming arguments for all predefined names executed via 
   5415 AcpiEvaluateObject. This ensures that ACPI-related device drivers are 
   5416 passing correct object types as well as the correct number of arguments 
   5417 (therefore identifying any issues immediately). Also, the ASL/namespace 
   5418 definition of the predefined name is checked against the ACPI 
   5419 specification for the proper argument count. Adds one new file, 
   5420 nsarguments.c
   5421 
   5422 Changed an exception code for the ASL UnLoad() operator. Changed the 
   5423 exception code for the case where the input DdbHandle is invalid, from 
   5424 AE_BAD_PARAMETER to the more appropriate AE_AML_OPERAND_TYPE.
   5425 
   5426 Unix/Linux makefiles: Removed the use of the -O2 optimization flag in the 
   5427 global makefile. The use of this flag causes compiler errors on earlier 
   5428 versions of GCC, so it has been removed for compatibility.
   5429 
   5430 Miscellaneous cleanup:
   5431 1) Removed some unused/obsolete macros
   5432 2) Fixed a possible memory leak in the _OSI support
   5433 3) Removed an unused variable in the predefined name support
   5434 4) Windows OSL: remove obsolete reference to a memory list field
   5435 
   5436 Example Code and Data Size: These are the sizes for the OS-independent 
   5437 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   5438 debug version of the code includes the debug output trace mechanism and 
   5439 has a much larger code and data size.
   5440 
   5441   Current Release:
   5442     Non-Debug Version:  95.2K Code, 26.4K Data, 121.6K Total
   5443     Debug Version:     183.0K Code, 76.0K Data, 259.0K Total
   5444   Previous Release:
   5445     Non-Debug Version:  95.6K Code, 26.8K Data, 122.4K Total
   5446     Debug Version:     183.5K Code, 76.6K Data, 260.1K Total
   5447 
   5448 
   5449 2) iASL Compiler/Disassembler and Tools:
   5450 
   5451 AcpiExec: Added installation of a handler for the SystemCMOS address 
   5452 space. This prevents control method abort if a method accesses this 
   5453 space.
   5454 
   5455 AcpiExec: Added support for multiple EC devices, and now install EC 
   5456 operation region handler(s) at the actual EC device instead of the 
   5457 namespace root. This reflects the typical behavior of host operating 
   5458 systems.
   5459 
   5460 AcpiExec: Updated to ensure that all operation region handlers are 
   5461 installed before the _REG methods are executed. This prevents a _REG 
   5462 method from aborting if it accesses an address space has no handler. 
   5463 AcpiExec installs a handler for every possible address space.
   5464 
   5465 Debugger: Enhanced the "handlers" command to display non-root handlers. 
   5466 This change enhances the handlers command to display handlers associated 
   5467 with individual devices throughout the namespace, in addition to the 
   5468 currently supported display of handlers associated with the root 
   5469 namespace 
   5470 node.
   5471 
   5472 ASL Test Suite: Several test suite errors have been identified and 
   5473 resolved, reducing the total error count during execution. Chao Guan.
   5474 
   5475 ----------------------------------------
   5476 28 March 2013. Summary of changes for version 20130328:
   5477 
   5478 1) ACPICA kernel-resident subsystem:
   5479 
   5480 Fixed several possible race conditions with the internal object reference 
   5481 counting mechanism. Some of the external ACPICA interfaces update object 
   5482 reference counts without holding the interpreter or namespace lock. This 
   5483 change adds a spinlock to protect reference count updates on the internal 
   5484 ACPICA objects. Reported by and with assistance from Andriy Gapon 
   5485 (avg (a] FreeBSD.org).
   5486 
   5487 FADT support: Removed an extraneous warning for very large GPE register 
   5488 sets. This change removes a size mismatch warning if the legacy length 
   5489 field for a GPE register set is larger than the 64-bit GAS structure can 
   5490 accommodate. GPE register sets can be larger than the 255-bit width 
   5491 limitation of the GAS structure. Linn Crosetto (linn (a] hp.com).
   5492 
   5493 _OSI Support: handle any errors from AcpiOsAcquireMutex. Check for error 
   5494 return from this interface. Handles a possible timeout case if 
   5495 ACPI_WAIT_FOREVER is modified by the host to be a value less than 
   5496 "forever". Jung-uk Kim.
   5497 
   5498 Predefined name support: Add allowed/required argument type information 
   5499 to 
   5500 the master predefined info table. This change adds the infrastructure to 
   5501 enable typechecking on incoming arguments for all predefined 
   5502 methods/objects. It does not actually contain the code that will fully 
   5503 utilize this information, this is still under development. Also condenses 
   5504 some duplicate code for the predefined names into a new module, 
   5505 utilities/utpredef.c
   5506 
   5507 Example Code and Data Size: These are the sizes for the OS-independent 
   5508 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   5509 debug version of the code includes the debug output trace mechanism and 
   5510 has a much larger code and data size.
   5511 
   5512   Previous Release:
   5513     Non-Debug Version:  95.0K Code, 25.9K Data, 120.9K Total
   5514     Debug Version:     182.9K Code, 75.6K Data, 258.5K Total
   5515   Current Release:
   5516     Non-Debug Version:  95.2K Code, 26.4K Data, 121.6K Total
   5517     Debug Version:     183.0K Code, 76.0K Data, 259.0K Total
   5518 
   5519 
   5520 2) iASL Compiler/Disassembler and Tools:
   5521 
   5522 iASL: Implemented a new option to simplify the development of ACPI-
   5523 related 
   5524 BIOS code. Adds support for a new "offset table" output file. The -so 
   5525 option will create a C table containing the AML table offsets of various 
   5526 named objects in the namespace so that BIOS code can modify them easily 
   5527 at 
   5528 boot time. This can simplify BIOS runtime code by eliminating expensive 
   5529 searches for "magic values", enhancing boot times and adding greater 
   5530 reliability. With assistance from Lee Hamel.
   5531 
   5532 iASL: Allow additional predefined names to return zero-length packages. 
   5533 Now, all predefined names that are defined by the ACPI specification to 
   5534 return a "variable-length package of packages" are allowed to return a 
   5535 zero length top-level package. This allows the BIOS to tell the host that 
   5536 the requested feature is not supported, and supports existing BIOS/ASL 
   5537 code and practices.
   5538 
   5539 iASL: Changed the "result not used" warning to an error. This is the case 
   5540 where an ASL operator is effectively a NOOP because the result of the 
   5541 operation is not stored anywhere. For example:
   5542     Add (4, Local0)
   5543 There is no target (missing 3rd argument), nor is the function return 
   5544 value used. This is potentially a very serious problem -- since the code 
   5545 was probably intended to do something, but for whatever reason, the value 
   5546 was not stored. Therefore, this issue has been upgraded from a warning to 
   5547 an error.
   5548 
   5549 AcpiHelp: Added allowable/required argument types to the predefined names 
   5550 info display. This feature utilizes the recent update to the predefined 
   5551 names table (above).
   5552 
   5553 ----------------------------------------
   5554 14 February 2013. Summary of changes for version 20130214:
   5555 
   5556 1) ACPICA Kernel-resident Subsystem:
   5557 
   5558 Fixed a possible regression on some hosts: Reinstated the safe return 
   5559 macros (return_ACPI_STATUS, etc.) that ensure that the argument is 
   5560 evaluated only once. Although these macros are not needed for the ACPICA 
   5561 code itself, they are often used by ACPI-related host device drivers 
   5562 where 
   5563 the safe feature may be necessary.
   5564 
   5565 Fixed several issues related to the ACPI 5.0 reduced hardware support 
   5566 (SOC): Now ensure that if the platform declares itself as hardware-
   5567 reduced 
   5568 via the FADT, the following functions become NOOPs (and always return 
   5569 AE_OK) because ACPI is always enabled by definition on these machines:
   5570   AcpiEnable
   5571   AcpiDisable
   5572   AcpiHwGetMode
   5573   AcpiHwSetMode
   5574 
   5575 Dynamic Object Repair: Implemented additional runtime repairs for 
   5576 predefined name return values. Both of these repairs can simplify code in 
   5577 the related device drivers that invoke these methods:
   5578 1) For the _STR and _MLS names, automatically repair/convert an ASCII 
   5579 string to a Unicode buffer. 
   5580 2) For the _CRS, _PRS, and _DMA names, return a resource descriptor with 
   5581 a 
   5582 lone end tag descriptor in the following cases: A Return(0) was executed, 
   5583 a null buffer was returned, or no object at all was returned (non-slack 
   5584 mode only). Adds a new file, nsconvert.c
   5585 ACPICA BZ 998. Bob Moore, Lv Zheng.
   5586 
   5587 Resource Manager: Added additional code to prevent possible infinite 
   5588 loops 
   5589 while traversing corrupted or ill-formed resource template buffers. Check 
   5590 for zero-length resource descriptors in all code that loops through 
   5591 resource templates (the length field is used to index through the 
   5592 template). This change also hardens the external AcpiWalkResources and 
   5593 AcpiWalkResourceBuffer interfaces.
   5594 
   5595 Local Cache Manager: Enhanced the main data structure to eliminate an 
   5596 unnecessary mechanism to access the next object in the list. Actually 
   5597 provides a small performance enhancement for hosts that use the local 
   5598 ACPICA cache manager. Jung-uk Kim.
   5599 
   5600 Example Code and Data Size: These are the sizes for the OS-independent 
   5601 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   5602 debug version of the code includes the debug output trace mechanism and 
   5603 has a much larger code and data size.
   5604 
   5605   Previous Release:
   5606     Non-Debug Version:  94.5K Code, 25.4K Data, 119.9K Total
   5607     Debug Version:     182.3K Code, 75.0K Data, 257.3K Total
   5608   Current Release:
   5609     Non-Debug Version:  95.0K Code, 25.9K Data, 120.9K Total
   5610     Debug Version:     182.9K Code, 75.6K Data, 258.5K Total
   5611 
   5612 
   5613 2) iASL Compiler/Disassembler and Tools:
   5614 
   5615 iASL/Disassembler: Fixed several issues with the definition of the ACPI 
   5616 5.0 RASF table (RAS Feature Table). This change incorporates late changes 
   5617 that were made to the ACPI 5.0 specification.
   5618 
   5619 iASL/Disassembler: Added full support for the following new ACPI tables:
   5620   1) The MTMR table (MID Timer Table)
   5621   2) The VRTC table (Virtual Real Time Clock Table).
   5622 Includes header file, disassembler, table compiler, and template support 
   5623 for both tables.
   5624 
   5625 iASL: Implemented compile-time validation of package objects returned by 
   5626 predefined names. This new feature validates static package objects 
   5627 returned by the various predefined names defined to return packages. Both 
   5628 object types and package lengths are validated, for both parent packages 
   5629 and sub-packages, if any. The code is similar in structure and behavior 
   5630 to 
   5631 the runtime repair mechanism within the AML interpreter and uses the 
   5632 existing predefined name information table. Adds a new file, aslprepkg.c. 
   5633 ACPICA BZ 938.
   5634 
   5635 iASL: Implemented auto-detection of binary ACPI tables for disassembly. 
   5636 This feature detects a binary file with a valid ACPI table header and 
   5637 invokes the disassembler automatically. Eliminates the need to 
   5638 specifically invoke the disassembler with the -d option. ACPICA BZ 862.
   5639 
   5640 iASL/Disassembler: Added several warnings for the case where there are 
   5641 unresolved control methods during the disassembly. This can potentially 
   5642 cause errors when the output file is compiled, because the disassembler 
   5643 assumes zero method arguments in these cases (it cannot determine the 
   5644 actual number of arguments without resolution/definition of the method).
   5645 
   5646 Debugger: Added support to display all resources with a single command. 
   5647 Invocation of the resources command with no arguments will now display 
   5648 all 
   5649 resources within the current namespace.
   5650 
   5651 AcpiHelp: Added descriptive text for each ACPICA exception code displayed 
   5652 via the -e option.
   5653 
   5654 ----------------------------------------
   5655 17 January 2013. Summary of changes for version 20130117:
   5656 
   5657 1) ACPICA Kernel-resident Subsystem:
   5658 
   5659 Updated the AcpiGetSleepTypeData interface: Allow the \_Sx methods to 
   5660 return either 1 or 2 integers. Although the ACPI spec defines the \_Sx 
   5661 objects to return a package containing one integer, most BIOS code 
   5662 returns 
   5663 two integers and the previous code reflects that. However, we also need 
   5664 to 
   5665 support BIOS code that actually implements to the ACPI spec, and this 
   5666 change reflects this.
   5667 
   5668 Fixed two issues with the ACPI_DEBUG_PRINT macros:
   5669 1) Added the ACPI_DO_WHILE macro to the main DEBUG_PRINT helper macro for 
   5670 C compilers that require this support.
   5671 2) Renamed the internal ACPI_DEBUG macro to ACPI_DO_DEBUG_PRINT since 
   5672 ACPI_DEBUG is already used by many of the various hosts.
   5673 
   5674 Updated all ACPICA copyrights and signons to 2013. Added the 2013 
   5675 copyright to all module headers and signons, including the standard Linux 
   5676 header. This affects virtually every file in the ACPICA core subsystem, 
   5677 iASL compiler, all ACPICA utilities, and the test suites.
   5678 
   5679 Example Code and Data Size: These are the sizes for the OS-independent 
   5680 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   5681 debug version of the code includes the debug output trace mechanism and 
   5682 has a much larger code and data size.
   5683 
   5684   Previous Release:
   5685     Non-Debug Version:  94.5K Code, 25.5K Data, 120.0K Total
   5686     Debug Version:     182.2K Code, 74.9K Data, 257.1K Total
   5687   Current Release:
   5688     Non-Debug Version:  94.5K Code, 25.4K Data, 119.9K Total
   5689     Debug Version:     182.3K Code, 75.0K Data, 257.3K Total
   5690 
   5691 
   5692 2) iASL Compiler/Disassembler and Tools:
   5693 
   5694 Generic Unix OSL: Use a buffer to eliminate multiple vfprintf()s and 
   5695 prevent a possible fault on some hosts. Some C libraries modify the arg 
   5696 pointer parameter to vfprintf making it difficult to call it twice in the 
   5697 AcpiOsVprintf function. Use a local buffer to workaround this issue. This 
   5698 does not affect the Windows OSL since the Win C library does not modify 
   5699 the arg pointer. Chao Guan, Bob Moore.
   5700 
   5701 iASL: Fixed a possible infinite loop when the maximum error count is 
   5702 reached. If an output file other than the .AML file is specified (such as 
   5703 a listing file), and the maximum number of errors is reached, do not 
   5704 attempt to flush data to the output file(s) as the compiler is aborting. 
   5705 This can cause an infinite loop as the max error count code essentially 
   5706 keeps calling itself.
   5707 
   5708 iASL/Disassembler: Added an option (-in) to ignore NOOP 
   5709 opcodes/operators. 
   5710 Implemented for both the compiler and the disassembler. Often, the NOOP 
   5711 opcode is used as padding for packages that are changed dynamically by 
   5712 the 
   5713 BIOS. When disassembled and recompiled, these NOOPs will cause syntax 
   5714 errors. This option causes the disassembler to ignore all NOOP opcodes 
   5715 (0xA3), and it also causes the compiler to ignore all ASL source code 
   5716 NOOP 
   5717 statements as well.
   5718 
   5719 Debugger: Enhanced the Sleep command to execute all sleep states. This 
   5720 change allows Sleep to be invoked with no arguments and causes the 
   5721 debugger to execute all of the sleep states, 0-5, automatically.
   5722 
   5723 ----------------------------------------
   5724 20 December 2012. Summary of changes for version 20121220:
   5725 
   5726 1) ACPICA Kernel-resident Subsystem:
   5727 
   5728 Implemented a new interface, AcpiWalkResourceBuffer. This interface is an 
   5729 alternate entry point for AcpiWalkResources and improves the usability of 
   5730 the resource manager by accepting as input a buffer containing the output 
   5731 of either a _CRS, _PRS, or _AEI method. The key functionality is that the 
   5732 input buffer is not deleted by this interface so that it can be used by 
   5733 the host later. See the ACPICA reference for details.
   5734 
   5735 Interpreter: Add a warning if a 64-bit constant appears in a 32-bit table 
   5736 (DSDT version < 2). The constant will be truncated and this warning 
   5737 reflects that behavior.
   5738 
   5739 Resource Manager: Add support for the new ACPI 5.0 wake bit in the IRQ, 
   5740 ExtendedInterrupt, and GpioInt descriptors. This change adds support to 
   5741 both get and set the new wake bit in these descriptors, separately from 
   5742 the existing share bit. Reported by Aaron Lu.
   5743 
   5744 Interpreter: Fix Store() when an implicit conversion is not possible. For 
   5745 example, in the cases such as a store of a string to an existing package 
   5746 object, implement the store as a CopyObject(). This is a small departure 
   5747 from the ACPI specification which states that the control method should 
   5748 be 
   5749 aborted in this case. However, the ASLTS suite depends on this behavior.
   5750 
   5751 Performance improvement for the various FUNCTION_TRACE and DEBUG_PRINT 
   5752 macros: check if debug output is currently enabled as soon as possible to 
   5753 minimize performance impact if debug is in fact not enabled.
   5754 
   5755 Source code restructuring: Cleanup to improve modularity. The following 
   5756 new files have been added: dbconvert.c, evhandler.c, nsprepkg.c, 
   5757 psopinfo.c, psobject.c, rsdumpinfo.c, utstring.c, and utownerid.c. 
   5758 Associated makefiles and project files have been updated.
   5759 
   5760 Changed an exception code for LoadTable operator. For the case where one 
   5761 of the input strings is too long, change the returned exception code from 
   5762 AE_BAD_PARAMETER to AE_AML_STRING_LIMIT.
   5763 
   5764 Fixed a possible memory leak in dispatcher error path. On error, delete 
   5765 the mutex object created during method mutex creation. Reported by 
   5766 tim.gardner (a] canonical.com.
   5767 
   5768 Example Code and Data Size: These are the sizes for the OS-independent 
   5769 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   5770 debug version of the code includes the debug output trace mechanism and 
   5771 has a much larger code and data size.
   5772 
   5773   Previous Release:
   5774     Non-Debug Version:  94.3K Code, 25.3K Data, 119.6K Total
   5775     Debug Version:     175.5K Code, 74.5K Data, 250.0K Total
   5776   Current Release:
   5777     Non-Debug Version:  94.5K Code, 25.5K Data, 120.0K Total
   5778     Debug Version:     182.2K Code, 74.9K Data, 257.1K Total
   5779 
   5780 
   5781 2) iASL Compiler/Disassembler and Tools:
   5782 
   5783 iASL: Disallow a method call as argument to the ObjectType ASL operator. 
   5784 This change tracks an errata to the ACPI 5.0 document. The AML grammar 
   5785 will not allow the interpreter to differentiate between a method and a 
   5786 method invocation when these are used as an argument to the ObjectType 
   5787 operator. The ACPI specification change is to disallow a method 
   5788 invocation 
   5789 (UserTerm) for the ObjectType operator.
   5790 
   5791 Finish support for the TPM2 and CSRT tables in the headers, table 
   5792 compiler, and disassembler.
   5793 
   5794 Unix user-space OSL: Fix a problem with WaitSemaphore where the timeout 
   5795 always expires immediately if the semaphore is not available. The 
   5796 original 
   5797 code was using a relative-time timeout, but sem_timedwait requires the 
   5798 use 
   5799 of an absolute time.
   5800 
   5801 iASL: Added a remark if the Timer() operator is used within a 32-bit 
   5802 table. This operator returns a 64-bit time value that will be truncated 
   5803 within a 32-bit table.
   5804 
   5805 iASL Source code restructuring: Cleanup to improve modularity. The 
   5806 following new files have been added: aslhex.c, aslxref.c, aslnamesp.c, 
   5807 aslmethod.c, and aslfileio.c. Associated makefiles and project files have 
   5808 been updated.
   5809 
   5810 
   5811 ----------------------------------------
   5812 14 November 2012. Summary of changes for version 20121114:
   5813 
   5814 1) ACPICA Kernel-resident Subsystem:
   5815 
   5816 Implemented a performance enhancement for ACPI/AML Package objects. This 
   5817 change greatly increases the performance of Package objects within the 
   5818 interpreter. It changes the processing of reference counts for packages 
   5819 by 
   5820 optimizing for the most common case where the package sub-objects are 
   5821 either Integers, Strings, or Buffers. Increases the overall performance 
   5822 of 
   5823 the ASLTS test suite by 1.5X (Increases the Slack Mode performance by 
   5824 2X.) 
   5825 Chao Guan. ACPICA BZ 943.
   5826 
   5827 Implemented and deployed common macros to extract flag bits from resource 
   5828 descriptors. Improves readability and maintainability of the code. Fixes 
   5829 a 
   5830 problem with the UART serial bus descriptor for the number of data bits 
   5831 flags (was incorrectly 2 bits, should be 3).
   5832 
   5833 Enhanced the ACPI_GETx and ACPI_SETx macros. Improved the implementation 
   5834 of the macros and changed the SETx macros to the style of (destination, 
   5835 source). Also added ACPI_CASTx companion macros. Lv Zheng.
   5836 
   5837 Example Code and Data Size: These are the sizes for the OS-independent 
   5838 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   5839 debug version of the code includes the debug output trace mechanism and 
   5840 has a much larger code and data size.
   5841 
   5842   Previous Release:
   5843     Non-Debug Version:  93.9K Code, 25.2K Data, 119.1K Total
   5844     Debug Version:     175.5K Code, 74.5K Data, 250.0K Total
   5845   Current Release:
   5846     Non-Debug Version:  94.3K Code, 25.3K Data, 119.6K Total
   5847     Debug Version:     175.5K Code, 74.5K Data, 250.0K Total
   5848 
   5849 
   5850 2) iASL Compiler/Disassembler and Tools:
   5851 
   5852 Disassembler: Added the new ACPI 5.0 interrupt sharing flags. This change 
   5853 adds the ShareAndWake and ExclusiveAndWake flags which were added to the 
   5854 Irq, Interrupt, and Gpio resource descriptors in ACPI 5.0. ACPICA BZ 986.
   5855 
   5856 Disassembler: Fixed a problem with external declaration generation. Fixes 
   5857 a problem where an incorrect pathname could be generated for an external 
   5858 declaration if the original reference to the object includes leading 
   5859 carats (^). ACPICA BZ 984.
   5860 
   5861 Debugger: Completed a major update for the Disassemble<method> command. 
   5862 This command was out-of-date and did not properly disassemble control 
   5863 methods that had any reasonable complexity. This fix brings the command 
   5864 up 
   5865 to the same level as the rest of the disassembler. Adds one new file, 
   5866 dmdeferred.c, which is existing code that is now common with the main 
   5867 disassembler and the debugger disassemble command. ACPICA MZ 978.
   5868 
   5869 iASL: Moved the parser entry prototype to avoid a duplicate declaration. 
   5870 Newer versions of Bison emit this prototype, so moved the prototype out 
   5871 of 
   5872 the iASL header to where it is actually used in order to avoid a 
   5873 duplicate 
   5874 declaration.
   5875 
   5876 iASL/Tools: Standardized use of the stream I/O functions:
   5877   1) Ensure check for I/O error after every fopen/fread/fwrite
   5878   2) Ensure proper order of size/count arguments for fread/fwrite
   5879   3) Use test of (Actual != Requested) after all fwrite, and most fread
   5880   4) Standardize I/O error messages
   5881 Improves reliability and maintainability of the code. Bob Moore, Lv 
   5882 Zheng. 
   5883 ACPICA BZ 981.
   5884 
   5885 Disassembler: Prevent duplicate External() statements. During generation 
   5886 of external statements, detect similar pathnames that are actually 
   5887 duplicates such as these:
   5888   External (\ABCD)
   5889   External (ABCD)
   5890 Remove all leading '\' characters from pathnames during the external 
   5891 statement generation so that duplicates will be detected and tossed. 
   5892 ACPICA BZ 985.
   5893 
   5894 Tools: Replace low-level I/O with stream I/O functions. Replace 
   5895 open/read/write/close with the stream I/O equivalents 
   5896 fopen/fread/fwrite/fclose for portability and performance. Lv Zheng, Bob 
   5897 Moore.
   5898 
   5899 AcpiBin: Fix for the dump-to-hex function. Now correctly output the table 
   5900 name header so that AcpiXtract recognizes the output file/table.
   5901 
   5902 iASL: Remove obsolete -2 option flag. Originally intended to force the 
   5903 compiler/disassembler into an ACPI 2.0 mode, this was never implemented 
   5904 and the entire concept is now obsolete.
   5905 
   5906 ----------------------------------------
   5907 18 October 2012. Summary of changes for version 20121018:
   5908 
   5909 
   5910 1) ACPICA Kernel-resident Subsystem:
   5911 
   5912 Updated support for the ACPI 5.0 MPST table. Fixes some problems 
   5913 introduced by late changes to the table as it was added to the ACPI 5.0 
   5914 specification. Includes header, disassembler, and data table compiler 
   5915 support as well as a new version of the MPST template.
   5916 
   5917 AcpiGetObjectInfo: Enhanced the device object support to include the ACPI 
   5918 5.0 _SUB method. Now calls _SUB in addition to the other PNP-related ID 
   5919 methods: _HID, _CID, and _UID.
   5920 
   5921 Changed ACPI_DEVICE_ID to ACPI_PNP_DEVICE_ID. Also changed 
   5922 ACPI_DEVICE_ID_LIST to ACPI_PNP_DEVICE_ID_LIST. These changes prevent 
   5923 name collisions on hosts that reserve the *_DEVICE_ID (or *DeviceId) 
   5924 names for their various drivers. Affects the AcpiGetObjectInfo external 
   5925 interface, and other internal interfaces as well.
   5926 
   5927 Added and deployed a new macro for ACPI_NAME management: ACPI_MOVE_NAME. 
   5928 This macro resolves to a simple 32-bit move of the 4-character ACPI_NAME 
   5929 on machines that support non-aligned transfers. Optimizes for this case 
   5930 rather than using a strncpy. With assistance from Zheng Lv.
   5931 
   5932 Resource Manager: Small fix for buffer size calculation. Fixed a one byte 
   5933 error in the output buffer calculation. Feng Tang. ACPICA BZ 849.
   5934 
   5935 Added a new debug print message for AML mutex objects that are force-
   5936 released. At control method termination, any currently acquired mutex 
   5937 objects are force-released. Adds a new debug-only message for each one 
   5938 that is released.
   5939 
   5940 Audited/updated all ACPICA return macros and the function debug depth 
   5941 counter: 1) Ensure that all functions that use the various TRACE macros 
   5942 also use the appropriate ACPICA return macros. 2) Ensure that all normal 
   5943 return statements surround the return expression (value) with parens to 
   5944 ensure consistency across the ACPICA code base. Guan Chao, Tang Feng, 
   5945 Zheng Lv, Bob Moore. ACPICA Bugzilla 972.
   5946 
   5947 Global source code changes/maintenance: All extra lines at the start and 
   5948 end of each source file have been removed for consistency. Also, within 
   5949 comments, all new sentences start with a single space instead of a double 
   5950 space, again for consistency across the code base.
   5951 
   5952 Example Code and Data Size: These are the sizes for the OS-independent 
   5953 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   5954 debug version of the code includes the debug output trace mechanism and 
   5955 has a much larger code and data size.
   5956 
   5957   Previous Release:
   5958     Non-Debug Version:  93.7K Code, 25.3K Data, 119.0K Total
   5959     Debug Version:     175.0K Code, 74.4K Data, 249.4K Total
   5960   Current Release:
   5961     Non-Debug Version:  93.9K Code, 25.2K Data, 119.1K Total
   5962     Debug Version:     175.5K Code, 74.5K Data, 250.0K Total
   5963 
   5964 
   5965 2) iASL Compiler/Disassembler and Tools:
   5966 
   5967 AcpiExec: Improved the algorithm used for memory leak/corruption 
   5968 detection. Added some intelligence to the code that maintains the global 
   5969 list of allocated memory. The list is now ordered by allocated memory 
   5970 address, significantly improving performance. When running AcpiExec on 
   5971 the ASLTS test suite, speed improvements of 3X to 5X are seen, depending 
   5972 on the platform and/or the environment. Note, this performance 
   5973 enhancement affects the AcpiExec utility only, not the kernel-resident 
   5974 ACPICA code.
   5975 
   5976 Enhanced error reporting for invalid AML opcodes and bad ACPI_NAMEs. For 
   5977 the disassembler, dump the 48 bytes surrounding the invalid opcode. Fix 
   5978 incorrect table offset reported for invalid opcodes. Report the original 
   5979 32-bit value for bad ACPI_NAMEs (as well as the repaired name.)
   5980 
   5981 Disassembler: Enhanced the -vt option to emit the binary table data in 
   5982 hex format to assist with debugging.
   5983 
   5984 Fixed a potential filename buffer overflow in osunixdir.c. Increased the 
   5985 size of file structure. Colin Ian King.
   5986 
   5987 ----------------------------------------
   5988 13 September 2012. Summary of changes for version 20120913:
   5989 
   5990 
   5991 1) ACPICA Kernel-resident Subsystem:
   5992 
   5993 ACPI 5.0: Added two new notify types for the Hardware Error Notification 
   5994 Structure within the Hardware Error Source Table (HEST) table -- CMCI(5) 
   5995 and 
   5996 MCE(6).
   5997  
   5998 Table Manager: Merged/removed duplicate code in the root table resize 
   5999 functions. One function is external, the other is internal. Lv Zheng, 
   6000 ACPICA 
   6001 BZ 846.
   6002 
   6003 Makefiles: Completely removed the obsolete "Linux" makefiles under 
   6004 acpica/generate/linux. These makefiles are obsolete and have been 
   6005 replaced 
   6006 by 
   6007 the generic unix makefiles under acpica/generate/unix.
   6008 
   6009 Makefiles: Ensure that binary files always copied properly. Minor rule 
   6010 change 
   6011 to ensure that the final binary output files are always copied up to the 
   6012 appropriate binary directory (bin32 or bin64.)
   6013 
   6014 Example Code and Data Size: These are the sizes for the OS-independent 
   6015 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   6016 debug 
   6017 version of the code includes the debug output trace mechanism and has a 
   6018 much 
   6019 larger code and data size.
   6020 
   6021   Previous Release:
   6022     Non-Debug Version:  93.8K Code, 25.3K Data, 119.1K Total
   6023     Debug Version:     175.7K Code, 74.8K Data, 250.5K Total
   6024   Current Release:
   6025     Non-Debug Version:  93.7K Code, 25.3K Data, 119.0K Total
   6026     Debug Version:     175.0K Code, 74.4K Data, 249.4K Total
   6027 
   6028 
   6029 2) iASL Compiler/Disassembler and Tools:
   6030 
   6031 Disassembler: Fixed a possible fault during the disassembly of resource 
   6032 descriptors when a second parse is required because of the invocation of 
   6033 external control methods within the table. With assistance from 
   6034 adq (a] lidskialf.net. ACPICA BZ 976.
   6035 
   6036 iASL: Fixed a namepath optimization problem. An error can occur if the 
   6037 parse 
   6038 node that contains the namepath to be optimized does not have a parent 
   6039 node 
   6040 that is a named object. This change fixes the problem.
   6041 
   6042 iASL: Fixed a regression where the AML file is not deleted on errors. The 
   6043 AML 
   6044 output file should be deleted if there are any errors during the 
   6045 compiler. 
   6046 The 
   6047 only exception is if the -f (force output) option is used. ACPICA BZ 974.
   6048 
   6049 iASL: Added a feature to automatically increase internal line buffer 
   6050 sizes. 
   6051 Via realloc(), automatically increase the internal line buffer sizes as 
   6052 necessary to support very long source code lines. The current version of 
   6053 the 
   6054 preprocessor requires a buffer long enough to contain full source code 
   6055 lines. 
   6056 This change increases the line buffer(s) if the input lines go beyond the 
   6057 current buffer size. This eliminates errors that occurred when a source 
   6058 code 
   6059 line was longer than the buffer.
   6060 
   6061 iASL: Fixed a problem with constant folding in method declarations. The 
   6062 SyncLevel term is a ByteConstExpr, and incorrect code would be generated 
   6063 if a 
   6064 Type3 opcode was used.
   6065 
   6066 Debugger: Improved command help support. For incorrect argument count, 
   6067 display 
   6068 full help for the command. For help command itself, allow an argument to 
   6069 specify a command.
   6070 
   6071 Test Suites: Several bug fixes for the ASLTS suite reduces the number of 
   6072 errors during execution of the suite. Guan Chao.
   6073 
   6074 ----------------------------------------
   6075 16 August 2012. Summary of changes for version 20120816:
   6076 
   6077 
   6078 1) ACPICA Kernel-resident Subsystem:
   6079 
   6080 Removed all use of the deprecated _GTS and _BFS predefined methods. The 
   6081 _GTS 
   6082 (Going To Sleep) and _BFS (Back From Sleep) methods are essentially 
   6083 deprecated and will probably be removed from the ACPI specification. 
   6084 Windows 
   6085 does not invoke them, and reportedly never will. The final nail in the 
   6086 coffin 
   6087 is that the ACPI specification states that these methods must be run with 
   6088 interrupts off, which is not going to happen in a kernel interpreter. 
   6089 Note: 
   6090 Linux has removed all use of the methods also. It was discovered that 
   6091 invoking these functions caused failures on some machines, probably 
   6092 because 
   6093 they were never tested since Windows does not call them. Affects two 
   6094 external 
   6095 interfaces, AcpiEnterSleepState and AcpiLeaveSleepStatePrep. Tang Feng. 
   6096 ACPICA BZ 969.
   6097 
   6098 Implemented support for complex bit-packed buffers returned from the _PLD 
   6099 (Physical Location of Device) predefined method. Adds a new external 
   6100 interface, AcpiDecodePldBuffer that parses the buffer into a more usable 
   6101 C 
   6102 structure. Note: C Bitfields cannot be used for this type of predefined 
   6103 structure since the memory layout of individual bitfields is not defined 
   6104 by 
   6105 the C language. In addition, there are endian concerns where a compiler 
   6106 will 
   6107 change the bitfield ordering based on the machine type. The new ACPICA 
   6108 interface eliminates these issues, and should be called after _PLD is 
   6109 executed. ACPICA BZ 954.
   6110 
   6111 Implemented a change to allow a scope change to root (via "Scope (\)") 
   6112 during 
   6113 execution of module-level ASL code (code that is executed at table load 
   6114 time.) Lin Ming.
   6115 
   6116 Added the Windows8/Server2012 string for the _OSI method. This change 
   6117 adds 
   6118 a 
   6119 new _OSI string, "Windows 2012" for both Windows 8 and Windows Server 
   6120 2012.
   6121 
   6122 Added header support for the new ACPI tables DBG2 (Debug Port Table Type 
   6123 2) 
   6124 and CSRT (Core System Resource Table).
   6125 
   6126 Added struct header support for the _FDE, _GRT, _GTM, and _SRT predefined 
   6127 names. This simplifies access to the buffers returned by these predefined 
   6128 names. Adds a new file, include/acbuffer.h. ACPICA BZ 956.
   6129 
   6130 GPE support: Removed an extraneous parameter from the various low-level 
   6131 internal GPE functions. Tang Feng.
   6132 
   6133 Removed the linux makefiles from the unix packages. The generate/linux 
   6134 makefiles are obsolete and have been removed from the unix tarball 
   6135 release 
   6136 packages. The replacement makefiles are under generate/unix, and there is 
   6137 a 
   6138 top-level makefile under the main acpica directory. ACPICA BZ 967, 912.
   6139 
   6140 Updates for Unix makefiles:
   6141 1) Add -D_FORTIFY_SOURCE=2 for gcc generation. Arjan van de Ven.
   6142 2) Update linker flags (move to end of command line) for AcpiExec 
   6143 utility. 
   6144 Guan Chao.
   6145 
   6146 Split ACPICA initialization functions to new file, utxfinit.c. Split from 
   6147 utxface.c to improve modularity and reduce file size.
   6148 
   6149 Example Code and Data Size: These are the sizes for the OS-independent 
   6150 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   6151 debug version of the code includes the debug output trace mechanism and 
   6152 has a 
   6153 much larger code and data size.
   6154 
   6155   Previous Release:
   6156     Non-Debug Version:  93.5K Code, 25.3K Data, 118.8K Total
   6157     Debug Version:     173.7K Code, 74.0K Data, 247.7K Total
   6158   Current Release:
   6159     Non-Debug Version:  93.8K Code, 25.3K Data, 119.1K Total
   6160     Debug Version:     175.7K Code, 74.8K Data, 250.5K Total
   6161 
   6162 
   6163 2) iASL Compiler/Disassembler and Tools:
   6164 
   6165 iASL: Fixed a problem with constant folding for fixed-length constant 
   6166 expressions. The constant-folding code was not being invoked for constant 
   6167 expressions that allow the use of type 3/4/5 opcodes to generate 
   6168 constants 
   6169 for expressions such as ByteConstExpr, WordConstExpr, etc. This could 
   6170 result 
   6171 in the generation of invalid AML bytecode. ACPICA BZ 970.
   6172 
   6173 iASL: Fixed a generation issue on newer versions of Bison. Newer versions 
   6174 apparently automatically emit some of the necessary externals. This 
   6175 change 
   6176 handles these versions in order to eliminate generation warnings.
   6177 
   6178 Disassembler: Added support to decode the DBG2 and CSRT ACPI tables.
   6179 
   6180 Disassembler: Add support to decode _PLD buffers. The decoded buffer 
   6181 appears 
   6182 within comments in the output file.
   6183 
   6184 Debugger: Fixed a regression with the "Threads" command where 
   6185 AE_BAD_PARAMETER was always returned.
   6186 
   6187 ----------------------------------------
   6188 11 July 2012. Summary of changes for version 20120711:
   6189 
   6190 1) ACPICA Kernel-resident Subsystem:
   6191 
   6192 Fixed a possible fault in the return package object repair code. Fixes a 
   6193 problem that can occur when a lone package object is wrapped with an 
   6194 outer 
   6195 package object in order to force conformance to the ACPI specification. 
   6196 Can 
   6197 affect these predefined names: _ALR, _MLS, _PSS, _TRT, _TSS, _PRT, _HPX, 
   6198 _DLM, 
   6199 _CSD, _PSD, _TSD.
   6200 
   6201 Removed code to disable/enable bus master arbitration (ARB_DIS bit in the 
   6202 PM2_CNT register) in the ACPICA sleep/wake interfaces. Management of the 
   6203 ARB_DIS bit must be implemented in the host-dependent C3 processor power 
   6204 state 
   6205 support. Note, ARB_DIS is obsolete and only applies to older chipsets, 
   6206 both 
   6207 Intel and other vendors. (for Intel: ICH4-M and earlier)
   6208 
   6209 This change removes the code to disable/enable bus master arbitration 
   6210 during 
   6211 suspend/resume. Use of the ARB_DIS bit in the optional PM2_CNT register 
   6212 causes 
   6213 resume problems on some machines. The change has been in use for over 
   6214 seven 
   6215 years within Linux.
   6216 
   6217 Implemented two new external interfaces to support host-directed dynamic 
   6218 ACPI 
   6219 table load and unload. They are intended to simplify the host 
   6220 implementation 
   6221 of hot-plug support:
   6222   AcpiLoadTable: Load an SSDT from a buffer into the namespace.
   6223   AcpiUnloadParentTable: Unload an SSDT via a named object owned by the 
   6224 table.
   6225 See the ACPICA reference for additional details. Adds one new file, 
   6226 components/tables/tbxfload.c
   6227 
   6228 Implemented and deployed two new interfaces for errors and warnings that 
   6229 are 
   6230 known to be caused by BIOS/firmware issues:
   6231   AcpiBiosError: Prints "ACPI Firmware Error" message.
   6232   AcpiBiosWarning: Prints "ACPI Firmware Warning" message.
   6233 Deployed these new interfaces in the ACPICA Table Manager code for ACPI 
   6234 table 
   6235 and FADT errors. Additional deployment to be completed as appropriate in 
   6236 the 
   6237 future. The associated conditional macros are ACPI_BIOS_ERROR and 
   6238 ACPI_BIOS_WARNING. See the ACPICA reference for additional details. 
   6239 ACPICA 
   6240 BZ 
   6241 843.
   6242 
   6243 Implicit notify support: ensure that no memory allocation occurs within a 
   6244 critical region. This fix moves a memory allocation outside of the time 
   6245 that a 
   6246 spinlock is held. Fixes issues on systems that do not allow this 
   6247 behavior. 
   6248 Jung-uk Kim.
   6249 
   6250 Split exception code utilities and tables into a new file, 
   6251 utilities/utexcep.c
   6252 
   6253 Example Code and Data Size: These are the sizes for the OS-independent 
   6254 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   6255 debug 
   6256 version of the code includes the debug output trace mechanism and has a 
   6257 much 
   6258 larger code and data size.
   6259 
   6260   Previous Release:
   6261     Non-Debug Version:  93.1K Code, 25.1K Data, 118.2K Total
   6262     Debug Version:     172.9K Code, 73.6K Data, 246.5K Total
   6263   Current Release:
   6264     Non-Debug Version:  93.5K Code, 25.3K Data, 118.8K Total
   6265     Debug Version:     173.7K Code, 74.0K Data, 247.7K Total
   6266 
   6267 
   6268 2) iASL Compiler/Disassembler and Tools:
   6269 
   6270 iASL: Fixed a parser problem for hosts where EOF is defined as -1 instead 
   6271 of 
   6272 0. Jung-uk Kim.
   6273 
   6274 Debugger: Enhanced the "tables" command to emit additional information 
   6275 about 
   6276 the current set of ACPI tables, including the owner ID and flags decode.
   6277 
   6278 Debugger: Reimplemented the "unload" command to use the new 
   6279 AcpiUnloadParentTable external interface. This command was disable 
   6280 previously 
   6281 due to need for an unload interface.
   6282 
   6283 AcpiHelp: Added a new option to decode ACPICA exception codes. The -e 
   6284 option 
   6285 will decode 16-bit hex status codes (ACPI_STATUS) to name strings.
   6286 
   6287 ----------------------------------------
   6288 20 June 2012. Summary of changes for version 20120620:
   6289 
   6290 
   6291 1) ACPICA Kernel-resident Subsystem:
   6292 
   6293 Implemented support to expand the "implicit notify" feature to allow 
   6294 multiple 
   6295 devices to be notified by a single GPE. This feature automatically 
   6296 generates a 
   6297 runtime device notification in the absence of a BIOS-provided GPE control 
   6298 method (_Lxx/_Exx) or a host-installed handler for the GPE. Implicit 
   6299 notify is 
   6300 provided by ACPICA for Windows compatibility, and is a workaround for 
   6301 BIOS 
   6302 AML 
   6303 code errors. See the description of the AcpiSetupGpeForWake interface in 
   6304 the 
   6305 APCICA reference. Bob Moore, Rafael Wysocki. ACPICA BZ 918.
   6306 
   6307 Changed some comments and internal function names to simplify and ensure 
   6308 correctness of the Linux code translation. No functional changes.
   6309 
   6310 Example Code and Data Size: These are the sizes for the OS-independent 
   6311 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   6312 debug 
   6313 version of the code includes the debug output trace mechanism and has a 
   6314 much 
   6315 larger code and data size.
   6316 
   6317   Previous Release:
   6318     Non-Debug Version:  93.0K Code, 25.1K Data, 118.1K Total
   6319     Debug Version:     172.7K Code, 73.6K Data, 246.3K Total
   6320   Current Release:
   6321     Non-Debug Version:  93.1K Code, 25.1K Data, 118.2K Total
   6322     Debug Version:     172.9K Code, 73.6K Data, 246.5K Total
   6323 
   6324 
   6325 2) iASL Compiler/Disassembler and Tools:
   6326 
   6327 Disassembler: Added support to emit short, commented descriptions for the 
   6328 ACPI 
   6329 predefined names in order to improve the readability of the disassembled 
   6330 output. ACPICA BZ 959. Changes include:
   6331   1) Emit descriptions for all standard predefined names (_INI, _STA, 
   6332 _PRW, 
   6333 etc.)
   6334   2) Emit generic descriptions for the special names (_Exx, _Qxx, etc.)
   6335   3) Emit descriptions for the resource descriptor names (_MIN, _LEN, 
   6336 etc.)
   6337 
   6338 AcpiSrc: Fixed several long-standing Linux code translation issues. 
   6339 Argument 
   6340 descriptions in function headers are now translated properly to lower 
   6341 case 
   6342 and 
   6343 underscores. ACPICA BZ 961. Also fixes translation problems such as 
   6344 these: 
   6345 (old -> new)
   6346   i_aSL -> iASL
   6347   00-7_f -> 00-7F
   6348   16_k -> 16K
   6349   local_fADT -> local_FADT
   6350   execute_oSI -> execute_OSI
   6351 
   6352 iASL: Fixed a problem where null bytes were inadvertently emitted into 
   6353 some 
   6354 listing files.
   6355 
   6356 iASL: Added the existing debug options to the standard help screen. There 
   6357 are 
   6358 no longer two different help screens. ACPICA BZ 957.
   6359 
   6360 AcpiHelp: Fixed some typos in the various predefined name descriptions. 
   6361 Also 
   6362 expand some of the descriptions where appropriate.
   6363 
   6364 iASL: Fixed the -ot option (display compile times/statistics). Was not 
   6365 working 
   6366 properly for standard output; only worked for the debug file case.
   6367 
   6368 ----------------------------------------
   6369 18 May 2012. Summary of changes for version 20120518:
   6370 
   6371 
   6372 1) ACPICA Core Subsystem:
   6373 
   6374 Added a new OSL interface, AcpiOsWaitEventsComplete. This interface is 
   6375 defined 
   6376 to block until asynchronous events such as notifies and GPEs have 
   6377 completed. 
   6378 Within ACPICA, it is only called before a notify or GPE handler is 
   6379 removed/uninstalled. It also may be useful for the host OS within related 
   6380 drivers such as the Embedded Controller driver. See the ACPICA reference 
   6381 for 
   6382 additional information. ACPICA BZ 868.
   6383 
   6384 ACPI Tables: Added a new error message for a possible overflow failure 
   6385 during 
   6386 the conversion of FADT 32-bit legacy register addresses to internal 
   6387 common 
   6388 64-
   6389 bit GAS structure representation. The GAS has a one-byte "bit length" 
   6390 field, 
   6391 thus limiting the register length to 255 bits. ACPICA BZ 953.
   6392 
   6393 Example Code and Data Size: These are the sizes for the OS-independent 
   6394 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   6395 debug 
   6396 version of the code includes the debug output trace mechanism and has a 
   6397 much 
   6398 larger code and data size.
   6399 
   6400   Previous Release:
   6401     Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
   6402     Debug Version:     172.6K Code, 73.4K Data, 246.0K Total
   6403   Current Release:
   6404     Non-Debug Version:  93.0K Code, 25.1K Data, 118.1K Total
   6405     Debug Version:     172.7K Code, 73.6K Data, 246.3K Total
   6406 
   6407 
   6408 2) iASL Compiler/Disassembler and Tools:
   6409 
   6410 iASL: Added the ACPI 5.0 "PCC" keyword for use in the Register() ASL 
   6411 macro. 
   6412 This keyword was added late in the ACPI 5.0 release cycle and was not 
   6413 implemented until now.
   6414 
   6415 Disassembler: Added support for Operation Region externals. Adds missing 
   6416 support for operation regions that are defined in another table, and 
   6417 referenced locally via a Field or BankField ASL operator. Now generates 
   6418 the 
   6419 correct External statement.
   6420 
   6421 Disassembler: Several additional fixes for the External() statement 
   6422 generation 
   6423 related to some ASL operators. Also, order the External() statements 
   6424 alphabetically in the disassembler output. Fixes the External() 
   6425 generation 
   6426 for 
   6427 the Create* field, Alias, and Scope operators:
   6428  1) Create* buffer field operators - fix type mismatch warning on 
   6429 disassembly
   6430  2) Alias - implement missing External support
   6431  3) Scope - fix to make sure all necessary externals are emitted.
   6432 
   6433 iASL: Improved pathname support. For include files, merge the prefix 
   6434 pathname 
   6435 with the file pathname and eliminate unnecessary components. Convert 
   6436 backslashes in all pathnames to forward slashes, for readability. Include 
   6437 file 
   6438 pathname changes affect both #include and Include() type operators.
   6439 
   6440 iASL/DTC/Preprocessor: Gracefully handle early EOF. Handle an EOF at the 
   6441 end 
   6442 of a valid line by inserting a newline and then returning the EOF during 
   6443 the 
   6444 next call to GetNextLine. Prevents the line from being ignored due to EOF 
   6445 condition.
   6446 
   6447 iASL: Implemented some changes to enhance the IDE support (-vi option.) 
   6448 Error 
   6449 and Warning messages are now correctly recognized for both the source 
   6450 code 
   6451 browser and the global error and warning counts.
   6452 
   6453 ----------------------------------------
   6454 20 April 2012. Summary of changes for version 20120420:
   6455 
   6456 
   6457 1) ACPICA Core Subsystem:
   6458 
   6459 Implemented support for multiple notify handlers. This change adds 
   6460 support 
   6461 to 
   6462 allow multiple system and device notify handlers on Device, Thermal Zone, 
   6463 and 
   6464 Processor objects. This can simplify the host OS notification 
   6465 implementation. 
   6466 Also re-worked and restructured the entire notify support code to 
   6467 simplify 
   6468 handler installation, handler removal, notify event queuing, and notify 
   6469 dispatch to handler(s). Note: there can still only be two global notify 
   6470 handlers - one for system notifies and one for device notifies. There are 
   6471 no 
   6472 changes to the existing handler install/remove interfaces. Lin Ming, Bob 
   6473 Moore, Rafael Wysocki.
   6474 
   6475 Fixed a regression in the package repair code where the object reference 
   6476 count was calculated incorrectly. Regression was introduced in the commit 
   6477 "Support to add Package wrappers".
   6478 
   6479 Fixed a couple possible memory leaks in the AML parser, in the error 
   6480 recovery 
   6481 path. Jesper Juhl, Lin Ming.
   6482 
   6483 Example Code and Data Size: These are the sizes for the OS-independent 
   6484 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   6485 debug version of the code includes the debug output trace mechanism and 
   6486 has a 
   6487 much larger code and data size.
   6488 
   6489   Previous Release:
   6490     Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
   6491     Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
   6492   Current Release:
   6493     Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
   6494     Debug Version:     172.6K Code, 73.4K Data, 246.0K Total
   6495 
   6496 
   6497 2) iASL Compiler/Disassembler and Tools:
   6498 
   6499 iASL: Fixed a problem with the resource descriptor support where the 
   6500 length 
   6501 of the StartDependentFn and StartDependentFnNoPrio descriptors were not 
   6502 included in cumulative descriptor offset, resulting in incorrect values 
   6503 for 
   6504 resource tags within resource descriptors appearing after a 
   6505 StartDependent* 
   6506 descriptor. Reported by Petr Vandrovec. ACPICA BZ 949.
   6507 
   6508 iASL and Preprocessor: Implemented full support for the #line directive 
   6509 to 
   6510 correctly track original source file line numbers through the .i 
   6511 preprocessor 
   6512 output file - for error and warning messages.
   6513 
   6514 iASL: Expand the allowable byte constants for address space IDs. 
   6515 Previously, 
   6516 the allowable range was 0x80-0xFF (user-defined spaces), now the range is 
   6517 0x0A-0xFF to allow for custom and new IDs without changing the compiler.
   6518 
   6519 iASL: Add option to treat all warnings as errors (-we). ACPICA BZ 948.
   6520 
   6521 iASL: Add option to completely disable the preprocessor (-Pn).
   6522 
   6523 iASL: Now emit all error/warning messages to standard error (stderr) by 
   6524 default (instead of the previous stdout).
   6525 
   6526 ASL Test Suite (ASLTS): Reduce iASL warnings due to use of Switch(). 
   6527 Update 
   6528 for resource descriptor offset fix above. Update/cleanup error output 
   6529 routines. Enable and send iASL errors/warnings to an error logfile 
   6530 (error.txt). Send all other iASL output to a logfile (compiler.txt). 
   6531 Fixed 
   6532 several extraneous "unrecognized operator" messages.
   6533 
   6534 ----------------------------------------
   6535 20 March 2012. Summary of changes for version 20120320:
   6536 
   6537 
   6538 1) ACPICA Core Subsystem:
   6539 
   6540 Enhanced the sleep/wake interfaces to optionally execute the _GTS method 
   6541 (Going To Sleep) and the _BFS method (Back From Sleep). Windows 
   6542 apparently 
   6543 does not execute these methods, and therefore these methods are often 
   6544 untested. It has been seen on some systems where the execution of these 
   6545 methods causes errors and also prevents the machine from entering S5. It 
   6546 is 
   6547 therefore suggested that host operating systems do not execute these 
   6548 methods 
   6549 by default. In the future, perhaps these methods can be optionally 
   6550 executed 
   6551 based on the age of the system and/or what is the newest version of 
   6552 Windows 
   6553 that the BIOS asks for via _OSI. Changed interfaces: AcpiEnterSleepState 
   6554 and 
   6555 AcpileaveSleepStatePrep. See the ACPICA reference and Linux BZ 13041. Lin 
   6556 Ming.
   6557 
   6558 Fixed a problem where the length of the local/common FADT was set too 
   6559 early. 
   6560 The local FADT table length cannot be set to the common length until the 
   6561 original length has been examined. There is code that checks the table 
   6562 length 
   6563 and sets various fields appropriately. This can affect older machines 
   6564 with 
   6565 early FADT versions. For example, this can cause inadvertent writes to 
   6566 the 
   6567 CST_CNT register. Julian Anastasov.
   6568 
   6569 Fixed a mapping issue related to a physical table override. Use the 
   6570 deferred 
   6571 mapping mechanism for tables loaded via the physical override OSL 
   6572 interface. 
   6573 This allows for early mapping before the virtual memory manager is 
   6574 available. 
   6575 Thomas Renninger, Bob Moore.
   6576 
   6577 Enhanced the automatic return-object repair code: Repair a common problem 
   6578 with 
   6579 predefined methods that are defined to return a variable-length Package 
   6580 of 
   6581 sub-objects. If there is only one sub-object, some BIOS ASL code 
   6582 mistakenly 
   6583 simply returns the single object instead of a Package with one sub-
   6584 object. 
   6585 This new support will repair this error by wrapping a Package object 
   6586 around 
   6587 the original object, creating the correct and expected Package with one 
   6588 sub-
   6589 object. Names that can be repaired in this manner include: _ALR, _CSD, 
   6590 _HPX, 
   6591 _MLS, _PLD, _PRT, _PSS, _TRT, _TSS, _BCL, _DOD, _FIX, and _Sx. ACPICA BZ 
   6592 939.
   6593 
   6594 Changed the exception code returned for invalid ACPI paths passed as 
   6595 parameters to external interfaces such as AcpiEvaluateObject. Was 
   6596 AE_BAD_PARAMETER, now is the more sensible AE_BAD_PATHNAME.
   6597 
   6598 Example Code and Data Size: These are the sizes for the OS-independent 
   6599 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   6600 debug 
   6601 version of the code includes the debug output trace mechanism and has a 
   6602 much 
   6603 larger code and data size.
   6604 
   6605   Previous Release:
   6606     Non-Debug Version:  93.0K Code, 25.0K Data, 118.0K Total
   6607     Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
   6608   Current Release:
   6609     Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
   6610     Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
   6611 
   6612 
   6613 2) iASL Compiler/Disassembler and Tools:
   6614 
   6615 iASL: Added the infrastructure and initial implementation of a integrated 
   6616 C-
   6617 like preprocessor. This will simplify BIOS development process by 
   6618 eliminating 
   6619 the need for a separate preprocessing step during builds. On Windows, it 
   6620 also 
   6621 eliminates the need to install a separate C compiler. ACPICA BZ 761. Some 
   6622 features including full #define() macro support are still under 
   6623 development. 
   6624 These preprocessor directives are supported:
   6625     #define
   6626     #elif
   6627     #else
   6628     #endif
   6629     #error
   6630     #if
   6631     #ifdef
   6632     #ifndef
   6633     #include
   6634     #pragma message
   6635     #undef
   6636     #warning
   6637 In addition, these new command line options are supported:
   6638     -D <symbol> Define symbol for preprocessor use
   6639     -li         Create preprocessed output file (*.i)
   6640     -P          Preprocess only and create preprocessor output file (*.i)
   6641 
   6642 Table Compiler: Fixed a problem where the equals operator within an 
   6643 expression 
   6644 did not work properly.
   6645 
   6646 Updated iASL to use the current versions of Bison/Flex. Updated the 
   6647 Windows 
   6648 project file to invoke these tools from the standard location. ACPICA BZ 
   6649 904. 
   6650 Versions supported:
   6651     Flex for Windows:  V2.5.4
   6652     Bison for Windows: V2.4.1
   6653 
   6654 ----------------------------------------
   6655 15 February 2012. Summary of changes for version 20120215:
   6656 
   6657 
   6658 1) ACPICA Core Subsystem:
   6659 
   6660 There have been some major changes to the sleep/wake support code, as 
   6661 described below (a - e).
   6662 
   6663 a) The AcpiLeaveSleepState has been split into two interfaces, similar to 
   6664 AcpiEnterSleepStatePrep and AcpiEnterSleepState. The new interface is 
   6665 AcpiLeaveSleepStatePrep. This allows the host to perform actions between 
   6666 the 
   6667 time the _BFS method is called and the _WAK method is called. NOTE: all 
   6668 hosts 
   6669 must update their wake/resume code or else sleep/wake will not work 
   6670 properly. 
   6671 Rafael Wysocki.
   6672 
   6673 b) In AcpiLeaveSleepState, now enable all runtime GPEs before calling the 
   6674 _WAK 
   6675 method. Some machines require that the GPEs are enabled before the _WAK 
   6676 method 
   6677 is executed. Thomas Renninger.
   6678 
   6679 c) In AcpiLeaveSleepState, now always clear the WAK_STS (wake status) 
   6680 bit. 
   6681 Some BIOS code assumes that WAK_STS will be cleared on resume and use it 
   6682 to 
   6683 determine whether the system is rebooting or resuming. Matthew Garrett.
   6684 
   6685 d) Move the invocations of _GTS (Going To Sleep) and _BFS (Back From 
   6686 Sleep) to 
   6687 match the ACPI specification requirement. Rafael Wysocki.
   6688 
   6689 e) Implemented full support for the ACPI 5.0 SleepStatus and SleepControl 
   6690 registers within the V5 FADT. This support adds two new files: 
   6691 hardware/hwesleep.c implements the support for the new registers. Moved 
   6692 all 
   6693 sleep/wake external interfaces to hardware/hwxfsleep.c.
   6694 
   6695 
   6696 Added a new OSL interface for ACPI table overrides, 
   6697 AcpiOsPhysicalTableOverride. This interface allows the host to override a 
   6698 table via a physical address, instead of the logical address required by 
   6699 AcpiOsTableOverride. This simplifies the host implementation. Initial 
   6700 implementation by Thomas Renninger. The ACPICA implementation creates a 
   6701 single 
   6702 shared function for table overrides that attempts both a logical and a 
   6703 physical override.
   6704 
   6705 Expanded the OSL memory read/write interfaces to 64-bit data 
   6706 (AcpiOsReadMemory, AcpiOsWriteMemory.) This enables full 64-bit memory 
   6707 transfer support for GAS register structures passed to AcpiRead and 
   6708 AcpiWrite.
   6709 
   6710 Implemented the ACPI_REDUCED_HARDWARE option to allow the creation of a 
   6711 custom 
   6712 build of ACPICA that supports only the ACPI 5.0 reduced hardware (SoC) 
   6713 model. 
   6714 See the ACPICA reference for details. ACPICA BZ 942. This option removes 
   6715 about 
   6716 10% of the code and 5% of the static data, and the following hardware 
   6717 ACPI 
   6718 features become unavailable:
   6719     PM Event and Control registers
   6720     SCI interrupt (and handler)
   6721     Fixed Events
   6722     General Purpose Events (GPEs)
   6723     Global Lock
   6724     ACPI PM timer
   6725     FACS table (Waking vectors and Global Lock)
   6726 
   6727 Updated the unix tarball directory structure to match the ACPICA git 
   6728 source 
   6729 tree. This ensures that the generic unix makefiles work properly (in 
   6730 generate/unix).  Also updated the Linux makefiles to match. ACPICA BZ 
   6731 867.
   6732 
   6733 Updated the return value of the _REV predefined method to integer value 5 
   6734 to 
   6735 reflect ACPI 5.0 support.
   6736 
   6737 Moved the external ACPI PM timer interface prototypes to the public 
   6738 acpixf.h 
   6739 file where they belong.
   6740 
   6741 Example Code and Data Size: These are the sizes for the OS-independent 
   6742 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   6743 debug 
   6744 version of the code includes the debug output trace mechanism and has a 
   6745 much 
   6746 larger code and data size.
   6747 
   6748   Previous Release:
   6749     Non-Debug Version:  92.8K Code, 24.9K Data, 117.7K Total
   6750     Debug Version:     171.7K Code, 72.9K Data, 244.5K Total
   6751   Current Release:
   6752     Non-Debug Version:  93.0K Code, 25.0K Data, 118.0K Total
   6753     Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
   6754 
   6755 
   6756 2) iASL Compiler/Disassembler and Tools:
   6757 
   6758 Disassembler: Fixed a problem with the new ACPI 5.0 serial resource 
   6759 descriptors (I2C, SPI, UART) where the resource produce/consumer bit was 
   6760 incorrectly displayed.
   6761 
   6762 AcpiHelp: Add display of ACPI/PNP device IDs that are defined in the ACPI 
   6763 specification.
   6764 
   6765 ----------------------------------------
   6766 11 January 2012. Summary of changes for version 20120111:
   6767 
   6768 
   6769 1) ACPICA Core Subsystem:
   6770 
   6771 Implemented a new mechanism to allow host device drivers to check for 
   6772 address 
   6773 range conflicts with ACPI Operation Regions. Both SystemMemory and 
   6774 SystemIO 
   6775 address spaces are supported. A new external interface, 
   6776 AcpiCheckAddressRange, 
   6777 allows drivers to check an address range against the ACPI namespace. See 
   6778 the 
   6779 ACPICA reference for additional details. Adds one new file, 
   6780 utilities/utaddress.c. Lin Ming, Bob Moore.
   6781 
   6782 Fixed several issues with the ACPI 5.0 FADT support: Add the sleep 
   6783 Control 
   6784 and 
   6785 Status registers, update the ACPI 5.0 flags, and update internal data 
   6786 structures to handle an FADT larger than 256 bytes. The size of the ACPI 
   6787 5.0 
   6788 FADT is 268 bytes.
   6789 
   6790 Updated all ACPICA copyrights and signons to 2012. Added the 2012 
   6791 copyright to 
   6792 all module headers and signons, including the standard Linux header. This 
   6793 affects virtually every file in the ACPICA core subsystem, iASL compiler, 
   6794 and 
   6795 all ACPICA utilities.
   6796 
   6797 Example Code and Data Size: These are the sizes for the OS-independent 
   6798 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   6799 debug 
   6800 version of the code includes the debug output trace mechanism and has a 
   6801 much 
   6802 larger code and data size.
   6803 
   6804   Previous Release:
   6805     Non-Debug Version:  92.3K Code, 24.9K Data, 117.2K Total
   6806     Debug Version:     170.8K Code, 72.6K Data, 243.4K Total
   6807   Current Release:
   6808     Non-Debug Version:  92.8K Code, 24.9K Data, 117.7K Total
   6809     Debug Version:     171.7K Code, 72.9K Data, 244.5K Total
   6810 
   6811 
   6812 2) iASL Compiler/Disassembler and Tools:
   6813 
   6814 Disassembler: fixed a problem with the automatic resource tag generation 
   6815 support. Fixes a problem where the resource tags are inadvertently not 
   6816 constructed if the table being disassembled contains external references 
   6817 to 
   6818 control methods. Moved the actual construction of the tags to after the 
   6819 final 
   6820 namespace is constructed (after 2nd parse is invoked due to external 
   6821 control 
   6822 method references.) ACPICA BZ 941.
   6823 
   6824 Table Compiler: Make all "generic" operators caseless. These are the 
   6825 operators 
   6826 like UINT8, String, etc. Making these caseless improves ease-of-use. 
   6827 ACPICA BZ 
   6828 934.
   6829 
   6830 ----------------------------------------
   6831 23 November 2011. Summary of changes for version 20111123:
   6832 
   6833 0) ACPI 5.0 Support:
   6834 
   6835 This release contains full support for the ACPI 5.0 specification, as 
   6836 summarized below.
   6837 
   6838 Reduced Hardware Support:
   6839 -------------------------
   6840 
   6841 This support allows for ACPI systems without the usual ACPI hardware. 
   6842 This 
   6843 support is enabled by a flag in the revision 5 FADT. If it is set, ACPICA 
   6844 will 
   6845 not attempt to initialize or use any of the usual ACPI hardware. Note, 
   6846 when 
   6847 this flag is set, all of the following ACPI hardware is assumed to be not 
   6848 present and is not initialized or accessed:
   6849 
   6850     General Purpose Events (GPEs)
   6851     Fixed Events (PM1a/PM1b and PM Control)
   6852     Power Management Timer and Console Buttons (power/sleep)
   6853     Real-time Clock Alarm
   6854     Global Lock
   6855     System Control Interrupt (SCI)
   6856     The FACS is assumed to be non-existent
   6857 
   6858 ACPI Tables:
   6859 ------------
   6860 
   6861 All new tables and updates to existing tables are fully supported in the 
   6862 ACPICA headers (for use by device drivers), the disassembler, and the 
   6863 iASL 
   6864 Data Table Compiler. ACPI 5.0 defines these new tables:
   6865 
   6866     BGRT        /* Boot Graphics Resource Table */
   6867     DRTM        /* Dynamic Root of Trust for Measurement table */
   6868     FPDT        /* Firmware Performance Data Table */
   6869     GTDT        /* Generic Timer Description Table */
   6870     MPST        /* Memory Power State Table */
   6871     PCCT        /* Platform Communications Channel Table */
   6872     PMTT        /* Platform Memory Topology Table */
   6873     RASF        /* RAS Feature table */
   6874 
   6875 Operation Regions/SpaceIDs:
   6876 ---------------------------
   6877 
   6878 All new operation regions are fully supported by the iASL compiler, the 
   6879 disassembler, and the ACPICA runtime code (for dispatch to region 
   6880 handlers.) 
   6881 The new operation region Space IDs are:
   6882 
   6883     GeneralPurposeIo
   6884     GenericSerialBus
   6885 
   6886 Resource Descriptors:
   6887 ---------------------
   6888 
   6889 All new ASL resource descriptors are fully supported by the iASL 
   6890 compiler, 
   6891 the 
   6892 ASL/AML disassembler, and the ACPICA runtime Resource Manager code 
   6893 (including 
   6894 all new predefined resource tags). New descriptors are:
   6895 
   6896     FixedDma
   6897     GpioIo
   6898     GpioInt
   6899     I2cSerialBus
   6900     SpiSerialBus
   6901     UartSerialBus
   6902 
   6903 ASL/AML Operators, New and Modified:
   6904 ------------------------------------
   6905 
   6906 One new operator is added, the Connection operator, which is used to 
   6907 associate 
   6908 a GeneralPurposeIo or GenericSerialBus resource descriptor with 
   6909 individual 
   6910 field objects within an operation region. Several new protocols are 
   6911 associated 
   6912 with the AccessAs operator. All are fully supported by the iASL compiler, 
   6913 disassembler, and runtime ACPICA AML interpreter:
   6914 
   6915     Connection                      // Declare Field Connection 
   6916 attributes
   6917     AccessAs: AttribBytes (n)           // Read/Write N-Bytes Protocol
   6918     AccessAs: AttribRawBytes (n)        // Raw Read/Write N-Bytes 
   6919 Protocol
   6920     AccessAs: AttribRawProcessBytes (n) // Raw Process Call Protocol
   6921     RawDataBuffer                       // Data type for Vendor Data 
   6922 fields
   6923 
   6924 Predefined ASL/AML Objects:
   6925 ---------------------------
   6926 
   6927 All new predefined objects/control-methods are supported by the iASL 
   6928 compiler 
   6929 and the ACPICA runtime validation/repair (arguments and return values.) 
   6930 New 
   6931 predefined names include the following:
   6932 
   6933 Standard Predefined Names (Objects or Control Methods):
   6934     _AEI, _CLS, _CPC, _CWS, _DEP,
   6935     _DLM, _EVT, _GCP, _CRT, _GWS,
   6936     _HRV, _PRE, _PSE, _SRT, _SUB.
   6937 
   6938 Resource Tags (Names used to access individual fields within resource 
   6939 descriptors):
   6940     _DBT, _DPL, _DRS, _END, _FLC,
   6941     _IOR, _LIN, _MOD, _PAR, _PHA,
   6942     _PIN, _PPI, _POL, _RXL, _SLV,
   6943     _SPE, _STB, _TXL, _VEN.
   6944 
   6945 ACPICA External Interfaces:
   6946 ---------------------------
   6947 
   6948 Several new interfaces have been defined for use by ACPI-related device 
   6949 drivers and other host OS services:
   6950 
   6951 AcpiAcquireMutex and AcpiReleaseMutex: These interfaces allow the host OS 
   6952 to 
   6953 acquire and release AML mutexes that are defined in the DSDT/SSDT tables 
   6954 provided by the BIOS. They are intended to be used in conjunction with 
   6955 the 
   6956 ACPI 5.0 _DLM (Device Lock Method) in order to provide transaction-level 
   6957 mutual exclusion with the AML code/interpreter.
   6958 
   6959 AcpiGetEventResources: Returns the (formatted) resource descriptors as 
   6960 defined 
   6961 by the ACPI 5.0 _AEI object (ACPI Event Information).  This object 
   6962 provides 
   6963 resource descriptors associated with hardware-reduced platform events, 
   6964 similar 
   6965 to the AcpiGetCurrentResources interface.
   6966 
   6967 Operation Region Handlers: For General Purpose IO and Generic Serial Bus 
   6968 operation regions, information about the Connection() object and any 
   6969 optional 
   6970 length information is passed to the region handler within the Context 
   6971 parameter.
   6972 
   6973 AcpiBufferToResource: This interface converts a raw AML buffer containing 
   6974 a 
   6975 resource template or resource descriptor to the ACPI_RESOURCE internal 
   6976 format 
   6977 suitable for use by device drivers. Can be used by an operation region 
   6978 handler 
   6979 to convert the Connection() buffer object into a ACPI_RESOURCE.
   6980 
   6981 Miscellaneous/Tools/TestSuites: 
   6982 -------------------------------
   6983 
   6984 Support for extended _HID names (Four alpha characters instead of three).
   6985 Support for ACPI 5.0 features in the AcpiExec and AcpiHelp utilities.
   6986 Support for ACPI 5.0 features in the ASLTS test suite.
   6987 Fully updated documentation (ACPICA and iASL reference documents.)
   6988 
   6989 ACPI Table Definition Language:
   6990 -------------------------------
   6991 
   6992 Support for this language was implemented and released as a subsystem of 
   6993 the 
   6994 iASL compiler in 2010. (See the iASL compiler User Guide.)
   6995 
   6996 
   6997 Non-ACPI 5.0 changes for this release:
   6998 --------------------------------------
   6999 
   7000 1) ACPICA Core Subsystem:
   7001 
   7002 Fix a problem with operation region declarations where a failure can 
   7003 occur 
   7004 if 
   7005 the region name and an argument that evaluates to an object (such as the 
   7006 region address) are in different namespace scopes. Lin Ming, ACPICA BZ 
   7007 937.
   7008 
   7009 Do not abort an ACPI table load if an invalid space ID is found within. 
   7010 This 
   7011 will be caught later if the offending method is executed. ACPICA BZ 925.
   7012 
   7013 Fixed an issue with the FFixedHW space ID where the ID was not always 
   7014 recognized properly (Both ACPICA and iASL). ACPICA BZ 926.
   7015 
   7016 Fixed a problem with the 32-bit generation of the unix-specific OSL 
   7017 (osunixxf.c). Lin Ming, ACPICA BZ 936.
   7018 
   7019 Several changes made to enable generation with the GCC 4.6 compiler. 
   7020 ACPICA BZ 
   7021 935.
   7022 
   7023 New error messages: Unsupported I/O requests (not 8/16/32 bit), and 
   7024 Index/Bank 
   7025 field registers out-of-range.
   7026 
   7027 2) iASL Compiler/Disassembler and Tools:
   7028 
   7029 iASL: Implemented the __PATH__ operator, which returns the full pathname 
   7030 of 
   7031 the current source file.
   7032 
   7033 AcpiHelp: Automatically display expanded keyword information for all ASL 
   7034 operators.
   7035 
   7036 Debugger: Add "Template" command to disassemble/dump resource template 
   7037 buffers.
   7038 
   7039 Added a new master script to generate and execute the ASLTS test suite. 
   7040 Automatically handles 32- and 64-bit generation. See tests/aslts.sh
   7041 
   7042 iASL: Fix problem with listing generation during processing of the 
   7043 Switch() 
   7044 operator where AML listing was disabled until the entire Switch block was 
   7045 completed.
   7046 
   7047 iASL: Improve support for semicolon statement terminators. Fix "invalid 
   7048 character" message for some cases when the semicolon is used. Semicolons 
   7049 are 
   7050 now allowed after every <Term> grammar element. ACPICA BZ 927.
   7051 
   7052 iASL: Fixed some possible aliasing warnings during generation. ACPICA BZ 
   7053 923.
   7054 
   7055 Disassembler: Fix problem with disassembly of the DataTableRegion 
   7056 operator 
   7057 where an inadvertent "Unhandled deferred opcode" message could be 
   7058 generated.
   7059 
   7060 3) Example Code and Data Size
   7061 
   7062 These are the sizes for the OS-independent acpica.lib produced by the 
   7063 Microsoft Visual C++ 9.0 32-bit compiler. The debug version of the code 
   7064 includes the debug output trace mechanism and has a much larger code and 
   7065 data 
   7066 size.
   7067 
   7068   Previous Release:
   7069     Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
   7070     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
   7071   Current Release:
   7072     Non-Debug Version:  92.3K Code, 24.9K Data, 117.2K Total
   7073     Debug Version:     170.8K Code, 72.6K Data, 243.4K Total
   7074 
   7075 ----------------------------------------
   7076 22 September 2011. Summary of changes for version 20110922:
   7077 
   7078 0) ACPI 5.0 News:
   7079 
   7080 Support for ACPI 5.0 in ACPICA has been underway for several months and 
   7081 will 
   7082 be released at the same time that ACPI 5.0 is officially released.
   7083 
   7084 The ACPI 5.0 specification is on track for release in the next few 
   7085 months.
   7086  
   7087 1) ACPICA Core Subsystem:
   7088 
   7089 Fixed a problem where the maximum sleep time for the Sleep() operator was 
   7090 intended to be limited to two seconds, but was inadvertently limited to 
   7091 20 
   7092 seconds instead.
   7093 
   7094 Linux and Unix makefiles: Added header file dependencies to ensure 
   7095 correct 
   7096 generation of ACPICA core code and utilities. Also simplified the 
   7097 makefiles 
   7098 considerably through the use of the vpath variable to specify search 
   7099 paths. 
   7100 ACPICA BZ 924.
   7101 
   7102 2) iASL Compiler/Disassembler and Tools:
   7103 
   7104 iASL: Implemented support to check the access length for all fields 
   7105 created to 
   7106 access named Resource Descriptor fields. For example, if a resource field 
   7107 is 
   7108 defined to be two bits, a warning is issued if a CreateXxxxField() is 
   7109 used 
   7110 with an incorrect bit length. This is implemented for all current 
   7111 resource 
   7112 descriptor names. ACPICA BZ 930.
   7113   
   7114 Disassembler: Fixed a byte ordering problem with the output of 24-bit and 
   7115 56-
   7116 bit integers.
   7117 
   7118 iASL: Fixed a couple of issues associated with variable-length package 
   7119 objects. 1) properly handle constants like One, Ones, Zero -- do not make 
   7120 a 
   7121 VAR_PACKAGE when these are used as a package length. 2) Allow the 
   7122 VAR_PACKAGE 
   7123 opcode (in addition to PACKAGE) when validating object types for 
   7124 predefined 
   7125 names.
   7126 
   7127 iASL: Emit statistics for all output files (instead of just the ASL input 
   7128 and 
   7129 AML output). Includes listings, hex files, etc.
   7130 
   7131 iASL: Added -G option to the table compiler to allow the compilation of 
   7132 custom 
   7133 ACPI tables. The only part of a table that is required is the standard 
   7134 36-
   7135 byte 
   7136 ACPI header.
   7137 
   7138 AcpiXtract: Ported to the standard ACPICA environment (with ACPICA 
   7139 headers), 
   7140 which also adds correct 64-bit support. Also, now all output filenames 
   7141 are 
   7142 completely lower case.
   7143 
   7144 AcpiExec: Ignore any non-AML tables (tables other than DSDT or SSDT) when 
   7145 loading table files. A warning is issued for any such tables. The only 
   7146 exception is an FADT. This also fixes a possible fault when attempting to 
   7147 load 
   7148 non-AML tables. ACPICA BZ 932.
   7149 
   7150 AcpiHelp: Added the AccessAs and Offset operators. Fixed a problem where 
   7151 a 
   7152 missing table terminator could cause a fault when using the -p option.
   7153 
   7154 AcpiSrc: Fixed a possible divide-by-zero fault when generating file 
   7155 statistics.
   7156 
   7157 3) Example Code and Data Size
   7158 
   7159 These are the sizes for the OS-independent acpica.lib produced by the 
   7160 Microsoft Visual C++ 9.0 32-bit compiler. The debug version of the code 
   7161 includes the debug output trace mechanism and has a much larger code and 
   7162 data 
   7163 size.
   7164 
   7165   Previous Release (VC 9.0):
   7166     Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
   7167     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
   7168   Current Release (VC 9.0):
   7169     Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
   7170     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
   7171 
   7172 
   7173 ----------------------------------------
   7174 23 June 2011. Summary of changes for version 20110623:
   7175 
   7176 1) ACPI CA Core Subsystem:
   7177 
   7178 Updated the predefined name repair mechanism to not attempt repair of a 
   7179 _TSS 
   7180 return object if a _PSS object is present. We can only sort the _TSS 
   7181 return 
   7182 package if there is no _PSS within the same scope. This is because if 
   7183 _PSS 
   7184 is 
   7185 present, the ACPI specification dictates that the _TSS Power Dissipation 
   7186 field 
   7187 is to be ignored, and therefore some BIOSs leave garbage values in the 
   7188 _TSS 
   7189 Power field(s). In this case, it is best to just return the _TSS package 
   7190 as-
   7191 is. Reported by, and fixed with assistance from Fenghua Yu.
   7192 
   7193 Added an option to globally disable the control method return value 
   7194 validation 
   7195 and repair. This runtime option can be used to disable return value 
   7196 repair 
   7197 if 
   7198 this is causing a problem on a particular machine. Also added an option 
   7199 to 
   7200 AcpiExec (-dr) to set this disable flag.
   7201 
   7202 All makefiles and project files: Major changes to improve generation of 
   7203 ACPICA 
   7204 tools. ACPICA BZ 912:
   7205     Reduce default optimization levels to improve compatibility
   7206     For Linux, add strict-aliasing=0 for gcc 4
   7207     Cleanup and simplify use of command line defines
   7208     Cleanup multithread library support
   7209     Improve usage messages
   7210 
   7211 Linux-specific header: update handling of THREAD_ID and pthread. For the 
   7212 32-
   7213 bit case, improve casting to eliminate possible warnings, especially with 
   7214 the 
   7215 acpica tools.
   7216 
   7217 Example Code and Data Size: These are the sizes for the OS-independent 
   7218 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   7219 debug 
   7220 version of the code includes the debug output trace mechanism and has a 
   7221 much 
   7222 larger code and data size.
   7223 
   7224   Previous Release (VC 9.0):
   7225     Non-Debug Version:  90.1K Code, 23.9K Data, 114.0K Total
   7226     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
   7227   Current Release (VC 9.0):
   7228     Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
   7229     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
   7230 
   7231 2) iASL Compiler/Disassembler and Tools:
   7232 
   7233 With this release, a new utility named "acpihelp" has been added to the 
   7234 ACPICA 
   7235 package. This utility summarizes the ACPI specification chapters for the 
   7236 ASL 
   7237 and AML languages. It generates under Linux/Unix as well as Windows, and 
   7238 provides the following functionality:
   7239     Find/display ASL operator(s) -- with description and syntax.
   7240     Find/display ASL keyword(s) -- with exact spelling and descriptions.
   7241     Find/display ACPI predefined name(s) -- with description, number
   7242         of arguments, and the return value data type.
   7243     Find/display AML opcode name(s) -- with opcode, arguments, and 
   7244 grammar.
   7245     Decode/display AML opcode -- with opcode name, arguments, and 
   7246 grammar.
   7247 
   7248 Service Layers: Make multi-thread support configurable. Conditionally 
   7249 compile 
   7250 the multi-thread support so that threading libraries will not be linked 
   7251 if 
   7252 not 
   7253 necessary. The only tool that requires multi-thread support is AcpiExec.
   7254 
   7255 iASL: Update yyerrror/AslCompilerError for "const" errors. Newer versions 
   7256 of 
   7257 Bison appear to want the interface to yyerror to be a const char * (or at 
   7258 least this is a problem when generating iASL on some systems.) ACPICA BZ 
   7259 923 
   7260 Pierre Lejeune.
   7261 
   7262 Tools: Fix for systems where O_BINARY is not defined. Only used for 
   7263 Windows 
   7264 versions of the tools.
   7265 
   7266 ----------------------------------------
   7267 27 May 2011. Summary of changes for version 20110527:
   7268 
   7269 1) ACPI CA Core Subsystem:
   7270 
   7271 ASL Load() operator: Reinstate most restrictions on the incoming ACPI 
   7272 table 
   7273 signature. Now, only allow SSDT, OEMx, and a null signature. History:
   7274     1) Originally, we checked the table signature for "SSDT" or "PSDT".
   7275        (PSDT is now obsolete.)
   7276     2) We added support for OEMx tables, signature "OEM" plus a fourth
   7277        "don't care" character.
   7278     3) Valid tables were encountered with a null signature, so we just
   7279        gave up on validating the signature, (05/2008).
   7280     4) We encountered non-AML tables such as the MADT, which caused
   7281        interpreter errors and kernel faults. So now, we once again allow
   7282        only SSDT, OEMx, and now, also a null signature. (05/2011).
   7283 
   7284 Added the missing _TDL predefined name to the global name list in order 
   7285 to 
   7286 enable validation. Affects both the core ACPICA code and the iASL 
   7287 compiler.
   7288 
   7289 Example Code and Data Size: These are the sizes for the OS-independent 
   7290 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   7291 debug 
   7292 version of the code includes the debug output trace mechanism and has a 
   7293 much 
   7294 larger code and data size.
   7295 
   7296   Previous Release (VC 9.0):
   7297     Non-Debug Version:  90.0K Code, 23.8K Data, 113.8K Total
   7298     Debug Version:     164.5K Code, 68.0K Data, 232.5K Total
   7299   Current Release (VC 9.0):
   7300     Non-Debug Version:  90.1K Code, 23.9K Data, 114.0K Total
   7301     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
   7302 
   7303 2) iASL Compiler/Disassembler and Tools:
   7304 
   7305 Debugger/AcpiExec: Implemented support for "complex" method arguments on 
   7306 the 
   7307 debugger command line. This adds support beyond simple integers -- 
   7308 including 
   7309 Strings, Buffers, and Packages. Includes support for nested packages. 
   7310 Increased the default command line buffer size to accommodate these 
   7311 arguments. 
   7312 See the ACPICA reference for details and syntax. ACPICA BZ 917.
   7313  
   7314 Debugger/AcpiExec: Implemented support for "default" method arguments for 
   7315 the 
   7316 Execute/Debug command. Now, the debugger will always invoke a control 
   7317 method 
   7318 with the required number of arguments -- even if the command line 
   7319 specifies 
   7320 none or insufficient arguments. It uses default integer values for any 
   7321 missing 
   7322 arguments. Also fixes a bug where only six method arguments maximum were 
   7323 supported instead of the required seven.
   7324 
   7325 Debugger/AcpiExec: Add a maximum buffer length parameter to AcpiOsGetLine 
   7326 and 
   7327 also return status in order to prevent buffer overruns. See the ACPICA 
   7328 reference for details and syntax. ACPICA BZ 921
   7329 
   7330 iASL: Cleaned up support for Berkeley yacc. A general cleanup of code and 
   7331 makefiles to simplify support for the two different but similar parser 
   7332 generators, bison and yacc.
   7333 
   7334 Updated the generic unix makefile for gcc 4. The default gcc version is 
   7335 now 
   7336 expected to be 4 or greater, since options specific to gcc 4 are used.
   7337 
   7338 ----------------------------------------
   7339 13 April 2011. Summary of changes for version 20110413:
   7340 
   7341 1) ACPI CA Core Subsystem:
   7342 
   7343 Implemented support to execute a so-called "orphan" _REG method under the 
   7344 EC 
   7345 device. This change will force the execution of a _REG method underneath 
   7346 the 
   7347 EC 
   7348 device even if there is no corresponding operation region of type 
   7349 EmbeddedControl. Fixes a problem seen on some machines and apparently is 
   7350 compatible with Windows behavior. ACPICA BZ 875.
   7351 
   7352 Added more predefined methods that are eligible for automatic NULL 
   7353 package 
   7354 element removal. This change adds another group of predefined names to 
   7355 the 
   7356 list 
   7357 of names that can be repaired by having NULL package elements dynamically 
   7358 removed. This group are those methods that return a single variable-
   7359 length 
   7360 package containing simple data types such as integers, buffers, strings. 
   7361 This 
   7362 includes: _ALx, _BCL, _CID,_ DOD, _EDL, _FIX, _PCL, _PLD, _PMD, _PRx, 
   7363 _PSL, 
   7364 _Sx, 
   7365 and _TZD. ACPICA BZ 914.
   7366 
   7367 Split and segregated all internal global lock functions to a new file, 
   7368 evglock.c.
   7369 
   7370 Updated internal address SpaceID for DataTable regions. Moved this 
   7371 internal 
   7372 space 
   7373 id in preparation for ACPI 5.0 changes that will include some new space 
   7374 IDs. 
   7375 This 
   7376 change should not affect user/host code.
   7377 
   7378 Example Code and Data Size: These are the sizes for the OS-independent 
   7379 acpica.lib 
   7380 produced by the Microsoft Visual C++ 9.0 32-bit compiler. The debug 
   7381 version of 
   7382 the code includes the debug output trace mechanism and has a much larger 
   7383 code 
   7384 and 
   7385 data size.
   7386 
   7387   Previous Release (VC 9.0):
   7388     Non-Debug Version:  89.8K Code, 23.8K Data, 113.6K Total
   7389     Debug Version:     164.2K Code, 67.9K Data, 232.1K Total
   7390   Current Release (VC 9.0):
   7391     Non-Debug Version:  90.0K Code, 23.8K Data, 113.8K Total
   7392     Debug Version:     164.5K Code, 68.0K Data, 232.5K Total
   7393 
   7394 2) iASL Compiler/Disassembler and Tools:
   7395 
   7396 iASL/DTC: Major update for new grammar features. Allow generic data types 
   7397 in 
   7398 custom ACPI tables. Field names are now optional. Any line can be split 
   7399 to 
   7400 multiple lines using the continuation char (\). Large buffers now use 
   7401 line-
   7402 continuation character(s) and no colon on the continuation lines. See the 
   7403 grammar 
   7404 update in the iASL compiler reference. ACPI BZ 910,911. Lin Ming, Bob 
   7405 Moore.
   7406 
   7407 iASL: Mark ASL "Return()" and the simple "Return" as "Null" return 
   7408 statements. 
   7409 Since the parser stuffs a "zero" as the return value for these statements 
   7410 (due 
   7411 to 
   7412 the underlying AML grammar), they were seen as "return with value" by the 
   7413 iASL 
   7414 semantic checking. They are now seen correctly as "null" return 
   7415 statements.
   7416 
   7417 iASL: Check if a_REG declaration has a corresponding Operation Region. 
   7418 Adds a 
   7419 check for each _REG to ensure that there is in fact a corresponding 
   7420 operation 
   7421 region declaration in the same scope. If not, the _REG method is not very 
   7422 useful 
   7423 since it probably won't be executed. ACPICA BZ 915.
   7424 
   7425 iASL/DTC: Finish support for expression evaluation. Added a new 
   7426 expression 
   7427 parser 
   7428 that implements c-style operator precedence and parenthesization. ACPICA 
   7429 bugzilla 
   7430 908.
   7431 
   7432 Disassembler/DTC: Remove support for () and <> style comments in data 
   7433 tables. 
   7434 Now 
   7435 that DTC has full expression support, we don't want to have comment 
   7436 strings 
   7437 that 
   7438 start with a parentheses or a less-than symbol. Now, only the standard /* 
   7439 and 
   7440 // 
   7441 comments are supported, as well as the bracket [] comments.
   7442 
   7443 AcpiXtract: Fix for RSDP and dynamic SSDT extraction. These tables have 
   7444 "unusual" 
   7445 headers in the acpidump file. Update the header validation to support 
   7446 these 
   7447 tables. Problem introduced in previous AcpiXtract version in the change 
   7448 to 
   7449 support "wrong checksum" error messages emitted by acpidump utility.
   7450 
   7451 iASL: Add a * option to generate all template files (as a synonym for 
   7452 ALL) 
   7453 as 
   7454 in 
   7455 "iasl -T *" or "iasl -T ALL".
   7456 
   7457 iASL/DTC: Do not abort compiler on fatal errors. We do not want to 
   7458 completely 
   7459 abort the compiler on "fatal" errors, simply should abort the current 
   7460 compile. 
   7461 This allows multiple compiles with a single (possibly wildcard) compiler 
   7462 invocation.
   7463 
   7464 ----------------------------------------
   7465 16 March 2011. Summary of changes for version 20110316:
   7466 
   7467 1) ACPI CA Core Subsystem:
   7468 
   7469 Fixed a problem caused by a _PRW method appearing at the namespace root 
   7470 scope 
   7471 during the setup of wake GPEs. A fault could occur if a _PRW directly 
   7472 under 
   7473 the 
   7474 root object was passed to the AcpiSetupGpeForWake interface. Lin Ming.
   7475 
   7476 Implemented support for "spurious" Global Lock interrupts. On some 
   7477 systems, a 
   7478 global lock interrupt can occur without the pending flag being set. Upon 
   7479 a 
   7480 GL 
   7481 interrupt, we now ensure that a thread is actually waiting for the lock 
   7482 before 
   7483 signaling GL availability. Rafael Wysocki, Bob Moore.
   7484 
   7485 Example Code and Data Size: These are the sizes for the OS-independent 
   7486 acpica.lib 
   7487 produced by the Microsoft Visual C++ 9.0 32-bit compiler. The debug 
   7488 version of 
   7489 the code includes the debug output trace mechanism and has a much larger 
   7490 code 
   7491 and 
   7492 data size.
   7493 
   7494   Previous Release (VC 9.0):
   7495     Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
   7496     Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
   7497   Current Release (VC 9.0):
   7498     Non-Debug Version:  89.8K Code, 23.8K Data, 113.6K Total
   7499     Debug Version:     164.2K Code, 67.9K Data, 232.1K Total
   7500 
   7501 2) iASL Compiler/Disassembler and Tools:
   7502 
   7503 Implemented full support for the "SLIC" ACPI table. Includes support in 
   7504 the 
   7505 header files, disassembler, table compiler, and template generator. Bob 
   7506 Moore, 
   7507 Lin Ming.
   7508 
   7509 AcpiXtract: Correctly handle embedded comments and messages from 
   7510 AcpiDump. 
   7511 Apparently some or all versions of acpidump will occasionally emit a 
   7512 comment 
   7513 like 
   7514 "Wrong checksum", etc., into the dump file. This was causing problems for 
   7515 AcpiXtract. ACPICA BZ 905.
   7516 
   7517 iASL: Fix the Linux makefile by removing an inadvertent double file 
   7518 inclusion. 
   7519 ACPICA BZ 913.
   7520 
   7521 AcpiExec: Update installation of operation region handlers. Install one 
   7522 handler 
   7523 for a user-defined address space. This is used by the ASL test suite 
   7524 (ASLTS).
   7525 
   7526 ----------------------------------------
   7527 11 February 2011. Summary of changes for version 20110211:
   7528 
   7529 1) ACPI CA Core Subsystem:
   7530 
   7531 Added a mechanism to defer _REG methods for some early-installed 
   7532 handlers. 
   7533 Most user handlers should be installed before call to 
   7534 AcpiEnableSubsystem. 
   7535 However, Event handlers and region handlers should be installed after 
   7536 AcpiInitializeObjects. Override handlers for the "default" regions should 
   7537 be 
   7538 installed early, however. This change executes all _REG methods for the 
   7539 default regions (Memory/IO/PCI/DataTable) simultaneously to prevent any 
   7540 chicken/egg issues between them. ACPICA BZ 848.
   7541 
   7542 Implemented an optimization for GPE detection. This optimization will 
   7543 simply 
   7544 ignore GPE registers that contain no enabled GPEs -- there is no need to 
   7545 read the register since this information is available internally. This 
   7546 becomes more important on machines with a large GPE space. ACPICA 
   7547 bugzilla 
   7548 884. Lin Ming. Suggestion from Joe Liu.
   7549 
   7550 Removed all use of the highly unreliable FADT revision field. The 
   7551 revision 
   7552 number in the FADT has been found to be completely unreliable and cannot 
   7553 be 
   7554 trusted. Only the actual table length can be used to infer the version. 
   7555 This 
   7556 change updates the ACPICA core and the disassembler so that both no 
   7557 longer 
   7558 even look at the FADT version and instead depend solely upon the FADT 
   7559 length.
   7560 
   7561 Fix an unresolved name issue for the no-debug and no-error-message source 
   7562 generation cases. The _AcpiModuleName was left undefined in these cases, 
   7563 but 
   7564 it is actually needed as a parameter to some interfaces. Define 
   7565 _AcpiModuleName as a null string in these cases. ACPICA Bugzilla 888.
   7566 
   7567 Split several large files (makefiles and project files updated)
   7568   utglobal.c   -> utdecode.c
   7569   dbcomds.c    -> dbmethod.c dbnames.c
   7570   dsopcode.c   -> dsargs.c dscontrol.c
   7571   dsload.c     -> dsload2.c
   7572   aslanalyze.c -> aslbtypes.c aslwalks.c
   7573 
   7574 Example Code and Data Size: These are the sizes for the OS-independent 
   7575 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   7576 debug version of the code includes the debug output trace mechanism and 
   7577 has 
   7578 a much larger code and data size.
   7579 
   7580   Previous Release (VC 9.0):
   7581     Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
   7582     Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
   7583   Current Release (VC 9.0):
   7584     Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
   7585     Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
   7586 
   7587 2) iASL Compiler/Disassembler and Tools:
   7588 
   7589 iASL: Implemented the predefined macros __LINE__, __FILE__, and __DATE__. 
   7590 These are useful C-style macros with the standard definitions. ACPICA 
   7591 bugzilla 898.
   7592 
   7593 iASL/DTC: Added support for integer expressions and labels. Support for 
   7594 full 
   7595 expressions for all integer fields in all ACPI tables. Support for labels 
   7596 in 
   7597 "generic" portions of tables such as UEFI. See the iASL reference manual.
   7598 
   7599 Debugger: Added a command to display the status of global handlers. The 
   7600 "handlers" command will display op region, fixed event, and miscellaneous 
   7601 global handlers. installation status -- and for op regions, whether 
   7602 default 
   7603 or user-installed handler will be used.
   7604 
   7605 iASL: Warn if reserved method incorrectly returns a value. Many 
   7606 predefined 
   7607 names are defined such that they do not return a value. If implemented as 
   7608 a 
   7609 method, issue a warning if such a name explicitly returns a value. ACPICA 
   7610 Bugzilla 855.
   7611 
   7612 iASL: Added detection of GPE method name conflicts. Detects a conflict 
   7613 where 
   7614 there are two GPE methods of the form _Lxy and _Exy in the same scope. 
   7615 (For 
   7616 example, _L1D and _E1D in the same scope.) ACPICA bugzilla 848.
   7617 
   7618 iASL/DTC: Fixed a couple input scanner issues with comments and line 
   7619 numbers. Comment remover could get confused and miss a comment ending. 
   7620 Fixed 
   7621 a problem with line counter maintenance.
   7622 
   7623 iASL/DTC: Reduced the severity of some errors from fatal to error. There 
   7624 is 
   7625 no need to abort on simple errors within a field definition.
   7626 
   7627 Debugger: Simplified the output of the help command. All help output now 
   7628 in 
   7629 a single screen, instead of help subcommands. ACPICA Bugzilla 897.
   7630 
   7631 ----------------------------------------
   7632 12 January 2011. Summary of changes for version 20110112:
   7633 
   7634 1) ACPI CA Core Subsystem:
   7635 
   7636 Fixed a race condition between method execution and namespace walks that 
   7637 can 
   7638 possibly cause a fault. The problem was apparently introduced in version 
   7639 20100528 as a result of a performance optimization that reduces the 
   7640 number 
   7641 of 
   7642 namespace walks upon method exit by using the delete_namespace_subtree 
   7643 function instead of the delete_namespace_by_owner function used 
   7644 previously. 
   7645 Bug is a missing namespace lock in the delete_namespace_subtree function. 
   7646 dana.myers (a] oracle.com
   7647 
   7648 Fixed several issues and a possible fault with the automatic "serialized" 
   7649 method support. History: This support changes a method to "serialized" on 
   7650 the 
   7651 fly if the method generates an AE_ALREADY_EXISTS error, indicating the 
   7652 possibility that it cannot handle reentrancy. This fix repairs a couple 
   7653 of 
   7654 issues seen in the field, especially on machines with many cores:
   7655 
   7656     1) Delete method children only upon the exit of the last thread,
   7657        so as to not delete objects out from under other running threads
   7658       (and possibly causing a fault.)
   7659     2) Set the "serialized" bit for the method only upon the exit of the
   7660        Last thread, so as to not cause deadlock when running threads
   7661        attempt to exit.
   7662     3) Cleanup the use of the AML "MethodFlags" and internal method flags
   7663        so that there is no longer any confusion between the two.
   7664 
   7665     Lin Ming, Bob Moore. Reported by dana.myers (a] oracle.com.
   7666 
   7667 Debugger: Now lock the namespace for duration of a namespace dump. 
   7668 Prevents 
   7669 issues if the namespace is changing dynamically underneath the debugger. 
   7670 Especially affects temporary namespace nodes, since the debugger displays 
   7671 these also.
   7672 
   7673 Updated the ordering of include files. The ACPICA headers should appear 
   7674 before any compiler-specific headers (stdio.h, etc.) so that acenv.h can 
   7675 set 
   7676 any necessary compiler-specific defines, etc. Affects the ACPI-related 
   7677 tools 
   7678 and utilities.
   7679 
   7680 Updated all ACPICA copyrights and signons to 2011. Added the 2011 
   7681 copyright 
   7682 to all module headers and signons, including the Linux header. This 
   7683 affects 
   7684 virtually every file in the ACPICA core subsystem, iASL compiler, and all 
   7685 utilities.
   7686 
   7687 Added project files for MS Visual Studio 2008 (VC++ 9.0). The original 
   7688 project files for VC++ 6.0 are now obsolete. New project files can be 
   7689 found 
   7690 under acpica/generate/msvc9. See acpica/generate/msvc9/readme.txt for 
   7691 details.
   7692 
   7693 Example Code and Data Size: These are the sizes for the OS-independent 
   7694 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   7695 debug version of the code includes the debug output trace mechanism and 
   7696 has a 
   7697 much larger code and data size.
   7698 
   7699   Previous Release (VC 6.0):
   7700     Non-Debug Version:  89.8K Code, 18.9K Data, 108.7K Total
   7701     Debug Version:     166.6K Code, 52.1K Data, 218.7K Total
   7702   Current Release (VC 9.0):
   7703     Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
   7704     Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
   7705 
   7706 2) iASL Compiler/Disassembler and Tools:
   7707 
   7708 iASL: Added generic data types to the Data Table compiler. Add "generic" 
   7709 data 
   7710 types such as UINT32, String, Unicode, etc., to simplify the generation 
   7711 of 
   7712 platform-defined tables such as UEFI. Lin Ming.
   7713 
   7714 iASL: Added listing support for the Data Table Compiler. Adds listing 
   7715 support 
   7716 (-l) to display actual binary output for each line of input code.
   7717 
   7718 ----------------------------------------
   7719 09 December 2010. Summary of changes for version 20101209:
   7720 
   7721 1) ACPI CA Core Subsystem:
   7722 
   7723 Completed the major overhaul of the GPE support code that was begun in 
   7724 July 
   7725 2010. Major features include: removal of _PRW execution in ACPICA (host 
   7726 executes _PRWs anyway), cleanup of "wake" GPE interfaces and processing, 
   7727 changes to existing interfaces, simplification of GPE handler operation, 
   7728 and 
   7729 a handful of new interfaces:
   7730 
   7731     AcpiUpdateAllGpes
   7732     AcpiFinishGpe
   7733     AcpiSetupGpeForWake
   7734     AcpiSetGpeWakeMask
   7735     One new file, evxfgpe.c to consolidate all external GPE interfaces.
   7736 
   7737 See the ACPICA Programmer Reference for full details and programming 
   7738 information. See the new section 4.4 "General Purpose Event (GPE) 
   7739 Support" 
   7740 for a full overview, and section 8.7 "ACPI General Purpose Event 
   7741 Management" 
   7742 for programming details. ACPICA BZ 858,870,877. Matthew Garrett, Lin 
   7743 Ming, 
   7744 Bob Moore, Rafael Wysocki.
   7745 
   7746 Implemented a new GPE feature for Windows compatibility, the "Implicit 
   7747 Wake 
   7748 GPE Notify". This feature will automatically issue a Notify(2) on a 
   7749 device 
   7750 when a Wake GPE is received if there is no corresponding GPE method or 
   7751 handler. ACPICA BZ 870.
   7752 
   7753 Fixed a problem with the Scope() operator during table parse and load 
   7754 phase. 
   7755 During load phase (table load or method execution), the scope operator 
   7756 should 
   7757 not enter the target into the namespace. Instead, it should open a new 
   7758 scope 
   7759 at the target location. Linux BZ 19462, ACPICA BZ 882.
   7760 
   7761 Example Code and Data Size: These are the sizes for the OS-independent 
   7762 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   7763 debug version of the code includes the debug output trace mechanism and 
   7764 has a 
   7765 much larger code and data size.
   7766 
   7767   Previous Release:
   7768     Non-Debug Version:  89.8K Code, 18.9K Data, 108.7K Total
   7769     Debug Version:     166.6K Code, 52.1K Data, 218.7K Total
   7770   Current Release:
   7771     Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
   7772     Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
   7773 
   7774 2) iASL Compiler/Disassembler and Tools:
   7775 
   7776 iASL: Relax the alphanumeric restriction on _CID strings. These strings 
   7777 are 
   7778 "bus-specific" per the ACPI specification, and therefore any characters 
   7779 are 
   7780 acceptable. The only checks that can be performed are for a null string 
   7781 and 
   7782 perhaps for a leading asterisk. ACPICA BZ 886.
   7783 
   7784 iASL: Fixed a problem where a syntax error that caused a premature EOF 
   7785 condition on the source file emitted a very confusing error message. The 
   7786 premature EOF is now detected correctly. ACPICA BZ 891.
   7787 
   7788 Disassembler: Decode the AccessSize within a Generic Address Structure 
   7789 (byte 
   7790 access, word access, etc.) Note, this field does not allow arbitrary bit 
   7791 access, the size is encoded as 1=byte, 2=word, 3=dword, and 4=qword.
   7792 
   7793 New: AcpiNames utility - Example namespace dump utility. Shows an example 
   7794 of 
   7795 ACPICA configuration for a minimal namespace dump utility. Uses table and 
   7796 namespace managers, but no AML interpreter. Does not add any 
   7797 functionality 
   7798 over AcpiExec, it is a subset of AcpiExec. The purpose is to show how to 
   7799 partition and configure ACPICA. ACPICA BZ 883.
   7800 
   7801 AML Debugger: Increased the debugger buffer size for method return 
   7802 objects. 
   7803 Was 4K, increased to 16K. Also enhanced error messages for debugger 
   7804 method 
   7805 execution, including the buffer overflow case.
   7806 
   7807 ----------------------------------------
   7808 13 October 2010. Summary of changes for version 20101013:
   7809 
   7810 1) ACPI CA Core Subsystem:
   7811 
   7812 Added support to clear the PCIEXP_WAKE event. When clearing ACPI events, 
   7813 now 
   7814 clear the PCIEXP_WAKE_STS bit in the ACPI PM1 Status Register, via 
   7815 HwClearAcpiStatus. Original change from Colin King. ACPICA BZ 880.
   7816 
   7817 Changed the type of the predefined namespace object _TZ from ThermalZone 
   7818 to 
   7819 Device. This was found to be confusing to the host software that 
   7820 processes 
   7821 the various thermal zones, since _TZ is not really a ThermalZone. 
   7822 However, 
   7823 a 
   7824 Notify() can still be performed on it. ACPICA BZ 876. Suggestion from Rui 
   7825 Zhang.
   7826 
   7827 Added Windows Vista SP2 to the list of supported _OSI strings. The actual 
   7828 string is "Windows 2006 SP2".
   7829 
   7830 Eliminated duplicate code in AcpiUtExecute* functions. Now that the 
   7831 nsrepair 
   7832 code automatically repairs _HID-related strings, this type of code is no 
   7833 longer needed in Execute_HID, Execute_CID, and Execute_UID. ACPICA BZ 
   7834 878.
   7835 
   7836 Example Code and Data Size: These are the sizes for the OS-independent 
   7837 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   7838 debug version of the code includes the debug output trace mechanism and 
   7839 has a 
   7840 much larger code and data size.
   7841 
   7842   Previous Release:
   7843     Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
   7844     Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
   7845   Current Release:
   7846     Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
   7847     Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
   7848 
   7849 2) iASL Compiler/Disassembler and Tools:
   7850 
   7851 iASL: Implemented additional compile-time validation for _HID strings. 
   7852 The 
   7853 non-hex prefix (such as "PNP" or "ACPI") must be uppercase, and the 
   7854 length 
   7855 of 
   7856 the string must be exactly seven or eight characters. For both _HID and 
   7857 _CID 
   7858 strings, all characters must be alphanumeric. ACPICA BZ 874.
   7859 
   7860 iASL: Allow certain "null" resource descriptors. Some BIOS code creates 
   7861 descriptors that are mostly or all zeros, with the expectation that they 
   7862 will 
   7863 be filled in at runtime. iASL now allows this as long as there is a 
   7864 "resource 
   7865 tag" (name) associated with the descriptor, which gives the ASL a handle 
   7866 needed to modify the descriptor. ACPICA BZ 873.
   7867 
   7868 Added single-thread support to the generic Unix application OSL. 
   7869 Primarily 
   7870 for iASL support, this change removes the use of semaphores in the 
   7871 single-
   7872 threaded ACPICA tools/applications - increasing performance. The 
   7873 _MULTI_THREADED option was replaced by the (reverse) ACPI_SINGLE_THREADED 
   7874 option. ACPICA BZ 879.
   7875 
   7876 AcpiExec: several fixes for the 64-bit version. Adds XSDT support and 
   7877 support 
   7878 for 64-bit DSDT/FACS addresses in the FADT. Lin Ming.
   7879 
   7880 iASL: Moved all compiler messages to a new file, aslmessages.h.
   7881 
   7882 ----------------------------------------
   7883 15 September 2010. Summary of changes for version 20100915:
   7884 
   7885 1) ACPI CA Core Subsystem:
   7886 
   7887 Removed the AcpiOsDerivePciId OSL interface. The various host 
   7888 implementations 
   7889 of this function were not OS-dependent and are now obsolete and can be 
   7890 removed from all host OSLs. This function has been replaced by 
   7891 AcpiHwDerivePciId, which is now part of the ACPICA core code. 
   7892 AcpiHwDerivePciId has been implemented without recursion. Adds one new 
   7893 module, hwpci.c. ACPICA BZ 857.
   7894 
   7895 Implemented a dynamic repair for _HID and _CID strings. The following 
   7896 problems are now repaired at runtime: 1) Remove a leading asterisk in the 
   7897 string, and 2) the entire string is uppercased. Both repairs are in 
   7898 accordance with the ACPI specification and will simplify host driver 
   7899 code. 
   7900 ACPICA BZ 871.
   7901 
   7902 The ACPI_THREAD_ID type is no longer configurable, internally it is now 
   7903 always UINT64. This simplifies the ACPICA code, especially any printf 
   7904 output. 
   7905 UINT64 is the only common data type for all thread_id types across all 
   7906 operating systems. It is now up to the host OSL to cast the native 
   7907 thread_id 
   7908 type to UINT64 before returning the value to ACPICA (via 
   7909 AcpiOsGetThreadId). 
   7910 Lin Ming, Bob Moore.
   7911 
   7912 Added the ACPI_INLINE type to enhance the ACPICA configuration. The 
   7913 "inline" 
   7914 keyword is not standard across compilers, and this type allows inline to 
   7915 be 
   7916 configured on a per-compiler basis. Lin Ming.
   7917 
   7918 Made the system global AcpiGbl_SystemAwakeAndRunning publicly
   7919 available. 
   7920 Added an extern for this boolean in acpixf.h. Some hosts utilize this 
   7921 value 
   7922 during suspend/restore operations. ACPICA BZ 869.
   7923 
   7924 All code that implements error/warning messages with the "ACPI:" prefix 
   7925 has 
   7926 been moved to a new module, utxferror.c.
   7927 
   7928 The UINT64_OVERLAY was moved to utmath.c, which is the only module where 
   7929 it 
   7930 is used. ACPICA BZ 829. Lin Ming, Bob Moore.
   7931 
   7932 Example Code and Data Size: These are the sizes for the OS-independent 
   7933 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   7934 debug version of the code includes the debug output trace mechanism and 
   7935 has a 
   7936 much larger code and data size.
   7937 
   7938   Previous Release:
   7939     Non-Debug Version:  89.1K Code, 19.0K Data, 108.1K Total
   7940     Debug Version:     165.1K Code, 51.9K Data, 217.0K Total
   7941   Current Release:
   7942     Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
   7943     Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
   7944 
   7945 2) iASL Compiler/Disassembler and Tools:
   7946 
   7947 iASL/Disassembler: Write ACPI errors to stderr instead of the output 
   7948 file. 
   7949 This keeps the output files free of random error messages that may 
   7950 originate 
   7951 from within the namespace/interpreter code. Used this opportunity to 
   7952 merge 
   7953 all ACPI:-style messages into a single new module, utxferror.c. ACPICA BZ 
   7954 866. Lin Ming, Bob Moore.
   7955 
   7956 Tools: update some printfs for ansi warnings on size_t. Handle width 
   7957 change 
   7958 of size_t on 32-bit versus 64-bit generations. Lin Ming.
   7959 
   7960 ----------------------------------------
   7961 06 August 2010. Summary of changes for version 20100806:
   7962 
   7963 1) ACPI CA Core Subsystem:
   7964 
   7965 Designed and implemented a new host interface to the _OSI support code. 
   7966 This 
   7967 will allow the host to dynamically add or remove multiple _OSI strings, 
   7968 as 
   7969 well as install an optional handler that is called for each _OSI 
   7970 invocation. 
   7971 Also added a new AML debugger command, 'osi' to display and modify the 
   7972 global 
   7973 _OSI string table, and test support in the AcpiExec utility. See the 
   7974 ACPICA 
   7975 reference manual for full details. Lin Ming, Bob Moore. ACPICA BZ 836.
   7976 New Functions:
   7977     AcpiInstallInterface - Add an _OSI string.
   7978     AcpiRemoveInterface - Delete an _OSI string.
   7979     AcpiInstallInterfaceHandler - Install optional _OSI handler.
   7980 Obsolete Functions:
   7981     AcpiOsValidateInterface - no longer used.
   7982 New Files:
   7983     source/components/utilities/utosi.c
   7984 
   7985 Re-introduced the support to enable multi-byte transfers for Embedded 
   7986 Controller (EC) operation regions. A reported problem was found to be a 
   7987 bug 
   7988 in the host OS, not in the multi-byte support. Previously, the maximum 
   7989 data 
   7990 size passed to the EC operation region handler was a single byte. There 
   7991 are 
   7992 often EC Fields larger than one byte that need to be transferred, and it 
   7993 is 
   7994 useful for the EC driver to lock these as a single transaction. This 
   7995 change 
   7996 enables single transfers larger than 8 bits. This effectively changes the 
   7997 access to the EC space from ByteAcc to AnyAcc, and will probably require 
   7998 changes to the host OS Embedded Controller driver to enable 16/32/64/256-
   7999 bit 
   8000 transfers in addition to 8-bit transfers. Alexey Starikovskiy, Lin Ming.
   8001 
   8002 Fixed a problem with the prototype for AcpiOsReadPciConfiguration. The 
   8003 prototype in acpiosxf.h had the output value pointer as a (void *).
   8004 It should be a (UINT64 *). This may affect some host OSL code.
   8005 
   8006 Fixed a couple problems with the recently modified Linux makefiles for 
   8007 iASL 
   8008 and AcpiExec. These new makefiles place the generated object files in the 
   8009 local directory so that there can be no collisions between the files that 
   8010 are 
   8011 shared between them that are compiled with different options.
   8012 
   8013 Example Code and Data Size: These are the sizes for the OS-independent 
   8014 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   8015 debug version of the code includes the debug output trace mechanism and 
   8016 has a 
   8017 much larger code and data size.
   8018 
   8019   Previous Release:
   8020     Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
   8021     Debug Version:     164.0K Code, 51.5K Data, 215.5K Total
   8022   Current Release:
   8023     Non-Debug Version:  89.1K Code, 19.0K Data, 108.1K Total
   8024     Debug Version:     165.1K Code, 51.9K Data, 217.0K Total
   8025 
   8026 2) iASL Compiler/Disassembler and Tools:
   8027 
   8028 iASL/Disassembler: Added a new option (-da, "disassemble all") to load 
   8029 the 
   8030 namespace from and disassemble an entire group of AML files. Useful for 
   8031 loading all of the AML tables for a given machine (DSDT, SSDT1...SSDTn) 
   8032 and 
   8033 disassembling with one simple command. ACPICA BZ 865. Lin Ming.
   8034 
   8035 iASL: Allow multiple invocations of -e option. This change allows 
   8036 multiple 
   8037 uses of -e on the command line: "-e ssdt1.dat -e ssdt2.dat". ACPICA BZ 
   8038 834. 
   8039 Lin Ming.
   8040 
   8041 ----------------------------------------
   8042 02 July 2010. Summary of changes for version 20100702:
   8043 
   8044 1) ACPI CA Core Subsystem:
   8045 
   8046 Implemented several updates to the recently added GPE reference count 
   8047 support. The model for "wake" GPEs is changing to give the host OS 
   8048 complete 
   8049 control of these GPEs. Eventually, the ACPICA core will not execute any 
   8050 _PRW 
   8051 methods, since the host already must execute them. Also, additional 
   8052 changes 
   8053 were made to help ensure that the reference counts are kept in proper 
   8054 synchronization with reality. Rafael J. Wysocki.
   8055 
   8056 1) Ensure that GPEs are not enabled twice during initialization.
   8057 2) Ensure that GPE enable masks stay in sync with the reference count.
   8058 3) Do not inadvertently enable GPEs when writing GPE registers.
   8059 4) Remove the internal wake reference counter and add new AcpiGpeWakeup 
   8060 interface. This interface will set or clear individual GPEs for wakeup.
   8061 5) Remove GpeType argument from AcpiEnable and AcpiDisable. These 
   8062 interfaces 
   8063 are now used for "runtime" GPEs only.
   8064 
   8065 Changed the behavior of the GPE install/remove handler interfaces. The 
   8066 GPE 
   8067 is 
   8068 no longer disabled during this process, as it was found to cause problems 
   8069 on 
   8070 some machines. Rafael J. Wysocki.
   8071 
   8072 Reverted a change introduced in version 20100528 to enable Embedded 
   8073 Controller multi-byte transfers. This change was found to cause problems 
   8074 with 
   8075 Index Fields and possibly Bank Fields. It will be reintroduced when these 
   8076 problems have been resolved.
   8077 
   8078 Fixed a problem with references to Alias objects within Package Objects. 
   8079 A 
   8080 reference to an Alias within the definition of a Package was not always 
   8081 resolved properly. Aliases to objects like Processors, Thermal zones, 
   8082 etc. 
   8083 were resolved to the actual object instead of a reference to the object 
   8084 as 
   8085 it 
   8086 should be. Package objects are only allowed to contain integer, string, 
   8087 buffer, package, and reference objects. Redhat bugzilla 608648.
   8088 
   8089 Example Code and Data Size: These are the sizes for the OS-independent 
   8090 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   8091 debug version of the code includes the debug output trace mechanism and 
   8092 has a 
   8093 much larger code and data size.
   8094 
   8095   Previous Release:
   8096     Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
   8097     Debug Version:     164.1K Code, 51.5K Data, 215.6K Total
   8098   Current Release:
   8099     Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
   8100     Debug Version:     164.0K Code, 51.5K Data, 215.5K Total
   8101 
   8102 2) iASL Compiler/Disassembler and Tools:
   8103 
   8104 iASL: Implemented a new compiler subsystem to allow definition and 
   8105 compilation of the non-AML ACPI tables such as FADT, MADT, SRAT, etc. 
   8106 These 
   8107 are called "ACPI Data Tables", and the new compiler is the "Data Table 
   8108 Compiler". This compiler is intended to simplify the existing error-prone 
   8109 process of creating these tables for the BIOS, as well as allowing the 
   8110 disassembly, modification, recompilation, and override of existing ACPI 
   8111 data 
   8112 tables. See the iASL User Guide for detailed information.
   8113 
   8114 iASL: Implemented a new Template Generator option in support of the new 
   8115 Data 
   8116 Table Compiler. This option will create examples of all known ACPI tables 
   8117 that can be used as the basis for table development. See the iASL 
   8118 documentation and the -T option.
   8119 
   8120 Disassembler and headers: Added support for the WDDT ACPI table (Watchdog 
   8121 Descriptor Table).
   8122 
   8123 Updated the Linux makefiles for iASL and AcpiExec to place the generated 
   8124 object files in the local directory so that there can be no collisions 
   8125 between the shared files between them that are generated with different 
   8126 options.
   8127 
   8128 Added support for Mac OS X in the Unix OSL used for iASL and AcpiExec. 
   8129 Use 
   8130 the #define __APPLE__ to enable this support.
   8131 
   8132 ----------------------------------------
   8133 28 May 2010. Summary of changes for version 20100528:
   8134 
   8135 Note: The ACPI 4.0a specification was released on April 5, 2010 and is 
   8136 available at www.acpi.info. This is primarily an errata release.
   8137 
   8138 1) ACPI CA Core Subsystem:
   8139 
   8140 Undefined ACPI tables: We are looking for the definitions for the 
   8141 following 
   8142 ACPI tables that have been seen in the field: ATKG, IEIT, GSCI.
   8143 
   8144 Implemented support to enable multi-byte transfers for Embedded 
   8145 Controller 
   8146 (EC) operation regions. Previously, the maximum data size passed to the 
   8147 EC 
   8148 operation region handler was a single byte. There are often EC Fields 
   8149 larger 
   8150 than one byte that need to be transferred, and it is useful for the EC 
   8151 driver 
   8152 to lock these as a single transaction. This change enables single 
   8153 transfers 
   8154 larger than 8 bits. This effectively changes the access to the EC space 
   8155 from 
   8156 ByteAcc to AnyAcc, and will probably require changes to the host OS 
   8157 Embedded 
   8158 Controller driver to enable 16/32/64/256-bit transfers in addition to 8-
   8159 bit 
   8160 transfers. Alexey Starikovskiy, Lin Ming
   8161 
   8162 Implemented a performance enhancement for namespace search and access. 
   8163 This 
   8164 change enhances the performance of namespace searches and walks by adding 
   8165 a 
   8166 backpointer to the parent in each namespace node. On large namespaces, 
   8167 this 
   8168 change can improve overall ACPI performance by up to 9X. Adding a pointer 
   8169 to 
   8170 each namespace node increases the overall size of the internal namespace 
   8171 by 
   8172 about 5%, since each namespace entry usually consists of both a namespace 
   8173 node and an ACPI operand object. However, this is the first growth of the 
   8174 namespace in ten years. ACPICA bugzilla 817. Alexey Starikovskiy.
   8175 
   8176 Implemented a performance optimization that reduces the number of 
   8177 namespace 
   8178 walks. On control method exit, only walk the namespace if the method is 
   8179 known 
   8180 to have created namespace objects outside of its local scope. Previously, 
   8181 the 
   8182 entire namespace was traversed on each control method exit. This change 
   8183 can 
   8184 improve overall ACPI performance by up to 3X. Alexey Starikovskiy, Bob 
   8185 Moore.
   8186 
   8187 Added support to truncate I/O addresses to 16 bits for Windows 
   8188 compatibility. 
   8189 Some ASL code has been seen in the field that inadvertently has bits set 
   8190 above bit 15. This feature is optional and is enabled if the BIOS 
   8191 requests 
   8192 any Windows OSI strings. It can also be enabled by the host OS. Matthew 
   8193 Garrett, Bob Moore.
   8194 
   8195 Added support to limit the maximum time for the ASL Sleep() operator. To 
   8196 prevent accidental deep sleeps, limit the maximum time that Sleep() will 
   8197 actually sleep. Configurable, the default maximum is two seconds. ACPICA 
   8198 bugzilla 854.
   8199 
   8200 Added run-time validation support for the _WDG and_WED Microsoft 
   8201 predefined 
   8202 methods. These objects are defined by "Windows Instrumentation", and are 
   8203 not 
   8204 part of the ACPI spec. ACPICA BZ 860.
   8205 
   8206 Expanded all statistic counters used during namespace and device 
   8207 initialization from 16 to 32 bits in order to support very large 
   8208 namespaces.
   8209 
   8210 Replaced all instances of %d in printf format specifiers with %u since 
   8211 nearly 
   8212 all integers in ACPICA are unsigned.
   8213 
   8214 Fixed the exception namestring for AE_WAKE_ONLY_GPE. Was incorrectly 
   8215 returned 
   8216 as AE_NO_HANDLER.
   8217 
   8218 Example Code and Data Size: These are the sizes for the OS-independent 
   8219 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   8220 debug version of the code includes the debug output trace mechanism and 
   8221 has a 
   8222 much larger code and data size.
   8223 
   8224   Previous Release:
   8225     Non-Debug Version:  88.4K Code, 18.8K Data, 107.2K Total
   8226     Debug Version:     164.2K Code, 51.5K Data, 215.7K Total
   8227   Current Release:
   8228     Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
   8229     Debug Version:     164.1K Code, 51.5K Data, 215.6K Total
   8230 
   8231 2) iASL Compiler/Disassembler and Tools:
   8232 
   8233 iASL: Added compiler support for the _WDG and_WED Microsoft predefined 
   8234 methods. These objects are defined by "Windows Instrumentation", and are 
   8235 not 
   8236 part of the ACPI spec. ACPICA BZ 860.
   8237 
   8238 AcpiExec: added option to disable the memory tracking mechanism. The -dt 
   8239 option will disable the tracking mechanism, which improves performance 
   8240 considerably.
   8241 
   8242 AcpiExec: Restructured the command line options into -d (disable) and -e 
   8243 (enable) options.
   8244 
   8245 ----------------------------------------
   8246 28 April 2010. Summary of changes for version 20100428:
   8247 
   8248 1) ACPI CA Core Subsystem:
   8249 
   8250 Implemented GPE support for dynamically loaded ACPI tables. For all GPEs, 
   8251 including FADT-based and GPE Block Devices, execute any _PRW methods in 
   8252 the 
   8253 new table, and process any _Lxx/_Exx GPE methods in the new table. Any 
   8254 runtime GPE that is referenced by an _Lxx/_Exx method in the new table is 
   8255 immediately enabled. Handles the FADT-defined GPEs as well as GPE Block 
   8256 Devices. Provides compatibility with other ACPI implementations. Two new 
   8257 files added, evgpeinit.c and evgpeutil.c. ACPICA BZ 833. Lin Ming, Bob 
   8258 Moore.
   8259 
   8260 Fixed a regression introduced in version 20100331 within the table 
   8261 manager 
   8262 where initial table loading could fail. This was introduced in the fix 
   8263 for 
   8264 AcpiReallocateRootTable. Also, renamed some of fields in the table 
   8265 manager 
   8266 data structures to clarify their meaning and use.
   8267 
   8268 Fixed a possible allocation overrun during internal object copy in 
   8269 AcpiUtCopySimpleObject. The original code did not correctly handle the 
   8270 case 
   8271 where the object to be copied was a namespace node. Lin Ming. ACPICA BZ 
   8272 847.
   8273 
   8274 Updated the allocation dump routine, AcpiUtDumpAllocation and fixed a 
   8275 possible access beyond end-of-allocation. Also, now fully validate 
   8276 descriptor 
   8277 (size and type) before output. Lin Ming, Bob Moore. ACPICA BZ 847
   8278 
   8279 Example Code and Data Size: These are the sizes for the OS-independent 
   8280 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   8281 debug version of the code includes the debug output trace mechanism and 
   8282 has a 
   8283 much larger code and data size.
   8284 
   8285   Previous Release:
   8286     Non-Debug Version:  87.9K Code, 18.6K Data, 106.5K Total
   8287     Debug Version:     163.5K Code, 51.3K Data, 214.8K Total
   8288   Current Release:
   8289     Non-Debug Version:  88.4K Code, 18.8K Data, 107.2K Total
   8290     Debug Version:     164.2K Code, 51.5K Data, 215.7K Total
   8291 
   8292 2) iASL Compiler/Disassembler and Tools:
   8293 
   8294 iASL: Implemented Min/Max/Len/Gran validation for address resource 
   8295 descriptors. This change implements validation for the address fields 
   8296 that 
   8297 are common to all address-type resource descriptors. These checks are 
   8298 implemented: Checks for valid Min/Max, length within the Min/Max window, 
   8299 valid granularity, Min/Max a multiple of granularity, and _MIF/_MAF as 
   8300 per 
   8301 table 6-40 in the ACPI 4.0a specification. Also split the large 
   8302 aslrestype1.c 
   8303 and aslrestype2.c files into five new files. ACPICA BZ 840.
   8304 
   8305 iASL: Added support for the _Wxx predefined names. This support was 
   8306 missing 
   8307 and these names were not recognized by the compiler as valid predefined 
   8308 names. ACPICA BZ 851.
   8309 
   8310 iASL: Added an error for all predefined names that are defined to return 
   8311 no 
   8312 value and thus must be implemented as Control Methods. These include all 
   8313 of 
   8314 the _Lxx, _Exx, _Wxx, and _Qxx names, as well as some other miscellaneous 
   8315 names such as _DIS, _INI, _IRC, _OFF, _ON, and _PSx. ACPICA BZ 850, 856.
   8316 
   8317 iASL: Implemented the -ts option to emit hex AML data in ASL format, as 
   8318 an 
   8319 ASL Buffer. Allows ACPI tables to be easily included within ASL files, to 
   8320 be 
   8321 dynamically loaded via the Load() operator. Also cleaned up output for 
   8322 the 
   8323 -
   8324 ta and -tc options. ACPICA BZ 853.
   8325 
   8326 Tests: Added a new file with examples of extended iASL error checking. 
   8327 Demonstrates the advanced error checking ability of the iASL compiler. 
   8328 Available at tests/misc/badcode.asl.
   8329 
   8330 ----------------------------------------
   8331 31 March 2010. Summary of changes for version 20100331:
   8332 
   8333 1) ACPI CA Core Subsystem:
   8334 
   8335 Completed a major update for the GPE support in order to improve support 
   8336 for 
   8337 shared GPEs and to simplify both host OS and ACPICA code. Added a 
   8338 reference 
   8339 count mechanism to support shared GPEs that require multiple device 
   8340 drivers. 
   8341 Several external interfaces have changed. One external interface has been 
   8342 removed. One new external interface was added. Most of the GPE external 
   8343 interfaces now use the GPE spinlock instead of the events mutex (and the 
   8344 Flags parameter for many GPE interfaces has been removed.) See the 
   8345 updated 
   8346 ACPICA Programmer Reference for details. Matthew Garrett, Bob Moore, 
   8347 Rafael 
   8348 Wysocki. ACPICA BZ 831.
   8349 
   8350 Changed:
   8351     AcpiEnableGpe, AcpiDisableGpe, AcpiClearGpe, AcpiGetGpeStatus
   8352 Removed:
   8353     AcpiSetGpeType
   8354 New:
   8355     AcpiSetGpe
   8356 
   8357 Implemented write support for DataTable operation regions. These regions 
   8358 are 
   8359 defined via the DataTableRegion() operator. Previously, only read support 
   8360 was 
   8361 implemented. The ACPI specification allows DataTableRegions to be 
   8362 read/write, 
   8363 however.
   8364 
   8365 Implemented a new subsystem option to force a copy of the DSDT to local 
   8366 memory. Optionally copy the entire DSDT to local memory (instead of 
   8367 simply 
   8368 mapping it.) There are some (albeit very rare) BIOSs that corrupt or 
   8369 replace 
   8370 the original DSDT, creating the need for this option. Default is FALSE, 
   8371 do 
   8372 not copy the DSDT.
   8373 
   8374 Implemented detection of a corrupted or replaced DSDT. This change adds 
   8375 support to detect a DSDT that has been corrupted and/or replaced from 
   8376 outside 
   8377 the OS (by firmware). This is typically catastrophic for the system, but 
   8378 has 
   8379 been seen on some machines. Once this problem has been detected, the DSDT 
   8380 copy option can be enabled via system configuration. Lin Ming, Bob Moore.
   8381 
   8382 Fixed two problems with AcpiReallocateRootTable during the root table 
   8383 copy. 
   8384 When copying the root table to the new allocation, the length used was 
   8385 incorrect. The new size was used instead of the current table size, 
   8386 meaning 
   8387 too much data was copied. Also, the count of available slots for ACPI 
   8388 tables 
   8389 was not set correctly. Alexey Starikovskiy, Bob Moore.
   8390 
   8391 Example Code and Data Size: These are the sizes for the OS-independent 
   8392 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   8393 debug version of the code includes the debug output trace mechanism and 
   8394 has a 
   8395 much larger code and data size.
   8396 
   8397   Previous Release:
   8398     Non-Debug Version:  87.5K Code, 18.4K Data, 105.9K Total
   8399     Debug Version:     163.4K Code, 51.1K Data, 214.5K Total
   8400   Current Release:
   8401     Non-Debug Version:  87.9K Code, 18.6K Data, 106.5K Total
   8402     Debug Version:     163.5K Code, 51.3K Data, 214.8K Total
   8403 
   8404 2) iASL Compiler/Disassembler and Tools:
   8405 
   8406 iASL: Implement limited typechecking for values returned from predefined 
   8407 control methods. The type of any returned static (unnamed) object is now 
   8408 validated. For example, Return(1). ACPICA BZ 786.
   8409 
   8410 iASL: Fixed a predefined name object verification regression. Fixes a 
   8411 problem 
   8412 introduced in version 20100304. An error is incorrectly generated if a 
   8413 predefined name is declared as a static named object with a value defined 
   8414 using the keywords "Zero", "One", or "Ones". Lin Ming.
   8415 
   8416 iASL: Added Windows 7 support for the -g option (get local ACPI tables) 
   8417 by 
   8418 reducing the requested registry access rights. ACPICA BZ 842.
   8419 
   8420 Disassembler: fixed a possible fault when generating External() 
   8421 statements. 
   8422 Introduced in commit ae7d6fd: Properly handle externals with parent-
   8423 prefix 
   8424 (carat). Fixes a string length allocation calculation. Lin Ming.
   8425 
   8426 ----------------------------------------
   8427 04 March 2010. Summary of changes for version 20100304:
   8428 
   8429 1) ACPI CA Core Subsystem:
   8430 
   8431 Fixed a possible problem with the AML Mutex handling function 
   8432 AcpiExReleaseMutex where the function could fault under the very rare 
   8433 condition when the interpreter has blocked, the interpreter lock is 
   8434 released, 
   8435 the interpreter is then reentered via the same thread, and attempts to 
   8436 acquire an AML mutex that was previously acquired. FreeBSD report 140979. 
   8437 Lin 
   8438 Ming.
   8439 
   8440 Implemented additional configuration support for the AML "Debug Object". 
   8441 Output from the debug object can now be enabled via a global variable, 
   8442 AcpiGbl_EnableAmlDebugObject. This will assist with remote machine 
   8443 debugging. 
   8444 This debug output is now available in the release version of ACPICA 
   8445 instead 
   8446 of just the debug version. Also, the entire debug output module can now 
   8447 be 
   8448 configured out of the ACPICA build if desired. One new file added, 
   8449 executer/exdebug.c. Lin Ming, Bob Moore.
   8450 
   8451 Added header support for the ACPI MCHI table (Management Controller Host 
   8452 Interface Table). This table was added in ACPI 4.0, but the defining 
   8453 document 
   8454 has only recently become available.
   8455 
   8456 Standardized output of integer values for ACPICA warnings/errors. Always 
   8457 use 
   8458 0x prefix for hex output, always use %u for unsigned integer decimal 
   8459 output. 
   8460 Affects ACPI_INFO, ACPI_ERROR, ACPI_EXCEPTION, and ACPI_WARNING (about 
   8461 400 
   8462 invocations.) These invocations were converted from the original 
   8463 ACPI_DEBUG_PRINT invocations and were not consistent. ACPICA BZ 835.
   8464 
   8465 Example Code and Data Size: These are the sizes for the OS-independent 
   8466 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   8467 debug version of the code includes the debug output trace mechanism and 
   8468 has a 
   8469 much larger code and data size.
   8470 
   8471   Previous Release:
   8472     Non-Debug Version:  87.1K Code, 18.0K Data, 105.1K Total
   8473     Debug Version:     163.5K Code, 50.9K Data, 214.4K Total
   8474   Current Release:
   8475     Non-Debug Version:  87.5K Code, 18.4K Data, 105.9K Total
   8476     Debug Version:     163.4K Code, 51.1K Data, 214.5K Total
   8477 
   8478 2) iASL Compiler/Disassembler and Tools:
   8479 
   8480 iASL: Implemented typechecking support for static (non-control method) 
   8481 predefined named objects that are declared with the Name() operator. For 
   8482 example, the type of this object is now validated to be of type Integer: 
   8483 Name(_BBN, 1). This change migrates the compiler to using the core 
   8484 predefined 
   8485 name table instead of maintaining a local version. Added a new file, 
   8486 aslpredef.c. ACPICA BZ 832.
   8487 
   8488 Disassembler: Added support for the ACPI 4.0 MCHI table.
   8489 
   8490 ----------------------------------------
   8491 21 January 2010. Summary of changes for version 20100121:
   8492 
   8493 1) ACPI CA Core Subsystem:
   8494 
   8495 Added the 2010 copyright to all module headers and signons. This affects 
   8496 virtually every file in the ACPICA core subsystem, the iASL compiler, the 
   8497 tools/utilities, and the test suites.
   8498 
   8499 Implemented a change to the AcpiGetDevices interface to eliminate 
   8500 unnecessary 
   8501 invocations of the _STA method. In the case where a specific _HID is 
   8502 requested, do not run _STA until a _HID match is found. This eliminates 
   8503 potentially dozens of _STA calls during a search for a particular 
   8504 device/HID, 
   8505 which in turn can improve boot times. ACPICA BZ 828. Lin Ming.
   8506 
   8507 Implemented an additional repair for predefined method return values. 
   8508 Attempt 
   8509 to repair unexpected NULL elements within returned Package objects. 
   8510 Create 
   8511 an 
   8512 Integer of value zero, a NULL String, or a zero-length Buffer as 
   8513 appropriate. 
   8514 ACPICA BZ 818. Lin Ming, Bob Moore.
   8515 
   8516 Removed the obsolete ACPI_INTEGER data type. This type was introduced as 
   8517 the 
   8518 code was migrated from ACPI 1.0 (with 32-bit AML integers) to ACPI 2.0 
   8519 (with 
   8520 64-bit AML integers). It is now obsolete and this change removes it from 
   8521 the 
   8522 ACPICA code base, replaced by UINT64. The original typedef has been 
   8523 retained 
   8524 for now for compatibility with existing device driver code. ACPICA BZ 
   8525 824.
   8526 
   8527 Removed the unused UINT32_STRUCT type, and the obsolete Integer64 field 
   8528 in 
   8529 the parse tree object.
   8530 
   8531 Added additional warning options for the gcc-4 generation. Updated the 
   8532 source 
   8533 accordingly. This includes some code restructuring to eliminate 
   8534 unreachable 
   8535 code, elimination of some gotos, elimination of unused return values, 
   8536 some 
   8537 additional casting, and removal of redundant declarations.
   8538 
   8539 Example Code and Data Size: These are the sizes for the OS-independent 
   8540 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   8541 debug version of the code includes the debug output trace mechanism and 
   8542 has a 
   8543 much larger code and data size.
   8544 
   8545   Previous Release:
   8546     Non-Debug Version:  87.0K Code, 18.0K Data, 105.0K Total
   8547     Debug Version:     163.4K Code, 50.8K Data, 214.2K Total
   8548   Current Release:
   8549     Non-Debug Version:  87.1K Code, 18.0K Data, 105.1K Total
   8550     Debug Version:     163.5K Code, 50.9K Data, 214.4K Total
   8551 
   8552 2) iASL Compiler/Disassembler and Tools:
   8553 
   8554 No functional changes for this release.
   8555 
   8556 ----------------------------------------
   8557 14 December 2009. Summary of changes for version 20091214:
   8558 
   8559 1) ACPI CA Core Subsystem:
   8560 
   8561 Enhanced automatic data type conversions for predefined name repairs. 
   8562 This 
   8563 change expands the automatic repairs/conversions for predefined name 
   8564 return 
   8565 values to make Integers, Strings, and Buffers fully interchangeable. 
   8566 Also, 
   8567 a 
   8568 Buffer can be converted to a Package of Integers if necessary. The 
   8569 nsrepair.c 
   8570 module was completely restructured. Lin Ming, Bob Moore.
   8571 
   8572 Implemented automatic removal of null package elements during predefined 
   8573 name 
   8574 repairs. This change will automatically remove embedded and trailing NULL 
   8575 package elements from returned package objects that are defined to 
   8576 contain 
   8577 a 
   8578 variable number of sub-packages. The driver is then presented with a 
   8579 package 
   8580 with no null elements to deal with. ACPICA BZ 819.
   8581 
   8582 Implemented a repair for the predefined _FDE and _GTM names. The expected 
   8583 return value for both names is a Buffer of 5 DWORDs. This repair fixes 
   8584 two 
   8585 possible problems (both seen in the field), where a package of integers 
   8586 is 
   8587 returned, or a buffer of BYTEs is returned. With assistance from Jung-uk 
   8588 Kim.
   8589 
   8590 Implemented additional module-level code support. This change will 
   8591 properly 
   8592 execute module-level code that is not at the root of the namespace (under 
   8593 a 
   8594 Device object, etc.). Now executes the code within the current scope 
   8595 instead 
   8596 of the root. ACPICA BZ 762. Lin Ming.
   8597 
   8598 Fixed possible mutex acquisition errors when running _REG methods. Fixes 
   8599 a 
   8600 problem where mutex errors can occur when running a _REG method that is 
   8601 in 
   8602 the same scope as a method-defined operation region or an operation 
   8603 region 
   8604 under a module-level IF block. This type of code is rare, so the problem 
   8605 has 
   8606 not been seen before. ACPICA BZ 826. Lin Ming, Bob Moore.
   8607 
   8608 Fixed a possible memory leak during module-level code execution. An 
   8609 object 
   8610 could be leaked for each block of executed module-level code if the 
   8611 interpreter slack mode is enabled This change deletes any implicitly 
   8612 returned 
   8613 object from the module-level code block. Lin Ming.
   8614 
   8615 Removed messages for successful predefined repair(s). The repair 
   8616 mechanism 
   8617 was considered too wordy. Now, messages are only unconditionally emitted 
   8618 if 
   8619 the return object cannot be repaired. Existing messages for successful 
   8620 repairs were converted to ACPI_DEBUG_PRINT messages for now. ACPICA BZ 
   8621 827.
   8622 
   8623 Example Code and Data Size: These are the sizes for the OS-independent 
   8624 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   8625 debug version of the code includes the debug output trace mechanism and 
   8626 has a 
   8627 much larger code and data size.
   8628 
   8629   Previous Release:
   8630     Non-Debug Version:  86.6K Code, 18.2K Data, 104.8K Total
   8631     Debug Version:     162.7K Code, 50.8K Data, 213.5K Total
   8632   Current Release:
   8633     Non-Debug Version:  87.0K Code, 18.0K Data, 105.0K Total
   8634     Debug Version:     163.4K Code, 50.8K Data, 214.2K Total
   8635 
   8636 2) iASL Compiler/Disassembler and Tools:
   8637 
   8638 iASL: Fixed a regression introduced in 20091112 where intermediate .SRC 
   8639 files 
   8640 were no longer automatically removed at the termination of the compile.
   8641 
   8642 acpiexec: Implemented the -f option to specify default region fill value. 
   8643 This option specifies the value used to initialize buffers that simulate 
   8644 operation regions. Default value is zero. Useful for debugging problems 
   8645 that 
   8646 depend on a specific initial value for a region or field.
   8647 
   8648 ----------------------------------------
   8649 12 November 2009. Summary of changes for version 20091112:
   8650 
   8651 1) ACPI CA Core Subsystem:
   8652 
   8653 Implemented a post-order callback to AcpiWalkNamespace. The existing 
   8654 interface only has a pre-order callback. This change adds an additional 
   8655 parameter for a post-order callback which will be more useful for bus 
   8656 scans. 
   8657 ACPICA BZ 779. Lin Ming. Updated the ACPICA Programmer Reference.
   8658 
   8659 Modified the behavior of the operation region memory mapping cache for 
   8660 SystemMemory. Ensure that the memory mappings created for operation 
   8661 regions 
   8662 do not cross 4K page boundaries. Crossing a page boundary while mapping 
   8663 regions can cause kernel warnings on some hosts if the pages have 
   8664 different 
   8665 attributes. Such regions are probably BIOS bugs, and this is the 
   8666 workaround. 
   8667 Linux BZ 14445. Lin Ming.
   8668 
   8669 Implemented an automatic repair for predefined methods that must return 
   8670 sorted lists. This change will repair (by sorting) packages returned by 
   8671 _ALR, 
   8672 _PSS, and _TSS. Drivers can now assume that the packages are correctly 
   8673 sorted 
   8674 and do not contain NULL package elements. Adds one new file, 
   8675 namespace/nsrepair2.c. ACPICA BZ 784. Lin Ming, Bob Moore.
   8676 
   8677 Fixed a possible fault during predefined name validation if a return 
   8678 Package 
   8679 object contains NULL elements. Also adds a warning if a NULL element is 
   8680 followed by any non-null elements. ACPICA BZ 813, 814. Future enhancement 
   8681 may 
   8682 include repair or removal of all such NULL elements where possible.
   8683 
   8684 Implemented additional module-level executable AML code support. This 
   8685 change 
   8686 will execute module-level code that is not at the root of the namespace 
   8687 (under a Device object, etc.) at table load time. Module-level executable 
   8688 AML 
   8689 code has been illegal since ACPI 2.0. ACPICA BZ 762. Lin Ming.
   8690 
   8691 Implemented a new internal function to create Integer objects. This 
   8692 function 
   8693 simplifies miscellaneous object creation code. ACPICA BZ 823.
   8694 
   8695 Reduced the severity of predefined repair messages, Warning to Info. 
   8696 Since 
   8697 the object was successfully repaired, a warning is too severe. Reduced to 
   8698 an 
   8699 info message for now. These messages may eventually be changed to debug-
   8700 only. 
   8701 ACPICA BZ 812.
   8702 
   8703 Example Code and Data Size: These are the sizes for the OS-independent 
   8704 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   8705 debug version of the code includes the debug output trace mechanism and 
   8706 has a 
   8707 much larger code and data size.
   8708 
   8709   Previous Release:
   8710     Non-Debug Version:  85.8K Code, 18.0K Data, 103.8K Total
   8711     Debug Version:     161.8K Code, 50.6K Data, 212.4K Total
   8712   Current Release:
   8713     Non-Debug Version:  86.6K Code, 18.2K Data, 104.8K Total
   8714     Debug Version:     162.7K Code, 50.8K Data, 213.5K Total
   8715 
   8716 2) iASL Compiler/Disassembler and Tools:
   8717 
   8718 iASL: Implemented Switch() with While(1) so that Break works correctly. 
   8719 This 
   8720 change correctly implements the Switch operator with a surrounding 
   8721 While(1) 
   8722 so that the Break operator works as expected. ACPICA BZ 461. Lin Ming.
   8723 
   8724 iASL: Added a message if a package initializer list is shorter than 
   8725 package 
   8726 length. Adds a new remark for a Package() declaration if an initializer 
   8727 list 
   8728 exists, but is shorter than the declared length of the package. Although 
   8729 technically legal, this is probably a coding error and it is seen in the 
   8730 field. ACPICA BZ 815. Lin Ming, Bob Moore.
   8731 
   8732 iASL: Fixed a problem where the compiler could fault after the maximum 
   8733 number 
   8734 of errors was reached (200).
   8735 
   8736 acpixtract: Fixed a possible warning for pointer cast if the compiler 
   8737 warning 
   8738 level set very high.
   8739 
   8740 ----------------------------------------
   8741 13 October 2009. Summary of changes for version 20091013:
   8742 
   8743 1) ACPI CA Core Subsystem:
   8744 
   8745 Fixed a problem where an Operation Region _REG method could be executed 
   8746 more 
   8747 than once. If a custom address space handler is installed by the host 
   8748 before 
   8749 the "initialize operation regions" phase of the ACPICA initialization, 
   8750 any 
   8751 _REG methods for that address space could be executed twice. This change 
   8752 fixes the problem. ACPICA BZ 427. Lin Ming.
   8753 
   8754 Fixed a possible memory leak for the Scope() ASL operator. When the exact 
   8755 invocation of "Scope(\)" is executed (change scope to root), one internal 
   8756 operand object was leaked. Lin Ming.
   8757 
   8758 Implemented a run-time repair for the _MAT predefined method. If the _MAT 
   8759 return value is defined as a Field object in the AML, and the field
   8760 size is less than or equal to the default width of an integer (32 or 
   8761 64),_MAT 
   8762 can incorrectly return an Integer instead of a Buffer. ACPICA now 
   8763 automatically repairs this problem. ACPICA BZ 810.
   8764 
   8765 Implemented a run-time repair for the _BIF and _BIX predefined methods. 
   8766 The 
   8767 "OEM Information" field is often incorrectly returned as an Integer with 
   8768 value zero if the field is not supported by the platform. This is due to 
   8769 an 
   8770 ambiguity in the ACPI specification. The field should always be a string. 
   8771 ACPICA now automatically repairs this problem by returning a NULL string 
   8772 within the returned Package. ACPICA BZ 807.
   8773 
   8774 Example Code and Data Size: These are the sizes for the OS-independent 
   8775 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   8776 debug version of the code includes the debug output trace mechanism and 
   8777 has a 
   8778 much larger code and data size.
   8779 
   8780   Previous Release:
   8781     Non-Debug Version:  85.6K Code, 18.0K Data, 103.6K Total
   8782     Debug Version:     161.7K Code, 50.9K Data, 212.6K Total
   8783   Current Release:
   8784     Non-Debug Version:  85.8K Code, 18.0K Data, 103.8K Total
   8785     Debug Version:     161.8K Code, 50.6K Data, 212.4K Total
   8786 
   8787 2) iASL Compiler/Disassembler and Tools:
   8788 
   8789 Disassembler: Fixed a problem where references to external symbols that 
   8790 contained one or more parent-prefixes (carats) were not handled 
   8791 correctly, 
   8792 possibly causing a fault. ACPICA BZ 806. Lin Ming.
   8793 
   8794 Disassembler: Restructured the code so that all functions that handle 
   8795 external symbols are in a single module. One new file is added, 
   8796 common/dmextern.c.
   8797 
   8798 AML Debugger: Added a max count argument for the Batch command (which 
   8799 executes multiple predefined methods within the namespace.)
   8800 
   8801 iASL: Updated the compiler documentation (User Reference.) Available at 
   8802 http://www.acpica.org/documentation/. ACPICA BZ 750.
   8803 
   8804 AcpiXtract: Updated for Lint and other formatting changes. Close all open 
   8805 files.
   8806 
   8807 ----------------------------------------
   8808 03 September 2009. Summary of changes for version 20090903:
   8809 
   8810 1) ACPI CA Core Subsystem:
   8811 
   8812 For Windows Vista compatibility, added the automatic execution of an _INI 
   8813 method located at the namespace root (\_INI). This method is executed at 
   8814 table load time. This support is in addition to the automatic execution 
   8815 of 
   8816 \_SB._INI. Lin Ming.
   8817 
   8818 Fixed a possible memory leak in the interpreter for AML package objects 
   8819 if 
   8820 the package initializer list is longer than the defined size of the 
   8821 package. 
   8822 This apparently can only happen if the BIOS changes the package size on 
   8823 the 
   8824 fly (seen in a _PSS object), as ASL compilers do not allow this. The 
   8825 interpreter will truncate the package to the defined size (and issue an 
   8826 error 
   8827 message), but previously could leave the extra objects undeleted if they 
   8828 were 
   8829 pre-created during the argument processing (such is the case if the 
   8830 package 
   8831 consists of a number of sub-packages as in the _PSS.) ACPICA BZ 805.
   8832 
   8833 Fixed a problem seen when a Buffer or String is stored to itself via ASL. 
   8834 This has been reported in the field. Previously, ACPICA would zero out 
   8835 the 
   8836 buffer/string. Now, the operation is treated as a noop. Provides Windows 
   8837 compatibility. ACPICA BZ 803. Lin Ming.
   8838 
   8839 Removed an extraneous error message for ASL constructs of the form 
   8840 Store(LocalX,LocalX) when LocalX is uninitialized. These curious 
   8841 statements 
   8842 are seen in many BIOSs and are once again treated as NOOPs and no error 
   8843 is 
   8844 emitted when they are encountered. ACPICA BZ 785.
   8845 
   8846 Fixed an extraneous warning message if a _DSM reserved method returns a 
   8847 Package object. _DSM can return any type of object, so validation on the 
   8848 return type cannot be performed. ACPICA BZ 802.
   8849 
   8850 Example Code and Data Size: These are the sizes for the OS-independent 
   8851 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   8852 debug version of the code includes the debug output trace mechanism and 
   8853 has a 
   8854 much larger code and data size.
   8855 
   8856   Previous Release:
   8857     Non-Debug Version:  85.5K Code, 18.0K Data, 103.5K Total
   8858     Debug Version:     161.6K Code, 50.9K Data, 212.5K Total
   8859   Current Release:
   8860     Non-Debug Version:  85.6K Code, 18.0K Data, 103.6K Total
   8861     Debug Version:     161.7K Code, 50.9K Data, 212.6K Total
   8862 
   8863 2) iASL Compiler/Disassembler and Tools:
   8864 
   8865 iASL: Fixed a problem with the use of the Alias operator and Resource 
   8866 Templates. The correct alias is now constructed and no error is emitted. 
   8867 ACPICA BZ 738.
   8868 
   8869 iASL: Implemented the -I option to specify additional search directories 
   8870 for 
   8871 include files. Allows multiple additional search paths for include files. 
   8872 Directories are searched in the order specified on the command line 
   8873 (after 
   8874 the local directory is searched.) ACPICA BZ 800.
   8875 
   8876 iASL: Fixed a problem where the full pathname for include files was not 
   8877 emitted for warnings/errors. This caused the IDE support to not work 
   8878 properly. ACPICA BZ 765.
   8879 
   8880 iASL: Implemented the -@ option to specify a Windows-style response file 
   8881 containing additional command line options. ACPICA BZ 801.
   8882 
   8883 AcpiExec: Added support to load multiple AML files simultaneously (such 
   8884 as 
   8885 a 
   8886 DSDT and multiple SSDTs). Also added support for wildcards within the AML 
   8887 pathname. These features allow all machine tables to be easily loaded and 
   8888 debugged together. ACPICA BZ 804.
   8889 
   8890 Disassembler: Added missing support for disassembly of HEST table Error 
   8891 Bank 
   8892 subtables. 
   8893 
   8894 ----------------------------------------
   8895 30 July 2009. Summary of changes for version 20090730:
   8896 
   8897 The ACPI 4.0 implementation for ACPICA is complete with this release.
   8898 
   8899 1) ACPI CA Core Subsystem:
   8900 
   8901 ACPI 4.0: Added header file support for all new and changed ACPI tables. 
   8902 Completely new tables are: IBFT, IVRS, MSCT, and WAET. Tables that are 
   8903 new 
   8904 for ACPI 4.0, but have previously been supported in ACPICA are: CPEP, 
   8905 BERT, 
   8906 EINJ, ERST, and HEST. Other newly supported tables are: UEFI and WDAT. 
   8907 There 
   8908 have been some ACPI 4.0 changes to other existing tables. Split the large 
   8909 actbl1.h header into the existing actbl2.h header. ACPICA BZ 774.
   8910 
   8911 ACPI 4.0: Implemented predefined name validation for all new names. There 
   8912 are 
   8913 31 new names in ACPI 4.0. The predefined validation module was split into 
   8914 two 
   8915 files. The new file is namespace/nsrepair.c. ACPICA BZ 770.
   8916 
   8917 Implemented support for so-called "module-level executable code". This is 
   8918 executable AML code that exists outside of any control method and is 
   8919 intended 
   8920 to be executed at table load time. Although illegal since ACPI 2.0, this 
   8921 type 
   8922 of code still exists and is apparently still being created. Blocks of 
   8923 this 
   8924 code are now detected and executed as intended. Currently, the code 
   8925 blocks 
   8926 must exist under either an If, Else, or While construct; these are the 
   8927 typical cases seen in the field. ACPICA BZ 762. Lin Ming.
   8928 
   8929 Implemented an automatic dynamic repair for predefined names that return 
   8930 nested Package objects. This applies to predefined names that are defined 
   8931 to 
   8932 return a variable-length Package of sub-packages. If the number of sub-
   8933 packages is one, BIOS code is occasionally seen that creates a simple 
   8934 single 
   8935 package with no sub-packages. This code attempts to fix the problem by 
   8936 wrapping a new package object around the existing package. These methods 
   8937 can 
   8938 be repaired: _ALR, _CSD, _HPX, _MLS, _PRT, _PSS, _TRT, and _TSS. ACPICA 
   8939 BZ 
   8940 790.
   8941 
   8942 Fixed a regression introduced in 20090625 for the AcpiGetDevices 
   8943 interface. 
   8944 The _HID/_CID matching was broken and no longer matched IDs correctly. 
   8945 ACPICA 
   8946 BZ 793.
   8947 
   8948 Fixed a problem with AcpiReset where the reset would silently fail if the 
   8949 register was one of the protected I/O ports. AcpiReset now bypasses the 
   8950 port 
   8951 validation mechanism. This may eventually be driven into the 
   8952 AcpiRead/Write 
   8953 interfaces.
   8954 
   8955 Fixed a regression related to the recent update of the AcpiRead/Write 
   8956 interfaces. A sleep/suspend could fail if the optional PM2 Control 
   8957 register 
   8958 does not exist during an attempt to write the Bus Master Arbitration bit. 
   8959 (However, some hosts already delete the code that writes this bit, and 
   8960 the 
   8961 code may in fact be obsolete at this date.) ACPICA BZ 799.
   8962 
   8963 Fixed a problem where AcpiTerminate could fault if inadvertently called 
   8964 twice 
   8965 in succession. ACPICA BZ 795.
   8966 
   8967 Example Code and Data Size: These are the sizes for the OS-independent 
   8968 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   8969 debug version of the code includes the debug output trace mechanism and 
   8970 has a 
   8971 much larger code and data size.
   8972 
   8973   Previous Release:
   8974     Non-Debug Version:  84.7K Code, 17.8K Data, 102.5K Total
   8975     Debug Version:     160.5K Code, 50.6K Data, 211.1K Total
   8976   Current Release:
   8977     Non-Debug Version:  85.5K Code, 18.0K Data, 103.5K Total
   8978     Debug Version:     161.6K Code, 50.9K Data, 212.5K Total
   8979 
   8980 2) iASL Compiler/Disassembler and Tools:
   8981 
   8982 ACPI 4.0: Implemented disassembler support for all new ACPI tables and 
   8983 changes to existing tables. ACPICA BZ 775.
   8984 
   8985 ----------------------------------------
   8986 25 June 2009. Summary of changes for version 20090625:
   8987 
   8988 The ACPI 4.0 Specification was released on June 16 and is available at 
   8989 www.acpi.info. ACPICA implementation of ACPI 4.0 is underway and will 
   8990 continue for the next few releases.
   8991 
   8992 1) ACPI CA Core Subsystem:
   8993 
   8994 ACPI 4.0: Implemented interpreter support for the IPMI operation region 
   8995 address space. Includes support for bi-directional data buffers and an 
   8996 IPMI 
   8997 address space handler (to be installed by an IPMI device driver.) ACPICA 
   8998 BZ 
   8999 773. Lin Ming.
   9000 
   9001 ACPI 4.0: Added changes for existing ACPI tables - FACS and SRAT. 
   9002 Includes 
   9003 support in both the header files and the disassembler.
   9004 
   9005 Completed a major update for the AcpiGetObjectInfo external interface. 
   9006 Changes include:
   9007  - Support for variable, unlimited length HID, UID, and CID strings.
   9008  - Support Processor objects the same as Devices (HID,UID,CID,ADR,STA, 
   9009 etc.)
   9010  - Call the _SxW power methods on behalf of a device object.
   9011  - Determine if a device is a PCI root bridge.
   9012  - Change the ACPI_BUFFER parameter to ACPI_DEVICE_INFO.
   9013 These changes will require an update to all callers of this interface. 
   9014 See 
   9015 the updated ACPICA Programmer Reference for details. One new source file 
   9016 has 
   9017 been added - utilities/utids.c. ACPICA BZ 368, 780.
   9018 
   9019 Updated the AcpiRead and AcpiWrite external interfaces to support 64-bit 
   9020 transfers. The Value parameter has been extended from 32 bits to 64 bits 
   9021 in 
   9022 order to support new ACPI 4.0 tables. These changes will require an 
   9023 update 
   9024 to 
   9025 all callers of these interfaces. See the ACPICA Programmer Reference for 
   9026 details. ACPICA BZ 768.
   9027 
   9028 Fixed several problems with AcpiAttachData. The handler was not invoked 
   9029 when 
   9030 the host node was deleted. The data sub-object was not automatically 
   9031 deleted 
   9032 when the host node was deleted. The interface to the handler had an 
   9033 unused 
   9034 parameter, this was removed. ACPICA BZ 778.
   9035 
   9036 Enhanced the function that dumps ACPI table headers. All non-printable 
   9037 characters in the string fields are now replaced with '?' (Signature, 
   9038 OemId, 
   9039 OemTableId, and CompilerId.) ACPI tables with non-printable characters in 
   9040 these fields are occasionally seen in the field. ACPICA BZ 788.
   9041 
   9042 Fixed a problem with predefined method repair code where the code that 
   9043 attempts to repair/convert an object of incorrect type is only executed 
   9044 on 
   9045 the first time the predefined method is called. The mechanism that 
   9046 disables 
   9047 warnings on subsequent calls was interfering with the repair mechanism. 
   9048 ACPICA BZ 781.
   9049 
   9050 Fixed a possible memory leak in the predefined validation/repair code 
   9051 when 
   9052 a 
   9053 buffer is automatically converted to an expected string object.
   9054 
   9055 Removed obsolete 16-bit files from the distribution and from the current 
   9056 git 
   9057 tree head. ACPICA BZ 776.
   9058 
   9059 Example Code and Data Size: These are the sizes for the OS-independent 
   9060 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9061 debug version of the code includes the debug output trace mechanism and 
   9062 has a 
   9063 much larger code and data size.
   9064 
   9065   Previous Release:
   9066     Non-Debug Version:  83.4K Code, 17.5K Data, 100.9K Total
   9067     Debug Version:     158.9K Code, 50.0K Data, 208.9K Total
   9068   Current Release:
   9069     Non-Debug Version:  84.7K Code, 17.8K Data, 102.5K Total
   9070     Debug Version:     160.5K Code, 50.6K Data, 211.1K Total
   9071 
   9072 2) iASL Compiler/Disassembler and Tools:
   9073 
   9074 ACPI 4.0: iASL and Disassembler - implemented support for the new IPMI 
   9075 operation region keyword. ACPICA BZ 771, 772. Lin Ming.
   9076 
   9077 ACPI 4.0: iASL - implemented compile-time validation support for all new 
   9078 predefined names and control methods (31 total). ACPICA BZ 769.
   9079 
   9080 ----------------------------------------
   9081 21 May 2009. Summary of changes for version 20090521:
   9082 
   9083 1) ACPI CA Core Subsystem:
   9084 
   9085 Disabled the preservation of the SCI enable bit in the PM1 control 
   9086 register. 
   9087 The SCI enable bit (bit 0, SCI_EN) is defined by the ACPI specification 
   9088 to 
   9089 be 
   9090 a "preserved" bit - "OSPM always preserves this bit position", section 
   9091 4.7.3.2.1. However, some machines fail if this bit is in fact preserved 
   9092 because the bit needs to be explicitly set by the OS as a workaround. No 
   9093 machines fail if the bit is not preserved. Therefore, ACPICA no longer 
   9094 attempts to preserve this bit.
   9095 
   9096 Fixed a problem in AcpiRsGetPciRoutingTableLength where an invalid or 
   9097 incorrectly formed _PRT package could cause a fault. Added validation to 
   9098 ensure that each package element is actually a sub-package.
   9099 
   9100 Implemented a new interface to install or override a single control 
   9101 method, 
   9102 AcpiInstallMethod. This interface is useful when debugging in order to 
   9103 repair 
   9104 an existing method or to install a missing method without having to 
   9105 override 
   9106 the entire ACPI table. See the ACPICA Programmer Reference for use and 
   9107 examples. Lin Ming, Bob Moore.
   9108 
   9109 Fixed several reference count issues with the DdbHandle object that is 
   9110 created from a Load or LoadTable operator. Prevent premature deletion of 
   9111 the 
   9112 object. Also, mark the object as invalid once the table has been 
   9113 unloaded. 
   9114 This is needed because the handle itself may not be deleted after the 
   9115 table 
   9116 unload, depending on whether it has been stored in a named object by the 
   9117 caller. Lin Ming.
   9118 
   9119 Fixed a problem with Mutex Sync Levels. Fixed a problem where if multiple 
   9120 mutexes of the same sync level are acquired but then not released in 
   9121 strict 
   9122 opposite order, the internally maintained Current Sync Level becomes 
   9123 confused 
   9124 and can cause subsequent execution errors. ACPICA BZ 471.
   9125 
   9126 Changed the allowable release order for ASL mutex objects. The ACPI 4.0 
   9127 specification has been changed to make the SyncLevel for mutex objects 
   9128 more 
   9129 useful. When releasing a mutex, the SyncLevel of the mutex must now be 
   9130 the 
   9131 same as the current sync level. This makes more sense than the previous 
   9132 rule 
   9133 (SyncLevel less than or equal). This change updates the code to match the 
   9134 specification.
   9135 
   9136 Fixed a problem with the local version of the AcpiOsPurgeCache function. 
   9137 The 
   9138 (local) cache must be locked during all cache object deletions. Andrew 
   9139 Baumann.
   9140 
   9141 Updated the Load operator to use operation region interfaces. This 
   9142 replaces 
   9143 direct memory mapping with region access calls. Now, all region accesses 
   9144 go 
   9145 through the installed region handler as they should.
   9146 
   9147 Simplified and optimized the NsGetNextNode function. Reduced parameter 
   9148 count 
   9149 and reduced code for this frequently used function.
   9150 
   9151 Example Code and Data Size: These are the sizes for the OS-independent 
   9152 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9153 debug version of the code includes the debug output trace mechanism and 
   9154 has a 
   9155 much larger code and data size.
   9156 
   9157   Previous Release:
   9158     Non-Debug Version:  82.8K Code, 17.5K Data, 100.3K Total
   9159     Debug Version:     158.0K Code, 49.9K Data, 207.9K Total
   9160   Current Release:
   9161     Non-Debug Version:  83.4K Code, 17.5K Data, 100.9K Total
   9162     Debug Version:     158.9K Code, 50.0K Data, 208.9K Total
   9163 
   9164 2) iASL Compiler/Disassembler and Tools:
   9165 
   9166 Disassembler: Fixed some issues with DMAR, HEST, MADT tables. Some 
   9167 problems 
   9168 with sub-table disassembly and handling invalid sub-tables. Attempt 
   9169 recovery 
   9170 after an invalid sub-table ID.
   9171 
   9172 ----------------------------------------
   9173 22 April 2009. Summary of changes for version 20090422:
   9174 
   9175 1) ACPI CA Core Subsystem:
   9176 
   9177 Fixed a compatibility issue with the recently released I/O port 
   9178 protection 
   9179 mechanism. For windows compatibility, 1) On a port protection violation, 
   9180 simply ignore the request and do not return an exception (allow the 
   9181 control 
   9182 method to continue execution.) 2) If only part of the request overlaps a 
   9183 protected port, read/write the individual ports that are not protected. 
   9184 Linux 
   9185 BZ 13036. Lin Ming
   9186 
   9187 Enhanced the execution of the ASL/AML BreakPoint operator so that it 
   9188 actually 
   9189 breaks into the AML debugger if the debugger is present. This matches the 
   9190 ACPI-defined behavior.
   9191 
   9192 Fixed several possible warnings related to the use of the configurable 
   9193 ACPI_THREAD_ID. This type can now be configured as either an integer or a 
   9194 pointer with no warnings. Also fixes several warnings in printf-like 
   9195 statements for the 64-bit build when the type is configured as a pointer. 
   9196 ACPICA BZ 766, 767.
   9197 
   9198 Fixed a number of possible warnings when compiling with gcc 4+ (depending 
   9199 on 
   9200 warning options.) Examples include printf formats, aliasing, unused 
   9201 globals, 
   9202 missing prototypes, missing switch default statements, use of non-ANSI 
   9203 library functions, use of non-ANSI constructs. See generate/unix/Makefile 
   9204 for 
   9205 a list of warning options used with gcc 3 and 4. ACPICA BZ 735.
   9206 
   9207 Example Code and Data Size: These are the sizes for the OS-independent 
   9208 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9209 debug version of the code includes the debug output trace mechanism and 
   9210 has a 
   9211 much larger code and data size.
   9212 
   9213   Previous Release:
   9214     Non-Debug Version:  82.6K Code, 17.6K Data, 100.2K Total
   9215     Debug Version:     157.7K Code, 49.9K Data, 207.6K Total
   9216   Current Release:
   9217     Non-Debug Version:  82.8K Code, 17.5K Data, 100.3K Total
   9218     Debug Version:     158.0K Code, 49.9K Data, 207.9K Total
   9219 
   9220 2) iASL Compiler/Disassembler and Tools:
   9221 
   9222 iASL: Fixed a generation warning from Bison 2.3 and fixed several 
   9223 warnings 
   9224 on 
   9225 the 64-bit build.
   9226 
   9227 iASL: Fixed a problem where the Unix/Linux versions of the compiler could 
   9228 not 
   9229 correctly digest Windows/DOS formatted files (with CR/LF).
   9230 
   9231 iASL: Added a new option for "quiet mode" (-va) that produces only the 
   9232 compilation summary, not individual errors and warnings. Useful for large 
   9233 batch compilations.
   9234 
   9235 AcpiExec: Implemented a new option (-z) to enable a forced 
   9236 semaphore/mutex 
   9237 timeout that can be used to detect hang conditions during execution of 
   9238 AML 
   9239 code (includes both internal semaphores and AML-defined mutexes and 
   9240 events.)
   9241 
   9242 Added new makefiles for the generation of acpica in a generic unix-like 
   9243 environment. These makefiles are intended to generate the acpica tools 
   9244 and 
   9245 utilities from the original acpica git source tree structure.
   9246 
   9247 Test Suites: Updated and cleaned up the documentation files. Updated the 
   9248 copyrights to 2009, affecting all source files. Use the new version of 
   9249 iASL 
   9250 with quiet mode. Increased the number of available semaphores in the 
   9251 Windows 
   9252 OSL, allowing the aslts to execute fully on Windows. For the Unix OSL, 
   9253 added 
   9254 an alternate implementation of the semaphore timeout to allow aslts to 
   9255 execute fully on Cygwin.
   9256 
   9257 ----------------------------------------
   9258 20 March 2009. Summary of changes for version 20090320:
   9259 
   9260 1) ACPI CA Core Subsystem:
   9261 
   9262 Fixed a possible race condition between AcpiWalkNamespace and dynamic 
   9263 table 
   9264 unloads. Added a reader/writer locking mechanism to allow multiple 
   9265 concurrent 
   9266 namespace walks (readers), but block a dynamic table unload until it can 
   9267 gain 
   9268 exclusive write access to the namespace. This fixes a problem where a 
   9269 table 
   9270 unload could (possibly catastrophically) delete the portion of the 
   9271 namespace 
   9272 that is currently being examined by a walk. Adds a new file, utlock.c, 
   9273 that 
   9274 implements the reader/writer lock mechanism. ACPICA BZ 749.
   9275 
   9276 Fixed a regression introduced in version 20090220 where a change to the 
   9277 FADT 
   9278 handling could cause the ACPICA subsystem to access non-existent I/O 
   9279 ports.
   9280 
   9281 Modified the handling of FADT register and table (FACS/DSDT) addresses. 
   9282 The 
   9283 FADT can contain both 32-bit and 64-bit versions of these addresses. 
   9284 Previously, the 64-bit versions were favored, meaning that if both 32 and 
   9285 64 
   9286 versions were valid, but not equal, the 64-bit version was used. This was 
   9287 found to cause some machines to fail. Now, in this case, the 32-bit 
   9288 version 
   9289 is used instead. This now matches the Windows behavior.
   9290 
   9291 Implemented a new mechanism to protect certain I/O ports. Provides 
   9292 Microsoft 
   9293 compatibility and protects the standard PC I/O ports from access via AML 
   9294 code. Adds a new file, hwvalid.c
   9295 
   9296 Fixed a possible extraneous warning message from the FADT support. The 
   9297 message warns of a 32/64 length mismatch between the legacy and GAS 
   9298 definitions for a register.
   9299 
   9300 Removed the obsolete AcpiOsValidateAddress OSL interface. This interface 
   9301 is 
   9302 made obsolete by the port protection mechanism above. It was previously 
   9303 used 
   9304 to validate the entire address range of an operation region, which could 
   9305 be 
   9306 incorrect if the range included illegal ports, but fields within the 
   9307 operation region did not actually access those ports. Validation is now 
   9308 performed on a per-field basis instead of the entire region.
   9309 
   9310 Modified the handling of the PM1 Status Register ignored bit (bit 11.) 
   9311 Ignored bits must be "preserved" according to the ACPI spec. Usually, 
   9312 this 
   9313 means a read/modify/write when writing to the register. However, for 
   9314 status 
   9315 registers, writing a one means clear the event. Writing a zero means 
   9316 preserve 
   9317 the event (do not clear.) This behavior is clarified in the ACPI 4.0 
   9318 spec, 
   9319 and the ACPICA code now simply always writes a zero to the ignored bit.
   9320 
   9321 Modified the handling of ignored bits for the PM1 A/B Control Registers. 
   9322 As 
   9323 per the ACPI specification, for the control registers, preserve 
   9324 (read/modify/write) all bits that are defined as either reserved or 
   9325 ignored.
   9326 
   9327 Updated the handling of write-only bits in the PM1 A/B Control Registers. 
   9328 When reading the register, zero the write-only bits as per the ACPI spec. 
   9329 ACPICA BZ 443. Lin Ming.
   9330 
   9331 Removed "Linux" from the list of supported _OSI strings. Linux no longer 
   9332 wants to reply true to this request. The Windows strings are the only 
   9333 paths 
   9334 through the AML that are tested and known to work properly.
   9335 
   9336   Previous Release:
   9337     Non-Debug Version:  82.0K Code, 17.5K Data,  99.5K Total
   9338     Debug Version:     156.9K Code, 49.8K Data, 206.7K Total
   9339   Current Release:
   9340     Non-Debug Version:  82.6K Code, 17.6K Data, 100.2K Total
   9341     Debug Version:     157.7K Code, 49.9K Data, 207.6K Total
   9342 
   9343 2) iASL Compiler/Disassembler and Tools:
   9344 
   9345 Acpiexec: Split the large aeexec.c file into two new files, aehandlers.c 
   9346 and 
   9347 aetables.c
   9348 
   9349 ----------------------------------------
   9350 20 February 2009. Summary of changes for version 20090220:
   9351 
   9352 1) ACPI CA Core Subsystem:
   9353 
   9354 Optimized the ACPI register locking. Removed locking for reads from the 
   9355 ACPI 
   9356 bit registers in PM1 Status, Enable, Control, and PM2 Control. The lock 
   9357 is 
   9358 not required when reading the single-bit registers. The 
   9359 AcpiGetRegisterUnlocked function is no longer needed and has been 
   9360 removed. 
   9361 This will improve performance for reads on these registers. ACPICA BZ 
   9362 760.
   9363 
   9364 Fixed the parameter validation for AcpiRead/Write. Now return 
   9365 AE_BAD_PARAMETER if the input register pointer is null, and 
   9366 AE_BAD_ADDRESS 
   9367 if 
   9368 the register has an address of zero. Previously, these cases simply 
   9369 returned 
   9370 AE_OK. For optional registers such as PM1B status/enable/control, the 
   9371 caller 
   9372 should check for a valid register address before calling. ACPICA BZ 748.
   9373 
   9374 Renamed the external ACPI bit register access functions. Renamed 
   9375 AcpiGetRegister and AcpiSetRegister to clarify the purpose of these 
   9376 functions. The new names are AcpiReadBitRegister and 
   9377 AcpiWriteBitRegister. 
   9378 Also, restructured the code for these functions by simplifying the code 
   9379 path 
   9380 and condensing duplicate code to reduce code size.
   9381 
   9382 Added new functions to transparently handle the possibly split PM1 A/B 
   9383 registers. AcpiHwReadMultiple and AcpiHwWriteMultiple. These two 
   9384 functions 
   9385 now handle the split registers for PM1 Status, Enable, and Control. 
   9386 ACPICA 
   9387 BZ 
   9388 746.
   9389 
   9390 Added a function to handle the PM1 control registers, 
   9391 AcpiHwWritePm1Control. 
   9392 This function writes both of the PM1 control registers (A/B). These 
   9393 registers 
   9394 are different than the PM1 A/B status and enable registers in that 
   9395 different 
   9396 values can be written to the A/B registers. Most notably, the SLP_TYP 
   9397 bits 
   9398 can be different, as per the values returned from the _Sx predefined 
   9399 methods.
   9400 
   9401 Removed an extra register write within AcpiHwClearAcpiStatus. This 
   9402 function 
   9403 was writing an optional PM1B status register twice. The existing call to 
   9404 the 
   9405 low-level AcpiHwRegisterWrite automatically handles a possibly split PM1 
   9406 A/B 
   9407 register. ACPICA BZ 751.
   9408 
   9409 Split out the PM1 Status registers from the FADT. Added new globals for 
   9410 these 
   9411 registers (A/B), similar to the way the PM1 Enable registers are handled. 
   9412 Instead of overloading the FADT Event Register blocks. This makes the 
   9413 code 
   9414 clearer and less prone to error.
   9415 
   9416 Fixed the warning message for when the platform contains too many ACPI 
   9417 tables 
   9418 for the default size of the global root table data structure. The 
   9419 calculation 
   9420 for the truncation value was incorrect.
   9421 
   9422 Removed the ACPI_GET_OBJECT_TYPE macro. Removed all instances of this 
   9423 obsolete macro, since it is now a simple reference to ->common.type. 
   9424 There 
   9425 were about 150 invocations of the macro across 41 files. ACPICA BZ 755.
   9426 
   9427 Removed the redundant ACPI_BITREG_SLEEP_TYPE_B. This type is the same as 
   9428 TYPE_A. Removed this and all related instances. Renamed SLEEP_TYPE_A to 
   9429 simply SLEEP_TYPE. ACPICA BZ 754.
   9430 
   9431 Conditionally compile the AcpiSetFirmwareWakingVector64 function. This 
   9432 function is only needed on 64-bit host operating systems and is thus not 
   9433 included for 32-bit hosts.
   9434 
   9435 Debug output: print the input and result for invocations of the _OSI 
   9436 reserved 
   9437 control method via the ACPI_LV_INFO debug level. Also, reduced some of 
   9438 the 
   9439 verbosity of this debug level. Len Brown.
   9440 
   9441 Example Code and Data Size: These are the sizes for the OS-independent 
   9442 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9443 debug version of the code includes the debug output trace mechanism and 
   9444 has a 
   9445 much larger code and data size.
   9446 
   9447   Previous Release:
   9448     Non-Debug Version:  82.3K Code, 17.5K Data,  99.8K Total
   9449     Debug Version:     157.3K Code, 49.8K Data, 207.1K Total
   9450   Current Release:
   9451     Non-Debug Version:  82.0K Code, 17.5K Data,  99.5K Total
   9452     Debug Version:     156.9K Code, 49.8K Data, 206.7K Total
   9453 
   9454 2) iASL Compiler/Disassembler and Tools:
   9455 
   9456 Disassembler: Decode the FADT PM_Profile field. Emit ascii names for the 
   9457 various legal performance profiles.
   9458 
   9459 ----------------------------------------
   9460 23 January 2009. Summary of changes for version 20090123:
   9461 
   9462 1) ACPI CA Core Subsystem:
   9463 
   9464 Added the 2009 copyright to all module headers and signons. This affects 
   9465 virtually every file in the ACPICA core subsystem, the iASL compiler, and 
   9466 the tools/utilities.
   9467 
   9468 Implemented a change to allow the host to override any ACPI table, 
   9469 including 
   9470 dynamically loaded tables. Previously, only the DSDT could be replaced by 
   9471 the 
   9472 host. With this change, the AcpiOsTableOverride interface is called for 
   9473 each 
   9474 table found in the RSDT/XSDT during ACPICA initialization, and also 
   9475 whenever 
   9476 a table is dynamically loaded via the AML Load operator.
   9477 
   9478 Updated FADT flag definitions, especially the Boot Architecture flags.
   9479 
   9480 Debugger: For the Find command, automatically pad the input ACPI name 
   9481 with 
   9482 underscores if the name is shorter than 4 characters. This enables a 
   9483 match 
   9484 with the actual namespace entry which is itself padded with underscores.
   9485 
   9486 Example Code and Data Size: These are the sizes for the OS-independent 
   9487 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9488 debug version of the code includes the debug output trace mechanism and 
   9489 has a 
   9490 much larger code and data size.
   9491 
   9492   Previous Release:
   9493     Non-Debug Version:  82.3K Code, 17.4K Data,  99.7K Total
   9494     Debug Version:     157.1K Code, 49.7K Data, 206.8K Total
   9495   Current Release:
   9496     Non-Debug Version:  82.3K Code, 17.5K Data,  99.8K Total
   9497     Debug Version:     157.3K Code, 49.8K Data, 207.1K Total
   9498 
   9499 2) iASL Compiler/Disassembler and Tools:
   9500 
   9501 Fix build error under Bison-2.4.
   9502 
   9503 Disassembler: Enhanced FADT support. Added decoding of the Boot
   9504 Architecture
   9505 flags. Now decode all flags, regardless of the FADT version. Flag output 
   9506 includes the FADT version which first defined each flag.
   9507 
   9508 The iASL -g option now dumps the RSDT to a file (in addition to the FADT 
   9509 and 
   9510 DSDT). Windows only.
   9511 
   9512 ----------------------------------------
   9513 04 December 2008. Summary of changes for version 20081204:
   9514 
   9515 1) ACPI CA Core Subsystem:
   9516 
   9517 The ACPICA Programmer Reference has been completely updated and revamped 
   9518 for 
   9519 this release. This includes updates to the external interfaces, OSL 
   9520 interfaces, the overview sections, and the debugger reference.
   9521 
   9522 Several new ACPICA interfaces have been implemented and documented in the 
   9523 programmer reference:
   9524 AcpiReset - Writes the reset value to the FADT-defined reset register.
   9525 AcpiDisableAllGpes - Disable all available GPEs.
   9526 AcpiEnableAllRuntimeGpes - Enable all available runtime GPEs.
   9527 AcpiGetGpeDevice - Get the GPE block device associated with a GPE.
   9528 AcpiGbl_CurrentGpeCount - Tracks the current number of available GPEs.
   9529 AcpiRead - Low-level read ACPI register (was HwLowLevelRead.)
   9530 AcpiWrite - Low-level write ACPI register (was HwLowLevelWrite.)
   9531 
   9532 Most of the public ACPI hardware-related interfaces have been moved to a 
   9533 new 
   9534 file, components/hardware/hwxface.c
   9535 
   9536 Enhanced the FADT parsing and low-level ACPI register access: The ACPI 
   9537 register lengths within the FADT are now used, and the low level ACPI 
   9538 register access no longer hardcodes the ACPI register lengths. Given that 
   9539 there may be some risk in actually trusting the FADT register lengths, a 
   9540 run-
   9541 time option was added to fall back to the default hardcoded lengths if 
   9542 the 
   9543 FADT proves to contain incorrect values - UseDefaultRegisterWidths. This 
   9544 option is set to true for now, and a warning is issued if a suspicious 
   9545 FADT 
   9546 register length is overridden with the default value.
   9547 
   9548 Fixed a reference count issue in NsRepairObject. This problem was 
   9549 introduced 
   9550 in version 20081031 as part of a fix to repair Buffer objects within 
   9551 Packages. Lin Ming.
   9552 
   9553 Added semaphore support to the Linux/Unix application OS-services layer 
   9554 (OSL). ACPICA BZ 448. Lin Ming.
   9555 
   9556 Added the ACPI_MUTEX_TYPE configuration option to select whether mutexes 
   9557 will 
   9558 be implemented in the OSL, or will binary semaphores be used instead.
   9559 
   9560 Example Code and Data Size: These are the sizes for the OS-independent 
   9561 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9562 debug version of the code includes the debug output trace mechanism and 
   9563 has a 
   9564 much larger code and data size.
   9565 
   9566   Previous Release:
   9567     Non-Debug Version:  81.7K Code, 17.3K Data,  99.0K Total
   9568     Debug Version:     156.4K Code, 49.4K Data, 205.8K Total
   9569   Current Release:
   9570     Non-Debug Version:  82.3K Code, 17.4K Data,  99.7K Total
   9571     Debug Version:     157.1K Code, 49.7K Data, 206.8K Total
   9572 
   9573 2) iASL Compiler/Disassembler and Tools:
   9574 
   9575 iASL: Completed the '-e' option to include additional ACPI tables in 
   9576 order 
   9577 to 
   9578 aid with disassembly and External statement generation. ACPICA BZ 742. 
   9579 Lin 
   9580 Ming.
   9581 
   9582 iASL: Removed the "named object in while loop" error. The compiler cannot 
   9583 determine how many times a loop will execute. ACPICA BZ 730.
   9584 
   9585 Disassembler: Implemented support for FADT revision 2 (MS extension). 
   9586 ACPICA 
   9587 BZ 743.
   9588 
   9589 Disassembler: Updates for several ACPI data tables (HEST, EINJ, and 
   9590 MCFG).
   9591 
   9592 ----------------------------------------
   9593 31 October 2008. Summary of changes for version 20081031:
   9594 
   9595 1) ACPI CA Core Subsystem:
   9596 
   9597 Restructured the ACPICA header files into public/private. acpi.h now 
   9598 includes 
   9599 only the "public" acpica headers. All other acpica headers are "private" 
   9600 and 
   9601 should not be included by acpica users. One new file, accommon.h is used 
   9602 to 
   9603 include the commonly used private headers for acpica code generation. 
   9604 Future 
   9605 plans include moving all private headers to a new subdirectory.
   9606 
   9607 Implemented an automatic Buffer->String return value conversion for 
   9608 predefined ACPI methods. For these methods (such as _BIF), added 
   9609 automatic 
   9610 conversion for return objects that are required to be a String, but a 
   9611 Buffer 
   9612 was found instead. This can happen when reading string battery data from 
   9613 an 
   9614 operation region, because it used to be difficult to convert the data 
   9615 from 
   9616 buffer to string from within the ASL. Ensures that the host OS is 
   9617 provided 
   9618 with a valid null-terminated string. Linux BZ 11822.
   9619 
   9620 Updated the FACS waking vector interfaces. Split 
   9621 AcpiSetFirmwareWakingVector 
   9622 into two: one for the 32-bit vector, another for the 64-bit vector. This 
   9623 is 
   9624 required because the host OS must setup the wake much differently for 
   9625 each 
   9626 vector (real vs. protected mode, etc.) and the interface itself should 
   9627 not 
   9628 be 
   9629 deciding which vector to use. Also, eliminated the 
   9630 GetFirmwareWakingVector 
   9631 interface, as it served no purpose (only the firmware reads the vector, 
   9632 OS 
   9633 only writes the vector.) ACPICA BZ 731.
   9634 
   9635 Implemented a mechanism to escape infinite AML While() loops. Added a 
   9636 loop 
   9637 counter to force exit from AML While loops if the count becomes too 
   9638 large. 
   9639 This can occur in poorly written AML when the hardware does not respond 
   9640 within a while loop and the loop does not implement a timeout. The 
   9641 maximum 
   9642 loop count is configurable. A new exception code is returned when a loop 
   9643 is 
   9644 broken, AE_AML_INFINITE_LOOP. Alexey Starikovskiy, Bob Moore.
   9645 
   9646 Optimized the execution of AML While loops. Previously, a control state 
   9647 object was allocated and freed for each execution of the loop. The 
   9648 optimization is to simply reuse the control state for each iteration. 
   9649 This 
   9650 speeds up the raw loop execution time by about 5%.
   9651 
   9652 Enhanced the implicit return mechanism. For Windows compatibility, return 
   9653 an 
   9654 implicit integer of value zero for methods that contain no executable 
   9655 code. 
   9656 Such methods are seen in the field as stubs (presumably), and can cause 
   9657 drivers to fail if they expect a return value. Lin Ming.
   9658 
   9659 Allow multiple backslashes as root prefixes in namepaths. In a fully 
   9660 qualified namepath, allow multiple backslash prefixes. This can happen 
   9661 (and 
   9662 is seen in the field) because of the use of a double-backslash in strings 
   9663 (since backslash is the escape character) causing confusion. ACPICA BZ 
   9664 739 
   9665 Lin Ming.
   9666 
   9667 Emit a warning if two different FACS or DSDT tables are discovered in the 
   9668 FADT. Checks if there are two valid but different addresses for the FACS 
   9669 and 
   9670 DSDT within the FADT (mismatch between the 32-bit and 64-bit fields.)
   9671 
   9672 Consolidated the method argument count validation code. Merged the code 
   9673 that 
   9674 validates control method argument counts into the predefined validation 
   9675 module. Eliminates possible multiple warnings for incorrect argument 
   9676 counts.
   9677 
   9678 Implemented ACPICA example code. Includes code for ACPICA initialization, 
   9679 handler installation, and calling a control method. Available at 
   9680 source/tools/examples.
   9681 
   9682 Added a global pointer for FACS table to simplify internal FACS access. 
   9683 Use 
   9684 the global pointer instead of using AcpiGetTableByIndex for each FACS 
   9685 access. 
   9686 This simplifies the code for the Global Lock and the Firmware Waking 
   9687 Vector(s).
   9688 
   9689 Example Code and Data Size: These are the sizes for the OS-independent 
   9690 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9691 debug version of the code includes the debug output trace mechanism and 
   9692 has a 
   9693 much larger code and data size.
   9694 
   9695   Previous Release:
   9696     Non-Debug Version:  81.2K Code, 17.0K Data,  98.2K Total
   9697     Debug Version:     155.8K Code, 49.1K Data, 204.9K Total
   9698   Current Release:
   9699     Non-Debug Version:  81.7K Code, 17.3K Data,  99.0K Total
   9700     Debug Version:     156.4K Code, 49.4K Data, 205.8K Total
   9701 
   9702 2) iASL Compiler/Disassembler and Tools:
   9703 
   9704 iASL: Improved disassembly of external method calls. Added the -e option 
   9705 to 
   9706 allow the inclusion of additional ACPI tables to help with the 
   9707 disassembly 
   9708 of 
   9709 method invocations and the generation of external declarations during the 
   9710 disassembly. Certain external method invocations cannot be disassembled 
   9711 properly without the actual declaration of the method. Use the -e option 
   9712 to 
   9713 include the table where the external method(s) are actually declared. 
   9714 Most 
   9715 useful for disassembling SSDTs that make method calls back to the master 
   9716 DSDT. Lin Ming. Example: To disassemble an SSDT with calls to DSDT:  iasl 
   9717 -d 
   9718 -e dsdt.aml ssdt1.aml
   9719 
   9720 iASL: Fix to allow references to aliases within ASL namepaths. Fixes a 
   9721 problem where the use of an alias within a namepath would result in a not 
   9722 found error or cause the compiler to fault. Also now allows forward 
   9723 references from the Alias operator itself. ACPICA BZ 738.
   9724 
   9725 ----------------------------------------
   9726 26 September 2008. Summary of changes for version 20080926:
   9727 
   9728 1) ACPI CA Core Subsystem:
   9729 
   9730 Designed and implemented a mechanism to validate predefined ACPI methods 
   9731 and 
   9732 objects. This code validates the predefined ACPI objects (objects whose 
   9733 names 
   9734 start with underscore) that appear in the namespace, at the time they are 
   9735 evaluated. The argument count and the type of the returned object are 
   9736 validated against the ACPI specification. The purpose of this validation 
   9737 is 
   9738 to detect problems with the BIOS-implemented predefined ACPI objects 
   9739 before 
   9740 the results are returned to the ACPI-related drivers. Future enhancements 
   9741 may 
   9742 include actual repair of incorrect return objects where possible. Two new 
   9743 files are nspredef.c and acpredef.h.
   9744 
   9745 Fixed a fault in the AML parser if a memory allocation fails during the 
   9746 Op 
   9747 completion routine AcpiPsCompleteThisOp. Lin Ming. ACPICA BZ 492.
   9748 
   9749 Fixed an issue with implicit return compatibility. This change improves 
   9750 the 
   9751 implicit return mechanism to be more compatible with the MS interpreter. 
   9752 Lin 
   9753 Ming, ACPICA BZ 349.
   9754 
   9755 Implemented support for zero-length buffer-to-string conversions. Allow 
   9756 zero 
   9757 length strings during interpreter buffer-to-string conversions. For 
   9758 example, 
   9759 during the ToDecimalString and ToHexString operators, as well as implicit 
   9760 conversions. Fiodor Suietov, ACPICA BZ 585.
   9761 
   9762 Fixed two possible memory leaks in the error exit paths of 
   9763 AcpiUtUpdateObjectReference and AcpiUtWalkPackageTree. These functions 
   9764 are 
   9765 similar in that they use a stack of state objects in order to eliminate 
   9766 recursion. The stack must be fully unwound and deallocated if an error 
   9767 occurs. Lin Ming. ACPICA BZ 383.
   9768 
   9769 Removed the unused ACPI_BITREG_WAKE_ENABLE definition and entry in the 
   9770 global 
   9771 ACPI register table. This bit does not exist and is unused. Lin Ming, Bob 
   9772 Moore ACPICA BZ 442.
   9773 
   9774 Removed the obsolete version number in module headers. Removed the 
   9775 "$Revision" number that appeared in each module header. This version 
   9776 number 
   9777 was useful under SourceSafe and CVS, but has no meaning under git. It is 
   9778 not 
   9779 only incorrect, it could also be misleading.
   9780 
   9781 Example Code and Data Size: These are the sizes for the OS-independent 
   9782 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9783 debug version of the code includes the debug output trace mechanism and 
   9784 has a 
   9785 much larger code and data size.
   9786 
   9787   Previous Release:
   9788     Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
   9789     Debug Version:     153.7K Code, 48.2K Data, 201.9K Total
   9790   Current Release:
   9791     Non-Debug Version:  81.2K Code, 17.0K Data,  98.2K Total
   9792     Debug Version:     155.8K Code, 49.1K Data, 204.9K Total
   9793 
   9794 ----------------------------------------
   9795 29 August 2008. Summary of changes for version 20080829:
   9796 
   9797 1) ACPI CA Core Subsystem:
   9798 
   9799 Completed a major cleanup of the internal ACPI_OPERAND_OBJECT of type 
   9800 Reference. Changes include the elimination of cheating on the Object 
   9801 field 
   9802 for the DdbHandle subtype, addition of a reference class field to 
   9803 differentiate the various reference types (instead of an AML opcode), and 
   9804 the 
   9805 cleanup of debug output for this object. Lin Ming, Bob Moore. BZ 723
   9806 
   9807 Reduce an error to a warning for an incorrect method argument count. 
   9808 Previously aborted with an error if too few arguments were passed to a 
   9809 control method via the external ACPICA interface. Now issue a warning 
   9810 instead 
   9811 and continue. Handles the case where the method inadvertently declares 
   9812 too 
   9813 many arguments, but does not actually use the extra ones. Applies mainly 
   9814 to 
   9815 the predefined methods. Lin Ming. Linux BZ 11032.
   9816 
   9817 Disallow the evaluation of named object types with no intrinsic value. 
   9818 Return 
   9819 AE_TYPE for objects that have no value and therefore evaluation is 
   9820 undefined: 
   9821 Device, Event, Mutex, Region, Thermal, and Scope. Previously, evaluation 
   9822 of 
   9823 these types were allowed, but an exception would be generated at some 
   9824 point 
   9825 during the evaluation. Now, the error is generated up front.
   9826 
   9827 Fixed a possible memory leak in the AcpiNsGetExternalPathname function 
   9828 (nsnames.c). Fixes a leak in the error exit path.
   9829 
   9830 Removed the obsolete debug levels ACPI_DB_WARN and ACPI_DB_ERROR. These 
   9831 debug 
   9832 levels were made obsolete by the ACPI_WARNING, ACPI_ERROR, and 
   9833 ACPI_EXCEPTION 
   9834 interfaces. Also added ACPI_DB_EVENTS to correspond with the existing 
   9835 ACPI_LV_EVENTS.
   9836 
   9837 Removed obsolete and/or unused exception codes from the acexcep.h header. 
   9838 There is the possibility that certain device drivers may be affected if 
   9839 they 
   9840 use any of these exceptions.
   9841 
   9842 The ACPICA documentation has been added to the public git source tree, 
   9843 under 
   9844 acpica/documents. Included are the ACPICA programmer reference, the iASL 
   9845 compiler reference, and the changes.txt release logfile.
   9846 
   9847 Example Code and Data Size: These are the sizes for the OS-independent 
   9848 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9849 debug version of the code includes the debug output trace mechanism and 
   9850 has a 
   9851 much larger code and data size.
   9852 
   9853   Previous Release:
   9854     Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
   9855     Debug Version:     153.9K Code, 48.4K Data, 202.3K Total
   9856   Current Release:
   9857     Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
   9858     Debug Version:     153.7K Code, 48.2K Data, 201.9K Total
   9859 
   9860 2) iASL Compiler/Disassembler and Tools:
   9861 
   9862 Allow multiple argument counts for the predefined _SCP method. ACPI 3.0 
   9863 defines _SCP with 3 arguments. Previous versions defined it with only 1 
   9864 argument. iASL now allows both definitions.
   9865 
   9866 iASL/disassembler: avoid infinite loop on bad ACPI tables. Check for 
   9867 zero-
   9868 length subtables when disassembling ACPI tables. Also fixed a couple of 
   9869 errors where a full 16-bit table type field was not extracted from the 
   9870 input 
   9871 properly.
   9872 
   9873 acpisrc: Improve comment counting mechanism for generating source code 
   9874 statistics. Count first and last lines of multi-line comments as 
   9875 whitespace, 
   9876 not comment lines. Handle Linux legal header in addition to standard 
   9877 acpica 
   9878 header.
   9879 
   9880 ----------------------------------------
   9881 
   9882 29 July 2008. Summary of changes for version 20080729:
   9883 
   9884 1) ACPI CA Core Subsystem:
   9885 
   9886 Fix a possible deadlock in the GPE dispatch. Remove call to 
   9887 AcpiHwDisableAllGpes during wake in AcpiEvGpeDispatch. This call will 
   9888 attempt 
   9889 to acquire the GPE lock but can deadlock since the GPE lock is already 
   9890 held 
   9891 at dispatch time. This code was introduced in version 20060831 as a 
   9892 response 
   9893 to Linux BZ 6881 and has since been removed from Linux.
   9894 
   9895 Add a function to dereference returned reference objects. Examines the 
   9896 return 
   9897 object from a call to AcpiEvaluateObject. Any Index or RefOf references 
   9898 are 
   9899 automatically dereferenced in an attempt to return something useful 
   9900 (these 
   9901 reference types cannot be converted into an external ACPI_OBJECT.) 
   9902 Provides 
   9903 MS compatibility. Lin Ming, Bob Moore. Linux BZ 11105
   9904 
   9905 x2APIC support: changes for MADT and SRAT ACPI tables. There are 2 new 
   9906 subtables for the MADT and one new subtable for the SRAT. Includes 
   9907 disassembler and AcpiSrc support. Data from the Intel 64 Architecture 
   9908 x2APIC 
   9909 Specification, June 2008.
   9910 
   9911 Additional error checking for pathname utilities. Add error check after 
   9912 all 
   9913 calls to AcpiNsGetPathnameLength. Add status return from 
   9914 AcpiNsBuildExternalPath and check after all calls. Add parameter 
   9915 validation 
   9916 to AcpiUtInitializeBuffer. Reported by and initial patch by Ingo Molnar.
   9917 
   9918 Return status from the global init function AcpiUtGlobalInitialize. This 
   9919 is 
   9920 used by both the kernel subsystem and the utilities such as iASL 
   9921 compiler. 
   9922 The function could possibly fail when the caches are initialized. Yang 
   9923 Yi.
   9924 
   9925 Add a function to decode reference object types to strings. Created for 
   9926 improved error messages. 
   9927 
   9928 Improve object conversion error messages. Better error messages during 
   9929 object 
   9930 conversion from internal to the external ACPI_OBJECT. Used for external 
   9931 calls 
   9932 to AcpiEvaluateObject.
   9933 
   9934 Example Code and Data Size: These are the sizes for the OS-independent 
   9935 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9936 debug version of the code includes the debug output trace mechanism and 
   9937 has a 
   9938 much larger code and data size.
   9939 
   9940   Previous Release:
   9941     Non-Debug Version:  79.6K Code, 16.2K Data,  95.8K Total
   9942     Debug Version:     153.5K Code, 48.2K Data, 201.7K Total
   9943   Current Release:
   9944     Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
   9945     Debug Version:     153.9K Code, 48.4K Data, 202.3K Total
   9946 
   9947 2) iASL Compiler/Disassembler and Tools:
   9948 
   9949 Debugger: fix a possible hang when evaluating non-methods. Fixes a 
   9950 problem 
   9951 introduced in version 20080701. If the object being evaluated (via 
   9952 execute 
   9953 command) is not a method, the debugger can hang while trying to obtain 
   9954 non-
   9955 existent parameters.
   9956 
   9957 iASL: relax error for using reserved "_T_x" identifiers. These names can 
   9958 appear in a disassembled ASL file if they were emitted by the original 
   9959 compiler. Instead of issuing an error or warning and forcing the user to 
   9960 manually change these names, issue a remark instead.
   9961 
   9962 iASL: error if named object created in while loop. Emit an error if any 
   9963 named 
   9964 object is created within a While loop. If allowed, this code will 
   9965 generate 
   9966 a 
   9967 run-time error on the second iteration of the loop when an attempt is 
   9968 made 
   9969 to 
   9970 create the same named object twice. ACPICA bugzilla 730.
   9971 
   9972 iASL: Support absolute pathnames for include files. Add support for 
   9973 absolute 
   9974 pathnames within the Include operator. previously, only relative 
   9975 pathnames 
   9976 were supported.
   9977 
   9978 iASL: Enforce minimum 1 interrupt in interrupt macro and Resource 
   9979 Descriptor. 
   9980 The ACPI spec requires one interrupt minimum. BZ 423
   9981 
   9982 iASL: Handle a missing ResourceSource arg, with a present SourceIndex. 
   9983 Handles the case for the Interrupt Resource Descriptor where
   9984 the ResourceSource argument is omitted but ResourceSourceIndex
   9985 is present. Now leave room for the Index. BZ 426
   9986 
   9987 iASL: Prevent error message if CondRefOf target does not exist. Fixes 
   9988 cases 
   9989 where an error message is emitted if the target does not exist. BZ 516
   9990 
   9991 iASL: Fix broken -g option (get Windows ACPI tables). Fixes the -g option 
   9992 (get ACPI tables on Windows). This was apparently broken in version 
   9993 20070919.
   9994 
   9995 AcpiXtract: Handle EOF while extracting data. Correctly handle the case 
   9996 where 
   9997 the EOF happens immediately after the last table in the input file. Print 
   9998 completion message. Previously, no message was displayed in this case.
   9999 
   10000 ----------------------------------------
   10001 01 July 2008. Summary of changes for version 20080701:
   10002 
   10003 0) Git source tree / acpica.org
   10004 
   10005 Fixed a problem where a git-clone from http would not transfer the entire 
   10006 source tree.
   10007 
   10008 1) ACPI CA Core Subsystem:
   10009 
   10010 Implemented a "careful" GPE disable in AcpiEvDisableGpe, only modify one 
   10011 enable bit. Now performs a read-change-write of the enable register 
   10012 instead 
   10013 of simply writing out the cached enable mask. This will prevent 
   10014 inadvertent 
   10015 enabling of GPEs if a rogue GPE is received during initialization (before 
   10016 GPE 
   10017 handlers are installed.)
   10018 
   10019 Implemented a copy for dynamically loaded tables. Previously, dynamically 
   10020 loaded tables were simply mapped - but on some machines this memory is 
   10021 corrupted after suspend. Now copy the table to a local buffer. For the 
   10022 OpRegion case, added checksum verify. Use the table length from the table 
   10023 header, not the region length. For the Buffer case, use the table length 
   10024 also. Dennis Noordsij, Bob Moore. BZ 10734
   10025 
   10026 Fixed a problem where the same ACPI table could not be dynamically loaded 
   10027 and 
   10028 unloaded more than once. Without this change, a table cannot be loaded 
   10029 again 
   10030 once it has been loaded/unloaded one time. The current mechanism does not 
   10031 unregister a table upon an unload. During a load, if the same table is 
   10032 found, 
   10033 this no longer returns an exception. BZ 722
   10034 
   10035 Fixed a problem where the wrong descriptor length was calculated for the 
   10036 EndTag descriptor in 64-bit mode. The "minimal" descriptors such as 
   10037 EndTag 
   10038 are calculated as 12 bytes long, but the actual length in the internal 
   10039 descriptor is 16 because of the round-up to 8 on the 64-bit build. 
   10040 Reported 
   10041 by Linn Crosetto. BZ 728
   10042 
   10043 Fixed a possible memory leak in the Unload operator. The DdbHandle 
   10044 returned 
   10045 by Load() did not have its reference count decremented during unload, 
   10046 leading 
   10047 to a memory leak. Lin Ming. BZ 727
   10048 
   10049 Fixed a possible memory leak when deleting thermal/processor objects. Any 
   10050 associated notify handlers (and objects) were not being deleted. Fiodor 
   10051 Suietov. BZ 506
   10052 
   10053 Fixed the ordering of the ASCII names in the global mutex table to match 
   10054 the 
   10055 actual mutex IDs. Used by AcpiUtGetMutexName, a function used for debug 
   10056 only. 
   10057 Vegard Nossum. BZ 726
   10058 
   10059 Enhanced the AcpiGetObjectInfo interface to return the number of required 
   10060 arguments if the object is a control method. Added this call to the 
   10061 debugger 
   10062 so the proper number of default arguments are passed to a method. This 
   10063 prevents a warning when executing methods from AcpiExec.
   10064 
   10065 Added a check for an invalid handle in AcpiGetObjectInfo. Return 
   10066 AE_BAD_PARAMETER if input handle is invalid. BZ 474
   10067 
   10068 Fixed an extraneous warning from exconfig.c on the 64-bit build.
   10069 
   10070 Example Code and Data Size: These are the sizes for the OS-independent 
   10071 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   10072 debug version of the code includes the debug output trace mechanism and 
   10073 has a 
   10074 much larger code and data size.
   10075 
   10076   Previous Release:
   10077     Non-Debug Version:  79.3K Code, 16.2K Data,  95.5K Total
   10078     Debug Version:     153.0K Code, 48.2K Data, 201.2K Total
   10079   Current Release:
   10080     Non-Debug Version:  79.6K Code, 16.2K Data,  95.8K Total
   10081     Debug Version:     153.5K Code, 48.2K Data, 201.7K Total
   10082 
   10083 2) iASL Compiler/Disassembler and Tools:
   10084 
   10085 iASL: Added two missing ACPI reserved names. Added _MTP and _ASZ, both 
   10086 resource descriptor names.
   10087 
   10088 iASL: Detect invalid ASCII characters in input (windows version). Removed 
   10089 the 
   10090 "-CF" flag from the flex compile, enables correct detection of non-ASCII 
   10091 characters in the input. BZ 441
   10092 
   10093 iASL: Eliminate warning when result of LoadTable is not used. Eliminate 
   10094 the 
   10095 "result of operation not used" warning when the DDB handle returned from 
   10096 LoadTable is not used. The warning is not needed. BZ 590
   10097 
   10098 AcpiExec: Add support for dynamic table load/unload. Now calls _CFG 
   10099 method 
   10100 to 
   10101 pass address of table to the AML. Added option to disable OpRegion 
   10102 simulation 
   10103 to allow creation of an OpRegion with a real address that was passed to 
   10104 _CFG. 
   10105 All of this allows testing of the Load and Unload operators from 
   10106 AcpiExec.
   10107 
   10108 Debugger: update tables command for unloaded tables. Handle unloaded 
   10109 tables 
   10110 and use the standard table header output routine.
   10111 
   10112 ----------------------------------------
   10113 09 June 2008. Summary of changes for version 20080609:
   10114 
   10115 1) ACPI CA Core Subsystem:
   10116 
   10117 Implemented a workaround for reversed _PRT entries. A significant number 
   10118 of 
   10119 BIOSs erroneously reverse the _PRT SourceName and the SourceIndex. This 
   10120 change dynamically detects and repairs this problem. Provides 
   10121 compatibility 
   10122 with MS ACPI. BZ 6859
   10123 
   10124 Simplified the internal ACPI hardware interfaces to eliminate the locking 
   10125 flag parameter from Register Read/Write. Added a new external interface, 
   10126 AcpiGetRegisterUnlocked.
   10127 
   10128 Fixed a problem where the invocation of a GPE control method could hang. 
   10129 This 
   10130 was a regression introduced in 20080514. The new method argument count 
   10131 validation mechanism can enter an infinite loop when a GPE method is 
   10132 dispatched. Problem fixed by removing the obsolete code that passed GPE 
   10133 block 
   10134 information to the notify handler via the control method parameter 
   10135 pointer.
   10136 
   10137 Fixed a problem where the _SST execution status was incorrectly returned 
   10138 to 
   10139 the caller of AcpiEnterSleepStatePrep. This was a regression introduced 
   10140 in 
   10141 20080514. _SST is optional and a NOT_FOUND exception should never be 
   10142 returned. BZ 716
   10143 
   10144 Fixed a problem where a deleted object could be accessed from within the 
   10145 AML 
   10146 parser. This was a regression introduced in version 20080123 as a fix for 
   10147 the 
   10148 Unload operator. Lin Ming. BZ 10669
   10149 
   10150 Cleaned up the debug operand dump mechanism. Eliminated unnecessary 
   10151 operands 
   10152 and eliminated the use of a negative index in a loop. Operands are now 
   10153 displayed in the correct order, not backwards. This also fixes a 
   10154 regression 
   10155 introduced in 20080514 on 64-bit systems where the elimination of 
   10156 ACPI_NATIVE_UINT caused the negative index to go large and positive. BZ 
   10157 715
   10158 
   10159 Fixed a possible memory leak in EvPciConfigRegionSetup where the error 
   10160 exit 
   10161 path did not delete a locally allocated structure.
   10162 
   10163 Updated definitions for the DMAR and SRAT tables to synchronize with the 
   10164 current specifications. Includes disassembler support.
   10165 
   10166 Fixed a problem in the mutex debug code (in utmutex.c) where an incorrect 
   10167 loop termination value was used. Loop terminated on iteration early, 
   10168 missing 
   10169 one mutex. Linn Crosetto
   10170 
   10171 Example Code and Data Size: These are the sizes for the OS-independent 
   10172 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   10173 debug version of the code includes the debug output trace mechanism and 
   10174 has a 
   10175 much larger code and data size.
   10176 
   10177   Previous Release:
   10178     Non-Debug Version:  79.5K Code, 16.2K Data,  95.7K Total
   10179     Debug Version:     153.3K Code, 48.3K Data, 201.6K Total
   10180   Current Release:
   10181     Non-Debug Version:  79.3K Code, 16.2K Data,  95.5K Total
   10182     Debug Version:     153.0K Code, 48.2K Data, 201.2K Total
   10183 
   10184 2) iASL Compiler/Disassembler and Tools:
   10185 
   10186 Disassembler: Implemented support for EisaId() within _CID objects. Now 
   10187 disassemble integer _CID objects back to EisaId invocations, including 
   10188 multiple integers within _CID packages. Includes single-step support for 
   10189 debugger also.
   10190 
   10191 Disassembler: Added support for DMAR and SRAT table definition changes.
   10192 
   10193 ----------------------------------------
   10194 14 May 2008. Summary of changes for version 20080514:
   10195 
   10196 1) ACPI CA Core Subsystem:
   10197 
   10198 Fixed a problem where GPEs were enabled too early during the ACPICA 
   10199 initialization. This could lead to "handler not installed" errors on some 
   10200 machines. Moved GPE enable until after _REG/_STA/_INI methods are run. 
   10201 This 
   10202 ensures that all operation regions and devices throughout the namespace 
   10203 have 
   10204 been initialized before GPEs are enabled. Alexey Starikovskiy, BZ 9916.
   10205 
   10206 Implemented a change to the enter sleep code. Moved execution of the _GTS 
   10207 method to just before setting sleep enable bit. The execution was moved 
   10208 from 
   10209 AcpiEnterSleepStatePrep to AcpiEnterSleepState. _GTS is now executed 
   10210 immediately before the SLP_EN bit is set, as per the ACPI specification. 
   10211 Luming Yu, BZ 1653.
   10212 
   10213 Implemented a fix to disable unknown GPEs (2nd version). Now always 
   10214 disable 
   10215 the GPE, even if ACPICA thinks that that it is already disabled. It is 
   10216 possible that the AML or some other code has enabled the GPE unbeknownst 
   10217 to 
   10218 the ACPICA code.
   10219 
   10220 Fixed a problem with the Field operator where zero-length fields would 
   10221 return 
   10222 an AE_AML_NO_OPERAND exception during table load. Fix enables zero-length 
   10223 ASL 
   10224 field declarations in Field(), BankField(), and IndexField(). BZ 10606.
   10225 
   10226 Implemented a fix for the Load operator, now load the table at the 
   10227 namespace 
   10228 root. This reverts a change introduced in version 20071019. The table is 
   10229 now 
   10230 loaded at the namespace root even though this goes against the ACPI 
   10231 specification. This provides compatibility with other ACPI 
   10232 implementations. 
   10233 The ACPI specification will be updated to reflect this in ACPI 4.0. Lin 
   10234 Ming.
   10235 
   10236 Fixed a problem where ACPICA would not Load() tables with unusual 
   10237 signatures. 
   10238 Now ignore ACPI table signature for Load() operator. Only "SSDT" is 
   10239 acceptable to the ACPI spec, but tables are seen with OEMx and null sigs. 
   10240 Therefore, signature validation is worthless. Apparently MS ACPI accepts 
   10241 such 
   10242 signatures, ACPICA must be compatible. BZ 10454.
   10243 
   10244 Fixed a possible negative array index in AcpiUtValidateException. Added 
   10245 NULL 
   10246 fields to the exception string arrays to eliminate a -1 subtraction on 
   10247 the 
   10248 SubStatus field.
   10249 
   10250 Updated the debug tracking macros to reduce overall code and data size. 
   10251 Changed ACPI_MODULE_NAME and ACPI_FUNCTION_NAME to use arrays of strings 
   10252 instead of pointers to static strings. Jan Beulich and Bob Moore.
   10253 
   10254 Implemented argument count checking in control method invocation via 
   10255 AcpiEvaluateObject. Now emit an error if too few arguments, warning if 
   10256 too 
   10257 many. This applies only to extern programmatic control method execution, 
   10258 not 
   10259 method-to-method calls within the AML. Lin Ming.
   10260 
   10261 Eliminated the ACPI_NATIVE_UINT type across all ACPICA code. This type is 
   10262 no 
   10263 longer needed, especially with the removal of 16-bit support. It was 
   10264 replaced 
   10265 mostly with UINT32, but also ACPI_SIZE where a type that changes 32/64 
   10266 bit 
   10267 on 
   10268 32/64-bit platforms is required.
   10269 
   10270 Added the C const qualifier for appropriate string constants -- mostly 
   10271 MODULE_NAME and printf format strings. Jan Beulich.
   10272 
   10273 Example Code and Data Size: These are the sizes for the OS-independent 
   10274 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   10275 debug version of the code includes the debug output trace mechanism and 
   10276 has a 
   10277 much larger code and data size.
   10278 
   10279   Previous Release:
   10280     Non-Debug Version:  80.0K Code, 17.4K Data,  97.4K Total
   10281     Debug Version:     159.4K Code, 64.4K Data, 223.8K Total
   10282   Current Release:
   10283     Non-Debug Version:  79.5K Code, 16.2K Data,  95.7K Total
   10284     Debug Version:     153.3K Code, 48.3K Data, 201.6K Total
   10285 
   10286 2) iASL Compiler/Disassembler and Tools:
   10287 
   10288 Implemented ACPI table revision ID validation in the disassembler. Zero 
   10289 is 
   10290 always invalid. For DSDTs, the ID controls the interpreter integer width. 
   10291 1 
   10292 means 32-bit and this is unusual. 2 or greater is 64-bit.
   10293 
   10294 ----------------------------------------
   10295 21 March 2008. Summary of changes for version 20080321:
   10296 
   10297 1) ACPI CA Core Subsystem:
   10298 
   10299 Implemented an additional change to the GPE support in order to suppress 
   10300 spurious or stray GPEs. The AcpiEvDisableGpe function will now 
   10301 permanently 
   10302 disable incoming GPEs that are neither enabled nor disabled -- meaning 
   10303 that 
   10304 the GPE is unknown to the system. This should prevent future interrupt 
   10305 floods 
   10306 from that GPE. BZ 6217 (Zhang Rui)
   10307 
   10308 Fixed a problem where NULL package elements were not returned to the 
   10309 AcpiEvaluateObject interface correctly. The element was simply ignored 
   10310 instead of returning a NULL ACPI_OBJECT package element, potentially 
   10311 causing 
   10312 a buffer overflow and/or confusing the caller who expected a fixed number 
   10313 of 
   10314 elements. BZ 10132 (Lin Ming, Bob Moore)
   10315 
   10316 Fixed a problem with the CreateField, CreateXXXField (Bit, Byte, Word, 
   10317 Dword, 
   10318 Qword), Field, BankField, and IndexField operators when invoked from 
   10319 inside 
   10320 an executing control method. In this case, these operators created 
   10321 namespace 
   10322 nodes that were incorrectly left marked as permanent nodes instead of 
   10323 temporary nodes. This could cause a problem if there is race condition 
   10324 between an exiting control method and a running namespace walk. (Reported 
   10325 by 
   10326 Linn Crosetto)
   10327 
   10328 Fixed a problem where the CreateField and CreateXXXField operators would 
   10329 incorrectly allow duplicate names (the name of the field) with no 
   10330 exception 
   10331 generated.
   10332 
   10333 Implemented several changes for Notify handling. Added support for new 
   10334 Notify 
   10335 values (ACPI 2.0+) and improved the Notify debug output. Notify on 
   10336 PowerResource objects is no longer allowed, as per the ACPI 
   10337 specification. 
   10338 (Bob Moore, Zhang Rui)
   10339 
   10340 All Reference Objects returned via the AcpiEvaluateObject interface are 
   10341 now 
   10342 marked as type "REFERENCE" instead of "ANY". The type ANY is now reserved 
   10343 for 
   10344 NULL objects - either NULL package elements or unresolved named 
   10345 references.
   10346 
   10347 Fixed a problem where an extraneous debug message was produced for 
   10348 package 
   10349 objects (when debugging enabled). The message "Package List length larger 
   10350 than NumElements count" is now produced in the correct case, and is now 
   10351 an 
   10352 error message rather than a debug message. Added a debug message for the 
   10353 opposite case, where NumElements is larger than the Package List (the 
   10354 package 
   10355 will be padded out with NULL elements as per the ACPI spec.)
   10356 
   10357 Implemented several improvements for the output of the ASL "Debug" object 
   10358 to 
   10359 clarify and keep all data for a given object on one output line.
   10360 
   10361 Fixed two size calculation issues with the variable-length Start 
   10362 Dependent 
   10363 resource descriptor.
   10364 
   10365 Example Code and Data Size: These are the sizes for the OS-independent 
   10366 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   10367 debug version of the code includes the debug output trace mechanism and 
   10368 has 
   10369 a much larger code and data size.
   10370 
   10371   Previous Release:
   10372     Non-Debug Version:  79.7K Code, 17.3K Data,  97.0K Total
   10373     Debug Version:     158.9K Code, 64.0K Data, 222.9K Total
   10374   Current Release:
   10375     Non-Debug Version:  80.0K Code, 17.4K Data,  97.4K Total
   10376     Debug Version:     159.4K Code, 64.4K Data, 223.8K Total
   10377 
   10378 2) iASL Compiler/Disassembler and Tools:
   10379 
   10380 Fixed a problem with the use of the Switch operator where execution of 
   10381 the 
   10382 containing method by multiple concurrent threads could cause an 
   10383 AE_ALREADY_EXISTS exception. This is caused by the fact that there is no 
   10384 actual Switch opcode, it must be simulated with local named temporary 
   10385 variables and if/else pairs. The solution chosen was to mark any method 
   10386 that 
   10387 uses Switch as Serialized, thus preventing multiple thread entries. BZ 
   10388 469.
   10389 
   10390 ----------------------------------------
   10391 13 February 2008. Summary of changes for version 20080213:
   10392 
   10393 1) ACPI CA Core Subsystem:
   10394 
   10395 Implemented another MS compatibility design change for GPE/Notify 
   10396 handling. 
   10397 GPEs are now cleared/enabled asynchronously to allow all pending notifies 
   10398 to 
   10399 complete first. It is expected that the OSL will queue the enable request 
   10400 behind all pending notify requests (may require changes to the local host 
   10401 OSL 
   10402 in AcpiOsExecute). Alexey Starikovskiy.
   10403 
   10404 Fixed a problem where buffer and package objects passed as arguments to a 
   10405 control method via the external AcpiEvaluateObject interface could cause 
   10406 an 
   10407 AE_AML_INTERNAL exception depending on the order and type of operators 
   10408 executed by the target control method.
   10409 
   10410 Fixed a problem where resource descriptor size optimization could cause a 
   10411 problem when a _CRS resource template is passed to a _SRS method. The 
   10412 _SRS 
   10413 resource template must use the same descriptors (with the same size) as 
   10414 returned from _CRS. This change affects the following resource 
   10415 descriptors: 
   10416 IRQ / IRQNoFlags and StartDependendentFn / StartDependentFnNoPri. (BZ 
   10417 9487)
   10418 
   10419 Fixed a problem where a CopyObject to RegionField, BankField, and 
   10420 IndexField 
   10421 objects did not perform an implicit conversion as it should. These types 
   10422 must 
   10423 retain their initial type permanently as per the ACPI specification. 
   10424 However, 
   10425 a CopyObject to all other object types should not perform an implicit 
   10426 conversion, as per the ACPI specification. (Lin Ming, Bob Moore) BZ 388
   10427 
   10428 Fixed a problem with the AcpiGetDevices interface where the mechanism to 
   10429 match device CIDs did not examine the entire list of available CIDs, but 
   10430 instead aborted on the first non-matching CID. Andrew Patterson.
   10431 
   10432 Fixed a regression introduced in version 20071114. The ACPI_HIDWORD macro 
   10433 was 
   10434 inadvertently changed to return a 16-bit value instead of a 32-bit value, 
   10435 truncating the upper dword of a 64-bit value. This macro is only used to 
   10436 display debug output, so no incorrect calculations were made. Also, 
   10437 reimplemented the macro so that a 64-bit shift is not performed by 
   10438 inefficient compilers.
   10439 
   10440 Added missing va_end statements that should correspond with each va_start 
   10441 statement.
   10442 
   10443 Example Code and Data Size: These are the sizes for the OS-independent 
   10444 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   10445 debug version of the code includes the debug output trace mechanism and 
   10446 has 
   10447 a much larger code and data size.
   10448 
   10449   Previous Release:
   10450     Non-Debug Version:  79.5K Code, 17.2K Data,  96.7K Total
   10451     Debug Version:     159.0K Code, 63.8K Data, 222.8K Total
   10452   Current Release:
   10453     Non-Debug Version:  79.7K Code, 17.3K Data,  97.0K Total
   10454     Debug Version:     158.9K Code, 64.0K Data, 222.9K Total
   10455 
   10456 2) iASL Compiler/Disassembler and Tools:
   10457 
   10458 Implemented full disassembler support for the following new ACPI tables: 
   10459 BERT, EINJ, and ERST. Implemented partial disassembler support for the 
   10460 complicated HEST table. These tables support the Windows Hardware Error 
   10461 Architecture (WHEA).
   10462 
   10463 ----------------------------------------
   10464 23 January 2008. Summary of changes for version 20080123:
   10465 
   10466 1) ACPI CA Core Subsystem:
   10467 
   10468 Added the 2008 copyright to all module headers and signons. This affects 
   10469 virtually every file in the ACPICA core subsystem, the iASL compiler, and 
   10470 the tools/utilities.
   10471 
   10472 Fixed a problem with the SizeOf operator when used with Package and 
   10473 Buffer 
   10474 objects. These objects have deferred execution for some arguments, and 
   10475 the 
   10476 execution is now completed before the SizeOf is executed. This problem 
   10477 caused 
   10478 unexpected AE_PACKAGE_LIMIT errors on some systems (Lin Ming, Bob Moore) 
   10479 BZ 
   10480 9558
   10481 
   10482 Implemented an enhancement to the interpreter "slack mode". In the 
   10483 absence 
   10484 of 
   10485 an explicit return or an implicitly returned object from the last 
   10486 executed 
   10487 opcode, a control method will now implicitly return an integer of value 0 
   10488 for 
   10489 Microsoft compatibility. (Lin Ming) BZ 392
   10490 
   10491 Fixed a problem with the Load operator where an exception was not 
   10492 returned 
   10493 in 
   10494 the case where the table is already loaded. (Lin Ming) BZ 463
   10495 
   10496 Implemented support for the use of DDBHandles as an Indexed Reference, as 
   10497 per 
   10498 the ACPI spec. (Lin Ming) BZ 486
   10499 
   10500 Implemented support for UserTerm (Method invocation) for the Unload 
   10501 operator 
   10502 as per the ACPI spec. (Lin Ming) BZ 580
   10503 
   10504 Fixed a problem with the LoadTable operator where the OemId and 
   10505 OemTableId 
   10506 input strings could cause unexpected failures if they were shorter than 
   10507 the 
   10508 maximum lengths allowed. (Lin Ming, Bob Moore) BZ 576
   10509 
   10510 Implemented support for UserTerm (Method invocation) for the Unload 
   10511 operator 
   10512 as per the ACPI spec. (Lin Ming) BZ 580
   10513 
   10514 Implemented header file support for new ACPI tables - BERT, ERST, EINJ, 
   10515 HEST, 
   10516 IBFT, UEFI, WDAT. Disassembler support is forthcoming.
   10517 
   10518 Example Code and Data Size: These are the sizes for the OS-independent 
   10519 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   10520 debug version of the code includes the debug output trace mechanism and 
   10521 has 
   10522 a much larger code and data size.
   10523 
   10524   Previous Release:
   10525     Non-Debug Version:  79.3K Code, 17.2K Data,  96.5K Total
   10526     Debug Version:     158.6K Code, 63.8K Data, 222.4K Total
   10527   Current Release:
   10528     Non-Debug Version:  79.5K Code, 17.2K Data,  96.7K Total
   10529     Debug Version:     159.0K Code, 63.8K Data, 222.8K Total
   10530 
   10531 2) iASL Compiler/Disassembler and Tools:
   10532 
   10533 Implemented support in the disassembler for checksum validation on 
   10534 incoming 
   10535 binary DSDTs and SSDTs. If incorrect, a message is displayed within the 
   10536 table 
   10537 header dump at the start of the disassembly.
   10538 
   10539 Implemented additional debugging information in the namespace listing 
   10540 file 
   10541 created during compilation. In addition to the namespace hierarchy, the 
   10542 full 
   10543 pathname to each namespace object is displayed.
   10544 
   10545 Fixed a problem with the disassembler where invalid ACPI tables could 
   10546 cause 
   10547 faults or infinite loops.
   10548 
   10549 Fixed an unexpected parse error when using the optional "parameter types" 
   10550 list in a control method declaration. (Lin Ming) BZ 397
   10551 
   10552 Fixed a problem where two External declarations with the same name did 
   10553 not 
   10554 cause an error (Lin Ming) BZ 509
   10555 
   10556 Implemented support for full TermArgs (adding Argx, Localx and method 
   10557 invocation) for the ParameterData parameter to the LoadTable operator. 
   10558 (Lin 
   10559 Ming) BZ 583,587
   10560 
   10561 ----------------------------------------
   10562 19 December 2007. Summary of changes for version 20071219:
   10563 
   10564 1) ACPI CA Core Subsystem:
   10565 
   10566 Implemented full support for deferred execution for the TermArg string 
   10567 arguments for DataTableRegion. This enables forward references and full 
   10568 operand resolution for the three string arguments. Similar to 
   10569 OperationRegion 
   10570 deferred argument execution.) Lin Ming. BZ 430
   10571 
   10572 Implemented full argument resolution support for the BankValue argument 
   10573 to 
   10574 BankField. Previously, only constants were supported, now any TermArg may 
   10575 be 
   10576 used. Lin Ming BZ 387, 393
   10577 
   10578 Fixed a problem with AcpiGetDevices where the search of a branch of the 
   10579 device tree could be terminated prematurely. In accordance with the ACPI 
   10580 specification, the search down the current branch is terminated if a 
   10581 device 
   10582 is both not present and not functional (instead of just not present.) 
   10583 Yakui 
   10584 Zhao.
   10585 
   10586 Fixed a problem where "unknown" GPEs could be allowed to fire repeatedly 
   10587 if 
   10588 the underlying AML code changed the GPE enable registers. Now, any 
   10589 unknown 
   10590 incoming GPE (no _Lxx/_Exx method and not the EC GPE) is immediately 
   10591 disabled 
   10592 instead of simply ignored. Rui Zhang.
   10593 
   10594 Fixed a problem with Index Fields where the Index register was 
   10595 incorrectly 
   10596 limited to a maximum of 32 bits. Now any size may be used.
   10597 
   10598 Fixed a couple memory leaks associated with "implicit return" objects 
   10599 when 
   10600 the AML Interpreter slack mode is enabled. Lin Ming BZ 349
   10601 
   10602 Example Code and Data Size: These are the sizes for the OS-independent 
   10603 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   10604 debug version of the code includes the debug output trace mechanism and 
   10605 has 
   10606 a much larger code and data size.
   10607 
   10608   Previous Release:
   10609     Non-Debug Version:  79.0K Code, 17.2K Data,  96.2K Total
   10610     Debug Version:     157.9K Code, 63.6K Data, 221.5K Total
   10611   Current Release:
   10612     Non-Debug Version:  79.3K Code, 17.2K Data,  96.5K Total
   10613     Debug Version:     158.6K Code, 63.8K Data, 222.4K Total
   10614 
   10615 ----------------------------------------
   10616 14 November 2007. Summary of changes for version 20071114:
   10617 
   10618 1) ACPI CA Core Subsystem:
   10619 
   10620 Implemented event counters for each of the Fixed Events, the ACPI SCI 
   10621 (interrupt) itself, and control methods executed. Named 
   10622 AcpiFixedEventCount[], AcpiSciCount, and AcpiMethodCount respectively. 
   10623 These 
   10624 should be useful for debugging and statistics.
   10625 
   10626 Implemented a new external interface, AcpiGetStatistics, to retrieve the 
   10627 contents of the various event counters. Returns the current values for 
   10628 AcpiSciCount, AcpiGpeCount, the AcpiFixedEventCount array, and 
   10629 AcpiMethodCount. The interface can be expanded in the future if new 
   10630 counters 
   10631 are added. Device drivers should use this interface rather than access 
   10632 the 
   10633 counters directly.
   10634 
   10635 Fixed a problem with the FromBCD and ToBCD operators. With some 
   10636 compilers, 
   10637 the ShortDivide function worked incorrectly, causing problems with the 
   10638 BCD 
   10639 functions with large input values. A truncation from 64-bit to 32-bit 
   10640 inadvertently occurred. Internal BZ 435. Lin Ming
   10641 
   10642 Fixed a problem with Index references passed as method arguments. 
   10643 References 
   10644 passed as arguments to control methods were dereferenced immediately 
   10645 (before 
   10646 control was passed to the called method). The references are now 
   10647 correctly 
   10648 passed directly to the called method. BZ 5389. Lin Ming
   10649 
   10650 Fixed a problem with CopyObject used in conjunction with the Index 
   10651 operator. 
   10652 The reference was incorrectly dereferenced before the copy. The reference 
   10653 is 
   10654 now correctly copied. BZ 5391. Lin Ming
   10655 
   10656 Fixed a problem with Control Method references within Package objects. 
   10657 These 
   10658 references are now correctly generated. This completes the package 
   10659 construction overhaul that began in version 20071019.
   10660 
   10661 Example Code and Data Size: These are the sizes for the OS-independent 
   10662 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   10663 debug version of the code includes the debug output trace mechanism and 
   10664 has 
   10665 a much larger code and data size.
   10666 
   10667   Previous Release:
   10668     Non-Debug Version:  78.8K Code, 17.2K Data,  96.0K Total
   10669     Debug Version:     157.2K Code, 63.4K Data, 220.6K Total
   10670   Current Release:
   10671     Non-Debug Version:  79.0K Code, 17.2K Data,  96.2K Total
   10672     Debug Version:     157.9K Code, 63.6K Data, 221.5K Total
   10673 
   10674 
   10675 2) iASL Compiler/Disassembler and Tools:
   10676 
   10677 The AcpiExec utility now installs handlers for all of the predefined 
   10678 Operation Region types. New types supported are: PCI_Config, CMOS, and 
   10679 PCIBARTarget.
   10680 
   10681 Fixed a problem with the 64-bit version of AcpiExec where the extended 
   10682 (64-
   10683 bit) address fields for the DSDT and FACS within the FADT were not being 
   10684 used, causing truncation of the upper 32-bits of these addresses. Lin 
   10685 Ming 
   10686 and Bob Moore
   10687 
   10688 ----------------------------------------
   10689 19 October 2007. Summary of changes for version 20071019:
   10690 
   10691 1) ACPI CA Core Subsystem:
   10692 
   10693 Fixed a problem with the Alias operator when the target of the alias is a 
   10694 named ASL operator that opens a new scope -- Scope, Device, 
   10695 PowerResource, 
   10696 Processor, and ThermalZone. In these cases, any children of the original 
   10697 operator could not be accessed via the alias, potentially causing 
   10698 unexpected 
   10699 AE_NOT_FOUND exceptions. (BZ 9067)
   10700 
   10701 Fixed a problem with the Package operator where all named references were 
   10702 created as object references and left otherwise unresolved. According to 
   10703 the 
   10704 ACPI specification, a Package can only contain Data Objects or references 
   10705 to 
   10706 control methods. The implication is that named references to Data Objects 
   10707 (Integer, Buffer, String, Package, BufferField, Field) should be resolved 
   10708 immediately upon package creation. This is the approach taken with this 
   10709 change. References to all other named objects (Methods, Devices, Scopes, 
   10710 etc.) are all now properly created as reference objects. (BZ 5328)
   10711 
   10712 Reverted a change to Notify handling that was introduced in version 
   10713 20070508. This version changed the Notify handling from asynchronous to 
   10714 fully synchronous (Device driver Notify handling with respect to the 
   10715 Notify 
   10716 ASL operator). It was found that this change caused more problems than it 
   10717 solved and was removed by most users.
   10718 
   10719 Fixed a problem with the Increment and Decrement operators where the type 
   10720 of 
   10721 the target object could be unexpectedly and incorrectly changed. (BZ 353) 
   10722 Lin Ming.
   10723 
   10724 Fixed a problem with the Load and LoadTable operators where the table 
   10725 location within the namespace was ignored. Instead, the table was always 
   10726 loaded into the root or current scope. Lin Ming.
   10727 
   10728 Fixed a problem with the Load operator when loading a table from a buffer 
   10729 object. The input buffer was prematurely zeroed and/or deleted. (BZ 577)
   10730 
   10731 Fixed a problem with the Debug object where a store of a DdbHandle 
   10732 reference 
   10733 object to the Debug object could cause a fault.
   10734 
   10735 Added a table checksum verification for the Load operator, in the case 
   10736 where 
   10737 the load is from a buffer. (BZ 578).
   10738 
   10739 Implemented additional parameter validation for the LoadTable operator. 
   10740 The 
   10741 length of the input strings SignatureString, OemIdString, and OemTableId 
   10742 are 
   10743 now checked for maximum lengths. (BZ 582) Lin Ming.
   10744 
   10745 Example Code and Data Size: These are the sizes for the OS-independent 
   10746 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   10747 debug version of the code includes the debug output trace mechanism and 
   10748 has 
   10749 a much larger code and data size.
   10750 
   10751   Previous Release:
   10752     Non-Debug Version:  78.5K Code, 17.1K Data,  95.6K Total
   10753     Debug Version:     156.7K Code, 63.2K Data, 219.9K Total
   10754   Current Release:
   10755     Non-Debug Version:  78.8K Code, 17.2K Data,  96.0K Total
   10756     Debug Version:     157.2K Code, 63.4K Data, 220.6K Total
   10757 
   10758 
   10759 2) iASL Compiler/Disassembler:
   10760 
   10761 Fixed a problem where if a single file was specified and the file did not 
   10762 exist, no error message was emitted. (Introduced with wildcard support in 
   10763 version 20070917.)
   10764 
   10765 ----------------------------------------
   10766 19 September 2007. Summary of changes for version 20070919:
   10767 
   10768 1) ACPI CA Core Subsystem:
   10769 
   10770 Designed and implemented new external interfaces to install and remove 
   10771 handlers for ACPI table-related events. Current events that are defined 
   10772 are 
   10773 LOAD and UNLOAD. These interfaces allow the host to track ACPI tables as 
   10774 they are dynamically loaded and unloaded. See AcpiInstallTableHandler and 
   10775 AcpiRemoveTableHandler. (Lin Ming and Bob Moore)
   10776 
   10777 Fixed a problem where the use of the AcpiGbl_AllMethodsSerialized flag 
   10778 (acpi_serialized option on Linux) could cause some systems to hang during 
   10779 initialization. (Bob Moore) BZ 8171
   10780 
   10781 Fixed a problem where objects of certain types (Device, ThermalZone, 
   10782 Processor, PowerResource) can be not found if they are declared and 
   10783 referenced from within the same control method (Lin Ming) BZ 341
   10784 
   10785 Example Code and Data Size: These are the sizes for the OS-independent 
   10786 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   10787 debug version of the code includes the debug output trace mechanism and 
   10788 has 
   10789 a much larger code and data size.
   10790 
   10791   Previous Release:
   10792     Non-Debug Version:  78.3K Code, 17.0K Data,  95.3K Total
   10793     Debug Version:     156.3K Code, 63.1K Data, 219.4K Total
   10794   Current Release:
   10795     Non-Debug Version:  78.5K Code, 17.1K Data,  95.6K Total
   10796     Debug Version:     156.7K Code, 63.2K Data, 219.9K Total
   10797 
   10798 
   10799 2) iASL Compiler/Disassembler:
   10800 
   10801 Implemented support to allow multiple files to be compiled/disassembled 
   10802 in 
   10803 a 
   10804 single invocation. This includes command line wildcard support for both 
   10805 the 
   10806 Windows and Unix versions of the compiler. This feature simplifies the 
   10807 disassembly and compilation of multiple ACPI tables in a single 
   10808 directory.
   10809 
   10810 ----------------------------------------
   10811 08 May 2007. Summary of changes for version 20070508:
   10812 
   10813 1) ACPI CA Core Subsystem:
   10814 
   10815 Implemented a Microsoft compatibility design change for the handling of 
   10816 the 
   10817 Notify AML operator. Previously, notify handlers were dispatched and 
   10818 executed completely asynchronously in a deferred thread. The new design 
   10819 still executes the notify handlers in a different thread, but the 
   10820 original 
   10821 thread that executed the Notify() now waits at a synchronization point 
   10822 for 
   10823 the notify handler to complete. Some machines depend on a synchronous 
   10824 Notify 
   10825 operator in order to operate correctly.
   10826 
   10827 Implemented support to allow Package objects to be passed as method 
   10828 arguments to the external AcpiEvaluateObject interface. Previously, this 
   10829 would return the AE_NOT_IMPLEMENTED exception. This feature had not been 
   10830 implemented since there were no reserved control methods that required it 
   10831 until recently.
   10832 
   10833 Fixed a problem with the internal FADT conversion where ACPI 1.0 FADTs 
   10834 that 
   10835 contained invalid non-zero values in reserved fields could cause later 
   10836 failures because these fields have meaning in later revisions of the 
   10837 FADT. 
   10838 For incoming ACPI 1.0 FADTs, these fields are now always zeroed. (The 
   10839 fields 
   10840 are: Preferred_PM_Profile, PSTATE_CNT, CST_CNT, and IAPC_BOOT_FLAGS.)
   10841 
   10842 Fixed a problem where the Global Lock handle was not properly updated if 
   10843 a 
   10844 thread that acquired the Global Lock via executing AML code then 
   10845 attempted 
   10846 to acquire the lock via the AcpiAcquireGlobalLock interface. Reported by 
   10847 Joe 
   10848 Liu.
   10849 
   10850 Fixed a problem in AcpiEvDeleteGpeXrupt where the global interrupt list 
   10851 could be corrupted if the interrupt being removed was at the head of the 
   10852 list. Reported by Linn Crosetto.
   10853 
   10854 Example Code and Data Size: These are the sizes for the OS-independent 
   10855 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   10856 debug version of the code includes the debug output trace mechanism and 
   10857 has 
   10858 a much larger code and data size.
   10859 
   10860   Previous Release:
   10861     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
   10862     Debug Version:     155.9K Code, 63.1K Data, 219.0K Total
   10863   Current Release:
   10864     Non-Debug Version:  78.3K Code, 17.0K Data,  95.3K Total
   10865     Debug Version:     156.3K Code, 63.1K Data, 219.4K Total
   10866 
   10867 ----------------------------------------
   10868 20 March 2007. Summary of changes for version 20070320:
   10869 
   10870 1) ACPI CA Core Subsystem:
   10871 
   10872 Implemented a change to the order of interpretation and evaluation of AML 
   10873 operand objects within the AML interpreter. The interpreter now evaluates 
   10874 operands in the order that they appear in the AML stream (and the 
   10875 corresponding ASL code), instead of in the reverse order (after the 
   10876 entire 
   10877 operand list has been parsed). The previous behavior caused several 
   10878 subtle 
   10879 incompatibilities with the Microsoft AML interpreter as well as being 
   10880 somewhat non-intuitive. BZ 7871, local BZ 263. Valery Podrezov.
   10881 
   10882 Implemented a change to the ACPI Global Lock support. All interfaces to 
   10883 the 
   10884 global lock now allow the same thread to acquire the lock multiple times. 
   10885 This affects the AcpiAcquireGlobalLock external interface to the global 
   10886 lock 
   10887 as well as the internal use of the global lock to support AML fields -- a 
   10888 control method that is holding the global lock can now simultaneously 
   10889 access 
   10890 AML fields that require global lock protection. Previously, in both 
   10891 cases, 
   10892 this would have resulted in an AE_ALREADY_ACQUIRED exception. The change 
   10893 to 
   10894 AcpiAcquireGlobalLock is of special interest to drivers for the Embedded 
   10895 Controller. There is no change to the behavior of the AML Acquire 
   10896 operator, 
   10897 as this can already be used to acquire a mutex multiple times by the same 
   10898 thread. BZ 8066. With assistance from Alexey Starikovskiy.
   10899 
   10900 Fixed a problem where invalid objects could be referenced in the AML 
   10901 Interpreter after error conditions. During operand evaluation, ensure 
   10902 that 
   10903 the internal "Return Object" field is cleared on error and only valid 
   10904 pointers are stored there. Caused occasional access to deleted objects 
   10905 that 
   10906 resulted in "large reference count" warning messages. Valery Podrezov.
   10907 
   10908 Fixed a problem where an AE_STACK_OVERFLOW internal exception could occur 
   10909 on 
   10910 deeply nested control method invocations. BZ 7873, local BZ 487. Valery 
   10911 Podrezov.
   10912 
   10913 Fixed an internal problem with the handling of result objects on the 
   10914 interpreter result stack. BZ 7872. Valery Podrezov.
   10915 
   10916 Removed obsolete code that handled the case where AML_NAME_OP is the 
   10917 target 
   10918 of a reference (Reference.Opcode). This code was no longer necessary. BZ 
   10919 7874. Valery Podrezov.
   10920 
   10921 Removed obsolete ACPI_NO_INTEGER64_SUPPORT from two header files. This 
   10922 was 
   10923 a 
   10924 remnant from the previously discontinued 16-bit support.
   10925 
   10926 Example Code and Data Size: These are the sizes for the OS-independent 
   10927 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   10928 debug version of the code includes the debug output trace mechanism and 
   10929 has 
   10930 a much larger code and data size.
   10931 
   10932   Previous Release:
   10933     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
   10934     Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
   10935   Current Release:
   10936     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
   10937     Debug Version:     155.9K Code, 63.1K Data, 219.0K Total
   10938 
   10939 ----------------------------------------
   10940 26 January 2007. Summary of changes for version 20070126:
   10941 
   10942 1) ACPI CA Core Subsystem:
   10943 
   10944 Added the 2007 copyright to all module headers and signons. This affects 
   10945 virtually every file in the ACPICA core subsystem, the iASL compiler, and 
   10946 the utilities.
   10947 
   10948 Implemented a fix for an incorrect parameter passed to AcpiTbDeleteTable 
   10949 during a table load. A bad pointer was passed in the case where the DSDT 
   10950 is 
   10951 overridden, causing a fault in this case.
   10952 
   10953 Example Code and Data Size: These are the sizes for the OS-independent 
   10954 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   10955 debug version of the code includes the debug output trace mechanism and 
   10956 has 
   10957 a much larger code and data size.
   10958 
   10959   Previous Release:
   10960     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
   10961     Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
   10962   Current Release:
   10963     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
   10964     Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
   10965 
   10966 ----------------------------------------
   10967 15 December 2006. Summary of changes for version 20061215:
   10968 
   10969 1) ACPI CA Core Subsystem:
   10970 
   10971 Support for 16-bit ACPICA has been completely removed since it is no 
   10972 longer 
   10973 necessary and it clutters the code. All 16-bit macros, types, and 
   10974 conditional compiles have been removed, cleaning up and simplifying the 
   10975 code 
   10976 across the entire subsystem. DOS support is no longer needed since the 
   10977 bootable Linux firmware kit is now available.
   10978 
   10979 The handler for the Global Lock is now removed during AcpiTerminate to 
   10980 enable a clean subsystem restart, via the implementation of the 
   10981 AcpiEvRemoveGlobalLockHandler function. (With assistance from Joel Bretz, 
   10982 HP)
   10983 
   10984 Implemented enhancements to the multithreading support within the 
   10985 debugger 
   10986 to enable improved multithreading debugging and evaluation of the 
   10987 subsystem. 
   10988 (Valery Podrezov)
   10989 
   10990 Debugger: Enhanced the Statistics/Memory command to emit the total 
   10991 (maximum) 
   10992 memory used during the execution, as well as the maximum memory consumed 
   10993 by 
   10994 each of the various object types. (Valery Podrezov)
   10995 
   10996 Example Code and Data Size: These are the sizes for the OS-independent 
   10997 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   10998 debug version of the code includes the debug output trace mechanism and 
   10999 has 
   11000 a much larger code and data size.
   11001 
   11002   Previous Release:
   11003     Non-Debug Version:  77.9K Code, 17.0K Data,  94.9K Total
   11004     Debug Version:     155.2K Code, 63.1K Data, 218.3K Total
   11005   Current Release:
   11006     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
   11007     Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
   11008 
   11009 
   11010 2) iASL Compiler/Disassembler and Tools:
   11011 
   11012 AcpiExec: Implemented a new option (-m) to display full memory use 
   11013 statistics upon subsystem/program termination. (Valery Podrezov)
   11014 
   11015 ----------------------------------------
   11016 09 November 2006. Summary of changes for version 20061109:
   11017 
   11018 1) ACPI CA Core Subsystem:
   11019 
   11020 Optimized the Load ASL operator in the case where the source operand is 
   11021 an 
   11022 operation region. Simply map the operation region memory, instead of 
   11023 performing a bytewise read. (Region must be of type SystemMemory, see 
   11024 below.)
   11025 
   11026 Fixed the Load ASL operator for the case where the source operand is a 
   11027 region field. A buffer object is also allowed as the source operand. BZ 
   11028 480
   11029 
   11030 Fixed a problem where the Load ASL operator allowed the source operand to 
   11031 be 
   11032 an operation region of any type. It is now restricted to regions of type 
   11033 SystemMemory, as per the ACPI specification. BZ 481
   11034 
   11035 Additional cleanup and optimizations for the new Table Manager code.
   11036 
   11037 AcpiEnable will now fail if all of the required ACPI tables are not 
   11038 loaded 
   11039 (FADT, FACS, DSDT). BZ 477
   11040 
   11041 Added #pragma pack(8/4) to acobject.h to ensure that the structures in 
   11042 this 
   11043 header are always compiled as aligned. The ACPI_OPERAND_OBJECT has been 
   11044 manually optimized to be aligned and will not work if it is byte-packed. 
   11045 
   11046 Example Code and Data Size: These are the sizes for the OS-independent 
   11047 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   11048 debug version of the code includes the debug output trace mechanism and 
   11049 has 
   11050 a much larger code and data size.
   11051 
   11052   Previous Release:
   11053     Non-Debug Version:  78.1K Code, 17.1K Data,  95.2K Total
   11054     Debug Version:     155.4K Code, 63.1K Data, 218.5K Total
   11055   Current Release:
   11056     Non-Debug Version:  77.9K Code, 17.0K Data,  94.9K Total
   11057     Debug Version:     155.2K Code, 63.1K Data, 218.3K Total
   11058 
   11059 
   11060 2) iASL Compiler/Disassembler and Tools:
   11061 
   11062 Fixed a problem where the presence of the _OSI predefined control method 
   11063 within complex expressions could cause an internal compiler error.
   11064 
   11065 AcpiExec: Implemented full region support for multiple address spaces. 
   11066 SpaceId is now part of the REGION object. BZ 429
   11067 
   11068 ----------------------------------------
   11069 11 October 2006. Summary of changes for version 20061011:
   11070 
   11071 1) ACPI CA Core Subsystem:
   11072 
   11073 Completed an AML interpreter performance enhancement for control method 
   11074 execution. Previously a 2-pass parse/execution, control methods are now 
   11075 completely parsed and executed in a single pass. This improves overall 
   11076 interpreter performance by ~25%, reduces code size, and reduces CPU stack 
   11077 use. (Valery Podrezov + interpreter changes in version 20051202 that 
   11078 eliminated namespace loading during the pass one parse.)
   11079 
   11080 Implemented _CID support for PCI Root Bridge detection. If the _HID does 
   11081 not 
   11082 match the predefined PCI Root Bridge IDs, the _CID list (if present) is 
   11083 now 
   11084 obtained and also checked for an ID match.
   11085 
   11086 Implemented additional support for the PCI _ADR execution: upsearch until 
   11087 a 
   11088 device scope is found before executing _ADR. This allows PCI_Config 
   11089 operation regions to be declared locally within control methods 
   11090 underneath 
   11091 PCI device objects.
   11092 
   11093 Fixed a problem with a possible race condition between threads executing 
   11094 AcpiWalkNamespace and the AML interpreter. This condition was removed by 
   11095 modifying AcpiWalkNamespace to (by default) ignore all temporary 
   11096 namespace 
   11097 entries created during any concurrent control method execution. An 
   11098 additional namespace race condition is known to exist between 
   11099 AcpiWalkNamespace and the Load/Unload ASL operators and is still under 
   11100 investigation.
   11101 
   11102 Restructured the AML ParseLoop function, breaking it into several 
   11103 subfunctions in order to reduce CPU stack use and improve 
   11104 maintainability. 
   11105 (Mikhail Kouzmich)
   11106 
   11107 AcpiGetHandle: Fix for parameter validation to detect invalid 
   11108 combinations 
   11109 of prefix handle and pathname. BZ 478
   11110 
   11111 Example Code and Data Size: These are the sizes for the OS-independent 
   11112 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   11113 debug version of the code includes the debug output trace mechanism and 
   11114 has 
   11115 a much larger code and data size.
   11116 
   11117   Previous Release:
   11118     Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
   11119     Debug Version:     154.6K Code, 63.0K Data, 217.6K Total
   11120   Current Release:
   11121     Non-Debug Version:  78.1K Code, 17.1K Data,  95.2K Total
   11122     Debug Version:     155.4K Code, 63.1K Data, 218.5K Total
   11123 
   11124 2) iASL Compiler/Disassembler and Tools:
   11125 
   11126 Ported the -g option (get local ACPI tables) to the new ACPICA Table 
   11127 Manager 
   11128 to restore original behavior.
   11129 
   11130 ----------------------------------------
   11131 27 September 2006. Summary of changes for version 20060927:
   11132 
   11133 1) ACPI CA Core Subsystem:
   11134 
   11135 Removed the "Flags" parameter from AcpiGetRegister and AcpiSetRegister. 
   11136 These functions now use a spinlock for mutual exclusion and the interrupt 
   11137 level indication flag is not needed.
   11138 
   11139 Fixed a problem with the Global Lock where the lock could appear to be 
   11140 obtained before it is actually obtained. The global lock semaphore was 
   11141 inadvertently created with one unit instead of zero units. (BZ 464) 
   11142 Fiodor 
   11143 Suietov.
   11144 
   11145 Fixed a possible memory leak and fault in AcpiExResolveObjectToValue 
   11146 during 
   11147 a read from a buffer or region field. (BZ 458) Fiodor Suietov.
   11148 
   11149 Example Code and Data Size: These are the sizes for the OS-independent 
   11150 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   11151 debug version of the code includes the debug output trace mechanism and 
   11152 has 
   11153 a much larger code and data size.
   11154 
   11155   Previous Release:
   11156     Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
   11157     Debug Version:     154.7K Code, 63.0K Data, 217.7K Total
   11158   Current Release:
   11159     Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
   11160     Debug Version:     154.6K Code, 63.0K Data, 217.6K Total
   11161 
   11162 
   11163 2) iASL Compiler/Disassembler and Tools:
   11164 
   11165 Fixed a compilation problem with the pre-defined Resource Descriptor 
   11166 field 
   11167 names where an "object does not exist" error could be incorrectly 
   11168 generated 
   11169 if the parent ResourceTemplate pathname places the template within a 
   11170 different namespace scope than the current scope. (BZ 7212)
   11171 
   11172 Fixed a problem where the compiler could hang after syntax errors 
   11173 detected 
   11174 in an ElseIf construct. (BZ 453)
   11175 
   11176 Fixed a problem with the AmlFilename parameter to the DefinitionBlock() 
   11177 operator. An incorrect output filename was produced when this parameter 
   11178 was 
   11179 a null string (""). Now, the original input filename is used as the AML 
   11180 output filename, with an ".aml" extension.
   11181 
   11182 Implemented a generic batch command mode for the AcpiExec utility 
   11183 (execute 
   11184 any AML debugger command) (Valery Podrezov).
   11185 
   11186 ----------------------------------------
   11187 12 September 2006. Summary of changes for version 20060912:
   11188 
   11189 1) ACPI CA Core Subsystem:
   11190 
   11191 Enhanced the implementation of the "serialized mode" of the interpreter 
   11192 (enabled via the AcpiGbl_AllMethodsSerialized flag.) When this mode is 
   11193 specified, instead of creating a serialization semaphore per control 
   11194 method, 
   11195 the interpreter lock is simply no longer released before a blocking 
   11196 operation during control method execution. This effectively makes the AML 
   11197 Interpreter single-threaded. The overhead of a semaphore per-method is 
   11198 eliminated.
   11199 
   11200 Fixed a regression where an error was no longer emitted if a control 
   11201 method 
   11202 attempts to create 2 objects of the same name. This once again returns 
   11203 AE_ALREADY_EXISTS. When this exception occurs, it invokes the mechanism 
   11204 that 
   11205 will dynamically serialize the control method to possible prevent future 
   11206 errors. (BZ 440)
   11207 
   11208 Integrated a fix for a problem with PCI Express HID detection in the PCI 
   11209 Config Space setup procedure. (BZ 7145)
   11210 
   11211 Moved all FADT-related functions to a new file, tbfadt.c. Eliminated the 
   11212 AcpiHwInitialize function - the FADT registers are now validated when the 
   11213 table is loaded.
   11214 
   11215 Added two new warnings during FADT verification - 1) if the FADT is 
   11216 larger 
   11217 than the largest known FADT version, and 2) if there is a mismatch 
   11218 between 
   11219 a 
   11220 32-bit block address and the 64-bit X counterpart (when both are non-
   11221 zero.)
   11222 
   11223 Example Code and Data Size: These are the sizes for the OS-independent 
   11224 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   11225 debug version of the code includes the debug output trace mechanism and 
   11226 has 
   11227 a much larger code and data size.
   11228 
   11229   Previous Release:
   11230     Non-Debug Version:  77.9K Code, 16.7K Data,  94.6K Total
   11231     Debug Version:     154.9K Code, 62.6K Data, 217.5K Total
   11232   Current Release:
   11233     Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
   11234     Debug Version:     154.7K Code, 63.0K Data, 217.7K Total
   11235 
   11236 
   11237 2) iASL Compiler/Disassembler and Tools:
   11238 
   11239 Fixed a problem with the implementation of the Switch() operator where 
   11240 the 
   11241 temporary variable was declared too close to the actual Switch, instead 
   11242 of 
   11243 at method level. This could cause a problem if the Switch() operator is 
   11244 within a while loop, causing an error on the second iteration. (BZ 460)
   11245 
   11246 Disassembler - fix for error emitted for unknown type for target of scope 
   11247 operator. Now, ignore it and continue.
   11248 
   11249 Disassembly of an FADT now verifies the input FADT and reports any errors 
   11250 found. Fix for proper disassembly of full-sized (ACPI 2.0) FADTs.
   11251 
   11252 Disassembly of raw data buffers with byte initialization data now 
   11253 prefixes 
   11254 each output line with the current buffer offset.
   11255 
   11256 Disassembly of ASF! table now includes all variable-length data fields at 
   11257 the end of some of the subtables.
   11258 
   11259 The disassembler now emits a comment if a buffer appears to be a 
   11260 ResourceTemplate, but cannot be disassembled as such because the EndTag 
   11261 does 
   11262 not appear at the very end of the buffer.
   11263 
   11264 AcpiExec - Added the "-t" command line option to enable the serialized 
   11265 mode 
   11266 of the AML interpreter.
   11267 
   11268 ----------------------------------------
   11269 31 August 2006. Summary of changes for version 20060831:
   11270 
   11271 1) ACPI CA Core Subsystem:
   11272 
   11273 Miscellaneous fixes for the Table Manager:
   11274 - Correctly initialize internal common FADT for all 64-bit "X" fields
   11275 - Fixed a couple table mapping issues during table load
   11276 - Fixed a couple alignment issues for IA64
   11277 - Initialize input array to zero in AcpiInitializeTables
   11278 - Additional parameter validation for AcpiGetTable, AcpiGetTableHeader, 
   11279 AcpiGetTableByIndex
   11280 
   11281 Change for GPE support: when a "wake" GPE is received, all wake GPEs are 
   11282 now 
   11283 immediately disabled to prevent the waking GPE from firing again and to 
   11284 prevent other wake GPEs from interrupting the wake process.
   11285 
   11286 Added the AcpiGpeCount global that tracks the number of processed GPEs, 
   11287 to 
   11288 be used for debugging systems with a large number of ACPI interrupts.
   11289 
   11290 Implemented support for the "DMAR" ACPI table (DMA Redirection Table) in 
   11291 both the ACPICA headers and the disassembler.
   11292 
   11293 Example Code and Data Size: These are the sizes for the OS-independent 
   11294 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   11295 debug version of the code includes the debug output trace mechanism and 
   11296 has 
   11297 a much larger code and data size.
   11298 
   11299   Previous Release:
   11300     Non-Debug Version:  77.8K Code, 16.5K Data,  94.3K Total
   11301     Debug Version:     154.6K Code, 62.3K Data, 216.9K Total
   11302   Current Release:
   11303     Non-Debug Version:  77.9K Code, 16.7K Data,  94.6K Total
   11304     Debug Version:     154.9K Code, 62.6K Data, 217.5K Total
   11305 
   11306 
   11307 2) iASL Compiler/Disassembler and Tools:
   11308 
   11309 Disassembler support for the DMAR ACPI table.
   11310 
   11311 ----------------------------------------
   11312 23 August 2006. Summary of changes for version 20060823:
   11313 
   11314 1) ACPI CA Core Subsystem:
   11315 
   11316 The Table Manager component has been completely redesigned and 
   11317 reimplemented. The new design is much simpler, and reduces the overall 
   11318 code 
   11319 and data size of the kernel-resident ACPICA by approximately 5%. Also, it 
   11320 is 
   11321 now possible to obtain the ACPI tables very early during kernel 
   11322 initialization, even before dynamic memory management is initialized. 
   11323 (Alexey Starikovskiy, Fiodor Suietov, Bob Moore)
   11324 
   11325 Obsolete ACPICA interfaces:
   11326 
   11327 - AcpiGetFirmwareTable: Use AcpiGetTable instead (works at early kernel 
   11328 init 
   11329 time).
   11330 - AcpiLoadTable: Not needed.
   11331 - AcpiUnloadTable: Not needed.
   11332 
   11333 New ACPICA interfaces:
   11334 
   11335 - AcpiInitializeTables: Must be called before the table manager can be 
   11336 used.
   11337 - AcpiReallocateRootTable: Used to transfer the root table to dynamically 
   11338 allocated memory after it becomes available.
   11339 - AcpiGetTableByIndex: Allows the host to easily enumerate all ACPI 
   11340 tables 
   11341 in the RSDT/XSDT.
   11342 
   11343 Other ACPICA changes:
   11344 
   11345 - AcpiGetTableHeader returns the actual mapped table header, not a copy. 
   11346 Use 
   11347 AcpiOsUnmapMemory to free this mapping.
   11348 - AcpiGetTable returns the actual mapped table. The mapping is managed 
   11349 internally and must not be deleted by the caller. Use of this interface 
   11350 causes no additional dynamic memory allocation.
   11351 - AcpiFindRootPointer: Support for physical addressing has been 
   11352 eliminated, 
   11353 it appeared to be unused.
   11354 - The interface to AcpiOsMapMemory has changed to be consistent with the 
   11355 other allocation interfaces.
   11356 - The interface to AcpiOsGetRootPointer has changed to eliminate 
   11357 unnecessary 
   11358 parameters.
   11359 - ACPI_PHYSICAL_ADDRESS is now 32 bits on 32-bit platforms, 64 bits on 
   11360 64-
   11361 bit platforms. Was previously 64 bits on all platforms.
   11362 - The interface to the ACPI Global Lock acquire/release macros have 
   11363 changed 
   11364 slightly since ACPICA no longer keeps a local copy of the FACS with a 
   11365 constructed pointer to the actual global lock.
   11366 
   11367 Porting to the new table manager:
   11368 
   11369 - AcpiInitializeTables: Must be called once, and can be called anytime 
   11370 during the OS initialization process. It allows the host to specify an 
   11371 area 
   11372 of memory to be used to store the internal version of the RSDT/XSDT (root 
   11373 table). This allows the host to access ACPI tables before memory 
   11374 management 
   11375 is initialized and running.
   11376 - AcpiReallocateRootTable: Can be called after memory management is 
   11377 running 
   11378 to copy the root table to a dynamically allocated array, freeing up the 
   11379 scratch memory specified in the call to AcpiInitializeTables.
   11380 - AcpiSubsystemInitialize: This existing interface is independent of the 
   11381 Table Manager, and does not have to be called before the Table Manager 
   11382 can 
   11383 be used, it only must be called before the rest of ACPICA can be used.
   11384 - ACPI Tables: Some changes have been made to the names and structure of 
   11385 the 
   11386 actbl.h and actbl1.h header files and may require changes to existing 
   11387 code. 
   11388 For example, bitfields have been completely removed because of their lack 
   11389 of 
   11390 portability across C compilers.
   11391 - Update interfaces to the Global Lock acquire/release macros if local 
   11392 versions are used. (see acwin.h)
   11393 
   11394 Obsolete files: tbconvrt.c, tbget.c, tbgetall.c, tbrsdt.c
   11395 
   11396 New files: tbfind.c
   11397 
   11398 Example Code and Data Size: These are the sizes for the OS-independent 
   11399 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   11400 debug version of the code includes the debug output trace mechanism and 
   11401 has 
   11402 a much larger code and data size.
   11403 
   11404   Previous Release:
   11405     Non-Debug Version:  80.7K Code, 17.9K Data,  98.6K Total
   11406     Debug Version:     161.0K Code, 65.1K Data, 226.1K Total
   11407   Current Release:
   11408     Non-Debug Version:  77.8K Code, 16.5K Data,  94.3K Total
   11409     Debug Version:     154.6K Code, 62.3K Data, 216.9K Total
   11410 
   11411 
   11412 2) iASL Compiler/Disassembler and Tools:
   11413 
   11414 No changes for this release.
   11415 
   11416 ----------------------------------------
   11417 21 July 2006. Summary of changes for version 20060721:
   11418 
   11419 1) ACPI CA Core Subsystem:
   11420 
   11421 The full source code for the ASL test suite used to validate the iASL 
   11422 compiler and the ACPICA core subsystem is being released with the ACPICA 
   11423 source for the first time. The source is contained in a separate package 
   11424 and 
   11425 consists of over 1100 files that exercise all ASL/AML operators. The 
   11426 package 
   11427 should appear on the Intel/ACPI web site shortly. (Valery Podrezov, 
   11428 Fiodor 
   11429 Suietov)
   11430 
   11431 Completed a new design and implementation for support of the ACPI Global 
   11432 Lock. On the OS side, the global lock is now treated as a standard AML 
   11433 mutex. Previously, multiple OS threads could "acquire" the global lock 
   11434 simultaneously. However, this could cause the BIOS to be starved out of 
   11435 the 
   11436 lock - especially in cases such as the Embedded Controller driver where 
   11437 there is a tight coupling between the OS and the BIOS.
   11438 
   11439 Implemented an optimization for the ACPI Global Lock interrupt mechanism. 
   11440 The Global Lock interrupt handler no longer queues the execution of a 
   11441 separate thread to signal the global lock semaphore. Instead, the 
   11442 semaphore 
   11443 is signaled directly from the interrupt handler.
   11444 
   11445 Implemented support within the AML interpreter for package objects that 
   11446 contain a larger AML length (package list length) than the package 
   11447 element 
   11448 count. In this case, the length of the package is truncated to match the 
   11449 package element count. Some BIOS code apparently modifies the package 
   11450 length 
   11451 on the fly, and this change supports this behavior. Provides 
   11452 compatibility 
   11453 with the MS AML interpreter. (With assistance from Fiodor Suietov)
   11454 
   11455 Implemented a temporary fix for the BankValue parameter of a Bank Field 
   11456 to 
   11457 support all constant values, now including the Zero and One opcodes. 
   11458 Evaluation of this parameter must eventually be converted to a full 
   11459 TermArg 
   11460 evaluation. A not-implemented error is now returned (temporarily) for 
   11461 non-
   11462 constant values for this parameter.
   11463 
   11464 Fixed problem reports (Fiodor Suietov) integrated:
   11465 - Fix for premature object deletion after CopyObject on Operation Region 
   11466 (BZ 
   11467 350)
   11468 
   11469 Example Code and Data Size: These are the sizes for the OS-independent 
   11470 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   11471 debug version of the code includes the debug output trace mechanism and 
   11472 has 
   11473 a much larger code and data size.
   11474 
   11475   Previous Release:
   11476     Non-Debug Version:  80.7K Code, 18.0K Data,  98.7K Total
   11477     Debug Version:     160.9K Code, 65.1K Data, 226.0K Total
   11478   Current Release:
   11479     Non-Debug Version:  80.7K Code, 17.9K Data,  98.6K Total
   11480     Debug Version:     161.0K Code, 65.1K Data, 226.1K Total
   11481 
   11482 
   11483 2) iASL Compiler/Disassembler and Tools:
   11484 
   11485 No changes for this release.
   11486 
   11487 ----------------------------------------
   11488 07 July 2006. Summary of changes for version 20060707:
   11489 
   11490 1) ACPI CA Core Subsystem:
   11491 
   11492 Added the ACPI_PACKED_POINTERS_NOT_SUPPORTED macro to support C compilers 
   11493 that do not allow the initialization of address pointers within packed 
   11494 structures - even though the hardware itself may support misaligned 
   11495 transfers. Some of the debug data structures are packed by default to 
   11496 minimize size.
   11497 
   11498 Added an error message for the case where AcpiOsGetThreadId() returns 
   11499 zero. 
   11500 A non-zero value is required by the core ACPICA code to ensure the proper 
   11501 operation of AML mutexes and recursive control methods.
   11502 
   11503 The DSDT is now the only ACPI table that determines whether the AML 
   11504 interpreter is in 32-bit or 64-bit mode. Not really a functional change, 
   11505 but 
   11506 the hooks for per-table 32/64 switching have been removed from the code. 
   11507 A 
   11508 clarification to the ACPI specification is forthcoming in ACPI 3.0B.
   11509 
   11510 Fixed a possible leak of an OwnerID in the error path of 
   11511 AcpiTbInitTableDescriptor (tbinstal.c), and migrated all table OwnerID 
   11512 deletion to a single place in AcpiTbUninstallTable to correct possible 
   11513 leaks 
   11514 when using the AcpiTbDeleteTablesByType interface (with assistance from 
   11515 Lance Ortiz.)
   11516 
   11517 Fixed a problem with Serialized control methods where the semaphore 
   11518 associated with the method could be over-signaled after multiple method 
   11519 invocations.
   11520 
   11521 Fixed two issues with the locking of the internal namespace data 
   11522 structure. 
   11523 Both the Unload() operator and AcpiUnloadTable interface now lock the 
   11524 namespace during the namespace deletion associated with the table unload 
   11525 (with assistance from Linn Crosetto.)
   11526 
   11527 Fixed problem reports (Valery Podrezov) integrated:
   11528 - Eliminate unnecessary memory allocation for CreateXxxxField (BZ 5426)
   11529 
   11530 Fixed problem reports (Fiodor Suietov) integrated:
   11531 - Incomplete cleanup branches in AcpiTbGetTableRsdt (BZ 369)
   11532 - On Address Space handler deletion, needless deactivation call (BZ 374)
   11533 - AcpiRemoveAddressSpaceHandler: validate Device handle parameter (BZ 
   11534 375)
   11535 - Possible memory leak, Notify sub-objects of Processor, Power, 
   11536 ThermalZone 
   11537 (BZ 376)
   11538 - AcpiRemoveAddressSpaceHandler: validate Handler parameter (BZ 378)
   11539 - Minimum Length of RSDT should be validated (BZ 379)
   11540 - AcpiRemoveNotifyHandler: return AE_NOT_EXIST if Processor Obj has no 
   11541 Handler (BZ (380)
   11542 - AcpiUnloadTable: return AE_NOT_EXIST if no table of specified type 
   11543 loaded 
   11544 (BZ 381)
   11545 
   11546 Example Code and Data Size: These are the sizes for the OS-independent 
   11547 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   11548 debug version of the code includes the debug output trace mechanism and 
   11549 has 
   11550 a much larger code and data size.
   11551 
   11552   Previous Release:
   11553     Non-Debug Version:  80.5K Code, 17.8K Data,  98.3K Total
   11554     Debug Version:     160.8K Code, 64.8K Data, 225.6K Total
   11555   Current Release:
   11556     Non-Debug Version:  80.7K Code, 17.9K Data,  98.6K Total
   11557     Debug Version:     161.0K Code, 65.1K Data, 226.1K Total
   11558 
   11559 
   11560 2) iASL Compiler/Disassembler and Tools:
   11561 
   11562 Fixed problem reports:
   11563 Compiler segfault when ASL contains a long (>1024) String declaration (BZ 
   11564 436)
   11565 
   11566 ----------------------------------------
   11567 23 June 2006. Summary of changes for version 20060623:
   11568 
   11569 1) ACPI CA Core Subsystem:
   11570 
   11571 Implemented a new ACPI_SPINLOCK type for the OSL lock interfaces. This 
   11572 allows the type to be customized to the host OS for improved efficiency 
   11573 (since a spinlock is usually a very small object.)
   11574 
   11575 Implemented support for "ignored" bits in the ACPI registers. According 
   11576 to 
   11577 the ACPI specification, these bits should be preserved when writing the 
   11578 registers via a read/modify/write cycle. There are 3 bits preserved in 
   11579 this 
   11580 manner: PM1_CONTROL[0] (SCI_EN), PM1_CONTROL[9], and PM1_STATUS[11].
   11581 
   11582 Implemented the initial deployment of new OSL mutex interfaces. Since 
   11583 some 
   11584 host operating systems have separate mutex and semaphore objects, this 
   11585 feature was requested. The base code now uses mutexes (and the new mutex 
   11586 interfaces) wherever a binary semaphore was used previously. However, for 
   11587 the current release, the mutex interfaces are defined as macros to map 
   11588 them 
   11589 to the existing semaphore interfaces. Therefore, no OSL changes are 
   11590 required 
   11591 at this time. (See acpiosxf.h)
   11592 
   11593 Fixed several problems with the support for the control method SyncLevel 
   11594 parameter. The SyncLevel now works according to the ACPI specification 
   11595 and 
   11596 in concert with the Mutex SyncLevel parameter, since the current 
   11597 SyncLevel 
   11598 is a property of the executing thread. Mutual exclusion for control 
   11599 methods 
   11600 is now implemented with a mutex instead of a semaphore.
   11601 
   11602 Fixed three instances of the use of the C shift operator in the bitfield 
   11603 support code (exfldio.c) to avoid the use of a shift value larger than 
   11604 the 
   11605 target data width. The behavior of C compilers is undefined in this case 
   11606 and 
   11607 can cause unpredictable results, and therefore the case must be detected 
   11608 and 
   11609 avoided. (Fiodor Suietov)
   11610 
   11611 Added an info message whenever an SSDT or OEM table is loaded dynamically 
   11612 via the Load() or LoadTable() ASL operators. This should improve 
   11613 debugging 
   11614 capability since it will show exactly what tables have been loaded 
   11615 (beyond 
   11616 the tables present in the RSDT/XSDT.)
   11617 
   11618 Example Code and Data Size: These are the sizes for the OS-independent 
   11619 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   11620 debug version of the code includes the debug output trace mechanism and 
   11621 has 
   11622 a much larger code and data size.
   11623 
   11624   Previous Release:
   11625     Non-Debug Version:  80.0K Code, 17.6K Data,  97.6K Total
   11626     Debug Version:     160.2K Code, 64.7K Data, 224.9K Total
   11627   Current Release:
   11628     Non-Debug Version:  80.5K Code, 17.8K Data,  98.3K Total
   11629     Debug Version:     160.8K Code, 64.8K Data, 225.6K Total
   11630 
   11631 
   11632 2) iASL Compiler/Disassembler and Tools:
   11633 
   11634 No changes for this release.
   11635 
   11636 ----------------------------------------
   11637 08 June 2006. Summary of changes for version 20060608:
   11638 
   11639 1) ACPI CA Core Subsystem:
   11640 
   11641 Converted the locking mutex used for the ACPI hardware to a spinlock. 
   11642 This 
   11643 change should eliminate all problems caused by attempting to acquire a 
   11644 semaphore at interrupt level, and it means that all ACPICA external 
   11645 interfaces that directly access the ACPI hardware can be safely called 
   11646 from 
   11647 interrupt level. OSL code that implements the semaphore interfaces should 
   11648 be 
   11649 able to eliminate any workarounds for being called at interrupt level.
   11650 
   11651 Fixed a regression introduced in 20060526 where the ACPI device 
   11652 initialization could be prematurely aborted with an AE_NOT_FOUND if a 
   11653 device 
   11654 did not have an optional _INI method.
   11655 
   11656 Fixed an IndexField issue where a write to the Data Register should be 
   11657 limited in size to the AccessSize (width) of the IndexField itself. (BZ 
   11658 433, 
   11659 Fiodor Suietov)
   11660 
   11661 Fixed problem reports (Valery Podrezov) integrated:
   11662 - Allow store of ThermalZone objects to Debug object (BZ 5369/5370)
   11663 
   11664 Fixed problem reports (Fiodor Suietov) integrated:
   11665 - AcpiGetTableHeader doesn't handle multiple instances correctly (BZ 364)
   11666 
   11667 Removed four global mutexes that were obsolete and were no longer being 
   11668 used.
   11669 
   11670 Example Code and Data Size: These are the sizes for the OS-independent 
   11671 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   11672 debug version of the code includes the debug output trace mechanism and 
   11673 has 
   11674 a much larger code and data size.
   11675 
   11676   Previous Release:
   11677     Non-Debug Version:  80.0K Code, 17.7K Data,  97.7K Total
   11678     Debug Version:     160.3K Code, 64.9K Data, 225.2K Total
   11679   Current Release:
   11680     Non-Debug Version:  80.0K Code, 17.6K Data,  97.6K Total
   11681     Debug Version:     160.2K Code, 64.7K Data, 224.9K Total
   11682 
   11683 
   11684 2) iASL Compiler/Disassembler and Tools:
   11685 
   11686 Fixed a fault when using -g option (get tables from registry) on Windows 
   11687 machines.
   11688 
   11689 Fixed problem reports integrated:
   11690 - Generate error if CreateField NumBits parameter is zero. (BZ 405)
   11691 - Fault if Offset/Length in Field unit is very large (BZ 432, Fiodor 
   11692 Suietov)
   11693 - Global table revision override (-r) is ignored (BZ 413)
   11694 
   11695 ----------------------------------------
   11696 26 May 2006. Summary of changes for version 20060526:
   11697 
   11698 1) ACPI CA Core Subsystem:
   11699 
   11700 Restructured, flattened, and simplified the internal interfaces for 
   11701 namespace object evaluation - resulting in smaller code, less CPU stack 
   11702 use, 
   11703 and fewer interfaces. (With assistance from Mikhail Kouzmich)
   11704 
   11705 Fixed a problem with the CopyObject operator where the first parameter 
   11706 was 
   11707 not typed correctly for the parser, interpreter, compiler, and 
   11708 disassembler. 
   11709 Caused various errors and unexpected behavior.
   11710 
   11711 Fixed a problem where a ShiftLeft or ShiftRight of more than 64 bits 
   11712 produced incorrect results with some C compilers. Since the behavior of C 
   11713 compilers when the shift value is larger than the datatype width is 
   11714 apparently not well defined, the interpreter now detects this condition 
   11715 and 
   11716 simply returns zero as expected in all such cases. (BZ 395)
   11717 
   11718 Fixed problem reports (Valery Podrezov) integrated:
   11719 - Update String-to-Integer conversion to match ACPI 3.0A spec (BZ 5329)
   11720 - Allow interpreter to handle nested method declarations (BZ 5361)
   11721 
   11722 Fixed problem reports (Fiodor Suietov) integrated:
   11723 - AcpiTerminate doesn't free debug memory allocation list objects (BZ 
   11724 355)
   11725 - After Core Subsystem shutdown, AcpiSubsystemStatus returns AE_OK (BZ 
   11726 356)
   11727 - AcpiOsUnmapMemory for RSDP can be invoked inconsistently (BZ 357)
   11728 - Resource Manager should return AE_TYPE for non-device objects (BZ 358)
   11729 - Incomplete cleanup branch in AcpiNsEvaluateRelative (BZ 359)
   11730 - Use AcpiOsFree instead of ACPI_FREE in AcpiRsSetSrsMethodData (BZ 360)
   11731 - Incomplete cleanup branch in AcpiPsParseAml (BZ 361)
   11732 - Incomplete cleanup branch in AcpiDsDeleteWalkState (BZ 362)
   11733 - AcpiGetTableHeader returns AE_NO_ACPI_TABLES until DSDT is loaded (BZ 
   11734 365)
   11735 - Status of the Global Initialization Handler call not used (BZ 366)
   11736 - Incorrect object parameter to Global Initialization Handler (BZ 367)
   11737 
   11738 Example Code and Data Size: These are the sizes for the OS-independent 
   11739 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   11740 debug version of the code includes the debug output trace mechanism and 
   11741 has 
   11742 a much larger code and data size.
   11743 
   11744   Previous Release:
   11745     Non-Debug Version:  79.8K Code, 17.7K Data,  97.5K Total
   11746     Debug Version:     160.5K Code, 65.1K Data, 225.6K Total
   11747   Current Release:
   11748     Non-Debug Version:  80.0K Code, 17.7K Data,  97.7K Total
   11749     Debug Version:     160.3K Code, 64.9K Data, 225.2K Total
   11750 
   11751 
   11752 2) iASL Compiler/Disassembler and Tools:
   11753 
   11754 Modified the parser to allow the names IO, DMA, and IRQ to be used as 
   11755 namespace identifiers with no collision with existing resource descriptor 
   11756 macro names. This provides compatibility with other ASL compilers and is 
   11757 most useful for disassembly/recompilation of existing tables without 
   11758 parse 
   11759 errors. (With assistance from Thomas Renninger)
   11760 
   11761 Disassembler: fixed an incorrect disassembly problem with the 
   11762 DataTableRegion and CopyObject operators. Fixed a possible fault during 
   11763 disassembly of some Alias operators.
   11764 
   11765 ----------------------------------------
   11766 12 May 2006. Summary of changes for version 20060512:
   11767 
   11768 1) ACPI CA Core Subsystem:
   11769 
   11770 Replaced the AcpiOsQueueForExecution interface with a new interface named 
   11771 AcpiOsExecute. The major difference is that the new interface does not 
   11772 have 
   11773 a Priority parameter, this appeared to be useless and has been replaced 
   11774 by 
   11775 a 
   11776 Type parameter. The Type tells the host what type of execution is being 
   11777 requested, such as global lock handler, notify handler, GPE handler, etc. 
   11778 This allows the host to queue and execute the request as appropriate for 
   11779 the 
   11780 request type, possibly using different work queues and different 
   11781 priorities 
   11782 for the various request types. This enables fixes for multithreading 
   11783 deadlock problems such as BZ #5534, and will require changes to all 
   11784 existing 
   11785 OS interface layers. (Alexey Starikovskiy and Bob Moore)
   11786 
   11787 Fixed a possible memory leak associated with the support for the so-
   11788 called 
   11789 "implicit return" ACPI extension. Reported by FreeBSD, BZ #6514. (Fiodor 
   11790 Suietov)
   11791 
   11792 Fixed a problem with the Load() operator where a table load from an 
   11793 operation region could overwrite an internal table buffer by up to 7 
   11794 bytes 
   11795 and cause alignment faults on IPF systems. (With assistance from Luming 
   11796 Yu)
   11797 
   11798 Example Code and Data Size: These are the sizes for the OS-independent 
   11799 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   11800 debug version of the code includes the debug output trace mechanism and 
   11801 has 
   11802 a much larger code and data size.
   11803 
   11804   Previous Release:
   11805     Non-Debug Version:  79.7K Code, 17.7K Data,  97.4K Total
   11806     Debug Version:     160.1K Code, 65.2K Data, 225.3K Total
   11807   Current Release:
   11808     Non-Debug Version:  79.8K Code, 17.7K Data,  97.5K Total
   11809     Debug Version:     160.5K Code, 65.1K Data, 225.6K Total
   11810 
   11811 
   11812 
   11813 2) iASL Compiler/Disassembler and Tools:
   11814 
   11815 Disassembler: Implemented support to cross reference the internal 
   11816 namespace 
   11817 and automatically generate ASL External() statements for symbols not 
   11818 defined 
   11819 within the current table being disassembled. This will simplify the 
   11820 disassembly and recompilation of interdependent tables such as SSDTs 
   11821 since 
   11822 these statements will no longer have to be added manually.
   11823 
   11824 Disassembler: Implemented experimental support to automatically detect 
   11825 invocations of external control methods and generate appropriate 
   11826 External() 
   11827 statements. This is problematic because the AML cannot be correctly 
   11828 parsed 
   11829 until the number of arguments for each control method is known. 
   11830 Currently, 
   11831 standalone method invocations and invocations as the source operand of a 
   11832 Store() statement are supported.
   11833 
   11834 Disassembler: Implemented support for the ASL pseudo-operators LNotEqual, 
   11835 LLessEqual, and LGreaterEqual. Previously disassembled as LNot(LEqual()), 
   11836 LNot(LGreater()), and LNot(LLess()), this makes the disassembled ASL code 
   11837 more readable and likely closer to the original ASL source.
   11838 
   11839 ----------------------------------------
   11840 21 April 2006. Summary of changes for version 20060421:
   11841 
   11842 1) ACPI CA Core Subsystem:
   11843 
   11844 Removed a device initialization optimization introduced in 20051216 where 
   11845 the _STA method was not run unless an _INI was also present for the same 
   11846 device. This optimization could cause problems because it could allow 
   11847 _INI 
   11848 methods to be run within a not-present device subtree. (If a not-present 
   11849 device had no _INI, _STA would not be run, the not-present status would 
   11850 not 
   11851 be discovered, and the children of the device would be incorrectly 
   11852 traversed.)
   11853 
   11854 Implemented a new _STA optimization where namespace subtrees that do not 
   11855 contain _INI are identified and ignored during device initialization. 
   11856 Selectively running _STA can significantly improve boot time on large 
   11857 machines (with assistance from Len Brown.)
   11858 
   11859 Implemented support for the device initialization case where the returned 
   11860 _STA flags indicate a device not-present but functioning. In this case, 
   11861 _INI 
   11862 is not run, but the device children are examined for presence, as per the 
   11863 ACPI specification.
   11864 
   11865 Implemented an additional change to the IndexField support in order to 
   11866 conform to MS behavior. The value written to the Index Register is not 
   11867 simply a byte offset, it is a byte offset in units of the access width of 
   11868 the parent Index Field. (Fiodor Suietov)
   11869 
   11870 Defined and deployed a new OSL interface, AcpiOsValidateAddress. This 
   11871 interface is called during the creation of all AML operation regions, and 
   11872 allows the host OS to exert control over what addresses it will allow the 
   11873 AML code to access. Operation Regions whose addresses are disallowed will 
   11874 cause a runtime exception when they are actually accessed (will not 
   11875 affect 
   11876 or abort table loading.) See oswinxf or osunixxf for an example 
   11877 implementation.
   11878 
   11879 Defined and deployed a new OSL interface, AcpiOsValidateInterface. This 
   11880 interface allows the host OS to match the various "optional" 
   11881 interface/behavior strings for the _OSI predefined control method as 
   11882 appropriate (with assistance from Bjorn Helgaas.) See oswinxf or osunixxf 
   11883 for an example implementation.
   11884 
   11885 Restructured and corrected various problems in the exception handling 
   11886 code 
   11887 paths within DsCallControlMethod and DsTerminateControlMethod in dsmethod 
   11888 (with assistance from Takayoshi Kochi.)
   11889 
   11890 Modified the Linux source converter to ignore quoted string literals 
   11891 while 
   11892 converting identifiers from mixed to lower case. This will correct 
   11893 problems 
   11894 with the disassembler and other areas where such strings must not be 
   11895 modified.
   11896 
   11897 The ACPI_FUNCTION_* macros no longer require quotes around the function 
   11898 name. This allows the Linux source converter to convert the names, now 
   11899 that 
   11900 the converter ignores quoted strings.
   11901 
   11902 Example Code and Data Size: These are the sizes for the OS-independent 
   11903 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   11904 debug version of the code includes the debug output trace mechanism and 
   11905 has 
   11906 a much larger code and data size.
   11907 
   11908   Previous Release:
   11909 
   11910     Non-Debug Version:  81.1K Code, 17.7K Data,  98.8K Total
   11911     Debug Version:     158.9K Code, 64.9K Data, 223.8K Total
   11912   Current Release:
   11913     Non-Debug Version:  79.7K Code, 17.7K Data,  97.4K Total
   11914     Debug Version:     160.1K Code, 65.2K Data, 225.3K Total
   11915 
   11916 
   11917 2) iASL Compiler/Disassembler and Tools:
   11918 
   11919 Implemented 3 new warnings for iASL, and implemented multiple warning 
   11920 levels 
   11921 (w2 flag).
   11922 
   11923 1) Ignored timeouts: If the TimeoutValue parameter to Wait or Acquire is 
   11924 not 
   11925 WAIT_FOREVER (0xFFFF) and the code does not examine the return value to 
   11926 check for the possible timeout, a warning is issued.
   11927 
   11928 2) Useless operators: If an ASL operator does not specify an optional 
   11929 target 
   11930 operand and it also does not use the function return value from the 
   11931 operator, a warning is issued since the operator effectively does 
   11932 nothing.
   11933 
   11934 3) Unreferenced objects: If a namespace object is created, but never 
   11935 referenced, a warning is issued. This is a warning level 2 since there 
   11936 are 
   11937 cases where this is ok, such as when a secondary table is loaded that 
   11938 uses 
   11939 the unreferenced objects. Even so, care is taken to only flag objects 
   11940 that 
   11941 don't look like they will ever be used. For example, the reserved methods 
   11942 (starting with an underscore) are usually not referenced because it is 
   11943 expected that the OS will invoke them.
   11944 
   11945 ----------------------------------------
   11946 31 March 2006. Summary of changes for version 20060331:
   11947 
   11948 1) ACPI CA Core Subsystem:
   11949 
   11950 Implemented header file support for the following additional ACPI tables: 
   11951 ASF!, BOOT, CPEP, DBGP, MCFG, SPCR, SPMI, TCPA, and WDRT. With this 
   11952 support, 
   11953 all current and known ACPI tables are now defined in the ACPICA headers 
   11954 and 
   11955 are available for use by device drivers and other software.
   11956 
   11957 Implemented support to allow tables that contain ACPI names with invalid 
   11958 characters to be loaded. Previously, this would cause the table load to 
   11959 fail, but since there are several known cases of such tables on existing 
   11960 machines, this change was made to enable ACPI support for them. Also, 
   11961 this 
   11962 matches the behavior of the Microsoft ACPI implementation.
   11963 
   11964 Fixed a couple regressions introduced during the memory optimization in 
   11965 the 
   11966 20060317 release. The namespace node definition required additional 
   11967 reorganization and an internal datatype that had been changed to 8-bit 
   11968 was 
   11969 restored to 32-bit. (Valery Podrezov)
   11970 
   11971 Fixed a problem where a null pointer passed to AcpiUtDeleteGenericState 
   11972 could be passed through to AcpiOsReleaseObject which is unexpected. Such 
   11973 null pointers are now trapped and ignored, matching the behavior of the 
   11974 previous implementation before the deployment of AcpiOsReleaseObject.
   11975 (Valery Podrezov, Fiodor Suietov)
   11976 
   11977 Fixed a memory mapping leak during the deletion of a SystemMemory 
   11978 operation 
   11979 region where a cached memory mapping was not deleted. This became a 
   11980 noticeable problem for operation regions that are defined within 
   11981 frequently 
   11982 used control methods. (Dana Meyers)
   11983 
   11984 Reorganized the ACPI table header files into two main files: one for the 
   11985 ACPI tables consumed by the ACPICA core, and another for the 
   11986 miscellaneous 
   11987 ACPI tables that are consumed by the drivers and other software. The 
   11988 various 
   11989 FADT definitions were merged into one common section and three different 
   11990 tables (ACPI 1.0, 1.0+, and 2.0)
   11991 
   11992 Example Code and Data Size: These are the sizes for the OS-independent 
   11993 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   11994 debug version of the code includes the debug output trace mechanism and 
   11995 has 
   11996 a much larger code and data size.
   11997 
   11998   Previous Release:
   11999     Non-Debug Version:  80.9K Code, 17.7K Data,  98.6K Total
   12000     Debug Version:     158.7K Code, 64.8K Data, 223.5K Total
   12001   Current Release:
   12002     Non-Debug Version:  81.1K Code, 17.7K Data,  98.8K Total
   12003     Debug Version:     158.9K Code, 64.9K Data, 223.8K Total
   12004 
   12005 
   12006 2) iASL Compiler/Disassembler and Tools:
   12007 
   12008 Disassembler: Implemented support to decode and format all non-AML ACPI 
   12009 tables (tables other than DSDTs and SSDTs.) This includes the new tables 
   12010 added to the ACPICA headers, therefore all current and known ACPI tables 
   12011 are 
   12012 supported.
   12013 
   12014 Disassembler: The change to allow ACPI names with invalid characters also 
   12015 enables the disassembly of such tables. Invalid characters within names 
   12016 are 
   12017 changed to '*' to make the name printable; the iASL compiler will still 
   12018 generate an error for such names, however, since this is an invalid ACPI 
   12019 character.
   12020 
   12021 Implemented an option for AcpiXtract (-a) to extract all tables found in 
   12022 the 
   12023 input file. The default invocation extracts only the DSDTs and SSDTs.
   12024 
   12025 Fixed a couple of gcc generation issues for iASL and AcpiExec and added a 
   12026 makefile for the AcpiXtract utility.
   12027 
   12028 ----------------------------------------
   12029 17 March 2006. Summary of changes for version 20060317:
   12030 
   12031 1) ACPI CA Core Subsystem:
   12032 
   12033 Implemented the use of a cache object for all internal namespace nodes. 
   12034 Since there are about 1000 static nodes in a typical system, this will 
   12035 decrease memory use for cache implementations that minimize per-
   12036 allocation 
   12037 overhead (such as a slab allocator.)
   12038 
   12039 Removed the reference count mechanism for internal namespace nodes, since 
   12040 it 
   12041 was deemed unnecessary. This reduces the size of each namespace node by 
   12042 about 5%-10% on all platforms. Nodes are now 20 bytes for the 32-bit 
   12043 case, 
   12044 and 32 bytes for the 64-bit case.
   12045 
   12046 Optimized several internal data structures to reduce object size on 64-
   12047 bit 
   12048 platforms by packing data within the 64-bit alignment. This includes the 
   12049 frequently used ACPI_OPERAND_OBJECT, of which there can be ~1000 static 
   12050 instances corresponding to the namespace objects.
   12051 
   12052 Added two new strings for the predefined _OSI method: "Windows 2001.1 
   12053 SP1" 
   12054 and "Windows 2006".
   12055 
   12056 Split the allocation tracking mechanism out to a separate file, from 
   12057 utalloc.c to uttrack.c. This mechanism appears to be only useful for 
   12058 application-level code. Kernels may wish to not include uttrack.c in 
   12059 distributions.
   12060 
   12061 Removed all remnants of the obsolete ACPI_REPORT_* macros and the 
   12062 associated 
   12063 code. (These macros have been replaced by the ACPI_ERROR and ACPI_WARNING 
   12064 macros.)
   12065 
   12066 Code and Data Size: These are the sizes for the acpica.lib produced by 
   12067 the 
   12068 Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any 
   12069 ACPI 
   12070 driver or OSPM code. The debug version of the code includes the debug 
   12071 output 
   12072 trace mechanism and has a much larger code and data size. Note that these 
   12073 values will vary depending on the efficiency of the compiler and the 
   12074 compiler options used during generation.
   12075 
   12076   Previous Release:
   12077     Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
   12078     Debug Version:     161.6K Code, 65.7K Data, 227.3K Total
   12079   Current Release:
   12080     Non-Debug Version:  80.9K Code, 17.7K Data,  98.6K Total
   12081     Debug Version:     158.7K Code, 64.8K Data, 223.5K Total
   12082 
   12083 
   12084 2) iASL Compiler/Disassembler and Tools:
   12085 
   12086 Implemented an ANSI C version of the acpixtract utility. This version 
   12087 will 
   12088 automatically extract the DSDT and all SSDTs from the input acpidump text 
   12089 file and dump the binary output to separate files. It can also display a 
   12090 summary of the input file including the headers for each table found and 
   12091 will extract any single ACPI table, with any signature. (See 
   12092 source/tools/acpixtract)
   12093 
   12094 ----------------------------------------
   12095 10 March 2006. Summary of changes for version 20060310:
   12096 
   12097 1) ACPI CA Core Subsystem:
   12098 
   12099 Tagged all external interfaces to the subsystem with the new 
   12100 ACPI_EXPORT_SYMBOL macro. This macro can be defined as necessary to 
   12101 assist 
   12102 kernel integration. For Linux, the macro resolves to the EXPORT_SYMBOL 
   12103 macro. The default definition is NULL.
   12104 
   12105 Added the ACPI_THREAD_ID type for the return value from 
   12106 AcpiOsGetThreadId. 
   12107 This allows the host to define this as necessary to simplify kernel 
   12108 integration. The default definition is ACPI_NATIVE_UINT.
   12109 
   12110 Fixed two interpreter problems related to error processing, the deletion 
   12111 of 
   12112 objects, and placing invalid pointers onto the internal operator result 
   12113 stack. BZ 6028, 6151 (Valery Podrezov)
   12114 
   12115 Increased the reference count threshold where a warning is emitted for 
   12116 large 
   12117 reference counts in order to eliminate unnecessary warnings on systems 
   12118 with 
   12119 large namespaces (especially 64-bit.) Increased the value from 0x400 to 
   12120 0x800.
   12121 
   12122 Due to universal disagreement as to the meaning of the 'c' in the 
   12123 calloc() 
   12124 function, the ACPI_MEM_CALLOCATE macro has been renamed to 
   12125 ACPI_ALLOCATE_ZEROED so that the purpose of the interface is 'clear'. 
   12126 ACPI_MEM_ALLOCATE and ACPI_MEM_FREE are renamed to ACPI_ALLOCATE and 
   12127 ACPI_FREE.
   12128 
   12129 Code and Data Size: These are the sizes for the acpica.lib produced by 
   12130 the 
   12131 Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any 
   12132 ACPI 
   12133 driver or OSPM code. The debug version of the code includes the debug 
   12134 output 
   12135 trace mechanism and has a much larger code and data size. Note that these 
   12136 values will vary depending on the efficiency of the compiler and the 
   12137 compiler options used during generation.
   12138 
   12139   Previous Release:
   12140     Non-Debug Version:  81.0K Code, 17.8K Data,  98.8K Total
   12141     Debug Version:     161.4K Code, 65.7K Data, 227.1K Total
   12142   Current Release:
   12143     Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
   12144     Debug Version:     161.6K Code, 65.7K Data, 227.3K Total
   12145 
   12146 
   12147 2) iASL Compiler/Disassembler:
   12148 
   12149 Disassembler: implemented support for symbolic resource descriptor 
   12150 references. If a CreateXxxxField operator references a fixed offset 
   12151 within 
   12152 a 
   12153 resource descriptor, a name is assigned to the descriptor and the offset 
   12154 is 
   12155 translated to the appropriate resource tag and pathname. The addition of 
   12156 this support brings the disassembled code very close to the original ASL 
   12157 source code and helps eliminate run-time errors when the disassembled 
   12158 code 
   12159 is modified (and recompiled) in such a way as to invalidate the original 
   12160 fixed offsets.
   12161 
   12162 Implemented support for a Descriptor Name as the last parameter to the 
   12163 ASL 
   12164 Register() macro. This parameter was inadvertently left out of the ACPI 
   12165 specification, and will be added for ACPI 3.0b.
   12166 
   12167 Fixed a problem where the use of the "_OSI" string (versus the full path 
   12168 "\_OSI") caused an internal compiler error. ("No back ptr to op")
   12169 
   12170 Fixed a problem with the error message that occurs when an invalid string 
   12171 is 
   12172 used for a _HID object (such as one with an embedded asterisk: 
   12173 "*PNP010A".) 
   12174 The correct message is now displayed.
   12175 
   12176 ----------------------------------------
   12177 17 February 2006. Summary of changes for version 20060217:
   12178 
   12179 1) ACPI CA Core Subsystem:
   12180 
   12181 Implemented a change to the IndexField support to match the behavior of 
   12182 the 
   12183 Microsoft AML interpreter. The value written to the Index register is now 
   12184 a 
   12185 byte offset, no longer an index based upon the width of the Data 
   12186 register. 
   12187 This should fix IndexField problems seen on some machines where the Data 
   12188 register is not exactly one byte wide. The ACPI specification will be 
   12189 clarified on this point.
   12190 
   12191 Fixed a problem where several resource descriptor types could overrun the 
   12192 internal descriptor buffer due to size miscalculation: VendorShort, 
   12193 VendorLong, and Interrupt. This was noticed on IA64 machines, but could 
   12194 affect all platforms.
   12195 
   12196 Fixed a problem where individual resource descriptors were misaligned 
   12197 within 
   12198 the internal buffer, causing alignment faults on IA64 platforms.
   12199 
   12200 Code and Data Size: These are the sizes for the acpica.lib produced by 
   12201 the 
   12202 Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any 
   12203 ACPI 
   12204 driver or OSPM code. The debug version of the code includes the debug 
   12205 output 
   12206 trace mechanism and has a much larger code and data size. Note that these 
   12207 values will vary depending on the efficiency of the compiler and the 
   12208 compiler options used during generation.
   12209 
   12210   Previous Release:
   12211     Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
   12212     Debug Version:     161.3K Code, 65.6K Data, 226.9K Total
   12213   Current Release:
   12214     Non-Debug Version:  81.0K Code, 17.8K Data,  98.8K Total
   12215     Debug Version:     161.4K Code, 65.7K Data, 227.1K Total
   12216 
   12217 
   12218 2) iASL Compiler/Disassembler:
   12219 
   12220 Implemented support for new reserved names: _WDG and _WED are Microsoft 
   12221 extensions for Windows Instrumentation Management, _TDL is a new ACPI-
   12222 defined method (Throttling Depth Limit.)
   12223 
   12224 Fixed a problem where a zero-length VendorShort or VendorLong resource 
   12225 descriptor was incorrectly emitted as a descriptor of length one.
   12226 
   12227 ----------------------------------------
   12228 10 February 2006. Summary of changes for version 20060210:
   12229 
   12230 1) ACPI CA Core Subsystem:
   12231 
   12232 Removed a couple of extraneous ACPI_ERROR messages that appeared during 
   12233 normal execution. These became apparent after the conversion from 
   12234 ACPI_DEBUG_PRINT.
   12235 
   12236 Fixed a problem where the CreateField operator could hang if the BitIndex 
   12237 or 
   12238 NumBits parameter referred to a named object. (Valery Podrezov, BZ 5359)
   12239 
   12240 Fixed a problem where a DeRefOf operation on a buffer object incorrectly 
   12241 failed with an exception. This also fixes a couple of related RefOf and 
   12242 DeRefOf issues. (Valery Podrezov, BZ 5360/5392/5387)
   12243 
   12244 Fixed a problem where the AE_BUFFER_LIMIT exception was returned instead 
   12245 of 
   12246 AE_STRING_LIMIT on an out-of-bounds Index() operation. (Valery Podrezov, 
   12247 BZ 
   12248 5480)
   12249 
   12250 Implemented a memory cleanup at the end of the execution of each 
   12251 iteration 
   12252 of an AML While() loop, preventing the accumulation of outstanding 
   12253 objects. 
   12254 (Valery Podrezov, BZ 5427)
   12255 
   12256 Eliminated a chunk of duplicate code in the object resolution code. 
   12257 (Valery 
   12258 Podrezov, BZ 5336)
   12259 
   12260 Fixed several warnings during the 64-bit code generation.
   12261 
   12262 The AcpiSrc source code conversion tool now inserts one line of 
   12263 whitespace 
   12264 after an if() statement that is followed immediately by a comment, 
   12265 improving 
   12266 readability of the Linux code.
   12267 
   12268 Code and Data Size: The current and previous library sizes for the core 
   12269 subsystem are shown below. These are the code and data sizes for the 
   12270 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
   12271 These 
   12272 values do not include any ACPI driver or OSPM code. The debug version of 
   12273 the 
   12274 code includes the debug output trace mechanism and has a much larger code 
   12275 and data size. Note that these values will vary depending on the 
   12276 efficiency 
   12277 of the compiler and the compiler options used during generation.
   12278 
   12279   Previous Release:
   12280     Non-Debug Version:  81.0K Code, 17.9K Data,  98.9K Total
   12281     Debug Version:     161.3K Code, 65.7K Data, 227.0K Total
   12282   Current Release:
   12283     Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
   12284     Debug Version:     161.3K Code, 65.6K Data, 226.9K Total
   12285 
   12286 
   12287 2) iASL Compiler/Disassembler:
   12288 
   12289 Fixed a problem with the disassembly of a BankField operator with a 
   12290 complex 
   12291 expression for the BankValue parameter.
   12292 
   12293 ----------------------------------------
   12294 27 January 2006. Summary of changes for version 20060127:
   12295 
   12296 1) ACPI CA Core Subsystem:
   12297 
   12298 Implemented support in the Resource Manager to allow unresolved 
   12299 namestring 
   12300 references within resource package objects for the _PRT method. This 
   12301 support 
   12302 is in addition to the previously implemented unresolved reference support 
   12303 within the AML parser. If the interpreter slack mode is enabled, these 
   12304 unresolved references will be passed through to the caller as a NULL 
   12305 package 
   12306 entry.
   12307 
   12308 Implemented and deployed new macros and functions for error and warning 
   12309 messages across the subsystem. These macros are simpler and generate less 
   12310 code than their predecessors. The new macros ACPI_ERROR, ACPI_EXCEPTION, 
   12311 ACPI_WARNING, and ACPI_INFO replace the ACPI_REPORT_* macros. The older 
   12312 macros remain defined to allow ACPI drivers time to migrate to the new 
   12313 macros.
   12314 
   12315 Implemented the ACPI_CPU_FLAGS type to simplify host OS integration of 
   12316 the 
   12317 Acquire/Release Lock OSL interfaces.
   12318 
   12319 Fixed a problem where Alias ASL operators are sometimes not correctly 
   12320 resolved, in both the interpreter and the iASL compiler.
   12321 
   12322 Fixed several problems with the implementation of the 
   12323 ConcatenateResTemplate 
   12324 ASL operator. As per the ACPI specification, zero length buffers are now 
   12325 treated as a single EndTag. One-length buffers always cause a fatal 
   12326 exception. Non-zero length buffers that do not end with a full 2-byte 
   12327 EndTag 
   12328 cause a fatal exception.
   12329 
   12330 Fixed a possible structure overwrite in the AcpiGetObjectInfo external 
   12331 interface. (With assistance from Thomas Renninger)
   12332 
   12333 Code and Data Size: The current and previous library sizes for the core 
   12334 subsystem are shown below. These are the code and data sizes for the 
   12335 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
   12336 These 
   12337 values do not include any ACPI driver or OSPM code. The debug version of 
   12338 the 
   12339 code includes the debug output trace mechanism and has a much larger code 
   12340 and data size. Note that these values will vary depending on the 
   12341 efficiency 
   12342 of the compiler and the compiler options used during generation.
   12343 
   12344   Previous Release:
   12345     Non-Debug Version:  83.1K Code, 18.4K Data, 101.5K Total
   12346     Debug Version:     163.2K Code, 66.2K Data, 229.4K Total
   12347   Current Release:
   12348     Non-Debug Version:  81.0K Code, 17.9K Data,  98.9K Total
   12349     Debug Version:     161.3K Code, 65.7K Data, 227.0K Total
   12350 
   12351 
   12352 2) iASL Compiler/Disassembler:
   12353 
   12354 Fixed an internal error that was generated for any forward references to 
   12355 ASL 
   12356 Alias objects.
   12357 
   12358 ----------------------------------------
   12359 13 January 2006. Summary of changes for version 20060113:
   12360 
   12361 1) ACPI CA Core Subsystem:
   12362 
   12363 Added 2006 copyright to all module headers and signons. This affects 
   12364 virtually every file in the ACPICA core subsystem, iASL compiler, and the 
   12365 utilities.
   12366  
   12367 Enhanced the ACPICA error reporting in order to simplify user migration 
   12368 to 
   12369 the non-debug version of ACPICA. Replaced all instances of the 
   12370 ACPI_DEBUG_PRINT macro invoked at the ACPI_DB_ERROR and ACPI_DB_WARN 
   12371 debug 
   12372 levels with the ACPI_REPORT_ERROR and ACPI_REPORT_WARNING macros, 
   12373 respectively. This preserves all error and warning messages in the non-
   12374 debug 
   12375 version of the ACPICA code (this has been referred to as the "debug lite" 
   12376 option.) Over 200 cases were converted to create a total of over 380 
   12377 error/warning messages across the ACPICA code. This increases the code 
   12378 and 
   12379 data size of the default non-debug version of the code somewhat (about 
   12380 13K), 
   12381 but all error/warning reporting may be disabled if desired (and code 
   12382 eliminated) by specifying the ACPI_NO_ERROR_MESSAGES compile-time 
   12383 configuration option. The size of the debug version of ACPICA remains 
   12384 about 
   12385 the same.
   12386 
   12387 Fixed a memory leak within the AML Debugger "Set" command. One object was 
   12388 not properly deleted for every successful invocation of the command.
   12389 
   12390 Code and Data Size: The current and previous library sizes for the core 
   12391 subsystem are shown below. These are the code and data sizes for the 
   12392 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
   12393 These 
   12394 values do not include any ACPI driver or OSPM code. The debug version of 
   12395 the 
   12396 code includes the debug output trace mechanism and has a much larger code 
   12397 and data size. Note that these values will vary depending on the 
   12398 efficiency 
   12399 of the compiler and the compiler options used during generation.
   12400 
   12401   Previous Release:
   12402     Non-Debug Version:  76.6K Code, 12.3K Data,  88.9K Total
   12403     Debug Version:     163.7K Code, 67.5K Data, 231.2K Total
   12404   Current Release:
   12405     Non-Debug Version:  83.1K Code, 18.4K Data, 101.5K Total
   12406     Debug Version:     163.2K Code, 66.2K Data, 229.4K Total
   12407 
   12408 
   12409 2) iASL Compiler/Disassembler:
   12410 
   12411 The compiler now officially supports the ACPI 3.0a specification that was 
   12412 released on December 30, 2005. (Specification is available at 
   12413 www.acpi.info)
   12414 
   12415 ----------------------------------------
   12416 16 December 2005. Summary of changes for version 20051216:
   12417 
   12418 1) ACPI CA Core Subsystem:
   12419 
   12420 Implemented optional support to allow unresolved names within ASL Package 
   12421 objects. A null object is inserted in the package when a named reference 
   12422 cannot be located in the current namespace. Enabled via the interpreter 
   12423 slack flag, this should eliminate AE_NOT_FOUND exceptions seen on 
   12424 machines 
   12425 that contain such code.
   12426 
   12427 Implemented an optimization to the initialization sequence that can 
   12428 improve 
   12429 boot time. During ACPI device initialization, the _STA method is now run 
   12430 if 
   12431 and only if the _INI method exists. The _STA method is used to determine 
   12432 if 
   12433 the device is present; An _INI can only be run if _STA returns present, 
   12434 but 
   12435 it is a waste of time to run the _STA method if the _INI does not exist. 
   12436 (Prototype and assistance from Dong Wei)
   12437 
   12438 Implemented use of the C99 uintptr_t for the pointer casting macros if it 
   12439 is 
   12440 available in the current compiler. Otherwise, the default (void *) cast 
   12441 is 
   12442 used as before.
   12443 
   12444 Fixed some possible memory leaks found within the execution path of the 
   12445 Break, Continue, If, and CreateField operators. (Valery Podrezov)
   12446 
   12447 Fixed a problem introduced in the 20051202 release where an exception is 
   12448 generated during method execution if a control method attempts to declare 
   12449 another method.
   12450 
   12451 Moved resource descriptor string constants that are used by both the AML 
   12452 disassembler and AML debugger to the common utilities directory so that 
   12453 these components are independent.
   12454 
   12455 Implemented support in the AcpiExec utility (-e switch) to globally 
   12456 ignore 
   12457 exceptions during control method execution (method is not aborted.)
   12458 
   12459 Added the rsinfo.c source file to the AcpiExec makefile for Linux/Unix 
   12460 generation.
   12461 
   12462 Code and Data Size: The current and previous library sizes for the core 
   12463 subsystem are shown below. These are the code and data sizes for the 
   12464 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
   12465 These 
   12466 values do not include any ACPI driver or OSPM code. The debug version of 
   12467 the 
   12468 code includes the debug output trace mechanism and has a much larger code 
   12469 and data size. Note that these values will vary depending on the 
   12470 efficiency 
   12471 of the compiler and the compiler options used during generation.
   12472 
   12473   Previous Release:
   12474     Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
   12475     Debug Version:     163.2K Code, 67.4K Data, 230.6K Total
   12476   Current Release:
   12477     Non-Debug Version:  76.6K Code, 12.3K Data,  88.9K Total
   12478     Debug Version:     163.7K Code, 67.5K Data, 231.2K Total
   12479 
   12480 
   12481 2) iASL Compiler/Disassembler:
   12482 
   12483 Fixed a problem where a CPU stack overflow fault could occur if a 
   12484 recursive 
   12485 method call was made from within a Return statement.
   12486 
   12487 ----------------------------------------
   12488 02 December 2005. Summary of changes for version 20051202:
   12489 
   12490 1) ACPI CA Core Subsystem:
   12491 
   12492 Modified the parsing of control methods to no longer create namespace 
   12493 objects during the first pass of the parse. Objects are now created only 
   12494 during the execute phase, at the moment the namespace creation operator 
   12495 is 
   12496 encountered in the AML (Name, OperationRegion, CreateByteField, etc.) 
   12497 This 
   12498 should eliminate ALREADY_EXISTS exceptions seen on some machines where 
   12499 reentrant control methods are protected by an AML mutex. The mutex will 
   12500 now 
   12501 correctly block multiple threads from attempting to create the same 
   12502 object 
   12503 more than once.
   12504 
   12505 Increased the number of available Owner Ids for namespace object tracking 
   12506 from 32 to 255. This should eliminate the OWNER_ID_LIMIT exceptions seen 
   12507 on 
   12508 some machines with a large number of ACPI tables (either static or 
   12509 dynamic).
   12510 
   12511 Fixed a problem with the AcpiExec utility where a fault could occur when 
   12512 the 
   12513 -b switch (batch mode) is used.
   12514 
   12515 Enhanced the namespace dump routine to output the owner ID for each 
   12516 namespace object.
   12517 
   12518 Code and Data Size: The current and previous library sizes for the core 
   12519 subsystem are shown below. These are the code and data sizes for the 
   12520 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
   12521 These 
   12522 values do not include any ACPI driver or OSPM code. The debug version of 
   12523 the 
   12524 code includes the debug output trace mechanism and has a much larger code 
   12525 and data size. Note that these values will vary depending on the 
   12526 efficiency 
   12527 of the compiler and the compiler options used during generation.
   12528 
   12529   Previous Release:
   12530     Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
   12531     Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
   12532   Current Release:
   12533     Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
   12534     Debug Version:     163.2K Code, 67.4K Data, 230.6K Total
   12535 
   12536 
   12537 2) iASL Compiler/Disassembler:
   12538 
   12539 Fixed a parse error during compilation of certain Switch/Case constructs. 
   12540 To 
   12541 simplify the parse, the grammar now allows for multiple Default 
   12542 statements 
   12543 and this error is now detected and flagged during the analysis phase.
   12544 
   12545 Disassembler: The disassembly now includes the contents of the original 
   12546 table header within a comment at the start of the file. This includes the 
   12547 name and version of the original ASL compiler.
   12548 
   12549 ----------------------------------------
   12550 17 November 2005. Summary of changes for version 20051117:
   12551 
   12552 1) ACPI CA Core Subsystem:
   12553 
   12554 Fixed a problem in the AML parser where the method thread count could be 
   12555 decremented below zero if any errors occurred during the method parse 
   12556 phase. 
   12557 This should eliminate AE_AML_METHOD_LIMIT exceptions seen on some 
   12558 machines. 
   12559 This also fixed a related regression with the mechanism that detects and 
   12560 corrects methods that cannot properly handle reentrancy (related to the 
   12561 deployment of the new OwnerId mechanism.)
   12562 
   12563 Eliminated the pre-parsing of control methods (to detect errors) during 
   12564 table load. Related to the problem above, this was causing unwind issues 
   12565 if 
   12566 any errors occurred during the parse, and it seemed to be overkill. A 
   12567 table 
   12568 load should not be aborted if there are problems with any single control 
   12569 method, thus rendering this feature rather pointless.
   12570 
   12571 Fixed a problem with the new table-driven resource manager where an 
   12572 internal 
   12573 buffer overflow could occur for small resource templates.
   12574 
   12575 Implemented a new external interface, AcpiGetVendorResource. This 
   12576 interface 
   12577 will find and return a vendor-defined resource descriptor within a _CRS 
   12578 or 
   12579 _PRS method via an ACPI 3.0 UUID match. With assistance from Bjorn 
   12580 Helgaas.
   12581 
   12582 Removed the length limit (200) on string objects as per the upcoming ACPI 
   12583 3.0A specification. This affects the following areas of the interpreter: 
   12584 1) 
   12585 any implicit conversion of a Buffer to a String, 2) a String object
   12586 result 
   12587 of the ASL Concatenate operator, 3) the String object result of the ASL
   12588 ToString operator.
   12589 
   12590 Fixed a problem in the Windows OS interface layer (OSL) where a 
   12591 WAIT_FOREVER 
   12592 on a semaphore object would incorrectly timeout. This allows the 
   12593 multithreading features of the AcpiExec utility to work properly under 
   12594 Windows.
   12595 
   12596 Updated the Linux makefiles for the iASL compiler and AcpiExec to include 
   12597 the recently added file named "utresrc.c".
   12598 
   12599 Code and Data Size: The current and previous library sizes for the core 
   12600 subsystem are shown below. These are the code and data sizes for the 
   12601 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
   12602 These 
   12603 values do not include any ACPI driver or OSPM code. The debug version of 
   12604 the 
   12605 code includes the debug output trace mechanism and has a much larger code 
   12606 and data size. Note that these values will vary depending on the 
   12607 efficiency 
   12608 of the compiler and the compiler options used during generation.
   12609 
   12610   Previous Release:
   12611     Non-Debug Version:  76.2K Code, 12.3K Data,  88.5K Total
   12612     Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
   12613   Current Release:
   12614     Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
   12615     Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
   12616 
   12617 
   12618 2) iASL Compiler/Disassembler:
   12619 
   12620 Removed the limit (200) on string objects as per the upcoming ACPI 3.0A 
   12621 specification. For the iASL compiler, this means that string literals 
   12622 within 
   12623 the source ASL can be of any length. 
   12624 
   12625 Enhanced the listing output to dump the AML code for resource descriptors 
   12626 immediately after the ASL code for each descriptor, instead of in a block 
   12627 at 
   12628 the end of the entire resource template.
   12629 
   12630 Enhanced the compiler debug output to dump the entire original parse tree 
   12631 constructed during the parse phase, before any transforms are applied to 
   12632 the 
   12633 tree. The transformed tree is dumped also.
   12634 
   12635 ----------------------------------------
   12636 02 November 2005. Summary of changes for version 20051102:
   12637 
   12638 1) ACPI CA Core Subsystem:
   12639 
   12640 Modified the subsystem initialization sequence to improve GPE support. 
   12641 The 
   12642 GPE initialization has been split into two parts in order to defer 
   12643 execution 
   12644 of the _PRW methods (Power Resources for Wake) until after the hardware 
   12645 is 
   12646 fully initialized and the SCI handler is installed. This allows the _PRW 
   12647 methods to access fields protected by the Global Lock. This will fix 
   12648 systems 
   12649 where a NO_GLOBAL_LOCK exception has been seen during initialization.
   12650 
   12651 Converted the ACPI internal object disassemble and display code within 
   12652 the 
   12653 AML debugger to fully table-driven operation, reducing code size and 
   12654 increasing maintainability.
   12655 
   12656 Fixed a regression with the ConcatenateResTemplate() ASL operator 
   12657 introduced 
   12658 in the 20051021 release.
   12659 
   12660 Implemented support for "local" internal ACPI object types within the 
   12661 debugger "Object" command and the AcpiWalkNamespace external interfaces. 
   12662 These local types include RegionFields, BankFields, IndexFields, Alias, 
   12663 and 
   12664 reference objects.
   12665 
   12666 Moved common AML resource handling code into a new file, "utresrc.c". 
   12667 This 
   12668 code is shared by both the Resource Manager and the AML Debugger.
   12669 
   12670 Code and Data Size: The current and previous library sizes for the core 
   12671 subsystem are shown below. These are the code and data sizes for the 
   12672 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
   12673 These 
   12674 values do not include any ACPI driver or OSPM code. The debug version of 
   12675 the 
   12676 code includes the debug output trace mechanism and has a much larger code 
   12677 and data size. Note that these values will vary depending on the 
   12678 efficiency 
   12679 of the compiler and the compiler options used during generation.
   12680 
   12681   Previous Release:
   12682     Non-Debug Version:  76.1K Code, 12.2K Data,  88.3K Total
   12683     Debug Version:     163.5K Code, 67.0K Data, 230.5K Total
   12684   Current Release:
   12685     Non-Debug Version:  76.2K Code, 12.3K Data,  88.5K Total
   12686     Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
   12687 
   12688 
   12689 2) iASL Compiler/Disassembler:
   12690 
   12691 Fixed a problem with very large initializer lists (more than 4000 
   12692 elements) 
   12693 for both Buffer and Package objects where the parse stack could overflow.
   12694 
   12695 Enhanced the pre-compile source code scan for non-ASCII characters to 
   12696 ignore 
   12697 characters within comment fields. The scan is now always performed and is 
   12698 no 
   12699 longer optional, detecting invalid characters within a source file 
   12700 immediately rather than during the parse phase or later.
   12701 
   12702 Enhanced the ASL grammar definition to force early reductions on all 
   12703 list-
   12704 style grammar elements so that the overall parse stack usage is greatly 
   12705 reduced. This should improve performance and reduce the possibility of 
   12706 parse 
   12707 stack overflow.
   12708 
   12709 Eliminated all reduce/reduce conflicts in the iASL parser generation. 
   12710 Also, 
   12711 with the addition of a %expected statement, the compiler generates from 
   12712 source with no warnings.
   12713 
   12714 Fixed a possible segment fault in the disassembler if the input filename 
   12715 does not contain a "dot" extension (Thomas Renninger).
   12716 
   12717 ----------------------------------------
   12718 21 October 2005. Summary of changes for version 20051021:
   12719 
   12720 1) ACPI CA Core Subsystem:
   12721 
   12722 Implemented support for the EM64T and other x86-64 processors. This 
   12723 essentially entails recognizing that these processors support non-aligned 
   12724 memory transfers. Previously, all 64-bit processors were assumed to lack 
   12725 hardware support for non-aligned transfers.
   12726 
   12727 Completed conversion of the Resource Manager to nearly full table-driven 
   12728 operation. Specifically, the resource conversion code (convert AML to 
   12729 internal format and the reverse) and the debug code to dump internal 
   12730 resource descriptors are fully table-driven, reducing code and data size 
   12731 and 
   12732 improving maintainability.
   12733 
   12734 The OSL interfaces for Acquire and Release Lock now use a 64-bit flag 
   12735 word 
   12736 on 64-bit processors instead of a fixed 32-bit word. (With assistance 
   12737 from 
   12738 Alexey Starikovskiy)
   12739 
   12740 Implemented support within the resource conversion code for the Type-
   12741 Specific byte within the various ACPI 3.0 *WordSpace macros.
   12742 
   12743 Fixed some issues within the resource conversion code for the type-
   12744 specific 
   12745 flags for both Memory and I/O address resource descriptors. For Memory, 
   12746 implemented support for the MTP and TTP flags. For I/O, split the TRS and 
   12747 TTP flags into two separate fields.
   12748 
   12749 Code and Data Size: The current and previous library sizes for the core 
   12750 subsystem are shown below. These are the code and data sizes for the 
   12751 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
   12752 These 
   12753 values do not include any ACPI driver or OSPM code. The debug version of 
   12754 the 
   12755 code includes the debug output trace mechanism and has a much larger code 
   12756 and data size. Note that these values will vary depending on the 
   12757 efficiency 
   12758 of the compiler and the compiler options used during generation.
   12759 
   12760   Previous Release:
   12761     Non-Debug Version:  77.1K Code, 12.1K Data,  89.2K Total
   12762     Debug Version:     168.0K Code, 68.3K Data, 236.3K Total
   12763   Current Release:
   12764     Non-Debug Version:  76.1K Code, 12.2K Data,  88.3K Total
   12765     Debug Version:     163.5K Code, 67.0K Data, 230.5K Total
   12766 
   12767 
   12768 
   12769 2) iASL Compiler/Disassembler:
   12770 
   12771 Relaxed a compiler restriction that disallowed a ResourceIndex byte if 
   12772 the 
   12773 corresponding ResourceSource string was not also present in a resource 
   12774 descriptor declaration. This restriction caused problems with existing 
   12775 AML/ASL code that includes the Index byte without the string. When such 
   12776 AML 
   12777 was disassembled, it could not be compiled without modification. Further, 
   12778 the modified code created a resource template with a different size than 
   12779 the 
   12780 original, breaking code that used fixed offsets into the resource 
   12781 template 
   12782 buffer.
   12783 
   12784 Removed a recent feature of the disassembler to ignore a lone 
   12785 ResourceIndex 
   12786 byte. This byte is now emitted if present so that the exact AML can be 
   12787 reproduced when the disassembled code is recompiled.
   12788 
   12789 Improved comments and text alignment for the resource descriptor code 
   12790 emitted by the disassembler.
   12791 
   12792 Implemented disassembler support for the ACPI 3.0 AccessSize field within 
   12793 a 
   12794 Register() resource descriptor.
   12795 
   12796 ----------------------------------------
   12797 30 September 2005. Summary of changes for version 20050930:
   12798 
   12799 1) ACPI CA Core Subsystem:
   12800 
   12801 Completed a major overhaul of the Resource Manager code - specifically, 
   12802 optimizations in the area of the AML/internal resource conversion code. 
   12803 The 
   12804 code has been optimized to simplify and eliminate duplicated code, CPU 
   12805 stack 
   12806 use has been decreased by optimizing function parameters and local 
   12807 variables, and naming conventions across the manager have been 
   12808 standardized 
   12809 for clarity and ease of maintenance (this includes function, parameter, 
   12810 variable, and struct/typedef names.) The update may force changes in some 
   12811 driver code, depending on how resources are handled by the host OS.
   12812 
   12813 All Resource Manager dispatch and information tables have been moved to a 
   12814 single location for clarity and ease of maintenance. One new file was 
   12815 created, named "rsinfo.c".
   12816 
   12817 The ACPI return macros (return_ACPI_STATUS, etc.) have been modified to 
   12818 guarantee that the argument is not evaluated twice, making them less 
   12819 prone 
   12820 to macro side-effects. However, since there exists the possibility of 
   12821 additional stack use if a particular compiler cannot optimize them (such 
   12822 as 
   12823 in the debug generation case), the original macros are optionally 
   12824 available.  
   12825 Note that some invocations of the return_VALUE macro may now cause size 
   12826 mismatch warnings; the return_UINT8 and return_UINT32 macros are provided 
   12827 to 
   12828 eliminate these. (From Randy Dunlap)
   12829 
   12830 Implemented a new mechanism to enable debug tracing for individual 
   12831 control 
   12832 methods. A new external interface, AcpiDebugTrace, is provided to enable 
   12833 this mechanism. The intent is to allow the host OS to easily enable and 
   12834 disable tracing for problematic control methods. This interface can be 
   12835 easily exposed to a user or debugger interface if desired. See the file 
   12836 psxface.c for details.
   12837 
   12838 AcpiUtCallocate will now return a valid pointer if a length of zero is 
   12839 specified - a length of one is used and a warning is issued. This matches 
   12840 the behavior of AcpiUtAllocate.
   12841 
   12842 Code and Data Size: The current and previous library sizes for the core 
   12843 subsystem are shown below. These are the code and data sizes for the 
   12844 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
   12845 These 
   12846 values do not include any ACPI driver or OSPM code. The debug version of 
   12847 the 
   12848 code includes the debug output trace mechanism and has a much larger code 
   12849 and data size. Note that these values will vary depending on the 
   12850 efficiency 
   12851 of the compiler and the compiler options used during generation.
   12852 
   12853   Previous Release:
   12854     Non-Debug Version:  77.5K Code, 12.0K Data,  89.5K Total
   12855     Debug Version:     168.1K Code, 68.4K Data, 236.5K Total
   12856   Current Release:
   12857     Non-Debug Version:  77.1K Code, 12.1K Data,  89.2K Total
   12858     Debug Version:     168.0K Code, 68.3K Data, 236.3K Total
   12859 
   12860 
   12861 2) iASL Compiler/Disassembler:
   12862 
   12863 A remark is issued if the effective compile-time length of a package or 
   12864 buffer is zero. Previously, this was a warning.
   12865 
   12866 ----------------------------------------
   12867 16 September 2005. Summary of changes for version 20050916:
   12868 
   12869 1) ACPI CA Core Subsystem:
   12870 
   12871 Fixed a problem within the Resource Manager where support for the Generic 
   12872 Register descriptor was not fully implemented. This descriptor is now 
   12873 fully 
   12874 recognized, parsed, disassembled, and displayed.
   12875 
   12876 Completely restructured the Resource Manager code to utilize table-driven 
   12877 dispatch and lookup, eliminating many of the large switch() statements. 
   12878 This 
   12879 reduces overall subsystem code size and code complexity. Affects the 
   12880 resource parsing and construction, disassembly, and debug dump output.
   12881 
   12882 Cleaned up and restructured the debug dump output for all resource 
   12883 descriptors. Improved readability of the output and reduced code size.
   12884 
   12885 Fixed a problem where changes to internal data structures caused the 
   12886 optional ACPI_MUTEX_DEBUG code to fail compilation if specified.
   12887 
   12888 Code and Data Size: The current and previous library sizes for the core 
   12889 subsystem are shown below. These are the code and data sizes for the 
   12890 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
   12891 These 
   12892 values do not include any ACPI driver or OSPM code. The debug version of 
   12893 the 
   12894 code includes the debug output trace mechanism and has a much larger code 
   12895 and data size. Note that these values will vary depending on the 
   12896 efficiency 
   12897 of the compiler and the compiler options used during generation.
   12898 
   12899   Previous Release:
   12900     Non-Debug Version:  78.4K Code, 11.8K Data,  90.2K Total
   12901     Debug Version:     169.6K Code, 69.9K Data, 239.5K Total
   12902   Current Release:
   12903     Non-Debug Version:  77.5K Code, 12.0K Data,  89.5K Total
   12904     Debug Version:     168.1K Code, 68.4K Data, 236.5K Total
   12905 
   12906 
   12907 2) iASL Compiler/Disassembler:
   12908 
   12909 Updated the disassembler to automatically insert an EndDependentFn() 
   12910 macro 
   12911 into the ASL stream if this macro is missing in the original AML code, 
   12912 simplifying compilation of the resulting ASL module.
   12913 
   12914 Fixed a problem in the disassembler where a disassembled ResourceSource 
   12915 string (within a large resource descriptor) was not surrounded by quotes 
   12916 and 
   12917 not followed by a comma, causing errors when the resulting ASL module was 
   12918 compiled. Also, escape sequences within a ResourceSource string are now 
   12919 handled correctly (especially "\\")
   12920 
   12921 ----------------------------------------
   12922 02 September 2005. Summary of changes for version 20050902:
   12923 
   12924 1) ACPI CA Core Subsystem:
   12925 
   12926 Fixed a problem with the internal Owner ID allocation and deallocation 
   12927 mechanisms for control method execution and recursive method invocation. 
   12928 This should eliminate the OWNER_ID_LIMIT exceptions and "Invalid OwnerId" 
   12929 messages seen on some systems. Recursive method invocation depth is 
   12930 currently limited to 255. (Alexey Starikovskiy)
   12931 
   12932 Completely eliminated all vestiges of support for the "module-level 
   12933 executable code" until this support is fully implemented and debugged. 
   12934 This 
   12935 should eliminate the NO_RETURN_VALUE exceptions seen during table load on 
   12936 some systems that invoke this support.
   12937 
   12938 Fixed a problem within the resource manager code where the transaction 
   12939 flags 
   12940 for a 64-bit address descriptor were handled incorrectly in the type-
   12941 specific flag byte.
   12942 
   12943 Consolidated duplicate code within the address descriptor resource 
   12944 manager 
   12945 code, reducing overall subsystem code size.
   12946 
   12947 Fixed a fault when using the AML debugger "disassemble" command to 
   12948 disassemble individual control methods.
   12949 
   12950 Removed references to the "release_current" directory within the Unix 
   12951 release package.
   12952 
   12953 Code and Data Size: The current and previous core subsystem library sizes 
   12954 are shown below. These are the code and data sizes for the acpica.lib 
   12955 produced by the Microsoft Visual C++ 6.0 compiler. These values do not 
   12956 include any ACPI driver or OSPM code. The debug version of the code 
   12957 includes 
   12958 the debug output trace mechanism and has a much larger code and data 
   12959 size. 
   12960 Note that these values will vary depending on the efficiency of the 
   12961 compiler 
   12962 and the compiler options used during generation.
   12963 
   12964   Previous Release:
   12965     Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
   12966     Debug Version:     170.0K Code, 69.9K Data, 239.9K Total
   12967   Current Release:
   12968     Non-Debug Version:  78.4K Code, 11.8K Data,  90.2K Total
   12969     Debug Version:     169.6K Code, 69.9K Data, 239.5K Total
   12970 
   12971 
   12972 2) iASL Compiler/Disassembler:
   12973 
   12974 Implemented an error check for illegal duplicate values in the interrupt 
   12975 and 
   12976 dma lists for the following ASL macros: Dma(), Irq(), IrqNoFlags(), and 
   12977 Interrupt().
   12978 
   12979 Implemented error checking for the Irq() and IrqNoFlags() macros to 
   12980 detect 
   12981 too many values in the interrupt list (16 max) and invalid values in the 
   12982 list (range 0 - 15)
   12983 
   12984 The maximum length string literal within an ASL file is now restricted to 
   12985 200 characters as per the ACPI specification.
   12986 
   12987 Fixed a fault when using the -ln option (generate namespace listing).
   12988 
   12989 Implemented an error check to determine if a DescriptorName within a 
   12990 resource descriptor has already been used within the current scope.
   12991 
   12992 ----------------------------------------
   12993 15 August 2005.  Summary of changes for version 20050815:
   12994  
   12995 1) ACPI CA Core Subsystem:
   12996  
   12997 Implemented a full bytewise compare to determine if a table load request 
   12998 is 
   12999 attempting to load a duplicate table. The compare is performed if the 
   13000 table 
   13001 signatures and table lengths match. This will allow different tables with 
   13002 the same OEM Table ID and revision to be loaded - probably against the 
   13003 ACPI 
   13004 specification, but discovered in the field nonetheless.
   13005  
   13006 Added the changes.txt logfile to each of the zipped release packages.
   13007  
   13008 Code and Data Size: Current and previous core subsystem library sizes are 
   13009 shown below. These are the code and data sizes for the acpica.lib 
   13010 produced 
   13011 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13012 any ACPI driver or OSPM code. The debug version of the code includes the 
   13013 debug output trace mechanism and has a much larger code and data size. 
   13014 Note 
   13015 that these values will vary depending on the efficiency of the compiler 
   13016 and 
   13017 the compiler options used during generation.
   13018  
   13019   Previous Release:
   13020     Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
   13021     Debug Version:     167.0K Code, 69.9K Data, 236.9K Total
   13022   Current Release:
   13023     Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
   13024     Debug Version:     170.0K Code, 69.9K Data, 239.9K Total
   13025  
   13026  
   13027 2) iASL Compiler/Disassembler:
   13028  
   13029 Fixed a problem where incorrect AML code could be generated for Package 
   13030 objects if optimization is disabled (via the -oa switch).
   13031  
   13032 Fixed a problem with where incorrect AML code is generated for variable-
   13033 length packages when the package length is not specified and the number 
   13034 of 
   13035 initializer values is greater than 255.
   13036  
   13037 
   13038 ----------------------------------------
   13039 29 July 2005.  Summary of changes for version 20050729:
   13040 
   13041 1) ACPI CA Core Subsystem:
   13042 
   13043 Implemented support to ignore an attempt to install/load a particular 
   13044 ACPI 
   13045 table more than once. Apparently there exists BIOS code that repeatedly 
   13046 attempts to load the same SSDT upon certain events. With assistance from 
   13047 Venkatesh Pallipadi.
   13048 
   13049 Restructured the main interface to the AML parser in order to correctly 
   13050 handle all exceptional conditions. This will prevent leakage of the 
   13051 OwnerId 
   13052 resource and should eliminate the AE_OWNER_ID_LIMIT exceptions seen on 
   13053 some 
   13054 machines. With assistance from Alexey Starikovskiy.
   13055 
   13056 Support for "module level code" has been disabled in this version due to 
   13057 a 
   13058 number of issues that have appeared on various machines. The support can 
   13059 be 
   13060 enabled by defining ACPI_ENABLE_MODULE_LEVEL_CODE during subsystem 
   13061 compilation. When the issues are fully resolved, the code will be enabled 
   13062 by 
   13063 default again.
   13064 
   13065 Modified the internal functions for debug print support to define the 
   13066 FunctionName parameter as a (const char *) for compatibility with 
   13067 compiler 
   13068 built-in macros such as __FUNCTION__, etc.
   13069 
   13070 Linted the entire ACPICA source tree for both 32-bit and 64-bit.
   13071 
   13072 Implemented support to display an object count summary for the AML 
   13073 Debugger 
   13074 commands Object and Methods.
   13075 
   13076 Code and Data Size: Current and previous core subsystem library sizes are 
   13077 shown below. These are the code and data sizes for the acpica.lib 
   13078 produced 
   13079 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13080 any ACPI driver or OSPM code. The debug version of the code includes the 
   13081 debug output trace mechanism and has a much larger code and data size. 
   13082 Note 
   13083 that these values will vary depending on the efficiency of the compiler 
   13084 and 
   13085 the compiler options used during generation.
   13086 
   13087   Previous Release:
   13088     Non-Debug Version:  78.6K Code, 11.6K Data,  90.2K Total
   13089     Debug Version:     170.0K Code, 69.7K Data, 239.7K Total
   13090   Current Release:
   13091     Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
   13092     Debug Version:     167.0K Code, 69.9K Data, 236.9K Total
   13093 
   13094 
   13095 2) iASL Compiler/Disassembler:
   13096 
   13097 Fixed a regression that appeared in the 20050708 version of the compiler 
   13098 where an error message was inadvertently emitted for invocations of the 
   13099 _OSI 
   13100 reserved control method.
   13101 
   13102 ----------------------------------------
   13103 08 July 2005.  Summary of changes for version 20050708:
   13104 
   13105 1) ACPI CA Core Subsystem:
   13106 
   13107 The use of the CPU stack in the debug version of the subsystem has been 
   13108 considerably reduced. Previously, a debug structure was declared in every 
   13109 function that used the debug macros. This structure has been removed in 
   13110 favor of declaring the individual elements as parameters to the debug 
   13111 functions. This reduces the cumulative stack use during nested execution 
   13112 of 
   13113 ACPI function calls at the cost of a small increase in the code size of 
   13114 the 
   13115 debug version of the subsystem. With assistance from Alexey Starikovskiy 
   13116 and 
   13117 Len Brown.
   13118 
   13119 Added the ACPI_GET_FUNCTION_NAME macro to enable the compiler-dependent 
   13120 headers to define a macro that will return the current function name at 
   13121 runtime (such as __FUNCTION__ or _func_, etc.) The function name is used 
   13122 by 
   13123 the debug trace output. If ACPI_GET_FUNCTION_NAME is not defined in the 
   13124 compiler-dependent header, the function name is saved on the CPU stack 
   13125 (one 
   13126 pointer per function.) This mechanism is used because apparently there 
   13127 exists no standard ANSI-C defined macro that that returns the function 
   13128 name.
   13129 
   13130 Redesigned and reimplemented the "Owner ID" mechanism used to track 
   13131 namespace objects created/deleted by ACPI tables and control method 
   13132 execution. A bitmap is now used to allocate and free the IDs, thus 
   13133 solving 
   13134 the wraparound problem present in the previous implementation. The size 
   13135 of 
   13136 the namespace node descriptor was reduced by 2 bytes as a result (Alexey 
   13137 Starikovskiy).
   13138 
   13139 Removed the UINT32_BIT and UINT16_BIT types that were used for the 
   13140 bitfield 
   13141 flag definitions within the headers for the predefined ACPI tables. These 
   13142 have been replaced by UINT8_BIT in order to increase the code portability 
   13143 of 
   13144 the subsystem. If the use of UINT8 remains a problem, we may be forced to 
   13145 eliminate bitfields entirely because of a lack of portability.
   13146 
   13147 Enhanced the performance of the AcpiUtUpdateObjectReference procedure. 
   13148 This 
   13149 is a frequently used function and this improvement increases the 
   13150 performance 
   13151 of the entire subsystem (Alexey Starikovskiy).
   13152 
   13153 Fixed several possible memory leaks and the inverse - premature object 
   13154 deletion (Alexey Starikovskiy).
   13155 
   13156 Code and Data Size: Current and previous core subsystem library sizes are 
   13157 shown below. These are the code and data sizes for the acpica.lib 
   13158 produced 
   13159 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13160 any ACPI driver or OSPM code. The debug version of the code includes the 
   13161 debug output trace mechanism and has a much larger code and data size. 
   13162 Note 
   13163 that these values will vary depending on the efficiency of the compiler 
   13164 and 
   13165 the compiler options used during generation.
   13166 
   13167   Previous Release:
   13168     Non-Debug Version:  78.6K Code, 11.5K Data,  90.1K Total
   13169     Debug Version:     165.2K Code, 69.6K Data, 234.8K Total
   13170   Current Release:
   13171     Non-Debug Version:  78.6K Code, 11.6K Data,  90.2K Total
   13172     Debug Version:     170.0K Code, 69.7K Data, 239.7K Total
   13173 
   13174 ----------------------------------------
   13175 24 June 2005.  Summary of changes for version 20050624:
   13176 
   13177 1) ACPI CA Core Subsystem:
   13178 
   13179 Modified the new OSL cache interfaces to use ACPI_CACHE_T as the type for 
   13180 the host-defined cache object. This allows the OSL implementation to 
   13181 define 
   13182 and type this object in any manner desired, simplifying the OSL 
   13183 implementation. For example, ACPI_CACHE_T is defined as kmem_cache_t for 
   13184 Linux, and should be defined in the OS-specific header file for other 
   13185 operating systems as required.
   13186 
   13187 Changed the interface to AcpiOsAcquireObject to directly return the 
   13188 requested object as the function return (instead of ACPI_STATUS.) This 
   13189 change was made for performance reasons, since this is the purpose of the 
   13190 interface in the first place. AcpiOsAcquireObject is now similar to the 
   13191 AcpiOsAllocate interface.
   13192 
   13193 Implemented a new AML debugger command named Businfo. This command 
   13194 displays 
   13195 information about all devices that have an associate _PRT object. The 
   13196 _ADR, 
   13197 _HID, _UID, and _CID are displayed for these devices.
   13198 
   13199 Modified the initialization sequence in AcpiInitializeSubsystem to call 
   13200 the 
   13201 OSL interface AcpiOslInitialize first, before any local initialization. 
   13202 This 
   13203 change was required because the global initialization now calls OSL 
   13204 interfaces.
   13205 
   13206 Enhanced the Dump command to display the entire contents of Package 
   13207 objects 
   13208 (including all sub-objects and their values.) 
   13209 
   13210 Restructured the code base to split some files because of size and/or 
   13211 because the code logically belonged in a separate file. New files are 
   13212 listed 
   13213 below. All makefiles and project files included in the ACPI CA release 
   13214 have 
   13215 been updated.
   13216     utilities/utcache.c           /* Local cache interfaces */
   13217     utilities/utmutex.c           /* Local mutex support */
   13218     utilities/utstate.c           /* State object support */
   13219     interpreter/parser/psloop.c   /* Main AML parse loop */
   13220 
   13221 Code and Data Size: Current and previous core subsystem library sizes are 
   13222 shown below. These are the code and data sizes for the acpica.lib 
   13223 produced 
   13224 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13225 any ACPI driver or OSPM code. The debug version of the code includes the 
   13226 debug output trace mechanism and has a much larger code and data size. 
   13227 Note 
   13228 that these values will vary depending on the efficiency of the compiler 
   13229 and 
   13230 the compiler options used during generation.
   13231 
   13232   Previous Release:
   13233     Non-Debug Version:  78.3K Code, 11.6K Data,  89.9K Total
   13234     Debug Version:     164.0K Code, 69.1K Data, 233.1K Total
   13235   Current Release:
   13236     Non-Debug Version:  78.6K Code, 11.5K Data,  90.1K Total
   13237     Debug Version:     165.2K Code, 69.6K Data, 234.8K Total
   13238 
   13239 
   13240 2) iASL Compiler/Disassembler:
   13241 
   13242 Fixed a regression introduced in version 20050513 where the use of a 
   13243 Package 
   13244 object within a Case() statement caused a compile time exception. The 
   13245 original behavior has been restored (a Match() operator is emitted.)
   13246 
   13247 ----------------------------------------
   13248 17 June 2005.  Summary of changes for version 20050617:
   13249 
   13250 1) ACPI CA Core Subsystem:
   13251 
   13252 Moved the object cache operations into the OS interface layer (OSL) to 
   13253 allow 
   13254 the host OS to handle these operations if desired (for example, the Linux 
   13255 OSL will invoke the slab allocator). This support is optional; the 
   13256 compile 
   13257 time define ACPI_USE_LOCAL_CACHE may be used to utilize the original 
   13258 cache 
   13259 code in the ACPI CA core. The new OSL interfaces are shown below. See 
   13260 utalloc.c for an example implementation, and acpiosxf.h for the exact 
   13261 interface definitions. With assistance from Alexey Starikovskiy.
   13262     AcpiOsCreateCache
   13263     AcpiOsDeleteCache
   13264     AcpiOsPurgeCache
   13265     AcpiOsAcquireObject
   13266     AcpiOsReleaseObject
   13267 
   13268 Modified the interfaces to AcpiOsAcquireLock and AcpiOsReleaseLock to 
   13269 return 
   13270 and restore a flags parameter. This fits better with many OS lock models. 
   13271 Note: the current execution state (interrupt handler or not) is no longer 
   13272 passed to these interfaces. If necessary, the OSL must determine this 
   13273 state 
   13274 by itself, a simple and fast operation. With assistance from Alexey 
   13275 Starikovskiy.
   13276 
   13277 Fixed a problem in the ACPI table handling where a valid XSDT was assumed 
   13278 present if the revision of the RSDP was 2 or greater. According to the 
   13279 ACPI 
   13280 specification, the XSDT is optional in all cases, and the table manager 
   13281 therefore now checks for both an RSDP >=2 and a valid XSDT pointer. 
   13282 Otherwise, the RSDT pointer is used. Some ACPI 2.0 compliant BIOSs 
   13283 contain 
   13284 only the RSDT.
   13285 
   13286 Fixed an interpreter problem with the Mid() operator in the case of an 
   13287 input 
   13288 string where the resulting output string is of zero length. It now 
   13289 correctly 
   13290 returns a valid, null terminated string object instead of a string object 
   13291 with a null pointer.
   13292 
   13293 Fixed a problem with the control method argument handling to allow a 
   13294 store 
   13295 to an Arg object that already contains an object of type Device. The 
   13296 Device 
   13297 object is now correctly overwritten. Previously, an error was returned.
   13298 
   13299 
   13300 Enhanced the debugger Find command to emit object values in addition to 
   13301 the 
   13302 found object pathnames. The output format is the same as the dump 
   13303 namespace 
   13304 command.
   13305 
   13306 Enhanced the debugger Set command. It now has the ability to set the 
   13307 value 
   13308 of any Named integer object in the namespace (Previously, only method 
   13309 locals 
   13310 and args could be set.)
   13311 
   13312 Code and Data Size: Current and previous core subsystem library sizes are 
   13313 shown below. These are the code and data sizes for the acpica.lib 
   13314 produced 
   13315 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13316 any ACPI driver or OSPM code. The debug version of the code includes the 
   13317 debug output trace mechanism and has a much larger code and data size. 
   13318 Note 
   13319 that these values will vary depending on the efficiency of the compiler 
   13320 and 
   13321 the compiler options used during generation.
   13322 
   13323   Previous Release:
   13324     Non-Debug Version:  78.1K Code, 11.6K Data,  89.7K Total
   13325     Debug Version:     164.0K Code, 69.3K Data, 233.3K Total
   13326   Current Release:
   13327     Non-Debug Version:  78.3K Code, 11.6K Data,  89.9K Total
   13328     Debug Version:     164.0K Code, 69.1K Data, 233.1K Total
   13329 
   13330 
   13331 2) iASL Compiler/Disassembler:
   13332 
   13333 Fixed a regression in the disassembler where if/else/while constructs 
   13334 were 
   13335 output incorrectly. This problem was introduced in the previous release 
   13336 (20050526). This problem also affected the single-step disassembly in the 
   13337 debugger.
   13338 
   13339 Fixed a problem where compiling the reserved _OSI method would randomly 
   13340 (but 
   13341 rarely) produce compile errors.
   13342 
   13343 Enhanced the disassembler to emit compilable code in the face of 
   13344 incorrect 
   13345 AML resource descriptors. If the optional ResourceSourceIndex is present, 
   13346 but the ResourceSource is not, do not emit the ResourceSourceIndex in the 
   13347 disassembly. Otherwise, the resulting code cannot be compiled without 
   13348 errors.
   13349 
   13350 ----------------------------------------
   13351 26 May 2005.  Summary of changes for version 20050526:
   13352 
   13353 1) ACPI CA Core Subsystem:
   13354 
   13355 Implemented support to execute Type 1 and Type 2 AML opcodes appearing at 
   13356 the module level (not within a control method.) These opcodes are 
   13357 executed 
   13358 exactly once at the time the table is loaded. This type of code was legal 
   13359 up 
   13360 until the release of ACPI 2.0B (2002) and is now supported within ACPI CA 
   13361 in 
   13362 order to provide backwards compatibility with earlier BIOS 
   13363 implementations. 
   13364 This eliminates the "Encountered executable code at module level" warning 
   13365 that was previously generated upon detection of such code.
   13366 
   13367 Fixed a problem in the interpreter where an AE_NOT_FOUND exception could 
   13368 inadvertently be generated during the lookup of namespace objects in the 
   13369 second pass parse of ACPI tables and control methods. It appears that 
   13370 this 
   13371 problem could occur during the resolution of forward references to 
   13372 namespace 
   13373 objects.
   13374 
   13375 Added the ACPI_MUTEX_DEBUG #ifdef to the AcpiUtReleaseMutex function, 
   13376 corresponding to the same #ifdef in the AcpiUtAcquireMutex function. This 
   13377 allows the deadlock detection debug code to be compiled out in the normal 
   13378 case, improving mutex performance (and overall subsystem performance) 
   13379 considerably.
   13380 
   13381 Implemented a handful of miscellaneous fixes for possible memory leaks on 
   13382 error conditions and error handling control paths. These fixes were 
   13383 suggested by FreeBSD and the Coverity Prevent source code analysis tool.
   13384 
   13385 Added a check for a null RSDT pointer in AcpiGetFirmwareTable 
   13386 (tbxfroot.c) 
   13387 to prevent a fault in this error case.
   13388 
   13389 Code and Data Size: Current and previous core subsystem library sizes are 
   13390 shown below. These are the code and data sizes for the acpica.lib 
   13391 produced 
   13392 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13393 any ACPI driver or OSPM code. The debug version of the code includes the 
   13394 debug output trace mechanism and has a much larger code and data size. 
   13395 Note 
   13396 that these values will vary depending on the efficiency of the compiler 
   13397 and 
   13398 the compiler options used during generation.
   13399 
   13400   Previous Release:
   13401     Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
   13402     Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
   13403   Current Release:
   13404     Non-Debug Version:  78.1K Code, 11.6K Data,  89.7K Total
   13405     Debug Version:     164.0K Code, 69.3K Data, 233.3K Total
   13406 
   13407 
   13408 2) iASL Compiler/Disassembler:
   13409 
   13410 Implemented support to allow Type 1 and Type 2 ASL operators to appear at 
   13411 the module level (not within a control method.) These operators will be 
   13412 executed once at the time the table is loaded. This type of code was 
   13413 legal 
   13414 up until the release of ACPI 2.0B (2002) and is now supported by the iASL 
   13415 compiler in order to provide backwards compatibility with earlier BIOS 
   13416 ASL 
   13417 code.
   13418 
   13419 The ACPI integer width (specified via the table revision ID or the -r 
   13420 override, 32 or 64 bits) is now used internally during compile-time 
   13421 constant 
   13422 folding to ensure that constants are truncated to 32 bits if necessary. 
   13423 Previously, the revision ID value was only emitted in the AML table 
   13424 header.
   13425 
   13426 An error message is now generated for the Mutex and Method operators if 
   13427 the 
   13428 SyncLevel parameter is outside the legal range of 0 through 15.
   13429 
   13430 Fixed a problem with the Method operator ParameterTypes list handling 
   13431 (ACPI 
   13432 3.0). Previously, more than 2 types or 2 arguments generated a syntax 
   13433 error.  
   13434 The actual underlying implementation of method argument typechecking is 
   13435 still under development, however.
   13436 
   13437 ----------------------------------------
   13438 13 May 2005.  Summary of changes for version 20050513:
   13439 
   13440 1) ACPI CA Core Subsystem:
   13441 
   13442 Implemented support for PCI Express root bridges -- added support for 
   13443 device 
   13444 PNP0A08 in the root bridge search within AcpiEvPciConfigRegionSetup.
   13445 
   13446 The interpreter now automatically truncates incoming 64-bit constants to 
   13447 32 
   13448 bits if currently executing out of a 32-bit ACPI table (Revision < 2). 
   13449 This 
   13450 also affects the iASL compiler constant folding. (Note: as per below, the 
   13451 iASL compiler no longer allows 64-bit constants within 32-bit tables.)
   13452 
   13453 Fixed a problem where string and buffer objects with "static" pointers 
   13454 (pointers to initialization data within an ACPI table) were not handled 
   13455 consistently. The internal object copy operation now always copies the 
   13456 data 
   13457 to a newly allocated buffer, regardless of whether the source object is 
   13458 static or not.
   13459 
   13460 Fixed a problem with the FromBCD operator where an implicit result 
   13461 conversion was improperly performed while storing the result to the 
   13462 target 
   13463 operand. Since this is an "explicit conversion" operator, the implicit 
   13464 conversion should never be performed on the output.
   13465 
   13466 Fixed a problem with the CopyObject operator where a copy to an existing 
   13467 named object did not always completely overwrite the existing object 
   13468 stored 
   13469 at name. Specifically, a buffer-to-buffer copy did not delete the 
   13470 existing 
   13471 buffer.
   13472 
   13473 Replaced "InterruptLevel" with "InterruptNumber" in all GPE interfaces 
   13474 and 
   13475 structs for consistency.
   13476 
   13477 Code and Data Size: Current and previous core subsystem library sizes are 
   13478 shown below. These are the code and data sizes for the acpica.lib 
   13479 produced 
   13480 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13481 any ACPI driver or OSPM code. The debug version of the code includes the 
   13482 debug output trace mechanism and has a much larger code and data size. 
   13483 Note 
   13484 that these values will vary depending on the efficiency of the compiler 
   13485 and 
   13486 the compiler options used during generation.
   13487 
   13488   Previous Release:
   13489     Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
   13490     Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
   13491   Current Release: (Same sizes)
   13492     Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
   13493     Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
   13494 
   13495 
   13496 2) iASL Compiler/Disassembler:
   13497 
   13498 The compiler now emits a warning if an attempt is made to generate a 64-
   13499 bit 
   13500 integer constant from within a 32-bit ACPI table (Revision < 2). The 
   13501 integer 
   13502 is truncated to 32 bits.
   13503 
   13504 Fixed a problem with large package objects: if the static length of the 
   13505 package is greater than 255, the "variable length package" opcode is 
   13506 emitted. Previously, this caused an error. This requires an update to the 
   13507 ACPI spec, since it currently (incorrectly) states that packages larger 
   13508 than 
   13509 255 elements are not allowed.
   13510 
   13511 The disassembler now correctly handles variable length packages and 
   13512 packages 
   13513 larger than 255 elements.
   13514 
   13515 ----------------------------------------
   13516 08 April 2005.  Summary of changes for version 20050408:
   13517 
   13518 1) ACPI CA Core Subsystem:
   13519 
   13520 Fixed three cases in the interpreter where an "index" argument to an ASL 
   13521 function was still (internally) 32 bits instead of the required 64 bits. 
   13522 This was the Index argument to the Index, Mid, and Match operators.
   13523 
   13524 The "strupr" function is now permanently local (AcpiUtStrupr), since this 
   13525 is 
   13526 not a POSIX-defined function and not present in most kernel-level C 
   13527 libraries. All references to the C library strupr function have been 
   13528 removed 
   13529 from the headers.
   13530 
   13531 Completed the deployment of static functions/prototypes. All prototypes 
   13532 with 
   13533 the static attribute have been moved from the headers to the owning C 
   13534 file.
   13535 
   13536 Implemented an extract option (-e) for the AcpiBin utility (AML binary 
   13537 utility). This option allows the utility to extract individual ACPI 
   13538 tables 
   13539 from the output of AcpiDmp. It provides the same functionality of the 
   13540 acpixtract.pl perl script without the worry of setting the correct perl 
   13541 options. AcpiBin runs on Windows and has not yet been generated/validated 
   13542 in 
   13543 the Linux/Unix environment (but should be soon).
   13544  
   13545 Updated and fixed the table dump option for AcpiBin (-d). This option 
   13546 converts a single ACPI table to a hex/ascii file, similar to the output 
   13547 of 
   13548 AcpiDmp.
   13549 
   13550 Code and Data Size: Current and previous core subsystem library sizes are 
   13551 shown below. These are the code and data sizes for the acpica.lib 
   13552 produced 
   13553 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13554 any ACPI driver or OSPM code. The debug version of the code includes the 
   13555 debug output trace mechanism and has a much larger code and data size. 
   13556 Note 
   13557 that these values will vary depending on the efficiency of the compiler 
   13558 and 
   13559 the compiler options used during generation.
   13560 
   13561   Previous Release:
   13562     Non-Debug Version:  78.0K Code, 11.6K Data,  89.6K Total
   13563     Debug Version:     163.5K Code, 69.3K Data, 232.8K Total
   13564   Current Release:
   13565     Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
   13566     Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
   13567 
   13568 
   13569 2) iASL Compiler/Disassembler:
   13570 
   13571 Disassembler fix: Added a check to ensure that the table length found in 
   13572 the 
   13573 ACPI table header within the input file is not longer than the actual 
   13574 input 
   13575 file size. This indicates some kind of file or table corruption.
   13576 
   13577 ----------------------------------------
   13578 29 March 2005.  Summary of changes for version 20050329:
   13579 
   13580 1) ACPI CA Core Subsystem:
   13581 
   13582 An error is now generated if an attempt is made to create a Buffer Field 
   13583 of 
   13584 length zero (A CreateField with a length operand of zero.)
   13585 
   13586 The interpreter now issues a warning whenever executable code at the 
   13587 module 
   13588 level is detected during ACPI table load. This will give some idea of the 
   13589 prevalence of this type of code.
   13590 
   13591 Implemented support for references to named objects (other than control 
   13592 methods) within package objects.
   13593 
   13594 Enhanced package object output for the debug object. Package objects are 
   13595 now 
   13596 completely dumped, showing all elements.
   13597 
   13598 Enhanced miscellaneous object output for the debug object. Any object can 
   13599 now be written to the debug object (for example, a device object can be 
   13600 written, and the type of the object will be displayed.)
   13601 
   13602 The "static" qualifier has been added to all local functions across both 
   13603 the 
   13604 core subsystem and the iASL compiler.
   13605 
   13606 The number of "long" lines (> 80 chars) within the source has been 
   13607 significantly reduced, by about 1/3.
   13608 
   13609 Cleaned up all header files to ensure that all CA/iASL functions are 
   13610 prototyped (even static functions) and the formatting is consistent.
   13611 
   13612 Two new header files have been added, acopcode.h and acnames.h.
   13613 
   13614 Removed several obsolete functions that were no longer used.
   13615 
   13616 Code and Data Size: Current and previous core subsystem library sizes are 
   13617 shown below. These are the code and data sizes for the acpica.lib 
   13618 produced 
   13619 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13620 any ACPI driver or OSPM code. The debug version of the code includes the 
   13621 debug output trace mechanism and has a much larger code and data size. 
   13622 Note 
   13623 that these values will vary depending on the efficiency of the compiler 
   13624 and 
   13625 the compiler options used during generation.
   13626 
   13627   Previous Release:
   13628     Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
   13629     Debug Version:     165.4K Code, 69.7K Data, 236.1K Total
   13630   Current Release:
   13631     Non-Debug Version:  78.0K Code, 11.6K Data,  89.6K Total
   13632     Debug Version:     163.5K Code, 69.3K Data, 232.8K Total
   13633 
   13634 
   13635 
   13636 2) iASL Compiler/Disassembler:
   13637 
   13638 Fixed a problem with the resource descriptor generation/support. For the 
   13639 ResourceSourceIndex and the ResourceSource fields, both must be present, 
   13640 or 
   13641 both must be not present - can't have one without the other.
   13642 
   13643 The compiler now returns non-zero from the main procedure if any errors 
   13644 have 
   13645 occurred during the compilation.
   13646 
   13647 
   13648 ----------------------------------------
   13649 09 March 2005.  Summary of changes for version 20050309:
   13650 
   13651 1) ACPI CA Core Subsystem:
   13652 
   13653 The string-to-buffer implicit conversion code has been modified again 
   13654 after 
   13655 a change to the ACPI specification.  In order to match the behavior of 
   13656 the 
   13657 other major ACPI implementation, the target buffer is no longer truncated 
   13658 if 
   13659 the source string is smaller than an existing target buffer. This change 
   13660 requires an update to the ACPI spec, and should eliminate the recent 
   13661 AE_AML_BUFFER_LIMIT issues.
   13662 
   13663 The "implicit return" support was rewritten to a new algorithm that 
   13664 solves 
   13665 the general case. Rather than attempt to determine when a method is about 
   13666 to 
   13667 exit, the result of every ASL operator is saved momentarily until the 
   13668 very 
   13669 next ASL operator is executed. Therefore, no matter how the method exits, 
   13670 there will always be a saved implicit return value. This feature is only 
   13671 enabled with the AcpiGbl_EnableInterpreterSlack flag, and should 
   13672 eliminate 
   13673 AE_AML_NO_RETURN_VALUE errors when enabled.
   13674 
   13675 Implemented implicit conversion support for the predicate (operand) of 
   13676 the 
   13677 If, Else, and While operators. String and Buffer arguments are 
   13678 automatically 
   13679 converted to Integers.
   13680 
   13681 Changed the string-to-integer conversion behavior to match the new ACPI 
   13682 errata: "If no integer object exists, a new integer is created. The ASCII 
   13683 string is interpreted as a hexadecimal constant. Each string character is 
   13684 interpreted as a hexadecimal value ('0'-'9', 'A'-'F', 'a', 'f'), starting 
   13685 with the first character as the most significant digit, and ending with 
   13686 the 
   13687 first non-hexadecimal character or end-of-string." This means that the 
   13688 first 
   13689 non-hex character terminates the conversion and this is the code that was 
   13690 changed.
   13691 
   13692 Fixed a problem where the ObjectType operator would fail (fault) when 
   13693 used 
   13694 on an Index of a Package which pointed to a null package element. The 
   13695 operator now properly returns zero (Uninitialized) in this case.
   13696 
   13697 Fixed a problem where the While operator used excessive memory by not 
   13698 properly popping the result stack during execution. There was no memory 
   13699 leak 
   13700 after execution, however. (Code provided by Valery Podrezov.)
   13701 
   13702 Fixed a problem where references to control methods within Package 
   13703 objects 
   13704 caused the method to be invoked, instead of producing a reference object 
   13705 pointing to the method.
   13706 
   13707 Restructured and simplified the pswalk.c module (AcpiPsDeleteParseTree) 
   13708 to 
   13709 improve performance and reduce code size. (Code provided by Alexey 
   13710 Starikovskiy.)
   13711 
   13712 Code and Data Size: Current and previous core subsystem library sizes are 
   13713 shown below. These are the code and data sizes for the acpica.lib 
   13714 produced 
   13715 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13716 any ACPI driver or OSPM code. The debug version of the code includes the 
   13717 debug output trace mechanism and has a much larger code and data size. 
   13718 Note 
   13719 that these values will vary depending on the efficiency of the compiler 
   13720 and 
   13721 the compiler options used during generation.
   13722 
   13723   Previous Release:
   13724     Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
   13725     Debug Version:     165.4K Code, 69.6K Data, 236.0K Total
   13726   Current Release:
   13727     Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
   13728     Debug Version:     165.4K Code, 69.7K Data, 236.1K Total
   13729 
   13730 
   13731 2) iASL Compiler/Disassembler:
   13732 
   13733 Fixed a problem with the Return operator with no arguments. Since the AML 
   13734 grammar for the byte encoding requires an operand for the Return opcode, 
   13735 the 
   13736 compiler now emits a Return(Zero) for this case.  An ACPI specification 
   13737 update has been written for this case.
   13738 
   13739 For tables other than the DSDT, namepath optimization is automatically 
   13740 disabled. This is because SSDTs can be loaded anywhere in the namespace, 
   13741 the 
   13742 compiler has no knowledge of where, and thus cannot optimize namepaths.
   13743 
   13744 Added "ProcessorObj" to the ObjectTypeKeyword list. This object type was 
   13745 inadvertently omitted from the ACPI specification, and will require an 
   13746 update to the spec.
   13747 
   13748 The source file scan for ASCII characters is now optional (-a). This 
   13749 change 
   13750 was made because some vendors place non-ascii characters within comments. 
   13751 However, the scan is simply a brute-force byte compare to ensure all 
   13752 characters in the file are in the range 0x00 to 0x7F.
   13753 
   13754 Fixed a problem with the CondRefOf operator where the compiler was 
   13755 inappropriately checking for the existence of the target. Since the point 
   13756 of 
   13757 the operator is to check for the existence of the target at run-time, the 
   13758 compiler no longer checks for the target existence.
   13759 
   13760 Fixed a problem where errors generated from the internal AML interpreter 
   13761 during constant folding were not handled properly, causing a fault.
   13762 
   13763 Fixed a problem with overly aggressive range checking for the Stall 
   13764 operator. The valid range (max 255) is now only checked if the operand is 
   13765 of 
   13766 type Integer. All other operand types cannot be statically checked.
   13767 
   13768 Fixed a problem where control method references within the RefOf, 
   13769 DeRefOf, 
   13770 and ObjectType operators were not treated properly. They are now treated 
   13771 as 
   13772 actual references, not method invocations.
   13773 
   13774 Fixed and enhanced the "list namespace" option (-ln). This option was 
   13775 broken 
   13776 a number of releases ago.
   13777 
   13778 Improved error handling for the Field, IndexField, and BankField 
   13779 operators. 
   13780 The compiler now cleanly reports and recovers from errors in the field 
   13781 component (FieldUnit) list.
   13782 
   13783 Fixed a disassembler problem where the optional ResourceDescriptor fields 
   13784 TRS and TTP were not always handled correctly.
   13785 
   13786 Disassembler - Comments in output now use "//" instead of "/*"
   13787 
   13788 ----------------------------------------
   13789 28 February 2005.  Summary of changes for version 20050228:
   13790 
   13791 1) ACPI CA Core Subsystem:
   13792 
   13793 Fixed a problem where the result of an Index() operator (an object 
   13794 reference) must increment the reference count on the target object for 
   13795 the 
   13796 life of the object reference.
   13797 
   13798 Implemented AML Interpreter and Debugger support for the new ACPI 3.0 
   13799 Extended Address (IO, Memory, Space), QwordSpace, DwordSpace, and 
   13800 WordSpace 
   13801 resource descriptors.
   13802 
   13803 Implemented support in the _OSI method for the ACPI 3.0 "Extended Address 
   13804 Space Descriptor" string, indicating interpreter support for the 
   13805 descriptors 
   13806 above.
   13807 
   13808 Implemented header support for the new ACPI 3.0 FADT flag bits.
   13809 
   13810 Implemented header support for the new ACPI 3.0 PCI Express bits for the 
   13811 PM1 
   13812 status/enable registers.
   13813 
   13814 Updated header support for the MADT processor local Apic struct and MADT 
   13815 platform interrupt source struct for new ACPI 3.0 fields.
   13816 
   13817 Implemented header support for the SRAT and SLIT ACPI tables.
   13818 
   13819 Implemented the -s switch in AcpiExec to enable the "InterpreterSlack" 
   13820 flag 
   13821 at runtime.
   13822 
   13823 Code and Data Size: Current and previous core subsystem library sizes are 
   13824 shown below. These are the code and data sizes for the acpica.lib 
   13825 produced 
   13826 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13827 any ACPI driver or OSPM code. The debug version of the code includes the 
   13828 debug output trace mechanism and has a much larger code and data size. 
   13829 Note 
   13830 that these values will vary depending on the efficiency of the compiler 
   13831 and 
   13832 the compiler options used during generation.
   13833 
   13834   Previous Release:
   13835     Non-Debug Version:  78.2K Code, 11.5K Data,  89.7K Total
   13836     Debug Version:     164.9K Code, 69.2K Data, 234.1K Total
   13837   Current Release:
   13838     Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
   13839     Debug Version:     165.4K Code, 69.6K Data, 236.0K Total
   13840 
   13841 
   13842 2) iASL Compiler/Disassembler:
   13843 
   13844 Fixed a problem with the internal 64-bit String-to-integer conversion 
   13845 with 
   13846 strings less than two characters long.
   13847 
   13848 Fixed a problem with constant folding where the result of the Index() 
   13849 operator can not be considered a constant. This means that Index() cannot 
   13850 be 
   13851 a type3 opcode and this will require an update to the ACPI specification.
   13852 
   13853 Disassembler: Implemented support for the TTP, MTP, and TRS resource 
   13854 descriptor fields. These fields were inadvertently ignored and not output 
   13855 in 
   13856 the disassembly of the resource descriptor.
   13857 
   13858 
   13859  ----------------------------------------
   13860 11 February 2005.  Summary of changes for version 20050211:
   13861 
   13862 1) ACPI CA Core Subsystem:
   13863 
   13864 Implemented ACPI 3.0 support for implicit conversion within the Match() 
   13865 operator. MatchObjects can now be of type integer, buffer, or string 
   13866 instead 
   13867 of just type integer.  Package elements are implicitly converted to the 
   13868 type 
   13869 of the MatchObject. This change aligns the behavior of Match() with the 
   13870 behavior of the other logical operators (LLess(), etc.) It also requires 
   13871 an 
   13872 errata change to the ACPI specification as this support was intended for 
   13873 ACPI 3.0, but was inadvertently omitted.
   13874 
   13875 Fixed a problem with the internal implicit "to buffer" conversion. 
   13876 Strings 
   13877 that are converted to buffers will cause buffer truncation if the string 
   13878 is 
   13879 smaller than the target buffer. Integers that are converted to buffers 
   13880 will 
   13881 not cause buffer truncation, only zero extension (both as per the ACPI 
   13882 spec.) The problem was introduced when code was added to truncate the 
   13883 buffer, but this should not be performed in all cases, only the string 
   13884 case.
   13885 
   13886 Fixed a problem with the Buffer and Package operators where the 
   13887 interpreter 
   13888 would get confused if two such operators were used as operands to an ASL 
   13889 operator (such as LLess(Buffer(1){0},Buffer(1){1}). The internal result 
   13890 stack was not being popped after the execution of these operators, 
   13891 resulting 
   13892 in an AE_NO_RETURN_VALUE exception.
   13893 
   13894 Fixed a problem with constructs of the form Store(Index(...),...). The 
   13895 reference object returned from Index was inadvertently resolved to an 
   13896 actual 
   13897 value. This problem was introduced in version 20050114 when the behavior 
   13898 of 
   13899 Store() was modified to restrict the object types that can be used as the 
   13900 source operand (to match the ACPI specification.)
   13901 
   13902 Reduced excessive stack use within the AcpiGetObjectInfo procedure.
   13903 
   13904 Added a fix to aclinux.h to allow generation of AcpiExec on Linux.
   13905 
   13906 Updated the AcpiSrc utility to add the FADT_DESCRIPTOR_REV2_MINUS struct.
   13907 
   13908 Code and Data Size: Current and previous core subsystem library sizes are 
   13909 shown below. These are the code and data sizes for the acpica.lib 
   13910 produced 
   13911 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13912 any ACPI driver or OSPM code. The debug version of the code includes the 
   13913 debug output trace mechanism and has a much larger code and data size. 
   13914 Note 
   13915 that these values will vary depending on the efficiency of the compiler 
   13916 and 
   13917 the compiler options used during generation.
   13918 
   13919   Previous Release:
   13920     Non-Debug Version:  78.1K Code, 11.5K Data,  89.6K Total
   13921     Debug Version:     164.8K Code, 69.2K Data, 234.0K Total
   13922   Current Release:
   13923     Non-Debug Version:  78.2K Code, 11.5K Data,  89.7K Total
   13924     Debug Version:     164.9K Code, 69.2K Data, 234.1K Total
   13925 
   13926 
   13927 2) iASL Compiler/Disassembler:
   13928 
   13929 Fixed a code generation problem in the constant folding optimization code 
   13930 where incorrect code was generated if a constant was reduced to a buffer 
   13931 object (i.e., a reduced type 5 opcode.)
   13932 
   13933 Fixed a typechecking problem for the ToBuffer operator. Caused by an 
   13934 incorrect return type in the internal opcode information table.
   13935 
   13936 ----------------------------------------
   13937 25 January 2005.  Summary of changes for version 20050125:
   13938 
   13939 1) ACPI CA Core Subsystem:
   13940 
   13941 Fixed a recently introduced problem with the Global Lock where the 
   13942 underlying semaphore was not created.  This problem was introduced in 
   13943 version 20050114, and caused an AE_AML_NO_OPERAND exception during an 
   13944 Acquire() operation on _GL.
   13945 
   13946 The local object cache is now optional, and is disabled by default. Both 
   13947 AcpiExec and the iASL compiler enable the cache because they run in user 
   13948 mode and this enhances their performance. #define 
   13949 ACPI_ENABLE_OBJECT_CACHE 
   13950 to enable the local cache.
   13951 
   13952 Fixed an issue in the internal function AcpiUtEvaluateObject concerning 
   13953 the 
   13954 optional "implicit return" support where an error was returned if no 
   13955 return 
   13956 object was expected, but one was implicitly returned. AE_OK is now 
   13957 returned 
   13958 in this case and the implicitly returned object is deleted. 
   13959 AcpiUtEvaluateObject is only occasionally used, and only to execute 
   13960 reserved 
   13961 methods such as _STA and _INI where the return type is known up front.
   13962 
   13963 Fixed a few issues with the internal convert-to-integer code. It now 
   13964 returns 
   13965 an error if an attempt is made to convert a null string, a string of only 
   13966 blanks/tabs, or a zero-length buffer. This affects both implicit 
   13967 conversion 
   13968 and explicit conversion via the ToInteger() operator.
   13969 
   13970 The internal debug code in AcpiUtAcquireMutex has been commented out. It 
   13971 is 
   13972 not needed for normal operation and should increase the performance of 
   13973 the 
   13974 entire subsystem. The code remains in case it is needed for debug 
   13975 purposes 
   13976 again.
   13977 
   13978 The AcpiExec source and makefile are included in the Unix/Linux package 
   13979 for 
   13980 the first time.
   13981 
   13982 Code and Data Size: Current and previous core subsystem library sizes are 
   13983 shown below. These are the code and data sizes for the acpica.lib 
   13984 produced 
   13985 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13986 any ACPI driver or OSPM code. The debug version of the code includes the 
   13987 debug output trace mechanism and has a much larger code and data size. 
   13988 Note 
   13989 that these values will vary depending on the efficiency of the compiler 
   13990 and 
   13991 the compiler options used during generation.
   13992 
   13993   Previous Release:
   13994     Non-Debug Version:  78.4K Code,  11.5K Data,   89.9K Total
   13995     Debug Version:     165.4K Code,  69.4K Data,  234.8K Total
   13996   Current Release:
   13997     Non-Debug Version:  78.1K Code,  11.5K Data,   89.6K Total
   13998     Debug Version:     164.8K Code,  69.2K Data,  234.0K Total
   13999 
   14000 2) iASL Compiler/Disassembler:
   14001 
   14002 Switch/Case support: A warning is now issued if the type of the Switch 
   14003 value 
   14004 cannot be determined at compile time. For example, Switch(Arg0) will 
   14005 generate the warning, and the type is assumed to be an integer. As per 
   14006 the 
   14007 ACPI spec, use a construct such as Switch(ToInteger(Arg0)) to eliminate 
   14008 the 
   14009 warning.
   14010 
   14011 Switch/Case support: Implemented support for buffer and string objects as 
   14012 the switch value.  This is an ACPI 3.0 feature, now that LEqual supports 
   14013 buffers and strings.
   14014 
   14015 Switch/Case support: The emitted code for the LEqual() comparisons now 
   14016 uses 
   14017 the switch value as the first operand, not the second. The case value is 
   14018 now 
   14019 the second operand, and this allows the case value to be implicitly 
   14020 converted to the type of the switch value, not the other way around.
   14021 
   14022 Switch/Case support: Temporary variables are now emitted immediately 
   14023 within 
   14024 the control method, not at the global level. This means that there are 
   14025 now 
   14026 36 temps available per-method, not 36 temps per-module as was the case 
   14027 with 
   14028 the earlier implementation (_T_0 through _T_9 and _T_A through _T_Z.)
   14029 
   14030 ----------------------------------------
   14031 14 January 2005.  Summary of changes for version 20050114:
   14032 
   14033 Added 2005 copyright to all module headers.  This affects every module in 
   14034 the core subsystem, iASL compiler, and the utilities.
   14035 
   14036 1) ACPI CA Core Subsystem:
   14037 
   14038 Fixed an issue with the String-to-Buffer conversion code where the string 
   14039 null terminator was not included in the buffer after conversion, but 
   14040 there 
   14041 is existing ASL that assumes the string null terminator is included. This 
   14042 is 
   14043 the root of the ACPI_AML_BUFFER_LIMIT regression. This problem was 
   14044 introduced in the previous version when the code was updated to correctly 
   14045 set the converted buffer size as per the ACPI specification. The ACPI 
   14046 spec 
   14047 is ambiguous and will be updated to specify that the null terminator must 
   14048 be 
   14049 included in the converted buffer. This also affects the ToBuffer() ASL 
   14050 operator.
   14051 
   14052 Fixed a problem with the Mid() ASL/AML operator where it did not work 
   14053 correctly on Buffer objects. Newly created sub-buffers were not being 
   14054 marked 
   14055 as initialized.
   14056 
   14057 
   14058 Fixed a problem in AcpiTbFindTable where incorrect string compares were 
   14059 performed on the OemId and OemTableId table header fields.  These fields 
   14060 are 
   14061 not null terminated, so strncmp is now used instead of strcmp.
   14062 
   14063 Implemented a restriction on the Store() ASL/AML operator to align the 
   14064 behavior with the ACPI specification.  Previously, any object could be 
   14065 used 
   14066 as the source operand.  Now, the only objects that may be used are 
   14067 Integers, 
   14068 Buffers, Strings, Packages, Object References, and DDB Handles.  If 
   14069 necessary, the original behavior can be restored by enabling the 
   14070 EnableInterpreterSlack flag.
   14071 
   14072 Enhanced the optional "implicit return" support to allow an implicit 
   14073 return 
   14074 value from methods that are invoked externally via the AcpiEvaluateObject 
   14075 interface.  This enables implicit returns from the _STA and _INI methods, 
   14076 for example.
   14077 
   14078 Changed the Revision() ASL/AML operator to return the current version of 
   14079 the 
   14080 AML interpreter, in the YYYYMMDD format. Previously, it incorrectly 
   14081 returned 
   14082 the supported ACPI version (This is the function of the _REV method).
   14083 
   14084 Updated the _REV predefined method to return the currently supported 
   14085 version 
   14086 of ACPI, now 3.
   14087 
   14088 Implemented batch mode option for the AcpiExec utility (-b).
   14089 
   14090 Code and Data Size: Current and previous core subsystem library sizes are 
   14091 shown below. These are the code and data sizes for the acpica.lib 
   14092 produced 
   14093 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   14094 any ACPI driver or OSPM code. The debug version of the code includes the 
   14095 debug output trace mechanism and has a much larger code and data size. 
   14096 Note 
   14097 that these values will vary depending on the efficiency of the compiler 
   14098 and 
   14099 the compiler options used during generation.
   14100 
   14101   Previous Release:
   14102     Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
   14103     Debug Version:     165.3K Code,  69.4K Data,  234.7K Total
   14104   Current Release:
   14105     Non-Debug Version:  78.4K Code,  11.5K Data,   89.9K Total
   14106     Debug Version:     165.4K Code,  69.4K Data,  234.8K Total
   14107 
   14108 ----------------------------------------
   14109 10 December 2004.  Summary of changes for version 20041210:
   14110 
   14111 ACPI 3.0 support is nearing completion in both the iASL compiler and the 
   14112 ACPI CA core subsystem.
   14113 
   14114 1) ACPI CA Core Subsystem:
   14115 
   14116 Fixed a problem in the ToDecimalString operator where the resulting 
   14117 string 
   14118 length was incorrectly calculated. The length is now calculated exactly, 
   14119 eliminating incorrect AE_STRING_LIMIT exceptions.
   14120 
   14121 Fixed a problem in the ToHexString operator to allow a maximum 200 
   14122 character 
   14123 string to be produced.
   14124 
   14125 Fixed a problem in the internal string-to-buffer and buffer-to-buffer 
   14126 copy 
   14127 routine where the length of the resulting buffer was not truncated to the 
   14128 new size (if the target buffer already existed).
   14129 
   14130 Code and Data Size: Current and previous core subsystem library sizes are 
   14131 shown below. These are the code and data sizes for the acpica.lib 
   14132 produced 
   14133 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   14134 any ACPI driver or OSPM code. The debug version of the code includes the 
   14135 debug output trace mechanism and has a much larger code and data size. 
   14136 Note 
   14137 that these values will vary depending on the efficiency of the compiler 
   14138 and 
   14139 the compiler options used during generation.
   14140 
   14141   Previous Release:
   14142     Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
   14143     Debug Version:     164.7K Code,  68.5K Data,  233.2K Total
   14144   Current Release:
   14145     Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
   14146     Debug Version:     165.3K Code,  69.4K Data,  234.7K Total
   14147 
   14148 
   14149 2) iASL Compiler/Disassembler:
   14150 
   14151 Implemented the new ACPI 3.0 resource template macros - DWordSpace, 
   14152 ExtendedIO, ExtendedMemory, ExtendedSpace, QWordSpace, and WordSpace. 
   14153 Includes support in the disassembler.
   14154 
   14155 Implemented support for the new (ACPI 3.0) parameter to the Register 
   14156 macro, 
   14157 AccessSize.
   14158 
   14159 Fixed a problem where the _HE resource name for the Interrupt macro was 
   14160 referencing bit 0 instead of bit 1.
   14161 
   14162 Implemented check for maximum 255 interrupts in the Interrupt macro.
   14163 
   14164 Fixed a problem with the predefined resource descriptor names where 
   14165 incorrect AML code was generated if the offset within the resource buffer 
   14166 was 0 or 1.  The optimizer shortened the AML code to a single byte opcode 
   14167 but did not update the surrounding package lengths.
   14168 
   14169 Changes to the Dma macro:  All channels within the channel list must be 
   14170 in 
   14171 the range 0-7.  Maximum 8 channels can be specified. BusMaster operand is 
   14172 optional (default is BusMaster).
   14173 
   14174 Implemented check for maximum 7 data bytes for the VendorShort macro.
   14175 
   14176 The ReadWrite parameter is now optional for the Memory32 and similar 
   14177 macros.
   14178 
   14179 ----------------------------------------
   14180 03 December 2004.  Summary of changes for version 20041203:
   14181 
   14182 1) ACPI CA Core Subsystem:
   14183 
   14184 The low-level field insertion/extraction code (exfldio) has been 
   14185 completely 
   14186 rewritten to eliminate unnecessary complexity, bugs, and boundary 
   14187 conditions.
   14188 
   14189 Fixed a problem in the ToInteger, ToBuffer, ToHexString, and 
   14190 ToDecimalString 
   14191 operators where the input operand could be inadvertently deleted if no 
   14192 conversion was necessary (e.g., if the input to ToInteger was an Integer 
   14193 object.)
   14194 
   14195 Fixed a problem with the ToDecimalString and ToHexString where an 
   14196 incorrect 
   14197 exception code was returned if the resulting string would be > 200 chars.  
   14198 AE_STRING_LIMIT is now returned.
   14199 
   14200 Fixed a problem with the Concatenate operator where AE_OK was always 
   14201 returned, even if the operation failed.
   14202 
   14203 Fixed a problem in oswinxf (used by AcpiExec and iASL) to allow > 128 
   14204 semaphores to be allocated.
   14205 
   14206 Code and Data Size: Current and previous core subsystem library sizes are 
   14207 shown below. These are the code and data sizes for the acpica.lib 
   14208 produced 
   14209 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   14210 any ACPI driver or OSPM code. The debug version of the code includes the 
   14211 debug output trace mechanism and has a much larger code and data size. 
   14212 Note 
   14213 that these values will vary depending on the efficiency of the compiler 
   14214 and 
   14215 the compiler options used during generation.
   14216 
   14217   Previous Release:
   14218     Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
   14219     Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
   14220   Current Release:
   14221     Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
   14222     Debug Version:     164.7K Code,  68.5K Data,  233.2K Total
   14223 
   14224 
   14225 2) iASL Compiler/Disassembler:
   14226 
   14227 Fixed typechecking for the ObjectType and SizeOf operators.  Problem was 
   14228 recently introduced in 20041119.
   14229 
   14230 Fixed a problem with the ToUUID macro where the upper nybble of each 
   14231 buffer 
   14232 byte was inadvertently set to zero.
   14233 
   14234 ----------------------------------------
   14235 19 November 2004.  Summary of changes for version 20041119:
   14236 
   14237 1) ACPI CA Core Subsystem:
   14238 
   14239 Fixed a problem in the internal ConvertToInteger routine where new 
   14240 integers 
   14241 were not truncated to 32 bits for 32-bit ACPI tables. This routine 
   14242 converts 
   14243 buffers and strings to integers.
   14244 
   14245 Implemented support to store a value to an Index() on a String object. 
   14246 This 
   14247 is an ACPI 2.0 feature that had not yet been implemented.
   14248 
   14249 Implemented new behavior for storing objects to individual package 
   14250 elements 
   14251 (via the Index() operator). The previous behavior was to invoke the 
   14252 implicit 
   14253 conversion rules if an object was already present at the index.  The new 
   14254 behavior is to simply delete any existing object and directly store the 
   14255 new 
   14256 object. Although the ACPI specification seems unclear on this subject, 
   14257 other 
   14258 ACPI implementations behave in this manner.  (This is the root of the 
   14259 AE_BAD_HEX_CONSTANT issue.)
   14260 
   14261 Modified the RSDP memory scan mechanism to support the extended checksum 
   14262 for 
   14263 ACPI 2.0 (and above) RSDPs. Note that the search continues until a valid 
   14264 RSDP signature is found with a valid checksum.
   14265 
   14266 Code and Data Size: Current and previous core subsystem library sizes are 
   14267 shown below. These are the code and data sizes for the acpica.lib 
   14268 produced 
   14269 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   14270 any ACPI driver or OSPM code. The debug version of the code includes the 
   14271 debug output trace mechanism and has a much larger code and data size. 
   14272 Note 
   14273 that these values will vary depending on the efficiency of the compiler 
   14274 and 
   14275 the compiler options used during generation.
   14276 
   14277   Previous Release:
   14278     Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
   14279     Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
   14280   Current Release:
   14281     Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
   14282     Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
   14283 
   14284 
   14285 2) iASL Compiler/Disassembler:
   14286 
   14287 Fixed a missing semicolon in the aslcompiler.y file.
   14288 
   14289 ----------------------------------------
   14290 05 November 2004.  Summary of changes for version 20041105:
   14291 
   14292 1) ACPI CA Core Subsystem:
   14293 
   14294 Implemented support for FADT revision 2.  This was an interim table 
   14295 (between 
   14296 ACPI 1.0 and ACPI 2.0) that adds support for the FADT reset register.
   14297 
   14298 Implemented optional support to allow uninitialized LocalX and ArgX 
   14299 variables in a control method.  The variables are initialized to an 
   14300 Integer 
   14301 object with a value of zero.  This support is enabled by setting the 
   14302 AcpiGbl_EnableInterpreterSlack flag to TRUE.
   14303 
   14304 Implemented support for Integer objects for the SizeOf operator.  Either 
   14305 4 
   14306 or 8 is returned, depending on the current integer size (32-bit or 64-
   14307 bit, 
   14308 depending on the parent table revision).
   14309 
   14310 Fixed a problem in the implementation of the SizeOf and ObjectType 
   14311 operators 
   14312 where the operand was resolved to a value too early, causing incorrect 
   14313 return values for some objects.
   14314 
   14315 Fixed some possible memory leaks during exceptional conditions.
   14316 
   14317 Code and Data Size: Current and previous core subsystem library sizes are 
   14318 shown below. These are the code and data sizes for the acpica.lib 
   14319 produced 
   14320 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   14321 any ACPI driver or OSPM code. The debug version of the code includes the 
   14322 debug output trace mechanism and has a much larger code and data size. 
   14323 Note 
   14324 that these values will vary depending on the efficiency of the compiler 
   14325 and 
   14326 the compiler options used during generation.
   14327 
   14328   Previous Release:
   14329     Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
   14330     Debug Version:     164.8K Code,  68.6K Data,  233.4K Total
   14331   Current Release:
   14332     Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
   14333     Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
   14334 
   14335 
   14336 2) iASL Compiler/Disassembler:
   14337 
   14338 Implemented support for all ACPI 3.0 reserved names and methods.
   14339 
   14340 Implemented all ACPI 3.0 grammar elements in the front-end, including 
   14341 support for semicolons.
   14342 
   14343 Implemented the ACPI 3.0 Function() and ToUUID() macros
   14344 
   14345 Fixed a problem in the disassembler where a Scope() operator would not be 
   14346 emitted properly if the target of the scope was in another table.
   14347 
   14348 ----------------------------------------
   14349 15 October 2004.  Summary of changes for version 20041015:
   14350 
   14351 Note:  ACPI CA is currently undergoing an in-depth and complete formal 
   14352 evaluation to test/verify the following areas. Other suggestions are 
   14353 welcome. This will result in an increase in the frequency of releases and 
   14354 the number of bug fixes in the next few months.
   14355   - Functional tests for all ASL/AML operators
   14356   - All implicit/explicit type conversions
   14357   - Bit fields and operation regions
   14358   - 64-bit math support and 32-bit-only "truncated" math support
   14359   - Exceptional conditions, both compiler and interpreter
   14360   - Dynamic object deletion and memory leaks
   14361   - ACPI 3.0 support when implemented
   14362   - External interfaces to the ACPI subsystem
   14363 
   14364 
   14365 1) ACPI CA Core Subsystem:
   14366 
   14367 Fixed two alignment issues on 64-bit platforms - within debug statements 
   14368 in 
   14369 AcpiEvGpeDetect and AcpiEvCreateGpeBlock. Removed references to the 
   14370 Address 
   14371 field within the non-aligned ACPI generic address structure.
   14372 
   14373 Fixed a problem in the Increment and Decrement operators where incorrect 
   14374 operand resolution could result in the inadvertent modification of the 
   14375 original integer when the integer is passed into another method as an 
   14376 argument and the arg is then incremented/decremented.
   14377 
   14378 Fixed a problem in the FromBCD operator where the upper 32-bits of a 64-
   14379 bit 
   14380 BCD number were truncated during conversion.
   14381 
   14382 Fixed a problem in the ToDecimal operator where the length of the 
   14383 resulting 
   14384 string could be set incorrectly too long if the input operand was a 
   14385 Buffer 
   14386 object.
   14387 
   14388 Fixed a problem in the Logical operators (LLess, etc.) where a NULL byte 
   14389 (0) 
   14390 within a buffer would prematurely terminate a compare between buffer 
   14391 objects.
   14392 
   14393 Added a check for string overflow (>200 characters as per the ACPI 
   14394 specification) during the Concatenate operator with two string operands.
   14395 
   14396 Code and Data Size: Current and previous core subsystem library sizes are 
   14397 shown below. These are the code and data sizes for the acpica.lib 
   14398 produced 
   14399 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   14400 any ACPI driver or OSPM code. The debug version of the code includes the 
   14401 debug output trace mechanism and has a much larger code and data size. 
   14402 Note 
   14403 that these values will vary depending on the efficiency of the compiler 
   14404 and 
   14405 the compiler options used during generation.
   14406 
   14407   Previous Release:
   14408     Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
   14409     Debug Version:     164.6K Code,  68.5K Data,  233.1K Total
   14410   Current Release:
   14411     Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
   14412     Debug Version:     164.8K Code,  68.6K Data,  233.4K Total
   14413 
   14414 
   14415 
   14416 2) iASL Compiler/Disassembler:
   14417 
   14418 Allow the use of the ObjectType operator on uninitialized Locals and Args 
   14419 (returns 0 as per the ACPI specification).
   14420 
   14421 Fixed a problem where the compiler would fault if there was a syntax 
   14422 error 
   14423 in the FieldName of all of the various CreateXXXField operators.
   14424 
   14425 Disallow the use of lower case letters within the EISAID macro, as per 
   14426 the 
   14427 ACPI specification.  All EISAID strings must be of the form "UUUNNNN" 
   14428 Where 
   14429 U is an uppercase letter and N is a hex digit.
   14430 
   14431 
   14432 ----------------------------------------
   14433 06 October 2004.  Summary of changes for version 20041006:
   14434 
   14435 1) ACPI CA Core Subsystem:
   14436 
   14437 Implemented support for the ACPI 3.0 Timer operator. This ASL function 
   14438 implements a 64-bit timer with 100 nanosecond granularity.
   14439 
   14440 Defined a new OSL interface, AcpiOsGetTimer. This interface is used to 
   14441 implement the ACPI 3.0 Timer operator.  This allows the host OS to 
   14442 implement 
   14443 the timer with the best clock available. Also, it keeps the core 
   14444 subsystem 
   14445 out of the clock handling business, since the host OS (usually) performs 
   14446 this function.
   14447 
   14448 Fixed an alignment issue on 64-bit platforms. The HwLowLevelRead(Write) 
   14449 functions use a 64-bit address which is part of the packed ACPI Generic 
   14450 Address Structure. Since the structure is non-aligned, the alignment 
   14451 macros 
   14452 are now used to extract the address to a local variable before use.
   14453 
   14454 Fixed a problem where the ToInteger operator assumed all input strings 
   14455 were 
   14456 hexadecimal. The operator now handles both decimal strings and hex 
   14457 strings 
   14458 (prefixed with "0x").
   14459 
   14460 Fixed a problem where the string length in the string object created as a 
   14461 result of the internal ConvertToString procedure could be incorrect. This 
   14462 potentially affected all implicit conversions and also the 
   14463 ToDecimalString 
   14464 and ToHexString operators.
   14465 
   14466 Fixed two problems in the ToString operator. If the length parameter was 
   14467 zero, an incorrect string object was created and the value of the input 
   14468 length parameter was inadvertently changed from zero to Ones.
   14469 
   14470 Fixed a problem where the optional ResourceSource string in the 
   14471 ExtendedIRQ 
   14472 resource macro was ignored.
   14473 
   14474 Simplified the interfaces to the internal division functions, reducing 
   14475 code 
   14476 size and complexity.
   14477 
   14478 Code and Data Size: Current and previous core subsystem library sizes are 
   14479 shown below. These are the code and data sizes for the acpica.lib 
   14480 produced 
   14481 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   14482 any ACPI driver or OSPM code. The debug version of the code includes the 
   14483 debug output trace mechanism and has a much larger code and data size. 
   14484 Note 
   14485 that these values will vary depending on the efficiency of the compiler 
   14486 and 
   14487 the compiler options used during generation.
   14488 
   14489   Previous Release:
   14490     Non-Debug Version:  77.9K Code,  11.4K Data,   89.3K Total
   14491     Debug Version:     164.5K Code,  68.3K Data,  232.8K Total
   14492   Current Release:
   14493     Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
   14494     Debug Version:     164.6K Code,  68.5K Data,  233.1K Total
   14495 
   14496 
   14497 2) iASL Compiler/Disassembler:
   14498 
   14499 Implemented support for the ACPI 3.0 Timer operator.
   14500 
   14501 Fixed a problem where the Default() operator was inadvertently ignored in 
   14502 a 
   14503 Switch/Case block.  This was a problem in the translation of the Switch 
   14504 statement to If...Else pairs.
   14505 
   14506 Added support to allow a standalone Return operator, with no parentheses 
   14507 (or 
   14508 operands).
   14509 
   14510 Fixed a problem with code generation for the ElseIf operator where the 
   14511 translated Else...If parse tree was improperly constructed leading to the 
   14512 loss of some code.
   14513 
   14514 ----------------------------------------
   14515 22 September 2004.  Summary of changes for version 20040922:
   14516 
   14517 1) ACPI CA Core Subsystem:
   14518 
   14519 Fixed a problem with the implementation of the LNot() operator where 
   14520 "Ones" 
   14521 was not returned for the TRUE case. Changed the code to return Ones 
   14522 instead 
   14523 of (!Arg) which was usually 1. This change affects iASL constant folding 
   14524 for 
   14525 this operator also.
   14526 
   14527 Fixed a problem in AcpiUtInitializeBuffer where an existing buffer was 
   14528 not 
   14529 initialized properly -- Now zero the entire buffer in this case where the 
   14530 buffer already exists.
   14531 
   14532 Changed the interface to AcpiOsSleep from (UINT32 Seconds, UINT32 
   14533 Milliseconds) to simply (ACPI_INTEGER Milliseconds). This simplifies all 
   14534 related code considerably. This will require changes/updates to all OS 
   14535 interface layers (OSLs.)
   14536 
   14537 Implemented a new external interface, AcpiInstallExceptionHandler, to 
   14538 allow 
   14539 a system exception handler to be installed. This handler is invoked upon 
   14540 any 
   14541 run-time exception that occurs during control method execution.
   14542 
   14543 Added support for the DSDT in AcpiTbFindTable. This allows the 
   14544 DataTableRegion() operator to access the local copy of the DSDT.
   14545 
   14546 Code and Data Size: Current and previous core subsystem library sizes are 
   14547 shown below. These are the code and data sizes for the acpica.lib 
   14548 produced 
   14549 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   14550 any ACPI driver or OSPM code. The debug version of the code includes the 
   14551 debug output trace mechanism and has a much larger code and data size. 
   14552 Note 
   14553 that these values will vary depending on the efficiency of the compiler 
   14554 and 
   14555 the compiler options used during generation.
   14556 
   14557   Previous Release:
   14558     Non-Debug Version:  77.8K Code,  11.4K Data,   89.2K Total
   14559     Debug Version:     164.2K Code,  68.2K Data,  232.4K Total
   14560   Current Release:
   14561     Non-Debug Version:  77.9K Code,  11.4K Data,   89.3K Total
   14562     Debug Version:     164.5K Code,  68.3K Data,  232.8K Total
   14563 
   14564 
   14565 2) iASL Compiler/Disassembler:
   14566 
   14567 Fixed a problem with constant folding and the LNot operator. LNot was 
   14568 returning 1 in the TRUE case, not Ones as per the ACPI specification. 
   14569 This 
   14570 could result in the generation of an incorrect folded/reduced constant.
   14571 
   14572 End-Of-File is now allowed within a "//"-style comment.  A parse error no 
   14573 longer occurs if such a comment is at the very end of the input ASL 
   14574 source 
   14575 file.
   14576 
   14577 Implemented the "-r" option to override the Revision in the table header. 
   14578 The initial use of this option will be to simplify the evaluation of the 
   14579 AML 
   14580 interpreter by allowing a single ASL source module to be compiled for 
   14581 either 
   14582 32-bit or 64-bit integers.
   14583 
   14584 
   14585 ----------------------------------------
   14586 27 August 2004.  Summary of changes for version 20040827:
   14587 
   14588 1) ACPI CA Core Subsystem:
   14589 
   14590 - Implemented support for implicit object conversion in the non-numeric 
   14591 logical operators (LEqual, LGreater, LGreaterEqual, LLess, LLessEqual, 
   14592 and 
   14593 LNotEqual.)  Any combination of Integers/Strings/Buffers may now be used; 
   14594 the second operand is implicitly converted on the fly to match the type 
   14595 of 
   14596 the first operand.  For example:
   14597 
   14598     LEqual (Source1, Source2)
   14599 
   14600 Source1 and Source2 must each evaluate to an integer, a string, or a 
   14601 buffer. 
   14602 The data type of Source1 dictates the required type of Source2. Source2 
   14603 is 
   14604 implicitly converted if necessary to match the type of Source1.
   14605 
   14606 - Updated and corrected the behavior of the string conversion support.  
   14607 The 
   14608 rules concerning conversion of buffers to strings (according to the ACPI 
   14609 specification) are as follows:
   14610 
   14611 ToDecimalString - explicit byte-wise conversion of buffer to string of 
   14612 decimal values (0-255) separated by commas. ToHexString - explicit byte-
   14613 wise 
   14614 conversion of buffer to string of hex values (0-FF) separated by commas. 
   14615 ToString - explicit byte-wise conversion of buffer to string.  Byte-by-
   14616 byte 
   14617 copy with no transform except NULL terminated. Any other implicit buffer-
   14618 to-
   14619 string conversion - byte-wise conversion of buffer to string of hex 
   14620 values 
   14621 (0-FF) separated by spaces.
   14622 
   14623 - Fixed typo in definition of AcpiGbl_EnableInterpreterSlack.
   14624 
   14625 - Fixed a problem in AcpiNsGetPathnameLength where the returned length 
   14626 was 
   14627 one byte too short in the case of a node in the root scope.  This could 
   14628 cause a fault during debug output.
   14629 
   14630 - Code and Data Size: Current and previous core subsystem library sizes 
   14631 are 
   14632 shown below.  These are the code and data sizes for the acpica.lib 
   14633 produced 
   14634 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   14635 any ACPI driver or OSPM code.  The debug version of the code includes the 
   14636 debug output trace mechanism and has a much larger code and data size.  
   14637 Note 
   14638 that these values will vary depending on the efficiency of the compiler 
   14639 and 
   14640 the compiler options used during generation.
   14641 
   14642   Previous Release:
   14643     Non-Debug Version:  77.9K Code,  11.5K Data,   89.4K Total
   14644     Debug Version:     164.1K Code,  68.3K Data,  232.4K Total
   14645   Current Release:
   14646     Non-Debug Version:  77.8K Code,  11.4K Data,   89.2K Total
   14647     Debug Version:     164.2K Code,  68.2K Data,  232.4K Total
   14648 
   14649 
   14650 2) iASL Compiler/Disassembler:
   14651 
   14652 - Fixed a Linux generation error.
   14653 
   14654 
   14655 ----------------------------------------
   14656 16 August 2004.  Summary of changes for version 20040816:
   14657 
   14658 1) ACPI CA Core Subsystem:
   14659 
   14660 Designed and implemented support within the AML interpreter for the so-
   14661 called "implicit return".  This support returns the result of the last 
   14662 ASL 
   14663 operation within a control method, in the absence of an explicit Return() 
   14664 operator.  A few machines depend on this behavior, even though it is not 
   14665 explicitly supported by the ASL language.  It is optional support that 
   14666 can 
   14667 be enabled at runtime via the AcpiGbl_EnableInterpreterSlack flag.
   14668 
   14669 Removed support for the PCI_Config address space from the internal low 
   14670 level 
   14671 hardware interfaces (AcpiHwLowLevelRead and AcpiHwLowLevelWrite).  This 
   14672 support was not used internally, and would not work correctly anyway 
   14673 because 
   14674 the PCI bus number and segment number were not supported.  There are 
   14675 separate interfaces for PCI configuration space access because of the 
   14676 unique 
   14677 interface.
   14678 
   14679 Code and Data Size: Current and previous core subsystem library sizes are 
   14680 shown below.  These are the code and data sizes for the acpica.lib 
   14681 produced 
   14682 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   14683 any ACPI driver or OSPM code.  The debug version of the code includes the 
   14684 debug output trace mechanism and has a much larger code and data size.  
   14685 Note 
   14686 that these values will vary depending on the efficiency of the compiler 
   14687 and 
   14688 the compiler options used during generation.
   14689 
   14690   Previous Release:
   14691     Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
   14692     Debug Version:     164.1K Code,  68.2K Data,  232.3K Total
   14693   Current Release:
   14694     Non-Debug Version:  77.9K Code,  11.5K Data,   89.4K Total
   14695     Debug Version:     164.1K Code,  68.3K Data,  232.4K Total
   14696 
   14697 
   14698 2) iASL Compiler/Disassembler:
   14699 
   14700 Fixed a problem where constants in ASL expressions at the root level (not 
   14701 within a control method) could be inadvertently truncated during code 
   14702 generation.  This problem was introduced in the 20040715 release.
   14703 
   14704 
   14705 ----------------------------------------
   14706 15 July 2004.  Summary of changes for version 20040715:
   14707 
   14708 1) ACPI CA Core Subsystem:
   14709 
   14710 Restructured the internal HW GPE interfaces to pass/track the current 
   14711 state 
   14712 of interrupts (enabled/disabled) in order to avoid possible deadlock and 
   14713 increase flexibility of the interfaces.
   14714 
   14715 Implemented a "lexicographical compare" for String and Buffer objects 
   14716 within 
   14717 the logical operators -- LGreater, LLess, LGreaterEqual, and LLessEqual -
   14718 - 
   14719 as per further clarification to the ACPI specification.  Behavior is 
   14720 similar 
   14721 to C library "strcmp".
   14722 
   14723 Completed a major reduction in CPU stack use for the AcpiGetFirmwareTable 
   14724 external function.  In the 32-bit non-debug case, the stack use has been 
   14725 reduced from 168 bytes to 32 bytes.
   14726 
   14727 Deployed a new run-time configuration flag, 
   14728 AcpiGbl_EnableInterpreterSlack, 
   14729 whose purpose is to allow the AML interpreter to forgive certain bad AML 
   14730 constructs.  Default setting is FALSE.
   14731 
   14732 Implemented the first use of AcpiGbl_EnableInterpreterSlack in the Field 
   14733 IO 
   14734 support code.  If enabled, it allows field access to go beyond the end of 
   14735 a 
   14736 region definition if the field is within the region length rounded up to 
   14737 the 
   14738 next access width boundary (a common coding error.)
   14739 
   14740 Renamed OSD_HANDLER to ACPI_OSD_HANDLER, and OSD_EXECUTION_CALLBACK to 
   14741 ACPI_OSD_EXEC_CALLBACK for consistency with other ACPI symbols.  Also, 
   14742 these 
   14743 symbols are lowercase by the latest version of the AcpiSrc tool.
   14744 
   14745 The prototypes for the PCI interfaces in acpiosxf.h have been updated to 
   14746 rename "Register" to simply "Reg" to prevent certain compilers from 
   14747 complaining.
   14748 
   14749 Code and Data Size: Current and previous core subsystem library sizes are 
   14750 shown below.  These are the code and data sizes for the acpica.lib 
   14751 produced 
   14752 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   14753 any ACPI driver or OSPM code.  The debug version of the code includes the 
   14754 debug output trace mechanism and has a much larger code and data size.  
   14755 Note 
   14756 that these values will vary depending on the efficiency of the compiler 
   14757 and 
   14758 the compiler options used during generation.
   14759 
   14760   Previous Release:
   14761     Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
   14762     Debug Version:     163.8K Code,  68.2K Data,  232.0K Total
   14763   Current Release:
   14764     Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
   14765     Debug Version:     164.1K Code,  68.2K Data,  232.3K Total
   14766 
   14767 
   14768 2) iASL Compiler/Disassembler:
   14769 
   14770 Implemented full support for Package objects within the Case() operator.  
   14771 Note: The Break() operator is currently not supported within Case blocks 
   14772 (TermLists) as there is some question about backward compatibility with 
   14773 ACPI 
   14774 1.0 interpreters.
   14775 
   14776 
   14777 Fixed a problem where complex terms were not supported properly within 
   14778 the 
   14779 Switch() operator.
   14780 
   14781 Eliminated extraneous warning for compiler-emitted reserved names of the 
   14782 form "_T_x".  (Used in Switch/Case operators.)
   14783 
   14784 Eliminated optimization messages for "_T_x" objects and small constants 
   14785 within the DefinitionBlock operator.
   14786 
   14787 
   14788 ----------------------------------------
   14789 15 June 2004.  Summary of changes for version 20040615:
   14790 
   14791 1) ACPI CA Core Subsystem:
   14792 
   14793 Implemented support for Buffer and String objects (as per ACPI 2.0) for 
   14794 the 
   14795 following ASL operators:  LEqual, LGreater, LLess, LGreaterEqual, and 
   14796 LLessEqual.
   14797 
   14798 All directory names in the entire source package are lower case, as they 
   14799 were in earlier releases.
   14800 
   14801 Implemented "Disassemble" command in the AML debugger that will 
   14802 disassemble 
   14803 a single control method.
   14804 
   14805 Code and Data Size: Current and previous core subsystem library sizes are 
   14806 shown below.  These are the code and data sizes for the acpica.lib 
   14807 produced 
   14808 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   14809 any ACPI driver or OSPM code.  The debug version of the code includes the 
   14810 debug output trace mechanism and has a much larger code and data size.  
   14811 Note 
   14812 that these values will vary depending on the efficiency of the compiler 
   14813 and 
   14814 the compiler options used during generation.
   14815 
   14816   Previous Release:
   14817     Non-Debug Version:  77.7K Code,  11.5K Data,   89.2K Total
   14818     Debug Version:     163.3K Code,  67.2K Data,  230.5K Total
   14819 
   14820   Current Release:
   14821     Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
   14822     Debug Version:     163.8K Code,  68.2K Data,  232.0K Total
   14823 
   14824 
   14825 2) iASL Compiler/Disassembler:
   14826 
   14827 Implemented support for Buffer and String objects (as per ACPI 2.0) for 
   14828 the 
   14829 following ASL operators:  LEqual, LGreater, LLess, LGreaterEqual, and 
   14830 LLessEqual.
   14831 
   14832 All directory names in the entire source package are lower case, as they 
   14833 were in earlier releases.
   14834 
   14835 Fixed a fault when using the -g or -d<nofilename> options if the FADT was 
   14836 not found.
   14837 
   14838 Fixed an issue with the Windows version of the compiler where later 
   14839 versions 
   14840 of Windows place the FADT in the registry under the name "FADT" and not 
   14841 "FACP" as earlier versions did.  This applies when using the -g or -
   14842 d<nofilename> options.  The compiler now looks for both strings as 
   14843 necessary.
   14844 
   14845 Fixed a problem with compiler namepath optimization where a namepath 
   14846 within 
   14847 the Scope() operator could not be optimized if the namepath was a subpath 
   14848 of 
   14849 the current scope path.
   14850 
   14851 ----------------------------------------
   14852 27 May 2004.  Summary of changes for version 20040527:
   14853 
   14854 1) ACPI CA Core Subsystem:
   14855 
   14856 Completed a new design and implementation for EBDA (Extended BIOS Data 
   14857 Area) 
   14858 support in the RSDP scan code.  The original code improperly scanned for 
   14859 the 
   14860 EBDA by simply scanning from memory location 0 to 0x400.  The correct 
   14861 method 
   14862 is to first obtain the EBDA pointer from within the BIOS data area, then 
   14863 scan 1K of memory starting at the EBDA pointer.  There appear to be few 
   14864 if 
   14865 any machines that place the RSDP in the EBDA, however.
   14866 
   14867 Integrated a fix for a possible fault during evaluation of BufferField 
   14868 arguments.  Obsolete code that was causing the problem was removed.
   14869 
   14870 Found and fixed a problem in the Field Support Code where data could be 
   14871 corrupted on a bit field read that starts on an aligned boundary but does 
   14872 not end on an aligned boundary.  Merged the read/write "datum length" 
   14873 calculation code into a common procedure.
   14874 
   14875 Rolled in a couple of changes to the FreeBSD-specific header.
   14876 
   14877 
   14878 Code and Data Size: Current and previous core subsystem library sizes are 
   14879 shown below.  These are the code and data sizes for the acpica.lib 
   14880 produced 
   14881 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   14882 any ACPI driver or OSPM code.  The debug version of the code includes the 
   14883 debug output trace mechanism and has a much larger code and data size.  
   14884 Note 
   14885 that these values will vary depending on the efficiency of the compiler 
   14886 and 
   14887 the compiler options used during generation.
   14888 
   14889   Previous Release:
   14890     Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
   14891     Debug Version:     163.2K Code,  67.2K Data,  230.4K Total
   14892   Current Release:
   14893     Non-Debug Version:  77.7K Code,  11.5K Data,   89.2K Total
   14894     Debug Version:     163.3K Code,  67.2K Data,  230.5K Total
   14895 
   14896 
   14897 2) iASL Compiler/Disassembler:
   14898 
   14899 Fixed a generation warning produced by some overly-verbose compilers for 
   14900 a 
   14901 64-bit constant.
   14902 
   14903 ----------------------------------------
   14904 14 May 2004.  Summary of changes for version 20040514:
   14905 
   14906 1) ACPI CA Core Subsystem:
   14907 
   14908 Fixed a problem where hardware GPE enable bits sometimes not set properly 
   14909 during and after GPE method execution.  Result of 04/27 changes.
   14910 
   14911 Removed extra "clear all GPEs" when sleeping/waking.
   14912 
   14913 Removed AcpiHwEnableGpe and AcpiHwDisableGpe, replaced by the single 
   14914 AcpiHwWriteGpeEnableReg. Changed a couple of calls to the functions above 
   14915 to 
   14916 the new AcpiEv* calls as appropriate.
   14917 
   14918 ACPI_OS_NAME was removed from the OS-specific headers.  The default name 
   14919 is 
   14920 now "Microsoft Windows NT" for maximum compatibility.  However this can 
   14921 be 
   14922 changed by modifying the acconfig.h file.
   14923 
   14924 Allow a single invocation of AcpiInstallNotifyHandler for a handler that 
   14925 traps both types of notifies (System, Device).  Use ACPI_ALL_NOTIFY flag. 
   14926 
   14927 Run _INI methods on ThermalZone objects.  This is against the ACPI 
   14928 specification, but there is apparently ASL code in the field that has 
   14929 these 
   14930 _INI methods, and apparently "other" AML interpreters execute them.
   14931 
   14932 Performed a full 16/32/64 bit lint that resulted in some small changes.
   14933 
   14934 Added a sleep simulation command to the AML debugger to test sleep code. 
   14935 
   14936 Code and Data Size: Current and previous core subsystem library sizes are 
   14937 shown below.  These are the code and data sizes for the acpica.lib 
   14938 produced 
   14939 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   14940 any ACPI driver or OSPM code.  The debug version of the code includes the 
   14941 debug output trace mechanism and has a much larger code and data size.  
   14942 Note 
   14943 that these values will vary depending on the efficiency of the compiler 
   14944 and 
   14945 the compiler options used during generation.
   14946 
   14947   Previous Release:
   14948     Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
   14949     Debug Version:     162.9K Code,  67.0K Data,  229.9K Total
   14950   Current Release:
   14951     Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
   14952     Debug Version:     163.2K Code,  67.2K Data,  230.4K Total
   14953 
   14954 ----------------------------------------
   14955 27 April 2004.  Summary of changes for version 20040427:
   14956 
   14957 1) ACPI CA Core Subsystem:
   14958 
   14959 Completed a major overhaul of the GPE handling within ACPI CA.  There are 
   14960 now three types of GPEs:  wake-only, runtime-only, and combination 
   14961 wake/run.  
   14962 The only GPEs allowed to be combination wake/run are for button-style 
   14963 devices such as a control-method power button, control-method sleep 
   14964 button, 
   14965 or a notebook lid switch.  GPEs that have an _Lxx or _Exx method and are 
   14966 not 
   14967 referenced by any _PRW methods are marked for "runtime" and hardware 
   14968 enabled.  Any GPE that is referenced by a _PRW method is marked for 
   14969 "wake" 
   14970 (and disabled at runtime).  However, at sleep time, only those GPEs that 
   14971 have been specifically enabled for wake via the AcpiEnableGpe interface 
   14972 will 
   14973 actually be hardware enabled.
   14974 
   14975 A new external interface has been added, AcpiSetGpeType(), that is meant 
   14976 to 
   14977 be used by device drivers to force a GPE to a particular type.  It will 
   14978 be 
   14979 especially useful for the drivers for the button devices mentioned above.
   14980 
   14981 Completed restructuring of the ACPI CA initialization sequence so that 
   14982 default operation region handlers are installed before GPEs are 
   14983 initialized 
   14984 and the _PRW methods are executed.  This will prevent errors when the 
   14985 _PRW 
   14986 methods attempt to access system memory or I/O space.
   14987 
   14988 GPE enable/disable no longer reads the GPE enable register.  We now keep 
   14989 the 
   14990 enable info for runtime and wake separate and in the GPE_EVENT_INFO.  We 
   14991 thus no longer depend on the hardware to maintain these bits.
   14992 
   14993 Always clear the wake status and fixed/GPE status bits before sleep, even 
   14994 for state S5.
   14995 
   14996 Improved the AML debugger output for displaying the GPE blocks and their 
   14997 current status.
   14998 
   14999 Added new strings for the _OSI method, of the form "Windows 2001 SPx" 
   15000 where 
   15001 x = 0,1,2,3,4.
   15002 
   15003 Fixed a problem where the physical address was incorrectly calculated 
   15004 when 
   15005 the Load() operator was used to directly load from an Operation Region 
   15006 (vs. 
   15007 loading from a Field object.)  Also added check for minimum table length 
   15008 for 
   15009 this case.
   15010 
   15011 Fix for multiple mutex acquisition.  Restore original thread SyncLevel on 
   15012 mutex release.
   15013 
   15014 Added ACPI_VALID_SXDS flag to the AcpiGetObjectInfo interface for 
   15015 consistency with the other fields returned.
   15016 
   15017 Shrunk the ACPI_GPE_EVENT_INFO structure by 40%.  There is one such 
   15018 structure for each GPE in the system, so the size of this structure is 
   15019 important.
   15020 
   15021 CPU stack requirement reduction:  Cleaned up the method execution and 
   15022 object 
   15023 evaluation paths so that now a parameter structure is passed, instead of 
   15024 copying the various method parameters over and over again.
   15025 
   15026 In evregion.c:  Correctly exit and reenter the interpreter region if and 
   15027 only if dispatching an operation region request to a user-installed 
   15028 handler.  
   15029 Do not exit/reenter when dispatching to a default handler (e.g., default 
   15030 system memory or I/O handlers)
   15031 
   15032 
   15033 Notes for updating drivers for the new GPE support.  The following 
   15034 changes 
   15035 must be made to ACPI-related device drivers that are attached to one or 
   15036 more 
   15037 GPEs: (This information will be added to the ACPI CA Programmer 
   15038 Reference.)
   15039 
   15040 1) AcpiInstallGpeHandler no longer automatically enables the GPE, you 
   15041 must 
   15042 explicitly call AcpiEnableGpe.
   15043 2) There is a new interface called AcpiSetGpeType. This should be called 
   15044 before enabling the GPE.  Also, this interface will automatically disable 
   15045 the GPE if it is currently enabled.
   15046 3) AcpiEnableGpe no longer supports a GPE type flag.
   15047 
   15048 Specific drivers that must be changed:
   15049 1) EC driver:
   15050     AcpiInstallGpeHandler (NULL, GpeNum, ACPI_GPE_EDGE_TRIGGERED, 
   15051 AeGpeHandler, NULL);
   15052     AcpiSetGpeType (NULL, GpeNum, ACPI_GPE_TYPE_RUNTIME);
   15053     AcpiEnableGpe (NULL, GpeNum, ACPI_NOT_ISR);
   15054 
   15055 2) Button Drivers (Power, Lid, Sleep):
   15056 Run _PRW method under parent device
   15057 If _PRW exists: /* This is a control-method button */
   15058     Extract GPE number and possibly GpeDevice
   15059     AcpiSetGpeType (GpeDevice, GpeNum, ACPI_GPE_TYPE_WAKE_RUN);
   15060     AcpiEnableGpe (GpeDevice, GpeNum, ACPI_NOT_ISR);
   15061 
   15062 For all other devices that have _PRWs, we automatically set the GPE type 
   15063 to 
   15064 ACPI_GPE_TYPE_WAKE, but the GPE is NOT automatically (wake) enabled.  
   15065 This 
   15066 must be done on a selective basis, usually requiring some kind of user 
   15067 app 
   15068 to allow the user to pick the wake devices.
   15069 
   15070 
   15071 Code and Data Size: Current and previous core subsystem library sizes are 
   15072 shown below.  These are the code and data sizes for the acpica.lib 
   15073 produced 
   15074 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   15075 any ACPI driver or OSPM code.  The debug version of the code includes the 
   15076 debug output trace mechanism and has a much larger code and data size.  
   15077 Note 
   15078 that these values will vary depending on the efficiency of the compiler 
   15079 and 
   15080 the compiler options used during generation.
   15081 
   15082   Previous Release:
   15083     Non-Debug Version:  77.0K Code,  11.4K Data,   88.4K Total
   15084     Debug Version:     161.0K Code,  66.3K Data,  227.3K Total
   15085   Current Release:
   15086 
   15087     Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
   15088     Debug Version:     162.9K Code,  67.0K Data,  229.9K Total
   15089 
   15090 
   15091 
   15092 ----------------------------------------
   15093 02 April 2004.  Summary of changes for version 20040402:
   15094 
   15095 1) ACPI CA Core Subsystem:
   15096 
   15097 Fixed an interpreter problem where an indirect store through an ArgX 
   15098 parameter was incorrectly applying the "implicit conversion rules" during 
   15099 the store.  From the ACPI specification: "If the target is a method local 
   15100 or 
   15101 argument (LocalX or ArgX), no conversion is performed and the result is 
   15102 stored directly to the target".  The new behavior is to disable implicit 
   15103 conversion during ALL stores to an ArgX.
   15104 
   15105 Changed the behavior of the _PRW method scan to ignore any and all errors 
   15106 returned by a given _PRW.  This prevents the scan from aborting from the 
   15107 failure of any single _PRW.
   15108 
   15109 Moved the runtime configuration parameters from the global init procedure 
   15110 to 
   15111 static variables in acglobal.h.  This will allow the host to override the 
   15112 default values easily.
   15113 
   15114 Code and Data Size: Current and previous core subsystem library sizes are 
   15115 shown below.  These are the code and data sizes for the acpica.lib 
   15116 produced 
   15117 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   15118 any ACPI driver or OSPM code.  The debug version of the code includes the 
   15119 debug output trace mechanism and has a much larger code and data size.  
   15120 Note 
   15121 that these values will vary depending on the efficiency of the compiler 
   15122 and 
   15123 the compiler options used during generation.
   15124 
   15125   Previous Release:
   15126     Non-Debug Version:  76.9K Code,  11.4K Data,   88.3K Total
   15127     Debug Version:     160.8K Code,  66.1K Data,  226.9K Total
   15128   Current Release:
   15129     Non-Debug Version:  77.0K Code,  11.4K Data,   88.4K Total
   15130     Debug Version:     161.0K Code,  66.3K Data,  227.3K Total
   15131 
   15132 
   15133 2) iASL Compiler/Disassembler:
   15134 
   15135 iASL now fully disassembles SSDTs.  However, External() statements are 
   15136 not 
   15137 generated automatically for unresolved symbols at this time.  This is a 
   15138 planned feature for future implementation.
   15139 
   15140 Fixed a scoping problem in the disassembler that occurs when the type of 
   15141 the 
   15142 target of a Scope() operator is overridden.  This problem caused an 
   15143 incorrectly nested internal namespace to be constructed.
   15144 
   15145 Any warnings or errors that are emitted during disassembly are now 
   15146 commented 
   15147 out automatically so that the resulting file can be recompiled without 
   15148 any 
   15149 hand editing.
   15150 
   15151 ----------------------------------------
   15152 26 March 2004.  Summary of changes for version 20040326:
   15153 
   15154 1) ACPI CA Core Subsystem:
   15155 
   15156 Implemented support for "wake" GPEs via interaction between GPEs and the 
   15157 _PRW methods.  Every GPE that is pointed to by one or more _PRWs is 
   15158 identified as a WAKE GPE and by default will no longer be enabled at 
   15159 runtime.  Previously, we were blindly enabling all GPEs with a 
   15160 corresponding 
   15161 _Lxx or _Exx method - but most of these turn out to be WAKE GPEs anyway.  
   15162 We 
   15163 believe this has been the cause of thousands of "spurious" GPEs on some 
   15164 systems.
   15165 
   15166 This new GPE behavior is can be reverted to the original behavior (enable 
   15167 ALL GPEs at runtime) via a runtime flag.
   15168 
   15169 Fixed a problem where aliased control methods could not access objects 
   15170 properly.  The proper scope within the namespace was not initialized 
   15171 (transferred to the target of the aliased method) before executing the 
   15172 target method.
   15173 
   15174 Fixed a potential race condition on internal object deletion on the 
   15175 return 
   15176 object in AcpiEvaluateObject. 
   15177 
   15178 Integrated a fix for resource descriptors where both _MEM and _MTP were 
   15179 being extracted instead of just _MEM.  (i.e. bitmask was incorrectly too 
   15180 wide, 0x0F instead of 0x03.)
   15181 
   15182 Added a special case for ACPI_ROOT_OBJECT in AcpiUtGetNodeName, 
   15183 preventing 
   15184 a 
   15185 fault in some cases.
   15186 
   15187 Updated Notify() values for debug statements in evmisc.c
   15188 
   15189 Return proper status from AcpiUtMutexInitialize, not just simply AE_OK.
   15190 
   15191 Code and Data Size: Current and previous core subsystem library sizes are 
   15192 shown below.  These are the code and data sizes for the acpica.lib 
   15193 produced 
   15194 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   15195 any ACPI driver or OSPM code.  The debug version of the code includes the 
   15196 debug output trace mechanism and has a much larger code and data size.  
   15197 Note 
   15198 that these values will vary depending on the efficiency of the compiler 
   15199 and 
   15200 the compiler options used during generation.
   15201 
   15202   Previous Release:
   15203 
   15204     Non-Debug Version:  76.5K Code,  11.3K Data,   87.8K Total
   15205     Debug Version:     160.3K Code,  66.0K Data,  226.3K Total
   15206   Current Release:
   15207     Non-Debug Version:  76.9K Code,  11.4K Data,   88.3K Total
   15208     Debug Version:     160.8K Code,  66.1K Data,  226.9K Total
   15209 
   15210 ----------------------------------------
   15211 11 March 2004.  Summary of changes for version 20040311:
   15212 
   15213 1) ACPI CA Core Subsystem:
   15214 
   15215 Fixed a problem where errors occurring during the parse phase of control 
   15216 method execution did not abort cleanly.  For example, objects created and 
   15217 installed in the namespace were not deleted.  This caused all subsequent 
   15218 invocations of the method to return the AE_ALREADY_EXISTS exception.
   15219 
   15220 Implemented a mechanism to force a control method to "Serialized" 
   15221 execution 
   15222 if the method attempts to create namespace objects. (The root of the 
   15223 AE_ALREADY_EXISTS problem.)
   15224 
   15225 Implemented support for the predefined _OSI "internal" control method.  
   15226 Initial supported strings are "Linux", "Windows 2000", "Windows 2001", 
   15227 and 
   15228 "Windows 2001.1", and can be easily upgraded for new strings as 
   15229 necessary.  
   15230 This feature will allow "other" operating systems to execute the fully 
   15231 tested, "Windows" code path through the ASL code
   15232 
   15233 Global Lock Support:  Now allows multiple acquires and releases with any 
   15234 internal thread.  Removed concept of "owning thread" for this special 
   15235 mutex.
   15236 
   15237 Fixed two functions that were inappropriately declaring large objects on 
   15238 the 
   15239 CPU stack:  PsParseLoop, NsEvaluateRelative.  Reduces the stack usage 
   15240 during 
   15241 method execution considerably.
   15242 
   15243 Fixed a problem in the ACPI 2.0 FACS descriptor (actbl2.h) where the 
   15244 S4Bios_f field was incorrectly defined as UINT32 instead of UINT32_BIT.
   15245 
   15246 Fixed a problem where AcpiEvGpeDetect would fault if there were no GPEs 
   15247 defined on the machine.
   15248 
   15249 Implemented two runtime options:  One to force all control method 
   15250 execution 
   15251 to "Serialized" to mimic Windows behavior, another to disable _OSI 
   15252 support 
   15253 if it causes problems on a given machine.
   15254 
   15255 Code and Data Size: Current and previous core subsystem library sizes are 
   15256 shown below.  These are the code and data sizes for the acpica.lib 
   15257 produced 
   15258 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   15259 any ACPI driver or OSPM code.  The debug version of the code includes the 
   15260 debug output trace mechanism and has a much larger code and data size.  
   15261 Note 
   15262 that these values will vary depending on the efficiency of the compiler 
   15263 and 
   15264 the compiler options used during generation.
   15265 
   15266   Previous Release:
   15267     Non-Debug Version:  74.8K Code,  10.1K Data,   84.9K Total
   15268     Debug Version:     158.7K Code,  65.1K Data,  223.8K Total
   15269   Current Release:
   15270     Non-Debug Version:  76.5K Code,  11.3K Data,   87.8K Total
   15271     Debug Version:     160.3K Code,  66.0K Data,  226.3K Total
   15272 
   15273 2) iASL Compiler/Disassembler:
   15274 
   15275 Fixed an array size problem for FreeBSD that would cause the compiler to 
   15276 fault.
   15277 
   15278 ----------------------------------------
   15279 20 February 2004.  Summary of changes for version 20040220:
   15280 
   15281 
   15282 1) ACPI CA Core Subsystem:
   15283 
   15284 Implemented execution of _SxD methods for Device objects in the 
   15285 GetObjectInfo interface.
   15286 
   15287 Fixed calls to _SST method to pass the correct arguments.
   15288 
   15289 Added a call to _SST on wake to restore to "working" state.
   15290 
   15291 Check for End-Of-Buffer failure case in the WalkResources interface.
   15292 
   15293 Integrated fix for 64-bit alignment issue in acglobal.h by moving two 
   15294 structures to the beginning of the file.
   15295 
   15296 After wake, clear GPE status register(s) before enabling GPEs.
   15297 
   15298 After wake, clear/enable power button.  (Perhaps we should clear/enable 
   15299 all 
   15300 fixed events upon wake.)
   15301 
   15302 Fixed a couple of possible memory leaks in the Namespace manager.
   15303 
   15304 Integrated latest acnetbsd.h file.
   15305 
   15306 ----------------------------------------
   15307 11 February 2004.  Summary of changes for version 20040211:
   15308 
   15309 
   15310 1) ACPI CA Core Subsystem:
   15311 
   15312 Completed investigation and implementation of the call-by-reference 
   15313 mechanism for control method arguments.
   15314 
   15315 Fixed a problem where a store of an object into an indexed package could 
   15316 fail if the store occurs within a different method than the method that 
   15317 created the package.
   15318 
   15319 Fixed a problem where the ToDecimal operator could return incorrect 
   15320 results.
   15321 
   15322 Fixed a problem where the CopyObject operator could fail on some of the 
   15323 more 
   15324 obscure objects (e.g., Reference objects.)
   15325 
   15326 Improved the output of the Debug object to display buffer, package, and 
   15327 index objects.
   15328 
   15329 Fixed a problem where constructs of the form "RefOf (ArgX)" did not 
   15330 return 
   15331 the expected result.
   15332 
   15333 Added permanent ACPI_REPORT_ERROR macros for all instances of the 
   15334 ACPI_AML_INTERNAL exception.
   15335 
   15336 Integrated latest version of acfreebsd.h
   15337 
   15338 ----------------------------------------
   15339 16 January 2004.  Summary of changes for version 20040116:
   15340 
   15341 The purpose of this release is primarily to update the copyright years in 
   15342 each module, thus causing a huge number of diffs.  There are a few small 
   15343 functional changes, however.
   15344 
   15345 1) ACPI CA Core Subsystem:
   15346 
   15347 Improved error messages when there is a problem finding one or more of 
   15348 the 
   15349 required base ACPI tables
   15350 
   15351 Reintroduced the definition of APIC_HEADER in actbl.h
   15352 
   15353 Changed definition of MADT_ADDRESS_OVERRIDE to 64 bits (actbl.h)
   15354 
   15355 Removed extraneous reference to NewObj in dsmthdat.c
   15356 
   15357 2) iASL compiler
   15358 
   15359 Fixed a problem introduced in December that disabled the correct 
   15360 disassembly 
   15361 of Resource Templates
   15362 
   15363 
   15364 ----------------------------------------
   15365 03 December 2003.  Summary of changes for version 20031203:
   15366 
   15367 1) ACPI CA Core Subsystem:
   15368 
   15369 Changed the initialization of Operation Regions during subsystem
   15370 init to perform two entire walks of the ACPI namespace; The first
   15371 to initialize the regions themselves, the second to execute the
   15372 _REG methods.  This fixed some interdependencies across _REG
   15373 methods found on some machines.
   15374 
   15375 Fixed a problem where a Store(Local0, Local1) could simply update
   15376 the object reference count, and not create a new copy of the
   15377 object if the Local1 is uninitialized.
   15378 
   15379 Implemented support for the _SST reserved method during sleep
   15380 transitions.
   15381 
   15382 Implemented support to clear the SLP_TYP and SLP_EN bits when
   15383 waking up, this is apparently required by some machines.
   15384 
   15385 When sleeping, clear the wake status only if SleepState is not S5.
   15386 
   15387 Fixed a problem in AcpiRsExtendedIrqResource() where an incorrect
   15388 pointer arithmetic advanced a string pointer too far.
   15389 
   15390 Fixed a problem in AcpiTbGetTablePtr() where a garbage pointer
   15391 could be returned if the requested table has not been loaded.
   15392 
   15393 Within the support for IRQ resources, restructured the handling of
   15394 the active and edge/level bits.
   15395 
   15396 Fixed a few problems in AcpiPsxExecute() where memory could be
   15397 leaked under certain error conditions.
   15398 
   15399 Improved error messages for the cases where the ACPI mode could
   15400 not be entered.
   15401 
   15402 Code and Data Size: Current and previous core subsystem library
   15403 sizes are shown below.  These are the code and data sizes for the
   15404 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
   15405 these values do not include any ACPI driver or OSPM code.  The
   15406 debug version of the code includes the debug output trace
   15407 mechanism and has a much larger code and data size.  Note that
   15408 these values will vary depending on the efficiency of the compiler
   15409 and the compiler options used during generation.
   15410 
   15411   Previous Release (20031029):
   15412     Non-Debug Version:  74.4K Code,  10.1K Data,   84.5K Total
   15413     Debug Version:     158.3K Code,  65.0K Data,  223.3K Total
   15414   Current Release:
   15415     Non-Debug Version:  74.8K Code,  10.1K Data,   84.9K Total
   15416     Debug Version:     158.7K Code,  65.1K Data,  223.8K Total
   15417 
   15418 2) iASL Compiler/Disassembler:
   15419 
   15420 Implemented a fix for the iASL disassembler where a bad index was
   15421 generated.  This was most noticeable on 64-bit platforms
   15422 
   15423 
   15424 ----------------------------------------
   15425 29 October 2003.  Summary of changes for version 20031029:
   15426 
   15427 1) ACPI CA Core Subsystem:
   15428 
   15429 
   15430 Fixed a problem where a level-triggered GPE with an associated
   15431 _Lxx control method was incorrectly cleared twice.
   15432 
   15433 Fixed a problem with the Field support code where an access can
   15434 occur beyond the end-of-region if the field is non-aligned but
   15435 extends to the very end of the parent region (resulted in an
   15436 AE_AML_REGION_LIMIT exception.)
   15437 
   15438 Fixed a problem with ACPI Fixed Events where an RT Clock handler
   15439 would not get invoked on an RTC event.  The RTC event bitmasks for
   15440 the PM1 registers were not being initialized properly.
   15441 
   15442 Implemented support for executing _STA and _INI methods for
   15443 Processor objects.  Although this is currently not part of the
   15444 ACPI specification, there is existing ASL code that depends on the
   15445 init-time execution of these methods.
   15446 
   15447 Implemented and deployed a GetDescriptorName function to decode
   15448 the various types of internal descriptors.  Guards against null
   15449 descriptors during debug output also.
   15450 
   15451 Implemented and deployed a GetNodeName function to extract the 4-
   15452 character namespace node name.  This function simplifies the debug
   15453 and error output, as well as guarding against null pointers during
   15454 output.
   15455 
   15456 Implemented and deployed the ACPI_FORMAT_UINT64 helper macro to
   15457 simplify the debug and error output of 64-bit integers.  This
   15458 macro replaces the HIDWORD and LODWORD macros for dumping these
   15459 integers.
   15460 
   15461 Updated the implementation of the Stall() operator to only call
   15462 AcpiOsStall(), and also return an error if the operand is larger
   15463 than 255.  This preserves the required behavior of not
   15464 relinquishing the processor, as would happen if AcpiOsSleep() was
   15465 called for "long stalls".
   15466 
   15467 Constructs of the form "Store(LocalX,LocalX)" where LocalX is not
   15468 initialized are now treated as NOOPs.
   15469 
   15470 Cleaned up a handful of warnings during 64-bit generation.
   15471 
   15472 Fixed a reported error where and incorrect GPE number was passed
   15473 to the GPE dispatch handler.  This value is only used for error
   15474 output, however.  Used this opportunity to clean up and streamline
   15475 the GPE dispatch code.
   15476 
   15477 Code and Data Size: Current and previous core subsystem library
   15478 sizes are shown below.  These are the code and data sizes for the
   15479 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
   15480 these values do not include any ACPI driver or OSPM code.  The
   15481 
   15482 debug version of the code includes the debug output trace
   15483 mechanism and has a much larger code and data size.  Note that
   15484 these values will vary depending on the efficiency of the compiler
   15485 and the compiler options used during generation.
   15486 
   15487   Previous Release (20031002):
   15488     Non-Debug Version:  74.1K Code,   9.7K Data,   83.8K Total
   15489     Debug Version:     157.9K Code,  64.8K Data,  222.7K Total
   15490   Current Release:
   15491     Non-Debug Version:  74.4K Code,  10.1K Data,   84.5K Total
   15492     Debug Version:     158.3K Code,  65.0K Data,  223.3K Total
   15493 
   15494 
   15495 2) iASL Compiler/Disassembler:
   15496 
   15497 Updated the iASL compiler to return an error if the operand to the
   15498 Stall() operator is larger than 255.
   15499 
   15500 
   15501 ----------------------------------------
   15502 02 October 2003.  Summary of changes for version 20031002:
   15503 
   15504 
   15505 1) ACPI CA Core Subsystem:
   15506 
   15507 Fixed a problem with Index Fields where the index was not
   15508 incremented for fields that require multiple writes to the
   15509 index/data registers (Fields that are wider than the data
   15510 register.)
   15511 
   15512 Fixed a problem with all Field objects where a write could go
   15513 beyond the end-of-field if the field was larger than the access
   15514 granularity and therefore required multiple writes to complete the
   15515 request.  An extra write beyond the end of the field could happen
   15516 inadvertently.
   15517 
   15518 Fixed a problem with Index Fields where a BUFFER_OVERFLOW error
   15519 would incorrectly be returned if the width of the Data Register
   15520 was larger than the specified field access width.
   15521 
   15522 Completed fixes for LoadTable() and Unload() and verified their
   15523 operation.  Implemented full support for the "DdbHandle" object
   15524 throughout the ACPI CA subsystem.
   15525 
   15526 Implemented full support for the MADT and ECDT tables in the ACPI
   15527 CA header files.  Even though these tables are not directly
   15528 consumed by ACPI CA, the header definitions are useful for ACPI
   15529 device drivers.
   15530 
   15531 Integrated resource descriptor fixes posted to the Linux ACPI
   15532 list.  This included checks for minimum descriptor length, and
   15533 support for trailing NULL strings within descriptors that have
   15534 optional string elements.
   15535 
   15536 Code and Data Size: Current and previous core subsystem library
   15537 sizes are shown below.  These are the code and data sizes for the
   15538 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
   15539 these values do not include any ACPI driver or OSPM code.  The
   15540 debug version of the code includes the debug output trace
   15541 mechanism and has a much larger code and data size.  Note that
   15542 these values will vary depending on the efficiency of the compiler
   15543 and the compiler options used during generation.
   15544 
   15545   Previous Release (20030918):
   15546     Non-Debug Version:  73.9K Code,   9.7K Data,   83.6K Total
   15547     Debug Version:     157.3K Code,  64.5K Data,  221.8K Total
   15548   Current Release:
   15549     Non-Debug Version:  74.1K Code,   9.7K Data,   83.8K Total
   15550     Debug Version:     157.9K Code,  64.8K Data,  222.7K Total
   15551 
   15552 
   15553 2) iASL Compiler:
   15554 
   15555 Implemented detection of non-ASCII characters within the input
   15556 source ASL file.  This catches attempts to compile binary (AML)
   15557 files early in the compile, with an informative error message.
   15558 
   15559 Fixed a problem where the disassembler would fault if the output
   15560 filename could not be generated or if the output file could not be
   15561 opened.
   15562 
   15563 ----------------------------------------
   15564 18 September 2003.  Summary of changes for version 20030918:
   15565 
   15566 
   15567 1) ACPI CA Core Subsystem:
   15568 
   15569 Found and fixed a longstanding problem with the late execution of
   15570 the various deferred AML opcodes (such as Operation Regions,
   15571 Buffer Fields, Buffers, and Packages).  If the name string
   15572 specified for the name of the new object placed the object in a
   15573 scope other than the current scope, the initialization/execution
   15574 of the opcode failed.  The solution to this problem was to
   15575 implement a mechanism where the late execution of such opcodes
   15576 does not attempt to lookup/create the name a second time in an
   15577 incorrect scope.  This fixes the "region size computed
   15578 incorrectly" problem.
   15579 
   15580 Fixed a call to AcpiHwRegisterWrite in hwregs.c that was causing a
   15581 Global Lock AE_BAD_PARAMETER error.
   15582 
   15583 Fixed several 64-bit issues with prototypes, casting and data
   15584 types.
   15585 
   15586 Removed duplicate prototype from acdisasm.h
   15587 
   15588 Fixed an issue involving EC Operation Region Detach (Shaohua Li)
   15589 
   15590 Code and Data Size: Current and previous core subsystem library
   15591 sizes are shown below.  These are the code and data sizes for the
   15592 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
   15593 these values do not include any ACPI driver or OSPM code.  The
   15594 debug version of the code includes the debug output trace
   15595 mechanism and has a much larger code and data size.  Note that
   15596 these values will vary depending on the efficiency of the compiler
   15597 and the compiler options used during generation.
   15598 
   15599   Previous Release:
   15600 
   15601     Non-Debug Version:  73.7K Code,   9.7K Data,   83.4K Total
   15602     Debug Version:     156.9K Code,  64.2K Data,  221.1K Total
   15603   Current Release:
   15604     Non-Debug Version:  73.9K Code,   9.7K Data,   83.6K Total
   15605     Debug Version:     157.3K Code,  64.5K Data,  221.8K Total
   15606 
   15607 
   15608 2) Linux:
   15609 
   15610 Fixed the AcpiOsSleep implementation in osunixxf.c to pass the
   15611 correct sleep time in seconds.
   15612 
   15613 ----------------------------------------
   15614 14 July 2003.  Summary of changes for version 20030619:
   15615 
   15616 1) ACPI CA Core Subsystem:
   15617 
   15618 Parse SSDTs in order discovered, as opposed to reverse order
   15619 (Hrvoje Habjanic)
   15620 
   15621 Fixes from FreeBSD and NetBSD. (Frank van der Linden, Thomas
   15622 Klausner,
   15623    Nate Lawson)
   15624 
   15625 
   15626 2) Linux:
   15627 
   15628 Dynamically allocate SDT list (suggested by Andi Kleen)
   15629 
   15630 proc function return value cleanups (Andi Kleen)
   15631 
   15632 Correctly handle NMI watchdog during long stalls (Andrew Morton)
   15633 
   15634 Make it so acpismp=force works (reported by Andrew Morton)
   15635 
   15636 
   15637 ----------------------------------------
   15638 19 June 2003.  Summary of changes for version 20030619:
   15639 
   15640 1) ACPI CA Core Subsystem:
   15641 
   15642 Fix To/FromBCD, eliminating the need for an arch-specific #define.
   15643 
   15644 Do not acquire a semaphore in the S5 shutdown path.
   15645 
   15646 Fix ex_digits_needed for 0. (Takayoshi Kochi)
   15647 
   15648 Fix sleep/stall code reversal. (Andi Kleen)
   15649 
   15650 Revert a change having to do with control method calling
   15651 semantics.
   15652 
   15653 2) Linux:
   15654 
   15655 acpiphp update (Takayoshi Kochi)
   15656 
   15657 Export acpi_disabled for sonypi (Stelian Pop)
   15658 
   15659 Mention acpismp=force in config help
   15660 
   15661 Re-add acpitable.c and acpismp=force. This improves backwards
   15662 
   15663 compatibility and also cleans up the code to a significant degree.
   15664 
   15665 Add ASUS Value-add driver (Karol Kozimor and Julien Lerouge)
   15666 
   15667 ----------------------------------------
   15668 22 May 2003.  Summary of changes for version 20030522:
   15669 
   15670 1) ACPI CA Core Subsystem:
   15671 
   15672 Found and fixed a reported problem where an AE_NOT_FOUND error
   15673 occurred occasionally during _BST evaluation.  This turned out to
   15674 be an Owner ID allocation issue where a called method did not get
   15675 a new ID assigned to it.  Eventually, (after 64k calls), the Owner
   15676 ID UINT16 would wraparound so that the ID would be the same as the
   15677 caller's and the called method would delete the caller's
   15678 namespace.
   15679 
   15680 Implemented extended error reporting for control methods that are
   15681 aborted due to a run-time exception.  Output includes the exact
   15682 AML instruction that caused the method abort, a dump of the method
   15683 locals and arguments at the time of the abort, and a trace of all
   15684 nested control method calls.
   15685 
   15686 Modified the interpreter to allow the creation of buffers of zero
   15687 length from the AML code. Implemented new code to ensure that no
   15688 attempt is made to actually allocate a memory buffer (of length
   15689 zero) - instead, a simple buffer object with a NULL buffer pointer
   15690 and length zero is created.  A warning is no longer issued when
   15691 the AML attempts to create a zero-length buffer.
   15692 
   15693 Implemented a workaround for the "leading asterisk issue" in
   15694 _HIDs, _UIDs, and _CIDs in the AML interpreter.  One leading
   15695 asterisk is automatically removed if present in any HID, UID, or
   15696 CID strings.  The iASL compiler will still flag this asterisk as
   15697 an error, however.
   15698 
   15699 Implemented full support for _CID methods that return a package of
   15700 multiple CIDs (Compatible IDs).  The AcpiGetObjectInfo() interface
   15701 now additionally returns a device _CID list if present.  This
   15702 required a change to the external interface in order to pass an
   15703 ACPI_BUFFER object as a parameter since the _CID list is of
   15704 variable length.
   15705 
   15706 Fixed a problem with the new AE_SAME_HANDLER exception where
   15707 handler initialization code did not know about this exception.
   15708 
   15709 Code and Data Size: Current and previous core subsystem library
   15710 sizes are shown below.  These are the code and data sizes for the
   15711 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
   15712 these values do not include any ACPI driver or OSPM code.  The
   15713 debug version of the code includes the debug output trace
   15714 mechanism and has a much larger code and data size.  Note that
   15715 these values will vary depending on the efficiency of the compiler
   15716 and the compiler options used during generation.
   15717 
   15718   Previous Release (20030509):
   15719     Non-Debug Version:  73.4K Code,   9.7K Data,   83.1K Total
   15720     Debug Version:     156.1K Code,  63.9K Data,  220.0K Total
   15721   Current Release:
   15722     Non-Debug Version:  73.7K Code,   9.7K Data,   83.4K Total
   15723     Debug Version:     156.9K Code,  64.2K Data,  221.1K Total
   15724 
   15725 
   15726 2) Linux:
   15727 
   15728 Fixed a bug in which we would reinitialize the ACPI interrupt
   15729 after it was already working, thus disabling all ACPI and the IRQs
   15730 for any other device sharing the interrupt. (Thanks to Stian
   15731 Jordet)
   15732 
   15733 Toshiba driver update (John Belmonte)
   15734 
   15735 Return only 0 or 1 for our interrupt handler status (Andrew
   15736 Morton)
   15737 
   15738 
   15739 3) iASL Compiler:
   15740 
   15741 Fixed a reported problem where multiple (nested) ElseIf()
   15742 statements were not handled correctly by the compiler, resulting
   15743 in incorrect warnings and incorrect AML code.  This was a problem
   15744 in both the ASL parser and the code generator.
   15745 
   15746 
   15747 4) Documentation:
   15748 
   15749 Added changes to existing interfaces, new exception codes, and new
   15750 text concerning reference count object management versus garbage
   15751 collection.
   15752 
   15753 ----------------------------------------
   15754 09 May 2003.  Summary of changes for version 20030509.
   15755 
   15756 
   15757 1) ACPI CA Core Subsystem:
   15758 
   15759 Changed the subsystem initialization sequence to hold off
   15760 installation of address space handlers until the hardware has been
   15761 initialized and the system has entered ACPI mode.  This is because
   15762 the installation of space handlers can cause _REG methods to be
   15763 run.  Previously, the _REG methods could potentially be run before
   15764 ACPI mode was enabled.
   15765 
   15766 Fixed some memory leak issues related to address space handler and
   15767 notify handler installation.  There were some problems with the
   15768 reference count mechanism caused by the fact that the handler
   15769 objects are shared across several namespace objects.
   15770 
   15771 Fixed a reported problem where reference counts within the
   15772 namespace were not properly updated when named objects created by
   15773 method execution were deleted.
   15774 
   15775 Fixed a reported problem where multiple SSDTs caused a deletion
   15776 issue during subsystem termination.  Restructured the table data
   15777 structures to simplify the linked lists and the related code.
   15778 
   15779 Fixed a problem where the table ID associated with secondary
   15780 tables (SSDTs) was not being propagated into the namespace objects
   15781 created by those tables.  This would only present a problem for
   15782 tables that are unloaded at run-time, however.
   15783 
   15784 Updated AcpiOsReadable and AcpiOsWritable to use the ACPI_SIZE
   15785 type as the length parameter (instead of UINT32).
   15786 
   15787 Solved a long-standing problem where an ALREADY_EXISTS error
   15788 appears on various systems.  This problem could happen when there
   15789 are multiple PCI_Config operation regions under a single PCI root
   15790 bus.  This doesn't happen very frequently, but there are some
   15791 systems that do this in the ASL.
   15792 
   15793 Fixed a reported problem where the internal DeleteNode function
   15794 was incorrectly handling the case where a namespace node was the
   15795 first in the parent's child list, and had additional peers (not
   15796 the only child, but first in the list of children.)
   15797 
   15798 Code and Data Size: Current core subsystem library sizes are shown
   15799 below.  These are the code and data sizes for the acpica.lib
   15800 produced by the Microsoft Visual C++ 6.0 compiler, and these
   15801 values do not include any ACPI driver or OSPM code.  The debug
   15802 version of the code includes the debug output trace mechanism and
   15803 has a much larger code and data size.  Note that these values will
   15804 vary depending on the efficiency of the compiler and the compiler
   15805 options used during generation.
   15806 
   15807   Previous Release
   15808     Non-Debug Version:  73.7K Code,   9.5K Data,   83.2K Total
   15809     Debug Version:     156.1K Code,  63.6K Data,  219.7K Total
   15810   Current Release:
   15811     Non-Debug Version:  73.4K Code,   9.7K Data,   83.1K Total
   15812     Debug Version:     156.1K Code,  63.9K Data,  220.0K Total
   15813 
   15814 
   15815 2) Linux:
   15816 
   15817 Allow ":" in OS override string (Ducrot Bruno)
   15818 
   15819 Kobject fix (Greg KH)
   15820 
   15821 
   15822 3 iASL Compiler/Disassembler:
   15823 
   15824 Fixed a problem in the generation of the C source code files (AML
   15825 is emitted in C source statements for BIOS inclusion) where the
   15826 Ascii dump that appears within a C comment at the end of each line
   15827 could cause a compile time error if the AML sequence happens to
   15828 have an open comment or close comment sequence embedded.
   15829 
   15830 
   15831 ----------------------------------------
   15832 24 April 2003.  Summary of changes for version 20030424.
   15833 
   15834 
   15835 1) ACPI CA Core Subsystem:
   15836 
   15837 Support for big-endian systems has been implemented.  Most of the
   15838 support has been invisibly added behind big-endian versions of the
   15839 ACPI_MOVE_* macros.
   15840 
   15841 Fixed a problem in AcpiHwDisableGpeBlock() and
   15842 AcpiHwClearGpeBlock() where an incorrect offset was passed to the
   15843 low level hardware write routine.  The offset parameter was
   15844 actually eliminated from the low level read/write routines because
   15845 they had become obsolete.
   15846 
   15847 Fixed a problem where a handler object was deleted twice during
   15848 the removal of a fixed event handler.
   15849 
   15850 
   15851 2) Linux:
   15852 
   15853 A fix for SMP systems with link devices was contributed by
   15854 
   15855 Compaq's Dan Zink.
   15856 
   15857 (2.5) Return whether we handled the interrupt in our IRQ handler.
   15858 (Linux ISRs no longer return void, so we can propagate the handler
   15859 return value from the ACPI CA core back to the OS.)
   15860 
   15861 
   15862 
   15863 3) Documentation:
   15864 
   15865 The ACPI CA Programmer Reference has been updated to reflect new
   15866 interfaces and changes to existing interfaces.
   15867 
   15868 ----------------------------------------
   15869 28 March 2003.  Summary of changes for version 20030328.
   15870 
   15871 1) ACPI CA Core Subsystem:
   15872 
   15873 The GPE Block Device support has been completed.  New interfaces
   15874 are AcpiInstallGpeBlock and AcpiRemoveGpeBlock.  The Event
   15875 interfaces (enable, disable, clear, getstatus) have been split
   15876 into separate interfaces for Fixed Events and General Purpose
   15877 Events (GPEs) in order to support GPE Block Devices properly.
   15878 
   15879 Fixed a problem where the error message "Failed to acquire
   15880 semaphore" would appear during operations on the embedded
   15881 controller (EC).
   15882 
   15883 Code and Data Size: Current core subsystem library sizes are shown
   15884 below.  These are the code and data sizes for the acpica.lib
   15885 produced by the Microsoft Visual C++ 6.0 compiler, and these
   15886 values do not include any ACPI driver or OSPM code.  The debug
   15887 version of the code includes the debug output trace mechanism and
   15888 has a much larger code and data size.  Note that these values will
   15889 vary depending on the efficiency of the compiler and the compiler
   15890 options used during generation.
   15891 
   15892   Previous Release
   15893     Non-Debug Version:  72.3K Code,   9.5K Data,   81.8K Total
   15894     Debug Version:     154.0K Code,  63.4K Data,  217.4K Total
   15895   Current Release:
   15896     Non-Debug Version:  73.7K Code,   9.5K Data,   83.2K Total
   15897     Debug Version:     156.1K Code,  63.6K Data,  219.7K Total
   15898 
   15899 
   15900 ----------------------------------------
   15901 28 February 2003.  Summary of changes for version 20030228.
   15902 
   15903 
   15904 1) ACPI CA Core Subsystem:
   15905 
   15906 The GPE handling and dispatch code has been completely overhauled
   15907 in preparation for support of GPE Block Devices (ID ACPI0006).
   15908 This affects internal data structures and code only; there should
   15909 be no differences visible externally.  One new file has been
   15910 added, evgpeblk.c
   15911 
   15912 The FADT fields GPE0_BLK_LEN and GPE1_BLK_LEN are now the only
   15913 fields that are used to determine the GPE block lengths.  The
   15914 REGISTER_BIT_WIDTH field of the X_GPEx_BLK extended address
   15915 structures are ignored.  This is per the ACPI specification but it
   15916 isn't very clear.  The full 256 Block 0/1 GPEs are now supported
   15917 (the use of REGISTER_BIT_WIDTH limited the number of GPEs to 128).
   15918 
   15919 In the SCI interrupt handler, removed the read of the PM1_CONTROL
   15920 register to look at the SCI_EN bit.  On some machines, this read
   15921 causes an SMI event and greatly slows down SCI events.  (This may
   15922 in fact be the cause of slow battery status response on some
   15923 systems.)
   15924 
   15925 Fixed a problem where a store of a NULL string to a package object
   15926 could cause the premature deletion of the object.  This was seen
   15927 during execution of the battery _BIF method on some systems,
   15928 resulting in no battery data being returned.
   15929 
   15930 Added AcpiWalkResources interface to simplify parsing of resource
   15931 lists.
   15932 
   15933 Code and Data Size: Current core subsystem library sizes are shown
   15934 below.  These are the code and data sizes for the acpica.lib
   15935 produced by the Microsoft Visual C++ 6.0 compiler, and these
   15936 values do not include any ACPI driver or OSPM code.  The debug
   15937 version of the code includes the debug output trace mechanism and
   15938 has a much larger code and data size.  Note that these values will
   15939 vary depending on the efficiency of the compiler and the compiler
   15940 options used during generation.
   15941 
   15942   Previous Release
   15943     Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
   15944     Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
   15945   Current Release:
   15946     Non-Debug Version:  72.3K Code,   9.5K Data,   81.8K Total
   15947     Debug Version:     154.0K Code,  63.4K Data,  217.4K Total
   15948 
   15949 
   15950 2) Linux
   15951 
   15952 S3 fixes (Ole Rohne)
   15953 
   15954 Update ACPI PHP driver with to use new acpi_walk_resource API
   15955 (Bjorn Helgaas)
   15956 
   15957 Add S4BIOS support (Pavel Machek)
   15958 
   15959 Map in entire table before performing checksum (John Stultz)
   15960 
   15961 Expand the mem= cmdline to allow the specification of reserved and
   15962 ACPI DATA blocks (Pavel Machek)
   15963 
   15964 Never use ACPI on VISWS
   15965 
   15966 Fix derive_pci_id (Ducrot Bruno, Alvaro Lopez)
   15967 
   15968 Revert a change that allowed P_BLK lengths to be 4 or 5. This is
   15969 causing us to think that some systems support C2 when they really
   15970 don't.
   15971 
   15972 Do not count processor objects for non-present CPUs (Thanks to
   15973 Dominik Brodowski)
   15974 
   15975 
   15976 3) iASL Compiler:
   15977 
   15978 Fixed a problem where ASL include files could not be found and
   15979 opened.
   15980 
   15981 Added support for the _PDC reserved name.
   15982 
   15983 
   15984 ----------------------------------------
   15985 22 January 2003.  Summary of changes for version 20030122.
   15986 
   15987 
   15988 1) ACPI CA Core Subsystem:
   15989 
   15990 Added a check for constructs of the form:  Store (Local0, Local0)
   15991 where Local0 is not initialized.  Apparently, some BIOS
   15992 programmers believe that this is a NOOP.  Since this store doesn't
   15993 do anything anyway, the new prototype behavior will ignore this
   15994 error.  This is a case where we can relax the strict checking in
   15995 the interpreter in the name of compatibility.
   15996 
   15997 
   15998 2) Linux
   15999 
   16000 The AcpiSrc Source Conversion Utility has been released with the
   16001 Linux package for the first time.  This is the utility that is
   16002 used to convert the ACPI CA base source code to the Linux version.
   16003 
   16004 (Both) Handle P_BLK lengths shorter than 6 more gracefully
   16005 
   16006 (Both) Move more headers to include/acpi, and delete an unused
   16007 header.
   16008 
   16009 (Both) Move drivers/acpi/include directory to include/acpi
   16010 
   16011 (Both) Boot functions don't use cmdline, so don't pass it around
   16012 
   16013 (Both) Remove include of unused header (Adrian Bunk)
   16014 
   16015 (Both) acpiphp.h includes both linux/acpi.h and acpi_bus.h. Since
   16016 the
   16017 former now also includes the latter, acpiphp.h only needs the one,
   16018 now.
   16019 
   16020 (2.5) Make it possible to select method of bios restoring after S3
   16021 resume. [=> no more ugly ifdefs] (Pavel Machek)
   16022 
   16023 (2.5) Make proc write interfaces work (Pavel Machek)
   16024 
   16025 (2.5) Properly init/clean up in cpufreq/acpi (Dominik Brodowski)
   16026 
   16027 (2.5) Break out ACPI Perf code into its own module, under cpufreq
   16028 (Dominik Brodowski)
   16029 
   16030 (2.4) S4BIOS support (Ducrot Bruno)
   16031 
   16032 (2.4) Fix acpiphp_glue.c for latest ACPI struct changes (Sergio
   16033 Visinoni)
   16034 
   16035 
   16036 3) iASL Compiler:
   16037 
   16038 Added support to disassemble SSDT and PSDTs.
   16039 
   16040 Implemented support to obtain SSDTs from the Windows registry if
   16041 available.
   16042 
   16043 
   16044 ----------------------------------------
   16045 09 January 2003.  Summary of changes for version 20030109.
   16046 
   16047 1) ACPI CA Core Subsystem:
   16048 
   16049 Changed the behavior of the internal Buffer-to-String conversion
   16050 function.  The current ACPI specification states that the contents
   16051 of the buffer are "converted to a string of two-character
   16052 hexadecimal numbers, each separated by a space".  Unfortunately,
   16053 this definition is not backwards compatible with existing ACPI 1.0
   16054 implementations (although the behavior was not defined in the ACPI
   16055 1.0 specification).  The new behavior simply copies data from the
   16056 buffer to the string until a null character is found or the end of
   16057 the buffer is reached.  The new String object is always null
   16058 terminated.  This problem was seen during the generation of _BIF
   16059 battery data where incorrect strings were returned for battery
   16060 type, etc.  This will also require an errata to the ACPI
   16061 specification.
   16062 
   16063 Renamed all instances of NATIVE_UINT and NATIVE_INT to
   16064 ACPI_NATIVE_UINT and ACPI_NATIVE_INT, respectively.
   16065 
   16066 Copyright in all module headers (both Linux and non-Linux) has be
   16067 updated to 2003.
   16068 
   16069 Code and Data Size: Current core subsystem library sizes are shown
   16070 below.  These are the code and data sizes for the acpica.lib
   16071 produced by the Microsoft Visual C++ 6.0 compiler, and these
   16072 values do not include any ACPI driver or OSPM code.  The debug
   16073 version of the code includes the debug output trace mechanism and
   16074 has a much larger code and data size.  Note that these values will
   16075 vary depending on the efficiency of the compiler and the compiler
   16076 options used during generation.
   16077 
   16078   Previous Release
   16079     Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
   16080     Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
   16081   Current Release:
   16082     Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
   16083     Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
   16084 
   16085 
   16086 2) Linux
   16087 
   16088 Fixed an oops on module insertion/removal (Matthew Tippett)
   16089 
   16090 (2.4) Fix to handle dynamic size of mp_irqs (Joerg Prante)
   16091 
   16092 (2.5) Replace pr_debug (Randy Dunlap)
   16093 
   16094 (2.5) Remove usage of CPUFREQ_ALL_CPUS (Dominik Brodowski)
   16095 
   16096 (Both) Eliminate spawning of thread from timer callback, in favor
   16097 of schedule_work()
   16098 
   16099 (Both) Show Lid status in /proc (Zdenek OGAR Skalak)
   16100 
   16101 (Both) Added define for Fixed Function HW region (Matthew Wilcox)
   16102 
   16103 (Both) Add missing statics to button.c (Pavel Machek)
   16104 
   16105 Several changes have been made to the source code translation
   16106 utility that generates the Linux Code in order to make the code
   16107 more "Linux-like":
   16108 
   16109 All typedefs on structs and unions have been removed in keeping
   16110 with the Linux coding style.
   16111 
   16112 Removed the non-Linux SourceSafe module revision number from each
   16113 module header.
   16114 
   16115 Completed major overhaul of symbols to be lowercase for linux.
   16116 Doubled the number of symbols that are lowercase.
   16117 
   16118 Fixed a problem where identifiers within procedure headers and
   16119 within quotes were not fully lower cased (they were left with a
   16120 starting capital.)
   16121 
   16122 Some C macros whose only purpose is to allow the generation of 16-
   16123 bit code are now completely removed in the Linux code, increasing
   16124 readability and maintainability.
   16125 
   16126 ----------------------------------------
   16127 
   16128 12 December 2002.  Summary of changes for version 20021212.
   16129 
   16130 
   16131 1) ACPI CA Core Subsystem:
   16132 
   16133 Fixed a problem where the creation of a zero-length AML Buffer
   16134 would cause a fault.
   16135 
   16136 Fixed a problem where a Buffer object that pointed to a static AML
   16137 buffer (in an ACPI table) could inadvertently be deleted, causing
   16138 memory corruption.
   16139 
   16140 Fixed a problem where a user buffer (passed in to the external
   16141 ACPI CA interfaces) could be overwritten if the buffer was too
   16142 small to complete the operation, causing memory corruption.
   16143 
   16144 Fixed a problem in the Buffer-to-String conversion code where a
   16145 string of length one was always returned, regardless of the size
   16146 of the input Buffer object.
   16147 
   16148 Removed the NATIVE_CHAR data type across the entire source due to
   16149 lack of need and lack of consistent use.
   16150 
   16151 Code and Data Size: Current core subsystem library sizes are shown
   16152 below.  These are the code and data sizes for the acpica.lib
   16153 produced by the Microsoft Visual C++ 6.0 compiler, and these
   16154 values do not include any ACPI driver or OSPM code.  The debug
   16155 version of the code includes the debug output trace mechanism and
   16156 has a much larger code and data size.  Note that these values will
   16157 vary depending on the efficiency of the compiler and the compiler
   16158 options used during generation.
   16159 
   16160   Previous Release
   16161     Non-Debug Version:  72.1K Code,   9.5K Data,   81.6K Total
   16162     Debug Version:     152.7K Code,  62.7K Data,  215.4K Total
   16163   Current Release:
   16164     Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
   16165     Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
   16166 
   16167 
   16168 ----------------------------------------
   16169 05 December 2002.  Summary of changes for version 20021205.
   16170 
   16171 1) ACPI CA Core Subsystem:
   16172 
   16173 Fixed a problem where a store to a String or Buffer object could
   16174 cause corruption of the DSDT if the object type being stored was
   16175 the same as the target object type and the length of the object
   16176 being stored was equal to or smaller than the original (existing)
   16177 target object.  This was seen to cause corruption of battery _BIF
   16178 buffers if the _BIF method modified the buffer on the fly.
   16179 
   16180 Fixed a problem where an internal error was generated if a control
   16181 method invocation was used in an OperationRegion, Buffer, or
   16182 Package declaration.  This was caused by the deferred parsing of
   16183 the control method and thus the deferred creation of the internal
   16184 method object.  The solution to this problem was to create the
   16185 internal method object at the moment the method is encountered in
   16186 the first pass - so that subsequent references to the method will
   16187 able to obtain the required parameter count and thus properly
   16188 parse the method invocation.  This problem presented itself as an
   16189 AE_AML_INTERNAL during the pass 1 parse phase during table load.
   16190 
   16191 Fixed a problem where the internal String object copy routine did
   16192 not always allocate sufficient memory for the target String object
   16193 and caused memory corruption.  This problem was seen to cause
   16194 "Allocation already present in list!" errors as memory allocation
   16195 became corrupted.
   16196 
   16197 Implemented a new function for the evaluation of namespace objects
   16198 that allows the specification of the allowable return object
   16199 types.  This simplifies a lot of code that checks for a return
   16200 object of one or more specific objects returned from the
   16201 evaluation (such as _STA, etc.)  This may become and external
   16202 function if it would be useful to ACPI-related drivers.
   16203 
   16204 Completed another round of prefixing #defines with "ACPI_" for
   16205 clarity.
   16206 
   16207 Completed additional code restructuring to allow more modular
   16208 linking for iASL compiler and AcpiExec.  Several files were split
   16209 creating new files.  New files:  nsparse.c dsinit.c evgpe.c
   16210 
   16211 Implemented an abort mechanism to terminate an executing control
   16212 method via the AML debugger.  This feature is useful for debugging
   16213 control methods that depend (wait) for specific hardware
   16214 responses.
   16215 
   16216 Code and Data Size: Current core subsystem library sizes are shown
   16217 below.  These are the code and data sizes for the acpica.lib
   16218 produced by the Microsoft Visual C++ 6.0 compiler, and these
   16219 values do not include any ACPI driver or OSPM code.  The debug
   16220 version of the code includes the debug output trace mechanism and
   16221 has a much larger code and data size.  Note that these values will
   16222 vary depending on the efficiency of the compiler and the compiler
   16223 options used during generation.
   16224 
   16225   Previous Release
   16226     Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
   16227     Debug Version:     152.9K Code,  63.3K Data,  216.2K Total
   16228   Current Release:
   16229     Non-Debug Version:  72.1K Code,   9.5K Data,   81.6K Total
   16230     Debug Version:     152.7K Code,  62.7K Data,  215.4K Total
   16231 
   16232 
   16233 2) iASL Compiler/Disassembler
   16234 
   16235 Fixed a compiler code generation problem for "Interrupt" Resource
   16236 Descriptors.  If specified in the ASL, the optional "Resource
   16237 Source Index" and "Resource Source" fields were not inserted into
   16238 the correct location within the AML resource descriptor, creating
   16239 an invalid descriptor.
   16240 
   16241 Fixed a disassembler problem for "Interrupt" resource descriptors.
   16242 The optional "Resource Source Index" and "Resource Source" fields
   16243 were ignored.
   16244 
   16245 
   16246 ----------------------------------------
   16247 22 November 2002.  Summary of changes for version 20021122.
   16248 
   16249 
   16250 1) ACPI CA Core Subsystem:
   16251 
   16252 Fixed a reported problem where an object stored to a Method Local
   16253 or Arg was not copied to a new object during the store - the
   16254 object pointer was simply copied to the Local/Arg.  This caused
   16255 all subsequent operations on the Local/Arg to also affect the
   16256 original source of the store operation.
   16257 
   16258 Fixed a problem where a store operation to a Method Local or Arg
   16259 was not completed properly if the Local/Arg contained a reference
   16260 (from RefOf) to a named field.  The general-purpose store-to-
   16261 namespace-node code is now used so that this case is handled
   16262 automatically.
   16263 
   16264 Fixed a problem where the internal object copy routine would cause
   16265 a protection fault if the object being copied was a Package and
   16266 contained either 1) a NULL package element or 2) a nested sub-
   16267 package.
   16268 
   16269 Fixed a problem with the GPE initialization that resulted from an
   16270 ambiguity in the ACPI specification.  One section of the
   16271 specification states that both the address and length of the GPE
   16272 block must be zero if the block is not supported.  Another section
   16273 implies that only the address need be zero if the block is not
   16274 supported.  The code has been changed so that both the address and
   16275 the length must be non-zero to indicate a valid GPE block (i.e.,
   16276 if either the address or the length is zero, the GPE block is
   16277 invalid.)
   16278 
   16279 Code and Data Size: Current core subsystem library sizes are shown
   16280 below.  These are the code and data sizes for the acpica.lib
   16281 produced by the Microsoft Visual C++ 6.0 compiler, and these
   16282 values do not include any ACPI driver or OSPM code.  The debug
   16283 version of the code includes the debug output trace mechanism and
   16284 has a much larger code and data size.  Note that these values will
   16285 vary depending on the efficiency of the compiler and the compiler
   16286 options used during generation.
   16287 
   16288   Previous Release
   16289     Non-Debug Version:  71.3K Code,   9.0K Data,   80.3K Total
   16290     Debug Version:     152.7K Code,  63.2K Data,  215.5K Total
   16291   Current Release:
   16292     Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
   16293     Debug Version:     152.9K Code,  63.3K Data,  216.2K Total
   16294 
   16295 
   16296 2) Linux
   16297 
   16298 Cleaned up EC driver. Exported an external EC read/write
   16299 interface. By going through this, other drivers (most notably
   16300 sonypi) will be able to serialize access to the EC.
   16301 
   16302 
   16303 3) iASL Compiler/Disassembler
   16304 
   16305 Implemented support to optionally generate include files for both
   16306 ASM and C (the -i switch).  This simplifies BIOS development by
   16307 automatically creating include files that contain external
   16308 declarations for the symbols that are created within the
   16309 
   16310 (optionally generated) ASM and C AML source files.
   16311 
   16312 
   16313 ----------------------------------------
   16314 15 November 2002.  Summary of changes for version 20021115.
   16315 
   16316 1) ACPI CA Core Subsystem:
   16317 
   16318 Fixed a memory leak problem where an error during resolution of
   16319 
   16320 method arguments during a method invocation from another method
   16321 failed to cleanup properly by deleting all successfully resolved
   16322 argument objects.
   16323 
   16324 Fixed a problem where the target of the Index() operator was not
   16325 correctly constructed if the source object was a package.  This
   16326 problem has not been detected because the use of a target operand
   16327 with Index() is very rare.
   16328 
   16329 Fixed a problem with the Index() operator where an attempt was
   16330 made to delete the operand objects twice.
   16331 
   16332 Fixed a problem where an attempt was made to delete an operand
   16333 twice during execution of the CondRefOf() operator if the target
   16334 did not exist.
   16335 
   16336 Implemented the first of perhaps several internal create object
   16337 functions that create and initialize a specific object type.  This
   16338 consolidates duplicated code wherever the object is created, thus
   16339 shrinking the size of the subsystem.
   16340 
   16341 Implemented improved debug/error messages for errors that occur
   16342 during nested method invocations.  All executing method pathnames
   16343 are displayed (with the error) as the call stack is unwound - thus
   16344 simplifying debug.
   16345 
   16346 Fixed a problem introduced in the 10/02 release that caused
   16347 premature deletion of a buffer object if a buffer was used as an
   16348 ASL operand where an integer operand is required (Thus causing an
   16349 implicit object conversion from Buffer to Integer.)  The change in
   16350 the 10/02 release was attempting to fix a memory leak (albeit
   16351 incorrectly.)
   16352 
   16353 Code and Data Size: Current core subsystem library sizes are shown
   16354 below.  These are the code and data sizes for the acpica.lib
   16355 produced by the Microsoft Visual C++ 6.0 compiler, and these
   16356 values do not include any ACPI driver or OSPM code.  The debug
   16357 version of the code includes the debug output trace mechanism and
   16358 has a much larger code and data size.  Note that these values will
   16359 vary depending on the efficiency of the compiler and the compiler
   16360 options used during generation.
   16361 
   16362   Previous Release
   16363     Non-Debug Version:  71.9K Code,   9.1K Data,   81.0K Total
   16364     Debug Version:     153.1K Code,  63.3K Data,  216.4K Total
   16365   Current Release:
   16366     Non-Debug Version:  71.3K Code,   9.0K Data,   80.3K Total
   16367     Debug Version:     152.7K Code,  63.2K Data,  215.5K Total
   16368 
   16369 
   16370 2) Linux
   16371 
   16372 Changed the implementation of the ACPI semaphores to use down()
   16373 instead of down_interruptable().  It is important that the
   16374 execution of ACPI control methods not be interrupted by signals.
   16375 Methods must run to completion, or the system may be left in an
   16376 unknown/unstable state.
   16377 
   16378 Fixed a compilation error when CONFIG_SOFTWARE_SUSPEND is not set.
   16379 (Shawn Starr)
   16380 
   16381 
   16382 3) iASL Compiler/Disassembler
   16383 
   16384 
   16385 Changed the default location of output files.  All output files
   16386 are now placed in the current directory by default instead of in
   16387 the directory of the source file.  This change may affect some
   16388 existing makefiles, but it brings the behavior of the compiler in
   16389 line with other similar tools.  The location of the output files
   16390 can be overridden with the -p command line switch.
   16391 
   16392 
   16393 ----------------------------------------
   16394 11 November 2002.  Summary of changes for version 20021111.
   16395 
   16396 
   16397 0) ACPI Specification 2.0B is released and is now available at:
   16398 http://www.acpi.info/index.html
   16399 
   16400 
   16401 1) ACPI CA Core Subsystem:
   16402 
   16403 Implemented support for the ACPI 2.0 SMBus Operation Regions.
   16404 This includes the early detection and handoff of the request to
   16405 the SMBus region handler (avoiding all of the complex field
   16406 support code), and support for the bidirectional return packet
   16407 from an SMBus write operation.  This paves the way for the
   16408 development of SMBus drivers in each host operating system.
   16409 
   16410 Fixed a problem where the semaphore WAIT_FOREVER constant was
   16411 defined as 32 bits, but must be 16 bits according to the ACPI
   16412 specification.  This had the side effect of causing ASL
   16413 Mutex/Event timeouts even though the ASL code requested a wait
   16414 forever.  Changed all internal references to the ACPI timeout
   16415 parameter to 16 bits to prevent future problems.  Changed the name
   16416 of WAIT_FOREVER to ACPI_WAIT_FOREVER.
   16417 
   16418 Code and Data Size: Current core subsystem library sizes are shown
   16419 below.  These are the code and data sizes for the acpica.lib
   16420 produced by the Microsoft Visual C++ 6.0 compiler, and these
   16421 values do not include any ACPI driver or OSPM code.  The debug
   16422 version of the code includes the debug output trace mechanism and
   16423 has a much larger code and data size.  Note that these values will
   16424 vary depending on the efficiency of the compiler and the compiler
   16425 options used during generation.
   16426 
   16427   Previous Release
   16428     Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
   16429     Debug Version:     152.3K Code,  63.0K Data,  215.3K Total
   16430   Current Release:
   16431     Non-Debug Version:  71.9K Code,   9.1K Data,   81.0K Total
   16432     Debug Version:     153.1K Code,  63.3K Data,  216.4K Total
   16433 
   16434 
   16435 2) Linux
   16436 
   16437 Module loading/unloading fixes (John Cagle)
   16438 
   16439 
   16440 3) iASL Compiler/Disassembler
   16441 
   16442 Added support for the SMBBlockProcessCall keyword (ACPI 2.0)
   16443 
   16444 Implemented support for the disassembly of all SMBus protocol
   16445 keywords (SMBQuick, SMBWord, etc.)
   16446 
   16447 ----------------------------------------
   16448 01 November 2002.  Summary of changes for version 20021101.
   16449 
   16450 
   16451 1) ACPI CA Core Subsystem:
   16452 
   16453 Fixed a problem where platforms that have a GPE1 block but no GPE0
   16454 block were not handled correctly.  This resulted in a "GPE
   16455 overlap" error message.  GPE0 is no longer required.
   16456 
   16457 Removed code added in the previous release that inserted nodes
   16458 into the namespace in alphabetical order.  This caused some side-
   16459 effects on various machines.  The root cause of the problem is
   16460 still under investigation since in theory, the internal ordering
   16461 of the namespace nodes should not matter.
   16462 
   16463 
   16464 Enhanced error reporting for the case where a named object is not
   16465 found during control method execution.  The full ACPI namepath
   16466 (name reference) of the object that was not found is displayed in
   16467 this case.
   16468 
   16469 Note: as a result of the overhaul of the namespace object types in
   16470 the previous release, the namespace nodes for the predefined
   16471 scopes (_TZ, _PR, etc.) are now of the type ACPI_TYPE_LOCAL_SCOPE
   16472 instead of ACPI_TYPE_ANY.  This simplifies the namespace
   16473 management code but may affect code that walks the namespace tree
   16474 looking for specific object types.
   16475 
   16476 Code and Data Size: Current core subsystem library sizes are shown
   16477 below.  These are the code and data sizes for the acpica.lib
   16478 produced by the Microsoft Visual C++ 6.0 compiler, and these
   16479 values do not include any ACPI driver or OSPM code.  The debug
   16480 version of the code includes the debug output trace mechanism and
   16481 has a much larger code and data size.  Note that these values will
   16482 vary depending on the efficiency of the compiler and the compiler
   16483 options used during generation.
   16484 
   16485   Previous Release
   16486     Non-Debug Version:  70.7K Code,   8.6K Data,   79.3K Total
   16487     Debug Version:     151.7K Code,  62.4K Data,  214.1K Total
   16488   Current Release:
   16489     Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
   16490     Debug Version:     152.3K Code,  63.0K Data,  215.3K Total
   16491 
   16492 
   16493 2) Linux
   16494 
   16495 Fixed a problem introduced in the previous release where the
   16496 Processor and Thermal objects were not recognized and installed in
   16497 /proc.  This was related to the scope type change described above.
   16498 
   16499 
   16500 3) iASL Compiler/Disassembler
   16501 
   16502 Implemented the -g option to get all of the required ACPI tables
   16503 from the registry and save them to files (Windows version of the
   16504 compiler only.)  The required tables are the FADT, FACS, and DSDT.
   16505 
   16506 Added ACPI table checksum validation during table disassembly in
   16507 order to catch corrupted tables.
   16508 
   16509 
   16510 ----------------------------------------
   16511 22 October 2002.  Summary of changes for version 20021022.
   16512 
   16513 1) ACPI CA Core Subsystem:
   16514 
   16515 Implemented a restriction on the Scope operator that the target
   16516 must already exist in the namespace at the time the operator is
   16517 encountered (during table load or method execution).  In other
   16518 words, forward references are not allowed and Scope() cannot
   16519 create a new object. This changes the previous behavior where the
   16520 interpreter would create the name if not found.  This new behavior
   16521 correctly enables the search-to-root algorithm during namespace
   16522 lookup of the target name.  Because of this upsearch, this fixes
   16523 the known Compaq _SB_.OKEC problem and makes both the AML
   16524 interpreter and iASL compiler compatible with other ACPI
   16525 implementations.
   16526 
   16527 Completed a major overhaul of the internal ACPI object types for
   16528 the ACPI Namespace and the associated operand objects.  Many of
   16529 these types had become obsolete with the introduction of the two-
   16530 pass namespace load.  This cleanup simplifies the code and makes
   16531 the entire namespace load mechanism much clearer and easier to
   16532 understand.
   16533 
   16534 Improved debug output for tracking scope opening/closing to help
   16535 diagnose scoping issues.  The old scope name as well as the new
   16536 scope name are displayed.  Also improved error messages for
   16537 problems with ASL Mutex objects and error messages for GPE
   16538 problems.
   16539 
   16540 Cleaned up the namespace dump code, removed obsolete code.
   16541 
   16542 All string output (for all namespace/object dumps) now uses the
   16543 common ACPI string output procedure which handles escapes properly
   16544 and does not emit non-printable characters.
   16545 
   16546 Fixed some issues with constants in the 64-bit version of the
   16547 local C library (utclib.c)
   16548 
   16549 
   16550 2) Linux
   16551 
   16552 EC Driver:  No longer attempts to acquire the Global Lock at
   16553 interrupt level.
   16554 
   16555 
   16556 3) iASL Compiler/Disassembler
   16557 
   16558 Implemented ACPI 2.0B grammar change that disallows all Type 1 and
   16559 2 opcodes outside of a control method.  This means that the
   16560 "executable" operators (versus the "namespace" operators) cannot
   16561 be used at the table level; they can only be used within a control
   16562 method.
   16563 
   16564 Implemented the restriction on the Scope() operator where the
   16565 target must already exist in the namespace at the time the
   16566 operator is encountered (during ASL compilation). In other words,
   16567 forward references are not allowed and Scope() cannot create a new
   16568 object.  This makes the iASL compiler compatible with other ACPI
   16569 implementations and makes the Scope() implementation adhere to the
   16570 ACPI specification.
   16571 
   16572 Fixed a problem where namepath optimization for the Alias operator
   16573 was optimizing the wrong path (of the two namepaths.)  This caused
   16574 a "Missing alias link" error message.
   16575 
   16576 Fixed a problem where an "unknown reserved name" warning could be
   16577 incorrectly generated for names like "_SB" when the trailing
   16578 underscore is not used in the original ASL.
   16579 
   16580 Fixed a problem where the reserved name check did not handle
   16581 NamePaths with multiple NameSegs correctly.  The first nameseg of
   16582 the NamePath was examined instead of the last NameSeg.
   16583 
   16584 
   16585 ----------------------------------------
   16586 
   16587 02 October 2002.  Summary of changes for this release.
   16588 
   16589 
   16590 1) ACPI CA Core Subsystem version 20021002:
   16591 
   16592 Fixed a problem where a store/copy of a string to an existing
   16593 string did not always set the string length properly in the String
   16594 object.
   16595 
   16596 Fixed a reported problem with the ToString operator where the
   16597 behavior was identical to the ToHexString operator instead of just
   16598 simply converting a raw buffer to a string data type.
   16599 
   16600 Fixed a problem where CopyObject and the other "explicit"
   16601 conversion operators were not updating the internal namespace node
   16602 type as part of the store operation.
   16603 
   16604 Fixed a memory leak during implicit source operand conversion
   16605 where the original object was not deleted if it was converted to a
   16606 new object of a different type.
   16607 
   16608 Enhanced error messages for all problems associated with namespace
   16609 lookups.  Common procedure generates and prints the lookup name as
   16610 well as the formatted status.
   16611 
   16612 Completed implementation of a new design for the Alias support
   16613 within the namespace.  The existing design did not handle the case
   16614 where a new object was assigned to one of the two names due to the
   16615 use of an explicit conversion operator, resulting in the two names
   16616 pointing to two different objects.  The new design simply points
   16617 the Alias name to the original name node - not to the object.
   16618 This results in a level of indirection that must be handled in the
   16619 name resolution mechanism.
   16620 
   16621 Code and Data Size: Current core subsystem library sizes are shown
   16622 below.  These are the code and data sizes for the acpica.lib
   16623 produced by the Microsoft Visual C++ 6.0 compiler, and these
   16624 values do not include any ACPI driver or OSPM code.  The debug
   16625 version of the code includes the debug output trace mechanism and
   16626 has a larger code and data size.  Note that these values will vary
   16627 depending on the efficiency of the compiler and the compiler
   16628 options used during generation.
   16629 
   16630   Previous Release
   16631     Non-Debug Version:  69.6K Code,   8.3K Data,   77.9K Total
   16632     Debug Version:     150.0K Code,  61.7K Data,  211.7K Total
   16633   Current Release:
   16634     Non-Debug Version:  70.7K Code,   8.6K Data,   79.3K Total
   16635     Debug Version:     151.7K Code,  62.4K Data,  214.1K Total
   16636 
   16637 
   16638 2) Linux
   16639 
   16640 Initialize thermal driver's timer before it is used. (Knut
   16641 Neumann)
   16642 
   16643 Allow handling negative celsius values. (Kochi Takayoshi)
   16644 
   16645 Fix thermal management and make trip points. R/W (Pavel Machek)
   16646 
   16647 Fix /proc/acpi/sleep. (P. Christeas)
   16648 
   16649 IA64 fixes. (David Mosberger)
   16650 
   16651 Fix reversed logic in blacklist code. (Sergio Monteiro Basto)
   16652 
   16653 Replace ACPI_DEBUG define with ACPI_DEBUG_OUTPUT. (Dominik
   16654 Brodowski)
   16655 
   16656 
   16657 3) iASL Compiler/Disassembler
   16658 
   16659 Clarified some warning/error messages.
   16660 
   16661 
   16662 ----------------------------------------
   16663 18 September 2002.  Summary of changes for this release.
   16664 
   16665 
   16666 1) ACPI CA Core Subsystem version 20020918:
   16667 
   16668 Fixed a reported problem with reference chaining (via the Index()
   16669 and RefOf() operators) in the ObjectType() and SizeOf() operators.
   16670 The definition of these operators includes the dereferencing of
   16671 all chained references to return information on the base object.
   16672 
   16673 Fixed a problem with stores to indexed package elements - the
   16674 existing code would not complete the store if an "implicit
   16675 conversion" was not performed.  In other words, if the existing
   16676 object (package element) was to be replaced completely, the code
   16677 didn't handle this case.
   16678 
   16679 Relaxed typechecking on the ASL "Scope" operator to allow the
   16680 target name to refer to an object of type Integer, String, or
   16681 Buffer, in addition to the scoping object types (Device,
   16682 predefined Scopes, Processor, PowerResource, and ThermalZone.)
   16683 This allows existing AML code that has workarounds for a bug in
   16684 Windows to function properly.  A warning is issued, however.  This
   16685 affects both the AML interpreter and the iASL compiler. Below is
   16686 an example of this type of ASL code:
   16687 
   16688       Name(DEB,0x00)
   16689       Scope(DEB)
   16690       {
   16691 
   16692 Fixed some reported problems with 64-bit integer support in the
   16693 local implementation of C library functions (clib.c)
   16694 
   16695 
   16696 2) Linux
   16697 
   16698 Use ACPI fix map region instead of IOAPIC region, since it is
   16699 undefined in non-SMP.
   16700 
   16701 Ensure that the SCI has the proper polarity and trigger, even on
   16702 systems that do not have an interrupt override entry in the MADT.
   16703 
   16704 2.5 big driver reorganization (Pat Mochel)
   16705 
   16706 Use early table mapping code from acpitable.c (Andi Kleen)
   16707 
   16708 New blacklist entries (Andi Kleen)
   16709 
   16710 Blacklist improvements. Split blacklist code out into a separate
   16711 file. Move checking the blacklist to very early. Previously, we
   16712 would use ACPI tables, and then halfway through init, check the
   16713 blacklist -- too late. Now, it's early enough to completely fall-
   16714 back to non-ACPI.
   16715 
   16716 
   16717 3) iASL Compiler/Disassembler version 20020918:
   16718 
   16719 Fixed a problem where the typechecking code didn't know that an
   16720 alias could point to a method.  In other words, aliases were not
   16721 being dereferenced during typechecking.
   16722 
   16723 
   16724 ----------------------------------------
   16725 29 August 2002.  Summary of changes for this release.
   16726 
   16727 1) ACPI CA Core Subsystem Version 20020829:
   16728 
   16729 If the target of a Scope() operator already exists, it must be an
   16730 object type that actually opens a scope -- such as a Device,
   16731 Method, Scope, etc.  This is a fatal runtime error.  Similar error
   16732 check has been added to the iASL compiler also.
   16733 
   16734 Tightened up the namespace load to disallow multiple names in the
   16735 same scope.  This previously was allowed if both objects were of
   16736 the same type.  (i.e., a lookup was the same as entering a new
   16737 name).
   16738 
   16739 
   16740 2) Linux
   16741 
   16742 Ensure that the ACPI interrupt has the proper trigger and
   16743 polarity.
   16744 
   16745 local_irq_disable is extraneous. (Matthew Wilcox)
   16746 
   16747 Make "acpi=off" actually do what it says, and not use the ACPI
   16748 interpreter *or* the tables.
   16749 
   16750 Added arch-neutral support for parsing SLIT and SRAT tables (Kochi
   16751 Takayoshi)
   16752 
   16753 
   16754 3) iASL Compiler/Disassembler  Version 20020829:
   16755 
   16756 Implemented namepath optimization for name declarations.  For
   16757 example, a declaration like "Method (\_SB_.ABCD)" would get
   16758 optimized to "Method (ABCD)" if the declaration is within the
   16759 \_SB_ scope.  This optimization is in addition to the named
   16760 reference path optimization first released in the previous
   16761 version. This would seem to complete all possible optimizations
   16762 for namepaths within the ASL/AML.
   16763 
   16764 If the target of a Scope() operator already exists, it must be an
   16765 object type that actually opens a scope -- such as a Device,
   16766 Method, Scope, etc.
   16767 
   16768 Implemented a check and warning for unreachable code in the same
   16769 block below a Return() statement.
   16770 
   16771 Fixed a problem where the listing file was not generated if the
   16772 compiler aborted if the maximum error count was exceeded (200).
   16773 
   16774 Fixed a problem where the typechecking of method return values was
   16775 broken.  This includes the check for a return value when the
   16776 method is invoked as a TermArg (a return value is expected.)
   16777 
   16778 Fixed a reported problem where EOF conditions during a quoted
   16779 string or comment caused a fault.
   16780 
   16781 
   16782 ----------------------------------------
   16783 15 August 2002.  Summary of changes for this release.
   16784 
   16785 1) ACPI CA Core Subsystem Version 20020815:
   16786 
   16787 Fixed a reported problem where a Store to a method argument that
   16788 contains a reference did not perform the indirect store correctly.
   16789 This problem was created during the conversion to the new
   16790 reference object model - the indirect store to a method argument
   16791 code was not updated to reflect the new model.
   16792 
   16793 Reworked the ACPI mode change code to better conform to ACPI 2.0,
   16794 handle corner cases, and improve code legibility (Kochi Takayoshi)
   16795 
   16796 Fixed a problem with the pathname parsing for the carat (^)
   16797 prefix.  The heavy use of the carat operator by the new namepath
   16798 optimization in the iASL compiler uncovered a problem with the AML
   16799 interpreter handling of this prefix.  In the case where one or
   16800 more carats precede a single nameseg, the nameseg was treated as
   16801 standalone and the search rule (to root) was inadvertently
   16802 applied.  This could cause both the iASL compiler and the
   16803 interpreter to find the wrong object or to miss the error that
   16804 should occur if the object does not exist at that exact pathname.
   16805 
   16806 Found and fixed the problem where the HP Pavilion DSDT would not
   16807 load.  This was a relatively minor tweak to the table loading code
   16808 (a problem caused by the unexpected encounter with a method
   16809 invocation not within a control method), but it does not solve the
   16810 overall issue of the execution of AML code at the table level.
   16811 This investigation is still ongoing.
   16812 
   16813 Code and Data Size: Current core subsystem library sizes are shown
   16814 below.  These are the code and data sizes for the acpica.lib
   16815 produced by the Microsoft Visual C++ 6.0 compiler, and these
   16816 values do not include any ACPI driver or OSPM code.  The debug
   16817 version of the code includes the debug output trace mechanism and
   16818 has a larger code and data size.  Note that these values will vary
   16819 depending on the efficiency of the compiler and the compiler
   16820 options used during generation.
   16821 
   16822   Previous Release
   16823     Non-Debug Version:  69.1K Code,   8.2K Data,   77.3K Total
   16824     Debug Version:     149.4K Code,  61.6K Data,  211.0K Total
   16825   Current Release:
   16826     Non-Debug Version:  69.6K Code,   8.3K Data,   77.9K Total
   16827     Debug Version:     150.0K Code,  61.7K Data,  211.7K Total
   16828 
   16829 
   16830 2) Linux
   16831 
   16832 Remove redundant slab.h include (Brad Hards)
   16833 
   16834 Fix several bugs in thermal.c (Herbert Nachtnebel)
   16835 
   16836 Make CONFIG_ACPI_BOOT work properly (Pavel Machek)
   16837 
   16838 Change acpi_system_suspend to use updated irq functions (Pavel
   16839 Machek)
   16840 
   16841 Export acpi_get_firmware_table (Matthew Wilcox)
   16842 
   16843 Use proper root proc entry for ACPI (Kochi Takayoshi)
   16844 
   16845 Fix early-boot table parsing (Bjorn Helgaas)
   16846 
   16847 
   16848 3) iASL Compiler/Disassembler
   16849 
   16850 Reworked the compiler options to make them more consistent and to
   16851 use two-letter options where appropriate.  We were running out of
   16852 sensible letters.   This may break some makefiles, so check the
   16853 current options list by invoking the compiler with no parameters.
   16854 
   16855 Completed the design and implementation of the ASL namepath
   16856 optimization option for the compiler.  This option optimizes all
   16857 references to named objects to the shortest possible path.  The
   16858 first attempt tries to utilize a single nameseg (4 characters) and
   16859 the "search-to-root" algorithm used by the interpreter.  If that
   16860 cannot be used (because either the name is not in the search path
   16861 or there is a conflict with another object with the same name),
   16862 the pathname is optimized using the carat prefix (usually a
   16863 shorter string than specifying the entire path from the root.)
   16864 
   16865 Implemented support to obtain the DSDT from the Windows registry
   16866 (when the disassembly option is specified with no input file).
   16867 Added this code as the implementation for AcpiOsTableOverride in
   16868 the Windows OSL.  Migrated the 16-bit code (used in the AcpiDump
   16869 utility) to scan memory for the DSDT to the AcpiOsTableOverride
   16870 function in the DOS OSL to make the disassembler truly OS
   16871 independent.
   16872 
   16873 Implemented a new option to disassemble and compile in one step.
   16874 When used without an input filename, this option will grab the
   16875 DSDT from the local machine, disassemble it, and compile it in one
   16876 step.
   16877 
   16878 Added a warning message for invalid escapes (a backslash followed
   16879 by any character other than the allowable escapes).  This catches
   16880 the quoted string error "\_SB_" (which should be "\\_SB_" ).
   16881 
   16882 Also, there are numerous instances in the ACPI specification where
   16883 this error occurs.
   16884 
   16885 Added a compiler option to disable all optimizations.  This is
   16886 basically the "compatibility mode" because by using this option,
   16887 the AML code will come out exactly the same as other ASL
   16888 compilers.
   16889 
   16890 Added error messages for incorrectly ordered dependent resource
   16891 functions.  This includes: missing EndDependentFn macro at end of
   16892 dependent resource list, nested dependent function macros (both
   16893 start and end), and missing StartDependentFn macro.  These are
   16894 common errors that should be caught at compile time.
   16895 
   16896 Implemented _OSI support for the disassembler and compiler.  _OSI
   16897 must be included in the namespace for proper disassembly (because
   16898 the disassembler must know the number of arguments.)
   16899 
   16900 Added an "optimization" message type that is optional (off by
   16901 default).  This message is used for all optimizations - including
   16902 constant folding, integer optimization, and namepath optimization.
   16903 
   16904 ----------------------------------------
   16905 25 July 2002.  Summary of changes for this release.
   16906 
   16907 
   16908 1) ACPI CA Core Subsystem Version 20020725:
   16909 
   16910 The AML Disassembler has been enhanced to produce compilable ASL
   16911 code and has been integrated into the iASL compiler (see below) as
   16912 well as the single-step disassembly for the AML debugger and the
   16913 disassembler for the AcpiDump utility.  All ACPI 2.0A opcodes,
   16914 resource templates and macros are fully supported.  The
   16915 disassembler has been tested on over 30 different AML files,
   16916 producing identical AML when the resulting disassembled ASL file
   16917 is recompiled with the same ASL compiler.
   16918 
   16919 Modified the Resource Manager to allow zero interrupts and zero
   16920 dma channels during the GetCurrentResources call.  This was
   16921 causing problems on some platforms.
   16922 
   16923 Added the AcpiOsRedirectOutput interface to the OSL to simplify
   16924 output redirection for the AcpiOsPrintf and AcpiOsVprintf
   16925 interfaces.
   16926 
   16927 Code and Data Size: Current core subsystem library sizes are shown
   16928 below.  These are the code and data sizes for the acpica.lib
   16929 produced by the Microsoft Visual C++ 6.0 compiler, and these
   16930 values do not include any ACPI driver or OSPM code.  The debug
   16931 version of the code includes the debug output trace mechanism and
   16932 has a larger code and data size.  Note that these values will vary
   16933 depending on the efficiency of the compiler and the compiler
   16934 options used during generation.
   16935 
   16936   Previous Release
   16937     Non-Debug Version:  68.7K Code,   7.4K Data,   76.1K Total
   16938     Debug Version:     142.9K Code,  58.7K Data,  201.6K Total
   16939   Current Release:
   16940     Non-Debug Version:  69.1K Code,   8.2K Data,   77.3K Total
   16941     Debug Version:     149.4K Code,  61.6K Data,  211.0K Total
   16942 
   16943 
   16944 2) Linux
   16945 
   16946 Fixed a panic in the EC driver (Dominik Brodowski)
   16947 
   16948 Implemented checksum of the R/XSDT itself during Linux table scan
   16949 (Richard Schaal)
   16950 
   16951 
   16952 3) iASL compiler
   16953 
   16954 The AML disassembler is integrated into the compiler.  The "-d"
   16955 option invokes the disassembler  to completely disassemble an
   16956 input AML file, producing as output a text ASL file with the
   16957 extension ".dsl" (to avoid name collisions with existing .asl
   16958 source files.)  A future enhancement will allow the disassembler
   16959 to obtain the BIOS DSDT from the registry under Windows.
   16960 
   16961 Fixed a problem with the VendorShort and VendorLong resource
   16962 descriptors where an invalid AML sequence was created.
   16963 
   16964 Implemented a fix for BufferData term in the ASL parser.  It was
   16965 inadvertently defined twice, allowing invalid syntax to pass and
   16966 causing reduction conflicts.
   16967 
   16968 Fixed a problem where the Ones opcode could get converted to a
   16969 value of zero if "Ones" was used where a byte, word or dword value
   16970 was expected.  The 64-bit value is now truncated to the correct
   16971 size with the correct value.
   16972 
   16973 
   16974 
   16975 ----------------------------------------
   16976 02 July 2002.  Summary of changes for this release.
   16977 
   16978 
   16979 1) ACPI CA Core Subsystem Version 20020702:
   16980 
   16981 The Table Manager code has been restructured to add several new
   16982 features.  Tables that are not required by the core subsystem
   16983 (other than the FADT, DSDT, FACS, PSDTs, etc.) are no longer
   16984 validated in any way and are returned from AcpiGetFirmwareTable if
   16985 requested.  The AcpiOsTableOverride interface is now called for
   16986 each table that is loaded by the subsystem in order to allow the
   16987 host to override any table it chooses.  Previously, only the DSDT
   16988 could be overridden.  Added one new files, tbrsdt.c and
   16989 tbgetall.c.
   16990 
   16991 Fixed a problem with the conversion of internal package objects to
   16992 external objects (when a package is returned from a control
   16993 method.)  The return buffer length was set to zero instead of the
   16994 proper length of the package object.
   16995 
   16996 Fixed a reported problem with the use of the RefOf and DeRefOf
   16997 operators when passing reference arguments to control methods.  A
   16998 new type of Reference object is used internally for references
   16999 produced by the RefOf operator.
   17000 
   17001 Added additional error messages in the Resource Manager to explain
   17002 AE_BAD_DATA errors when they occur during resource parsing.
   17003 
   17004 Split the AcpiEnableSubsystem into two primitives to enable a
   17005 finer granularity initialization sequence.  These two calls should
   17006 be called in this order: AcpiEnableSubsystem (flags),
   17007 AcpiInitializeObjects (flags).  The flags parameter remains the
   17008 same.
   17009 
   17010 
   17011 2) Linux
   17012 
   17013 Updated the ACPI utilities module to understand the new style of
   17014 fully resolved package objects that are now returned from the core
   17015 subsystem.  This eliminates errors of the form:
   17016 
   17017     ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PPB_._PRT]
   17018     acpi_utils-0430 [145] acpi_evaluate_reference:
   17019         Invalid element in package (not a device reference)
   17020 
   17021 The method evaluation utility uses the new buffer allocation
   17022 scheme instead of calling AcpiEvaluate Object twice.
   17023 
   17024 Added support for ECDT. This allows the use of the Embedded
   17025 
   17026 Controller before the namespace has been fully initialized, which
   17027 is necessary for ACPI 2.0 support, and for some laptops to
   17028 initialize properly. (Laptops using ECDT are still rare, so only
   17029 limited testing was performed of the added functionality.)
   17030 
   17031 Fixed memory leaks in the EC driver.
   17032 
   17033 Eliminated a brittle code structure in acpi_bus_init().
   17034 
   17035 Eliminated the acpi_evaluate() helper function in utils.c. It is
   17036 no longer needed since acpi_evaluate_object can optionally
   17037 allocate memory for the return object.
   17038 
   17039 Implemented fix for keyboard hang when getting battery readings on
   17040 some systems (Stephen White)
   17041 
   17042 PCI IRQ routing update (Dominik Brodowski)
   17043 
   17044 Fix an ifdef to allow compilation on UP with LAPIC but no IOAPIC
   17045 support
   17046 
   17047 ----------------------------------------
   17048 11 June 2002.  Summary of changes for this release.
   17049 
   17050 
   17051 1) ACPI CA Core Subsystem Version 20020611:
   17052 
   17053 Fixed a reported problem where constants such as Zero and One
   17054 appearing within _PRT packages were not handled correctly within
   17055 the resource manager code.  Originally reported against the ASL
   17056 compiler because the code generator now optimizes integers to
   17057 their minimal AML representation (i.e. AML constants if possible.)
   17058 The _PRT code now handles all AML constant opcodes correctly
   17059 (Zero, One, Ones, Revision).
   17060 
   17061 Fixed a problem with the Concatenate operator in the AML
   17062 interpreter where a buffer result object was incorrectly marked as
   17063 not fully evaluated, causing a run-time error of AE_AML_INTERNAL.
   17064 
   17065 All package sub-objects are now fully resolved before they are
   17066 returned from the external ACPI interfaces.  This means that name
   17067 strings are resolved to object handles, and constant operators
   17068 (Zero, One, Ones, Revision) are resolved to Integers.
   17069 
   17070 Implemented immediate resolution of the AML Constant opcodes
   17071 (Zero, One, Ones, Revision) to Integer objects upon detection
   17072 within the AML stream. This has simplified and reduced the
   17073 generated code size of the subsystem by eliminating about 10
   17074 switch statements for these constants (which previously were
   17075 contained in Reference objects.)  The complicating issues are that
   17076 the Zero opcode is used as a "placeholder" for unspecified
   17077 optional target operands and stores to constants are defined to be
   17078 no-ops.
   17079 
   17080 Code and Data Size: Current core subsystem library sizes are shown
   17081 below. These are the code and data sizes for the acpica.lib
   17082 produced by the Microsoft Visual C++ 6.0 compiler, and these
   17083 values do not include any ACPI driver or OSPM code.  The debug
   17084 version of the code includes the debug output trace mechanism and
   17085 has a larger code and data size.  Note that these values will vary
   17086 depending on the efficiency of the compiler and the compiler
   17087 options used during generation.
   17088 
   17089   Previous Release
   17090     Non-Debug Version:  69.3K Code,   7.4K Data,   76.7K Total
   17091     Debug Version:     143.8K Code,  58.8K Data,  202.6K Total
   17092   Current Release:
   17093     Non-Debug Version:  68.7K Code,   7.4K Data,   76.1K Total
   17094     Debug Version:     142.9K Code,  58.7K Data,  201.6K Total
   17095 
   17096 
   17097 2) Linux
   17098 
   17099 
   17100 Added preliminary support for obtaining _TRA data for PCI root
   17101 bridges (Bjorn Helgaas).
   17102 
   17103 
   17104 3) iASL Compiler Version X2046:
   17105 
   17106 Fixed a problem where the "_DDN" reserved name was defined to be a
   17107 control method with one argument.  There are no arguments, and
   17108 _DDN does not have to be a control method.
   17109 
   17110 Fixed a problem with the Linux version of the compiler where the
   17111 source lines printed with error messages were the wrong lines.
   17112 This turned out to be the "LF versus CR/LF" difference between
   17113 Windows and Unix.  This appears to be the longstanding issue
   17114 concerning listing output and error messages.
   17115 
   17116 Fixed a problem with the Linux version of compiler where opcode
   17117 names within error messages were wrong.  This was caused by a
   17118 slight difference in the output of the Flex tool on Linux versus
   17119 Windows.
   17120 
   17121 Fixed a problem with the Linux compiler where the hex output files
   17122 contained some garbage data caused by an internal buffer overrun.
   17123 
   17124 
   17125 ----------------------------------------
   17126 17 May 2002.  Summary of changes for this release.
   17127 
   17128 
   17129 1) ACPI CA Core Subsystem Version 20020517:
   17130 
   17131 Implemented a workaround to an BIOS bug discovered on the HP
   17132 OmniBook where the FADT revision number and the table size are
   17133 inconsistent (ACPI 2.0 revision vs. ACPI 1.0 table size).  The new
   17134 behavior is to fallback to using only the ACPI 1.0 fields of the
   17135 FADT if the table is too small to be a ACPI 2.0 table as claimed
   17136 by the revision number.  Although this is a BIOS bug, this is a
   17137 case where the workaround is simple enough and with no side
   17138 effects, so it seemed prudent to add it.  A warning message is
   17139 issued, however.
   17140 
   17141 Implemented minimum size checks for the fixed-length ACPI tables -
   17142 - the FADT and FACS, as well as consistency checks between the
   17143 revision number and the table size.
   17144 
   17145 Fixed a reported problem in the table override support where the
   17146 new table pointer was incorrectly treated as a physical address
   17147 instead of a logical address.
   17148 
   17149 Eliminated the use of the AE_AML_ERROR exception and replaced it
   17150 with more descriptive codes.
   17151 
   17152 Fixed a problem where an exception would occur if an ASL Field was
   17153 defined with no named Field Units underneath it (used by some
   17154 index fields).
   17155 
   17156 Code and Data Size: Current core subsystem library sizes are shown
   17157 below.  These are the code and data sizes for the acpica.lib
   17158 produced by the Microsoft Visual C++ 6.0 compiler, and these
   17159 values do not include any ACPI driver or OSPM code.  The debug
   17160 version of the code includes the debug output trace mechanism and
   17161 has a larger code and data size.  Note that these values will vary
   17162 depending on the efficiency of the compiler and the compiler
   17163 options used during generation.
   17164 
   17165   Previous Release
   17166     Non-Debug Version:  68.8K Code,   7.1K Data,   75.9K Total
   17167     Debug Version:     142.9K Code,  58.4K Data,  201.3K Total
   17168   Current Release:
   17169     Non-Debug Version:  69.3K Code,   7.4K Data,   76.7K Total
   17170     Debug Version:     143.8K Code,  58.8K Data,  202.6K Total
   17171 
   17172 
   17173 
   17174 2) Linux
   17175 
   17176 Much work done on ACPI init (MADT and PCI IRQ routing support).
   17177 (Paul D. and Dominik Brodowski)
   17178 
   17179 Fix PCI IRQ-related panic on boot (Sam Revitch)
   17180 
   17181 Set BM_ARB_DIS when entering a sleep state (Ducrot Bruno)
   17182 
   17183 Fix "MHz" typo (Dominik Brodowski)
   17184 
   17185 Fix RTC year 2000 issue (Dominik Brodowski)
   17186 
   17187 Preclude multiple button proc entries (Eric Brunet)
   17188 
   17189 Moved arch-specific code out of include/platform/aclinux.h
   17190 
   17191 3) iASL Compiler Version X2044:
   17192 
   17193 Implemented error checking for the string used in the EISAID macro
   17194 (Usually used in the definition of the _HID object.)  The code now
   17195 strictly enforces the PnP format - exactly 7 characters, 3
   17196 uppercase letters and 4 hex digits.
   17197 
   17198 If a raw string is used in the definition of the _HID object
   17199 (instead of the EISAID macro), the string must contain all
   17200 alphanumeric characters (e.g., "*PNP0011" is not allowed because
   17201 of the asterisk.)
   17202 
   17203 Implemented checking for invalid use of ACPI reserved names for
   17204 most of the name creation operators (Name, Device, Event, Mutex,
   17205 OperationRegion, PowerResource, Processor, and ThermalZone.)
   17206 Previously, this check was only performed for control methods.
   17207 
   17208 Implemented an additional check on the Name operator to emit an
   17209 error if a reserved name that must be implemented in ASL as a
   17210 control method is used.  We know that a reserved name must be a
   17211 method if it is defined with input arguments.
   17212 
   17213 The warning emitted when a namespace object reference is not found
   17214 during the cross reference phase has been changed into an error.
   17215 The "External" directive should be used for names defined in other
   17216 modules.
   17217 
   17218 
   17219 4) Tools and Utilities
   17220 
   17221 The 16-bit tools (adump16 and aexec16) have been regenerated and
   17222 tested.
   17223 
   17224 Fixed a problem with the output of both acpidump and adump16 where
   17225 the indentation of closing parentheses and brackets was not
   17226 
   17227 aligned properly with the parent block.
   17228 
   17229 
   17230 ----------------------------------------
   17231 03 May 2002.  Summary of changes for this release.
   17232 
   17233 
   17234 1) ACPI CA Core Subsystem Version 20020503:
   17235 
   17236 Added support a new OSL interface that allows the host operating
   17237 
   17238 system software to override the DSDT found in the firmware -
   17239 AcpiOsTableOverride.  With this interface, the OSL can examine the
   17240 version of the firmware DSDT and replace it with a different one
   17241 if desired.
   17242 
   17243 Added new external interfaces for accessing ACPI registers from
   17244 device drivers and other system software - AcpiGetRegister and
   17245 AcpiSetRegister.  This was simply an externalization of the
   17246 existing AcpiHwBitRegister interfaces.
   17247 
   17248 Fixed a regression introduced in the previous build where the
   17249 ASL/AML CreateField operator always returned an error,
   17250 "destination must be a NS Node".
   17251 
   17252 Extended the maximum time (before failure) to successfully enable
   17253 ACPI mode to 3 seconds.
   17254 
   17255 Code and Data Size: Current core subsystem library sizes are shown
   17256 below.  These are the code and data sizes for the acpica.lib
   17257 produced by the Microsoft Visual C++ 6.0 compiler, and these
   17258 values do not include any ACPI driver or OSPM code.  The debug
   17259 version of the code includes the debug output trace mechanism and
   17260 has a larger code and data size.  Note that these values will vary
   17261 depending on the efficiency of the compiler and the compiler
   17262 options used during generation.
   17263 
   17264   Previous Release
   17265     Non-Debug Version:  68.5K Code,   7.0K Data,   75.5K Total
   17266     Debug Version:     142.4K Code,  58.3K Data,  200.7K Total
   17267   Current Release:
   17268     Non-Debug Version:  68.8K Code,   7.1K Data,   75.9K Total
   17269     Debug Version:     142.9K Code,  58.4K Data,  201.3K Total
   17270 
   17271 
   17272 2) Linux
   17273 
   17274 Enhanced ACPI init code for SMP. We are now fully MPS and $PIR-
   17275 free. While 3 out of 4 of our in-house systems work fine, the last
   17276 one still hangs when testing the LAPIC timer.
   17277 
   17278 Renamed many files in 2.5 kernel release to omit "acpi_" from the
   17279 name.
   17280 
   17281 Added warning on boot for Presario 711FR.
   17282 
   17283 Sleep improvements (Pavel Machek)
   17284 
   17285 ACPI can now be built without CONFIG_PCI enabled.
   17286 
   17287 IA64: Fixed memory map functions (JI Lee)
   17288 
   17289 
   17290 3) iASL Compiler Version X2043:
   17291 
   17292 Added support to allow the compiler to be integrated into the MS
   17293 VC++ development environment for one-button compilation of single
   17294 files or entire projects -- with error-to-source-line mapping.
   17295 
   17296 Implemented support for compile-time constant folding for the
   17297 Type3, Type4, and Type5 opcodes first defined in the ACPI 2.0
   17298 specification.  This allows the ASL writer to use expressions
   17299 instead of Integer/Buffer/String constants in terms that must
   17300 evaluate to constants at compile time and will also simplify the
   17301 emitted AML in any such sub-expressions that can be folded
   17302 (evaluated at compile-time.)  This increases the size of the
   17303 compiler significantly because a portion of the ACPI CA AML
   17304 interpreter is included within the compiler in order to pre-
   17305 evaluate constant expressions.
   17306 
   17307 
   17308 Fixed a problem with the "Unicode" ASL macro that caused the
   17309 compiler to fault.  (This macro is used in conjunction with the
   17310 _STR reserved name.)
   17311 
   17312 Implemented an AML opcode optimization to use the Zero, One, and
   17313 Ones opcodes where possible to further reduce the size of integer
   17314 constants and thus reduce the overall size of the generated AML
   17315 code.
   17316 
   17317 Implemented error checking for new reserved terms for ACPI version
   17318 2.0A.
   17319 
   17320 Implemented the -qr option to display the current list of ACPI
   17321 reserved names known to the compiler.
   17322 
   17323 Implemented the -qc option to display the current list of ASL
   17324 operators that are allowed within constant expressions and can
   17325 therefore be folded at compile time if the operands are constants.
   17326 
   17327 
   17328 4) Documentation
   17329 
   17330 Updated the Programmer's Reference for new interfaces, data types,
   17331 and memory allocation model options.
   17332 
   17333 Updated the iASL Compiler User Reference to apply new format and
   17334 add information about new features and options.
   17335 
   17336 ----------------------------------------
   17337 19 April 2002.  Summary of changes for this release.
   17338 
   17339 1) ACPI CA Core Subsystem Version 20020419:
   17340 
   17341 The source code base for the Core Subsystem has been completely
   17342 cleaned with PC-lint (FlexLint) for both 32-bit and 64-bit
   17343 versions.  The Lint option files used are included in the
   17344 /acpi/generate/lint directory.
   17345 
   17346 Implemented enhanced status/error checking across the entire
   17347 Hardware manager subsystem.  Any hardware errors (reported from
   17348 the OSL) are now bubbled up and will abort a running control
   17349 method.
   17350 
   17351 
   17352 Fixed a problem where the per-ACPI-table integer width (32 or 64)
   17353 was stored only with control method nodes, causing a fault when
   17354 non-control method code was executed during table loading.  The
   17355 solution implemented uses a global variable to indicate table
   17356 width across the entire ACPI subsystem.  Therefore, ACPI CA does
   17357 not support mixed integer widths across different ACPI tables
   17358 (DSDT, SSDT).
   17359 
   17360 Fixed a problem where NULL extended fields (X fields) in an ACPI
   17361 2.0 ACPI FADT caused the table load to fail.  Although the
   17362 existing ACPI specification is a bit fuzzy on this topic, the new
   17363 behavior is to fall back on a ACPI 1.0 field if the corresponding
   17364 ACPI 2.0 X field is zero (even though the table revision indicates
   17365 a full ACPI 2.0 table.)  The ACPI specification will be updated to
   17366 clarify this issue.
   17367 
   17368 Fixed a problem with the SystemMemory operation region handler
   17369 where memory was always accessed byte-wise even if the AML-
   17370 specified access width was larger than a byte.  This caused
   17371 problems on systems with memory-mapped I/O.  Memory is now
   17372 accessed with the width specified.  On systems that do not support
   17373 non-aligned transfers, a check is made to guarantee proper address
   17374 alignment before proceeding in order to avoid an AML-caused
   17375 alignment fault within the kernel.
   17376 
   17377 
   17378 Fixed a problem with the ExtendedIrq resource where only one byte
   17379 of the 4-byte Irq field was extracted.
   17380 
   17381 Fixed the AcpiExDigitsNeeded() procedure to support _UID.  This
   17382 function was out of date and required a rewrite.
   17383 
   17384 Code and Data Size: Current core subsystem library sizes are shown
   17385 below.  These are the code and data sizes for the acpica.lib
   17386 produced by the Microsoft Visual C++ 6.0 compiler, and these
   17387 values do not include any ACPI driver or OSPM code.  The debug
   17388 version of the code includes the debug output trace mechanism and
   17389 has a larger code and data size.  Note that these values will vary
   17390 depending on the efficiency of the compiler and the compiler
   17391 options used during generation.
   17392 
   17393   Previous Release
   17394     Non-Debug Version:  66.6K Code,   6.5K Data,   73.1K Total
   17395     Debug Version:     139.8K Code,  57.4K Data,  197.2K Total
   17396   Current Release:
   17397     Non-Debug Version:  68.5K Code,   7.0K Data,   75.5K Total
   17398     Debug Version:     142.4K Code,  58.3K Data,  200.7K Total
   17399 
   17400 
   17401 2) Linux
   17402 
   17403 PCI IRQ routing fixes (Dominik Brodowski)
   17404 
   17405 
   17406 3) iASL Compiler Version X2042:
   17407 
   17408 Implemented an additional compile-time error check for a field
   17409 unit whose size + minimum access width would cause a run-time
   17410 access beyond the end-of-region.  Previously, only the field size
   17411 itself was checked.
   17412 
   17413 The Core subsystem and iASL compiler now share a common parse
   17414 object in preparation for compile-time evaluation of the type
   17415 3/4/5 ASL operators.
   17416 
   17417 
   17418 ----------------------------------------
   17419 Summary of changes for this release: 03_29_02
   17420 
   17421 1) ACPI CA Core Subsystem Version 20020329:
   17422 
   17423 Implemented support for late evaluation of TermArg operands to
   17424 Buffer and Package objects.  This allows complex expressions to be
   17425 used in the declarations of these object types.
   17426 
   17427 Fixed an ACPI 1.0 compatibility issue when reading Fields. In ACPI
   17428 1.0, if the field was larger than 32 bits, it was returned as a
   17429 buffer - otherwise it was returned as an integer.  In ACPI 2.0,
   17430 the field is returned as a buffer only if the field is larger than
   17431 64 bits.  The TableRevision is now considered when making this
   17432 conversion to avoid incompatibility with existing ASL code.
   17433 
   17434 Implemented logical addressing for AcpiOsGetRootPointer.  This
   17435 allows an RSDP with either a logical or physical address.  With
   17436 this support, the host OS can now override all ACPI tables with
   17437 one logical RSDP.  Includes implementation of  "typed" pointer
   17438 support to allow a common data type for both physical and logical
   17439 pointers internally.  This required a change to the
   17440 AcpiOsGetRootPointer interface.
   17441 
   17442 Implemented the use of ACPI 2.0 Generic Address Structures for all
   17443 GPE, Fixed Event, and PM Timer I/O.  This allows the use of memory
   17444 mapped I/O for these ACPI features.
   17445 
   17446 Initialization now ignores not only non-required tables (All
   17447 tables other than the FADT, FACS, DSDT, and SSDTs), but also does
   17448 not validate the table headers of unrecognized tables.
   17449 
   17450 Fixed a problem where a notify handler could only be
   17451 installed/removed on an object of type Device.  All "notify"
   17452 
   17453 objects are now supported -- Devices, Processor, Power, and
   17454 Thermal.
   17455 
   17456 Removed most verbosity from the ACPI_DB_INFO debug level.  Only
   17457 critical information is returned when this debug level is enabled.
   17458 
   17459 Code and Data Size: Current core subsystem library sizes are shown
   17460 below.  These are the code and data sizes for the acpica.lib
   17461 produced by the Microsoft Visual C++ 6.0 compiler, and these
   17462 values do not include any ACPI driver or OSPM code.  The debug
   17463 version of the code includes the debug output trace mechanism and
   17464 has a larger code and data size.  Note that these values will vary
   17465 depending on the efficiency of the compiler and the compiler
   17466 options used during generation.
   17467 
   17468   Previous Release
   17469     Non-Debug Version:  65.4K Code,   6.2K Data,   71.6K Total
   17470     Debug Version:     138.0K Code,  56.6K Data,  194.6K Total
   17471   Current Release:
   17472     Non-Debug Version:  66.6K Code,   6.5K Data,   73.1K Total
   17473     Debug Version:     139.8K Code,  57.4K Data,  197.2K Total
   17474 
   17475 
   17476 2) Linux:
   17477 
   17478 The processor driver (acpi_processor.c) now fully supports ACPI
   17479 2.0-based processor performance control (e.g. Intel(R)
   17480 SpeedStep(TM) technology) Note that older laptops that only have
   17481 the Intel "applet" interface are not supported through this.  The
   17482 'limit' and 'performance' interface (/proc) are fully functional.
   17483 [Note that basic policy for controlling performance state
   17484 transitions will be included in the next version of ospmd.]  The
   17485 idle handler was modified to more aggressively use C2, and PIIX4
   17486 errata handling underwent a complete overhaul (big thanks to
   17487 Dominik Brodowski).
   17488 
   17489 Added support for ACPI-PCI device binding (acpi_pci_root.c). _ADR-
   17490 based devices in the ACPI namespace are now dynamically bound
   17491 (associated) with their PCI counterparts (e.g. PCI1->01:00.0).
   17492 This allows, among other things, ACPI to resolve bus numbers for
   17493 subordinate PCI bridges.
   17494 
   17495 Enhanced PCI IRQ routing to get the proper bus number for _PRT
   17496 entries defined underneath PCI bridges.
   17497 
   17498 Added IBM 600E to bad bios list due to invalid _ADR value for
   17499 PIIX4 PCI-ISA bridge, resulting in improper PCI IRQ routing.
   17500 
   17501 In the process of adding full MADT support (e.g. IOAPIC) for IA32
   17502 (acpi.c, mpparse.c) -- stay tuned.
   17503 
   17504 Added back visual differentiation between fixed-feature and
   17505 control-method buttons in dmesg.  Buttons are also subtyped (e.g.
   17506 button/power/PWRF) to simplify button identification.
   17507 
   17508 We no longer use -Wno-unused when compiling debug. Please ignore
   17509 any "_THIS_MODULE defined but not used" messages.
   17510 
   17511 Can now shut down the system using "magic sysrq" key.
   17512 
   17513 
   17514 3) iASL Compiler version 2041:
   17515 
   17516 Fixed a problem where conversion errors for hex/octal/decimal
   17517 constants were not reported.
   17518 
   17519 Implemented a fix for the General Register template Address field.
   17520 This field was 8 bits when it should be 64.
   17521 
   17522 Fixed a problem where errors/warnings were no longer being emitted
   17523 within the listing output file.
   17524 
   17525 Implemented the ACPI 2.0A restriction on ACPI Table Signatures to
   17526 exactly 4 characters, alphanumeric only.
   17527 
   17528 
   17529 
   17530 
   17531 ----------------------------------------
   17532 Summary of changes for this release: 03_08_02
   17533 
   17534 
   17535 1) ACPI CA Core Subsystem Version 20020308:
   17536 
   17537 Fixed a problem with AML Fields where the use of the "AccessAny"
   17538 keyword could cause an interpreter error due to attempting to read
   17539 or write beyond the end of the parent Operation Region.
   17540 
   17541 Fixed a problem in the SystemMemory Operation Region handler where
   17542 an attempt was made to map memory beyond the end of the region.
   17543 This was the root cause of the "AE_ERROR" and "AE_NO_MEMORY"
   17544 errors on some Linux systems.
   17545 
   17546 Fixed a problem where the interpreter/namespace "search to root"
   17547 algorithm was not functioning for some object types.  Relaxed the
   17548 internal restriction on the search to allow upsearches for all
   17549 external object types as well as most internal types.
   17550 
   17551 
   17552 2) Linux:
   17553 
   17554 We now use safe_halt() macro versus individual calls to sti | hlt.
   17555 
   17556 Writing to the processor limit interface should now work. "echo 1"
   17557 will increase the limit, 2 will decrease, and 0 will reset to the
   17558 
   17559 default.
   17560 
   17561 
   17562 3) ASL compiler:
   17563 
   17564 Fixed segfault on Linux version.
   17565 
   17566 
   17567 ----------------------------------------
   17568 Summary of changes for this release: 02_25_02
   17569 
   17570 1) ACPI CA Core Subsystem:
   17571 
   17572 
   17573 Fixed a problem where the GPE bit masks were not initialized
   17574 properly, causing erratic GPE behavior.
   17575 
   17576 Implemented limited support for multiple calling conventions.  The
   17577 code can be generated with either the VPL (variable parameter
   17578 list, or "C") convention, or the FPL (fixed parameter list, or
   17579 "Pascal") convention.  The core subsystem is about 3.4% smaller
   17580 when generated with FPL.
   17581 
   17582 
   17583 2) Linux
   17584 
   17585 Re-add some /proc/acpi/event functionality that was lost during
   17586 the rewrite
   17587 
   17588 Resolved issue with /proc events for fixed-feature buttons showing
   17589 up as the system device.
   17590 
   17591 Fixed checks on C2/C3 latencies to be inclusive of maximum values.
   17592 
   17593 Replaced AE_ERRORs in acpi_osl.c with more specific error codes.
   17594 
   17595 Changed ACPI PRT option from "pci=noacpi-routing" to "pci=noacpi"
   17596 
   17597 Fixed limit interface & usage to fix bugs with passive cooling
   17598 hysterisis.
   17599 
   17600 Restructured PRT support.
   17601 
   17602 
   17603 ----------------------------------------
   17604 Summary of changes for this label: 02_14_02
   17605 
   17606 
   17607 1) ACPI CA Core Subsystem:
   17608 
   17609 Implemented support in AcpiLoadTable to allow loading of FACS and
   17610 FADT tables.
   17611 
   17612 Support for the now-obsolete interim 0.71 64-bit ACPI tables has
   17613 been removed.  All 64-bit platforms should be migrated to the ACPI
   17614 2.0 tables.  The actbl71.h header has been removed from the source
   17615 tree.
   17616 
   17617 All C macros defined within the subsystem have been prefixed with
   17618 "ACPI_" to avoid collision with other system include files.
   17619 
   17620 Removed the return value for the two AcpiOsPrint interfaces, since
   17621 it is never used and causes lint warnings for ignoring the return
   17622 value.
   17623 
   17624 Added error checking to all internal mutex acquire and release
   17625 calls.  Although a failure from one of these interfaces is
   17626 probably a fatal system error, these checks will cause the
   17627 immediate abort of the currently executing method or interface.
   17628 
   17629 Fixed a problem where the AcpiSetCurrentResources interface could
   17630 fault.  This was a side effect of the deployment of the new memory
   17631 allocation model.
   17632 
   17633 Fixed a couple of problems with the Global Lock support introduced
   17634 in the last major build.  The "common" (1.0/2.0) internal FACS was
   17635 being overwritten with the FACS signature and clobbering the
   17636 Global Lock pointer.  Also, the actual firmware FACS was being
   17637 unmapped after construction of the "common" FACS, preventing
   17638 access to the actual Global Lock field within it.  The "common"
   17639 internal FACS is no longer installed as an actual ACPI table; it
   17640 is used simply as a global.
   17641 
   17642 Code and Data Size: Current core subsystem library sizes are shown
   17643 below.  These are the code and data sizes for the acpica.lib
   17644 produced by the Microsoft Visual C++ 6.0 compiler, and these
   17645 values do not include any ACPI driver or OSPM code.  The debug
   17646 version of the code includes the debug output trace mechanism and
   17647 has a larger code and data size.  Note that these values will vary
   17648 depending on the efficiency of the compiler and the compiler
   17649 options used during generation.
   17650 
   17651   Previous Release (02_07_01)
   17652     Non-Debug Version:  65.2K Code,   6.2K Data,   71.4K Total
   17653     Debug Version:     136.9K Code,  56.4K Data,  193.3K Total
   17654   Current Release:
   17655     Non-Debug Version:  65.4K Code,   6.2K Data,   71.6K Total
   17656     Debug Version:     138.0K Code,  56.6K Data,  194.6K Total
   17657 
   17658 
   17659 2) Linux
   17660 
   17661 Updated Linux-specific code for core macro and OSL interface
   17662 changes described above.
   17663 
   17664 Improved /proc/acpi/event. It now can be opened only once and has
   17665 proper poll functionality.
   17666 
   17667 Fixed and restructured power management (acpi_bus).
   17668 
   17669 Only create /proc "view by type" when devices of that class exist.
   17670 
   17671 Fixed "charging/discharging" bug (and others) in acpi_battery.
   17672 
   17673 Improved thermal zone code.
   17674 
   17675 
   17676 3) ASL Compiler, version X2039:
   17677 
   17678 
   17679 Implemented the new compiler restriction on ASL String hex/octal
   17680 escapes to non-null, ASCII values.  An error results if an invalid
   17681 value is used.  (This will require an ACPI 2.0 specification
   17682 change.)
   17683 
   17684 AML object labels that are output to the optional C and ASM source
   17685 are now prefixed with both the ACPI table signature and table ID
   17686 to help guarantee uniqueness within a large BIOS project.
   17687 
   17688 
   17689 ----------------------------------------
   17690 Summary of changes for this label: 02_01_02
   17691 
   17692 1) ACPI CA Core Subsystem:
   17693 
   17694 ACPI 2.0 support is complete in the entire Core Subsystem and the
   17695 ASL compiler. All new ACPI 2.0 operators are implemented and all
   17696 other changes for ACPI 2.0 support are complete.  With
   17697 simultaneous code and data optimizations throughout the subsystem,
   17698 ACPI 2.0 support has been implemented with almost no additional
   17699 cost in terms of code and data size.
   17700 
   17701 Implemented a new mechanism for allocation of return buffers.  If
   17702 the buffer length is set to ACPI_ALLOCATE_BUFFER, the buffer will
   17703 be allocated on behalf of the caller.  Consolidated all return
   17704 buffer validation and allocation to a common procedure.  Return
   17705 buffers will be allocated via the primary OSL allocation interface
   17706 since it appears that a separate pool is not needed by most users.
   17707 If a separate pool is required for these buffers, the caller can
   17708 still use the original mechanism and pre-allocate the buffer(s).
   17709 
   17710 Implemented support for string operands within the DerefOf
   17711 operator.
   17712 
   17713 Restructured the Hardware and Event managers to be table driven,
   17714 simplifying the source code and reducing the amount of generated
   17715 code.
   17716 
   17717 Split the common read/write low-level ACPI register bitfield
   17718 procedure into a separate read and write, simplifying the code
   17719 considerably.
   17720 
   17721 Obsoleted the AcpiOsCallocate OSL interface.  This interface was
   17722 used only a handful of times and didn't have enough critical mass
   17723 for a separate interface.  Replaced with a common calloc procedure
   17724 in the core.
   17725 
   17726 Fixed a reported problem with the GPE number mapping mechanism
   17727 that allows GPE1 numbers to be non-contiguous with GPE0.
   17728 Reorganized the GPE information and shrunk a large array that was
   17729 originally large enough to hold info for all possible GPEs (256)
   17730 to simply large enough to hold all GPEs up to the largest GPE
   17731 number on the machine.
   17732 
   17733 Fixed a reported problem with resource structure alignment on 64-
   17734 bit platforms.
   17735 
   17736 Changed the AcpiEnableEvent and AcpiDisableEvent external
   17737 interfaces to not require any flags for the common case of
   17738 enabling/disabling a GPE.
   17739 
   17740 Implemented support to allow a "Notify" on a Processor object.
   17741 
   17742 Most TBDs in comments within the source code have been resolved
   17743 and eliminated.
   17744 
   17745 
   17746 Fixed a problem in the interpreter where a standalone parent
   17747 prefix (^) was not handled correctly in the interpreter and
   17748 debugger.
   17749 
   17750 Removed obsolete and unnecessary GPE save/restore code.
   17751 
   17752 Implemented Field support in the ASL Load operator.  This allows a
   17753 table to be loaded from a named field, in addition to loading a
   17754 table directly from an Operation Region.
   17755 
   17756 Implemented timeout and handle support in the external Global Lock
   17757 interfaces.
   17758 
   17759 Fixed a problem in the AcpiDump utility where pathnames were no
   17760 longer being generated correctly during the dump of named objects.
   17761 
   17762 Modified the AML debugger to give a full display of if/while
   17763 predicates instead of just one AML opcode at a time.  (The
   17764 predicate can have several nested ASL statements.)  The old method
   17765 was confusing during single stepping.
   17766 
   17767 Code and Data Size: Current core subsystem library sizes are shown
   17768 below. These are the code and data sizes for the acpica.lib
   17769 produced by the Microsoft Visual C++ 6.0 compiler, and these
   17770 values do not include any ACPI driver or OSPM code.  The debug
   17771 version of the code includes the debug output trace mechanism and
   17772 has a larger code and data size.  Note that these values will vary
   17773 depending on the efficiency of the compiler and the compiler
   17774 options used during generation.
   17775 
   17776   Previous Release (12_18_01)
   17777      Non-Debug Version:  66.1K Code,   5.5K Data,   71.6K Total
   17778      Debug Version:     138.3K Code,  55.9K Data,  194.2K Total
   17779    Current Release:
   17780      Non-Debug Version:  65.2K Code,   6.2K Data,   71.4K Total
   17781      Debug Version:     136.9K Code,  56.4K Data,  193.3K Total
   17782 
   17783 2) Linux
   17784 
   17785  Implemented fix for PIIX reverse throttling errata (Processor
   17786 driver)
   17787 
   17788 Added new Limit interface (Processor and Thermal drivers)
   17789 
   17790 New thermal policy (Thermal driver)
   17791 
   17792 Many updates to /proc
   17793 
   17794 Battery "low" event support (Battery driver)
   17795 
   17796 Supports ACPI PCI IRQ routing (PCI Link and PCI root drivers)
   17797 
   17798 IA32 - IA64 initialization unification, no longer experimental
   17799 
   17800 Menuconfig options redesigned
   17801 
   17802 3) ASL Compiler, version X2037:
   17803 
   17804 Implemented several new output features to simplify integration of
   17805 AML code into  firmware: 1) Output the AML in C source code with
   17806 labels for each named ASL object.  The    original ASL source code
   17807 is interleaved as C comments. 2) Output the AML in ASM source code
   17808 with labels and interleaved ASL    source. 3) Output the AML in
   17809 raw hex table form, in either C or ASM.
   17810 
   17811 Implemented support for optional string parameters to the
   17812 LoadTable operator.
   17813 
   17814 Completed support for embedded escape sequences within string
   17815 literals.  The compiler now supports all single character escapes
   17816 as well as the Octal and Hex escapes.  Note: the insertion of a
   17817 null byte into a string literal (via the hex/octal escape) causes
   17818 the string to be immediately terminated.  A warning is issued.
   17819 
   17820 Fixed a problem where incorrect AML was generated for the case
   17821 where an ASL namepath consists of a single parent prefix (
   17822 
   17823 ) with no trailing name segments.
   17824 
   17825 The compiler has been successfully generated with a 64-bit C
   17826 compiler.
   17827 
   17828 
   17829 
   17830 
   17831 ----------------------------------------
   17832 Summary of changes for this label: 12_18_01
   17833 
   17834 1) Linux
   17835 
   17836 Enhanced blacklist with reason and severity fields. Any table's
   17837 signature may now be used to identify a blacklisted system.
   17838 
   17839 Call _PIC control method to inform the firmware which interrupt
   17840 model the OS is using. Turn on any disabled link devices.
   17841 
   17842 Cleaned up busmgr /proc error handling (Andreas Dilger)
   17843 
   17844  2) ACPI CA Core Subsystem:
   17845 
   17846 Implemented ACPI 2.0 semantics for the "Break" operator (Exit from
   17847 while loop)
   17848 
   17849 Completed implementation of the ACPI 2.0 "Continue",
   17850 "ConcatenateResTemplate", "DataTableRegion", and "LoadTable"
   17851 operators.  All new ACPI 2.0 operators are now implemented in both
   17852 the ASL compiler and the AML interpreter.  The only remaining ACPI
   17853 2.0 task is support for the String data type in the DerefOf
   17854 operator.  Fixed a problem with AcquireMutex where the status code
   17855 was lost if the caller had to actually wait for the mutex.
   17856 
   17857 Increased the maximum ASL Field size from 64K bits to 4G bits.
   17858 
   17859 Completed implementation of the external Global Lock interfaces --
   17860 AcpiAcquireGlobalLock and AcpiReleaseGlobalLock.  The Timeout and
   17861 Handler parameters were added.
   17862 
   17863 Completed another pass at removing warnings and issues when
   17864 compiling with 64-bit compilers.  The code now compiles cleanly
   17865 with the Intel 64-bit C/C++ compiler.  Most notably, the pointer
   17866 add and subtract (diff) macros have changed considerably.
   17867 
   17868 
   17869 Created and deployed a new ACPI_SIZE type that is 64-bits wide on
   17870 64-bit platforms, 32-bits on all others.  This type is used
   17871 wherever memory allocation and/or the C sizeof() operator is used,
   17872 and affects the OSL memory allocation interfaces AcpiOsAllocate
   17873 and AcpiOsCallocate.
   17874 
   17875 Implemented sticky user breakpoints in the AML debugger.
   17876 
   17877 Code and Data Size: Current core subsystem library sizes are shown
   17878 below. These are the code and data sizes for the acpica.lib
   17879 produced by the Microsoft Visual C++ 6.0 compiler, and these
   17880 values do not include any ACPI driver or OSPM code.  The debug
   17881 version of the code includes the debug output trace mechanism and
   17882 has a larger code and data size. Note that these values will vary
   17883 depending on the efficiency of the compiler and the compiler
   17884 options used during generation.
   17885 
   17886   Previous Release (12_05_01)
   17887      Non-Debug Version:  64.7K Code,   5.3K Data,   70.0K Total
   17888      Debug Version:     136.2K Code,  55.6K Data,  191.8K Total
   17889    Current Release:
   17890      Non-Debug Version:  66.1K Code,   5.5K Data,   71.6K Total
   17891      Debug Version:     138.3K Code,  55.9K Data,  194.2K Total
   17892 
   17893  3) ASL Compiler, version X2034:
   17894 
   17895 Now checks for (and generates an error if detected) the use of a
   17896 Break or Continue statement without an enclosing While statement.
   17897 
   17898 
   17899 Successfully generated the compiler with the Intel 64-bit C
   17900 compiler.
   17901 
   17902  ----------------------------------------
   17903 Summary of changes for this label: 12_05_01
   17904 
   17905  1) ACPI CA Core Subsystem:
   17906 
   17907 The ACPI 2.0 CopyObject operator is fully implemented.  This
   17908 operator creates a new copy of an object (and is also used to
   17909 bypass the "implicit conversion" mechanism of the Store operator.)
   17910 
   17911 The ACPI 2.0 semantics for the SizeOf operator are fully
   17912 implemented.  The change is that performing a SizeOf on a
   17913 reference object causes an automatic dereference of the object to
   17914 the actual value before the size is evaluated. This behavior was
   17915 undefined in ACPI 1.0.
   17916 
   17917 The ACPI 2.0 semantics for the Extended IRQ resource descriptor
   17918 have been implemented.  The interrupt polarity and mode are now
   17919 independently set.
   17920 
   17921 Fixed a problem where ASL Constants (Zero, One, Ones, Revision)
   17922 appearing in Package objects were not properly converted to
   17923 integers when the internal Package was converted to an external
   17924 object (via the AcpiEvaluateObject interface.)
   17925 
   17926 Fixed a problem with the namespace object deletion mechanism for
   17927 objects created by control methods.  There were two parts to this
   17928 problem: 1) Objects created during the initialization phase method
   17929 parse were not being deleted, and 2) The object owner ID mechanism
   17930 to track objects was broken.
   17931 
   17932 Fixed a problem where the use of the ASL Scope operator within a
   17933 control method would result in an invalid opcode exception.
   17934 
   17935 Fixed a problem introduced in the previous label where the buffer
   17936 length required for the _PRT structure was not being returned
   17937 correctly.
   17938 
   17939 Code and Data Size: Current core subsystem library sizes are shown
   17940 below. These are the code and data sizes for the acpica.lib
   17941 produced by the Microsoft Visual C++ 6.0 compiler, and these
   17942 values do not include any ACPI driver or OSPM code.  The debug
   17943 version of the code includes the debug output trace mechanism and
   17944 has a larger code and data size.  Note that these values will vary
   17945 depending on the efficiency of the compiler and the compiler
   17946 options used during generation.
   17947 
   17948   Previous Release (11_20_01)
   17949      Non-Debug Version:  64.1K Code,   5.3K Data,   69.4K Total
   17950      Debug Version:     135.1K Code,  55.4K Data,  190.5K Total
   17951 
   17952   Current Release:
   17953      Non-Debug Version:  64.7K Code,   5.3K Data,   70.0K Total
   17954      Debug Version:     136.2K Code,  55.6K Data,  191.8K Total
   17955 
   17956  2) Linux:
   17957 
   17958 Updated all files to apply cleanly against 2.4.16.
   17959 
   17960 Added basic PCI Interrupt Routing Table (PRT) support for IA32
   17961 (acpi_pci.c), and unified the PRT code for IA32 and IA64.  This
   17962 version supports both static and dynamic PRT entries, but dynamic
   17963 entries are treated as if they were static (not yet
   17964 reconfigurable).  Architecture- specific code to use this data is
   17965 absent on IA32 but should be available shortly.
   17966 
   17967 Changed the initialization sequence to start the ACPI interpreter
   17968 (acpi_init) prior to initialization of the PCI driver (pci_init)
   17969 in init/main.c.  This ordering is required to support PRT and
   17970 facilitate other (future) enhancement.  A side effect is that the
   17971 ACPI bus driver and certain device drivers can no longer be loaded
   17972 as modules.
   17973 
   17974 Modified the 'make menuconfig' options to allow PCI Interrupt
   17975 Routing support to be included without the ACPI Bus and other
   17976 device drivers.
   17977 
   17978  3) ASL Compiler, version X2033:
   17979 
   17980 Fixed some issues with the use of the new CopyObject and
   17981 DataTableRegion operators.  Both are fully functional.
   17982 
   17983  ----------------------------------------
   17984 Summary of changes for this label: 11_20_01
   17985 
   17986  20 November 2001.  Summary of changes for this release.
   17987 
   17988  1) ACPI CA Core Subsystem:
   17989 
   17990 Updated Index support to match ACPI 2.0 semantics.  Storing a
   17991 Integer, String, or Buffer to an Index of a Buffer will store only
   17992 the least-significant byte of the source to the Indexed buffer
   17993 byte.  Multiple writes are not performed.
   17994 
   17995 Fixed a problem where the access type used in an AccessAs ASL
   17996 operator was not recorded correctly into the field object.
   17997 
   17998 Fixed a problem where ASL Event objects were created in a
   17999 signalled state. Events are now created in an unsignalled state.
   18000 
   18001 The internal object cache is now purged after table loading and
   18002 initialization to reduce the use of dynamic kernel memory -- on
   18003 the assumption that object use is greatest during the parse phase
   18004 of the entire table (versus the run-time use of individual control
   18005 methods.)
   18006 
   18007 ACPI 2.0 variable-length packages are now fully operational.
   18008 
   18009 Code and Data Size: Code and Data optimizations have permitted new
   18010 feature development with an actual reduction in the library size.
   18011 Current core subsystem library sizes are shown below.  These are
   18012 the code and data sizes for the acpica.lib produced by the
   18013 Microsoft Visual C++ 6.0 compiler, and these values do not include
   18014 any ACPI driver or OSPM code.  The debug version of the code
   18015 includes the debug output trace mechanism and has a larger code
   18016 and data size.  Note that these values will vary depending on the
   18017 efficiency of the compiler and the compiler options used during
   18018 generation.
   18019 
   18020   Previous Release (11_09_01):
   18021      Non-Debug Version:  63.7K Code,   5.2K Data,   68.9K Total
   18022      Debug Version:     134.5K Code,  55.4K Data,  189.9K Total
   18023 
   18024   Current Release:
   18025      Non-Debug Version:  64.1K Code,   5.3K Data,   69.4K Total
   18026      Debug Version:     135.1K Code,  55.4K Data,  190.5K Total
   18027 
   18028  2) Linux:
   18029 
   18030 Enhanced the ACPI boot-time initialization code to allow the use
   18031 of Local APIC tables for processor enumeration on IA-32, and to
   18032 pave the way for a fully MPS-free boot (on SMP systems) in the
   18033 near future.  This functionality replaces
   18034 arch/i386/kernel/acpitables.c, which was introduced in an earlier
   18035 2.4.15-preX release.  To enable this feature you must add
   18036 "acpi_boot=on" to the kernel command line -- see the help entry
   18037 for CONFIG_ACPI_BOOT for more information.  An IA-64 release is in
   18038 the works...
   18039 
   18040 Restructured the configuration options to allow boot-time table
   18041 parsing support without inclusion of the ACPI Interpreter (and
   18042 other) code.
   18043 
   18044 NOTE: This release does not include fixes for the reported events,
   18045 power-down, and thermal passive cooling issues (coming soon).
   18046 
   18047  3) ASL Compiler:
   18048 
   18049 Added additional typechecking for Fields within restricted access
   18050 Operation Regions.  All fields within EC and CMOS regions must be
   18051 declared with ByteAcc. All fields within SMBus regions must be
   18052 declared with the BufferAcc access type.
   18053 
   18054 Fixed a problem where the listing file output of control methods
   18055 no longer interleaved the actual AML code with the ASL source
   18056 code.
   18057 
   18058 
   18059 
   18060 
   18061 ----------------------------------------
   18062 Summary of changes for this label: 11_09_01
   18063 
   18064 1) ACPI CA Core Subsystem:
   18065 
   18066 Implemented ACPI 2.0-defined support for writes to fields with a
   18067 Buffer, String, or Integer source operand that is smaller than the
   18068 target field. In these cases, the source operand is zero-extended
   18069 to fill the target field.
   18070 
   18071 Fixed a problem where a Field starting bit offset (within the
   18072 parent operation region) was calculated incorrectly if the
   18073 
   18074 alignment of the field differed from the access width.  This
   18075 affected CreateWordField, CreateDwordField, CreateQwordField, and
   18076 possibly other fields that use the "AccessAny" keyword.
   18077 
   18078 Fixed a problem introduced in the 11_02_01 release where indirect
   18079 stores through method arguments did not operate correctly.
   18080 
   18081 2) Linux:
   18082 
   18083 Implemented boot-time ACPI table parsing support
   18084 (CONFIG_ACPI_BOOT) for IA32 and IA64 UP/SMP systems.  This code
   18085 facilitates the use of ACPI tables (e.g. MADT, SRAT) rather than
   18086 legacy BIOS interfaces (e.g. MPS) for the configuration of system
   18087 processors, memory, and interrupts during setup_arch().  Note that
   18088 this patch does not include the required architecture-specific
   18089 changes required to apply this information -- subsequent patches
   18090 will be posted for both IA32 and IA64 to achieve this.
   18091 
   18092 Added low-level sleep support for IA32 platforms, courtesy of Pat
   18093 Mochel. This allows IA32 systems to transition to/from various
   18094 sleeping states (e.g. S1, S3), although the lack of a centralized
   18095 driver model and power-manageable drivers will prevent its
   18096 (successful) use on most systems.
   18097 
   18098 Revamped the ACPI 'menuconfig' layout: created new "ACPI Support"
   18099 submenu, unified IA32 and IA64 options, added new "Boot using ACPI
   18100 tables" option, etc.
   18101 
   18102 Increased the default timeout for the EC driver from 1ms to 10ms
   18103 (1000 cycles of 10us) to try to address AE_TIME errors during EC
   18104 transactions.
   18105 
   18106  ----------------------------------------
   18107 Summary of changes for this label: 11_02_01
   18108 
   18109 1) ACPI CA Core Subsystem:
   18110 
   18111 ACPI 2.0 Support: Implemented ACPI 2.0 64-bit Field access
   18112 (QWordAcc keyword). All ACPI 2.0 64-bit support is now
   18113 implemented.
   18114 
   18115 OSL Interfaces: Several of the OSL (AcpiOs*) interfaces required
   18116 changes to support ACPI 2.0 Qword field access.  Read/Write
   18117 PciConfiguration(), Read/Write Memory(), and Read/Write Port() now
   18118 accept an ACPI_INTEGER (64 bits) as the value parameter.  Also,
   18119 the value parameter for the address space handler interface is now
   18120 an ACPI_INTEGER.  OSL implementations of these interfaces must now
   18121 handle the case where the Width parameter is 64.
   18122 
   18123 Index Fields: Fixed a problem where unaligned bit assembly and
   18124 disassembly for IndexFields was not supported correctly.
   18125 
   18126 Index and Bank Fields:  Nested Index and Bank Fields are now
   18127 supported. During field access, a check is performed to ensure
   18128 that the value written to an Index or Bank register is not out of
   18129 the range of the register.  The Index (or Bank) register is
   18130 written before each access to the field data. Future support will
   18131 include allowing individual IndexFields to be wider than the
   18132 DataRegister width.
   18133 
   18134 Fields: Fixed a problem where the AML interpreter was incorrectly
   18135 attempting to write beyond the end of a Field/OpRegion.  This was
   18136 a boundary case that occurred when a DWORD field was written to a
   18137 BYTE access OpRegion, forcing multiple writes and causing the
   18138 interpreter to write one datum too many.
   18139 
   18140 Fields: Fixed a problem with Field/OpRegion access where the
   18141 starting bit address of a field was incorrectly calculated if the
   18142 current access type was wider than a byte (WordAcc, DwordAcc, or
   18143 QwordAcc).
   18144 
   18145 Fields: Fixed a problem where forward references to individual
   18146 FieldUnits (individual Field names within a Field definition) were
   18147 not resolved during the AML table load.
   18148 
   18149 Fields: Fixed a problem where forward references from a Field
   18150 definition to the parent Operation Region definition were not
   18151 resolved during the AML table load.
   18152 
   18153 Fields: Duplicate FieldUnit names within a scope are now detected
   18154 during AML table load.
   18155 
   18156 Acpi Interfaces: Fixed a problem where the AcpiGetName() interface
   18157 returned an incorrect name for the root node.
   18158 
   18159 Code and Data Size: Code and Data optimizations have permitted new
   18160 feature development with an actual reduction in the library size.
   18161 Current core subsystem library sizes are shown below.  These are
   18162 the code and data sizes for the acpica.lib produced by the
   18163 Microsoft Visual C++ 6.0 compiler, and these values do not include
   18164 any ACPI driver or OSPM code.  The debug version of the code
   18165 includes the debug output trace mechanism and has a larger code
   18166 and data size.  Note that these values will vary depending on the
   18167 efficiency of the compiler and the compiler options used during
   18168 generation.
   18169 
   18170   Previous Release (10_18_01):
   18171      Non-Debug Version:  63.9K Code,   5.1K Data,   69.0K Total
   18172      Debug Version:     136.7K Code,  57.4K Data,  194.2K Total
   18173 
   18174   Current Release:
   18175      Non-Debug Version:  63.7K Code,   5.2K Data,   68.9K Total
   18176      Debug Version:     134.5K Code,  55.4K Data,  189.9K Total
   18177 
   18178  2) Linux:
   18179 
   18180 Improved /proc processor output (Pavel Machek) Re-added
   18181 MODULE_LICENSE("GPL") to all modules.
   18182 
   18183  3) ASL Compiler version X2030:
   18184 
   18185 Duplicate FieldUnit names within a scope are now detected and
   18186 flagged as errors.
   18187 
   18188  4) Documentation:
   18189 
   18190 Programmer Reference updated to reflect OSL and address space
   18191 handler interface changes described above.
   18192 
   18193 ----------------------------------------
   18194 Summary of changes for this label: 10_18_01
   18195 
   18196 ACPI CA Core Subsystem:
   18197 
   18198 Fixed a problem with the internal object reference count mechanism
   18199 that occasionally caused premature object deletion. This resolves
   18200 all of the outstanding problem reports where an object is deleted
   18201 in the middle of an interpreter evaluation.  Although this problem
   18202 only showed up in rather obscure cases, the solution to the
   18203 problem involved an adjustment of all reference counts involving
   18204 objects attached to namespace nodes.
   18205 
   18206 Fixed a problem with Field support in the interpreter where
   18207 writing to an aligned field whose length is an exact multiple (2
   18208 or greater) of the field access granularity would cause an attempt
   18209 to write beyond the end of the field.
   18210 
   18211 The top level AML opcode execution functions within the
   18212 interpreter have been renamed with a more meaningful and
   18213 consistent naming convention.  The modules exmonad.c and
   18214 exdyadic.c were eliminated.  New modules are exoparg1.c,
   18215 exoparg2.c, exoparg3.c, and exoparg6.c.
   18216 
   18217 Support for the ACPI 2.0 "Mid" ASL operator has been implemented.
   18218 
   18219 Fixed a problem where the AML debugger was causing some internal
   18220 objects to not be deleted during subsystem termination.
   18221 
   18222 Fixed a problem with the external AcpiEvaluateObject interface
   18223 where the subsystem would fault if the named object to be
   18224 evaluated referred to a constant such as Zero, Ones, etc.
   18225 
   18226 Fixed a problem with IndexFields and BankFields where the
   18227 subsystem would fault if the index, data, or bank registers were
   18228 not defined in the same scope as the field itself.
   18229 
   18230 Added printf format string checking for compilers that support
   18231 this feature.  Corrected more than 50 instances of issues with
   18232 format specifiers within invocations of ACPI_DEBUG_PRINT
   18233 throughout the core subsystem code.
   18234 
   18235 The ASL "Revision" operator now returns the ACPI support level
   18236 implemented in the core - the value "2" since the ACPI 2.0 support
   18237 is more than 50% implemented.
   18238 
   18239 Enhanced the output of the AML debugger "dump namespace" command
   18240 to output in a more human-readable form.
   18241 
   18242 Current core subsystem library code sizes are shown below.  These
   18243 
   18244 are the code and data sizes for the acpica.lib produced by the
   18245 Microsoft Visual C++ 6.0 compiler, and these values do not include
   18246 any ACPI driver or OSPM code.  The debug version of the code
   18247 includes the full debug trace mechanism -- leading to a much
   18248 
   18249 larger code and data size.  Note that these values will vary
   18250 depending on the efficiency of the compiler and the compiler
   18251 options used during generation.
   18252 
   18253      Previous Label (09_20_01):
   18254      Non-Debug Version:    65K Code,     5K Data,     70K Total
   18255      Debug Version:       138K Code,    58K Data,    196K Total
   18256 
   18257      This Label:
   18258 
   18259      Non-Debug Version:  63.9K Code,   5.1K Data,   69.0K Total
   18260      Debug Version:     136.7K Code,  57.4K Data,  194.2K Total
   18261 
   18262 Linux:
   18263 
   18264 Implemented a "Bad BIOS Blacklist" to track machines that have
   18265 known ASL/AML problems.
   18266 
   18267 Enhanced the /proc interface for the thermal zone driver and added
   18268 support for _HOT (the critical suspend trip point).  The 'info'
   18269 file now includes threshold/policy information, and allows setting
   18270 of _SCP (cooling preference) and _TZP (polling frequency) values
   18271 to the 'info' file. Examples: "echo tzp=5 > info" sets the polling
   18272 frequency to 5 seconds, and "echo scp=1 > info" sets the cooling
   18273 preference to the passive/quiet mode (if supported by the ASL).
   18274 
   18275 Implemented a workaround for a gcc bug that resuted in an OOPs
   18276 when loading the control method battery driver.
   18277 
   18278  ----------------------------------------
   18279 Summary of changes for this label: 09_20_01
   18280 
   18281  ACPI CA Core Subsystem:
   18282 
   18283 The AcpiEnableEvent and AcpiDisableEvent interfaces have been
   18284 modified to allow individual GPE levels to be flagged as wake-
   18285 enabled (i.e., these GPEs are to remain enabled when the platform
   18286 sleeps.)
   18287 
   18288 The AcpiEnterSleepState and AcpiLeaveSleepState interfaces now
   18289 support wake-enabled GPEs.  This means that upon entering the
   18290 sleep state, all GPEs that are not wake-enabled are disabled.
   18291 When leaving the sleep state, these GPEs are re-enabled.
   18292 
   18293 A local double-precision divide/modulo module has been added to
   18294 enhance portability to OS kernels where a 64-bit math library is
   18295 not available.  The new module is "utmath.c".
   18296 
   18297 Several optimizations have been made to reduce the use of CPU
   18298 stack.  Originally over 2K, the maximum stack usage is now below
   18299 2K at 1860  bytes (1.82k)
   18300 
   18301 Fixed a problem with the AcpiGetFirmwareTable interface where the
   18302 root table pointer was not mapped into a logical address properly.
   18303 
   18304 Fixed a problem where a NULL pointer was being dereferenced in the
   18305 interpreter code for the ASL Notify operator.
   18306 
   18307 Fixed a problem where the use of the ASL Revision operator
   18308 returned an error. This operator now returns the current version
   18309 of the ACPI CA core subsystem.
   18310 
   18311 Fixed a problem where objects passed as control method parameters
   18312 to AcpiEvaluateObject were always deleted at method termination.
   18313 However, these objects may end up being stored into the namespace
   18314 by the called method.  The object reference count mechanism was
   18315 applied to these objects instead of a force delete.
   18316 
   18317 Fixed a problem where static strings or buffers (contained in the
   18318 AML code) that are declared as package elements within the ASL
   18319 code could cause a fault because the interpreter would attempt to
   18320 delete them.  These objects are now marked with the "static
   18321 object" flag to prevent any attempt to delete them.
   18322 
   18323 Implemented an interpreter optimization to use operands directly
   18324 from the state object instead of extracting the operands to local
   18325 variables.  This reduces stack use and code size, and improves
   18326 performance.
   18327 
   18328 The module exxface.c was eliminated as it was an unnecessary extra
   18329 layer of code.
   18330 
   18331 Current core subsystem library code sizes are shown below.  These
   18332 are the code and data sizes for the acpica.lib produced by the
   18333 Microsoft Visual C++ 6.0 compiler, and these values do not include
   18334 any ACPI driver or OSPM code.  The debug version of the code
   18335 includes the full debug trace mechanism -- leading to a much
   18336 larger code and data size.  Note that these values will vary
   18337 depending on the efficiency of the compiler and the compiler
   18338 options used during generation.
   18339 
   18340   Non-Debug Version:  65K Code,   5K Data,   70K Total
   18341 (Previously 69K)   Debug Version:     138K Code,  58K Data,  196K
   18342 Total  (Previously 195K)
   18343 
   18344 Linux:
   18345 
   18346 Support for ACPI 2.0 64-bit integers has been added.   All ACPI
   18347 Integer objects are now 64 bits wide
   18348 
   18349 All Acpi data types and structures are now in lower case.  Only
   18350 Acpi macros are upper case for differentiation.
   18351 
   18352  Documentation:
   18353 
   18354 Changes to the external interfaces as described above.
   18355 
   18356  ----------------------------------------
   18357 Summary of changes for this label: 08_31_01
   18358 
   18359  ACPI CA Core Subsystem:
   18360 
   18361 A bug with interpreter implementation of the ASL Divide operator
   18362 was found and fixed.  The implicit function return value (not the
   18363 explicit store operands) was returning the remainder instead of
   18364 the quotient.  This was a longstanding bug and it fixes several
   18365 known outstanding issues on various platforms.
   18366 
   18367 The ACPI_DEBUG_PRINT and function trace entry/exit macros have
   18368 been further optimized for size.  There are 700 invocations of the
   18369 DEBUG_PRINT macro alone, so each optimization reduces the size of
   18370 the debug version of the subsystem significantly.
   18371 
   18372 A stack trace mechanism has been implemented.  The maximum stack
   18373 usage is about 2K on 32-bit platforms.  The debugger command "stat
   18374 stack" will display the current maximum stack usage.
   18375 
   18376 All public symbols and global variables within the subsystem are
   18377 now prefixed with the string "Acpi".  This keeps all of the
   18378 symbols grouped together in a kernel map, and avoids conflicts
   18379 with other kernel subsystems.
   18380 
   18381 Most of the internal fixed lookup tables have been moved into the
   18382 code segment via the const operator.
   18383 
   18384 Several enhancements have been made to the interpreter to both
   18385 reduce the code size and improve performance.
   18386 
   18387 Current core subsystem library code sizes are shown below.  These
   18388 are the code and data sizes for the acpica.lib produced by the
   18389 Microsoft Visual C++ 6.0 compiler, and these values do not include
   18390 any ACPI driver or OSPM code.  The debug version of the code
   18391 includes the full debug trace mechanism which contains over 700
   18392 invocations of the DEBUG_PRINT macro, 500 function entry macro
   18393 invocations, and over 900 function exit macro invocations --
   18394 leading to a much larger code and data size.  Note that these
   18395 values will vary depending on the efficiency of the compiler and
   18396 the compiler options used during generation.
   18397 
   18398         Non-Debug Version:  64K Code,   5K Data,   69K Total
   18399 Debug Version:     137K Code,  58K Data,  195K Total
   18400 
   18401  Linux:
   18402 
   18403 Implemented wbinvd() macro, pending a kernel-wide definition.
   18404 
   18405 Fixed /proc/acpi/event to handle poll() and short reads.
   18406 
   18407  ASL Compiler, version X2026:
   18408 
   18409 Fixed a problem introduced in the previous label where the AML
   18410 
   18411 code emitted for package objects produced packages with zero
   18412 length.
   18413 
   18414  ----------------------------------------
   18415 Summary of changes for this label: 08_16_01
   18416 
   18417 ACPI CA Core Subsystem:
   18418 
   18419 The following ACPI 2.0 ASL operators have been implemented in the
   18420 AML interpreter (These are already supported by the Intel ASL
   18421 compiler):  ToDecimalString, ToHexString, ToString, ToInteger, and
   18422 ToBuffer.  Support for 64-bit AML constants is implemented in the
   18423 AML parser, debugger, and disassembler.
   18424 
   18425 The internal memory tracking mechanism (leak detection code) has
   18426 been upgraded to reduce the memory overhead (a separate tracking
   18427 block is no longer allocated for each memory allocation), and now
   18428 supports all of the internal object caches.
   18429 
   18430 The data structures and code for the internal object caches have
   18431 been coelesced and optimized so that there is a single cache and
   18432 memory list data structure and a single group of functions that
   18433 implement generic cache management.  This has reduced the code
   18434 size in both the debug and release versions of the subsystem.
   18435 
   18436 The DEBUG_PRINT macro(s) have been optimized for size and replaced
   18437 by ACPI_DEBUG_PRINT.  The syntax for this macro is slightly
   18438 different, because it generates a single call to an internal
   18439 function.  This results in a savings of about 90 bytes per
   18440 invocation, resulting in an overall code and data savings of about
   18441 16% in the debug version of the subsystem.
   18442 
   18443  Linux:
   18444 
   18445 Fixed C3 disk corruption problems and re-enabled C3 on supporting
   18446 machines.
   18447 
   18448 Integrated low-level sleep code by Patrick Mochel.
   18449 
   18450 Further tweaked source code Linuxization.
   18451 
   18452 Other minor fixes.
   18453 
   18454  ASL Compiler:
   18455 
   18456 Support for ACPI 2.0 variable length packages is fixed/completed.
   18457 
   18458 Fixed a problem where the optional length parameter for the ACPI
   18459 2.0 ToString operator.
   18460 
   18461 Fixed multiple extraneous error messages when a syntax error is
   18462 detected within the declaration line of a control method.
   18463 
   18464  ----------------------------------------
   18465 Summary of changes for this label: 07_17_01
   18466 
   18467 ACPI CA Core Subsystem:
   18468 
   18469 Added a new interface named AcpiGetFirmwareTable to obtain any
   18470 ACPI table via the ACPI signature.  The interface can be called at
   18471 any time during kernel initialization, even before the kernel
   18472 virtual memory manager is initialized and paging is enabled.  This
   18473 allows kernel subsystems to obtain ACPI tables very early, even
   18474 before the ACPI CA subsystem is initialized.
   18475 
   18476 Fixed a problem where Fields defined with the AnyAcc attribute
   18477 could be resolved to the incorrect address under the following
   18478 conditions: 1) the field width is larger than 8 bits and 2) the
   18479 parent operation region is not defined on a DWORD boundary.
   18480 
   18481 Fixed a problem where the interpreter is not being locked during
   18482 namespace initialization (during execution of the _INI control
   18483 methods), causing an error when an attempt is made to release it
   18484 later.
   18485 
   18486 ACPI 2.0 support in the AML Interpreter has begun and will be
   18487 ongoing throughout the rest of this year.  In this label, The Mod
   18488 operator is implemented.
   18489 
   18490 Added a new data type to contain full PCI addresses named
   18491 ACPI_PCI_ID. This structure contains the PCI Segment, Bus, Device,
   18492 and Function values.
   18493 
   18494  Linux:
   18495 
   18496 Enhanced the Linux version of the source code to change most
   18497 capitalized ACPI type names to lowercase. For example, all
   18498 instances of ACPI_STATUS are changed to acpi_status.  This will
   18499 result in a large diff, but the change is strictly cosmetic and
   18500 aligns the CA code closer to the Linux coding standard.
   18501 
   18502 OSL Interfaces:
   18503 
   18504 The interfaces to the PCI configuration space have been changed to
   18505 add the PCI Segment number and to split the single 32-bit combined
   18506 DeviceFunction field into two 16-bit fields.  This was
   18507 accomplished by moving the four values that define an address in
   18508 PCI configuration space (segment, bus, device, and function) to
   18509 the new ACPI_PCI_ID structure.
   18510 
   18511 The changes to the PCI configuration space interfaces led to a
   18512 reexamination of the complete set of address space access
   18513 interfaces for PCI, I/O, and Memory.  The previously existing 18
   18514 interfaces have proven difficult to maintain (any small change
   18515 must be propagated across at least 6 interfaces) and do not easily
   18516 allow for future expansion to 64 bits if necessary.  Also, on some
   18517 systems, it would not be appropriate to demultiplex the access
   18518 width (8, 16, 32,or 64) before calling the OSL if the
   18519 corresponding native OS interfaces contain a similar access width
   18520 parameter.  For these reasons, the 18 address space interfaces
   18521 have been replaced by these 6 new ones:
   18522 
   18523 AcpiOsReadPciConfiguration
   18524 AcpiOsWritePciConfiguration
   18525 AcpiOsReadMemory
   18526 AcpiOsWriteMemory
   18527 AcpiOsReadPort
   18528 AcpiOsWritePort
   18529 
   18530 Added a new interface named AcpiOsGetRootPointer to allow the OSL
   18531 to perform the platform and/or OS-specific actions necessary to
   18532 obtain the ACPI RSDP table pointer.  On IA-32 platforms, this
   18533 interface will simply call down to the CA core to perform the low-
   18534 memory search for the table.  On IA-64, the RSDP is obtained from
   18535 EFI.  Migrating this interface to the OSL allows the CA core to
   18536 
   18537 remain OS and platform independent.
   18538 
   18539 Added a new interface named AcpiOsSignal to provide a generic
   18540 "function code and pointer" interface for various miscellaneous
   18541 signals and notifications that must be made to the host OS.   The
   18542 first such signals are intended to support the ASL Fatal and
   18543 Breakpoint operators.  In the latter case, the AcpiOsBreakpoint
   18544 interface has been obsoleted.
   18545 
   18546 The definition of the AcpiFormatException interface has been
   18547 changed to simplify its use.  The caller no longer must supply a
   18548 buffer to the call; A pointer to a const string is now returned
   18549 directly.  This allows the call to be easily used in printf
   18550 statements, etc. since the caller does not have to manage a local
   18551 buffer.
   18552 
   18553 
   18554  ASL Compiler, Version X2025:
   18555 
   18556 The ACPI 2.0 Switch/Case/Default operators have been implemented
   18557 and are fully functional.  They will work with all ACPI 1.0
   18558 interpreters, since the operators are simply translated to If/Else
   18559 pairs.
   18560 
   18561 The ACPI 2.0 ElseIf operator is implemented and will also work
   18562 with 1.0 interpreters, for the same reason.
   18563 
   18564 Implemented support for ACPI 2.0 variable-length packages.  These
   18565 packages have a separate opcode, and their size is determined by
   18566 the interpreter at run-time.
   18567 
   18568 Documentation The ACPI CA Programmer Reference has been updated to
   18569 reflect the new interfaces and changes to existing interfaces.
   18570 
   18571  ------------------------------------------
   18572 Summary of changes for this label: 06_15_01
   18573 
   18574  ACPI CA Core Subsystem:
   18575 
   18576 Fixed a problem where a DWORD-accessed field within a Buffer
   18577 object would get its byte address inadvertently rounded down to
   18578 the nearest DWORD.  Buffers are always Byte-accessible.
   18579 
   18580  ASL Compiler, version X2024:
   18581 
   18582 Fixed a problem where the Switch() operator would either fault or
   18583 hang the compiler.  Note however, that the AML code for this ACPI
   18584 2.0 operator is not yet implemented.
   18585 
   18586 Compiler uses the new AcpiOsGetTimer interface to obtain compile
   18587 timings.
   18588 
   18589 Implementation of the CreateField operator automatically converts
   18590 a reference to a named field within a resource descriptor from a
   18591 byte offset to a bit offset if required.
   18592 
   18593 Added some missing named fields from the resource descriptor
   18594 support. These are the names that are automatically created by the
   18595 compiler to reference fields within a descriptor.  They are only
   18596 valid at compile time and are not passed through to the AML
   18597 interpreter.
   18598 
   18599 Resource descriptor named fields are now typed as Integers and
   18600 subject to compile-time typechecking when used in expressions.
   18601 
   18602  ------------------------------------------
   18603 Summary of changes for this label: 05_18_01
   18604 
   18605  ACPI CA Core Subsystem:
   18606 
   18607 Fixed a couple of problems in the Field support code where bits
   18608 from adjacent fields could be returned along with the proper field
   18609 bits. Restructured the field support code to improve performance,
   18610 readability and maintainability.
   18611 
   18612 New DEBUG_PRINTP macro automatically inserts the procedure name
   18613 into the output, saving hundreds of copies of procedure name
   18614 strings within the source, shrinking the memory footprint of the
   18615 debug version of the core subsystem.
   18616 
   18617  Source Code Structure:
   18618 
   18619 The source code directory tree was restructured to reflect the
   18620 current organization of the component architecture.  Some files
   18621 and directories have been moved and/or renamed.
   18622 
   18623  Linux:
   18624 
   18625 Fixed leaking kacpidpc processes.
   18626 
   18627 Fixed queueing event data even when /proc/acpi/event is not
   18628 opened.
   18629 
   18630  ASL Compiler, version X2020:
   18631 
   18632 Memory allocation performance enhancement - over 24X compile time
   18633 improvement on large ASL files.  Parse nodes and namestring
   18634 buffers are now allocated from a large internal compiler buffer.
   18635 
   18636 The temporary .SRC file is deleted unless the "-s" option is
   18637 specified
   18638 
   18639 The "-d" debug output option now sends all output to the .DBG file
   18640 instead of the console.
   18641 
   18642 "External" second parameter is now optional
   18643 
   18644 "ElseIf" syntax now properly allows the predicate
   18645 
   18646 Last operand to "Load" now recognized as a Target operand
   18647 
   18648 Debug object can now be used anywhere as a normal object.
   18649 
   18650 ResourceTemplate now returns an object of type BUFFER
   18651 
   18652 EISAID now returns an object of type INTEGER
   18653 
   18654 "Index" now works with a STRING operand
   18655 
   18656 "LoadTable" now accepts optional parameters
   18657 
   18658 "ToString" length parameter is now optional
   18659 
   18660 "Interrupt (ResourceType," parse error fixed.
   18661 
   18662 "Register" with a user-defined region space parse error fixed
   18663 
   18664 Escaped backslash at the end of a string ("\\") scan/parse error
   18665 fixed
   18666 
   18667 "Revision" is now an object of type INTEGER.
   18668 
   18669 
   18670 
   18671 ------------------------------------------
   18672 Summary of changes for this label: 05_02_01
   18673 
   18674 Linux:
   18675 
   18676 /proc/acpi/event now blocks properly.
   18677 
   18678 Removed /proc/sys/acpi. You can still dump your DSDT from
   18679 /proc/acpi/dsdt.
   18680 
   18681  ACPI CA Core Subsystem:
   18682 
   18683 Fixed a problem introduced in the previous label where some of the
   18684 "small" resource descriptor types were not recognized.
   18685 
   18686 Improved error messages for the case where an ASL Field is outside
   18687 the range of the parent operation region.
   18688 
   18689  ASL Compiler, version X2018:
   18690 
   18691 
   18692 Added error detection for ASL Fields that extend beyond the length
   18693 of the parent operation region (only if the length of the region
   18694 is known at compile time.)  This includes fields that have a
   18695 minimum access width that is smaller than the parent region, and
   18696 individual field units that are partially or entirely beyond the
   18697 extent of the parent.
   18698 
   18699 
   18700 
   18701 ------------------------------------------
   18702 Summary of changes for this label: 04_27_01
   18703 
   18704  ACPI CA Core Subsystem:
   18705 
   18706 Fixed a problem where the namespace mutex could be released at the
   18707 wrong time during execution of AcpiRemoveAddressSpaceHandler.
   18708 
   18709 Added optional thread ID output for debug traces, to simplify
   18710 debugging of multiple threads.  Added context switch notification
   18711 when the debug code realizes that a different thread is now
   18712 executing ACPI code.
   18713 
   18714 Some additional external data types have been prefixed with the
   18715 string "ACPI_" for consistency.  This may effect existing code.
   18716 The data types affected are the external callback typedefs - e.g.,
   18717 
   18718 WALK_CALLBACK becomes ACPI_WALK_CALLBACK.
   18719 
   18720  Linux:
   18721 
   18722 Fixed an issue with the OSL semaphore implementation where a
   18723 thread was waking up with an error from receiving a SIGCHLD
   18724 signal.
   18725 
   18726 Linux version of ACPI CA now uses the system C library for string
   18727 manipulation routines instead of a local implementation.
   18728 
   18729 Cleaned up comments and removed TBDs.
   18730 
   18731  ASL Compiler, version X2017:
   18732 
   18733 Enhanced error detection and reporting for all file I/O
   18734 operations.
   18735 
   18736  Documentation:
   18737 
   18738 Programmer Reference updated to version 1.06.
   18739 
   18740 
   18741 
   18742 ------------------------------------------
   18743 Summary of changes for this label: 04_13_01
   18744 
   18745  ACPI CA Core Subsystem:
   18746 
   18747 Restructured support for BufferFields and RegionFields.
   18748 BankFields support is now fully operational.  All known 32-bit
   18749 limitations on field sizes have been removed.  Both BufferFields
   18750 and (Operation) RegionFields are now supported by the same field
   18751 management code.
   18752 
   18753 Resource support now supports QWORD address and IO resources. The
   18754 16/32/64 bit address structures and the Extended IRQ structure
   18755 have been changed to properly handle Source Resource strings.
   18756 
   18757 A ThreadId of -1 is now used to indicate a "mutex not acquired"
   18758 condition internally and must never be returned by AcpiOsThreadId.
   18759 This reserved value was changed from 0 since Unix systems allow a
   18760 thread ID of 0.
   18761 
   18762 Linux:
   18763 
   18764 Driver code reorganized to enhance portability
   18765 
   18766 Added a kernel configuration option to control ACPI_DEBUG
   18767 
   18768 Fixed the EC driver to honor _GLK.
   18769 
   18770 ASL Compiler, version X2016:
   18771 
   18772 Fixed support for the "FixedHw" keyword.  Previously, the FixedHw
   18773 address space was set to 0, not 0x7f as it should be.
   18774 
   18775  ------------------------------------------
   18776 Summary of changes for this label: 03_13_01
   18777 
   18778  ACPI CA Core Subsystem:
   18779 
   18780 During ACPI initialization, the _SB_._INI method is now run if
   18781 present.
   18782 
   18783 Notify handler fix - notifies are deferred until the parent method
   18784 completes execution.  This fixes the "mutex already acquired"
   18785 issue seen occasionally.
   18786 
   18787 Part of the "implicit conversion" rules in ACPI 2.0 have been
   18788 found to cause compatibility problems with existing ASL/AML.  The
   18789 convert "result-to-target-type" implementation has been removed
   18790 for stores to method Args and Locals.  Source operand conversion
   18791 is still fully implemented.  Possible changes to ACPI 2.0
   18792 specification pending.
   18793 
   18794 Fix to AcpiRsCalculatePciRoutingTableLength to return correct
   18795 length.
   18796 
   18797 Fix for compiler warnings for 64-bit compiles.
   18798 
   18799  Linux:
   18800 
   18801 /proc output aligned for easier parsing.
   18802 
   18803 Release-version compile problem fixed.
   18804 
   18805 New kernel configuration options documented in Configure.help.
   18806 
   18807 IBM 600E - Fixed Sleep button may generate "Invalid <NULL>
   18808 context" message.
   18809 
   18810  OSPM:
   18811 
   18812 Power resource driver integrated with bus manager.
   18813 
   18814 Fixed kernel fault during active cooling for thermal zones.
   18815 
   18816 Source Code:
   18817 
   18818 The source code tree has been restructured.
   18819 
   18820 
   18821 
   18822 ------------------------------------------
   18823 Summary of changes for this label: 03_02_01
   18824 
   18825  Linux OS Services Layer (OSL):
   18826 
   18827 Major revision of all Linux-specific code.
   18828 
   18829 Modularized all ACPI-specific drivers.
   18830 
   18831 Added new thermal zone and power resource drivers.
   18832 
   18833 Revamped /proc interface (new functionality is under /proc/acpi).
   18834 
   18835 New kernel configuration options.
   18836 
   18837  Linux known issues:
   18838 
   18839 New kernel configuration options not documented in Configure.help
   18840 yet.
   18841 
   18842 
   18843 Module dependencies not currently implemented. If used, they
   18844 should be loaded in this order: busmgr, power, ec, system,
   18845 processor, battery, ac_adapter, button, thermal.
   18846 
   18847 Modules will not load if CONFIG_MODVERSION is set.
   18848 
   18849 IBM 600E - entering S5 may reboot instead of shutting down.
   18850 
   18851 IBM 600E - Sleep button may generate "Invalid <NULL> context"
   18852 message.
   18853 
   18854 Some systems may fail with "execution mutex already acquired"
   18855 message.
   18856 
   18857  ACPI CA Core Subsystem:
   18858 
   18859 Added a new OSL Interface, AcpiOsGetThreadId.  This was required
   18860 for the  deadlock detection code. Defined to return a non-zero, 32-
   18861 bit thread ID for the currently executing thread.  May be a non-
   18862 zero constant integer on single-thread systems.
   18863 
   18864 Implemented deadlock detection for internal subsystem mutexes.  We
   18865 may add conditional compilation for this code (debug only) later.
   18866 
   18867 ASL/AML Mutex object semantics are now fully supported.  This
   18868 includes multiple acquires/releases by owner and support for the
   18869 
   18870 Mutex SyncLevel parameter.
   18871 
   18872 A new "Force Release" mechanism automatically frees all ASL
   18873 Mutexes that have been acquired but not released when a thread
   18874 exits the interpreter.  This forces conformance to the ACPI spec
   18875 ("All mutexes must be released when an invocation exits") and
   18876 prevents deadlocked ASL threads.  This mechanism can be expanded
   18877 (later) to monitor other resource acquisitions if OEM ASL code
   18878 continues to misbehave (which it will).
   18879 
   18880 Several new ACPI exception codes have been added for the Mutex
   18881 support.
   18882 
   18883 Recursive method calls are now allowed and supported (the ACPI
   18884 spec does in fact allow recursive method calls.)  The number of
   18885 recursive calls is subject to the restrictions imposed by the
   18886 SERIALIZED method keyword and SyncLevel (ACPI 2.0) method
   18887 parameter.
   18888 
   18889 Implemented support for the SyncLevel parameter for control
   18890 methods (ACPI 2.0 feature)
   18891 
   18892 Fixed a deadlock problem when multiple threads attempted to use
   18893 the interpreter.
   18894 
   18895 Fixed a problem where the string length of a String package
   18896 element was not always set in a package returned from
   18897 AcpiEvaluateObject.
   18898 
   18899 Fixed a problem where the length of a String package element was
   18900 not always included in the length of the overall package returned
   18901 from AcpiEvaluateObject.
   18902 
   18903 Added external interfaces (Acpi*) to the ACPI debug memory
   18904 manager.  This manager keeps a list of all outstanding
   18905 allocations, and can therefore detect memory leaks and attempts to
   18906 free memory blocks more than once. Useful for code such as the
   18907 power manager, etc.  May not be appropriate for device drivers.
   18908 Performance with the debug code enabled is slow.
   18909 
   18910 The ACPI Global Lock is now an optional hardware element.
   18911 
   18912  ASL Compiler Version X2015:
   18913 
   18914 Integrated changes to allow the compiler to be generated on
   18915 multiple platforms.
   18916 
   18917 Linux makefile added to generate the compiler on Linux
   18918 
   18919  Source Code:
   18920 
   18921 All platform-specific headers have been moved to their own
   18922 subdirectory, Include/Platform.
   18923 
   18924 New source file added, Interpreter/ammutex.c
   18925 
   18926 New header file, Include/acstruct.h
   18927 
   18928  Documentation:
   18929 
   18930 The programmer reference has been updated for the following new
   18931 interfaces: AcpiOsGetThreadId AcpiAllocate AcpiCallocate AcpiFree
   18932 
   18933  ------------------------------------------
   18934 Summary of changes for this label: 02_08_01
   18935 
   18936 Core ACPI CA Subsystem: Fixed a problem where an error was
   18937 incorrectly returned if the return resource buffer was larger than
   18938 the actual data (in the resource interfaces).
   18939 
   18940 References to named objects within packages are resolved to the
   18941 
   18942 full pathname string before packages are returned directly (via
   18943 the AcpiEvaluateObject interface) or indirectly via the resource
   18944 interfaces.
   18945 
   18946 Linux OS Services Layer (OSL):
   18947 
   18948 Improved /proc battery interface.
   18949 
   18950 
   18951 Added C-state debugging output and other miscellaneous fixes.
   18952 
   18953 ASL Compiler Version X2014:
   18954 
   18955 All defined method arguments can now be used as local variables,
   18956 including the ones that are not actually passed in as parameters.
   18957 The compiler tracks initialization of the arguments and issues an
   18958 exception if they are used without prior assignment (just like
   18959 locals).
   18960 
   18961 The -o option now specifies a filename prefix that is used for all
   18962 output files, including the AML output file.  Otherwise, the
   18963 default behavior is as follows:  1) the AML goes to the file
   18964 specified in the DSDT.  2) all other output files use the input
   18965 source filename as the base.
   18966 
   18967  ------------------------------------------
   18968 Summary of changes for this label: 01_25_01
   18969 
   18970 Core ACPI CA Subsystem: Restructured the implementation of object
   18971 store support within the  interpreter.  This includes support for
   18972 the Store operator as well  as any ASL operators that include a
   18973 target operand.
   18974 
   18975 Partially implemented support for Implicit Result-to-Target
   18976 conversion. This is when a result object is converted on the fly
   18977 to the type of  an existing target object.  Completion of this
   18978 support is pending  further analysis of the ACPI specification
   18979 concerning this matter.
   18980 
   18981 CPU-specific code has been removed from the subsystem (hardware
   18982 directory).
   18983 
   18984 New Power Management Timer functions added
   18985 
   18986 Linux OS Services Layer (OSL): Moved system state transition code
   18987 to the core, fixed it, and modified  Linux OSL accordingly.
   18988 
   18989 Fixed C2 and C3 latency calculations.
   18990 
   18991 
   18992 We no longer use the compilation date for the version message on
   18993 initialization, but retrieve the version from AcpiGetSystemInfo().
   18994 
   18995 Incorporated for fix Sony VAIO machines.
   18996 
   18997 Documentation:  The Programmer Reference has been updated and
   18998 reformatted.
   18999 
   19000 
   19001 ASL Compiler:  Version X2013: Fixed a problem where the line
   19002 numbering and error reporting could get out  of sync in the
   19003 presence of multiple include files.
   19004 
   19005  ------------------------------------------
   19006 Summary of changes for this label: 01_15_01
   19007 
   19008 Core ACPI CA Subsystem:
   19009 
   19010 Implemented support for type conversions in the execution of the
   19011 ASL  Concatenate operator (The second operand is converted to
   19012 match the type  of the first operand before concatenation.)
   19013 
   19014 Support for implicit source operand conversion is partially
   19015 implemented.   The ASL source operand types Integer, Buffer, and
   19016 String are freely  interchangeable for most ASL operators and are
   19017 converted by the interpreter  on the fly as required.  Implicit
   19018 Target operand conversion (where the  result is converted to the
   19019 target type before storing) is not yet implemented.
   19020 
   19021 Support for 32-bit and 64-bit BCD integers is implemented.
   19022 
   19023 Problem fixed where a field read on an aligned field could cause a
   19024 read  past the end of the field.
   19025 
   19026 New exception, AE_AML_NO_RETURN_VALUE, is returned when a method
   19027 does not return a value, but the caller expects one.  (The ASL
   19028 compiler flags this as a warning.)
   19029 
   19030 ASL Compiler:
   19031 
   19032 Version X2011:
   19033 1. Static typechecking of all operands is implemented. This
   19034 prevents the use of invalid objects (such as using a Package where
   19035 an Integer is required) at compile time instead of at interpreter
   19036 run-time.
   19037 2. The ASL source line is printed with ALL errors and warnings.
   19038 3. Bug fix for source EOF without final linefeed.
   19039 4. Debug option is split into a parse trace and a namespace trace.
   19040 5. Namespace output option (-n) includes initial values for
   19041 integers and strings.
   19042 6. Parse-only option added for quick syntax checking.
   19043 7. Compiler checks for duplicate ACPI name declarations
   19044 
   19045 Version X2012:
   19046 1. Relaxed typechecking to allow interchangeability between
   19047 strings, integers, and buffers.  These types are now converted by
   19048 the interpreter at runtime.
   19049 2. Compiler reports time taken by each internal subsystem in the
   19050 debug         output file.
   19051 
   19052 
   19053  ------------------------------------------
   19054 Summary of changes for this label: 12_14_00
   19055 
   19056 ASL Compiler:
   19057 
   19058 This is the first official release of the compiler. Since the
   19059 compiler requires elements of the Core Subsystem, this label
   19060 synchronizes everything.
   19061 
   19062 ------------------------------------------
   19063 Summary of changes for this label: 12_08_00
   19064 
   19065 
   19066 Fixed a problem where named references within the ASL definition
   19067 of both OperationRegions and CreateXXXFields did not work
   19068 properly.  The symptom was an AE_AML_OPERAND_TYPE during
   19069 initialization of the region/field. This is similar (but not
   19070 related internally) to the problem that was fixed in the last
   19071 label.
   19072 
   19073 Implemented both 32-bit and 64-bit support for the BCD ASL
   19074 functions ToBCD and FromBCD.
   19075 
   19076 Updated all legal headers to include "2000" in the copyright
   19077 years.
   19078 
   19079  ------------------------------------------
   19080 Summary of changes for this label: 12_01_00
   19081 
   19082 Fixed a problem where method invocations within the ASL definition
   19083 of both OperationRegions and CreateXXXFields did not work
   19084 properly.  The symptom was an AE_AML_OPERAND_TYPE during
   19085 initialization of the region/field:
   19086 
   19087   nsinit-0209: AE_AML_OPERAND_TYPE while getting region arguments
   19088 [DEBG]   ammonad-0284: Exec_monadic2_r/Not: bad operand(s)
   19089 (0x3005)
   19090 
   19091 Fixed a problem where operators with more than one nested
   19092 subexpression would fail.  The symptoms were varied, by mostly
   19093 AE_AML_OPERAND_TYPE errors.  This was actually a rather serious
   19094 problem that has gone unnoticed until now.
   19095 
   19096   Subtract (Add (1,2), Multiply (3,4))
   19097 
   19098 Fixed a problem where AcpiGetHandle didn't quite get fixed in the
   19099 previous build (The prefix part of a relative path was handled
   19100 incorrectly).
   19101 
   19102 Fixed a problem where Operation Region initialization failed if
   19103 the operation region name was a "namepath" instead of a simple
   19104 "nameseg". Symptom was an AE_NO_OPERAND error.
   19105 
   19106 Fixed a problem where an assignment to a local variable via the
   19107 indirect RefOf mechanism only worked for the first such
   19108 assignment.  Subsequent assignments were ignored.
   19109 
   19110  ------------------------------------------
   19111 Summary of changes for this label: 11_15_00
   19112 
   19113 ACPI 2.0 table support with backwards support for ACPI 1.0 and the
   19114 0.71 extensions.  Note: although we can read ACPI 2.0 BIOS tables,
   19115 the AML  interpreter does NOT have support for the new 2.0 ASL
   19116 grammar terms at this time.
   19117 
   19118 All ACPI hardware access is via the GAS structures in the ACPI 2.0
   19119 FADT.
   19120 
   19121 All physical memory addresses across all platforms are now 64 bits
   19122 wide. Logical address width remains dependent on the platform
   19123 (i.e., "void *").
   19124 
   19125 AcpiOsMapMemory interface changed to a 64-bit physical address.
   19126 
   19127 The AML interpreter integer size is now 64 bits, as per the ACPI
   19128 2.0 specification.
   19129 
   19130 For backwards compatibility with ACPI 1.0, ACPI tables with a
   19131 revision number less than 2 use 32-bit integers only.
   19132 
   19133 Fixed a problem where the evaluation of OpRegion operands did not
   19134 always resolve them to numbers properly.
   19135 
   19136 ------------------------------------------
   19137 Summary of changes for this label: 10_20_00
   19138 
   19139 Fix for CBN_._STA issue.  This fix will allow correct access to
   19140 CBN_ OpRegions when the _STA returns 0x8.
   19141 
   19142 Support to convert ACPI constants (Ones, Zeros, One) to actual
   19143 values before a package object is returned
   19144 
   19145 Fix for method call as predicate to if/while construct causing
   19146 incorrect if/while behavior
   19147 
   19148 Fix for Else block package lengths sometimes calculated wrong (if
   19149 block > 63 bytes)
   19150 
   19151 Fix for Processor object length field, was always zero
   19152 
   19153 Table load abort if FACP sanity check fails
   19154 
   19155 Fix for problem with Scope(name) if name already exists
   19156 
   19157 Warning emitted if a named object referenced cannot be found
   19158 (resolved) during method execution.
   19159 
   19160 
   19161 
   19162 
   19163 
   19164 ------------------------------------------
   19165 Summary of changes for this label: 9_29_00
   19166 
   19167 New table initialization interfaces: AcpiInitializeSubsystem no
   19168 longer has any parameters AcpiFindRootPointer - Find the RSDP (if
   19169 necessary) AcpiLoadTables (RSDP) - load all tables found at RSDP-
   19170 >RSDT Obsolete Interfaces AcpiLoadFirmwareTables - replaced by
   19171 AcpiLoadTables
   19172 
   19173 Note: These interface changes require changes to all existing OSDs
   19174 
   19175 The PCI_Config default address space handler is always installed
   19176 at the root namespace object.
   19177 
   19178 -------------------------------------------
   19179 Summary of changes for this label: 09_15_00
   19180 
   19181 The new initialization architecture is implemented.  New
   19182 interfaces are: AcpiInitializeSubsystem (replaces AcpiInitialize)
   19183 AcpiEnableSubsystem Obsolete Interfaces: AcpiLoadNamespace
   19184 
   19185 (Namespace is automatically loaded when a table is loaded)
   19186 
   19187 The ACPI_OPERAND_OBJECT has been optimized to shrink its size from
   19188 52 bytes to 32 bytes.  There is usually one of these for every
   19189 namespace object, so the memory savings is significant.
   19190 
   19191 Implemented just-in-time evaluation of the CreateField operators.
   19192 
   19193 Bug fixes for IA-64 support have been integrated.
   19194 
   19195 Additional code review comments have been implemented
   19196 
   19197 The so-called "third pass parse" has been replaced by a final walk
   19198 through the namespace to initialize all operation regions (address
   19199 spaces) and fields that have not yet been initialized during the
   19200 execution of the various _INI and REG methods.
   19201 
   19202 New file - namespace/nsinit.c
   19203 
   19204 -------------------------------------------
   19205 Summary of changes for this label: 09_01_00
   19206 
   19207 Namespace manager data structures have been reworked to change the
   19208 primary  object from a table to a single object.  This has
   19209 resulted in dynamic memory  savings of 3X within the namespace and
   19210 2X overall in the ACPI CA subsystem.
   19211 
   19212 Fixed problem where the call to AcpiEvFindPciRootBuses was
   19213 inadvertently left  commented out.
   19214 
   19215 Reduced the warning count when generating the source with the GCC
   19216 compiler.
   19217 
   19218 Revision numbers added to each module header showing the
   19219 SourceSafe version of the file.  Please refer to this version
   19220 number when giving us feedback or comments on individual modules.
   19221 
   19222 The main object types within the subsystem have been renamed to
   19223 clarify their  purpose:
   19224 
   19225 ACPI_INTERNAL_OBJECT -> ACPI_OPERAND_OBJECT
   19226 ACPI_GENERIC_OP -> ACPI_PARSE_OBJECT
   19227 ACPI_NAME_TABLE_ENTRY -> ACPI_NAMESPACE_NODE
   19228 
   19229 NOTE: no changes to the initialization sequence are included in
   19230 this label.
   19231 
   19232 -------------------------------------------
   19233 Summary of changes for this label: 08_23_00
   19234 
   19235 Fixed problem where TerminateControlMethod was being called
   19236 multiple times per  method
   19237 
   19238 Fixed debugger problem where single stepping caused a semaphore to
   19239 be  oversignalled
   19240 
   19241 Improved performance through additional parse object caching -
   19242 added  ACPI_EXTENDED_OP type
   19243 
   19244 -------------------------------------------
   19245 Summary of changes for this label: 08_10_00
   19246 
   19247 Parser/Interpreter integration:  Eliminated the creation of
   19248 complete parse trees  for ACPI tables and control methods.
   19249 Instead, parse subtrees are created and  then deleted as soon as
   19250 they are processed (Either entered into the namespace or  executed
   19251 by the interpreter).  This reduces the use of dynamic kernel
   19252 memory  significantly. (about 10X)
   19253 
   19254 Exception codes broken into classes and renumbered.  Be sure to
   19255 recompile all  code that includes acexcep.h.  Hopefully we won't
   19256 have to renumber the codes  again now that they are split into
   19257 classes (environment, programmer, AML code,  ACPI table, and
   19258 internal).
   19259 
   19260 Fixed some additional alignment issues in the Resource Manager
   19261 subcomponent
   19262 
   19263 Implemented semaphore tracking in the AcpiExec utility, and fixed
   19264 several places  where mutexes/semaphores were being unlocked
   19265 without a corresponding lock  operation.  There are no known
   19266 semaphore or mutex "leaks" at this time.
   19267 
   19268 Fixed the case where an ASL Return operator is used to return an
   19269 unnamed  package.
   19270 
   19271 -------------------------------------------
   19272 Summary of changes for this label: 07_28_00
   19273 
   19274 Fixed a problem with the way addresses were calculated in
   19275 AcpiAmlReadFieldData()  and AcpiAmlWriteFieldData(). This problem
   19276 manifested itself when a Field was  created with WordAccess or
   19277 DwordAccess, but the field unit defined within the  Field was less
   19278 
   19279 than a Word or Dword.
   19280 
   19281 Fixed a problem in AmlDumpOperands() module's loop to pull
   19282 operands off of the  operand stack to display information. The
   19283 problem manifested itself as a TLB  error on 64-bit systems when
   19284 accessing an operand stack with two or more  operands.
   19285 
   19286 Fixed a problem with the PCI configuration space handlers where
   19287 context was  getting confused between accesses. This required a
   19288 change to the generic address  space handler and address space
   19289 setup definitions. Handlers now get both a  global handler context
   19290 (this is the one passed in by the user when executing
   19291 AcpiInstallAddressSpaceHandler() and a specific region context
   19292 that is unique to  each region (For example, the _ADR, _SEG and
   19293 _BBN values associated with a  specific region). The generic
   19294 function definitions have changed to the  following:
   19295 
   19296 typedef ACPI_STATUS (*ADDRESS_SPACE_HANDLER) ( UINT32 Function,
   19297 UINT32 Address, UINT32 BitWidth, UINT32 *Value, void
   19298 *HandlerContext, // This used to be void *Context void
   19299 *RegionContext); // This is an additional parameter
   19300 
   19301 typedef ACPI_STATUS (*ADDRESS_SPACE_SETUP) ( ACPI_HANDLE
   19302 RegionHandle, UINT32 Function, void *HandlerContext,  void
   19303 **RegionContext); // This used to be **ReturnContext
   19304 
   19305 -------------------------------------------
   19306 Summary of changes for this label: 07_21_00
   19307 
   19308 Major file consolidation and rename.  All files within the
   19309 interpreter have been  renamed as well as most header files.  This
   19310 was done to prevent collisions with  existing files in the host
   19311 OSs -- filenames such as "config.h" and "global.h"  seem to be
   19312 quite common.  The VC project files have been updated.  All
   19313 makefiles  will require modification.
   19314 
   19315 The parser/interpreter integration continues in Phase 5 with the
   19316 implementation  of a complete 2-pass parse (the AML is parsed
   19317 twice) for each table;  This  avoids the construction of a huge
   19318 parse tree and therefore reduces the amount of  dynamic memory
   19319 required by the subsystem.  Greater use of the parse object cache
   19320 means that performance is unaffected.
   19321 
   19322 Many comments from the two code reviews have been rolled in.
   19323 
   19324 The 64-bit alignment support is complete.
   19325 
   19326 -------------------------------------------
   19327 Summary of changes for this label: 06_30_00
   19328 
   19329 With a nod and a tip of the hat to the technology of yesteryear,
   19330 we've added  support in the source code for 80 column output
   19331 devices.  The code is now mostly  constrained to 80 columns or
   19332 less to support environments and editors that 1)  cannot display
   19333 or print more than 80 characters on a single line, and 2) cannot
   19334 disable line wrapping.
   19335 
   19336 A major restructuring of the namespace data structure has been
   19337 completed.  The  result is 1) cleaner and more
   19338 understandable/maintainable code, and 2) a  significant reduction
   19339 in the dynamic memory requirement for each named ACPI  object
   19340 (almost half).
   19341 
   19342 -------------------------------------------
   19343 Summary of changes for this label: 06_23_00
   19344 
   19345 Linux support has been added.  In order to obtain approval to get
   19346 the ACPI CA  subsystem into the Linux kernel, we've had to make
   19347 quite a few changes to the  base subsystem that will affect all
   19348 users (all the changes are generic and OS- independent).  The
   19349 effects of these global changes have been somewhat far  reaching.
   19350 Files have been merged and/or renamed and interfaces have been
   19351 renamed.   The major changes are described below.
   19352 
   19353 Osd* interfaces renamed to AcpiOs* to eliminate namespace
   19354 pollution/confusion  within our target kernels.  All OSD
   19355 interfaces must be modified to match the new  naming convention.
   19356 
   19357 Files merged across the subsystem.  A number of the smaller source
   19358 and header  files have been merged to reduce the file count and
   19359 increase the density of the  existing files.  There are too many
   19360 to list here.  In general, makefiles that  call out individual
   19361 files will require rebuilding.
   19362 
   19363 Interpreter files renamed.  All interpreter files now have the
   19364 prefix am*  instead of ie* and is*.
   19365 
   19366 Header files renamed:  The acapi.h file is now acpixf.h.  The
   19367 acpiosd.h file is  now acpiosxf.h.  We are removing references to
   19368 the acronym "API" since it is  somewhat windowsy. The new name is
   19369 "external interface" or xface or xf in the  filenames.j
   19370 
   19371 
   19372 All manifest constants have been forced to upper case (some were
   19373 mixed case.)   Also, the string "ACPI_" has been prepended to many
   19374 (not all) of the constants,  typedefs, and structs.
   19375 
   19376 The globals "DebugLevel" and "DebugLayer" have been renamed
   19377 "AcpiDbgLevel" and  "AcpiDbgLayer" respectively.
   19378 
   19379 All other globals within the subsystem are now prefixed with
   19380 "AcpiGbl_" Internal procedures within the subsystem are now
   19381 prefixed with "Acpi" (with only  a few exceptions).  The original
   19382 two-letter abbreviation for the subcomponent  remains after "Acpi"
   19383 - for example, CmCallocate became AcpiCmCallocate.
   19384 
   19385 Added a source code translation/conversion utility.  Used to
   19386 generate the Linux  source code, it can be modified to generate
   19387 other types of source as well. Can  also be used to cleanup
   19388 existing source by removing extraneous spaces and blank  lines.
   19389 Found in tools/acpisrc/*
   19390 
   19391 OsdUnMapMemory was renamed to OsdUnmapMemory and then
   19392 AcpiOsUnmapMemory.  (UnMap  became Unmap).
   19393 
   19394 A "MaxUnits" parameter has been added to AcpiOsCreateSemaphore.
   19395 When set to  one, this indicates that the caller wants to use the
   19396 
   19397 semaphore as a mutex, not a  counting semaphore.  ACPI CA uses
   19398 both types.  However, implementers of this  call may want to use
   19399 different OS primitives depending on the type of semaphore
   19400 requested.  For example, some operating systems provide separate
   19401 
   19402 "mutex" and  "semaphore" interfaces - where the mutex interface is
   19403 much faster because it  doesn't have all the overhead of a full
   19404 semaphore implementation.
   19405 
   19406 Fixed a deadlock problem where a method that accesses the PCI
   19407 address space can  block forever if it is the first access to the
   19408 space.
   19409 
   19410 -------------------------------------------
   19411 Summary of changes for this label: 06_02_00
   19412 
   19413 Support for environments that cannot handle unaligned data
   19414 accesses (e.g.  firmware and OS environments devoid of alignment
   19415 handler technology namely  SAL/EFI and the IA-64 Linux kernel) has
   19416 been added (via configurable macros) in  these three areas: -
   19417 Transfer of data from the raw AML byte stream is done via byte
   19418 moves instead of    word/dword/qword moves. - External objects are
   19419 aligned within the user buffer, including package   elements (sub-
   19420 objects). - Conversion of name strings to UINT32 Acpi Names is now
   19421 done byte-wise.
   19422 
   19423 The Store operator was modified to mimic Microsoft's
   19424 implementation when storing  to a Buffer Field.
   19425 
   19426 Added a check of the BM_STS bit before entering C3.
   19427 
   19428 The methods subdirectory has been obsoleted and removed.  A new
   19429 file, cmeval.c  subsumes the functionality.
   19430 
   19431 A 16-bit (DOS) version of AcpiExec has been developed.  The
   19432 makefile is under  the acpiexec directory.
   19433