Home | History | Annotate | Line # | Download | only in dist
changes.txt revision 1.1.1.18
      1 ----------------------------------------
      2 10 August 2018. Summary of changes for version 20180810:
      3 
      4 
      5 1) ACPICA kernel-resident subsystem:
      6 
      7 Initial ACPI table loading: Attempt to continue loading ACPI tables 
      8 regardless of malformed AML. Since migrating table initialization to the 
      9 new module-level code support, the AML interpreter rejected tables upon 
     10 any ACPI error encountered during table load. This is a problem because 
     11 non-serious ACPI errors during table load do not necessarily mean that 
     12 the entire definition block (DSDT or SSDT) is invalid. This change 
     13 improves the table loading by ignoring some types of errors that can be 
     14 generated by incorrect AML. This can range from object type errors, scope 
     15 errors, and index errors.
     16 
     17 Suspend/Resume support: Update to stop unconditionally clearing ACPI IRQs 
     18 during suspend/resume. The status of ACPI events is no longer cleared 
     19 when entering the ACPI S5 system state (power off) which caused some 
     20 systems to power up immediately after turning off power in certain 
     21 situations. This was a functional regression. It was fixed by clearing 
     22 the status of all ACPI events again when entering S5 (for system-wide 
     23 suspend or hibernation the clearing of the status of all events is not 
     24 desirable, as it might cause the kernel to miss wakeup events sometimes). 
     25 Rafael Wysocki.
     26 
     27 
     28 2) iASL Compiler/Disassembler and Tools:
     29 
     30 AcpiExec: Enhanced the -fi option (Namespace initialization file). Field 
     31 elements listed in the initialization file were previously initialized 
     32 after the table load and before executing module-level code blocks. 
     33 Recent changes in the module-level code support means that the table load 
     34 becomes a large control method execution. If fields are used within 
     35 module-level code and we are executing with the -fi option, the 
     36 initialization values were used to initialize the namespace object(s) 
     37 only after the table was finished loading. This change Provides an early 
     38 initialization of objects specified in the initialization file so that 
     39 field unit values are populated during the table load (not after the 
     40 load).
     41 
     42 AcpiExec: Fixed a small memory leak regression that could result in 
     43 warnings during exit of the utility. These warnings were similar to 
     44 these:
     45     0002D690 Length 0x0006 nsnames-0502 [Not a Descriptor - too small]
     46     0002CD70 Length 0x002C utcache-0453 [Operand] Integer RefCount 0x0001
     47 
     48 ----------------------------------------
     49 29 June 2018. Summary of changes for version 20180629:
     50 
     51 
     52 1) iASL Compiler/Disassembler and Tools:
     53 
     54 iASL: Fixed a regression related to the use of the ASL External 
     55 statement. Error checking for the use of the External() statement has 
     56 been relaxed. Previously, a restriction on the use of External meant that 
     57 the referenced named object was required to be defined in a different 
     58 table (an SSDT). Thus it would be an error to declare an object as an 
     59 external and then define the same named object in the same table. For 
     60 example:
     61     DefinitionBlock (...)
     62     {
     63         External (DEV1)
     64         Device (DEV1){...} // This was an error
     65     }
     66 However, this behavior has caused regressions in some existing ASL code, 
     67 because there is code that depends on named objects and externals (with 
     68 the same name) being declared in the same table. This change will allow 
     69 the ASL code above to compile without errors or warnings.
     70 
     71 iASL: Implemented ASL language extensions for four operators to make some 
     72 of their arguments optional instead of required:
     73     1) Field (RegionName, AccessType, LockRule, UpdateRule)
     74     2) BankField (RegionName, BankName, BankValue,
     75                 AccessType, LockRule, UpdateRule)
     76     3) IndexField (IndexName, DataName,
     77                 AccessType, LockRule, UpdateRule)
     78 For the Field operators above, the AccessType, LockRule, and UpdateRule 
     79 are now optional arguments. The default values are:
     80         AccessType: AnyAcc
     81         LockRule:   NoLock
     82         UpdateRule: Preserve
     83     4) Mutex (MutexName, SyncLevel)
     84 For this operator, the SyncLevel argument is now optional. This argument 
     85 is rarely used in any meaningful way by ASL code, and thus it makes sense 
     86 to make it optional. The default value is:
     87         SyncLevel:  0
     88 
     89 iASL: Attempted use of the ASL Unload() operator now results in the 
     90 following warning:
     91     "Unload is not supported by all operating systems"
     92 This is in fact very true, and the Unload operator may be completely 
     93 deprecated in the near future.
     94 
     95 AcpiExec: Fixed a regression for the -fi option (Namespace initialization 
     96 file. Recent changes in the ACPICA module-level code support altered the 
     97 table load/initialization sequence . This means that the table load has 
     98 become a large method execution of the table itself. If Operation Region 
     99 Fields are used within any module-level code and the -fi option was 
    100 specified, the initialization values were populated only after the table 
    101 had completely finished loading (and thus the module-level code had 
    102 already been executed). This change moves the initialization of objects 
    103 listed in the initialization file to before the table is executed as a 
    104 method. Field unit values are now initialized before the table execution 
    105 is performed.
    106 
    107 ----------------------------------------
    108 31 May 2018. Summary of changes for version 20180531:
    109 
    110 
    111 1) ACPICA kernel-resident Subsystem:
    112 
    113 Implemented additional support to help ensure that a DSDT or SSDT is 
    114 fully loaded even if errors are incurred during the load. The majority of 
    115 the problems that are seen is the failure of individual AML operators 
    116 that occur during execution of any module-level code (MLC) existing in 
    117 the table. This support adds a mechanism to abort the current ASL 
    118 statement (AML opcode), emit an error message, and to simply move on to 
    119 the next opcode -- instead of aborting the entire table load. This is 
    120 different than the execution of a control method where the entire method 
    121 is aborted upon any error. The goal is to perform a very "best effort" to 
    122 load the ACPI tables. The most common MLC errors that have been seen in 
    123 the field are direct references to unresolved ASL/AML symbols (referenced 
    124 directly without the use of the CondRefOf operator to validate the 
    125 symbol). This new ACPICA behavior is now compatible with other ACPI 
    126 implementations.
    127 
    128 Interpreter: The Unload AML operator is no longer supported for the 
    129 reasons below. An AE_NOT_IMPLEMENTED exception is returned.
    130 1) A correct implementation on at least some hosts may not be possible.
    131 2) Other ACPI implementations do not correctly/fully support it.
    132 3) It requires host device driver support which is not known to exist.
    133     (To properly support namespace unload out from underneath.)
    134 4) This AML operator has never been seen in the field.
    135 
    136 Parser: Added a debug option to dump AML parse sub-trees as they are 
    137 being executed. Used with ACPI_DEBUG_PRINT, the enabling debug level is 
    138 ACPI_DB_PARSE_TREES.
    139 
    140 Debugger: Reduced the verbosity for errors incurred during table load and 
    141 module-level code execution.
    142 
    143 Completed an investigation into adding a namespace node "owner list" 
    144 instead of the current "owner ID" associated with namespace nodes. This 
    145 list would link together all nodes that are owned by an individual 
    146 control method. The purpose would be to enhance control method execution 
    147 by speeding up cleanup during method exit (all namespace nodes created by 
    148 a method are deleted upon method termination.) Currently, the entire 
    149 namespace must be searched for matching owner IDs if (and only if) the 
    150 method creates named objects outside of the local scope. However, by far 
    151 the most common case is that methods create objects locally, not outside 
    152 the method scope. There is already an ACPICA optimization in place that 
    153 only searches the entire namespace in the rare case of a method creating 
    154 objects elsewhere in the namespace. Therefore, it is felt that the 
    155 overhead of adding an additional pointer to each namespace node to 
    156 implement the owner list makes this feature unnecessary.
    157 
    158 
    159 2) iASL Compiler/Disassembler and Tools:
    160 
    161 iASL, Disassembler, and Template generator: Implemented support for 
    162 Revision D of the IORT table. Adds a new subtable that is used to specify 
    163 SMMUv3 PMCGs. rmurphy-arm.
    164 
    165 Disassembler: Restored correct table header validation for the "special" 
    166 ACPI tables -- RSDP and FACS. These tables do not contain a standard ACPI 
    167 table header and must be special-cased. This was a regression that has 
    168 been present for apparently a long time.
    169 
    170 AcpiExec: Reduced verbosity of the local exception handler implemented 
    171 within acpiexec. This handler is invoked by ACPICA upon any exceptions 
    172 generated during control method execution. A new option was added: -vh 
    173 restores the original verbosity level if desired.
    174 
    175 AcpiExec: Changed the default base from decimal to hex for the -x option 
    176 (set debug level). This simplifies the use of this option and matches the 
    177 behavior of the corresponding iASL -x option.
    178 
    179 AcpiExec: Restored a force-exit on multiple control-c (sigint) 
    180 interrupts. This allows program termination even if other issues cause 
    181 the control-c to fail.
    182 
    183 ASL test suite (ASLTS): Added tests for the recently implemented package 
    184 element resolution mechanism that allows forward references to named 
    185 objects from individual package elements (this mechanism provides 
    186 compatibility with other ACPI implementations.)
    187 
    188 
    189 ----------------------------------------
    190 8 May 2018. Summary of changes for version 20180508:
    191 
    192 
    193 1) ACPICA kernel-resident subsystem:
    194 
    195 Completed the new (recently deployed) package resolution mechanism for 
    196 the Load and LoadTable ASL/AML operators. This fixes a regression that 
    197 was introduced in version 20180209 that could result in an 
    198 AE_AML_INTERNAL exception during the loading of a dynamic ACPI/AML table 
    199 (SSDT) that contains package objects.
    200 
    201 
    202 2) iASL Compiler/Disassembler and Tools:
    203 
    204 AcpiDump and AcpiXtract: Implemented support for ACPI tables larger than 
    205 1 MB. This change allows for table offsets within the acpidump file to be 
    206 up to 8 characters. These changes are backwards compatible with existing 
    207 acpidump files.
    208 
    209 
    210 ----------------------------------------
    211 27 April 2018. Summary of changes for version 20180427: 
    212 
    213 
    214 1) ACPICA kernel-resident subsystem:
    215 
    216 Debugger: Added support for Package objects in the "Test Objects" 
    217 command. This command walks the entire namespace and evaluates all named 
    218 data objects (Integers, Strings, Buffers, and now Packages).
    219 
    220 Improved error messages for the namespace root node. Originally, the root 
    221 was referred to by the confusing string "\___". This has been replaced by 
    222 "Namespace Root" for clarification.
    223 
    224 Fixed a potential infinite loop in the AcpiRsDumpByteList function. Colin 
    225 Ian King <colin.king (a] canonical.com>.
    226 
    227 
    228 2) iASL Compiler/Disassembler and Tools: 
    229 
    230 iASL: Implemented support to detect and flag illegal forward references. 
    231 For compatibility with other ACPI implementations, these references are 
    232 now illegal at the root level of the DSDT or SSDTs. Forward references 
    233 have always been illegal within control methods. This change should not 
    234 affect existing ASL/AML code because of the fact that these references 
    235 have always been illegal in the other ACPI implementation.
    236 
    237 iASL: Added error messages for the case where a table OEM ID and OEM 
    238 TABLE ID strings are longer than the ACPI-defined length. Previously, 
    239 these strings were simply silently truncated.
    240 
    241 iASL: Enhanced the -tc option (which creates an AML hex file in C, 
    242 suitable for import into a firmware project):
    243   1) Create a unique name for the table, to simplify use of multiple 
    244 SSDTs.
    245   2) Add a protection #ifdef in the file, similar to a .h header file.
    246 With assistance from Sami Mujawar, sami.mujawar (a] arm.com and Evan Lloyd, 
    247 evan.lloyd (a] arm.com
    248 
    249 AcpiExec: Added a new option, -df, to disable the local fault handler. 
    250 This is useful during debugging, where it may be desired to drop into a 
    251 debugger on a fault.
    252 
    253 ----------------------------------------
    254 13 March 2018. Summary of changes for version 20180313:
    255 
    256 
    257 1) ACPICA kernel-resident subsystem:
    258 
    259 Implemented various improvements to the GPE support:
    260 
    261 1) Dispatch all active GPEs at initialization time so that no GPEs are 
    262 lost.
    263 2) Enable runtime GPEs earlier. Some systems expect GPEs to be enabled 
    264 before devices are enumerated.
    265 3) Don't unconditionally clear ACPI IRQs during suspend/resume, so that 
    266 IRQs are not lost.
    267 4) Add parallel GPE handling to eliminate the possibility of dispatching 
    268 the same GPE twice.
    269 5) Dispatch any pending GPEs after enabling for the first time.
    270 
    271 AcpiGetObjectInfo - removed support for the _STA method. This was causing 
    272 problems on some platforms.
    273 
    274 Added a new _OSI string, "Windows 2017.2".
    275 
    276 Cleaned up and simplified the module-level code support. These changes 
    277 are in preparation for the eventual removal of the legacy MLC support 
    278 (deferred execution), replaced by the new MLC architecture which executes 
    279 the MLC as a table is loaded (DSDT/SSDTs).
    280 
    281 Changed a compile-time option to a runtime option. Changes the option to 
    282 ignore ACPI table load-time package resolution errors into a runtime 
    283 option. Used only for platforms that generate many AE_NOT_FOUND errors 
    284 during boot. AcpiGbl_IgnorePackageResolutionErrors.
    285 
    286 Fixed the ACPI_ERROR_NAMESPACE macro. This change involves putting some 
    287 ACPI_ERROR_NAMESPACE parameters inside macros. By doing so, we avoid 
    288 compilation errors from unused variables (seen with some compilers).
    289 
    290 
    291 2) iASL Compiler/Disassembler and Tools:
    292 
    293 ASLTS: parallelized execution in order to achieve an (approximately) 2X 
    294 performance increase.
    295 
    296 ASLTS: Updated to use the iASL __LINE__ and __METHOD__ macros. Improves 
    297 error reporting.
    298 
    299 ----------------------------------------
    300 09 February 2018. Summary of changes for version 20180209:
    301 
    302 
    303 1) ACPICA kernel-resident subsystem:
    304 
    305 Completed the final integration of the recent changes to Package Object 
    306 handling and the module-level AML code support. This allows forward 
    307 references from individual package elements when the package object is 
    308 declared from within module-level code blocks. Provides compatibility 
    309 with other ACPI implementations.
    310 
    311 The new architecture for the AML module-level code has been completed and 
    312 is now the default for the ACPICA code. This new architecture executes 
    313 the module-level code in-line as the ACPI table is loaded/parsed instead 
    314 of the previous architecture which deferred this code until after the 
    315 table was fully loaded. This solves some ASL code ordering issues and 
    316 provides compatibility with other ACPI implementations. At this time, 
    317 there is an option to fallback to the earlier architecture, but this 
    318 support is deprecated and is planned to be completely removed later this 
    319 year.
    320 
    321 Added a compile-time option to ignore AE_NOT_FOUND exceptions during 
    322 resolution of named reference elements within Package objects. Although 
    323 this is potentially a serious problem, it can generate a lot of 
    324 noise/errors on platforms whose firmware carries around a bunch of unused 
    325 Package objects. To disable these errors, define 
    326 ACPI_IGNORE_PACKAGE_RESOLUTION_ERRORS in the OS-specific header. All 
    327 errors are always reported for ACPICA applications such as AcpiExec.
    328 
    329 Fixed a regression related to the explicit type-conversion AML operators 
    330 (ToXXXX). The regression was introduced early in 2017 but was not seen 
    331 until recently because these operators are not fully supported by other 
    332 ACPI implementations and are thus rarely used by firmware developers. The 
    333 operators are defined by the ACPI specification to not implement the 
    334 "implicit result object conversion". The regression incorrectly 
    335 introduced this object conversion for the following explicit conversion 
    336 operators:
    337     ToInteger
    338     ToString
    339     ToBuffer
    340     ToDecimalString
    341     ToHexString
    342     ToBCD
    343     FromBCD
    344 
    345 
    346 2) iASL Compiler/Disassembler and Tools:
    347 
    348 iASL: Fixed a problem with the compiler constant folding feature as 
    349 related to the ToXXXX explicit conversion operators. These operators do 
    350 not support the "implicit result object conversion" by definition. Thus, 
    351 ASL expressions that use these operators cannot be folded to a simple 
    352 Store operator because Store implements the implicit conversion. This 
    353 change uses the CopyObject operator for the ToXXXX operator folding 
    354 instead. CopyObject is defined to not implement implicit result 
    355 conversions and is thus appropriate for folding the ToXXXX operators.
    356 
    357 iASL: Changed the severity of an error condition to a simple warning for 
    358 the case where a symbol is declared both locally and as an external 
    359 symbol. This accommodates existing ASL code.
    360 
    361 AcpiExec: The -ep option to enable the new architecture for module-level 
    362 code has been removed. It is replaced by the -dp option which instead has 
    363 the opposite effect: it disables the new architecture (the default) and 
    364 enables the legacy architecture. When the legacy code is removed in the 
    365 future, the -dp option will be removed also.
    366 
    367 ----------------------------------------
    368 05 January 2018. Summary of changes for version 20180105:
    369 
    370 
    371 1) ACPICA kernel-resident subsystem:
    372 
    373 Updated all copyrights to 2018. This affects all source code modules.
    374 
    375 Fixed a possible build error caused by an unresolved reference to the 
    376 AcpiUtSafeStrncpy function.
    377 
    378 Removed NULL pointer arithmetic in the various pointer manipulation 
    379 macros. All "(void *) NULL" constructs are converted to "(void *) 0". 
    380 This eliminates warnings/errors in newer C compilers. Jung-uk Kim.
    381 
    382 Added support for A32 ABI compilation, which uses the ILP32 model. Anuj 
    383 Mittal.
    384 
    385 
    386 2) iASL Compiler/Disassembler and Tools:
    387 
    388 ASLTS: Updated all copyrights to 2018.
    389 
    390 Tools: Updated all signon copyrights to 2018.
    391 
    392 AcpiXtract: Fixed a regression related to ACPI table signatures where the 
    393 signature was truncated to 3 characters (instead of 4).
    394 
    395 AcpiExec: Restore the original terminal mode after the use of the -v and 
    396 -vd options.
    397 
    398 ASLTS: Deployed the iASL __METHOD__ macro across the test suite.
    399 
    400 ----------------------------------------
    401 14 December 2017. Summary of changes for version 20171214:
    402 
    403 
    404 1) ACPICA kernel-resident subsystem:
    405 
    406 Fixed a regression in the external (public) AcpiEvaluateObjectTyped 
    407 interface where the optional "pathname" argument had inadvertently become 
    408 a required argument returning an error if omitted (NULL pointer 
    409 argument).
    410 
    411 Fixed two possible memory leaks related to the recently developed "late 
    412 resolution" of reference objects within ASL Package Object definitions.
    413 
    414 Added two recently defined _OSI strings: "Windows 2016" and "Windows 
    415 2017". Mario Limonciello.
    416 
    417 Implemented and deployed a safer version of the C library function 
    418 strncpy:  AcpiUtSafeStrncpy. The intent is to at least prevent the 
    419 creation of unterminated strings as a possible result of a standard 
    420 strncpy.
    421 
    422 Cleaned up and restructured the global variable file (acglobal.h). There 
    423 are many changes, but no functional changes.
    424 
    425 
    426 2) iASL Compiler/Disassembler and Tools:
    427 
    428 iASL Table Compiler: Fixed a problem with the DBG2 ACPI table where the 
    429 optional OemData field at the end of the table was incorrectly required 
    430 for proper compilation. It is now correctly an optional field.
    431 
    432 ASLTS: The entire suite was converted from standard ASL to the ASL+ 
    433 language, using the ASL-to-ASL+ converter which is integrated into the 
    434 iASL compiler. A binary compare of all output files has verified the 
    435 correctness of the conversion.
    436 
    437 iASL: Fixed the source code build for platforms where "char" is unsigned. 
    438 This affected the iASL lexer only. Jung-uk Kim.
    439 
    440 ----------------------------------------
    441 10 November 2017. Summary of changes for version 20171110:
    442 
    443 
    444 1) ACPICA kernel-resident subsystem:
    445 
    446 This release implements full support for ACPI 6.2A:
    447     NFIT - Added a new subtable, "Platform Capabilities Structure"
    448 No other changes to ACPICA were required, since ACPI 6.2A is primarily an 
    449 errata release of the specification.
    450 
    451 Other ACPI table changes:
    452     IORT: Added the SMMUv3 Device ID mapping index. Hanjun Guo
    453     PPTT: Added cache attribute flag definitions to actbl1.h. Jeremy 
    454 Linton
    455 
    456 Utilities: Modified the string/integer conversion functions to use 
    457 internal 64-bit divide support instead of a native divide. On 32-bit 
    458 platforms, a 64-bit divide typically requires a library function which 
    459 may not be present in the build (kernel or otherwise).
    460 
    461 Implemented a targeted error message for timeouts returned from the 
    462 Embedded Controller device driver. This is seen frequently enough to 
    463 special-case an AE_TIME returned from an EC operation region access:
    464     "Timeout from EC hardware or EC device driver"
    465 
    466 Changed the "ACPI Exception" message prefix to "ACPI Error" so that all 
    467 runtime error messages have the identical prefix.
    468 
    469 
    470 2) iASL Compiler/Disassembler and Tools:
    471 
    472 AcpiXtract: Fixed a problem with table header detection within the 
    473 acpidump file. Processing a table could be ended early if a 0x40 (@) 
    474 appears in the original binary table, resulting in the @ symbol appearing 
    475 in the decoded ASCII field at the end of the acpidump text line. The 
    476 symbol caused acpixtract to incorrectly think it had reached the end of 
    477 the current table and the beginning of a new table.
    478 
    479 AcpiXtract: Added an option (-f) to ignore some errors during table 
    480 extraction. This initial implementation ignores non-ASCII and non-
    481 printable characters found in the acpidump text file.
    482 
    483 TestSuite(ASLTS)/AcpiExec: Fixed and restored the memory usage statistics 
    484 for ASLTS. This feature is used to track memory allocations from 
    485 different memory caches within the ACPICA code. At the end of an ASLTS 
    486 run, these memory statistics are recorded and stored in a log file.
    487 
    488 Debugger (user-space version): Implemented a simple "Background" command. 
    489 Creates a new thread to execute a control method in the background, while 
    490 control returns to the debugger prompt to allow additional commands.
    491     Syntax: Background <Namepath> [Arguments]
    492 
    493 ----------------------------------------
    494 29 September 2017. Summary of changes for version 20170929:
    495 
    496 
    497 1) ACPICA kernel-resident subsystem:
    498 
    499 Redesigned and implemented an improved ASL While() loop timeout 
    500 mechanism. This mechanism is used to prevent infinite loops in the kernel 
    501 AML interpreter caused by either non-responsive hardware or incorrect AML 
    502 code. The new implementation uses AcpiOsGetTimer instead of a simple 
    503 maximum loop count, and is thus more accurate and constant across 
    504 different machines. The default timeout is currently 30 seconds, but this 
    505 may be adjusted later.
    506 
    507 Renamed the ACPI_AML_INFINITE_LOOP exception to AE_AML_LOOP_TIMEOUT to 
    508 better reflect the new implementation of the loop timeout mechanism.
    509 
    510 Updated the AcpiGetTimerDuration interface to cleanup the 64-bit support 
    511 and to fix an off-by-one error. Jung-uk Kim.
    512 
    513 Fixed an EFI build problem by updating the makefiles to for a new file 
    514 that was added, utstrsuppt.c
    515 
    516 
    517 2) iASL Compiler/Disassembler and Tools:
    518 
    519 Implemented full support for the PDTT, SDEV, and TPM2 ACPI tables. This 
    520 includes support in the table disassembler, compiler, and template 
    521 generator.
    522 
    523 iASL: Added an exception for an illegal type of recursive method 
    524 invocation. If a method creates named objects, the first recursive call 
    525 will fail at runtime. This change adds an error detection at compile time 
    526 to catch the problem up front. Note: Marking such a method as 
    527 "serialized" will not help with this problem, because the same thread can 
    528 acquire the method mutex more than once. Example compiler and runtime 
    529 output:
    530 
    531     Method (MTH1)
    532     {
    533         Name (INT1, 1)
    534         MTH1 ()
    535     }
    536 
    537     dsdt.asl     22: MTH1 ()
    538     Error    6152 -  ^ Illegal recursive call to method
    539                        that creates named objects (MTH1)
    540 
    541 Previous runtime exception:
    542     ACPI Error: [INT1] Namespace lookup failure,
    543     AE_ALREADY_EXISTS (20170831/dswload2-465)
    544 
    545 iASL: Updated support for External() opcodes to improve namespace 
    546 management and error detection. These changes are related to issues seen 
    547 with multiple-segment namespace pathnames within External declarations, 
    548 such as below:
    549 
    550     External(\_SB.PCI0.GFX0, DeviceObj)
    551     External(\_SB.PCI0.GFX0.ALSI)
    552 
    553 iASL: Implemented support for multi-line error/warning messages. This 
    554 enables more detailed and helpful error messages as below, from the 
    555 initial deployment for the duplicate names error:
    556 
    557     DSDT.iiii   1692:       Device(PEG2) {
    558     Error    6074 -                  ^ Name already exists in scope 
    559 (PEG2)
    560 
    561         Original name creation/declaration below:
    562         DSDT.iiii     93:   External(\_SB.PCI0.PEG2, DeviceObj)
    563 
    564 AcpiXtract: Added additional flexibility to support differing input hex 
    565 dump formats. Specifically, hex dumps that contain partial disassembly 
    566 and/or comments within the ACPI table data definition. There exist some 
    567 dump utilities seen in the field that create this type of hex dump (such 
    568 as Simics). For example:
    569 
    570     DSDT @ 0xdfffd0c0 (10999 bytes)
    571         Signature DSDT
    572         Length 10999
    573         Revision 1
    574         Checksum 0xf3 (Ok)
    575         OEM_ID BXPC
    576         OEM_table_id BXDSDT
    577         OEM_revision 1
    578         Creator_id 1280593481
    579         Creator_revision 537399345
    580       0000: 44 53 44 54 f7 2a 00 00 01 f3 42 58 50 43 00 00
    581       ...
    582       2af0: 5f 4c 30 46 00 a4 01
    583 
    584 Test suite: Miscellaneous changes/fixes:
    585     More cleanup and simplification of makefiles
    586     Continue compilation of test cases after a compile failure
    587     Do not perform binary compare unless both files actually exist
    588 
    589 iASL: Performed some code/module restructuring. Moved all memory 
    590 allocation functions to new modules. Two new files, aslallocate.c and 
    591 aslcache.c
    592 
    593 ----------------------------------------
    594 31 August 2017. Summary of changes for version 20170831:
    595 
    596 
    597 1) ACPICA kernel-resident subsystem:
    598 
    599 Implemented internal support for full 64-bit addresses that appear in all 
    600 Generic Address Structure (GAS) structures. Previously, only the lower 32 
    601 bits were used. Affects the use of GAS structures in the FADT and other 
    602 tables, as well as the GAS structures passed to the AcpiRead and 
    603 AcpiWrite public external interfaces that are used by drivers. Lv Zheng.
    604 
    605 Added header support for the PDTT ACPI table (Processor Debug Trigger 
    606 Table). Full support in the iASL Data Table Compiler and disassembler is 
    607 forthcoming.
    608 
    609 
    610 2) iASL Compiler/Disassembler and Tools:
    611 
    612 iASL/Disassembler: Fixed a problem with the PPTT ACPI table (Processor 
    613 Properties Topology Table) where a flag bit was specified in the wrong 
    614 bit position ("Line Size Valid", bit 6).
    615 
    616 iASL: Implemented support for Octal integer constants as defined by the 
    617 ASL language grammar, per the ACPI specification. Any integer constant 
    618 that starts with a zero is an octal constant. For example,
    619     Store (037777, Local0) /* Octal constant */
    620     Store (0x3FFF, Local0) /* Hex equivalent */
    621     Store (16383,  Local0) /* Decimal equivalent */
    622 
    623 iASL: Improved overflow detection for 64-bit string conversions during 
    624 compilation of integer constants. "Overflow" in this case means a string 
    625 that represents an integer that is too large to fit into a 64-bit value. 
    626 Any 64-bit constants within a 32-bit DSDT or SSDT are still truncated to 
    627 the low-order 32 bits with a warning, as previously implemented. Several 
    628 new exceptions are defined that indicate a 64-bit overflow, as well as 
    629 the base (radix) that was used during the attempted conversion. Examples:
    630     Local0 = 0xAAAABBBBCCCCDDDDEEEEFFFF        // AE_HEX_OVERFLOW
    631     Local0 = 01111222233334444555566667777     // AE_OCTAL_OVERFLOW
    632     Local0 = 11112222333344445555666677778888  // AE_DECIMAL_OVERFLOW
    633 
    634 iASL: Added a warning for the case where a ResourceTemplate is declared 
    635 with no ResourceDescriptor entries (coded as "ResourceTemplate(){}"). In 
    636 this case, the resulting template is created with a single END_TAG 
    637 descriptor, which is essentially useless.
    638 
    639 iASL: Expanded the -vw option (ignore specific warnings/remarks) to 
    640 include compilation error codes as well.
    641 
    642 ----------------------------------------
    643 28 July 2017. Summary of changes for version 20170728:
    644 
    645 
    646 1) ACPICA kernel-resident subsystem:
    647 
    648 Fixed a regression seen with small resource descriptors that could cause 
    649 an inadvertent AE_AML_NO_RESOURCE_END_TAG exception.
    650 
    651 AML interpreter: Implemented a new feature that allows forward references 
    652 from individual named references within package objects that are 
    653 contained within blocks of "module-level code". This provides 
    654 compatibility with other ACPI implementations and supports existing 
    655 firmware that depends on this feature. Example:
    656 
    657     Name (ABCD, 1)
    658     If (ABCD)                       /* An If() at module-level */
    659     {
    660         Name (PKG1, Package()
    661         {
    662             INT1                    /* Forward reference to object INT1 
    663 */
    664         })
    665         Name (INT1, 0x1234)
    666     }
    667 
    668 AML Interpreter: Fixed a problem with the Alias() operator where aliases 
    669 to some ASL objects were not handled properly. Objects affected are: 
    670 Mutex, Event, and OperationRegion.
    671 
    672 AML Debugger: Enhanced to properly handle AML Alias objects. These 
    673 objects have one level of indirection which was not fully supported by 
    674 the debugger.
    675 
    676 Table Manager: Added support to detect and ignore duplicate SSDTs within 
    677 the XSDT/RSDT. This error in the XSDT has been seen in the field.
    678 
    679 EFI and EDK2 support:
    680     Enabled /WX flag for MSVC builds
    681     Added support for AcpiOsStall, AcpiOsSleep, and AcpiOsGetTimer
    682     Added local support for 64-bit multiply and shift operations
    683     Added support to compile acpidump.efi on Windows
    684     Added OSL function stubs for interfaces not used under EFI
    685 
    686 Added additional support for the _DMA predefined name. _DMA returns a 
    687 buffer containing a resource template. This change add support within the 
    688 resource manager (AcpiWalkResourceBuffer) to walk and parse this list of 
    689 resource descriptors. Lorenzo Pieralisi <lorenzo.pieralisi (a] arm.com>
    690 
    691 
    692 2) iASL Compiler/Disassembler and Tools:
    693 
    694 iASL: Fixed a problem where the internal input line buffer(s) could 
    695 overflow if there are very long lines in the input ASL source code file. 
    696 Implemented buffer management that automatically increases the size of 
    697 the buffers as necessary.
    698 
    699 iASL: Added an option (-vx) to "expect" particular remarks, warnings and 
    700 errors. If the specified exception is not raised during compilation, the 
    701 compiler emits an error. This is intended to support the ASL test suite, 
    702 but may be useful in other contexts.
    703 
    704 iASL: Implemented a new predefined macro, __METHOD__, which returns a 
    705 string containing the name of the current control method that is being 
    706 compiled.
    707 
    708 iASL: Implemented debugger and table compiler support for the SDEI ACPI 
    709 table (Software Delegated Exception Interface). James Morse 
    710 <james.morse (a] arm.com>
    711 
    712 Unix/Linux makefiles: Added an option to disable compile optimizations. 
    713 The disable occurs when the NOOPT flag is set to TRUE. 
    714 theracermaster (a] gmail.com
    715 
    716 Acpidump: Added support for multiple DSDT and FACS tables. This can occur 
    717 when there are different tables for 32-bit versus 64-bit.
    718 
    719 Enhanced error reporting for the ASL test suite (ASLTS) by removing 
    720 unnecessary/verbose text, and emit the actual line number where an error 
    721 has occurred. These changes are intended to improve the usefulness of the 
    722 test suite.
    723 
    724 ----------------------------------------
    725 29 June 2017. Summary of changes for version 20170629:
    726 
    727 
    728 1) ACPICA kernel-resident subsystem:
    729 
    730 Tables: Implemented a deferred ACPI table verification. This is useful 
    731 for operating systems where the tables cannot be verified in the early 
    732 initialization stage due to early memory mapping limitations on some 
    733 architectures. Lv Zheng.
    734 
    735 Tables: Removed the signature validation for dynamically loaded tables. 
    736 Provides compatibility with other ACPI implementations. Previously, only 
    737 SSDT tables were allowed, as per the ACPI specification. Now, any table 
    738 signature can be used via the Load() operator. Lv Zheng.
    739 
    740 Tables: Fixed several mutex issues that could cause errors during table 
    741 acquisition. Lv Zheng.
    742 
    743 Tables: Fixed a problem where an ACPI warning could be generated if a 
    744 null pointer was passed to the AcpiPutTable interface. Lv Zheng.
    745 
    746 Tables: Added a mechanism to handle imbalances for the AcpiGetTable and 
    747 AcpiPutTable interfaces. This applies to the "late stage" table loading 
    748 when the use of AcpiPutTable is no longer required (since the system 
    749 memory manager is fully running and available). Lv Zheng.
    750 
    751 Fixed/Reverted a regression during processing of resource descriptors 
    752 that contain only a single EndTag. Fixes an AE_AML_NO_RESOURCE_END_TAG 
    753 exception in this case.
    754 
    755 Headers: IORT/SMMU support: Updated the SMMU models for Revision C of the 
    756 I/O Remapping specification. Robin Murphy <robin.murphy (a] arm.com>
    757 
    758 Interpreter: Fixed a possible fault if an Alias operator with an invalid 
    759 or duplicate target is encountered during Alias creation in 
    760 AcpiExCreateAlias. Alex James <theracermaster (a] gmail.com>
    761 
    762 Added an option to use designated initializers for function pointers. 
    763 Kees Cook <keescook (a] google.com>
    764 
    765 
    766 2) iASL Compiler/Disassembler and Tools:
    767 
    768 iASL: Allow compilation of External declarations with target pathnames 
    769 that refer to existing named objects within the table. Erik Schmauss.
    770 
    771 iASL: Fixed a regression when compiling FieldUnits. Fixes an error if a 
    772 FieldUnit name also is declared via External in the same table. Erik 
    773 Schmauss.
    774 
    775 iASL: Allow existing scope names within pathnames used in External 
    776 statements. For example:
    777     External (ABCD.EFGH) // ABCD exists, but EFGH is truly external
    778     Device (ABCD)
    779 
    780 iASL: IORT ACPI table: Implemented changes required to decode the new 
    781 Proximity Domain for the SMMUv3 IORT. Disassembler and Data Table 
    782 compiler. Ganapatrao Kulkarni <ganapatrao.kulkarni (a] cavium.com>
    783 
    784 Disassembler: Don't abort disassembly on errors from External() 
    785 statements. Erik Schmauss.
    786 
    787 Disassembler: fixed a possible fault when one of the Create*Field 
    788 operators references a Resource Template. ACPICA Bugzilla 1396.
    789 
    790 iASL: In the source code, resolved some naming inconsistences across the 
    791 parsing support. Fixes confusion between "Parse Op" and "Parse Node". 
    792 Adds a new file, aslparseop.c
    793 
    794 ----------------------------------------
    795 31 May 2017. Summary of changes for version 20170531:
    796 
    797 
    798 0) ACPI 6.2 support:
    799 
    800 The ACPI specification version 6.2 has been released and is available at
    801 http://uefi.org/specifications
    802 
    803 This version of ACPICA fully supports the ACPI 6.2 specification. Changes 
    804 are summarized below.
    805 
    806 New ACPI tables (Table Compiler/Disassembler/Templates):
    807     HMAT (Heterogeneous Memory Attributes Table)
    808     WSMT (Windows SMM Security Mitigation Table)
    809     PPTT (Processor Properties Topology Table)
    810 
    811 New subtables for existing ACPI tables:
    812     HEST (New subtable, Arch-deferred machine check)
    813     SRAT (New subtable, Arch-specific affinity structure)
    814     PCCT (New subtables, Extended PCC subspaces (types 3 and 4))
    815 
    816 Simple updates for existing ACPI tables:
    817     BGRT (two new flag bits)
    818     HEST (New bit defined for several subtables, GHES_ASSIST)
    819 
    820 New Resource Descriptors and Resource macros (Compiler/Disassembler):
    821     PinConfig()
    822     PinFunction()
    823     PinGroup()
    824     PinGroupConfig()
    825     PinGroupFunction()
    826     New type for hardware error notification (section 18.3.2.9)
    827 
    828 New predefined names/methods (Compiler/Interpreter):
    829     _HMA (Heterogeneous Memory Attributes)
    830     _LSI (Label Storage Information)
    831     _LSR (Label Storage Read)
    832     _LSW (Label Storage Write)
    833 
    834 ASL grammar/macro changes (Compiler):
    835     For() ASL macro, implemented with the AML while operator
    836     Extensions to Concatenate operator
    837     Support for multiple definition blocks in same ASL file
    838     Clarification for Buffer operator
    839     Allow executable AML code underneath all scopes (Devices, etc.)
    840     Clarification/change for the _OSI return value
    841     ASL grammar update for reference operators
    842     Allow a zero-length string for AML filename in DefinitionBlock
    843 
    844 Miscellaneous:
    845     New device object notification value
    846     Remove a notify value (0x0C) for graceful shutdown
    847     New UUIDs for processor/cache properties and
    848         physical package property
    849     New _HID, ACPI0014 (Wireless Power Calibration Device)
    850 
    851 
    852 1) ACPICA kernel-resident subsystem:
    853 
    854 Added support to disable ACPI events on hardware-reduced platforms. 
    855 Eliminates error messages of the form "Could not enable fixed event". Lv 
    856 Zheng
    857 
    858 Fixed a problem using Device/Thermal objects with the ObjectType and 
    859 DerefOf ASL operators. This support had not been fully/properly 
    860 implemented.
    861 
    862 Fixed a problem where if a Buffer object containing a resource template 
    863 was longer than the actual resource template, an error was generated -- 
    864 even though the AML is legal. This case has been seen in the field.
    865 
    866 Fixed a problem with the header definition of the MADT PCAT_COMPAT flag. 
    867 The values for DUAL_PIC and MULTIPLE_APIC were reversed.
    868 
    869 Added header file changes for the TPM2 ACPI table. Update to new version 
    870 of the TCG specification. Adds a new TPM2 subtable for ARM SMC.
    871 
    872 Exported the external interfaces AcpiAcquireMutex and AcpiReleaseMutex. 
    873 These interfaces are intended to be used only in conjunction with the 
    874 predefined _DLM method (Device Lock Method). "This object appears in a 
    875 device scope when AML access to the device must be synchronized with the 
    876 OS environment".
    877 
    878 Example Code and Data Size: These are the sizes for the OS-independent 
    879 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
    880 debug version of the code includes the debug output trace mechanism and 
    881 has a much larger code and data size.
    882 
    883   Current Release:
    884     Non-Debug Version: 143.1K Code, 60.0K Data, 203.1K Total
    885     Debug Version:     204.0K Code, 84.3K Data, 288.3K Total
    886   Previous Release:
    887     Non-Debug Version: 141.7K Code, 58.5K Data, 200.2K Total
    888     Debug Version:     207.5K Code, 82.7K Data, 290.2K Total
    889 
    890 
    891 2) iASL Compiler/Disassembler and Tools:
    892 
    893 iASL: Fixed a problem where an External() declaration could not refer to 
    894 a Field Unit. Erik Schmauss.
    895 
    896 Disassembler: Improved support for the Switch/Case operators. This 
    897 feature will disassemble AML code back to the original Switch operators 
    898 when possible, instead of an If..Else sequence. David Box
    899 
    900 iASL and disassembler: Improved the handling of multiple extraneous 
    901 parentheses for both ASL input and disassembled ASL output.
    902 
    903 Improved the behavior of the iASL compiler and disassembler to detect 
    904 improper use of external declarations
    905 
    906 Disassembler: Now aborts immediately upon detection of an unknown AML 
    907 opcode. The AML parser has no real way to recover from this, and can 
    908 result in the creation of an ill-formed parse tree that causes errors 
    909 later during the disassembly.
    910 
    911 All tools: Fixed a problem where the Unix application OSL did not handle 
    912 control-c correctly. For example, a control-c could incorrectly wake the 
    913 debugger.
    914 
    915 AcpiExec: Improved the Control-C handling and added a handler for 
    916 segmentation faults (SIGSEGV). Supports both Windows and Unix-like 
    917 environments.
    918 
    919 Reduced the verbosity of the generic unix makefiles. Previously, each 
    920 compilation displayed the full set of compiler options. This has been 
    921 eliminated as the options are easily inspected within the makefiles. Each 
    922 compilation now results in a single line of output.
    923 
    924 ----------------------------------------
    925 03 March 2017. Summary of changes for version 20170303:
    926 
    927 
    928 0) ACPICA licensing:
    929 
    930 The licensing information at the start of each source code module has 
    931 been updated. In addition to the Intel license, the dual GPLv2/BSD 
    932 license has been added for completeness. Now, a single version of the 
    933 source code should be suitable for all ACPICA customers. This is the 
    934 major change for this release since it affects all source code modules.
    935 
    936 
    937 1) ACPICA kernel-resident subsystem: 
    938 
    939 Fixed two issues with the common asltypes.h header that could cause 
    940 problems in some environments: (Kim Jung-uk)
    941     Removed typedef for YY_BUFFER_STATE ?
    942        Fixes an error with earlier versions of Flex.
    943     Removed use of FILE typedef (which is only defined in stdio.h)
    944 
    945 
    946 2) iASL Compiler/Disassembler and Tools: 
    947 
    948 Disassembler: fixed a regression introduced in 20170224. A fix for a 
    949 memory leak related to resource descriptor tags (names) could fault when 
    950 the disassembler was generated with 64-bit compilers.
    951 
    952 The ASLTS test suite has been updated to implement a new testing 
    953 architecture. During generation of the suite from ASL source, both the 
    954 ASL and ASL+ compilers are now validated, as well as the disassembler 
    955 itself (Erik Schmauss). The architecture executes as follows:
    956 
    957     For every ASL source module:
    958         Compile (legacy ASL compilation)
    959         Disassemble the resulting AML to ASL+ source code
    960         Compile the new ASL+ module
    961         Perform a binary compare on the legacy AML and the new ASL+ AML
    962     The ASLTS suite then executes normally using the AML binaries.
    963 
    964 ----------------------------------------
    965 24 February 2017. Summary of changes for version 20170224:
    966 
    967 
    968 1) ACPICA kernel-resident subsystem:
    969 
    970 Interpreter: Fixed two issues with the control method return value auto-
    971 repair feature, where an attempt to double-delete an internal object 
    972 could result in an ACPICA warning (for _CID repair and others). No fault 
    973 occurs, however, because the attempted deletion (actually a release to an 
    974 internal cache) is detected and ignored via object poisoning.
    975 
    976 Debugger: Fixed an AML interpreter mutex issue during the single stepping 
    977 of control methods. If certain debugger commands are executed during 
    978 stepping, a mutex aquire/release error could occur. Lv Zheng.
    979 
    980 Fixed some issues generating ACPICA with the Intel C compiler by 
    981 restoring the original behavior and compiler-specific include file in 
    982 acenv.h. Lv Zheng.
    983 
    984 Example Code and Data Size: These are the sizes for the OS-independent 
    985 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
    986 debug version of the code includes the debug output trace mechanism and 
    987 has a much larger code and data size.
    988 
    989   Current Release:
    990     Non-Debug Version: 141.7K Code, 58.5K Data, 200.2K Total
    991     Debug Version:     207.5K Code, 82.7K Data, 290.2K Total
    992   Previous Release:
    993     Non-Debug Version: 137.4K Code, 52.6K Data, 190.0K Total
    994     Debug Version:     201.5K Code, 82.2K Data, 283.7K Total
    995 
    996 
    997 2) iASL Compiler/Disassembler and Tools:
    998 
    999 iASL/Disassembler: A preliminary version of a new ASL-to-ASL+ conversion 
   1000 tool has been designed, implemented, and included in this release. The 
   1001 key feature of this utility is that the original comments within the 
   1002 input ASL file are preserved during the conversion process, and included 
   1003 within the converted ASL+ file -- thus creating a transparent conversion 
   1004 of existing ASL files to ASL+ (ASL 2.0). Erik Schmauss.
   1005 
   1006     Usage: iasl -ca <ASL-filename>  // Output is a .dsl file with 
   1007 converted code
   1008 
   1009 iASL/Disassembler: Improved the detection and correct disassembly of 
   1010 Switch/Case operators. This feature detects sequences of if/elseif/else 
   1011 operators that originated from ASL Switch/Case/Default operators and 
   1012 emits the original operators. David Box.
   1013 
   1014 iASL: Improved the IORT ACPI table support in the following areas. Lv 
   1015 Zheng:
   1016     Clear MappingOffset if the MappingCount is zero.
   1017     Fix the disassembly of the SMMU GSU interrupt offset.
   1018     Update the template file for the IORT table.
   1019 
   1020 Disassembler: Enhanced the detection and disassembly of resource 
   1021 template/descriptor within a Buffer object. An EndTag descriptor is now 
   1022 required to have a zero second byte, since all known ASL compilers emit 
   1023 this. This helps eliminate incorrect decisions when a buffer is 
   1024 disassembled (false positives on resource templates).
   1025 
   1026 ----------------------------------------
   1027 19 January 2017. Summary of changes for version 20170119:
   1028 
   1029 
   1030 1) General ACPICA software:
   1031 
   1032 Entire source code base: Added the 2017 copyright to all source code 
   1033 legal/licensing module headers and utility/tool signons. This includes 
   1034 the standard Linux dual-license header. This affects virtually every file 
   1035 in the ACPICA core subsystem, iASL compiler, all ACPICA utilities, and 
   1036 the ACPICA test suite.
   1037 
   1038 
   1039 2) iASL Compiler/Disassembler and Tools:
   1040 
   1041 iASL: Removed/fixed an inadvertent remark when a method argument 
   1042 containing a reference is used as a target operand within the method (and 
   1043 never used as a simple argument), as in the example below. Jeffrey Hugo.
   1044 
   1045     dsdt.asl   1507:    Store(0x1, Arg0)
   1046     Remark   2146 -                ^ Method Argument is never used (Arg0)
   1047 
   1048 All tools: Removed the bit width of the compiler that generated the tool 
   1049 from the common signon for all user space tools. This proved to be 
   1050 confusing and unnecessary. This includes similar removal of HARDWARE_NAME 
   1051 from the generic makefiles (Thomas Petazzoni). Example below.
   1052 
   1053     Old:
   1054     ASL+ Optimizing Compiler version 20170119-32
   1055     ASL+ Optimizing Compiler version 20170119-64
   1056 
   1057     New:
   1058     ASL+ Optimizing Compiler version 20170119
   1059 
   1060 ----------------------------------------
   1061 22 December 2016. Summary of changes for version 20161222:
   1062 
   1063 
   1064 1) ACPICA kernel-resident subsystem:
   1065 
   1066 AML Debugger: Implemented a new mechanism to simplify and enhance 
   1067 debugger integration into all environments, including kernel debuggers 
   1068 and user-space utilities, as well as remote debug services. This 
   1069 mechanism essentially consists of new OSL interfaces to support debugger 
   1070 initialization/termination, as well as wait/notify interfaces to perform 
   1071 the debugger handshake with the host. Lv Zheng.
   1072 
   1073     New OSL interfaces:
   1074         AcpiOsInitializeDebugger (void)
   1075         AcpiOsTerminateDebugger (void)
   1076         AcpiOsWaitCommandReady (void)
   1077         AcpiOsNotifyCommandComplete (void)
   1078 
   1079     New OS services layer:
   1080         osgendbg.c -- Example implementation, and used for AcpiExec
   1081 
   1082 Update for Generic Address Space (GAS) support: Although the AccessWidth 
   1083 and/or BitOffset fields of the GAS are not often used, this change now 
   1084 fully supports these fields. This affects the internal support for FADT 
   1085 registers, registers in other ACPI data tables, and the AcpiRead and 
   1086 AcpiWrite public interfaces. Lv Zheng.
   1087 
   1088 Sleep support: In order to simplify integration of ACPI sleep for the 
   1089 various host operating systems, a new OSL interface has been introduced. 
   1090 AcpiOsEnterSleep allows the host to perform any required operations 
   1091 before the final write to the sleep control register(s) is performed by 
   1092 ACPICA. Lv Zheng.
   1093 
   1094     New OSL interface:
   1095         AcpiOsEnterSleep(SleepState, RegisterAValue, RegisterBValue)
   1096 
   1097     Called from these internal interfaces:
   1098         AcpiHwLegacySleep
   1099         AcpiHwExtendedSleep
   1100 
   1101 EFI support: Added a very small EFI/ACPICA example application. Provides 
   1102 a simple demo for EFI integration, as well as assisting with resolution 
   1103 of issues related to customer ACPICA/EFI integration. Lv Zheng. See:
   1104 
   1105     source/tools/efihello/efihello.c
   1106 
   1107 Local C library: Implemented several new functions to enhance ACPICA 
   1108 portability, for environments where these clib functions are not 
   1109 available (such as EFI). Lv Zheng:
   1110     putchar
   1111     getchar
   1112     strpbrk
   1113     strtok
   1114     memmove
   1115 
   1116 Fixed a regression where occasionally a valid resource descriptor was 
   1117 incorrectly detected as invalid at runtime, and a 
   1118 AE_AML_NO_RESOURCE_END_TAG was returned.
   1119 
   1120 Fixed a problem with the recently implemented support that enables 
   1121 control method invocations as Target operands to many ASL operators. 
   1122 Warnings of this form: "Needed type [Reference], found [Processor]" were 
   1123 seen at runtime for some method invocations.
   1124 
   1125 Example Code and Data Size: These are the sizes for the OS-independent 
   1126 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   1127 debug version of the code includes the debug output trace mechanism and 
   1128 has a much larger code and data size.
   1129 
   1130   Current Release:
   1131     Non-Debug Version: 141.5K Code, 58.5K Data, 200.0K Total
   1132     Debug Version:     201.7K Code, 82.7K Data, 284.4K Total
   1133   Previous Release:
   1134     Non-Debug Version: 140.5K Code, 58.5K Data, 198.9K Total
   1135     Debug Version:     201.3K Code, 82.7K Data, 284.0K Total
   1136 
   1137 
   1138 2) iASL Compiler/Disassembler and Tools:
   1139 
   1140 Disassembler: Enhanced output by adding the capability to detect and 
   1141 disassemble ASL Switch/Case statements back to the original ASL source 
   1142 code instead of if/else blocks. David Box.
   1143 
   1144 AcpiHelp: Split a large file into separate files based upon 
   1145 functionality/purpose. New files are:
   1146     ahaml.c
   1147     ahasl.c
   1148 
   1149 ----------------------------------------
   1150 17 November 2016. Summary of changes for version 20161117:
   1151 
   1152 
   1153 1) ACPICA kernel-resident subsystem:
   1154 
   1155 Table Manager: Fixed a regression introduced in 20160729, "FADT support 
   1156 cleanup". This was an attempt to remove all references in the source to 
   1157 the FADT version 2, which never was a legal version number. It was 
   1158 skipped because it was an early version of 64-bit support that was 
   1159 eventually abandoned for the current 64-bit support.
   1160 
   1161 Interpreter: Fixed a problem where runtime implicit conversion was 
   1162 incorrectly disabled for the ASL operators below. This brings the 
   1163 behavior into compliance with the ACPI specification:
   1164     FromBCD
   1165     ToBCD
   1166     ToDecimalString
   1167     ToHexString
   1168     ToInteger
   1169     ToBuffer
   1170 
   1171 Table Manager: Added a new public interface, AcpiPutTable, used to 
   1172 release and free an ACPI table returned by AcpiGetTable and related 
   1173 interfaces. Lv Zheng.
   1174 
   1175 Example Code and Data Size: These are the sizes for the OS-independent 
   1176 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   1177 debug version of the code includes the debug output trace mechanism and 
   1178 has a much larger code and data size.
   1179 
   1180   Current Release:
   1181     Non-Debug Version: 140.5K Code, 58.5K Data, 198.9K Total
   1182     Debug Version:     201.3K Code, 82.7K Data, 284.0K Total
   1183   Previous Release:
   1184     Non-Debug Version: 140.4K Code, 58.1K Data, 198.5K Total
   1185     Debug Version:     200.7K Code, 82.1K Data, 282.8K Total
   1186 
   1187 
   1188 2) iASL Compiler/Disassembler and Tools:
   1189 
   1190 Disassembler: Fixed a regression for disassembly of Resource Template. 
   1191 Detection of templates in the AML stream missed some types of templates.
   1192 
   1193 iASL: Fixed a problem where an Access Size error was returned for the PCC 
   1194 address space when the AccessSize of the GAS register is greater than a 
   1195 DWORD. Hoan Tran.
   1196 
   1197 iASL: Implemented several grammar changes for the operators below. These 
   1198 changes are slated for the next version of the ACPI specification:
   1199     RefOf        - Disallow method invocation as an operand
   1200     CondRefOf    - Disallow method invocation as an operand
   1201     DerefOf      - Disallow operands that use the result from operators 
   1202 that
   1203                    do not return a reference (Changed TermArg to 
   1204 SuperName).
   1205 
   1206 iASL: Control method invocations are now allowed for Target operands, as 
   1207 per the ACPI specification. Removed error for using a control method 
   1208 invocation as a Target operand.
   1209 
   1210 Disassembler: Improved detection of Resource Templates, Unicode, and 
   1211 Strings within Buffer objects. These subtypes do not contain a specific 
   1212 opcode to indicate the originating ASL code, and they must be detected by 
   1213 other means within the disassembler. 
   1214 
   1215 iASL: Implemented an optimization improvement for 32-bit ACPI tables 
   1216 (DSDT/SSDT). For the 32-bit case only, compute the optimum integer opcode 
   1217 only after 64-bit to 32-bit truncation. A truncation warning message is 
   1218 still emitted, however.
   1219 
   1220 AcpiXtract: Implemented handling for both types of line terminators (LF 
   1221 or CR/LF) so that it can accept AcpiDump output files from any system. 
   1222 Peter Wu.
   1223 
   1224 AcpiBin: Added two new options for comparing AML files:
   1225     -a: compare and display ALL mismatches
   1226     -o: start compare at this offset into the second file
   1227 
   1228 ----------------------------------------
   1229 30 September 2016. Summary of changes for version 20160930:
   1230 
   1231 
   1232 1) ACPICA kernel-resident subsystem:
   1233 
   1234 Fixed a regression in the internal AcpiTbFindTable function where a non 
   1235 AE_OK exception could inadvertently be returned even if the function did 
   1236 not fail. This problem affects the following operators:
   1237     DataTableRegion
   1238     LoadTable
   1239 
   1240 Fixed a regression in the LoadTable operator where a load to any 
   1241 namespace location other than the root no longer worked properly.
   1242 
   1243 Increased the maximum loop count value that will result in the 
   1244 AE_AML_INFINITE_LOOP exception. This is a mechanism that is intended to 
   1245 prevent infinite loops within the AML interpreter and thus the host OS 
   1246 kernel. The value is increased from 0xFFFF to 0xFFFFF loops (65,535 to 
   1247 1,048,575).
   1248 
   1249 Moved the AcpiGbl_MaxLoopIterations configuration variable to the public 
   1250 acpixf.h file. This allows hosts to easily configure the maximum loop 
   1251 count at runtime.
   1252 
   1253 Removed an illegal character in the strtoul64.c file. This character 
   1254 caused errors with some C compilers.
   1255 
   1256 Example Code and Data Size: These are the sizes for the OS-independent 
   1257 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   1258 debug version of the code includes the debug output trace mechanism and 
   1259 has a much larger code and data size.
   1260 
   1261   Current Release:
   1262     Non-Debug Version: 140.4K Code, 58.1K Data, 198.5K Total
   1263     Debug Version:     200.7K Code, 82.1K Data, 282.8K Total
   1264   Previous Release:
   1265     Non-Debug Version: 140.0K Code, 58.1K Data, 198.1K Total
   1266     Debug Version:     200.3K Code, 82.1K Data, 282.4K Total
   1267 
   1268 
   1269 2) iASL Compiler/Disassembler and Tools:
   1270 
   1271 Disassembler: Fixed a problem with the conversion of Else{If{ blocks into 
   1272 the simpler ASL ElseIf keyword. During the conversion, a trailing If 
   1273 block could be lost and missing from the disassembled output.
   1274 
   1275 iASL: Fixed a missing parser rule for the ObjectType operator. For ASL+, 
   1276 the missing rule caused a parse error when using the Index operator as an 
   1277 operand to ObjectType. This construct now compiles properly. Example:
   1278     ObjectType(PKG1[4]).
   1279 
   1280 iASL: Correctly handle unresolved symbols in the hardware map file (-lm 
   1281 option). Previously, unresolved symbols could cause a protection fault. 
   1282 Such symbols are now marked as unresolved in the map file.
   1283 
   1284 iASL: Implemented support to allow control method invocations as an 
   1285 operand to the ASL DeRefOf operator. Example:
   1286     DeRefOf(MTH1(Local0))
   1287 
   1288 Disassembler: Improved support for the ToPLD ASL macro. Detection of a 
   1289 possible _PLD buffer now includes examination of both the normal buffer 
   1290 length (16 or 20) as well as the surrounding AML package length.
   1291 
   1292 Disassembler: Fixed a problem with the decoding of complex expressions 
   1293 within the Divide operator for ASL+. For the case where both the quotient 
   1294 and remainder targets are specified, the entire statement cannot be 
   1295 disassembled. Previously, the output incorrectly contained a mix of ASL- 
   1296 and ASL+ operators. This mixed statement causes a syntax error when 
   1297 compiled. Example:
   1298     Divide (Add (INT1, 6), 128, RSLT, QUOT)  // was incorrectly 
   1299 disassembled to:
   1300     Divide (INT1 + 6, 128, RSLT, QUOT)
   1301 
   1302 iASL/Tools: Added support to process AML and non-AML ACPI tables 
   1303 consistently. For the disassembler and AcpiExec, allow all types of ACPI 
   1304 tables (AML and data tables). For the iASL -e option, allow only AML 
   1305 tables (DSDT/SSDT).
   1306 
   1307 ----------------------------------------
   1308 31 August 2016. Summary of changes for version 20160831:
   1309 
   1310 
   1311 1) ACPICA kernel-resident subsystem:
   1312 
   1313 Improve support for the so-called "module-level code", which is defined 
   1314 to be math, logical and control AML opcodes that appear outside of any 
   1315 control method. This change improves the support by adding more opcodes 
   1316 that can be executed in the manner. Some other issues have been solved, 
   1317 and the ASL grammar changes to support such code under all scope 
   1318 operators (Device, etc.) are complete. Lv Zheng.
   1319 
   1320 UEFI support: these OSL functions have been implemented. This is an 
   1321 additional step toward supporting the AcpiExec utility natively (with 
   1322 full hardware access) under UEFI. Marcelo Ferreira.
   1323     AcpiOsReadPciConfiguration
   1324     AcpiOsWritePciConfiguration
   1325 
   1326 Fixed a possible mutex error during control method auto-serialization. Lv 
   1327 Zheng. 
   1328 
   1329 Updated support for the Generic Address Structure by fully implementing 
   1330 all GAS fields when a 32-bit address is expanded to a 64-bit GAS. Lv 
   1331 Zheng.
   1332 
   1333 Updated the return value for the internal _OSI method. Instead of 
   1334 0xFFFFFFFF, the "Ones" value is now returned, which is 0xFFFFFFFFFFFFFFFF 
   1335 for 64-bit ACPI tables. This fixes an incompatibility with other ACPI 
   1336 implementations, and will be reflected and clarified in the next version 
   1337 of the ACPI specification.
   1338 
   1339 Implemented two new table events that can be passed to an ACPICA table 
   1340 handler. These events are used to indicate a table installation or 
   1341 uninstallation. These events are used in addition to existed table load 
   1342 and unload events. Lv Zheng.
   1343 
   1344 Implemented a cleanup for all internal string-to-integer conversions. 
   1345 Consolidate multiple versions of this functionality and limit possible 
   1346 bases to either 10 or 16 to simplify the code. Adds a new file, 
   1347 utstrtoul64.
   1348 
   1349 Cleanup the inclusion order of the various compiler-specific headers. 
   1350 This simplifies build configuration management. The compiler-specific 
   1351 headers are now split out from the host-specific headers. Lv Zheng.
   1352 
   1353 Example Code and Data Size: These are the sizes for the OS-independent 
   1354 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   1355 debug version of the code includes the debug output trace mechanism and 
   1356 has a much larger code and data size.
   1357 
   1358   Current Release:
   1359     Non-Debug Version: 140.1K Code, 58.1K Data, 198.1K Total
   1360     Debug Version:     200.3K Code, 82.1K Data, 282.4K Total
   1361 
   1362 
   1363 2) iASL Compiler/Disassembler and Tools:
   1364 
   1365 iASL/AcpiExec: Added a command line option to display the build date/time 
   1366 of the tool (-vd). This can be useful to verify that the correct version 
   1367 of the tools are being used.
   1368 
   1369 AML Debugger: Implemented a new subcommand ("execute predef") to execute 
   1370 all predefined control methods and names within the current namespace. 
   1371 This can be useful for debugging problems with ACPI tables and the ACPI 
   1372 namespace.
   1373 
   1374 ----------------------------------------
   1375 29 July 2016. Summary of changes for version 20160729:
   1376 
   1377 
   1378 1) ACPICA kernel-resident subsystem:
   1379 
   1380 Implemented basic UEFI support for the various ACPICA tools. This 
   1381 includes:
   1382 1) An OSL to implement the various AcpiOs* interfaces on UEFI.
   1383 2) Support to obtain the ACPI tables on UEFI.
   1384 3) Local implementation of required C library functions not available on 
   1385 UEFI.
   1386 4) A front-end (main) function for the tools for UEFI-related 
   1387 initialization.
   1388 
   1389 The initial deployment of this support is the AcpiDump utility executing 
   1390 as an UEFI application via EDK2 (EDKII, "UEFI Firmware Development Kit"). 
   1391 Current environments supported are Linux/Unix. MSVC generation is not 
   1392 supported at this time. See the generate/efi/README file for build 
   1393 instructions. Lv Zheng.
   1394 
   1395 Future plans include porting the AcpiExec utility to execute natively on 
   1396 the platform with I/O and memory access. This will allow viewing/dump of 
   1397 the platform namespace and native execution of ACPI control methods that 
   1398 access the actual hardware. To fully implement this support, the OSL 
   1399 functions below must be implemented with UEFI interfaces. Any community 
   1400 help in the implementation of these functions would be appreciated:
   1401     AcpiOsReadPort
   1402     AcpiOsWritePort
   1403     AcpiOsReadMemory
   1404     AcpiOsWriteMemory
   1405     AcpiOsReadPciConfiguration
   1406     AcpiOsWritePciConfiguration
   1407 
   1408 Restructured and standardized the C library configuration for ACPICA, 
   1409 resulting in the various configuration options below. This includes a 
   1410 global restructuring of the compiler-dependent and platform-dependent 
   1411 include files. These changes may affect the existing platform-dependent 
   1412 configuration files on some hosts. Lv Zheng. 
   1413 
   1414 The current C library configuration options appear below. For any issues, 
   1415 it may be helpful to examine the existing compiler-dependent and 
   1416 platform-dependent files as examples. Lv Zheng. 
   1417 
   1418 1) Linux kernel:
   1419     ACPI_USE_STANDARD_HEADERS=n in order not to use system-provided C 
   1420 library.
   1421     ACPI_USE_SYSTEM_CLIBRARY=y in order not to use ACPICA mini C library.
   1422 2) Unix/Windows/BSD applications:
   1423     ACPI_USE_STANDARD_HEADERS=y in order to use system-provided C 
   1424 library.
   1425     ACPI_USE_SYSTEM_CLIBRARY=y in order not to use ACPICA mini C library.
   1426 3) UEFI applications:
   1427     ACPI_USE_STANDARD_HEADERS=n in order not to use system-provided C 
   1428 library.
   1429     ACPI_USE_SYSTEM_CLIBRARY=n in order to use ACPICA mini C library.
   1430 4) UEFI applications (EDK2/StdLib):
   1431     ACPI_USE_STANDARD_HEADERS=y in order to use EDK2 StdLib C library.
   1432     ACPI_USE_SYSTEM_CLIBRARY=y in order to use EDK2 StdLib C library.
   1433 
   1434 
   1435 AML interpreter: "module-level code" support. Allows for execution of so-
   1436 called "executable" AML code (math/logical operations, etc.) outside of 
   1437 control methods not just at the module level (top level) but also within 
   1438 any scope declared outside of a control method - Scope{}, Device{}, 
   1439 Processor{}, PowerResource{}, and ThermalZone{}. Lv Zheng. 
   1440 
   1441 Simplified the configuration of the "maximum AML loops" global option by 
   1442 adding a global public variable, "AcpiGbl_MaxLoopIterations" which can be 
   1443 modified at runtime.
   1444 
   1445 
   1446 Example Code and Data Size: These are the sizes for the OS-independent 
   1447 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   1448 debug version of the code includes the debug output trace mechanism and 
   1449 has a much larger code and data size.
   1450 
   1451   Current Release:
   1452     Non-Debug Version: 139.1K Code, 22.9K Data, 162.0K Total
   1453     Debug Version:     199.0K Code, 81.8K Data, 280.8K Total
   1454 
   1455 
   1456 2) iASL Compiler/Disassembler and Tools:
   1457 
   1458 iASL: Add full support for the RASF ACPI table (RAS Features Table). 
   1459 Includes disassembler, data table compiler, and header support.
   1460 
   1461 iASL Expand "module-level code" support. Allows for 
   1462 compilation/disassembly of so-called "executable" AML code (math/logical 
   1463 operations, etc.) outside of control methods not just at the module level 
   1464 (top level) but also within any scope declared outside of a control 
   1465 method - Scope{}, Device{}, Processor{}, PowerResource{}, and 
   1466 ThermalZone{}.
   1467 
   1468 AcpiDump: Added support for dumping all SSDTs on newer versions of 
   1469 Windows. These tables are now easily available -- SSDTs are not available 
   1470 through the registry on older versions.
   1471 
   1472 ----------------------------------------
   1473 27 May 2016. Summary of changes for version 20160527:
   1474 
   1475 
   1476 1) ACPICA kernel-resident subsystem:
   1477 
   1478 Temporarily reverted the new arbitrary bit length/alignment support in 
   1479 AcpiHwRead/AcpiHwWrite for the Generic Address Structure. There have been 
   1480 a number of regressions with the new code that need to be fully resolved 
   1481 and tested before this support can be finally integrated into ACPICA. 
   1482 Apologies for any inconveniences these issues may have caused.
   1483 
   1484 The ACPI message macros are not configurable (ACPI_MSG_ERROR, 
   1485 ACPI_MSG_EXCEPTION, ACPI_MSG_WARNING, ACPI_MSG_INFO, ACPI_MSG_BIOS_ERROR, 
   1486 and ACPI_MSG_BIOS_WARNING). Lv Zheng.
   1487 
   1488 Fixed a couple of GCC warnings associated with the use of the -Wcast-qual 
   1489 option. Adds a new return macro, return_STR. Junk-uk Kim.
   1490 
   1491 Example Code and Data Size: These are the sizes for the OS-independent 
   1492 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   1493 debug version of the code includes the debug output trace mechanism and 
   1494 has a much larger code and data size.
   1495 
   1496   Current Release:
   1497     Non-Debug Version: 136.8K Code, 51.6K Data, 188.4K Total
   1498     Debug Version:     201.5K Code, 82.2K Data, 283.7K Total
   1499   Previous Release:
   1500     Non-Debug Version: 137.4K Code, 52.6K Data, 190.0K Total
   1501     Debug Version:     200.9K Code, 82.2K Data, 283.1K Total
   1502 
   1503 ----------------------------------------
   1504 22 April 2016. Summary of changes for version 20160422:
   1505 
   1506 1) ACPICA kernel-resident subsystem:
   1507 
   1508 Fixed a regression in the GAS (generic address structure) arbitrary bit 
   1509 support in AcpiHwRead/AcpiHwWrite. Problem could cause incorrect behavior 
   1510 and incorrect return values. Lv Zheng. ACPICA BZ 1270.
   1511 
   1512 ACPI 6.0: Added support for new/renamed resource macros. One new argument 
   1513 was added to each of these macros, and the original name has been 
   1514 deprecated. The AML disassembler will always disassemble to the new 
   1515 names. Support for the new macros was added to iASL, disassembler, 
   1516 resource manager, and the acpihelp utility. ACPICA BZ 1274.
   1517 
   1518     I2cSerialBus  -> I2cSerialBusV2
   1519     SpiSerialBus  -> SpiSerialBusV2
   1520     UartSerialBus -> UartSerialBusV2
   1521 
   1522 ACPI 6.0: Added support for a new integer field that was appended to the 
   1523 package object returned by the _BIX method. This adds iASL compile-time 
   1524 and AML runtime error checking. ACPICA BZ 1273.
   1525 
   1526 ACPI 6.1: Added support for a new PCCT subtable, "HW-Reduced Comm 
   1527 Subspace Type2" (Headers, Disassembler, and data table compiler).
   1528 
   1529 Example Code and Data Size: These are the sizes for the OS-independent 
   1530 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   1531 debug version of the code includes the debug output trace mechanism and 
   1532 has a much larger code and data size.
   1533 
   1534   Current Release:
   1535     Non-Debug Version: 137.4K Code, 52.6K Data, 190.0K Total
   1536     Debug Version:     201.5K Code, 82.2K Data, 283.7K Total
   1537   Previous Release:
   1538     Non-Debug Version: 137.1K Code, 51.5K Data, 188.6K Total
   1539     Debug Version:     201.0K Code, 82.0K Data, 283.0K Total
   1540 
   1541 
   1542 2) iASL Compiler/Disassembler and Tools:
   1543 
   1544 iASL: Implemented an ASL grammar extension to allow/enable executable 
   1545 "module-level code" to be created and executed under the various 
   1546 operators that create new scopes. This type of AML code is already 
   1547 supported in all known AML interpreters, and the grammar change will 
   1548 appear in the next version of the ACPI specification. Simplifies the 
   1549 conditional runtime creation of named objects under these object types: 
   1550 
   1551     Device
   1552     PowerResource
   1553     Processor
   1554     Scope
   1555     ThermalZone
   1556 
   1557 iASL: Implemented a new ASL extension, a "For" loop macro to add greater 
   1558 ease-of-use to the ASL language. The syntax is similar to the 
   1559 corresponding C operator, and is implemented with the existing AML While 
   1560 opcode -- thus requiring no changes to existing AML interpreters.
   1561 
   1562     For (Initialize, Predicate, Update) {TermList}
   1563 
   1564 Grammar:
   1565     ForTerm :=
   1566         For (
   1567             Initializer    // Nothing | TermArg => ComputationalData
   1568             Predicate      // Nothing | TermArg => ComputationalData
   1569             Update         // Nothing | TermArg => ComputationalData
   1570         ) {TermList}
   1571 
   1572 
   1573 iASL: The _HID/_ADR detection and validation has been enhanced to search 
   1574 under conditionals in order to allow these objects to be conditionally 
   1575 created at runtime.
   1576 
   1577 iASL: Fixed several issues with the constant folding feature. The 
   1578 improvement allows better detection and resolution of statements that can 
   1579 be folded at compile time. ACPICA BZ 1266. 
   1580 
   1581 iASL/Disassembler: Fixed a couple issues with the Else{If{}...} 
   1582 conversion to the ASL ElseIf operator where incorrect ASL code could be 
   1583 generated.
   1584 
   1585 iASL/Disassembler: Fixed a problem with the ASL+ code disassembly where 
   1586 sometimes an extra (and extraneous) set of parentheses were emitted for 
   1587 some combinations of operators. Although this did not cause any problems 
   1588 with recompilation of the disassembled code, it made the code more 
   1589 difficult to read. David Box. ACPICA BZ 1231.
   1590 
   1591 iASL: Changed to ignore the unreferenced detection for predefined names 
   1592 of resource descriptor elements, when the resource descriptor is 
   1593 created/defined within a control method.
   1594 
   1595 iASL: Disassembler: Fix a possible fault with externally declared Buffer 
   1596 objects.
   1597 
   1598 ----------------------------------------
   1599 18 March 2016. Summary of changes for version 20160318:
   1600 
   1601 1) ACPICA kernel-resident subsystem:
   1602 
   1603 Added support for arbitrary bit lengths and bit offsets for registers 
   1604 defined by the Generic Address Structure. Previously, only aligned bit 
   1605 lengths of 8/16/32/64 were supported. This was sufficient for many years, 
   1606 but recently some machines have been seen that require arbitrary bit-
   1607 level support. ACPICA BZ 1240. Lv Zheng.
   1608 
   1609 Fixed an issue where the \_SB._INI method sometimes must be evaluated 
   1610 before any _REG methods are evaluated. Lv Zheng.
   1611 
   1612 Implemented several changes related to ACPI table support 
   1613 (Headers/Disassembler/TableCompiler):
   1614 NFIT: For ACPI 6.1, updated to add some additional new fields and 
   1615 constants.
   1616 FADT: Updated a warning message and set compliance to ACPI 6.1 (Version 
   1617 6).
   1618 DMAR: Added new constants per the 10/2014 DMAR spec.
   1619 IORT: Added new subtable per the 10/2015 IORT spec.
   1620 HEST: For ACPI 6.1, added new constants and new subtable.
   1621 DBG2: Added new constants per the 12/2015 DBG2 spec.
   1622 FPDT: Fixed several incorrect fields, add the FPDT boot record structure. 
   1623 ACPICA BZ 1249.
   1624 ERST/EINJ: Updated disassembler with new "Execute Timings" actions.
   1625 
   1626 Updated header support for the DMAR table to match the current version of 
   1627 the related spec.
   1628 
   1629 Added extensions to the ASL Concatenate operator to allow any ACPI object 
   1630 to be passed as an operand. Any object other than Integer/String/Buffer 
   1631 simply returns a string containing the object type. This extends the 
   1632 usefulness of the Printf macros. Previously, Concatenate would abort the 
   1633 control method if a non-data object was encountered.
   1634 
   1635 ACPICA source code: Deployed the C "const" keyword across the source code 
   1636 where appropriate. ACPICA BZ 732. Joerg Sonnenberger (NetBSD).
   1637 
   1638 Example Code and Data Size: These are the sizes for the OS-independent 
   1639 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   1640 debug version of the code includes the debug output trace mechanism and 
   1641 has a much larger code and data size.
   1642 
   1643   Current Release:
   1644     Non-Debug Version: 137.1K Code, 51.5K Data, 188.6K Total
   1645     Debug Version:     201.0K Code, 82.0K Data, 283.0K Total
   1646   Previous Release:
   1647     Non-Debug Version: 136.2K Code, 51.5K Data, 187.7K Total
   1648     Debug Version:     200.4K Code, 82.0K Data, 282.4K Total
   1649 
   1650 
   1651 2) iASL Compiler/Disassembler and Tools:
   1652 
   1653 iASL/Disassembler: Improved the heuristic used to determine the number of 
   1654 arguments for an externally defined control method (a method in another 
   1655 table). Although this is an improvement, there is no deterministic way to 
   1656 "guess" the number of method arguments. Only the ACPI 6.0 External opcode 
   1657 will completely solve this problem as it is deployed (automatically) in 
   1658 newer BIOS code.
   1659 
   1660 iASL/Disassembler: Fixed an ordering issue for emitted External() ASL 
   1661 statements that could cause errors when the disassembled file is 
   1662 compiled. ACPICA BZ 1243. David Box.
   1663 
   1664 iASL: Fixed a regression caused by the merger of the two versions of the 
   1665 local strtoul64. Because of a dependency on a global variable, strtoul64 
   1666 could return an error for integers greater than a 32-bit value. ACPICA BZ 
   1667 1260.
   1668 
   1669 iASL: Fixed a regression where a fault could occur for an ASL Return 
   1670 statement if it invokes a control method that is not resolved. ACPICA BZ 
   1671 1264.
   1672 
   1673 AcpiXtract: Improved input file validation: detection of binary files and 
   1674 non-acpidump text files.
   1675 
   1676 ----------------------------------------
   1677 12 February 2016. Summary of changes for version 20160212:
   1678 
   1679 1) ACPICA kernel-resident subsystem:
   1680 
   1681 Implemented full support for the ACPI 6.1 specification (released in 
   1682 January). This version of the specification is available at:  
   1683 http://www.uefi.org/specifications
   1684 
   1685 Only a relatively small number of changes were required in ACPICA to 
   1686 support ACPI 6.1, in these areas:
   1687 - New predefined names
   1688 - New _HID values
   1689 - A new subtable for HEST
   1690 - A few other header changes for new values
   1691 
   1692 Ensure \_SB_._INI is executed before any _REG methods are executed. There 
   1693 appears to be existing BIOS code that relies on this behavior. Lv Zheng.
   1694 
   1695 Reverted a change made in version 20151218 which enabled method 
   1696 invocations to be targets of various ASL operators (SuperName and Target 
   1697 grammar elements). While the new behavior is supported by the ACPI 
   1698 specification, other AML interpreters do not support this behavior and 
   1699 never will. The ACPI specification will be updated for ACPI 6.2 to remove 
   1700 this support. Therefore, the change was reverted to the original ACPICA 
   1701 behavior.
   1702 
   1703 ACPICA now supports the GCC 6 compiler.
   1704 
   1705 Current Release: (Note: build changes increased sizes)
   1706     Non-Debug Version: 136.2K Code, 51.5K Data, 187.7K Total
   1707     Debug Version:     200.4K Code, 82.0K Data, 282.4K Total
   1708 Previous Release:
   1709     Non-Debug Version: 102.7K Code, 28.4K Data, 131.1K Total
   1710     Debug Version:     200.4K Code, 81.9K Data, 282.3K Total
   1711 
   1712 
   1713 2) iASL Compiler/Disassembler and Tools:
   1714 
   1715 Completed full support for the ACPI 6.0 External() AML opcode. The 
   1716 compiler emits an external AML opcode for each ASL External statement. 
   1717 This opcode is used by the disassembler to assist with the disassembly of 
   1718 external control methods by specifying the required number of arguments 
   1719 for the method. AML interpreters do not use this opcode. To ensure that 
   1720 interpreters do not even see the opcode, a block of one or more external 
   1721 opcodes is surrounded by an "If(0)" construct. As this feature becomes 
   1722 commonly deployed in BIOS code, the ability of disassemblers to correctly 
   1723 disassemble AML code will be greatly improved. David Box.
   1724 
   1725 iASL: Implemented support for an optional cross-reference output file. 
   1726 The -lx option will create a the cross-reference file with the suffix 
   1727 "xrf". Three different types of cross-reference are created in this file:
   1728 - List of object references made from within each control method
   1729 - Invocation (caller) list for each user-defined control method
   1730 - List of references to each non-method object in the namespace
   1731 
   1732 iASL: Method invocations as ASL Target operands are now disallowed and 
   1733 flagged as errors in preparation for ACPI 6.2 (see the description of the 
   1734 problem above).
   1735 
   1736 ----------------------------------------
   1737 8 January 2016. Summary of changes for version 20160108:
   1738 
   1739 1) ACPICA kernel-resident subsystem:
   1740 
   1741 Updated all ACPICA copyrights and signons to 2016: Added the 2016 
   1742 copyright to all source code module headers and utility/tool signons. 
   1743 This includes the standard Linux dual-license header. This affects 
   1744 virtually every file in the ACPICA core subsystem, iASL compiler, all 
   1745 ACPICA utilities, and the ACPICA test suite.
   1746 
   1747 Fixed a regression introduced in version 20151218 concerning the 
   1748 execution of so-called module-level ASL/AML code. Namespace objects 
   1749 created under a module-level If() construct were not properly/fully 
   1750 entered into the namespace and could cause an interpreter fault when 
   1751 accessed.
   1752 
   1753 Example Code and Data Size: These are the sizes for the OS-independent 
   1754 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   1755 debug version of the code includes the debug output trace mechanism and 
   1756 has a much larger code and data size.
   1757 
   1758 Current Release:
   1759     Non-Debug Version: 102.7K Code, 28.4K Data, 131.1K Total
   1760     Debug Version:     200.4K Code, 81.9K Data, 282.4K Total
   1761   Previous Release:
   1762     Non-Debug Version: 102.6K Code, 28.4K Data, 131.0K Total
   1763     Debug Version:     200.3K Code, 81.9K Data, 282.3K Total
   1764 
   1765 
   1766 2) iASL Compiler/Disassembler and Tools:
   1767 
   1768 Fixed a problem with the compilation of the GpioIo and GpioInt resource 
   1769 descriptors. The _PIN field name was incorrectly defined to be an array 
   1770 of 32-bit values, but the _PIN values are in fact 16 bits each. This 
   1771 would cause incorrect bit width warnings when using Word (16-bit) fields 
   1772 to access the descriptors.
   1773 
   1774 
   1775 ----------------------------------------
   1776 18 December 2015. Summary of changes for version 20151218:
   1777 
   1778 1) ACPICA kernel-resident subsystem:
   1779 
   1780 Implemented per-AML-table execution of "module-level code" as individual 
   1781 ACPI tables are loaded into the namespace during ACPICA initialization. 
   1782 In other words, any module-level code within an AML table is executed 
   1783 immediately after the table is loaded, instead of batched and executed 
   1784 after all of the tables have been loaded. This provides compatibility 
   1785 with other ACPI implementations. ACPICA BZ 1219. Bob Moore, Lv Zheng, 
   1786 David Box.
   1787 
   1788 To fully support the feature above, the default operation region handlers 
   1789 for the SystemMemory, SystemIO, and PCI_Config address spaces are now 
   1790 installed before any ACPI tables are loaded. This enables module-level 
   1791 code to access these address spaces during the table load and module-
   1792 level code execution phase. ACPICA BZ 1220. Bob Moore, Lv Zheng, David 
   1793 Box.
   1794 
   1795 Implemented several changes to the internal _REG support in conjunction 
   1796 with the changes above. Also, changes to the AcpiExec/AcpiNames/Examples 
   1797 utilities for the changes above. Although these tools were changed, host 
   1798 operating systems that simply use the default handlers for SystemMemory, 
   1799 SystemIO, and PCI_Config spaces should not require any update. Lv Zheng.
   1800 
   1801 For example, in the code below, DEV1 is conditionally added to the 
   1802 namespace by the DSDT via module-level code that accesses an operation 
   1803 region. The SSDT references DEV1 via the Scope operator. DEV1 must be 
   1804 created immediately after the DSDT is loaded in order for the SSDT to 
   1805 successfully reference DEV1. Previously, this code would cause an 
   1806 AE_NOT_EXIST exception during the load of the SSDT. Now, this code is 
   1807 fully supported by ACPICA.
   1808 
   1809     DefinitionBlock ("", "DSDT", 2, "Intel", "DSDT1", 1)
   1810     {
   1811         OperationRegion (OPR1, SystemMemory, 0x400, 32)
   1812         Field (OPR1, AnyAcc, NoLock, Preserve)
   1813         {
   1814             FLD1, 1
   1815         }
   1816         If (FLD1)
   1817         {
   1818             Device (\DEV1)
   1819             {
   1820             }
   1821         }
   1822     }
   1823     DefinitionBlock ("", "SSDT", 2, "Intel", "SSDT1", 1)
   1824     {
   1825         External (\DEV1, DeviceObj)
   1826         Scope (\DEV1)
   1827         {
   1828         }
   1829     }
   1830 
   1831 Fixed an AML interpreter problem where control method invocations were 
   1832 not handled correctly when the invocation was itself a SuperName argument 
   1833 to another ASL operator. In these cases, the method was not invoked. 
   1834 ACPICA BZ 1002. Affects the following ASL operators that have a SuperName 
   1835 argument:
   1836     Store
   1837     Acquire, Wait
   1838     CondRefOf, RefOf
   1839     Decrement, Increment
   1840     Load, Unload
   1841     Notify
   1842     Signal, Release, Reset
   1843     SizeOf
   1844 
   1845 Implemented automatic String-to-ObjectReference conversion support for 
   1846 packages returned by predefined names (such as _DEP). A common BIOS error 
   1847 is to add double quotes around an ObjectReference namepath, which turns 
   1848 the reference into an unexpected string object. This support detects the 
   1849 problem and corrects it before the package is returned to the caller that 
   1850 invoked the method. Lv Zheng.
   1851 
   1852 Implemented extensions to the Concatenate operator. Concatenate now 
   1853 accepts any type of object, it is not restricted to simply 
   1854 Integer/String/Buffer. For objects other than these 3 basic data types, 
   1855 the argument is treated as a string containing the name of the object 
   1856 type. This expands the utility of Concatenate and the Printf/Fprintf 
   1857 macros. ACPICA BZ 1222.
   1858 
   1859 Cleaned up the output of the ASL Debug object. The timer() value is now 
   1860 optional and no longer emitted by default. Also, the basic data types of 
   1861 Integer/String/Buffer are simply emitted as their values, without a data 
   1862 type string -- since the data type is obvious from the output. ACPICA BZ 
   1863 1221.
   1864 
   1865 Example Code and Data Size: These are the sizes for the OS-independent 
   1866 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   1867 debug version of the code includes the debug output trace mechanism and 
   1868 has a much larger code and data size.
   1869 
   1870   Current Release:
   1871     Non-Debug Version: 102.6K Code, 28.4K Data, 131.0K Total
   1872     Debug Version:     200.3K Code, 81.9K Data, 282.3K Total
   1873   Previous Release:
   1874     Non-Debug Version: 102.0K Code, 28.3K Data, 130.3K Total
   1875     Debug Version:     199.6K Code, 81.8K Data, 281.4K Total
   1876 
   1877 
   1878 2) iASL Compiler/Disassembler and Tools:
   1879 
   1880 iASL: Fixed some issues with the ASL Include() operator. This operator 
   1881 was incorrectly defined in the iASL parser rules, causing a new scope to 
   1882 be opened for the code within the include file. This could lead to 
   1883 several issues, including allowing ASL code that is technically illegal 
   1884 and not supported by AML interpreters. Note, this does not affect the 
   1885 related #include preprocessor operator. ACPICA BZ 1212.
   1886 
   1887 iASL/Disassembler: Implemented support for the ASL ElseIf operator. This 
   1888 operator is essentially an ASL macro since there is no AML opcode 
   1889 associated with it. The code emitted by the iASL compiler for ElseIf is 
   1890 an Else opcode followed immediately by an If opcode. The disassembler 
   1891 will now emit an ElseIf if it finds an Else immediately followed by an 
   1892 If. This simplifies the decoded ASL, especially for deeply nested 
   1893 If..Else and large Switch constructs. Thus, the disassembled code more 
   1894 closely follows the original source ASL. ACPICA BZ 1211. Example:
   1895 
   1896     Old disassembly:
   1897         Else
   1898         {
   1899             If (Arg0 == 0x02)
   1900             {
   1901                 Local0 = 0x05
   1902             }
   1903         }
   1904 
   1905     New disassembly:
   1906         ElseIf (Arg0 == 0x02)
   1907         {
   1908             Local0 = 0x05
   1909         }
   1910 
   1911 AcpiExec: Added support for the new module level code behavior and the 
   1912 early region installation. This required a small change to the 
   1913 initialization, since AcpiExec must install its own operation region 
   1914 handlers.
   1915 
   1916 AcpiExec: Added support to make the debug object timer optional. Default 
   1917 is timer disabled. This cleans up the debug object output -- the timer 
   1918 data is rarely used.
   1919 
   1920 AcpiExec: Multiple ACPI tables are now loaded in the order that they 
   1921 appear on the command line. This can be important when there are 
   1922 interdependencies/references between the tables.
   1923 
   1924 iASL/Templates. Add support to generate template files with multiple 
   1925 SSDTs within a single output file. Also added ommand line support to 
   1926 specify the number of SSDTs (in addition to a single DSDT). ACPICA BZ 
   1927 1223, 1225.
   1928 
   1929 
   1930 ----------------------------------------
   1931 24 November 2015. Summary of changes for version 20151124:
   1932 
   1933 1) ACPICA kernel-resident subsystem:
   1934 
   1935 Fixed a possible regression for a previous update to FADT handling. The 
   1936 FADT no longer has a fixed table ID, causing some issues with code that 
   1937 was hardwired to a specific ID. Lv Zheng.
   1938 
   1939 Fixed a problem where the method auto-serialization could interfere with 
   1940 the current SyncLevel. This change makes the auto-serialization support 
   1941 transparent to the SyncLevel support and management.
   1942 
   1943 Removed support for the _SUB predefined name in AcpiGetObjectInfo. This 
   1944 interface is intended for early access to the namespace during the 
   1945 initial namespace device discovery walk. The _SUB method has been seen to 
   1946 access operation regions in some cases, causing errors because the 
   1947 operation regions are not fully initialized.
   1948 
   1949 AML Debugger: Fixed some issues with the terminate/quit/exit commands 
   1950 that can cause faults. Lv Zheng.
   1951 
   1952 AML Debugger: Add thread ID support so that single-step mode only applies 
   1953 to the AML Debugger thread. This prevents runtime errors within some 
   1954 kernels. Lv Zheng. 
   1955 
   1956 Eliminated extraneous warnings from AcpiGetSleepTypeData. Since the _Sx 
   1957 methods that are invoked by this interface are optional, removed warnings 
   1958 emitted for the case where one or more of these methods do not exist. 
   1959 ACPICA BZ 1208, original change by Prarit Bhargava.
   1960 
   1961 Made a major pass through the entire ACPICA source code base to 
   1962 standardize formatting that has diverged a bit over time. There are no 
   1963 functional changes, but this will of course cause quite a few code 
   1964 differences from the previous ACPICA release.
   1965 
   1966 Example Code and Data Size: These are the sizes for the OS-independent 
   1967 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   1968 debug version of the code includes the debug output trace mechanism and 
   1969 has a much larger code and data size.
   1970 
   1971   Current Release:
   1972     Non-Debug Version: 102.0K Code, 28.3K Data, 130.3K Total
   1973     Debug Version:     199.6K Code, 81.8K Data, 281.4K Total
   1974   Previous Release:
   1975     Non-Debug Version: 101.7K Code, 27.9K Data, 129.6K Total
   1976     Debug Version:     199.3K Code, 81.4K Data, 280.7K Total
   1977 
   1978 
   1979 2) iASL Compiler/Disassembler and Tools:
   1980 
   1981 iASL/acpiexec/acpixtract/disassembler: Added support to allow multiple 
   1982 definition blocks within a single ASL file and the resulting AML file. 
   1983 Support for this type of file was also added to the various tools that 
   1984 use binary AML files: acpiexec, acpixtract, and the AML disassembler. The 
   1985 example code below shows two definition blocks within the same file:
   1986 
   1987     DefinitionBlock ("dsdt.aml", "DSDT", 2, "Intel", "Template", 
   1988 0x12345678)
   1989     {
   1990     }
   1991     DefinitionBlock ("", "SSDT", 2, "Intel", "Template", 0xABCDEF01)
   1992     {
   1993     }
   1994 
   1995 iASL: Enhanced typechecking for the Name() operator. All expressions for 
   1996 the value of the named object must be reduced/folded to a single constant 
   1997 at compile time, as per the ACPI specification (the AML definition of 
   1998 Name()).
   1999 
   2000 iASL: Fixed some code indentation issues for the -ic and -ia options (C 
   2001 and assembly headers). Now all emitted code correctly begins in column 1.
   2002 
   2003 iASL: Added an error message for an attempt to open a Scope() on an 
   2004 object defined in an SSDT. The DSDT is always loaded into the namespace 
   2005 first, so any attempt to open a Scope on an SSDT object will fail at 
   2006 runtime.
   2007 
   2008 
   2009 ----------------------------------------
   2010 30 September 2015. Summary of changes for version 20150930:
   2011 
   2012 1) ACPICA kernel-resident subsystem:
   2013 
   2014 Debugger: Implemented several changes and bug fixes to assist support for 
   2015 the in-kernel version of the AML debugger. Lv Zheng.
   2016 - Fix the "predefined" command for in-kernel debugger.
   2017 - Do not enter debug command loop for the help and version commands.
   2018 - Disallow "execute" command during execution/single-step of a method.
   2019 
   2020 Interpreter: Updated runtime typechecking for all operators that have 
   2021 target operands. The operand is resolved and validated that it is legal. 
   2022 For example, the target cannot be a non-data object such as a Device, 
   2023 Mutex, ThermalZone, etc., as per the ACPI specification.
   2024 
   2025 Debugger: Fixed the double-mutex user I/O handshake to work when local 
   2026 deadlock detection is enabled.
   2027 
   2028 Debugger: limited display of method locals and arguments (LocalX and 
   2029 ArgX) to only those that have actually been initialized. This prevents 
   2030 lines of extraneous output.
   2031 
   2032 Updated the definition of the NFIT table to correct the bit polarity of 
   2033 one flag: ACPI_NFIT_MEM_ARMED --> ACPI_NFIT_MEM_NOT_ARMED
   2034 
   2035 Example Code and Data Size: These are the sizes for the OS-independent 
   2036 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   2037 debug version of the code includes the debug output trace mechanism and 
   2038 has a much larger code and data size.
   2039 
   2040   Current Release:
   2041     Non-Debug Version: 101.7K Code, 27.9K Data, 129.6K Total
   2042     Debug Version:     199.3K Code, 81.4K Data, 280.7K Total
   2043   Previous Release:
   2044     Non-Debug Version: 101.3K Code, 27.7K Data, 129.0K Total
   2045     Debug Version:     198.6K Code, 80.9K Data, 279.5K Total
   2046 
   2047 
   2048 2) iASL Compiler/Disassembler and Tools:
   2049 
   2050 iASL: Improved the compile-time typechecking for operands of many of the 
   2051 ASL operators:
   2052 
   2053 -- Added an option to disable compiler operand/operator typechecking (-
   2054 ot).
   2055 
   2056 -- For the following operators, the TermArg operands are now validated 
   2057 when possible to be Integer data objects: BankField, OperationRegion, 
   2058 DataTableRegion, Buffer, and Package.
   2059 
   2060 -- Store (Source, Target): Both the source and target operands are 
   2061 resolved and checked that the operands are both legal. For example, 
   2062 neither operand can be a non-data object such as a Device, Mutex, 
   2063 ThermalZone, etc. Note, as per the ACPI specification, the CopyObject 
   2064 operator can be used to store an object to any type of target object.
   2065 
   2066 -- Store (Source, Target): If the source is a Package object, the target 
   2067 must be a Package object, LocalX, ArgX, or Debug. Likewise, if the target 
   2068 is a Package, the source must also be a Package.
   2069 
   2070 -- Store (Source, Target): A warning is issued if the source and target 
   2071 resolve to the identical named object.
   2072 
   2073 -- Store (Source, <method invocation>): An error is generated for the 
   2074 target method invocation, as this construct is not supported by the AML 
   2075 interpreter.
   2076 
   2077 -- For all ASL math and logic operators, the target operand must be a 
   2078 data object (Integer, String, Buffer, LocalX, ArgX, or Debug). This 
   2079 includes the function return value also.
   2080 
   2081 -- External declarations are also included in the typechecking where 
   2082 possible. External objects defined using the UnknownObj keyword cannot be 
   2083 typechecked, however.
   2084 
   2085 iASL and Disassembler: Added symbolic (ASL+) support for the ASL Index 
   2086 operator:
   2087 - Legacy code: Index(PKG1, 3)
   2088 - New ASL+ code: PKG1[3]
   2089 This completes the ACPI 6.0 ASL+ support as it was the only operator not 
   2090 supported.
   2091 
   2092 iASL: Fixed the file suffix for the preprocessor output file (.i). Two 
   2093 spaces were inadvertently appended to the filename, causing file access 
   2094 and deletion problems on some systems.
   2095 
   2096 ASL Test Suite (ASLTS): Updated the master makefile to generate all 
   2097 possible compiler output files when building the test suite -- thus 
   2098 exercising these features of the compiler. These files are automatically 
   2099 deleted when the test suite exits.
   2100 
   2101 
   2102 ----------------------------------------
   2103 18 August 2015. Summary of changes for version 20150818:
   2104 
   2105 1) ACPICA kernel-resident subsystem:
   2106 
   2107 Fix a regression for AcpiGetTableByIndex interface causing it to fail. Lv 
   2108 Zheng. ACPICA BZ 1186.
   2109 
   2110 Completed development to ensure that the ACPICA Disassembler and Debugger 
   2111 are fully standalone components of ACPICA. Removed cross-component 
   2112 dependences. Lv Zheng.
   2113 
   2114 The max-number-of-AML-loops is now runtime configurable (previously was 
   2115 compile-time only). This is essentially a loop timeout to force-abort 
   2116 infinite AML loops. ACPCIA BZ 1192.
   2117 
   2118 Debugger: Cleanup output to dump ACPI names and namepaths without any 
   2119 trailing underscores. Lv Zheng. ACPICA BZ 1135.
   2120 
   2121 Removed unnecessary conditional compilations across the Debugger and 
   2122 Disassembler components where entire modules could be left uncompiled.
   2123 
   2124 The aapits test is deprecated and has been removed from the ACPICA git 
   2125 tree. The test has never been completed and has not been maintained, thus 
   2126 becoming rather useless. ACPICA BZ 1015, 794.
   2127 
   2128 A batch of small changes to close bugzilla and other reports:
   2129 - Remove duplicate code for _PLD processing. ACPICA BZ 1176.
   2130 - Correctly cleanup after a ACPI table load failure. ACPICA BZ 1185.
   2131 - iASL: Support POSIX yacc again in makefile. Jung-uk Kim.
   2132 - ACPI table support: general cleanup and simplification. Lv Zheng, Bob 
   2133 Moore.
   2134 - ACPI table support: fix for a buffer read overrun in AcpiTbFindTable. 
   2135 ACPICA BZ 1184.
   2136 - Enhance parameter validation for DataTableRegion and LoadTable ASL/AML 
   2137 operators.
   2138 - Debugger: Split debugger initialization/termination interfaces. Lv 
   2139 Zheng.
   2140 - AcpiExec: Emit OemTableId for SSDTs during the load phase for table 
   2141 identification.
   2142 - AcpiExec: Add debug message during _REG method phase during table 
   2143 load/init.
   2144 - AcpiNames: Fix a regression where some output was missing and no longer 
   2145 emitted.
   2146 - Debugger: General cleanup and simplification. Lv Zheng.
   2147 - Disassembler: Cleanup use of several global option variables. Lv Zheng.
   2148 
   2149 Example Code and Data Size: These are the sizes for the OS-independent 
   2150 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   2151 debug version of the code includes the debug output trace mechanism and 
   2152 has a much larger code and data size.
   2153 
   2154   Current Release:
   2155     Non-Debug Version: 101.3K Code, 27.7K Data, 129.0K Total
   2156     Debug Version:     198.6K Code, 80.9K Data, 279.5K Total
   2157   Previous Release:
   2158     Non-Debug Version: 100.9K Code, 24.5K Data, 125.4K Total
   2159     Debug Version:     197.8K Code, 81.5K Data, 279.3K Total
   2160 
   2161 
   2162 2) iASL Compiler/Disassembler and Tools:
   2163 
   2164 AcpiExec: Fixed a problem where any more than 32 ACPI tables in the XSDT 
   2165 were not handled properly and caused load errors. Now, properly invoke 
   2166 and use the ACPICA auto-reallocate mechanism for ACPI table data 
   2167 structures. ACPICA BZ 1188
   2168 
   2169 AcpiNames: Add command-line wildcard support for ACPI table files. ACPICA 
   2170 BZ 1190.
   2171 
   2172 AcpiExec and AcpiNames: Add -l option to load ACPI tables only. For 
   2173 AcpiExec, this means that no control methods (like _REG/_INI/_STA) are 
   2174 executed during initialization. ACPICA BZ 1187, 1189.
   2175 
   2176 iASL/Disassembler: Implemented a prototype "listing" mode that emits AML 
   2177 that corresponds to each disassembled ASL statement, to simplify 
   2178 debugging. ACPICA BZ 1191.
   2179 
   2180 Debugger: Add option to the "objects" command to display a summary of the 
   2181 current namespace objects (Object type and count). This is displayed if 
   2182 the command is entered with no arguments.
   2183 
   2184 AcpiNames: Add -x option to specify debug level, similar to AcpiExec.
   2185 
   2186 
   2187 ----------------------------------------
   2188 17 July 2015. Summary of changes for version 20150717:
   2189 
   2190 1) ACPICA kernel-resident subsystem:
   2191 
   2192 Improved the partitioning between the Debugger and Disassembler 
   2193 components. This allows the Debugger to be used standalone within kernel 
   2194 code without the Disassembler (which is used for single stepping also). 
   2195 This renames and moves one file, dmobject.c to dbobject.c. Lv Zheng.
   2196 
   2197 Debugger: Implemented a new command to trace the execution of control 
   2198 methods (Trace). This is especially useful for the in-kernel version of 
   2199 the debugger when file I/O may not be available for method trace output. 
   2200 See the ACPICA reference for more information. Lv Zheng.
   2201 
   2202 Moved all C library prototypes (used for the local versions of these 
   2203 functions when requested) to a new header, acclib.h
   2204 Cleaned up the use of non-ANSI C library functions. These functions are 
   2205 implemented locally in ACPICA. Moved all such functions to a common 
   2206 source file, utnonansi.c
   2207 
   2208 Debugger: Fixed a problem with the "!!" command (get last command 
   2209 executed) where the debugger could enter an infinite loop and eventually 
   2210 crash.
   2211 
   2212 Removed the use of local macros that were used for some of the standard C 
   2213 library functions to automatically cast input parameters. This mostly 
   2214 affected the is* functions where the input parameter is defined to be an 
   2215 int. This required a few modifications to the main ACPICA source code to 
   2216 provide casting for these functions and eliminate possible compiler 
   2217 warnings for these parameters.
   2218 
   2219 Across the source code, added additional status/error checking to resolve 
   2220 issues discovered by static source code analysis tools such as Coverity.
   2221 
   2222 Example Code and Data Size: These are the sizes for the OS-independent 
   2223 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   2224 debug version of the code includes the debug output trace mechanism and 
   2225 has a much larger code and data size.
   2226 
   2227   Current Release:
   2228     Non-Debug Version: 100.9K Code, 24.5K Data, 125.4K Total
   2229     Debug Version:     197.8K Code, 81.5K Data, 279.3K Total
   2230   Previous Release:
   2231     Non-Debug Version: 100.6K Code, 27.6K Data, 128.2K Total
   2232     Debug Version:     196.2K Code, 81.0K Data, 277.2K Total
   2233 
   2234 
   2235 2) iASL Compiler/Disassembler and Tools:
   2236 
   2237 iASL: Fixed a regression where the device map file feature no longer 
   2238 worked properly when used in conjunction with the disassembler. It only 
   2239 worked properly with the compiler itself.
   2240 
   2241 iASL: Implemented a new warning for method LocalX variables that are set 
   2242 but never used (similar to a C compiler such as gcc). This also applies 
   2243 to ArgX variables that are not defined by the parent method, and are 
   2244 instead (legally) used as local variables.
   2245 
   2246 iASL/Preprocessor: Finished the pass-through of line numbers from the 
   2247 preprocessor to the compiler. This ensures that compiler errors/warnings 
   2248 have the correct original line numbers and filenames, regardless of any 
   2249 #include files.
   2250 
   2251 iASL/Preprocessor: Fixed a couple of issues with comment handling and the 
   2252 pass-through of comments to the preprocessor output file (which becomes 
   2253 the compiler input file). Also fixed a problem with // comments that 
   2254 appear after a math expression.
   2255 
   2256 iASL: Added support for the TCPA server table to the table compiler and 
   2257 template generator. (The client table was already previously supported)
   2258 
   2259 iASL/Preprocessor: Added a permanent #define of the symbol "__IASL__" to 
   2260 identify the iASL compiler.
   2261 
   2262 Cleaned up the use of the macros NEGATIVE and POSITIVE which were defined 
   2263 multiple times. The new names are ACPI_SIGN_NEGATIVE and 
   2264 ACPI_SIGN_POSITIVE.
   2265 
   2266 AcpiHelp: Update to expand help messages for the iASL preprocessor 
   2267 directives.
   2268 
   2269 
   2270 ----------------------------------------
   2271 19 June 2015. Summary of changes for version 20150619:
   2272 
   2273 Two regressions in version 20150616 have been addressed:
   2274 
   2275 Fixes some problems/issues with the C library macro removal (ACPI_STRLEN, 
   2276 etc.) This update changes ACPICA to only use the standard headers for 
   2277 functions, or the prototypes for the local versions of the C library 
   2278 functions. Across the source code, this required some additional casts 
   2279 for some Clib invocations for portability. Moved all local prototypes to 
   2280 a new file, acclib.h
   2281 
   2282 Fixes several problems with recent changes to the handling of the FACS 
   2283 table that could cause some systems not to boot.
   2284 
   2285 
   2286 ----------------------------------------
   2287 16 June 2015. Summary of changes for version 20150616:
   2288 
   2289 
   2290 1) ACPICA kernel-resident subsystem:
   2291 
   2292 Across the entire ACPICA source code base, the various macros for the C 
   2293 library functions (such as ACPI_STRLEN, etc.) have been removed and 
   2294 replaced by the standard C library names (strlen, etc.) The original 
   2295 purpose for these macros is no longer applicable. This simplification 
   2296 reduces the number of macros used in the ACPICA source code 
   2297 significantly, improving readability and maintainability.
   2298 
   2299 Implemented support for a new ACPI table, the OSDT. This table, the 
   2300 "override" SDT, can be loaded directly by the host OS at boot time. It 
   2301 enables the replacement of existing namespace objects that were installed 
   2302 via the DSDT and/or SSDTs. The primary purpose for this is to replace 
   2303 buggy or incorrect ASL/AML code obtained via the BIOS. The OSDT is slated 
   2304 for inclusion in a future version of the ACPI Specification. Lv Zheng/Bob 
   2305 Moore.
   2306 
   2307 Added support for systems with (improperly) two FACS tables -- a "32-bit" 
   2308 table (via FADT 32-bit legacy field) and a "64-bit" table (via the 64-bit 
   2309 X field). This change will support both automatically. There continues to 
   2310 be systems found with this issue. This support requires a change to the 
   2311 AcpiSetFirmwareWakingVector interface. Also, a public global variable has 
   2312 been added to allow the host to select which FACS is desired 
   2313 (AcpiGbl_Use32BitFacsAddresses). See the ACPICA reference for more 
   2314 details Lv Zheng.
   2315 
   2316 Added a new feature to allow for systems that do not contain an FACS. 
   2317 Although this is already supported on hardware-reduced platforms, the 
   2318 feature has been extended for all platforms. The reasoning is that we do 
   2319 not want to abort the entire ACPICA initialization just because the 
   2320 system is seriously buggy and has no FACS.
   2321 
   2322 Fixed a problem where the GUID strings for NFIT tables (in acuuid.h) were 
   2323 not correctly transcribed from the ACPI specification in ACPICA version 
   2324 20150515.
   2325 
   2326 Implemented support for the _CLS object in the AcpiGetObjectInfo external 
   2327 interface.
   2328 
   2329 Updated the definitions of the TCPA and TPM2 ACPI tables to the more 
   2330 recent TCG ACPI Specification, December 14, 2014. Table disassembler and 
   2331 compiler also updated. Note: The TCPA "server" table is not supported by 
   2332 the disassembler/table-compiler at this time.
   2333 
   2334 ACPI 6.0: Added definitions for the new GIC version field in the MADT.
   2335 
   2336 Example Code and Data Size: These are the sizes for the OS-independent 
   2337 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   2338 debug version of the code includes the debug output trace mechanism and 
   2339 has a much larger code and data size.
   2340 
   2341   Current Release:
   2342     Non-Debug Version: 100.6K Code, 27.6K Data, 128.2K Total
   2343     Debug Version:     196.2K Code, 81.0K Data, 277.2K Total
   2344   Previous Release:
   2345     Non-Debug Version:  99.9K Code, 27.5K Data, 127.4K Total
   2346     Debug Version:     195.2K Code, 80.8K Data, 276.0K Total
   2347 
   2348 
   2349 2) iASL Compiler/Disassembler and Tools:
   2350 
   2351 Disassembler: Fixed a problem with the new symbolic operator disassembler 
   2352 where incorrect ASL code could be emitted in some cases for the "non-
   2353 commutative" operators -- Subtract, Divide, Modulo, ShiftLeft, and 
   2354 ShiftRight. The actual problem cases seem to be rather unusual in common 
   2355 ASL code, however. David Box.
   2356 
   2357 Modified the linux version of acpidump to obtain ACPI tables from not 
   2358 just /dev/mem (which may not exist) and /sys/firmware/acpi/tables. Lv 
   2359 Zheng.
   2360 
   2361 iASL: Fixed a problem where the user preprocessor output file (.i) 
   2362 contained extra data that was not expected. The compiler was using this 
   2363 file as a temporary file and passed through #line directives in order to 
   2364 keep compiler error messages in sync with the input file and line number 
   2365 across multiple include files. The (.i) is no longer a temporary file as 
   2366 the compiler uses a new, different file for the original purpose.
   2367 
   2368 iASL: Fixed a problem where comments within the original ASL source code 
   2369 file were not passed through to the preprocessor output file, nor any 
   2370 listing files.
   2371 
   2372 iASL: Fixed some issues for the handling of the "#include" preprocessor 
   2373 directive and the similar (but not the same) "Include" ASL operator.
   2374 
   2375 iASL: Add support for the new OSDT in both the disassembler and compiler.
   2376 
   2377 iASL: Fixed a problem with the constant folding support where a Buffer 
   2378 object could be incorrectly generated (incorrectly formed) during a 
   2379 conversion to a Store() operator.
   2380 
   2381 AcpiHelp: Updated for new NFIT GUIDs, "External" AML opcode, and new 
   2382 description text for the _REV predefined name. _REV now permanently 
   2383 returns 2, as per the ACPI 6.0 specification.
   2384 
   2385 Debugger: Enhanced the output of the Debug ASL object for references 
   2386 produced by the Index operator. For Buffers and strings, only output the 
   2387 actual byte pointed to by the index. For packages, only print the single 
   2388 package element decoded by the index. Previously, the entire 
   2389 buffer/string/package was emitted.
   2390 
   2391 iASL/Table-compiler: Fixed a regression where the "generic" data types 
   2392 were no longer recognized, causing errors.
   2393 
   2394 
   2395 ----------------------------------------
   2396 15 May 2015. Summary of changes for version 20150515:
   2397 
   2398 This release implements most of ACPI 6.0 as described below.
   2399 
   2400 1) ACPICA kernel-resident subsystem:
   2401 
   2402 Implemented runtime argument checking and return value checking for all 
   2403 new ACPI 6.0 predefined names. This includes: _BTH, _CR3, _DSD, _LPI, 
   2404 _MTL, _PRR, _RDI, _RST, _TFP, _TSN.
   2405 
   2406 Example Code and Data Size: These are the sizes for the OS-independent 
   2407 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   2408 debug version of the code includes the debug output trace mechanism and 
   2409 has a much larger code and data size.
   2410 
   2411   Current Release:
   2412     Non-Debug Version:  99.9K Code, 27.5K Data, 127.4K Total
   2413     Debug Version:     195.2K Code, 80.8K Data, 276.0K Total
   2414   Previous Release:
   2415     Non-Debug Version:  99.1K Code, 27.3K Data, 126.4K Total
   2416     Debug Version:     192.8K Code, 79.9K Data, 272.7K Total
   2417 
   2418 
   2419 2) iASL Compiler/Disassembler and Tools:
   2420 
   2421 iASL compiler: Added compile-time support for all new ACPI 6.0 predefined 
   2422 names (argument count validation and return value typechecking.)
   2423 
   2424 iASL disassembler and table compiler: implemented support for all new 
   2425 ACPI 6.0 tables. This includes: DRTM, IORT, LPIT, NFIT, STAO, WPBT, XENV. 
   2426 
   2427 iASL disassembler and table compiler: Added ACPI 6.0 changes to existing 
   2428 tables: FADT, MADT.
   2429 
   2430 iASL preprocessor: Added a new directive to enable inclusion of binary 
   2431 blobs into ASL code. The new directive is #includebuffer. It takes a 
   2432 binary file as input and emits a named ascii buffer object into the ASL 
   2433 code.
   2434 
   2435 AcpiHelp: Added support for all new ACPI 6.0 predefined names.
   2436 
   2437 AcpiHelp: Added a new option, -d, to display all iASL preprocessor 
   2438 directives.
   2439 
   2440 AcpiHelp: Added a new option, -t, to display all known/supported ACPI 
   2441 tables.
   2442 
   2443 
   2444 ----------------------------------------
   2445 10 April 2015. Summary of changes for version 20150410:
   2446 
   2447 Reverted a change introduced in version 20150408 that caused
   2448 a regression in the disassembler where incorrect operator
   2449 symbols could be emitted.
   2450 
   2451 
   2452 ----------------------------------------
   2453 08 April 2015. Summary of changes for version 20150408:
   2454 
   2455 
   2456 1) ACPICA kernel-resident subsystem:
   2457 
   2458 Permanently set the return value for the _REV predefined name. It now 
   2459 returns 2 (was 5). This matches other ACPI implementations. _REV will be 
   2460 deprecated in the future, and is now defined to be 1 for ACPI 1.0, and 2 
   2461 for ACPI 2.0 and later. It should never be used to differentiate or 
   2462 identify operating systems.
   2463 
   2464 Added the "Windows 2015" string to the _OSI support. ACPICA will now 
   2465 return TRUE to a query with this string.
   2466 
   2467 Fixed several issues with the local version of the printf function.
   2468 
   2469 Added the C99 compiler option (-std=c99) to the Unix makefiles.
   2470 
   2471   Current Release:
   2472     Non-Debug Version:  99.9K Code, 27.4K Data, 127.3K Total
   2473     Debug Version:     195.2K Code, 80.7K Data, 275.9K Total
   2474   Previous Release:
   2475     Non-Debug Version:  98.8K Code, 27.3K Data, 126.1K Total
   2476     Debug Version:     192.1K Code, 79.8K Data, 271.9K Total
   2477 
   2478 
   2479 2) iASL Compiler/Disassembler and Tools:
   2480 
   2481 iASL: Implemented an enhancement to the constant folding feature to 
   2482 transform the parse tree to a simple Store operation whenever possible:
   2483     Add (2, 3, X) ==> is converted to: Store (5, X)
   2484     X = 2 + 3     ==> is converted to: Store (5, X)
   2485 
   2486 Updated support for the SLIC table (Software Licensing Description Table) 
   2487 in both the Data Table compiler and the disassembler. The SLIC table 
   2488 support now conforms to "Microsoft Software Licensing Tables (SLIC and 
   2489 MSDM). November 29, 2011. Copyright 2011 Microsoft". Note: Any SLIC data 
   2490 following the ACPI header is now defined to be "Proprietary Data", and as 
   2491 such, can only be entered or displayed as a hex data block.
   2492 
   2493 Implemented full support for the MSDM table as described in the document 
   2494 above. Note: The format of MSDM is similar to SLIC. Any MSDM data 
   2495 following the ACPI header is defined to be "Proprietary Data", and can 
   2496 only be entered or displayed as a hex data block.
   2497 
   2498 Implemented the -Pn option for the iASL Table Compiler (was only 
   2499 implemented for the ASL compiler). This option disables the iASL 
   2500 preprocessor.
   2501 
   2502 Disassembler: For disassembly of Data Tables, added a comment field 
   2503 around the Ascii equivalent data that is emitted as part of the "Raw 
   2504 Table Data" block. This prevents the iASL Preprocessor from possible 
   2505 confusion if/when the table is compiled.
   2506 
   2507 Disassembler: Added an option (-df) to force the disassembler to assume 
   2508 that the table being disassembled contains valid AML. This feature is 
   2509 useful for disassembling AML files that contain ACPI signatures other 
   2510 than DSDT or SSDT (such as OEMx or other signatures).
   2511 
   2512 Changes for the EFI version of the tools:
   2513 1) Fixed a build error/issue
   2514 2) Fixed a cast warning
   2515 
   2516 iASL: Fixed a path issue with the __FILE__ operator by making the 
   2517 directory prefix optional within the internal SplitInputFilename 
   2518 function.
   2519 
   2520 Debugger: Removed some unused global variables.
   2521 
   2522 Tests: Updated the makefile for proper generation of the AAPITS suite.
   2523 
   2524 
   2525 ----------------------------------------
   2526 04 February 2015. Summary of changes for version 20150204:
   2527 
   2528 ACPICA kernel-resident subsystem:
   2529 
   2530 Updated all ACPICA copyrights and signons to 2014. Added the 2014 
   2531 copyright to all module headers and signons, including the standard Linux 
   2532 header. This affects virtually every file in the ACPICA core subsystem, 
   2533 iASL compiler, all ACPICA utilities, and the test suites.
   2534 
   2535 Events: Introduce ACPI_GPE_DISPATCH_RAW_HANDLER to fix GPE storm issues.
   2536 A raw gpe handling mechanism was created to allow better handling of GPE
   2537 storms that aren't easily managed by the normal handler. The raw handler
   2538 allows disabling/renabling of the the GPE so that interrupt storms can be
   2539 avoided in cases where events cannot be timely serviced. In this 
   2540 scenario, handlers should use the AcpiSetGpe() API to disable/enable the 
   2541 GPE. This API will leave the reference counts undisturbed, thereby 
   2542 preventing unintentional clearing of the GPE when the intent in only to 
   2543 temporarily disable it. Raw handlers allow enabling and disabling of a 
   2544 GPE by removing GPE register locking. As such, raw handlers much provide 
   2545 their own locks while using GPE API's to protect access to GPE data 
   2546 structures.
   2547 Lv Zheng
   2548 
   2549 Events: Always modify GPE registers under the GPE lock.
   2550 Applies GPE lock around AcpiFinishGpe() to protect access to GPE register
   2551 values. Reported as bug by joe.liu (a] apple.com.
   2552 
   2553 Unix makefiles: Separate option to disable optimizations and 
   2554 _FORTIFY_SOURCE. This change removes the _FORTIFY_SOURCE flag from the 
   2555 NOOPT disable option and creates a separate flag (NOFORTIFY) for this 
   2556 purpose. Some toolchains may define _FORTIFY_SOURCE which leads redefined 
   2557 errors when building ACPICA. This allows disabling the option without 
   2558 also having to disable optimazations.
   2559 David Box
   2560 
   2561   Current Release:
   2562     Non-Debug Version: 101.7K Code, 27.9K Data, 129.6K Total
   2563     Debug Version:     199.2K Code, 82.4K Data, 281.6K Total
   2564 
   2565 --
   2566 --------------------------------------
   2567 07 November 2014. Summary of changes for version 20141107:
   2568 
   2569 This release is available at https://acpica.org/downloads
   2570 
   2571 This release introduces and implements language extensions to ASL that 
   2572 provide support for symbolic ("C-style") operators and expressions. These 
   2573 language extensions are known collectively as ASL+.
   2574 
   2575 
   2576 1) iASL Compiler/Disassembler and Tools:
   2577 
   2578 Disassembler: Fixed a problem with disassembly of the UartSerialBus 
   2579 macro. Changed "StopBitsNone" to the correct "StopBitsZero". David E. 
   2580 Box.
   2581 
   2582 Disassembler: Fixed the Unicode macro support to add escape sequences. 
   2583 All non-printable ASCII values are emitted as escape sequences, as well 
   2584 as the standard escapes for quote and backslash. Ensures that the 
   2585 disassembled macro can be correctly recompiled.
   2586 
   2587 iASL: Added Printf/Fprintf macros for formatted output. These macros are 
   2588 translated to existing AML Concatenate and Store operations. Printf 
   2589 writes to the ASL Debug object. Fprintf allows the specification of an 
   2590 ASL name as the target. Only a single format specifier is required, %o, 
   2591 since the AML interpreter dynamically converts objects to the required 
   2592 type. David E. Box.
   2593 
   2594     (old)    Store (Concatenate (Concatenate (Concatenate (Concatenate
   2595                  (Concatenate (Concatenate (Concatenate ("", Arg0),
   2596                  ": Unexpected value for "), Arg1), ", "), Arg2),
   2597                  " at line "), Arg3), Debug)
   2598 
   2599     (new)    Printf ("%o: Unexpected value for %o, %o at line %o",
   2600                  Arg0, Arg1, Arg2, Arg3)
   2601 
   2602     (old)    Store (Concatenate (Concatenate (Concatenate (Concatenate
   2603                  ("", Arg1), ": "), Arg0), " Successful"), STR1)
   2604 
   2605     (new)    Fprintf (STR1, "%o: %o Successful", Arg1, Arg0)
   2606 
   2607 iASL: Added debug options (-bp, -bt) to dynamically prune levels of the 
   2608 ASL parse tree before the AML code is generated. This allows blocks of 
   2609 ASL code to be removed in order to help locate and identify problem 
   2610 devices and/or code. David E. Box.
   2611 
   2612 AcpiExec: Added support (-fi) for an optional namespace object 
   2613 initialization file. This file specifies initial values for namespace 
   2614 objects as necessary for debugging and testing different ASL code paths 
   2615 that may be taken as a result of BIOS options.
   2616 
   2617 
   2618 2) Overview of symbolic operator support for ASL (ASL+)
   2619 -------------------------------------------------------
   2620 
   2621 As an extension to the ASL language, iASL implements support for symbolic 
   2622 (C-style) operators for math and logical expressions. This can greatly 
   2623 simplify ASL code as well as improve both readability and 
   2624 maintainability. These language extensions can exist concurrently with 
   2625 all legacy ASL code and expressions.
   2626 
   2627 The symbolic extensions are 100% compatible with existing AML 
   2628 interpreters, since no new AML opcodes are created. To implement the 
   2629 extensions, the iASL compiler transforms the symbolic expressions into 
   2630 the legacy ASL/AML equivalents at compile time.
   2631 
   2632 Full symbolic expressions are supported, along with the standard C 
   2633 precedence and associativity rules.
   2634 
   2635 Full disassembler support for the symbolic expressions is provided, and 
   2636 creates an automatic migration path for existing ASL code to ASL+ code 
   2637 via the disassembly process. By default, the disassembler now emits ASL+ 
   2638 code with symbolic expressions. An option (-dl) is provided to force the 
   2639 disassembler to emit legacy ASL code if desired.
   2640 
   2641 Below is the complete list of the currently supported symbolic operators 
   2642 with examples. See the iASL User Guide for additional information.
   2643 
   2644 
   2645 ASL+ Syntax      Legacy ASL Equivalent
   2646 -----------      ---------------------
   2647 
   2648     // Math operators
   2649 
   2650 Z = X + Y        Add (X, Y, Z)
   2651 Z = X - Y        Subtract (X, Y, Z)
   2652 Z = X * Y        Multiply (X, Y, Z)
   2653 Z = X / Y        Divide (X, Y, , Z)
   2654 Z = X % Y        Mod (X, Y, Z)
   2655 Z = X << Y       ShiftLeft (X, Y, Z)
   2656 Z = X >> Y       ShiftRight (X, Y, Z)
   2657 Z = X & Y        And (X, Y, Z)
   2658 Z = X | Y        Or (X, Y, Z)
   2659 Z = X ^ Y        Xor (X, Y, Z)
   2660 Z = ~X           Not (X, Z)
   2661 X++              Increment (X)
   2662 X--              Decrement (X)
   2663 
   2664     // Logical operators
   2665 
   2666 (X == Y)         LEqual (X, Y)
   2667 (X != Y)         LNotEqual (X, Y)
   2668 (X < Y)          LLess (X, Y)
   2669 (X > Y)          LGreater (X, Y)
   2670 (X <= Y)         LLessEqual (X, Y)
   2671 (X >= Y)         LGreaterEqual (X, Y)
   2672 (X && Y)         LAnd (X, Y)
   2673 (X || Y)         LOr (X, Y)
   2674 (!X)             LNot (X)
   2675 
   2676     // Assignment and compound assignment operations
   2677 
   2678 X = Y           Store (Y, X)
   2679 X += Y          Add (X, Y, X)
   2680 X -= Y          Subtract (X, Y, X)
   2681 X *= Y          Multiply (X, Y, X)
   2682 X /= Y          Divide (X, Y, , X)
   2683 X %= Y          Mod (X, Y, X)
   2684 X <<= Y         ShiftLeft (X, Y, X)
   2685 X >>= Y         ShiftRight (X, Y, X)
   2686 X &= Y          And (X, Y, X)
   2687 X |= Y          Or (X, Y, X)
   2688 X ^= Y          Xor (X, Y, X)
   2689 
   2690 
   2691 3) ASL+ Examples:
   2692 -----------------
   2693 
   2694 Legacy ASL:
   2695         If (LOr (LOr (LEqual (And (R510, 0x03FB), 0x02E0), LEqual (
   2696             And (R520, 0x03FB), 0x02E0)), LOr (LEqual (And (R530, 
   2697 0x03FB), 
   2698             0x02E0), LEqual (And (R540, 0x03FB), 0x02E0))))
   2699         {
   2700             And (MEMB, 0xFFFFFFF0, SRMB)
   2701             Store (MEMB, Local2)
   2702             Store (PDBM, Local1)
   2703             And (PDBM, 0xFFFFFFFFFFFFFFF9, PDBM)
   2704             Store (SRMB, MEMB)
   2705             Or (PDBM, 0x02, PDBM)
   2706         }
   2707 
   2708 ASL+ version:
   2709         If (((R510 & 0x03FB) == 0x02E0) ||
   2710             ((R520 & 0x03FB) == 0x02E0) ||
   2711             ((R530 & 0x03FB) == 0x02E0) || 
   2712             ((R540 & 0x03FB) == 0x02E0))
   2713         {
   2714             SRMB = (MEMB & 0xFFFFFFF0)
   2715             Local2 = MEMB
   2716             Local1 = PDBM
   2717             PDBM &= 0xFFFFFFFFFFFFFFF9
   2718             MEMB = SRMB
   2719             PDBM |= 0x02
   2720         }
   2721 
   2722 Legacy ASL:
   2723         Store (0x1234, Local1)
   2724         Multiply (Add (Add (Local1, TEST), 0x20), Local2, Local3)
   2725         Multiply (Local2, Add (Add (Local1, TEST), 0x20), Local3)
   2726         Add (Local1, Add (TEST, Multiply (0x20, Local2)), Local3)
   2727         Store (Index (PKG1, 0x03), Local6)
   2728         Store (Add (Local3, Local2), Debug)
   2729         Add (Local1, 0x0F, Local2)
   2730         Add (Local1, Multiply (Local2, Local3), Local2)
   2731         Multiply (Add (Add (Local1, TEST), 0x20), ToBCD (Local1), Local3)
   2732 
   2733 ASL+ version:
   2734         Local1 = 0x1234
   2735         Local3 = (((Local1 + TEST) + 0x20) * Local2)
   2736         Local3 = (Local2 * ((Local1 + TEST) + 0x20))
   2737         Local3 = (Local1 + (TEST + (0x20 * Local2)))
   2738         Local6 = Index (PKG1, 0x03)
   2739         Debug = (Local3 + Local2)
   2740         Local2 = (Local1 + 0x0F)
   2741         Local2 = (Local1 + (Local2 * Local3))
   2742         Local3 = (((Local1 + TEST) + 0x20) * ToBCD (Local1))
   2743 
   2744 
   2745 ----------------------------------------
   2746 26 September 2014. Summary of changes for version 20140926:
   2747 
   2748 1) ACPICA kernel-resident subsystem:
   2749 
   2750 Updated the GPIO operation region handler interface (GeneralPurposeIo). 
   2751 In order to support GPIO Connection objects with multiple pins, along 
   2752 with the related Field objects, the following changes to the interface 
   2753 have been made: The Address is now defined to be the offset in bits of 
   2754 the field unit from the previous invocation of a Connection. It can be 
   2755 viewed as a "Pin Number Index" into the connection resource descriptor. 
   2756 The BitWidth is the exact bit width of the field. It is usually one bit, 
   2757 but not always. See the ACPICA reference guide (section 8.8.6.2.1) for 
   2758 additional information and examples.
   2759 
   2760 GPE support: During ACPICA/GPE initialization, ensure that all GPEs with 
   2761 corresponding _Lxx/_Exx methods are disabled (they may have been enabled 
   2762 by the firmware), so that they cannot fire until they are enabled via 
   2763 AcpiUpdateAllGpes. Rafael J. Wysocki.
   2764 
   2765 Added a new return flag for the Event/GPE status interfaces -- 
   2766 AcpiGetEventStatus and AcpiGetGpeStatus. The new 
   2767 ACPI_EVENT_FLAGS_HAS_HANDLER flag is used to indicate that the event or 
   2768 GPE currently has a handler associated with it, and can thus actually 
   2769 affect the system. Lv Zheng.
   2770 
   2771 Example Code and Data Size: These are the sizes for the OS-independent 
   2772 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   2773 debug version of the code includes the debug output trace mechanism and 
   2774 has a much larger code and data size.
   2775 
   2776   Current Release:
   2777     Non-Debug Version:  99.1K Code, 27.3K Data, 126.4K Total
   2778     Debug Version:     192.8K Code, 79.9K Data, 272.7K Total
   2779   Previous Release:
   2780     Non-Debug Version:  98.8K Code, 27.3K Data, 126.1K Total
   2781     Debug Version:     192.1K Code, 79.8K Data, 271.9K Total
   2782 
   2783 2) iASL Compiler/Disassembler and Tools:
   2784 
   2785 iASL: Fixed a memory allocation/free regression introduced in 20140828 
   2786 that could cause the compiler to crash. This was introduced inadvertently 
   2787 during the effort to eliminate compiler memory leaks. ACPICA BZ 1111, 
   2788 1113.
   2789 
   2790 iASL: Removed two error messages that have been found to create false 
   2791 positives, until they can be fixed and fully validated (ACPICA BZ 1112):
   2792 1) Illegal forward reference within a method
   2793 2) Illegal reference across two methods
   2794 
   2795 iASL: Implemented a new option (-lm) to create a hardware mapping file 
   2796 that summarizes all GPIO, I2C, SPI, and UART connections. This option 
   2797 works for both the compiler and disassembler. See the iASL compiler user 
   2798 guide for additional information and examples (section 6.4.6).
   2799 
   2800 AcpiDump: Added support for the version 1 (ACPI 1.0) RSDP in addition to 
   2801 version 2. This corrects the AE_BAD_HEADER exception seen on systems with 
   2802 a version 1 RSDP. Lv Zheng ACPICA BZ 1097.
   2803 
   2804 AcpiExec: For Unix versions, don't attempt to put STDIN into raw mode 
   2805 unless STDIN is actually a terminal. Assists with batch-mode processing. 
   2806 ACPICA BZ 1114.
   2807 
   2808 Disassembler/AcpiHelp: Added another large group of recognized _HID 
   2809 values.
   2810 
   2811 
   2812 ----------------------------------------
   2813 28 August 2014. Summary of changes for version 20140828:
   2814 
   2815 1) ACPICA kernel-resident subsystem:
   2816 
   2817 Fixed a problem related to the internal use of the Timer() operator where 
   2818 a 64-bit divide could cause an attempted link to a double-precision math 
   2819 library. This divide is not actually necessary, so the code was 
   2820 restructured to eliminate it. Lv Zheng.
   2821 
   2822 ACPI 5.1: Added support for the runtime validation of the _DSD package 
   2823 (similar to the iASL support).
   2824 
   2825 ACPI 5.1/Headers: Added support for the GICC affinity subtable to the 
   2826 SRAT table. Hanjun Guo <hanjun.guo (a] linaro.org>.
   2827 
   2828 Example Code and Data Size: These are the sizes for the OS-independent 
   2829 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   2830 debug version of the code includes the debug output trace mechanism and 
   2831 has a much larger code and data size.
   2832 
   2833   Current Release:
   2834     Non-Debug Version:  98.8K Code, 27.3K Data, 126.1K Total
   2835     Debug Version:     192.1K Code, 79.8K Data, 271.9K Total
   2836   Previous Release:
   2837     Non-Debug Version:  98.7K Code, 27.3K Data, 126.0K Total1
   2838     Debug Version:     192.0K Code, 79.7K Data, 271.7K Total
   2839 
   2840 2) iASL Compiler/Disassembler and Tools:
   2841 
   2842 AcpiExec: Fixed a problem on unix systems where the original terminal 
   2843 state was not always properly restored upon exit. Seen when using the -v 
   2844 option. ACPICA BZ 1104.
   2845 
   2846 iASL: Fixed a problem with the validation of the ranges/length within the 
   2847 Memory24 resource descriptor. There was a boundary condition when the 
   2848 range was equal to the (length -1) caused by the fact that these values 
   2849 are defined in 256-byte blocks, not bytes. ACPICA BZ 1098
   2850 
   2851 Disassembler: Fixed a problem with the GpioInt descriptor interrupt 
   2852 polarity 
   2853 flags. The flags are actually 2 bits, not 1, and the "ActiveBoth" keyword 
   2854 is 
   2855 now supported properly.
   2856 
   2857 ACPI 5.1: Added the GICC affinity subtable to the SRAT table. Supported 
   2858 in the disassembler, data table compiler, and table template generator.
   2859 
   2860 iASL: Added a requirement for Device() objects that one of either a _HID 
   2861 or _ADR must exist within the scope of a Device, as per the ACPI 
   2862 specification. Remove a similar requirement that was incorrectly in place 
   2863 for the _DSD object.
   2864 
   2865 iASL: Added error detection for illegal named references within control 
   2866 methods that would cause runtime failures. Now trapped as errors are: 1) 
   2867 References to objects within a non-parent control method. 2) Forward 
   2868 references (within a method) -- for control methods, AML interpreters use 
   2869 a one-pass parse of control methods. ACPICA BZ 1008.
   2870 
   2871 iASL: Added error checking for dependencies related to the _PSx power 
   2872 methods. ACPICA BZ 1029.
   2873 1) For _PS0, one of these must exist within the same scope: _PS1, _PS2, 
   2874 _PS3.
   2875 2) For _PS1, _PS2, and PS3: A _PS0 object must exist within the same 
   2876 scope.
   2877 
   2878 iASL and table compiler: Cleanup miscellaneous memory leaks by fully 
   2879 deploying the existing object and string caches and adding new caches for 
   2880 the table compiler.
   2881 
   2882 iASL: Split the huge parser source file into multiple subfiles to improve 
   2883 manageability. Generation now requires the M4 macro preprocessor, which 
   2884 is part of the Bison distribution on both unix and windows platforms.
   2885 
   2886 AcpiSrc: Fixed and removed all extraneous warnings generated during 
   2887 entire ACPICA source code scan and/or conversion.
   2888 
   2889 
   2890 ----------------------------------------
   2891 
   2892 24 July 2014. Summary of changes for version 20140724: 
   2893 
   2894 The ACPI 5.1 specification has been released and is available at: 
   2895 http://uefi.org/specs/access
   2896 
   2897 
   2898 0) ACPI 5.1 support in ACPICA:
   2899 
   2900 ACPI 5.1 is fully supported in ACPICA as of this release.
   2901 
   2902 New predefined names. Support includes iASL and runtime ACPICA 
   2903 validation.
   2904     _CCA (Cache Coherency Attribute).
   2905     _DSD (Device-Specific Data). David Box.
   2906 
   2907 Modifications to existing ACPI tables. Support includes headers, iASL 
   2908 Data Table compiler, disassembler, and the template generator.
   2909     FADT - New fields and flags. Graeme Gregory.
   2910     GTDT - One new subtable and new fields. Tomasz Nowicki.
   2911     MADT - Two new subtables. Tomasz Nowicki.
   2912     PCCT - One new subtable.
   2913 
   2914 Miscellaneous.
   2915     New notification type for System Resource Affinity change events.
   2916 
   2917 
   2918 1) ACPICA kernel-resident subsystem:
   2919 
   2920 Fixed a regression introduced in 20140627 where a fault can happen during 
   2921 the deletion of Alias AML namespace objects. The problem affected both 
   2922 the core ACPICA and the ACPICA tools including iASL and AcpiExec.
   2923 
   2924 Implemented a new GPE public interface, AcpiMarkGpeForWake. Provides a 
   2925 simple mechanism to enable wake GPEs that have no associated handler or 
   2926 control method. Rafael Wysocki.
   2927 
   2928 Updated the AcpiEnableGpe interface to disallow the enable if there is no 
   2929 handler or control method associated with the particular GPE. This will 
   2930 help avoid meaningless GPEs and even GPE floods. Rafael Wysocki.
   2931 
   2932 Updated GPE handling and dispatch by disabling the GPE before clearing 
   2933 the status bit for edge-triggered GPEs. Lv Zheng.
   2934 
   2935 Added Timer() support to the AML Debug object. The current timer value is 
   2936 now displayed with each invocation of (Store to) the debug object to 
   2937 enable simple generation of execution times for AML code (method 
   2938 execution for example.) ACPICA BZ 1093.
   2939 
   2940 Example Code and Data Size: These are the sizes for the OS-independent 
   2941 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   2942 debug version of the code includes the debug output trace mechanism and 
   2943 has a much larger code and data size.
   2944 
   2945   Current Release:
   2946     Non-Debug Version:  98.7K Code, 27.3K Data, 126.0K Total
   2947     Debug Version:     192.0K Code, 79.7K Data, 271.7K Total
   2948   Previous Release:
   2949     Non-Debug Version:  98.7K Code, 27.2K Data, 125.9K Total
   2950     Debug Version:     191.7K Code, 79.6K Data, 271.3K Total
   2951 
   2952 
   2953 2) iASL Compiler/Disassembler and Tools:
   2954 
   2955 Fixed an issue with the recently added local printf implementation, 
   2956 concerning width/precision specifiers that could cause incorrect output. 
   2957 Lv Zheng. ACPICA BZ 1094.
   2958 
   2959 Disassembler: Added support to detect buffers that contain UUIDs and 
   2960 disassemble them to an invocation of the ToUUID operator. Also emit 
   2961 commented descriptions of known ACPI-related UUIDs.
   2962 
   2963 AcpiHelp: Added support to display known ACPI-related UUIDs. New option, 
   2964 -u. Adds three new files. 
   2965 
   2966 iASL: Update table compiler and disassembler for DMAR table changes that 
   2967 were introduced in September 2013. With assistance by David Woodhouse.
   2968 
   2969 ----------------------------------------
   2970 27 June 2014. Summary of changes for version 20140627:
   2971 
   2972 1) ACPICA kernel-resident subsystem:
   2973 
   2974 Formatted Output: Implemented local versions of standard formatted output 
   2975 utilities such as printf, etc. Over time, it has been discovered that 
   2976 there are in fact many portability issues with printf, and the addition 
   2977 of this feature will fix/prevent these issues once and for all. Some 
   2978 known issues are summarized below:
   2979 
   2980 1) Output of 64-bit values is not portable. For example, UINT64 is %ull 
   2981 for the Linux kernel and is %uI64 for some MSVC versions.
   2982 2) Invoking printf consistently in a manner that is portable across both 
   2983 32-bit and 64-bit platforms is difficult at best in many situations.
   2984 3) The output format for pointers varies from system to system (leading 
   2985 zeros especially), and leads to inconsistent output from ACPICA across 
   2986 platforms.
   2987 4) Certain platform-specific printf formats may conflict with ACPICA use.
   2988 5) If there is no local C library available, ACPICA now has local support 
   2989 for printf.
   2990 
   2991 -- To address these printf issues in a complete manner, ACPICA now 
   2992 directly implements a small subset of printf format specifiers, only 
   2993 those that it requires. Adds a new file, utilities/utprint.c. Lv Zheng.
   2994 
   2995 Implemented support for ACPICA generation within the EFI environment. 
   2996 Initially, the AcpiDump utility is supported in the UEFI shell 
   2997 environment. Lv Zheng.
   2998 
   2999 Added a new external interface, AcpiLogError, to improve ACPICA 
   3000 portability. This allows the host to redirect error messages from the 
   3001 ACPICA utilities. Lv Zheng.
   3002 
   3003 Added and deployed new OSL file I/O interfaces to improve ACPICA 
   3004 portability:
   3005   AcpiOsOpenFile
   3006   AcpiOsCloseFile
   3007   AcpiOsReadFile
   3008   AcpiOsWriteFile
   3009   AcpiOsGetFileOffset
   3010   AcpiOsSetFileOffset
   3011 There are C library implementations of these functions in the new file 
   3012 service_layers/oslibcfs.c -- however, the functions can be implemented by 
   3013 the local host in any way necessary. Lv Zheng.
   3014 
   3015 Implemented a mechanism to disable/enable ACPI table checksum validation 
   3016 at runtime. This can be useful when loading tables very early during OS 
   3017 initialization when it may not be possible to map the entire table in 
   3018 order to compute the checksum. Lv Zheng.
   3019 
   3020 Fixed a buffer allocation issue for the Generic Serial Bus support. 
   3021 Originally, a fixed buffer length was used. This change allows for 
   3022 variable-length buffers based upon the protocol indicated by the field 
   3023 access attributes. Reported by Lan Tianyu. Lv Zheng.
   3024 
   3025 Fixed a problem where an object detached from a namespace node was not 
   3026 properly terminated/cleared and could cause a circular list problem if 
   3027 reattached. ACPICA BZ 1063. David Box.
   3028 
   3029 Fixed a possible recursive lock acquisition in hwregs.c. Rakib Mullick.
   3030 
   3031 Fixed a possible memory leak in an error return path within the function 
   3032 AcpiUtCopyIobjectToIobject. ACPICA BZ 1087. Colin Ian King.
   3033 
   3034 Example Code and Data Size: These are the sizes for the OS-independent 
   3035 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   3036 debug version of the code includes the debug output trace mechanism and 
   3037 has a much larger code and data size.
   3038 
   3039   Current Release:
   3040     Non-Debug Version:  98.7K Code, 27.2K Data, 125.9K Total
   3041     Debug Version:     191.7K Code, 79.6K Data, 271.3K Total
   3042   Previous Release:
   3043     Non-Debug Version:  96.8K Code, 27.2K Data, 124.0K Total
   3044     Debug Version:     189.5K Code, 79.7K Data, 269.2K Total
   3045 
   3046 
   3047 2) iASL Compiler/Disassembler and Tools:
   3048 
   3049 Disassembler: Add dump of ASCII equivalent text within a comment at the 
   3050 end of each line of the output for the Buffer() ASL operator.
   3051 
   3052 AcpiDump: Miscellaneous changes:
   3053   Fixed repetitive table dump in -n mode.
   3054   For older EFI platforms, use the ACPI 1.0 GUID during RSDP search if 
   3055 the ACPI 2.0 GUID fails.
   3056 
   3057 iASL: Fixed a problem where the compiler could fault if incorrectly given 
   3058 an acpidump output file as input. ACPICA BZ 1088. David Box.
   3059 
   3060 AcpiExec/AcpiNames: Fixed a problem where these utilities could fault if 
   3061 they are invoked without any arguments.
   3062 
   3063 Debugger: Fixed a possible memory leak in an error return path. ACPICA BZ 
   3064 1086. Colin Ian King.
   3065 
   3066 Disassembler: Cleaned up a block of code that extracts a parent Op 
   3067 object. Added a comment that explains that the parent is guaranteed to be 
   3068 valid in this case. ACPICA BZ 1069.
   3069 
   3070 
   3071 ----------------------------------------
   3072 24 April 2014. Summary of changes for version 20140424:
   3073 
   3074 1) ACPICA kernel-resident subsystem:
   3075 
   3076 Implemented support to skip/ignore NULL address entries in the RSDT/XSDT. 
   3077 Some of these tables are known to contain a trailing NULL entry. Lv 
   3078 Zheng.
   3079 
   3080 Removed an extraneous error message for the case where there are a large 
   3081 number of system GPEs (> 124). This was the "32-bit FADT register is too 
   3082 long to convert to GAS struct" message, which is irrelevant for GPEs 
   3083 since the GPEx_BLK_LEN fields of the FADT are always used instead of the 
   3084 (limited capacity) GAS bit length. Also, several changes to ensure proper 
   3085 support for GPE numbers > 255, where some "GPE number" fields were 8-bits 
   3086 internally.
   3087 
   3088 Implemented and deployed additional configuration support for the public 
   3089 ACPICA external interfaces. Entire classes of interfaces can now be 
   3090 easily modified or configured out, replaced by stubbed inline functions 
   3091 by default. Lv Zheng.
   3092 
   3093 Moved all public ACPICA runtime configuration globals to the public 
   3094 ACPICA external interface file for convenience. Also, removed some 
   3095 obsolete/unused globals. See the file acpixf.h. Lv Zheng.
   3096 
   3097 Documentation: Added a new section to the ACPICA reference describing the 
   3098 maximum number of GPEs that can be supported by the FADT-defined GPEs in 
   3099 block zero and one. About 1200 total. See section 4.4.1 of the ACPICA 
   3100 reference.
   3101 
   3102 Example Code and Data Size: These are the sizes for the OS-independent 
   3103 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   3104 debug version of the code includes the debug output trace mechanism and 
   3105 has a much larger code and data size.
   3106 
   3107   Current Release:
   3108     Non-Debug Version:  96.8K Code, 27.2K Data, 124.0K Total
   3109     Debug Version:     189.5K Code, 79.7K Data, 269.2K Total
   3110   Previous Release:
   3111     Non-Debug Version:  97.0K Code, 27.2K Data, 124.2K Total
   3112     Debug Version:     189.7K Code, 79.5K Data, 269.2K Total
   3113 
   3114 
   3115 2) iASL Compiler/Disassembler and Tools:
   3116 
   3117 iASL and disassembler: Add full support for the LPIT table (Low Power 
   3118 Idle Table). Includes support in the disassembler, data table compiler, 
   3119 and template generator.
   3120 
   3121 AcpiDump utility:
   3122 1) Add option to force the use of the RSDT (over the XSDT).
   3123 2) Improve validation of the RSDP signature (use 8 chars instead of 4).
   3124 
   3125 iASL: Add check for predefined packages that are too large.  For 
   3126 predefined names that contain subpackages, check if each subpackage is 
   3127 too large. (Check for too small already exists.)
   3128 
   3129 Debugger: Updated the GPE command (which simulates a GPE by executing the 
   3130 GPE code paths in ACPICA). The GPE device is now optional, and defaults 
   3131 to the GPE 0/1 FADT-defined blocks.
   3132 
   3133 Unix application OSL: Update line-editing support. Add additional error 
   3134 checking and take care not to reset terminal attributes on exit if they 
   3135 were never set. This should help guarantee that the terminal is always 
   3136 left in the previous state on program exit.
   3137 
   3138 
   3139 ----------------------------------------
   3140 25 March 2014. Summary of changes for version 20140325:
   3141 
   3142 1) ACPICA kernel-resident subsystem:
   3143 
   3144 Updated the auto-serialize feature for control methods. This feature 
   3145 automatically serializes all methods that create named objects in order 
   3146 to prevent runtime errors. The update adds support to ignore the 
   3147 currently executing AML SyncLevel when invoking such a method, in order 
   3148 to prevent disruption of any existing SyncLevel priorities that may exist 
   3149 in the AML code. Although the use of SyncLevels is relatively rare, this 
   3150 change fixes a regression where an AE_AML_MUTEX_ORDER exception can 
   3151 appear on some machines starting with the 20140214 release.
   3152 
   3153 Added a new external interface to allow the host to install ACPI tables 
   3154 very early, before the namespace is even created. AcpiInstallTable gives 
   3155 the host additional flexibility for ACPI table management. Tables can be 
   3156 installed directly by the host as if they had originally appeared in the 
   3157 XSDT/RSDT. Installed tables can be SSDTs or other ACPI data tables 
   3158 (anything except the DSDT and FACS). Adds a new file, tbdata.c, along 
   3159 with additional internal restructuring and cleanup. See the ACPICA 
   3160 Reference for interface details. Lv Zheng.
   3161 
   3162 Added validation of the checksum for all incoming dynamically loaded 
   3163 tables (via external interfaces or via AML Load/LoadTable operators). Lv 
   3164 Zheng.
   3165 
   3166 Updated the use of the AcpiOsWaitEventsComplete interface during Notify 
   3167 and GPE handler removal. Restructured calls to eliminate possible race 
   3168 conditions. Lv Zheng.
   3169 
   3170 Added a warning for the use/execution of the ASL/AML Unload (table) 
   3171 operator. This will help detect and identify machines that use this 
   3172 operator if and when it is ever used. This operator has never been seen 
   3173 in the field and the usage model and possible side-effects of the drastic 
   3174 runtime action of a full table removal are unknown.
   3175 
   3176 Reverted the use of #pragma push/pop which was introduced in the 20140214 
   3177 release. It appears that push and pop are not implemented by enough 
   3178 compilers to make the use of this feature feasible for ACPICA at this 
   3179 time. However, these operators may be deployed in a future ACPICA 
   3180 release.
   3181 
   3182 Added the missing EXPORT_SYMBOL macros for the install and remove SCI 
   3183 handler interfaces.
   3184 
   3185 Source code generation:
   3186 1) Disabled the use of the "strchr" macro for the gcc-specific 
   3187 generation. For some versions of gcc, this macro can periodically expose 
   3188 a compiler bug which in turn causes compile-time error(s).
   3189 2) Added support for PPC64 compilation. Colin Ian King.
   3190 
   3191 Example Code and Data Size: These are the sizes for the OS-independent 
   3192 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   3193 debug version of the code includes the debug output trace mechanism and 
   3194 has a much larger code and data size.
   3195 
   3196   Current Release:
   3197     Non-Debug Version:  97.0K Code, 27.2K Data, 124.2K Total
   3198     Debug Version:     189.7K Code, 79.5K Data, 269.2K Total
   3199   Previous Release:
   3200     Non-Debug Version:  96.5K Code, 27.2K Data, 123.7K Total
   3201     Debug Version:     188.6K Code, 79.0K Data, 267.6K Total
   3202 
   3203 
   3204 2) iASL Compiler/Disassembler and Tools:
   3205 
   3206 Disassembler: Added several new features to improve the readability of 
   3207 the resulting ASL code. Extra information is emitted within comment 
   3208 fields in the ASL code:
   3209 1) Known _HID/_CID values are decoded to descriptive text.
   3210 2) Standard values for the Notify() operator are decoded to descriptive 
   3211 text.
   3212 3) Target operands are expanded to full pathnames (in a comment) when 
   3213 possible.
   3214 
   3215 Disassembler: Miscellaneous updates for extern() handling:
   3216 1) Abort compiler if file specified by -fe option does not exist.
   3217 2) Silence unnecessary warnings about argument count mismatches.
   3218 3) Update warning messages concerning unresolved method externals.
   3219 4) Emit "UnknownObj" keyword for externals whose type cannot be 
   3220 determined.
   3221 
   3222 AcpiHelp utility:
   3223 1) Added the -a option to display both the ASL syntax and the AML 
   3224 encoding for an input ASL operator. This effectively displays all known 
   3225 information about an ASL operator with one AcpiHelp invocation.
   3226 2) Added substring match support (similar to a wildcard) for the -i 
   3227 (_HID/PNP IDs) option.
   3228 
   3229 iASL/Disassembler: Since this tool does not yet support execution on big-
   3230 endian machines, added detection of endianness and an error message if 
   3231 execution is attempted on big-endian. Support for big-endian within iASL 
   3232 is a feature that is on the ACPICA to-be-done list.
   3233 
   3234 AcpiBin utility:
   3235 1) Remove option to extract binary files from an acpidump; this function 
   3236 is made obsolete by the AcpiXtract utility.
   3237 2) General cleanup of open files and allocated buffers.
   3238 
   3239 
   3240 ----------------------------------------
   3241 14 February 2014. Summary of changes for version 20140214:
   3242 
   3243 1) ACPICA kernel-resident subsystem:
   3244 
   3245 Implemented a new mechanism to proactively prevent problems with ill-
   3246 behaved reentrant control methods that create named ACPI objects. This 
   3247 behavior is illegal as per the ACPI specification, but is nonetheless 
   3248 frequently seen in the field. Previously, this could lead to an 
   3249 AE_ALREADY_EXISTS exception if the method was actually entered by more 
   3250 than one thread. This new mechanism detects such methods at table load 
   3251 time and marks them "serialized" to prevent reentrancy. A new global 
   3252 option, AcpiGbl_AutoSerializeMethods, has been added to disable this 
   3253 feature if desired. This mechanism and global option obsoletes and 
   3254 supersedes the previous AcpiGbl_SerializeAllMethods option.
   3255 
   3256 Added the "Windows 2013" string to the _OSI support. ACPICA will now 
   3257 respond TRUE to _OSI queries with this string. It is the stated policy of 
   3258 ACPICA to add new strings to the _OSI support as soon as possible after 
   3259 they are defined. See the full ACPICA _OSI policy which has been added to 
   3260 the utilities/utosi.c file.
   3261 
   3262 Hardened/updated the _PRT return value auto-repair code:
   3263 1) Do not abort the repair on a single subpackage failure, continue to 
   3264 check all subpackages.
   3265 2) Add check for the minimum subpackage length (4).
   3266 3) Properly handle extraneous NULL package elements.
   3267 
   3268 Added support to avoid the possibility of infinite loops when traversing 
   3269 object linked lists. Never allow an infinite loop, even in the face of 
   3270 corrupted object lists.
   3271 
   3272 ACPICA headers: Deployed the use of #pragma pack(push) and #pragma 
   3273 pack(pop) directives to ensure that the ACPICA headers are independent of 
   3274 compiler settings or other host headers.
   3275 
   3276 Example Code and Data Size: These are the sizes for the OS-independent 
   3277 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   3278 debug version of the code includes the debug output trace mechanism and 
   3279 has a much larger code and data size.
   3280 
   3281   Current Release:
   3282     Non-Debug Version:  96.5K Code, 27.2K Data, 123.7K Total
   3283     Debug Version:     188.6K Code, 79.0K Data, 267.6K Total
   3284   Previous Release:
   3285     Non-Debug Version:  96.2K Code, 27.0K Data, 123.2K Total
   3286     Debug Version:     187.5K Code, 78.3K Data, 265.8K Total
   3287 
   3288 
   3289 2) iASL Compiler/Disassembler and Tools:
   3290 
   3291 iASL/Table-compiler: Fixed a problem with support for the SPMI table. The 
   3292 first reserved field was incorrectly forced to have a value of zero. This 
   3293 change correctly forces the field to have a value of one. ACPICA BZ 1081.
   3294 
   3295 Debugger: Added missing support for the "Extra" and "Data" subobjects 
   3296 when displaying object data.
   3297 
   3298 Debugger: Added support to display entire object linked lists when 
   3299 displaying object data.
   3300 
   3301 iASL: Removed the obsolete -g option to obtain ACPI tables from the 
   3302 Windows registry. This feature has been superseded by the acpidump 
   3303 utility. 
   3304 
   3305 
   3306 ----------------------------------------
   3307 14 January 2014. Summary of changes for version 20140114:
   3308 
   3309 1) ACPICA kernel-resident subsystem:
   3310 
   3311 Updated all ACPICA copyrights and signons to 2014. Added the 2014 
   3312 copyright to all module headers and signons, including the standard Linux 
   3313 header. This affects virtually every file in the ACPICA core subsystem, 
   3314 iASL compiler, all ACPICA utilities, and the test suites.
   3315 
   3316 Improved parameter validation for AcpiInstallGpeBlock. Added the 
   3317 following checks:
   3318 1) The incoming device handle refers to type ACPI_TYPE_DEVICE.
   3319 2) There is not already a GPE block attached to the device.
   3320 Likewise, with AcpiRemoveGpeBlock, ensure that the incoming object is a 
   3321 device.
   3322 
   3323 Correctly support "references" in the ACPI_OBJECT. This change fixes the 
   3324 support to allow references (namespace nodes) to be passed as arguments 
   3325 to control methods via the evaluate object interface. This is probably 
   3326 most useful for testing purposes, however.
   3327 
   3328 Improved support for 32/64 bit physical addresses in printf()-like 
   3329 output. This change improves the support for physical addresses in printf 
   3330 debug statements and other output on both 32-bit and 64-bit hosts. It 
   3331 consistently outputs the appropriate number of bytes for each host. The 
   3332 %p specifier is unsatisfactory since it does not emit uniform output on 
   3333 all hosts/clib implementations (on some, leading zeros are not supported, 
   3334 leading to difficult-to-read output).
   3335 
   3336 Example Code and Data Size: These are the sizes for the OS-independent 
   3337 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   3338 debug version of the code includes the debug output trace mechanism and 
   3339 has a much larger code and data size.
   3340 
   3341   Current Release:
   3342     Non-Debug Version:  96.2K Code, 27.0K Data, 123.2K Total
   3343     Debug Version:     187.5K Code, 78.3K Data, 265.8K Total
   3344   Previous Release:
   3345     Non-Debug Version:  96.1K Code, 27.0K Data, 123.1K Total
   3346     Debug Version:     185.6K Code, 77.3K Data, 262.9K Total
   3347 
   3348 
   3349 2) iASL Compiler/Disassembler and Tools:
   3350 
   3351 iASL: Fix a possible fault when using the Connection() operator. Fixes a 
   3352 problem if the parent Field definition for the Connection operator refers 
   3353 to an operation region that does not exist. ACPICA BZ 1064.
   3354 
   3355 AcpiExec: Load of local test tables is now optional. The utility has the 
   3356 capability to load some various tables to test features of ACPICA. 
   3357 However, there are enough of them that the output of the utility became 
   3358 confusing. With this change, only the required local tables are displayed 
   3359 (RSDP, XSDT, etc.) along with the actual tables loaded via the command 
   3360 line specification. This makes the default output simler and easier to 
   3361 understand. The -el command line option restores the original behavior 
   3362 for testing purposes.
   3363 
   3364 AcpiExec: Added support for overlapping operation regions. This change 
   3365 expands the simulation of operation regions by supporting regions that 
   3366 overlap within the given address space. Supports SystemMemory and 
   3367 SystemIO. ASLTS test suite updated also. David Box. ACPICA BZ 1031.
   3368 
   3369 AcpiExec: Added region handler support for PCI_Config and EC spaces. This 
   3370 allows AcpiExec to simulate these address spaces, similar to the current 
   3371 support for SystemMemory and SystemIO.
   3372 
   3373 Debugger: Added new command to read/write/compare all namespace objects. 
   3374 The command "test objects" will exercise the entire namespace by writing 
   3375 new values to each data object, and ensuring that the write was 
   3376 successful. The original value is then restored and verified.
   3377 
   3378 Debugger: Added the "test predefined" command. This change makes this 
   3379 test public and puts it under the new "test" command. The test executes 
   3380 each and every predefined name within the current namespace.
   3381 
   3382 
   3383 ----------------------------------------
   3384 18 December 2013. Summary of changes for version 20131218:
   3385 
   3386 Global note: The ACPI 5.0A specification was released this month. There 
   3387 are no changes needed for ACPICA since this release of ACPI is an 
   3388 errata/clarification release. The specification is available at 
   3389 acpi.info. 
   3390 
   3391 
   3392 1) ACPICA kernel-resident subsystem:
   3393 
   3394 Added validation of the XSDT root table if it is present. Some older 
   3395 platforms contain an XSDT that is ill-formed or otherwise invalid (such 
   3396 as containing some or all entries that are NULL pointers). This change 
   3397 adds a new function to validate the XSDT before actually using it. If the 
   3398 XSDT is found to be invalid, ACPICA will now automatically fall back to 
   3399 using the RSDT instead. Original implementation by Zhao Yakui. Ported to 
   3400 ACPICA and enhanced by Lv Zheng and Bob Moore.
   3401 
   3402 Added a runtime option to ignore the XSDT and force the use of the RSDT. 
   3403 This change adds a runtime option that will force ACPICA to use the RSDT 
   3404 instead of the XSDT (AcpiGbl_DoNotUseXsdt). Although the ACPI spec 
   3405 requires that an XSDT be used instead of the RSDT, the XSDT has been 
   3406 found to be corrupt or ill-formed on some machines. Lv Zheng.
   3407 
   3408 Added a runtime option to favor 32-bit FADT register addresses over the 
   3409 64-bit addresses. This change adds an option to favor 32-bit FADT 
   3410 addresses when there is a conflict between the 32-bit and 64-bit versions 
   3411 of the same register. The default behavior is to use the 64-bit version 
   3412 in accordance with the ACPI specification. This can now be overridden via 
   3413 the AcpiGbl_Use32BitFadtAddresses flag. ACPICA BZ 885. Lv Zheng.
   3414 
   3415 During the change above, the internal "Convert FADT" and "Verify FADT" 
   3416 functions have been merged to simplify the code, making it easier to 
   3417 understand and maintain. ACPICA BZ 933.
   3418 
   3419 Improve exception reporting and handling for GPE block installation. 
   3420 Return an actual status from AcpiEvGetGpeXruptBlock and don't clobber the 
   3421 status when exiting AcpiEvInstallGpeBlock. ACPICA BZ 1019.
   3422 
   3423 Added helper macros to extract bus/segment numbers from the HEST table. 
   3424 This change adds two macros to extract the encoded bus and segment 
   3425 numbers from the HEST Bus field - ACPI_HEST_BUS and ACPI_HEST_SEGMENT. 
   3426 Betty Dall <betty.dall (a] hp.com>
   3427 
   3428 Removed the unused ACPI_FREE_BUFFER macro. This macro is no longer used 
   3429 by ACPICA. It is not a public macro, so it should have no effect on 
   3430 existing OSV code. Lv Zheng.
   3431 
   3432 Example Code and Data Size: These are the sizes for the OS-independent 
   3433 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   3434 debug version of the code includes the debug output trace mechanism and 
   3435 has a much larger code and data size.
   3436 
   3437   Current Release:
   3438     Non-Debug Version:  96.1K Code, 27.0K Data, 123.1K Total
   3439     Debug Version:     185.6K Code, 77.3K Data, 262.9K Total
   3440   Previous Release:
   3441     Non-Debug Version:  95.9K Code, 27.0K Data, 122.9K Total
   3442     Debug Version:     185.1K Code, 77.2K Data, 262.3K Total
   3443 
   3444 
   3445 2) iASL Compiler/Disassembler and Tools:
   3446 
   3447 Disassembler: Improved pathname support for emitted External() 
   3448 statements. This change adds full pathname support for external names 
   3449 that have been resolved internally by the inclusion of additional ACPI 
   3450 tables (via the iASL -e option). Without this change, the disassembler 
   3451 can emit multiple externals for the same object, or it become confused 
   3452 when the Scope() operator is used on an external object. Overall, greatly 
   3453 improves the ability to actually recompile the emitted ASL code when 
   3454 objects a referenced across multiple ACPI tables. Reported by Michael 
   3455 Tsirkin (mst (a] redhat.com).
   3456 
   3457 Tests/ASLTS: Updated functional control suite to execute with no errors. 
   3458 David Box. Fixed several errors related to the testing of the interpreter 
   3459 slack mode. Lv Zheng.
   3460 
   3461 iASL: Added support to detect names that are declared within a control 
   3462 method, but are unused (these are temporary names that are only valid 
   3463 during the time the method is executing). A remark is issued for these 
   3464 cases. ACPICA BZ 1022.
   3465 
   3466 iASL: Added full support for the DBG2 table. Adds full disassembler, 
   3467 table compiler, and template generator support for the DBG2 table (Debug 
   3468 Port 2 table).
   3469 
   3470 iASL: Added full support for the PCCT table, update the table definition. 
   3471 Updates the PCCT table definition in the actbl3.h header and adds table 
   3472 compiler and template generator support.
   3473 
   3474 iASL: Added an option to emit only error messages (no warnings/remarks). 
   3475 The -ve option will enable only error messages, warnings and remarks are 
   3476 suppressed. This can simplify debugging when only the errors are 
   3477 important, such as when an ACPI table is disassembled and there are many 
   3478 warnings and remarks -- but only the actual errors are of real interest.
   3479 
   3480 Example ACPICA code (source/tools/examples): Updated the example code so 
   3481 that it builds to an actual working program, not just example code. Added 
   3482 ACPI tables and execution of an example control method in the DSDT. Added 
   3483 makefile support for Unix generation.
   3484 
   3485 
   3486 ----------------------------------------
   3487 15 November 2013. Summary of changes for version 20131115:
   3488 
   3489 This release is available at https://acpica.org/downloads
   3490 
   3491 
   3492 1) ACPICA kernel-resident subsystem:
   3493 
   3494 Resource Manager: Fixed loop termination for the "get AML length" 
   3495 function. The loop previously had an error termination on a NULL resource 
   3496 pointer, which can never happen since the loop simply increments a valid 
   3497 resource pointer. This fix changes the loop to terminate with an error on 
   3498 an invalid end-of-buffer condition. The problem can be seen as an 
   3499 infinite loop by callers to AcpiSetCurrentResources with an invalid or 
   3500 corrupted resource descriptor, or a resource descriptor that is missing 
   3501 an END_TAG descriptor. Reported by Dan Carpenter 
   3502 <dan.carpenter (a] oracle.com>. Lv Zheng, Bob Moore.
   3503 
   3504 Table unload and ACPICA termination: Delete all attached data objects 
   3505 during namespace node deletion. This fix updates namespace node deletion 
   3506 to delete the entire list of attached objects (attached via 
   3507 AcpiAttachObject) instead of just one of the attached items. ACPICA BZ 
   3508 1024. Tomasz Nowicki (tomasz.nowicki (a] linaro.org).
   3509 
   3510 ACPICA termination: Added support to delete all objects attached to the 
   3511 root namespace node. This fix deletes any and all objects that have been 
   3512 attached to the root node via AcpiAttachData. Previously, none of these 
   3513 objects were deleted. Reported by Tomasz Nowicki. ACPICA BZ 1026.
   3514 
   3515 Debug output: Do not emit the function nesting level for the in-kernel 
   3516 build. The nesting level is really only useful during a single-thread 
   3517 execution. Therefore, only enable this output for the AcpiExec utility. 
   3518 Also, only emit the thread ID when executing under AcpiExec (Context 
   3519 switches are still always detected and a message is emitted). ACPICA BZ 
   3520 972.
   3521 
   3522 Example Code and Data Size: These are the sizes for the OS-independent 
   3523 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   3524 debug version of the code includes the debug output trace mechanism and 
   3525 has a much larger code and data size.
   3526 
   3527   Current Release:
   3528     Non-Debug Version:  95.9K Code, 27.0K Data, 122.9K Total
   3529     Debug Version:     185.1K Code, 77.2K Data, 262.3K Total
   3530   Previous Release:
   3531     Non-Debug Version:  95.8K Code, 27.0K Data, 122.8K Total
   3532     Debug Version:     185.2K Code, 77.2K Data, 262.4K Total
   3533 
   3534 
   3535 2) iASL Compiler/Disassembler and Tools:
   3536 
   3537 AcpiExec/Unix-OSL: Use <termios.h> instead of <termio.h>. This is the 
   3538 correct portable POSIX header for terminal control functions.
   3539 
   3540 Disassembler: Fixed control method invocation issues related to the use 
   3541 of the CondRefOf() operator. The problem is seen in the disassembly where 
   3542 control method invocations may not be disassembled properly if the 
   3543 control method name has been used previously as an argument to CondRefOf. 
   3544 The solution is to not attempt to emit an external declaration for the 
   3545 CondRefOf target (it is not necessary in the first place). This prevents 
   3546 disassembler object type confusion. ACPICA BZ 988.
   3547 
   3548 Unix Makefiles: Added an option to disable compiler optimizations and the 
   3549 _FORTIFY_SOURCE flag. Some older compilers have problems compiling ACPICA 
   3550 with optimizations (reportedly, gcc 4.4 for example). This change adds a 
   3551 command line option for make (NOOPT) that disables all compiler 
   3552 optimizations and the _FORTIFY_SOURCE compiler flag. The default 
   3553 optimization is -O2 with the _FORTIFY_SOURCE flag specified. ACPICA BZ 
   3554 1034. Lv Zheng, Bob Moore.
   3555 
   3556 Tests/ASLTS: Added options to specify individual test cases and modes. 
   3557 This allows testers running aslts.sh to optionally specify individual 
   3558 test modes and test cases. Also added an option to disable the forced 
   3559 generation of the ACPICA tools from source if desired. Lv Zheng.
   3560 
   3561 ----------------------------------------
   3562 27 September 2013. Summary of changes for version 20130927:
   3563 
   3564 This release is available at https://acpica.org/downloads
   3565 
   3566 
   3567 1) ACPICA kernel-resident subsystem:
   3568 
   3569 Fixed a problem with store operations to reference objects. This change 
   3570 fixes a problem where a Store operation to an ArgX object that contained 
   3571 a 
   3572 reference to a field object did not complete the automatic dereference 
   3573 and 
   3574 then write to the actual field object. Instead, the object type of the 
   3575 field object was inadvertently changed to match the type of the source 
   3576 operand. The new behavior will actually write to the field object (buffer 
   3577 field or field unit), thus matching the correct ACPI-defined behavior.
   3578 
   3579 Implemented support to allow the host to redefine individual OSL 
   3580 prototypes. This change enables the host to redefine OSL prototypes found 
   3581 in the acpiosxf.h file. This allows the host to implement OSL interfaces 
   3582 with a macro or inlined function. Further, it allows the host to add any 
   3583 additional required modifiers such as __iomem, __init, __exit, etc., as 
   3584 necessary on a per-interface basis. Enables maximum flexibility for the 
   3585 OSL interfaces. Lv Zheng.
   3586 
   3587 Hardcoded the access width for the FADT-defined reset register. The ACPI 
   3588 specification requires the reset register width to be 8 bits. ACPICA now 
   3589 hardcodes the width to 8 and ignores the FADT width value. This provides 
   3590 compatibility with other ACPI implementations that have allowed BIOS code 
   3591 with bad register width values to go unnoticed. Matthew Garett, Bob 
   3592 Moore, 
   3593 Lv Zheng.
   3594 
   3595 Changed the position/use of the ACPI_PRINTF_LIKE macro. This macro is 
   3596 used 
   3597 in the OSL header (acpiosxf). The change modifies the position of this 
   3598 macro in each instance where it is used (AcpiDebugPrint, etc.) to avoid 
   3599 build issues if the OSL defines the implementation of the interface to be 
   3600 an inline stub function. Lv Zheng.
   3601 
   3602 Deployed a new macro ACPI_EXPORT_SYMBOL_INIT for the main ACPICA 
   3603 initialization interfaces. This change adds a new macro for the main init 
   3604 and terminate external interfaces in order to support hosts that require 
   3605 additional or different processing for these functions. Changed from 
   3606 ACPI_EXPORT_SYMBOL to ACPI_EXPORT_SYMBOL_INIT for these functions. Lv 
   3607 Zheng, Bob Moore.
   3608 
   3609 Cleaned up the memory allocation macros for configurability. In the 
   3610 common 
   3611 case, the ACPI_ALLOCATE and related macros now resolve directly to their 
   3612 respective AcpiOs* OSL interfaces. Two options:
   3613 1) The ACPI_ALLOCATE_ZEROED macro uses a simple local implementation by 
   3614 default, unless overridden by the USE_NATIVE_ALLOCATE_ZEROED define.
   3615 2) For AcpiExec (and for debugging), the macros can optionally be 
   3616 resolved 
   3617 to the local ACPICA interfaces that track each allocation (local tracking 
   3618 is used to immediately detect memory leaks).
   3619 Lv Zheng.
   3620 
   3621 Simplified the configuration for ACPI_REDUCED_HARDWARE. Allows the kernel 
   3622 to predefine this macro to either TRUE or FALSE during the system build.
   3623 
   3624 Replaced __FUNCTION_ with __func__ in the gcc-specific header.
   3625 
   3626 Example Code and Data Size: These are the sizes for the OS-independent 
   3627 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   3628 debug version of the code includes the debug output trace mechanism and 
   3629 has a much larger code and data size.
   3630 
   3631   Current Release:
   3632     Non-Debug Version:  95.8K Code, 27.0K Data, 122.8K Total
   3633     Debug Version:     185.2K Code, 77.2K Data, 262.4K Total
   3634   Previous Release:
   3635     Non-Debug Version:  96.7K Code, 27.1K Data, 123.9K Total
   3636     Debug Version:     184.4K Code, 76.8K Data, 261.2K Total
   3637 
   3638 
   3639 2) iASL Compiler/Disassembler and Tools:
   3640 
   3641 iASL: Implemented wildcard support for the -e option. This simplifies use 
   3642 when there are many SSDTs that must be included to resolve external 
   3643 method 
   3644 declarations. ACPICA BZ 1041. Example:
   3645     iasl -e ssdt*.dat -d dsdt.dat
   3646 
   3647 AcpiExec: Add history/line-editing for Unix/Linux systems. This change 
   3648 adds a portable module that implements full history and limited line 
   3649 editing for Unix and Linux systems. It does not use readline() due to 
   3650 portability issues. Instead it uses the POSIX termio interface to put the 
   3651 terminal in raw input mode so that the various special keys can be 
   3652 trapped 
   3653 (such as up/down-arrow for history support and left/right-arrow for line 
   3654 editing). Uses the existing debugger history mechanism. ACPICA BZ 1036.
   3655 
   3656 AcpiXtract: Add support to handle (ignore) "empty" lines containing only 
   3657 one or more spaces. This provides compatible with early or different 
   3658 versions of the AcpiDump utility. ACPICA BZ 1044.
   3659 
   3660 AcpiDump: Do not ignore tables that contain only an ACPI table header. 
   3661 Apparently, some BIOSs create SSDTs that contain an ACPI table header but 
   3662 no other data. This change adds support to dump these tables. Any tables 
   3663 shorter than the length of an ACPI table header remain in error (an error 
   3664 message is emitted). Reported by Yi Li.
   3665 
   3666 Debugger: Echo actual command along with the "unknown command" message.
   3667 
   3668 ----------------------------------------
   3669 23 August 2013. Summary of changes for version 20130823:
   3670 
   3671 1) ACPICA kernel-resident subsystem:
   3672 
   3673 Implemented support for host-installed System Control Interrupt (SCI) 
   3674 handlers. Certain ACPI functionality requires the host to handle raw 
   3675 SCIs. For example, the "SCI Doorbell" that is defined for memory power 
   3676 state support requires the host device driver to handle SCIs to examine 
   3677 if the doorbell has been activated. Multiple SCI handlers can be 
   3678 installed to allow for future expansion. New external interfaces are 
   3679 AcpiInstallSciHandler, AcpiRemoveSciHandler; see the ACPICA reference for 
   3680 details. Lv Zheng, Bob Moore. ACPICA BZ 1032.
   3681 
   3682 Operation region support: Never locally free the handler "context" 
   3683 pointer. This change removes some dangerous code that attempts to free 
   3684 the handler context pointer in some (rare) circumstances. The owner of 
   3685 the handler owns this pointer and the ACPICA code should never touch it. 
   3686 Although not seen to be an issue in any kernel, it did show up as a 
   3687 problem (fault) under AcpiExec. Also, set the internal storage field for 
   3688 the context pointer to zero when the region is deactivated, simply for 
   3689 sanity. David Box. ACPICA BZ 1039.
   3690 
   3691 AcpiRead: On error, do not modify the return value target location. If an 
   3692 error happens in the middle of a split 32/32 64-bit I/O operation, do not 
   3693 modify the target of the return value pointer. Makes the code consistent 
   3694 with the rest of ACPICA. Bjorn Helgaas.
   3695 
   3696 Example Code and Data Size: These are the sizes for the OS-independent 
   3697 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   3698 debug version of the code includes the debug output trace mechanism and 
   3699 has a much larger code and data size.
   3700 
   3701   Current Release:
   3702     Non-Debug Version:  96.7K Code, 27.1K Data, 123.9K Total
   3703     Debug Version:     184.4K Code, 76.8K Data, 261.2K Total
   3704   Previous Release:
   3705     Non-Debug Version:  96.2K Code, 27.1K Data, 123.3K Total
   3706     Debug Version:     185.4K Code, 77.1K Data, 262.5K Total
   3707 
   3708 
   3709 2) iASL Compiler/Disassembler and Tools:
   3710 
   3711 AcpiDump: Implemented several new features and fixed some problems:
   3712 1) Added support to dump the RSDP, RSDT, and XSDT tables.
   3713 2) Added support for multiple table instances (SSDT, UEFI).
   3714 3) Added option to dump "customized" (overridden) tables (-c).
   3715 4) Fixed a problem where some table filenames were improperly 
   3716 constructed.
   3717 5) Improved some error messages, removed some unnecessary messages.
   3718 
   3719 iASL: Implemented additional support for disassembly of ACPI tables that 
   3720 contain invocations of external control methods. The -fe<file> option 
   3721 allows the import of a file that specifies the external methods along 
   3722 with the required number of arguments for each -- allowing for the 
   3723 correct disassembly of the table. This is a workaround for a limitation 
   3724 of AML code where the disassembler often cannot determine the number of 
   3725 arguments required for an external control method and generates incorrect 
   3726 ASL code. See the iASL reference for details. ACPICA BZ 1030.
   3727 
   3728 Debugger: Implemented a new command (paths) that displays the full 
   3729 pathnames (namepaths) and object types of all objects in the namespace. 
   3730 This is an alternative to the namespace command.
   3731 
   3732 Debugger: Implemented a new command (sci) that invokes the SCI dispatch 
   3733 mechanism and any installed handlers.
   3734 
   3735 iASL: Fixed a possible segfault for "too many parent prefixes" condition. 
   3736 This can occur if there are too many parent prefixes in a namepath (for 
   3737 example, ^^^^^^PCI0.ECRD). ACPICA BZ 1035.
   3738 
   3739 Application OSLs: Set the return value for the PCI read functions. These 
   3740 functions simply return AE_OK, but should set the return value to zero 
   3741 also. This change implements this. ACPICA BZ 1038.
   3742 
   3743 Debugger: Prevent possible command line buffer overflow. Increase the 
   3744 size of a couple of the debugger line buffers, and ensure that overflow 
   3745 cannot happen. ACPICA BZ 1037.
   3746 
   3747 iASL: Changed to abort immediately on serious errors during the parsing 
   3748 phase. Due to the nature of ASL, there is no point in attempting to 
   3749 compile these types of errors, and they typically end up causing a 
   3750 cascade of hundreds of errors which obscure the original problem.
   3751 
   3752 ----------------------------------------
   3753 25 July 2013. Summary of changes for version 20130725:
   3754 
   3755 1) ACPICA kernel-resident subsystem:
   3756 
   3757 Fixed a problem with the DerefOf operator where references to FieldUnits 
   3758 and BufferFields incorrectly returned the parent object, not the actual 
   3759 value of the object. After this change, a dereference of a FieldUnit 
   3760 reference results in a read operation on the field to get the value, and 
   3761 likewise, the appropriate BufferField value is extracted from the target 
   3762 buffer.
   3763 
   3764 Fixed a problem where the _WAK method could cause a fault under these 
   3765 circumstances: 1) Interpreter slack mode was not enabled, and 2) the _WAK 
   3766 method returned no value. The problem is rarely seen because most kernels 
   3767 run ACPICA in slack mode.
   3768 
   3769 For the DerefOf operator, a fatal error now results if an attempt is made 
   3770 to dereference a reference (created by the Index operator) to a NULL 
   3771 package element. Provides compatibility with other ACPI implementations, 
   3772 and this behavior will be added to a future version of the ACPI 
   3773 specification.
   3774 
   3775 The ACPI Power Management Timer (defined in the FADT) is now optional. 
   3776 This provides compatibility with other ACPI implementations and will 
   3777 appear in the next version of the ACPI specification. If there is no PM 
   3778 Timer on the platform, AcpiGetTimer returns AE_SUPPORT. An address of 
   3779 zero in the FADT indicates no PM timer.
   3780 
   3781 Implemented a new interface for _OSI support, AcpiUpdateInterfaces. This 
   3782 allows the host to globally enable/disable all vendor strings, all 
   3783 feature strings, or both. Intended to be primarily used for debugging 
   3784 purposes only. Lv Zheng.
   3785 
   3786 Expose the collected _OSI data to the host via a global variable. This 
   3787 data tracks the highest level vendor ID that has been invoked by the BIOS 
   3788 so that the host (and potentially ACPICA itself) can change behaviors 
   3789 based upon the age of the BIOS.
   3790 
   3791 Example Code and Data Size: These are the sizes for the OS-independent 
   3792 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   3793 debug version of the code includes the debug output trace mechanism and 
   3794 has a much larger code and data size.
   3795 
   3796   Current Release:
   3797     Non-Debug Version:  96.2K Code, 27.1K Data, 123.3K Total
   3798     Debug Version:     184.4K Code, 76.8K Data, 261.2K Total
   3799   Previous Release:
   3800     Non-Debug Version:  95.9K Code, 26.9K Data, 122.8K Total
   3801     Debug Version:     184.1K Code, 76.7K Data, 260.8K Total
   3802 
   3803 
   3804 2) iASL Compiler/Disassembler and Tools:
   3805 
   3806 iASL: Created the following enhancements for the -so option (create 
   3807 offset table):
   3808 1)Add offsets for the last nameseg in each namepath for every supported 
   3809 object type
   3810 2)Add support for Processor, Device, Thermal Zone, and Scope objects
   3811 3)Add the actual AML opcode for the parent object of every supported 
   3812 object type
   3813 4)Add support for the ZERO/ONE/ONES AML opcodes for integer objects
   3814 
   3815 Disassembler: Emit all unresolved external symbols in a single block. 
   3816 These are external references to control methods that could not be 
   3817 resolved, and thus, the disassembler had to make a guess at the number of 
   3818 arguments to parse.
   3819 
   3820 iASL: The argument to the -T option (create table template) is now 
   3821 optional. If not specified, the default table is a DSDT, typically the 
   3822 most common case.
   3823 
   3824 ----------------------------------------
   3825 26 June 2013. Summary of changes for version 20130626:
   3826 
   3827 1) ACPICA kernel-resident subsystem:
   3828 
   3829 Fixed an issue with runtime repair of the _CST object. Null or invalid 
   3830 elements were not always removed properly. Lv Zheng. 
   3831 
   3832 Removed an arbitrary restriction of 256 GPEs per GPE block (such as the 
   3833 FADT-defined GPE0 and GPE1). For GPE0, GPE1, and each GPE Block Device, 
   3834 the maximum number of GPEs is 1016. Use of multiple GPE block devices 
   3835 makes the system-wide number of GPEs essentially unlimited.
   3836 
   3837 Example Code and Data Size: These are the sizes for the OS-independent 
   3838 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   3839 debug version of the code includes the debug output trace mechanism and 
   3840 has a much larger code and data size.
   3841 
   3842   Current Release:
   3843     Non-Debug Version:  95.9K Code, 26.9K Data, 122.8K Total
   3844     Debug Version:     184.1K Code, 76.7K Data, 260.8K Total
   3845   Previous Release:
   3846     Non-Debug Version:  96.0K Code, 27.0K Data, 123.0K Total
   3847     Debug Version:     184.1K Code, 76.8K Data, 260.9K Total
   3848 
   3849 
   3850 2) iASL Compiler/Disassembler and Tools:
   3851 
   3852 Portable AcpiDump: Implemented full support for the Linux and FreeBSD 
   3853 hosts. Now supports Linux, FreeBSD, and Windows.
   3854 
   3855 Disassembler: Added some missing types for the HEST and EINJ tables: "Set 
   3856 Error Type With Address", "CMCI", "MCE", and "Flush Cacheline".
   3857 
   3858 iASL/Preprocessor: Implemented full support for nested 
   3859 #if/#else/#elif/#endif blocks. Allows arbitrary depth of nested blocks.
   3860 
   3861 Disassembler: Expanded maximum output string length to 64K. Was 256 bytes 
   3862 max. The original purpose of this constraint was to limit the amount of 
   3863 debug output. However, the string function in question (UtPrintString) is 
   3864 now used for the disassembler also, where 256 bytes is insufficient. 
   3865 Reported by RehabMan@GitHub.
   3866 
   3867 iASL/DataTables: Fixed some problems and issues with compilation of DMAR 
   3868 tables. ACPICA BZ 999. Lv Zheng.
   3869 
   3870 iASL: Fixed a couple of error exit issues that could result in a "Could 
   3871 not delete <file>" message during ASL compilation.
   3872 
   3873 AcpiDump: Allow "FADT" and "MADT" as valid table signatures, even though 
   3874 the actual signatures for these tables are "FACP" and "APIC", 
   3875 respectively.
   3876 
   3877 AcpiDump: Added support for multiple UEFI tables. Only SSDT and UEFI 
   3878 tables are allowed to have multiple instances.
   3879 
   3880 ----------------------------------------
   3881 17 May 2013. Summary of changes for version 20130517:
   3882 
   3883 1) ACPICA kernel-resident subsystem:
   3884 
   3885 Fixed a regression introduced in version 20130328 for _INI methods. This 
   3886 change fixes a problem introduced in 20130328 where _INI methods are no 
   3887 longer executed properly because of a memory block that was not 
   3888 initialized correctly. ACPICA BZ 1016. Tomasz Nowicki 
   3889 <tomasz.nowicki (a] linaro.org>.
   3890 
   3891 Fixed a possible problem with the new extended sleep registers in the 
   3892 ACPI 
   3893 5.0 FADT. Do not use these registers (even if populated) unless the HW-
   3894 reduced bit is set in the FADT (as per the ACPI specification). ACPICA BZ 
   3895 1020. Lv Zheng.
   3896 
   3897 Implemented return value repair code for _CST predefined objects: Sort 
   3898 the 
   3899 list and detect/remove invalid entries. ACPICA BZ 890. Lv Zheng.
   3900 
   3901 Implemented a debug-only option to disable loading of SSDTs from the 
   3902 RSDT/XSDT during ACPICA initialization. This can be useful for debugging 
   3903 ACPI problems on some machines. Set AcpiGbl_DisableSsdtTableLoad in 
   3904 acglobal.h - ACPICA BZ 1005. Lv Zheng.
   3905 
   3906 Fixed some issues in the ACPICA initialization and termination code: 
   3907 Tomasz Nowicki <tomasz.nowicki (a] linaro.org>
   3908 1) Clear events initialized flag upon event component termination. ACPICA 
   3909 BZ 1013.
   3910 2) Fixed a possible memory leak in GPE init error path. ACPICA BZ 1018. 
   3911 3) Delete global lock pending lock during termination. ACPICA BZ 1012.
   3912 4) Clear debug buffer global on termination to prevent possible multiple 
   3913 delete. ACPICA BZ 1010.
   3914 
   3915 Standardized all switch() blocks across the entire source base. After 
   3916 many 
   3917 years, different formatting for switch() had crept in. This change makes 
   3918 the formatting of every switch block identical. ACPICA BZ 997. Chao Guan.
   3919 
   3920 Split some files to enhance ACPICA modularity and configurability:
   3921 1) Split buffer dump routines into utilities/utbuffer.c
   3922 2) Split internal error message routines into utilities/uterror.c
   3923 3) Split table print utilities into tables/tbprint.c
   3924 4) Split iASL command-line option processing into asloptions.c
   3925 
   3926 Makefile enhancements:
   3927 1) Support for all new files above.
   3928 2) Abort make on errors from any subcomponent. Chao Guan.
   3929 3) Add build support for Apple Mac OS X. Liang Qi.
   3930 
   3931 Example Code and Data Size: These are the sizes for the OS-independent 
   3932 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   3933 debug version of the code includes the debug output trace mechanism and 
   3934 has a much larger code and data size.
   3935 
   3936   Current Release:
   3937     Non-Debug Version:  96.0K Code, 27.0K Data, 123.0K Total
   3938     Debug Version:     184.1K Code, 76.8K Data, 260.9K Total
   3939   Previous Release:
   3940     Non-Debug Version:  95.6K Code, 26.8K Data, 122.4K Total
   3941     Debug Version:     183.5K Code, 76.6K Data, 260.1K Total
   3942 
   3943 
   3944 2) iASL Compiler/Disassembler and Tools:
   3945 
   3946 New utility: Implemented an easily portable version of the acpidump 
   3947 utility to extract ACPI tables from the system (or a file) in an ASCII 
   3948 hex 
   3949 dump format. The top-level code implements the various command line 
   3950 options, file I/O, and table dump routines. To port to a new host, only 
   3951 three functions need to be implemented to get tables -- since this 
   3952 functionality is OS-dependent. See the tools/acpidump/apmain.c module and 
   3953 the ACPICA reference for porting instructions. ACPICA BZ 859. Notes:
   3954 1) The Windows version obtains the ACPI tables from the Registry.
   3955 2) The Linux version is under development.
   3956 3) Other hosts - If an OS-dependent module is submitted, it will be 
   3957 distributed with ACPICA.
   3958 
   3959 iASL: Fixed a regression for -D preprocessor option (define symbol). A 
   3960 restructuring/change to the initialization sequence caused this option to 
   3961 no longer work properly.
   3962 
   3963 iASL: Implemented a mechanism to disable specific warnings and remarks. 
   3964 Adds a new command line option, "-vw <messageid> as well as "#pragma 
   3965 disable <messageid>". ACPICA BZ 989. Chao Guan, Bob Moore.
   3966 
   3967 iASL: Fix for too-strict package object validation. The package object 
   3968 validation for return values from the predefined names is a bit too 
   3969 strict, it does not allow names references within the package (which will 
   3970 be resolved at runtime.) These types of references cannot be validated at 
   3971 compile time. This change ignores named references within package objects 
   3972 for names that return or define static packages.
   3973 
   3974 Debugger: Fixed the 80-character command line limitation for the History 
   3975 command. Now allows lines of arbitrary length. ACPICA BZ 1000. Chao Guan.
   3976 
   3977 iASL: Added control method and package support for the -so option 
   3978 (generates AML offset table for BIOS support.)
   3979 
   3980 iASL: issue a remark if a non-serialized method creates named objects. If 
   3981 a thread blocks within the method for any reason, and another thread 
   3982 enters the method, the method will fail because an attempt will be made 
   3983 to 
   3984 create the same (named) object twice. In this case, issue a remark that 
   3985 the method should be marked serialized. NOTE: may become a warning later. 
   3986 ACPICA BZ 909.
   3987 
   3988 ----------------------------------------
   3989 18 April 2013. Summary of changes for version 20130418:
   3990 
   3991 1) ACPICA kernel-resident subsystem:
   3992 
   3993 Fixed a possible buffer overrun during some rare but specific field unit 
   3994 read operations. This overrun can only happen if the DSDT version is 1 -- 
   3995 meaning that all AML integers are 32 bits -- and the field length is 
   3996 between 33 and 55 bits long. During the read, an internal buffer object 
   3997 is 
   3998 created for the field unit because the field is larger than an integer 
   3999 (32 
   4000 bits). However, in this case, the buffer will be incorrectly written 
   4001 beyond the end because the buffer length is less than the internal 
   4002 minimum 
   4003 of 64 bits (8 bytes) long. The buffer will be either 5, 6, or 7 bytes 
   4004 long, but a full 8 bytes will be written.
   4005 
   4006 Updated the Embedded Controller "orphan" _REG method support. This refers 
   4007 to _REG methods under the EC device that have no corresponding operation 
   4008 region. This is allowed by the ACPI specification. This update removes a 
   4009 dependency on the existence an ECDT table. It will execute an orphan _REG 
   4010 method as long as the operation region handler for the EC is installed at 
   4011 the EC device node and not the namespace root. Rui Zhang (original 
   4012 update), Bob Moore (update/integrate).
   4013 
   4014 Implemented run-time argument typechecking for all predefined ACPI names 
   4015 (_STA, _BIF, etc.) This change performs object typechecking on all 
   4016 incoming arguments for all predefined names executed via 
   4017 AcpiEvaluateObject. This ensures that ACPI-related device drivers are 
   4018 passing correct object types as well as the correct number of arguments 
   4019 (therefore identifying any issues immediately). Also, the ASL/namespace 
   4020 definition of the predefined name is checked against the ACPI 
   4021 specification for the proper argument count. Adds one new file, 
   4022 nsarguments.c
   4023 
   4024 Changed an exception code for the ASL UnLoad() operator. Changed the 
   4025 exception code for the case where the input DdbHandle is invalid, from 
   4026 AE_BAD_PARAMETER to the more appropriate AE_AML_OPERAND_TYPE.
   4027 
   4028 Unix/Linux makefiles: Removed the use of the -O2 optimization flag in the 
   4029 global makefile. The use of this flag causes compiler errors on earlier 
   4030 versions of GCC, so it has been removed for compatibility.
   4031 
   4032 Miscellaneous cleanup:
   4033 1) Removed some unused/obsolete macros
   4034 2) Fixed a possible memory leak in the _OSI support
   4035 3) Removed an unused variable in the predefined name support
   4036 4) Windows OSL: remove obsolete reference to a memory list field
   4037 
   4038 Example Code and Data Size: These are the sizes for the OS-independent 
   4039 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   4040 debug version of the code includes the debug output trace mechanism and 
   4041 has a much larger code and data size.
   4042 
   4043   Current Release:
   4044     Non-Debug Version:  95.2K Code, 26.4K Data, 121.6K Total
   4045     Debug Version:     183.0K Code, 76.0K Data, 259.0K Total
   4046   Previous Release:
   4047     Non-Debug Version:  95.6K Code, 26.8K Data, 122.4K Total
   4048     Debug Version:     183.5K Code, 76.6K Data, 260.1K Total
   4049 
   4050 
   4051 2) iASL Compiler/Disassembler and Tools:
   4052 
   4053 AcpiExec: Added installation of a handler for the SystemCMOS address 
   4054 space. This prevents control method abort if a method accesses this 
   4055 space.
   4056 
   4057 AcpiExec: Added support for multiple EC devices, and now install EC 
   4058 operation region handler(s) at the actual EC device instead of the 
   4059 namespace root. This reflects the typical behavior of host operating 
   4060 systems.
   4061 
   4062 AcpiExec: Updated to ensure that all operation region handlers are 
   4063 installed before the _REG methods are executed. This prevents a _REG 
   4064 method from aborting if it accesses an address space has no handler. 
   4065 AcpiExec installs a handler for every possible address space.
   4066 
   4067 Debugger: Enhanced the "handlers" command to display non-root handlers. 
   4068 This change enhances the handlers command to display handlers associated 
   4069 with individual devices throughout the namespace, in addition to the 
   4070 currently supported display of handlers associated with the root 
   4071 namespace 
   4072 node.
   4073 
   4074 ASL Test Suite: Several test suite errors have been identified and 
   4075 resolved, reducing the total error count during execution. Chao Guan.
   4076 
   4077 ----------------------------------------
   4078 28 March 2013. Summary of changes for version 20130328:
   4079 
   4080 1) ACPICA kernel-resident subsystem:
   4081 
   4082 Fixed several possible race conditions with the internal object reference 
   4083 counting mechanism. Some of the external ACPICA interfaces update object 
   4084 reference counts without holding the interpreter or namespace lock. This 
   4085 change adds a spinlock to protect reference count updates on the internal 
   4086 ACPICA objects. Reported by and with assistance from Andriy Gapon 
   4087 (avg (a] FreeBSD.org).
   4088 
   4089 FADT support: Removed an extraneous warning for very large GPE register 
   4090 sets. This change removes a size mismatch warning if the legacy length 
   4091 field for a GPE register set is larger than the 64-bit GAS structure can 
   4092 accommodate. GPE register sets can be larger than the 255-bit width 
   4093 limitation of the GAS structure. Linn Crosetto (linn (a] hp.com).
   4094 
   4095 _OSI Support: handle any errors from AcpiOsAcquireMutex. Check for error 
   4096 return from this interface. Handles a possible timeout case if 
   4097 ACPI_WAIT_FOREVER is modified by the host to be a value less than 
   4098 "forever". Jung-uk Kim.
   4099 
   4100 Predefined name support: Add allowed/required argument type information 
   4101 to 
   4102 the master predefined info table. This change adds the infrastructure to 
   4103 enable typechecking on incoming arguments for all predefined 
   4104 methods/objects. It does not actually contain the code that will fully 
   4105 utilize this information, this is still under development. Also condenses 
   4106 some duplicate code for the predefined names into a new module, 
   4107 utilities/utpredef.c
   4108 
   4109 Example Code and Data Size: These are the sizes for the OS-independent 
   4110 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   4111 debug version of the code includes the debug output trace mechanism and 
   4112 has a much larger code and data size.
   4113 
   4114   Previous Release:
   4115     Non-Debug Version:  95.0K Code, 25.9K Data, 120.9K Total
   4116     Debug Version:     182.9K Code, 75.6K Data, 258.5K Total
   4117   Current Release:
   4118     Non-Debug Version:  95.2K Code, 26.4K Data, 121.6K Total
   4119     Debug Version:     183.0K Code, 76.0K Data, 259.0K Total
   4120 
   4121 
   4122 2) iASL Compiler/Disassembler and Tools:
   4123 
   4124 iASL: Implemented a new option to simplify the development of ACPI-
   4125 related 
   4126 BIOS code. Adds support for a new "offset table" output file. The -so 
   4127 option will create a C table containing the AML table offsets of various 
   4128 named objects in the namespace so that BIOS code can modify them easily 
   4129 at 
   4130 boot time. This can simplify BIOS runtime code by eliminating expensive 
   4131 searches for "magic values", enhancing boot times and adding greater 
   4132 reliability. With assistance from Lee Hamel.
   4133 
   4134 iASL: Allow additional predefined names to return zero-length packages. 
   4135 Now, all predefined names that are defined by the ACPI specification to 
   4136 return a "variable-length package of packages" are allowed to return a 
   4137 zero length top-level package. This allows the BIOS to tell the host that 
   4138 the requested feature is not supported, and supports existing BIOS/ASL 
   4139 code and practices.
   4140 
   4141 iASL: Changed the "result not used" warning to an error. This is the case 
   4142 where an ASL operator is effectively a NOOP because the result of the 
   4143 operation is not stored anywhere. For example:
   4144     Add (4, Local0)
   4145 There is no target (missing 3rd argument), nor is the function return 
   4146 value used. This is potentially a very serious problem -- since the code 
   4147 was probably intended to do something, but for whatever reason, the value 
   4148 was not stored. Therefore, this issue has been upgraded from a warning to 
   4149 an error.
   4150 
   4151 AcpiHelp: Added allowable/required argument types to the predefined names 
   4152 info display. This feature utilizes the recent update to the predefined 
   4153 names table (above).
   4154 
   4155 ----------------------------------------
   4156 14 February 2013. Summary of changes for version 20130214:
   4157 
   4158 1) ACPICA Kernel-resident Subsystem:
   4159 
   4160 Fixed a possible regression on some hosts: Reinstated the safe return 
   4161 macros (return_ACPI_STATUS, etc.) that ensure that the argument is 
   4162 evaluated only once. Although these macros are not needed for the ACPICA 
   4163 code itself, they are often used by ACPI-related host device drivers 
   4164 where 
   4165 the safe feature may be necessary.
   4166 
   4167 Fixed several issues related to the ACPI 5.0 reduced hardware support 
   4168 (SOC): Now ensure that if the platform declares itself as hardware-
   4169 reduced 
   4170 via the FADT, the following functions become NOOPs (and always return 
   4171 AE_OK) because ACPI is always enabled by definition on these machines:
   4172   AcpiEnable
   4173   AcpiDisable
   4174   AcpiHwGetMode
   4175   AcpiHwSetMode
   4176 
   4177 Dynamic Object Repair: Implemented additional runtime repairs for 
   4178 predefined name return values. Both of these repairs can simplify code in 
   4179 the related device drivers that invoke these methods:
   4180 1) For the _STR and _MLS names, automatically repair/convert an ASCII 
   4181 string to a Unicode buffer. 
   4182 2) For the _CRS, _PRS, and _DMA names, return a resource descriptor with 
   4183 a 
   4184 lone end tag descriptor in the following cases: A Return(0) was executed, 
   4185 a null buffer was returned, or no object at all was returned (non-slack 
   4186 mode only). Adds a new file, nsconvert.c
   4187 ACPICA BZ 998. Bob Moore, Lv Zheng.
   4188 
   4189 Resource Manager: Added additional code to prevent possible infinite 
   4190 loops 
   4191 while traversing corrupted or ill-formed resource template buffers. Check 
   4192 for zero-length resource descriptors in all code that loops through 
   4193 resource templates (the length field is used to index through the 
   4194 template). This change also hardens the external AcpiWalkResources and 
   4195 AcpiWalkResourceBuffer interfaces.
   4196 
   4197 Local Cache Manager: Enhanced the main data structure to eliminate an 
   4198 unnecessary mechanism to access the next object in the list. Actually 
   4199 provides a small performance enhancement for hosts that use the local 
   4200 ACPICA cache manager. Jung-uk Kim.
   4201 
   4202 Example Code and Data Size: These are the sizes for the OS-independent 
   4203 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   4204 debug version of the code includes the debug output trace mechanism and 
   4205 has a much larger code and data size.
   4206 
   4207   Previous Release:
   4208     Non-Debug Version:  94.5K Code, 25.4K Data, 119.9K Total
   4209     Debug Version:     182.3K Code, 75.0K Data, 257.3K Total
   4210   Current Release:
   4211     Non-Debug Version:  95.0K Code, 25.9K Data, 120.9K Total
   4212     Debug Version:     182.9K Code, 75.6K Data, 258.5K Total
   4213 
   4214 
   4215 2) iASL Compiler/Disassembler and Tools:
   4216 
   4217 iASL/Disassembler: Fixed several issues with the definition of the ACPI 
   4218 5.0 RASF table (RAS Feature Table). This change incorporates late changes 
   4219 that were made to the ACPI 5.0 specification.
   4220 
   4221 iASL/Disassembler: Added full support for the following new ACPI tables:
   4222   1) The MTMR table (MID Timer Table)
   4223   2) The VRTC table (Virtual Real Time Clock Table).
   4224 Includes header file, disassembler, table compiler, and template support 
   4225 for both tables.
   4226 
   4227 iASL: Implemented compile-time validation of package objects returned by 
   4228 predefined names. This new feature validates static package objects 
   4229 returned by the various predefined names defined to return packages. Both 
   4230 object types and package lengths are validated, for both parent packages 
   4231 and sub-packages, if any. The code is similar in structure and behavior 
   4232 to 
   4233 the runtime repair mechanism within the AML interpreter and uses the 
   4234 existing predefined name information table. Adds a new file, aslprepkg.c. 
   4235 ACPICA BZ 938.
   4236 
   4237 iASL: Implemented auto-detection of binary ACPI tables for disassembly. 
   4238 This feature detects a binary file with a valid ACPI table header and 
   4239 invokes the disassembler automatically. Eliminates the need to 
   4240 specifically invoke the disassembler with the -d option. ACPICA BZ 862.
   4241 
   4242 iASL/Disassembler: Added several warnings for the case where there are 
   4243 unresolved control methods during the disassembly. This can potentially 
   4244 cause errors when the output file is compiled, because the disassembler 
   4245 assumes zero method arguments in these cases (it cannot determine the 
   4246 actual number of arguments without resolution/definition of the method).
   4247 
   4248 Debugger: Added support to display all resources with a single command. 
   4249 Invocation of the resources command with no arguments will now display 
   4250 all 
   4251 resources within the current namespace.
   4252 
   4253 AcpiHelp: Added descriptive text for each ACPICA exception code displayed 
   4254 via the -e option.
   4255 
   4256 ----------------------------------------
   4257 17 January 2013. Summary of changes for version 20130117:
   4258 
   4259 1) ACPICA Kernel-resident Subsystem:
   4260 
   4261 Updated the AcpiGetSleepTypeData interface: Allow the \_Sx methods to 
   4262 return either 1 or 2 integers. Although the ACPI spec defines the \_Sx 
   4263 objects to return a package containing one integer, most BIOS code 
   4264 returns 
   4265 two integers and the previous code reflects that. However, we also need 
   4266 to 
   4267 support BIOS code that actually implements to the ACPI spec, and this 
   4268 change reflects this.
   4269 
   4270 Fixed two issues with the ACPI_DEBUG_PRINT macros:
   4271 1) Added the ACPI_DO_WHILE macro to the main DEBUG_PRINT helper macro for 
   4272 C compilers that require this support.
   4273 2) Renamed the internal ACPI_DEBUG macro to ACPI_DO_DEBUG_PRINT since 
   4274 ACPI_DEBUG is already used by many of the various hosts.
   4275 
   4276 Updated all ACPICA copyrights and signons to 2013. Added the 2013 
   4277 copyright to all module headers and signons, including the standard Linux 
   4278 header. This affects virtually every file in the ACPICA core subsystem, 
   4279 iASL compiler, all ACPICA utilities, and the test suites.
   4280 
   4281 Example Code and Data Size: These are the sizes for the OS-independent 
   4282 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   4283 debug version of the code includes the debug output trace mechanism and 
   4284 has a much larger code and data size.
   4285 
   4286   Previous Release:
   4287     Non-Debug Version:  94.5K Code, 25.5K Data, 120.0K Total
   4288     Debug Version:     182.2K Code, 74.9K Data, 257.1K Total
   4289   Current Release:
   4290     Non-Debug Version:  94.5K Code, 25.4K Data, 119.9K Total
   4291     Debug Version:     182.3K Code, 75.0K Data, 257.3K Total
   4292 
   4293 
   4294 2) iASL Compiler/Disassembler and Tools:
   4295 
   4296 Generic Unix OSL: Use a buffer to eliminate multiple vfprintf()s and 
   4297 prevent a possible fault on some hosts. Some C libraries modify the arg 
   4298 pointer parameter to vfprintf making it difficult to call it twice in the 
   4299 AcpiOsVprintf function. Use a local buffer to workaround this issue. This 
   4300 does not affect the Windows OSL since the Win C library does not modify 
   4301 the arg pointer. Chao Guan, Bob Moore.
   4302 
   4303 iASL: Fixed a possible infinite loop when the maximum error count is 
   4304 reached. If an output file other than the .AML file is specified (such as 
   4305 a listing file), and the maximum number of errors is reached, do not 
   4306 attempt to flush data to the output file(s) as the compiler is aborting. 
   4307 This can cause an infinite loop as the max error count code essentially 
   4308 keeps calling itself.
   4309 
   4310 iASL/Disassembler: Added an option (-in) to ignore NOOP 
   4311 opcodes/operators. 
   4312 Implemented for both the compiler and the disassembler. Often, the NOOP 
   4313 opcode is used as padding for packages that are changed dynamically by 
   4314 the 
   4315 BIOS. When disassembled and recompiled, these NOOPs will cause syntax 
   4316 errors. This option causes the disassembler to ignore all NOOP opcodes 
   4317 (0xA3), and it also causes the compiler to ignore all ASL source code 
   4318 NOOP 
   4319 statements as well.
   4320 
   4321 Debugger: Enhanced the Sleep command to execute all sleep states. This 
   4322 change allows Sleep to be invoked with no arguments and causes the 
   4323 debugger to execute all of the sleep states, 0-5, automatically.
   4324 
   4325 ----------------------------------------
   4326 20 December 2012. Summary of changes for version 20121220:
   4327 
   4328 1) ACPICA Kernel-resident Subsystem:
   4329 
   4330 Implemented a new interface, AcpiWalkResourceBuffer. This interface is an 
   4331 alternate entry point for AcpiWalkResources and improves the usability of 
   4332 the resource manager by accepting as input a buffer containing the output 
   4333 of either a _CRS, _PRS, or _AEI method. The key functionality is that the 
   4334 input buffer is not deleted by this interface so that it can be used by 
   4335 the host later. See the ACPICA reference for details.
   4336 
   4337 Interpreter: Add a warning if a 64-bit constant appears in a 32-bit table 
   4338 (DSDT version < 2). The constant will be truncated and this warning 
   4339 reflects that behavior.
   4340 
   4341 Resource Manager: Add support for the new ACPI 5.0 wake bit in the IRQ, 
   4342 ExtendedInterrupt, and GpioInt descriptors. This change adds support to 
   4343 both get and set the new wake bit in these descriptors, separately from 
   4344 the existing share bit. Reported by Aaron Lu.
   4345 
   4346 Interpreter: Fix Store() when an implicit conversion is not possible. For 
   4347 example, in the cases such as a store of a string to an existing package 
   4348 object, implement the store as a CopyObject(). This is a small departure 
   4349 from the ACPI specification which states that the control method should 
   4350 be 
   4351 aborted in this case. However, the ASLTS suite depends on this behavior.
   4352 
   4353 Performance improvement for the various FUNCTION_TRACE and DEBUG_PRINT 
   4354 macros: check if debug output is currently enabled as soon as possible to 
   4355 minimize performance impact if debug is in fact not enabled.
   4356 
   4357 Source code restructuring: Cleanup to improve modularity. The following 
   4358 new files have been added: dbconvert.c, evhandler.c, nsprepkg.c, 
   4359 psopinfo.c, psobject.c, rsdumpinfo.c, utstring.c, and utownerid.c. 
   4360 Associated makefiles and project files have been updated.
   4361 
   4362 Changed an exception code for LoadTable operator. For the case where one 
   4363 of the input strings is too long, change the returned exception code from 
   4364 AE_BAD_PARAMETER to AE_AML_STRING_LIMIT.
   4365 
   4366 Fixed a possible memory leak in dispatcher error path. On error, delete 
   4367 the mutex object created during method mutex creation. Reported by 
   4368 tim.gardner (a] canonical.com.
   4369 
   4370 Example Code and Data Size: These are the sizes for the OS-independent 
   4371 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   4372 debug version of the code includes the debug output trace mechanism and 
   4373 has a much larger code and data size.
   4374 
   4375   Previous Release:
   4376     Non-Debug Version:  94.3K Code, 25.3K Data, 119.6K Total
   4377     Debug Version:     175.5K Code, 74.5K Data, 250.0K Total
   4378   Current Release:
   4379     Non-Debug Version:  94.5K Code, 25.5K Data, 120.0K Total
   4380     Debug Version:     182.2K Code, 74.9K Data, 257.1K Total
   4381 
   4382 
   4383 2) iASL Compiler/Disassembler and Tools:
   4384 
   4385 iASL: Disallow a method call as argument to the ObjectType ASL operator. 
   4386 This change tracks an errata to the ACPI 5.0 document. The AML grammar 
   4387 will not allow the interpreter to differentiate between a method and a 
   4388 method invocation when these are used as an argument to the ObjectType 
   4389 operator. The ACPI specification change is to disallow a method 
   4390 invocation 
   4391 (UserTerm) for the ObjectType operator.
   4392 
   4393 Finish support for the TPM2 and CSRT tables in the headers, table 
   4394 compiler, and disassembler.
   4395 
   4396 Unix user-space OSL: Fix a problem with WaitSemaphore where the timeout 
   4397 always expires immediately if the semaphore is not available. The 
   4398 original 
   4399 code was using a relative-time timeout, but sem_timedwait requires the 
   4400 use 
   4401 of an absolute time.
   4402 
   4403 iASL: Added a remark if the Timer() operator is used within a 32-bit 
   4404 table. This operator returns a 64-bit time value that will be truncated 
   4405 within a 32-bit table.
   4406 
   4407 iASL Source code restructuring: Cleanup to improve modularity. The 
   4408 following new files have been added: aslhex.c, aslxref.c, aslnamesp.c, 
   4409 aslmethod.c, and aslfileio.c. Associated makefiles and project files have 
   4410 been updated.
   4411 
   4412 
   4413 ----------------------------------------
   4414 14 November 2012. Summary of changes for version 20121114:
   4415 
   4416 1) ACPICA Kernel-resident Subsystem:
   4417 
   4418 Implemented a performance enhancement for ACPI/AML Package objects. This 
   4419 change greatly increases the performance of Package objects within the 
   4420 interpreter. It changes the processing of reference counts for packages 
   4421 by 
   4422 optimizing for the most common case where the package sub-objects are 
   4423 either Integers, Strings, or Buffers. Increases the overall performance 
   4424 of 
   4425 the ASLTS test suite by 1.5X (Increases the Slack Mode performance by 
   4426 2X.) 
   4427 Chao Guan. ACPICA BZ 943.
   4428 
   4429 Implemented and deployed common macros to extract flag bits from resource 
   4430 descriptors. Improves readability and maintainability of the code. Fixes 
   4431 a 
   4432 problem with the UART serial bus descriptor for the number of data bits 
   4433 flags (was incorrectly 2 bits, should be 3).
   4434 
   4435 Enhanced the ACPI_GETx and ACPI_SETx macros. Improved the implementation 
   4436 of the macros and changed the SETx macros to the style of (destination, 
   4437 source). Also added ACPI_CASTx companion macros. Lv Zheng.
   4438 
   4439 Example Code and Data Size: These are the sizes for the OS-independent 
   4440 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   4441 debug version of the code includes the debug output trace mechanism and 
   4442 has a much larger code and data size.
   4443 
   4444   Previous Release:
   4445     Non-Debug Version:  93.9K Code, 25.2K Data, 119.1K Total
   4446     Debug Version:     175.5K Code, 74.5K Data, 250.0K Total
   4447   Current Release:
   4448     Non-Debug Version:  94.3K Code, 25.3K Data, 119.6K Total
   4449     Debug Version:     175.5K Code, 74.5K Data, 250.0K Total
   4450 
   4451 
   4452 2) iASL Compiler/Disassembler and Tools:
   4453 
   4454 Disassembler: Added the new ACPI 5.0 interrupt sharing flags. This change 
   4455 adds the ShareAndWake and ExclusiveAndWake flags which were added to the 
   4456 Irq, Interrupt, and Gpio resource descriptors in ACPI 5.0. ACPICA BZ 986.
   4457 
   4458 Disassembler: Fixed a problem with external declaration generation. Fixes 
   4459 a problem where an incorrect pathname could be generated for an external 
   4460 declaration if the original reference to the object includes leading 
   4461 carats (^). ACPICA BZ 984.
   4462 
   4463 Debugger: Completed a major update for the Disassemble<method> command. 
   4464 This command was out-of-date and did not properly disassemble control 
   4465 methods that had any reasonable complexity. This fix brings the command 
   4466 up 
   4467 to the same level as the rest of the disassembler. Adds one new file, 
   4468 dmdeferred.c, which is existing code that is now common with the main 
   4469 disassembler and the debugger disassemble command. ACPICA MZ 978.
   4470 
   4471 iASL: Moved the parser entry prototype to avoid a duplicate declaration. 
   4472 Newer versions of Bison emit this prototype, so moved the prototype out 
   4473 of 
   4474 the iASL header to where it is actually used in order to avoid a 
   4475 duplicate 
   4476 declaration.
   4477 
   4478 iASL/Tools: Standardized use of the stream I/O functions:
   4479   1) Ensure check for I/O error after every fopen/fread/fwrite
   4480   2) Ensure proper order of size/count arguments for fread/fwrite
   4481   3) Use test of (Actual != Requested) after all fwrite, and most fread
   4482   4) Standardize I/O error messages
   4483 Improves reliability and maintainability of the code. Bob Moore, Lv 
   4484 Zheng. 
   4485 ACPICA BZ 981.
   4486 
   4487 Disassembler: Prevent duplicate External() statements. During generation 
   4488 of external statements, detect similar pathnames that are actually 
   4489 duplicates such as these:
   4490   External (\ABCD)
   4491   External (ABCD)
   4492 Remove all leading '\' characters from pathnames during the external 
   4493 statement generation so that duplicates will be detected and tossed. 
   4494 ACPICA BZ 985.
   4495 
   4496 Tools: Replace low-level I/O with stream I/O functions. Replace 
   4497 open/read/write/close with the stream I/O equivalents 
   4498 fopen/fread/fwrite/fclose for portability and performance. Lv Zheng, Bob 
   4499 Moore.
   4500 
   4501 AcpiBin: Fix for the dump-to-hex function. Now correctly output the table 
   4502 name header so that AcpiXtract recognizes the output file/table.
   4503 
   4504 iASL: Remove obsolete -2 option flag. Originally intended to force the 
   4505 compiler/disassembler into an ACPI 2.0 mode, this was never implemented 
   4506 and the entire concept is now obsolete.
   4507 
   4508 ----------------------------------------
   4509 18 October 2012. Summary of changes for version 20121018:
   4510 
   4511 
   4512 1) ACPICA Kernel-resident Subsystem:
   4513 
   4514 Updated support for the ACPI 5.0 MPST table. Fixes some problems 
   4515 introduced by late changes to the table as it was added to the ACPI 5.0 
   4516 specification. Includes header, disassembler, and data table compiler 
   4517 support as well as a new version of the MPST template.
   4518 
   4519 AcpiGetObjectInfo: Enhanced the device object support to include the ACPI 
   4520 5.0 _SUB method. Now calls _SUB in addition to the other PNP-related ID 
   4521 methods: _HID, _CID, and _UID.
   4522 
   4523 Changed ACPI_DEVICE_ID to ACPI_PNP_DEVICE_ID. Also changed 
   4524 ACPI_DEVICE_ID_LIST to ACPI_PNP_DEVICE_ID_LIST. These changes prevent 
   4525 name collisions on hosts that reserve the *_DEVICE_ID (or *DeviceId) 
   4526 names for their various drivers. Affects the AcpiGetObjectInfo external 
   4527 interface, and other internal interfaces as well.
   4528 
   4529 Added and deployed a new macro for ACPI_NAME management: ACPI_MOVE_NAME. 
   4530 This macro resolves to a simple 32-bit move of the 4-character ACPI_NAME 
   4531 on machines that support non-aligned transfers. Optimizes for this case 
   4532 rather than using a strncpy. With assistance from Zheng Lv.
   4533 
   4534 Resource Manager: Small fix for buffer size calculation. Fixed a one byte 
   4535 error in the output buffer calculation. Feng Tang. ACPICA BZ 849.
   4536 
   4537 Added a new debug print message for AML mutex objects that are force-
   4538 released. At control method termination, any currently acquired mutex 
   4539 objects are force-released. Adds a new debug-only message for each one 
   4540 that is released.
   4541 
   4542 Audited/updated all ACPICA return macros and the function debug depth 
   4543 counter: 1) Ensure that all functions that use the various TRACE macros 
   4544 also use the appropriate ACPICA return macros. 2) Ensure that all normal 
   4545 return statements surround the return expression (value) with parens to 
   4546 ensure consistency across the ACPICA code base. Guan Chao, Tang Feng, 
   4547 Zheng Lv, Bob Moore. ACPICA Bugzilla 972.
   4548 
   4549 Global source code changes/maintenance: All extra lines at the start and 
   4550 end of each source file have been removed for consistency. Also, within 
   4551 comments, all new sentences start with a single space instead of a double 
   4552 space, again for consistency across the code base.
   4553 
   4554 Example Code and Data Size: These are the sizes for the OS-independent 
   4555 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   4556 debug version of the code includes the debug output trace mechanism and 
   4557 has a much larger code and data size.
   4558 
   4559   Previous Release:
   4560     Non-Debug Version:  93.7K Code, 25.3K Data, 119.0K Total
   4561     Debug Version:     175.0K Code, 74.4K Data, 249.4K Total
   4562   Current Release:
   4563     Non-Debug Version:  93.9K Code, 25.2K Data, 119.1K Total
   4564     Debug Version:     175.5K Code, 74.5K Data, 250.0K Total
   4565 
   4566 
   4567 2) iASL Compiler/Disassembler and Tools:
   4568 
   4569 AcpiExec: Improved the algorithm used for memory leak/corruption 
   4570 detection. Added some intelligence to the code that maintains the global 
   4571 list of allocated memory. The list is now ordered by allocated memory 
   4572 address, significantly improving performance. When running AcpiExec on 
   4573 the ASLTS test suite, speed improvements of 3X to 5X are seen, depending 
   4574 on the platform and/or the environment. Note, this performance 
   4575 enhancement affects the AcpiExec utility only, not the kernel-resident 
   4576 ACPICA code.
   4577 
   4578 Enhanced error reporting for invalid AML opcodes and bad ACPI_NAMEs. For 
   4579 the disassembler, dump the 48 bytes surrounding the invalid opcode. Fix 
   4580 incorrect table offset reported for invalid opcodes. Report the original 
   4581 32-bit value for bad ACPI_NAMEs (as well as the repaired name.)
   4582 
   4583 Disassembler: Enhanced the -vt option to emit the binary table data in 
   4584 hex format to assist with debugging.
   4585 
   4586 Fixed a potential filename buffer overflow in osunixdir.c. Increased the 
   4587 size of file structure. Colin Ian King.
   4588 
   4589 ----------------------------------------
   4590 13 September 2012. Summary of changes for version 20120913:
   4591 
   4592 
   4593 1) ACPICA Kernel-resident Subsystem:
   4594 
   4595 ACPI 5.0: Added two new notify types for the Hardware Error Notification 
   4596 Structure within the Hardware Error Source Table (HEST) table -- CMCI(5) 
   4597 and 
   4598 MCE(6).
   4599  
   4600 Table Manager: Merged/removed duplicate code in the root table resize 
   4601 functions. One function is external, the other is internal. Lv Zheng, 
   4602 ACPICA 
   4603 BZ 846.
   4604 
   4605 Makefiles: Completely removed the obsolete "Linux" makefiles under 
   4606 acpica/generate/linux. These makefiles are obsolete and have been 
   4607 replaced 
   4608 by 
   4609 the generic unix makefiles under acpica/generate/unix.
   4610 
   4611 Makefiles: Ensure that binary files always copied properly. Minor rule 
   4612 change 
   4613 to ensure that the final binary output files are always copied up to the 
   4614 appropriate binary directory (bin32 or bin64.)
   4615 
   4616 Example Code and Data Size: These are the sizes for the OS-independent 
   4617 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   4618 debug 
   4619 version of the code includes the debug output trace mechanism and has a 
   4620 much 
   4621 larger code and data size.
   4622 
   4623   Previous Release:
   4624     Non-Debug Version:  93.8K Code, 25.3K Data, 119.1K Total
   4625     Debug Version:     175.7K Code, 74.8K Data, 250.5K Total
   4626   Current Release:
   4627     Non-Debug Version:  93.7K Code, 25.3K Data, 119.0K Total
   4628     Debug Version:     175.0K Code, 74.4K Data, 249.4K Total
   4629 
   4630 
   4631 2) iASL Compiler/Disassembler and Tools:
   4632 
   4633 Disassembler: Fixed a possible fault during the disassembly of resource 
   4634 descriptors when a second parse is required because of the invocation of 
   4635 external control methods within the table. With assistance from 
   4636 adq (a] lidskialf.net. ACPICA BZ 976.
   4637 
   4638 iASL: Fixed a namepath optimization problem. An error can occur if the 
   4639 parse 
   4640 node that contains the namepath to be optimized does not have a parent 
   4641 node 
   4642 that is a named object. This change fixes the problem.
   4643 
   4644 iASL: Fixed a regression where the AML file is not deleted on errors. The 
   4645 AML 
   4646 output file should be deleted if there are any errors during the 
   4647 compiler. 
   4648 The 
   4649 only exception is if the -f (force output) option is used. ACPICA BZ 974.
   4650 
   4651 iASL: Added a feature to automatically increase internal line buffer 
   4652 sizes. 
   4653 Via realloc(), automatically increase the internal line buffer sizes as 
   4654 necessary to support very long source code lines. The current version of 
   4655 the 
   4656 preprocessor requires a buffer long enough to contain full source code 
   4657 lines. 
   4658 This change increases the line buffer(s) if the input lines go beyond the 
   4659 current buffer size. This eliminates errors that occurred when a source 
   4660 code 
   4661 line was longer than the buffer.
   4662 
   4663 iASL: Fixed a problem with constant folding in method declarations. The 
   4664 SyncLevel term is a ByteConstExpr, and incorrect code would be generated 
   4665 if a 
   4666 Type3 opcode was used.
   4667 
   4668 Debugger: Improved command help support. For incorrect argument count, 
   4669 display 
   4670 full help for the command. For help command itself, allow an argument to 
   4671 specify a command.
   4672 
   4673 Test Suites: Several bug fixes for the ASLTS suite reduces the number of 
   4674 errors during execution of the suite. Guan Chao.
   4675 
   4676 ----------------------------------------
   4677 16 August 2012. Summary of changes for version 20120816:
   4678 
   4679 
   4680 1) ACPICA Kernel-resident Subsystem:
   4681 
   4682 Removed all use of the deprecated _GTS and _BFS predefined methods. The 
   4683 _GTS 
   4684 (Going To Sleep) and _BFS (Back From Sleep) methods are essentially 
   4685 deprecated and will probably be removed from the ACPI specification. 
   4686 Windows 
   4687 does not invoke them, and reportedly never will. The final nail in the 
   4688 coffin 
   4689 is that the ACPI specification states that these methods must be run with 
   4690 interrupts off, which is not going to happen in a kernel interpreter. 
   4691 Note: 
   4692 Linux has removed all use of the methods also. It was discovered that 
   4693 invoking these functions caused failures on some machines, probably 
   4694 because 
   4695 they were never tested since Windows does not call them. Affects two 
   4696 external 
   4697 interfaces, AcpiEnterSleepState and AcpiLeaveSleepStatePrep. Tang Feng. 
   4698 ACPICA BZ 969.
   4699 
   4700 Implemented support for complex bit-packed buffers returned from the _PLD 
   4701 (Physical Location of Device) predefined method. Adds a new external 
   4702 interface, AcpiDecodePldBuffer that parses the buffer into a more usable 
   4703 C 
   4704 structure. Note: C Bitfields cannot be used for this type of predefined 
   4705 structure since the memory layout of individual bitfields is not defined 
   4706 by 
   4707 the C language. In addition, there are endian concerns where a compiler 
   4708 will 
   4709 change the bitfield ordering based on the machine type. The new ACPICA 
   4710 interface eliminates these issues, and should be called after _PLD is 
   4711 executed. ACPICA BZ 954.
   4712 
   4713 Implemented a change to allow a scope change to root (via "Scope (\)") 
   4714 during 
   4715 execution of module-level ASL code (code that is executed at table load 
   4716 time.) Lin Ming.
   4717 
   4718 Added the Windows8/Server2012 string for the _OSI method. This change 
   4719 adds 
   4720 a 
   4721 new _OSI string, "Windows 2012" for both Windows 8 and Windows Server 
   4722 2012.
   4723 
   4724 Added header support for the new ACPI tables DBG2 (Debug Port Table Type 
   4725 2) 
   4726 and CSRT (Core System Resource Table).
   4727 
   4728 Added struct header support for the _FDE, _GRT, _GTM, and _SRT predefined 
   4729 names. This simplifies access to the buffers returned by these predefined 
   4730 names. Adds a new file, include/acbuffer.h. ACPICA BZ 956.
   4731 
   4732 GPE support: Removed an extraneous parameter from the various low-level 
   4733 internal GPE functions. Tang Feng.
   4734 
   4735 Removed the linux makefiles from the unix packages. The generate/linux 
   4736 makefiles are obsolete and have been removed from the unix tarball 
   4737 release 
   4738 packages. The replacement makefiles are under generate/unix, and there is 
   4739 a 
   4740 top-level makefile under the main acpica directory. ACPICA BZ 967, 912.
   4741 
   4742 Updates for Unix makefiles:
   4743 1) Add -D_FORTIFY_SOURCE=2 for gcc generation. Arjan van de Ven.
   4744 2) Update linker flags (move to end of command line) for AcpiExec 
   4745 utility. 
   4746 Guan Chao.
   4747 
   4748 Split ACPICA initialization functions to new file, utxfinit.c. Split from 
   4749 utxface.c to improve modularity and reduce file size.
   4750 
   4751 Example Code and Data Size: These are the sizes for the OS-independent 
   4752 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   4753 debug version of the code includes the debug output trace mechanism and 
   4754 has a 
   4755 much larger code and data size.
   4756 
   4757   Previous Release:
   4758     Non-Debug Version:  93.5K Code, 25.3K Data, 118.8K Total
   4759     Debug Version:     173.7K Code, 74.0K Data, 247.7K Total
   4760   Current Release:
   4761     Non-Debug Version:  93.8K Code, 25.3K Data, 119.1K Total
   4762     Debug Version:     175.7K Code, 74.8K Data, 250.5K Total
   4763 
   4764 
   4765 2) iASL Compiler/Disassembler and Tools:
   4766 
   4767 iASL: Fixed a problem with constant folding for fixed-length constant 
   4768 expressions. The constant-folding code was not being invoked for constant 
   4769 expressions that allow the use of type 3/4/5 opcodes to generate 
   4770 constants 
   4771 for expressions such as ByteConstExpr, WordConstExpr, etc. This could 
   4772 result 
   4773 in the generation of invalid AML bytecode. ACPICA BZ 970.
   4774 
   4775 iASL: Fixed a generation issue on newer versions of Bison. Newer versions 
   4776 apparently automatically emit some of the necessary externals. This 
   4777 change 
   4778 handles these versions in order to eliminate generation warnings.
   4779 
   4780 Disassembler: Added support to decode the DBG2 and CSRT ACPI tables.
   4781 
   4782 Disassembler: Add support to decode _PLD buffers. The decoded buffer 
   4783 appears 
   4784 within comments in the output file.
   4785 
   4786 Debugger: Fixed a regression with the "Threads" command where 
   4787 AE_BAD_PARAMETER was always returned.
   4788 
   4789 ----------------------------------------
   4790 11 July 2012. Summary of changes for version 20120711:
   4791 
   4792 1) ACPICA Kernel-resident Subsystem:
   4793 
   4794 Fixed a possible fault in the return package object repair code. Fixes a 
   4795 problem that can occur when a lone package object is wrapped with an 
   4796 outer 
   4797 package object in order to force conformance to the ACPI specification. 
   4798 Can 
   4799 affect these predefined names: _ALR, _MLS, _PSS, _TRT, _TSS, _PRT, _HPX, 
   4800 _DLM, 
   4801 _CSD, _PSD, _TSD.
   4802 
   4803 Removed code to disable/enable bus master arbitration (ARB_DIS bit in the 
   4804 PM2_CNT register) in the ACPICA sleep/wake interfaces. Management of the 
   4805 ARB_DIS bit must be implemented in the host-dependent C3 processor power 
   4806 state 
   4807 support. Note, ARB_DIS is obsolete and only applies to older chipsets, 
   4808 both 
   4809 Intel and other vendors. (for Intel: ICH4-M and earlier)
   4810 
   4811 This change removes the code to disable/enable bus master arbitration 
   4812 during 
   4813 suspend/resume. Use of the ARB_DIS bit in the optional PM2_CNT register 
   4814 causes 
   4815 resume problems on some machines. The change has been in use for over 
   4816 seven 
   4817 years within Linux.
   4818 
   4819 Implemented two new external interfaces to support host-directed dynamic 
   4820 ACPI 
   4821 table load and unload. They are intended to simplify the host 
   4822 implementation 
   4823 of hot-plug support:
   4824   AcpiLoadTable: Load an SSDT from a buffer into the namespace.
   4825   AcpiUnloadParentTable: Unload an SSDT via a named object owned by the 
   4826 table.
   4827 See the ACPICA reference for additional details. Adds one new file, 
   4828 components/tables/tbxfload.c
   4829 
   4830 Implemented and deployed two new interfaces for errors and warnings that 
   4831 are 
   4832 known to be caused by BIOS/firmware issues:
   4833   AcpiBiosError: Prints "ACPI Firmware Error" message.
   4834   AcpiBiosWarning: Prints "ACPI Firmware Warning" message.
   4835 Deployed these new interfaces in the ACPICA Table Manager code for ACPI 
   4836 table 
   4837 and FADT errors. Additional deployment to be completed as appropriate in 
   4838 the 
   4839 future. The associated conditional macros are ACPI_BIOS_ERROR and 
   4840 ACPI_BIOS_WARNING. See the ACPICA reference for additional details. 
   4841 ACPICA 
   4842 BZ 
   4843 843.
   4844 
   4845 Implicit notify support: ensure that no memory allocation occurs within a 
   4846 critical region. This fix moves a memory allocation outside of the time 
   4847 that a 
   4848 spinlock is held. Fixes issues on systems that do not allow this 
   4849 behavior. 
   4850 Jung-uk Kim.
   4851 
   4852 Split exception code utilities and tables into a new file, 
   4853 utilities/utexcep.c
   4854 
   4855 Example Code and Data Size: These are the sizes for the OS-independent 
   4856 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   4857 debug 
   4858 version of the code includes the debug output trace mechanism and has a 
   4859 much 
   4860 larger code and data size.
   4861 
   4862   Previous Release:
   4863     Non-Debug Version:  93.1K Code, 25.1K Data, 118.2K Total
   4864     Debug Version:     172.9K Code, 73.6K Data, 246.5K Total
   4865   Current Release:
   4866     Non-Debug Version:  93.5K Code, 25.3K Data, 118.8K Total
   4867     Debug Version:     173.7K Code, 74.0K Data, 247.7K Total
   4868 
   4869 
   4870 2) iASL Compiler/Disassembler and Tools:
   4871 
   4872 iASL: Fixed a parser problem for hosts where EOF is defined as -1 instead 
   4873 of 
   4874 0. Jung-uk Kim.
   4875 
   4876 Debugger: Enhanced the "tables" command to emit additional information 
   4877 about 
   4878 the current set of ACPI tables, including the owner ID and flags decode.
   4879 
   4880 Debugger: Reimplemented the "unload" command to use the new 
   4881 AcpiUnloadParentTable external interface. This command was disable 
   4882 previously 
   4883 due to need for an unload interface.
   4884 
   4885 AcpiHelp: Added a new option to decode ACPICA exception codes. The -e 
   4886 option 
   4887 will decode 16-bit hex status codes (ACPI_STATUS) to name strings.
   4888 
   4889 ----------------------------------------
   4890 20 June 2012. Summary of changes for version 20120620:
   4891 
   4892 
   4893 1) ACPICA Kernel-resident Subsystem:
   4894 
   4895 Implemented support to expand the "implicit notify" feature to allow 
   4896 multiple 
   4897 devices to be notified by a single GPE. This feature automatically 
   4898 generates a 
   4899 runtime device notification in the absence of a BIOS-provided GPE control 
   4900 method (_Lxx/_Exx) or a host-installed handler for the GPE. Implicit 
   4901 notify is 
   4902 provided by ACPICA for Windows compatibility, and is a workaround for 
   4903 BIOS 
   4904 AML 
   4905 code errors. See the description of the AcpiSetupGpeForWake interface in 
   4906 the 
   4907 APCICA reference. Bob Moore, Rafael Wysocki. ACPICA BZ 918.
   4908 
   4909 Changed some comments and internal function names to simplify and ensure 
   4910 correctness of the Linux code translation. No functional changes.
   4911 
   4912 Example Code and Data Size: These are the sizes for the OS-independent 
   4913 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   4914 debug 
   4915 version of the code includes the debug output trace mechanism and has a 
   4916 much 
   4917 larger code and data size.
   4918 
   4919   Previous Release:
   4920     Non-Debug Version:  93.0K Code, 25.1K Data, 118.1K Total
   4921     Debug Version:     172.7K Code, 73.6K Data, 246.3K Total
   4922   Current Release:
   4923     Non-Debug Version:  93.1K Code, 25.1K Data, 118.2K Total
   4924     Debug Version:     172.9K Code, 73.6K Data, 246.5K Total
   4925 
   4926 
   4927 2) iASL Compiler/Disassembler and Tools:
   4928 
   4929 Disassembler: Added support to emit short, commented descriptions for the 
   4930 ACPI 
   4931 predefined names in order to improve the readability of the disassembled 
   4932 output. ACPICA BZ 959. Changes include:
   4933   1) Emit descriptions for all standard predefined names (_INI, _STA, 
   4934 _PRW, 
   4935 etc.)
   4936   2) Emit generic descriptions for the special names (_Exx, _Qxx, etc.)
   4937   3) Emit descriptions for the resource descriptor names (_MIN, _LEN, 
   4938 etc.)
   4939 
   4940 AcpiSrc: Fixed several long-standing Linux code translation issues. 
   4941 Argument 
   4942 descriptions in function headers are now translated properly to lower 
   4943 case 
   4944 and 
   4945 underscores. ACPICA BZ 961. Also fixes translation problems such as 
   4946 these: 
   4947 (old -> new)
   4948   i_aSL -> iASL
   4949   00-7_f -> 00-7F
   4950   16_k -> 16K
   4951   local_fADT -> local_FADT
   4952   execute_oSI -> execute_OSI
   4953 
   4954 iASL: Fixed a problem where null bytes were inadvertently emitted into 
   4955 some 
   4956 listing files.
   4957 
   4958 iASL: Added the existing debug options to the standard help screen. There 
   4959 are 
   4960 no longer two different help screens. ACPICA BZ 957.
   4961 
   4962 AcpiHelp: Fixed some typos in the various predefined name descriptions. 
   4963 Also 
   4964 expand some of the descriptions where appropriate.
   4965 
   4966 iASL: Fixed the -ot option (display compile times/statistics). Was not 
   4967 working 
   4968 properly for standard output; only worked for the debug file case.
   4969 
   4970 ----------------------------------------
   4971 18 May 2012. Summary of changes for version 20120518:
   4972 
   4973 
   4974 1) ACPICA Core Subsystem:
   4975 
   4976 Added a new OSL interface, AcpiOsWaitEventsComplete. This interface is 
   4977 defined 
   4978 to block until asynchronous events such as notifies and GPEs have 
   4979 completed. 
   4980 Within ACPICA, it is only called before a notify or GPE handler is 
   4981 removed/uninstalled. It also may be useful for the host OS within related 
   4982 drivers such as the Embedded Controller driver. See the ACPICA reference 
   4983 for 
   4984 additional information. ACPICA BZ 868.
   4985 
   4986 ACPI Tables: Added a new error message for a possible overflow failure 
   4987 during 
   4988 the conversion of FADT 32-bit legacy register addresses to internal 
   4989 common 
   4990 64-
   4991 bit GAS structure representation. The GAS has a one-byte "bit length" 
   4992 field, 
   4993 thus limiting the register length to 255 bits. ACPICA BZ 953.
   4994 
   4995 Example Code and Data Size: These are the sizes for the OS-independent 
   4996 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   4997 debug 
   4998 version of the code includes the debug output trace mechanism and has a 
   4999 much 
   5000 larger code and data size.
   5001 
   5002   Previous Release:
   5003     Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
   5004     Debug Version:     172.6K Code, 73.4K Data, 246.0K Total
   5005   Current Release:
   5006     Non-Debug Version:  93.0K Code, 25.1K Data, 118.1K Total
   5007     Debug Version:     172.7K Code, 73.6K Data, 246.3K Total
   5008 
   5009 
   5010 2) iASL Compiler/Disassembler and Tools:
   5011 
   5012 iASL: Added the ACPI 5.0 "PCC" keyword for use in the Register() ASL 
   5013 macro. 
   5014 This keyword was added late in the ACPI 5.0 release cycle and was not 
   5015 implemented until now.
   5016 
   5017 Disassembler: Added support for Operation Region externals. Adds missing 
   5018 support for operation regions that are defined in another table, and 
   5019 referenced locally via a Field or BankField ASL operator. Now generates 
   5020 the 
   5021 correct External statement.
   5022 
   5023 Disassembler: Several additional fixes for the External() statement 
   5024 generation 
   5025 related to some ASL operators. Also, order the External() statements 
   5026 alphabetically in the disassembler output. Fixes the External() 
   5027 generation 
   5028 for 
   5029 the Create* field, Alias, and Scope operators:
   5030  1) Create* buffer field operators - fix type mismatch warning on 
   5031 disassembly
   5032  2) Alias - implement missing External support
   5033  3) Scope - fix to make sure all necessary externals are emitted.
   5034 
   5035 iASL: Improved pathname support. For include files, merge the prefix 
   5036 pathname 
   5037 with the file pathname and eliminate unnecessary components. Convert 
   5038 backslashes in all pathnames to forward slashes, for readability. Include 
   5039 file 
   5040 pathname changes affect both #include and Include() type operators.
   5041 
   5042 iASL/DTC/Preprocessor: Gracefully handle early EOF. Handle an EOF at the 
   5043 end 
   5044 of a valid line by inserting a newline and then returning the EOF during 
   5045 the 
   5046 next call to GetNextLine. Prevents the line from being ignored due to EOF 
   5047 condition.
   5048 
   5049 iASL: Implemented some changes to enhance the IDE support (-vi option.) 
   5050 Error 
   5051 and Warning messages are now correctly recognized for both the source 
   5052 code 
   5053 browser and the global error and warning counts.
   5054 
   5055 ----------------------------------------
   5056 20 April 2012. Summary of changes for version 20120420:
   5057 
   5058 
   5059 1) ACPICA Core Subsystem:
   5060 
   5061 Implemented support for multiple notify handlers. This change adds 
   5062 support 
   5063 to 
   5064 allow multiple system and device notify handlers on Device, Thermal Zone, 
   5065 and 
   5066 Processor objects. This can simplify the host OS notification 
   5067 implementation. 
   5068 Also re-worked and restructured the entire notify support code to 
   5069 simplify 
   5070 handler installation, handler removal, notify event queuing, and notify 
   5071 dispatch to handler(s). Note: there can still only be two global notify 
   5072 handlers - one for system notifies and one for device notifies. There are 
   5073 no 
   5074 changes to the existing handler install/remove interfaces. Lin Ming, Bob 
   5075 Moore, Rafael Wysocki.
   5076 
   5077 Fixed a regression in the package repair code where the object reference 
   5078 count was calculated incorrectly. Regression was introduced in the commit 
   5079 "Support to add Package wrappers".
   5080 
   5081 Fixed a couple possible memory leaks in the AML parser, in the error 
   5082 recovery 
   5083 path. Jesper Juhl, Lin Ming.
   5084 
   5085 Example Code and Data Size: These are the sizes for the OS-independent 
   5086 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   5087 debug version of the code includes the debug output trace mechanism and 
   5088 has a 
   5089 much larger code and data size.
   5090 
   5091   Previous Release:
   5092     Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
   5093     Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
   5094   Current Release:
   5095     Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
   5096     Debug Version:     172.6K Code, 73.4K Data, 246.0K Total
   5097 
   5098 
   5099 2) iASL Compiler/Disassembler and Tools:
   5100 
   5101 iASL: Fixed a problem with the resource descriptor support where the 
   5102 length 
   5103 of the StartDependentFn and StartDependentFnNoPrio descriptors were not 
   5104 included in cumulative descriptor offset, resulting in incorrect values 
   5105 for 
   5106 resource tags within resource descriptors appearing after a 
   5107 StartDependent* 
   5108 descriptor. Reported by Petr Vandrovec. ACPICA BZ 949.
   5109 
   5110 iASL and Preprocessor: Implemented full support for the #line directive 
   5111 to 
   5112 correctly track original source file line numbers through the .i 
   5113 preprocessor 
   5114 output file - for error and warning messages.
   5115 
   5116 iASL: Expand the allowable byte constants for address space IDs. 
   5117 Previously, 
   5118 the allowable range was 0x80-0xFF (user-defined spaces), now the range is 
   5119 0x0A-0xFF to allow for custom and new IDs without changing the compiler.
   5120 
   5121 iASL: Add option to treat all warnings as errors (-we). ACPICA BZ 948.
   5122 
   5123 iASL: Add option to completely disable the preprocessor (-Pn).
   5124 
   5125 iASL: Now emit all error/warning messages to standard error (stderr) by 
   5126 default (instead of the previous stdout).
   5127 
   5128 ASL Test Suite (ASLTS): Reduce iASL warnings due to use of Switch(). 
   5129 Update 
   5130 for resource descriptor offset fix above. Update/cleanup error output 
   5131 routines. Enable and send iASL errors/warnings to an error logfile 
   5132 (error.txt). Send all other iASL output to a logfile (compiler.txt). 
   5133 Fixed 
   5134 several extraneous "unrecognized operator" messages.
   5135 
   5136 ----------------------------------------
   5137 20 March 2012. Summary of changes for version 20120320:
   5138 
   5139 
   5140 1) ACPICA Core Subsystem:
   5141 
   5142 Enhanced the sleep/wake interfaces to optionally execute the _GTS method 
   5143 (Going To Sleep) and the _BFS method (Back From Sleep). Windows 
   5144 apparently 
   5145 does not execute these methods, and therefore these methods are often 
   5146 untested. It has been seen on some systems where the execution of these 
   5147 methods causes errors and also prevents the machine from entering S5. It 
   5148 is 
   5149 therefore suggested that host operating systems do not execute these 
   5150 methods 
   5151 by default. In the future, perhaps these methods can be optionally 
   5152 executed 
   5153 based on the age of the system and/or what is the newest version of 
   5154 Windows 
   5155 that the BIOS asks for via _OSI. Changed interfaces: AcpiEnterSleepState 
   5156 and 
   5157 AcpileaveSleepStatePrep. See the ACPICA reference and Linux BZ 13041. Lin 
   5158 Ming.
   5159 
   5160 Fixed a problem where the length of the local/common FADT was set too 
   5161 early. 
   5162 The local FADT table length cannot be set to the common length until the 
   5163 original length has been examined. There is code that checks the table 
   5164 length 
   5165 and sets various fields appropriately. This can affect older machines 
   5166 with 
   5167 early FADT versions. For example, this can cause inadvertent writes to 
   5168 the 
   5169 CST_CNT register. Julian Anastasov.
   5170 
   5171 Fixed a mapping issue related to a physical table override. Use the 
   5172 deferred 
   5173 mapping mechanism for tables loaded via the physical override OSL 
   5174 interface. 
   5175 This allows for early mapping before the virtual memory manager is 
   5176 available. 
   5177 Thomas Renninger, Bob Moore.
   5178 
   5179 Enhanced the automatic return-object repair code: Repair a common problem 
   5180 with 
   5181 predefined methods that are defined to return a variable-length Package 
   5182 of 
   5183 sub-objects. If there is only one sub-object, some BIOS ASL code 
   5184 mistakenly 
   5185 simply returns the single object instead of a Package with one sub-
   5186 object. 
   5187 This new support will repair this error by wrapping a Package object 
   5188 around 
   5189 the original object, creating the correct and expected Package with one 
   5190 sub-
   5191 object. Names that can be repaired in this manner include: _ALR, _CSD, 
   5192 _HPX, 
   5193 _MLS, _PLD, _PRT, _PSS, _TRT, _TSS, _BCL, _DOD, _FIX, and _Sx. ACPICA BZ 
   5194 939.
   5195 
   5196 Changed the exception code returned for invalid ACPI paths passed as 
   5197 parameters to external interfaces such as AcpiEvaluateObject. Was 
   5198 AE_BAD_PARAMETER, now is the more sensible AE_BAD_PATHNAME.
   5199 
   5200 Example Code and Data Size: These are the sizes for the OS-independent 
   5201 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   5202 debug 
   5203 version of the code includes the debug output trace mechanism and has a 
   5204 much 
   5205 larger code and data size.
   5206 
   5207   Previous Release:
   5208     Non-Debug Version:  93.0K Code, 25.0K Data, 118.0K Total
   5209     Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
   5210   Current Release:
   5211     Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
   5212     Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
   5213 
   5214 
   5215 2) iASL Compiler/Disassembler and Tools:
   5216 
   5217 iASL: Added the infrastructure and initial implementation of a integrated 
   5218 C-
   5219 like preprocessor. This will simplify BIOS development process by 
   5220 eliminating 
   5221 the need for a separate preprocessing step during builds. On Windows, it 
   5222 also 
   5223 eliminates the need to install a separate C compiler. ACPICA BZ 761. Some 
   5224 features including full #define() macro support are still under 
   5225 development. 
   5226 These preprocessor directives are supported:
   5227     #define
   5228     #elif
   5229     #else
   5230     #endif
   5231     #error
   5232     #if
   5233     #ifdef
   5234     #ifndef
   5235     #include
   5236     #pragma message
   5237     #undef
   5238     #warning
   5239 In addition, these new command line options are supported:
   5240     -D <symbol> Define symbol for preprocessor use
   5241     -li         Create preprocessed output file (*.i)
   5242     -P          Preprocess only and create preprocessor output file (*.i)
   5243 
   5244 Table Compiler: Fixed a problem where the equals operator within an 
   5245 expression 
   5246 did not work properly.
   5247 
   5248 Updated iASL to use the current versions of Bison/Flex. Updated the 
   5249 Windows 
   5250 project file to invoke these tools from the standard location. ACPICA BZ 
   5251 904. 
   5252 Versions supported:
   5253     Flex for Windows:  V2.5.4
   5254     Bison for Windows: V2.4.1
   5255 
   5256 ----------------------------------------
   5257 15 February 2012. Summary of changes for version 20120215:
   5258 
   5259 
   5260 1) ACPICA Core Subsystem:
   5261 
   5262 There have been some major changes to the sleep/wake support code, as 
   5263 described below (a - e).
   5264 
   5265 a) The AcpiLeaveSleepState has been split into two interfaces, similar to 
   5266 AcpiEnterSleepStatePrep and AcpiEnterSleepState. The new interface is 
   5267 AcpiLeaveSleepStatePrep. This allows the host to perform actions between 
   5268 the 
   5269 time the _BFS method is called and the _WAK method is called. NOTE: all 
   5270 hosts 
   5271 must update their wake/resume code or else sleep/wake will not work 
   5272 properly. 
   5273 Rafael Wysocki.
   5274 
   5275 b) In AcpiLeaveSleepState, now enable all runtime GPEs before calling the 
   5276 _WAK 
   5277 method. Some machines require that the GPEs are enabled before the _WAK 
   5278 method 
   5279 is executed. Thomas Renninger.
   5280 
   5281 c) In AcpiLeaveSleepState, now always clear the WAK_STS (wake status) 
   5282 bit. 
   5283 Some BIOS code assumes that WAK_STS will be cleared on resume and use it 
   5284 to 
   5285 determine whether the system is rebooting or resuming. Matthew Garrett.
   5286 
   5287 d) Move the invocations of _GTS (Going To Sleep) and _BFS (Back From 
   5288 Sleep) to 
   5289 match the ACPI specification requirement. Rafael Wysocki.
   5290 
   5291 e) Implemented full support for the ACPI 5.0 SleepStatus and SleepControl 
   5292 registers within the V5 FADT. This support adds two new files: 
   5293 hardware/hwesleep.c implements the support for the new registers. Moved 
   5294 all 
   5295 sleep/wake external interfaces to hardware/hwxfsleep.c.
   5296 
   5297 
   5298 Added a new OSL interface for ACPI table overrides, 
   5299 AcpiOsPhysicalTableOverride. This interface allows the host to override a 
   5300 table via a physical address, instead of the logical address required by 
   5301 AcpiOsTableOverride. This simplifies the host implementation. Initial 
   5302 implementation by Thomas Renninger. The ACPICA implementation creates a 
   5303 single 
   5304 shared function for table overrides that attempts both a logical and a 
   5305 physical override.
   5306 
   5307 Expanded the OSL memory read/write interfaces to 64-bit data 
   5308 (AcpiOsReadMemory, AcpiOsWriteMemory.) This enables full 64-bit memory 
   5309 transfer support for GAS register structures passed to AcpiRead and 
   5310 AcpiWrite.
   5311 
   5312 Implemented the ACPI_REDUCED_HARDWARE option to allow the creation of a 
   5313 custom 
   5314 build of ACPICA that supports only the ACPI 5.0 reduced hardware (SoC) 
   5315 model. 
   5316 See the ACPICA reference for details. ACPICA BZ 942. This option removes 
   5317 about 
   5318 10% of the code and 5% of the static data, and the following hardware 
   5319 ACPI 
   5320 features become unavailable:
   5321     PM Event and Control registers
   5322     SCI interrupt (and handler)
   5323     Fixed Events
   5324     General Purpose Events (GPEs)
   5325     Global Lock
   5326     ACPI PM timer
   5327     FACS table (Waking vectors and Global Lock)
   5328 
   5329 Updated the unix tarball directory structure to match the ACPICA git 
   5330 source 
   5331 tree. This ensures that the generic unix makefiles work properly (in 
   5332 generate/unix).  Also updated the Linux makefiles to match. ACPICA BZ 
   5333 867.
   5334 
   5335 Updated the return value of the _REV predefined method to integer value 5 
   5336 to 
   5337 reflect ACPI 5.0 support.
   5338 
   5339 Moved the external ACPI PM timer interface prototypes to the public 
   5340 acpixf.h 
   5341 file where they belong.
   5342 
   5343 Example Code and Data Size: These are the sizes for the OS-independent 
   5344 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   5345 debug 
   5346 version of the code includes the debug output trace mechanism and has a 
   5347 much 
   5348 larger code and data size.
   5349 
   5350   Previous Release:
   5351     Non-Debug Version:  92.8K Code, 24.9K Data, 117.7K Total
   5352     Debug Version:     171.7K Code, 72.9K Data, 244.5K Total
   5353   Current Release:
   5354     Non-Debug Version:  93.0K Code, 25.0K Data, 118.0K Total
   5355     Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
   5356 
   5357 
   5358 2) iASL Compiler/Disassembler and Tools:
   5359 
   5360 Disassembler: Fixed a problem with the new ACPI 5.0 serial resource 
   5361 descriptors (I2C, SPI, UART) where the resource produce/consumer bit was 
   5362 incorrectly displayed.
   5363 
   5364 AcpiHelp: Add display of ACPI/PNP device IDs that are defined in the ACPI 
   5365 specification.
   5366 
   5367 ----------------------------------------
   5368 11 January 2012. Summary of changes for version 20120111:
   5369 
   5370 
   5371 1) ACPICA Core Subsystem:
   5372 
   5373 Implemented a new mechanism to allow host device drivers to check for 
   5374 address 
   5375 range conflicts with ACPI Operation Regions. Both SystemMemory and 
   5376 SystemIO 
   5377 address spaces are supported. A new external interface, 
   5378 AcpiCheckAddressRange, 
   5379 allows drivers to check an address range against the ACPI namespace. See 
   5380 the 
   5381 ACPICA reference for additional details. Adds one new file, 
   5382 utilities/utaddress.c. Lin Ming, Bob Moore.
   5383 
   5384 Fixed several issues with the ACPI 5.0 FADT support: Add the sleep 
   5385 Control 
   5386 and 
   5387 Status registers, update the ACPI 5.0 flags, and update internal data 
   5388 structures to handle an FADT larger than 256 bytes. The size of the ACPI 
   5389 5.0 
   5390 FADT is 268 bytes.
   5391 
   5392 Updated all ACPICA copyrights and signons to 2012. Added the 2012 
   5393 copyright to 
   5394 all module headers and signons, including the standard Linux header. This 
   5395 affects virtually every file in the ACPICA core subsystem, iASL compiler, 
   5396 and 
   5397 all ACPICA utilities.
   5398 
   5399 Example Code and Data Size: These are the sizes for the OS-independent 
   5400 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   5401 debug 
   5402 version of the code includes the debug output trace mechanism and has a 
   5403 much 
   5404 larger code and data size.
   5405 
   5406   Previous Release:
   5407     Non-Debug Version:  92.3K Code, 24.9K Data, 117.2K Total
   5408     Debug Version:     170.8K Code, 72.6K Data, 243.4K Total
   5409   Current Release:
   5410     Non-Debug Version:  92.8K Code, 24.9K Data, 117.7K Total
   5411     Debug Version:     171.7K Code, 72.9K Data, 244.5K Total
   5412 
   5413 
   5414 2) iASL Compiler/Disassembler and Tools:
   5415 
   5416 Disassembler: fixed a problem with the automatic resource tag generation 
   5417 support. Fixes a problem where the resource tags are inadvertently not 
   5418 constructed if the table being disassembled contains external references 
   5419 to 
   5420 control methods. Moved the actual construction of the tags to after the 
   5421 final 
   5422 namespace is constructed (after 2nd parse is invoked due to external 
   5423 control 
   5424 method references.) ACPICA BZ 941.
   5425 
   5426 Table Compiler: Make all "generic" operators caseless. These are the 
   5427 operators 
   5428 like UINT8, String, etc. Making these caseless improves ease-of-use. 
   5429 ACPICA BZ 
   5430 934.
   5431 
   5432 ----------------------------------------
   5433 23 November 2011. Summary of changes for version 20111123:
   5434 
   5435 0) ACPI 5.0 Support:
   5436 
   5437 This release contains full support for the ACPI 5.0 specification, as 
   5438 summarized below.
   5439 
   5440 Reduced Hardware Support:
   5441 -------------------------
   5442 
   5443 This support allows for ACPI systems without the usual ACPI hardware. 
   5444 This 
   5445 support is enabled by a flag in the revision 5 FADT. If it is set, ACPICA 
   5446 will 
   5447 not attempt to initialize or use any of the usual ACPI hardware. Note, 
   5448 when 
   5449 this flag is set, all of the following ACPI hardware is assumed to be not 
   5450 present and is not initialized or accessed:
   5451 
   5452     General Purpose Events (GPEs)
   5453     Fixed Events (PM1a/PM1b and PM Control)
   5454     Power Management Timer and Console Buttons (power/sleep)
   5455     Real-time Clock Alarm
   5456     Global Lock
   5457     System Control Interrupt (SCI)
   5458     The FACS is assumed to be non-existent
   5459 
   5460 ACPI Tables:
   5461 ------------
   5462 
   5463 All new tables and updates to existing tables are fully supported in the 
   5464 ACPICA headers (for use by device drivers), the disassembler, and the 
   5465 iASL 
   5466 Data Table Compiler. ACPI 5.0 defines these new tables:
   5467 
   5468     BGRT        /* Boot Graphics Resource Table */
   5469     DRTM        /* Dynamic Root of Trust for Measurement table */
   5470     FPDT        /* Firmware Performance Data Table */
   5471     GTDT        /* Generic Timer Description Table */
   5472     MPST        /* Memory Power State Table */
   5473     PCCT        /* Platform Communications Channel Table */
   5474     PMTT        /* Platform Memory Topology Table */
   5475     RASF        /* RAS Feature table */
   5476 
   5477 Operation Regions/SpaceIDs:
   5478 ---------------------------
   5479 
   5480 All new operation regions are fully supported by the iASL compiler, the 
   5481 disassembler, and the ACPICA runtime code (for dispatch to region 
   5482 handlers.) 
   5483 The new operation region Space IDs are:
   5484 
   5485     GeneralPurposeIo
   5486     GenericSerialBus
   5487 
   5488 Resource Descriptors:
   5489 ---------------------
   5490 
   5491 All new ASL resource descriptors are fully supported by the iASL 
   5492 compiler, 
   5493 the 
   5494 ASL/AML disassembler, and the ACPICA runtime Resource Manager code 
   5495 (including 
   5496 all new predefined resource tags). New descriptors are:
   5497 
   5498     FixedDma
   5499     GpioIo
   5500     GpioInt
   5501     I2cSerialBus
   5502     SpiSerialBus
   5503     UartSerialBus
   5504 
   5505 ASL/AML Operators, New and Modified:
   5506 ------------------------------------
   5507 
   5508 One new operator is added, the Connection operator, which is used to 
   5509 associate 
   5510 a GeneralPurposeIo or GenericSerialBus resource descriptor with 
   5511 individual 
   5512 field objects within an operation region. Several new protocols are 
   5513 associated 
   5514 with the AccessAs operator. All are fully supported by the iASL compiler, 
   5515 disassembler, and runtime ACPICA AML interpreter:
   5516 
   5517     Connection                      // Declare Field Connection 
   5518 attributes
   5519     AccessAs: AttribBytes (n)           // Read/Write N-Bytes Protocol
   5520     AccessAs: AttribRawBytes (n)        // Raw Read/Write N-Bytes 
   5521 Protocol
   5522     AccessAs: AttribRawProcessBytes (n) // Raw Process Call Protocol
   5523     RawDataBuffer                       // Data type for Vendor Data 
   5524 fields
   5525 
   5526 Predefined ASL/AML Objects:
   5527 ---------------------------
   5528 
   5529 All new predefined objects/control-methods are supported by the iASL 
   5530 compiler 
   5531 and the ACPICA runtime validation/repair (arguments and return values.) 
   5532 New 
   5533 predefined names include the following:
   5534 
   5535 Standard Predefined Names (Objects or Control Methods):
   5536     _AEI, _CLS, _CPC, _CWS, _DEP,
   5537     _DLM, _EVT, _GCP, _CRT, _GWS,
   5538     _HRV, _PRE, _PSE, _SRT, _SUB.
   5539 
   5540 Resource Tags (Names used to access individual fields within resource 
   5541 descriptors):
   5542     _DBT, _DPL, _DRS, _END, _FLC,
   5543     _IOR, _LIN, _MOD, _PAR, _PHA,
   5544     _PIN, _PPI, _POL, _RXL, _SLV,
   5545     _SPE, _STB, _TXL, _VEN.
   5546 
   5547 ACPICA External Interfaces:
   5548 ---------------------------
   5549 
   5550 Several new interfaces have been defined for use by ACPI-related device 
   5551 drivers and other host OS services:
   5552 
   5553 AcpiAcquireMutex and AcpiReleaseMutex: These interfaces allow the host OS 
   5554 to 
   5555 acquire and release AML mutexes that are defined in the DSDT/SSDT tables 
   5556 provided by the BIOS. They are intended to be used in conjunction with 
   5557 the 
   5558 ACPI 5.0 _DLM (Device Lock Method) in order to provide transaction-level 
   5559 mutual exclusion with the AML code/interpreter.
   5560 
   5561 AcpiGetEventResources: Returns the (formatted) resource descriptors as 
   5562 defined 
   5563 by the ACPI 5.0 _AEI object (ACPI Event Information).  This object 
   5564 provides 
   5565 resource descriptors associated with hardware-reduced platform events, 
   5566 similar 
   5567 to the AcpiGetCurrentResources interface.
   5568 
   5569 Operation Region Handlers: For General Purpose IO and Generic Serial Bus 
   5570 operation regions, information about the Connection() object and any 
   5571 optional 
   5572 length information is passed to the region handler within the Context 
   5573 parameter.
   5574 
   5575 AcpiBufferToResource: This interface converts a raw AML buffer containing 
   5576 a 
   5577 resource template or resource descriptor to the ACPI_RESOURCE internal 
   5578 format 
   5579 suitable for use by device drivers. Can be used by an operation region 
   5580 handler 
   5581 to convert the Connection() buffer object into a ACPI_RESOURCE.
   5582 
   5583 Miscellaneous/Tools/TestSuites: 
   5584 -------------------------------
   5585 
   5586 Support for extended _HID names (Four alpha characters instead of three).
   5587 Support for ACPI 5.0 features in the AcpiExec and AcpiHelp utilities.
   5588 Support for ACPI 5.0 features in the ASLTS test suite.
   5589 Fully updated documentation (ACPICA and iASL reference documents.)
   5590 
   5591 ACPI Table Definition Language:
   5592 -------------------------------
   5593 
   5594 Support for this language was implemented and released as a subsystem of 
   5595 the 
   5596 iASL compiler in 2010. (See the iASL compiler User Guide.)
   5597 
   5598 
   5599 Non-ACPI 5.0 changes for this release:
   5600 --------------------------------------
   5601 
   5602 1) ACPICA Core Subsystem:
   5603 
   5604 Fix a problem with operation region declarations where a failure can 
   5605 occur 
   5606 if 
   5607 the region name and an argument that evaluates to an object (such as the 
   5608 region address) are in different namespace scopes. Lin Ming, ACPICA BZ 
   5609 937.
   5610 
   5611 Do not abort an ACPI table load if an invalid space ID is found within. 
   5612 This 
   5613 will be caught later if the offending method is executed. ACPICA BZ 925.
   5614 
   5615 Fixed an issue with the FFixedHW space ID where the ID was not always 
   5616 recognized properly (Both ACPICA and iASL). ACPICA BZ 926.
   5617 
   5618 Fixed a problem with the 32-bit generation of the unix-specific OSL 
   5619 (osunixxf.c). Lin Ming, ACPICA BZ 936.
   5620 
   5621 Several changes made to enable generation with the GCC 4.6 compiler. 
   5622 ACPICA BZ 
   5623 935.
   5624 
   5625 New error messages: Unsupported I/O requests (not 8/16/32 bit), and 
   5626 Index/Bank 
   5627 field registers out-of-range.
   5628 
   5629 2) iASL Compiler/Disassembler and Tools:
   5630 
   5631 iASL: Implemented the __PATH__ operator, which returns the full pathname 
   5632 of 
   5633 the current source file.
   5634 
   5635 AcpiHelp: Automatically display expanded keyword information for all ASL 
   5636 operators.
   5637 
   5638 Debugger: Add "Template" command to disassemble/dump resource template 
   5639 buffers.
   5640 
   5641 Added a new master script to generate and execute the ASLTS test suite. 
   5642 Automatically handles 32- and 64-bit generation. See tests/aslts.sh
   5643 
   5644 iASL: Fix problem with listing generation during processing of the 
   5645 Switch() 
   5646 operator where AML listing was disabled until the entire Switch block was 
   5647 completed.
   5648 
   5649 iASL: Improve support for semicolon statement terminators. Fix "invalid 
   5650 character" message for some cases when the semicolon is used. Semicolons 
   5651 are 
   5652 now allowed after every <Term> grammar element. ACPICA BZ 927.
   5653 
   5654 iASL: Fixed some possible aliasing warnings during generation. ACPICA BZ 
   5655 923.
   5656 
   5657 Disassembler: Fix problem with disassembly of the DataTableRegion 
   5658 operator 
   5659 where an inadvertent "Unhandled deferred opcode" message could be 
   5660 generated.
   5661 
   5662 3) Example Code and Data Size
   5663 
   5664 These are the sizes for the OS-independent acpica.lib produced by the 
   5665 Microsoft Visual C++ 9.0 32-bit compiler. The debug version of the code 
   5666 includes the debug output trace mechanism and has a much larger code and 
   5667 data 
   5668 size.
   5669 
   5670   Previous Release:
   5671     Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
   5672     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
   5673   Current Release:
   5674     Non-Debug Version:  92.3K Code, 24.9K Data, 117.2K Total
   5675     Debug Version:     170.8K Code, 72.6K Data, 243.4K Total
   5676 
   5677 ----------------------------------------
   5678 22 September 2011. Summary of changes for version 20110922:
   5679 
   5680 0) ACPI 5.0 News:
   5681 
   5682 Support for ACPI 5.0 in ACPICA has been underway for several months and 
   5683 will 
   5684 be released at the same time that ACPI 5.0 is officially released.
   5685 
   5686 The ACPI 5.0 specification is on track for release in the next few 
   5687 months.
   5688  
   5689 1) ACPICA Core Subsystem:
   5690 
   5691 Fixed a problem where the maximum sleep time for the Sleep() operator was 
   5692 intended to be limited to two seconds, but was inadvertently limited to 
   5693 20 
   5694 seconds instead.
   5695 
   5696 Linux and Unix makefiles: Added header file dependencies to ensure 
   5697 correct 
   5698 generation of ACPICA core code and utilities. Also simplified the 
   5699 makefiles 
   5700 considerably through the use of the vpath variable to specify search 
   5701 paths. 
   5702 ACPICA BZ 924.
   5703 
   5704 2) iASL Compiler/Disassembler and Tools:
   5705 
   5706 iASL: Implemented support to check the access length for all fields 
   5707 created to 
   5708 access named Resource Descriptor fields. For example, if a resource field 
   5709 is 
   5710 defined to be two bits, a warning is issued if a CreateXxxxField() is 
   5711 used 
   5712 with an incorrect bit length. This is implemented for all current 
   5713 resource 
   5714 descriptor names. ACPICA BZ 930.
   5715   
   5716 Disassembler: Fixed a byte ordering problem with the output of 24-bit and 
   5717 56-
   5718 bit integers.
   5719 
   5720 iASL: Fixed a couple of issues associated with variable-length package 
   5721 objects. 1) properly handle constants like One, Ones, Zero -- do not make 
   5722 a 
   5723 VAR_PACKAGE when these are used as a package length. 2) Allow the 
   5724 VAR_PACKAGE 
   5725 opcode (in addition to PACKAGE) when validating object types for 
   5726 predefined 
   5727 names.
   5728 
   5729 iASL: Emit statistics for all output files (instead of just the ASL input 
   5730 and 
   5731 AML output). Includes listings, hex files, etc.
   5732 
   5733 iASL: Added -G option to the table compiler to allow the compilation of 
   5734 custom 
   5735 ACPI tables. The only part of a table that is required is the standard 
   5736 36-
   5737 byte 
   5738 ACPI header.
   5739 
   5740 AcpiXtract: Ported to the standard ACPICA environment (with ACPICA 
   5741 headers), 
   5742 which also adds correct 64-bit support. Also, now all output filenames 
   5743 are 
   5744 completely lower case.
   5745 
   5746 AcpiExec: Ignore any non-AML tables (tables other than DSDT or SSDT) when 
   5747 loading table files. A warning is issued for any such tables. The only 
   5748 exception is an FADT. This also fixes a possible fault when attempting to 
   5749 load 
   5750 non-AML tables. ACPICA BZ 932.
   5751 
   5752 AcpiHelp: Added the AccessAs and Offset operators. Fixed a problem where 
   5753 a 
   5754 missing table terminator could cause a fault when using the -p option.
   5755 
   5756 AcpiSrc: Fixed a possible divide-by-zero fault when generating file 
   5757 statistics.
   5758 
   5759 3) Example Code and Data Size
   5760 
   5761 These are the sizes for the OS-independent acpica.lib produced by the 
   5762 Microsoft Visual C++ 9.0 32-bit compiler. The debug version of the code 
   5763 includes the debug output trace mechanism and has a much larger code and 
   5764 data 
   5765 size.
   5766 
   5767   Previous Release (VC 9.0):
   5768     Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
   5769     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
   5770   Current Release (VC 9.0):
   5771     Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
   5772     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
   5773 
   5774 
   5775 ----------------------------------------
   5776 23 June 2011. Summary of changes for version 20110623:
   5777 
   5778 1) ACPI CA Core Subsystem:
   5779 
   5780 Updated the predefined name repair mechanism to not attempt repair of a 
   5781 _TSS 
   5782 return object if a _PSS object is present. We can only sort the _TSS 
   5783 return 
   5784 package if there is no _PSS within the same scope. This is because if 
   5785 _PSS 
   5786 is 
   5787 present, the ACPI specification dictates that the _TSS Power Dissipation 
   5788 field 
   5789 is to be ignored, and therefore some BIOSs leave garbage values in the 
   5790 _TSS 
   5791 Power field(s). In this case, it is best to just return the _TSS package 
   5792 as-
   5793 is. Reported by, and fixed with assistance from Fenghua Yu.
   5794 
   5795 Added an option to globally disable the control method return value 
   5796 validation 
   5797 and repair. This runtime option can be used to disable return value 
   5798 repair 
   5799 if 
   5800 this is causing a problem on a particular machine. Also added an option 
   5801 to 
   5802 AcpiExec (-dr) to set this disable flag.
   5803 
   5804 All makefiles and project files: Major changes to improve generation of 
   5805 ACPICA 
   5806 tools. ACPICA BZ 912:
   5807     Reduce default optimization levels to improve compatibility
   5808     For Linux, add strict-aliasing=0 for gcc 4
   5809     Cleanup and simplify use of command line defines
   5810     Cleanup multithread library support
   5811     Improve usage messages
   5812 
   5813 Linux-specific header: update handling of THREAD_ID and pthread. For the 
   5814 32-
   5815 bit case, improve casting to eliminate possible warnings, especially with 
   5816 the 
   5817 acpica tools.
   5818 
   5819 Example Code and Data Size: These are the sizes for the OS-independent 
   5820 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   5821 debug 
   5822 version of the code includes the debug output trace mechanism and has a 
   5823 much 
   5824 larger code and data size.
   5825 
   5826   Previous Release (VC 9.0):
   5827     Non-Debug Version:  90.1K Code, 23.9K Data, 114.0K Total
   5828     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
   5829   Current Release (VC 9.0):
   5830     Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
   5831     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
   5832 
   5833 2) iASL Compiler/Disassembler and Tools:
   5834 
   5835 With this release, a new utility named "acpihelp" has been added to the 
   5836 ACPICA 
   5837 package. This utility summarizes the ACPI specification chapters for the 
   5838 ASL 
   5839 and AML languages. It generates under Linux/Unix as well as Windows, and 
   5840 provides the following functionality:
   5841     Find/display ASL operator(s) -- with description and syntax.
   5842     Find/display ASL keyword(s) -- with exact spelling and descriptions.
   5843     Find/display ACPI predefined name(s) -- with description, number
   5844         of arguments, and the return value data type.
   5845     Find/display AML opcode name(s) -- with opcode, arguments, and 
   5846 grammar.
   5847     Decode/display AML opcode -- with opcode name, arguments, and 
   5848 grammar.
   5849 
   5850 Service Layers: Make multi-thread support configurable. Conditionally 
   5851 compile 
   5852 the multi-thread support so that threading libraries will not be linked 
   5853 if 
   5854 not 
   5855 necessary. The only tool that requires multi-thread support is AcpiExec.
   5856 
   5857 iASL: Update yyerrror/AslCompilerError for "const" errors. Newer versions 
   5858 of 
   5859 Bison appear to want the interface to yyerror to be a const char * (or at 
   5860 least this is a problem when generating iASL on some systems.) ACPICA BZ 
   5861 923 
   5862 Pierre Lejeune.
   5863 
   5864 Tools: Fix for systems where O_BINARY is not defined. Only used for 
   5865 Windows 
   5866 versions of the tools.
   5867 
   5868 ----------------------------------------
   5869 27 May 2011. Summary of changes for version 20110527:
   5870 
   5871 1) ACPI CA Core Subsystem:
   5872 
   5873 ASL Load() operator: Reinstate most restrictions on the incoming ACPI 
   5874 table 
   5875 signature. Now, only allow SSDT, OEMx, and a null signature. History:
   5876     1) Originally, we checked the table signature for "SSDT" or "PSDT".
   5877        (PSDT is now obsolete.)
   5878     2) We added support for OEMx tables, signature "OEM" plus a fourth
   5879        "don't care" character.
   5880     3) Valid tables were encountered with a null signature, so we just
   5881        gave up on validating the signature, (05/2008).
   5882     4) We encountered non-AML tables such as the MADT, which caused
   5883        interpreter errors and kernel faults. So now, we once again allow
   5884        only SSDT, OEMx, and now, also a null signature. (05/2011).
   5885 
   5886 Added the missing _TDL predefined name to the global name list in order 
   5887 to 
   5888 enable validation. Affects both the core ACPICA code and the iASL 
   5889 compiler.
   5890 
   5891 Example Code and Data Size: These are the sizes for the OS-independent 
   5892 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   5893 debug 
   5894 version of the code includes the debug output trace mechanism and has a 
   5895 much 
   5896 larger code and data size.
   5897 
   5898   Previous Release (VC 9.0):
   5899     Non-Debug Version:  90.0K Code, 23.8K Data, 113.8K Total
   5900     Debug Version:     164.5K Code, 68.0K Data, 232.5K Total
   5901   Current Release (VC 9.0):
   5902     Non-Debug Version:  90.1K Code, 23.9K Data, 114.0K Total
   5903     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
   5904 
   5905 2) iASL Compiler/Disassembler and Tools:
   5906 
   5907 Debugger/AcpiExec: Implemented support for "complex" method arguments on 
   5908 the 
   5909 debugger command line. This adds support beyond simple integers -- 
   5910 including 
   5911 Strings, Buffers, and Packages. Includes support for nested packages. 
   5912 Increased the default command line buffer size to accommodate these 
   5913 arguments. 
   5914 See the ACPICA reference for details and syntax. ACPICA BZ 917.
   5915  
   5916 Debugger/AcpiExec: Implemented support for "default" method arguments for 
   5917 the 
   5918 Execute/Debug command. Now, the debugger will always invoke a control 
   5919 method 
   5920 with the required number of arguments -- even if the command line 
   5921 specifies 
   5922 none or insufficient arguments. It uses default integer values for any 
   5923 missing 
   5924 arguments. Also fixes a bug where only six method arguments maximum were 
   5925 supported instead of the required seven.
   5926 
   5927 Debugger/AcpiExec: Add a maximum buffer length parameter to AcpiOsGetLine 
   5928 and 
   5929 also return status in order to prevent buffer overruns. See the ACPICA 
   5930 reference for details and syntax. ACPICA BZ 921
   5931 
   5932 iASL: Cleaned up support for Berkeley yacc. A general cleanup of code and 
   5933 makefiles to simplify support for the two different but similar parser 
   5934 generators, bison and yacc.
   5935 
   5936 Updated the generic unix makefile for gcc 4. The default gcc version is 
   5937 now 
   5938 expected to be 4 or greater, since options specific to gcc 4 are used.
   5939 
   5940 ----------------------------------------
   5941 13 April 2011. Summary of changes for version 20110413:
   5942 
   5943 1) ACPI CA Core Subsystem:
   5944 
   5945 Implemented support to execute a so-called "orphan" _REG method under the 
   5946 EC 
   5947 device. This change will force the execution of a _REG method underneath 
   5948 the 
   5949 EC 
   5950 device even if there is no corresponding operation region of type 
   5951 EmbeddedControl. Fixes a problem seen on some machines and apparently is 
   5952 compatible with Windows behavior. ACPICA BZ 875.
   5953 
   5954 Added more predefined methods that are eligible for automatic NULL 
   5955 package 
   5956 element removal. This change adds another group of predefined names to 
   5957 the 
   5958 list 
   5959 of names that can be repaired by having NULL package elements dynamically 
   5960 removed. This group are those methods that return a single variable-
   5961 length 
   5962 package containing simple data types such as integers, buffers, strings. 
   5963 This 
   5964 includes: _ALx, _BCL, _CID,_ DOD, _EDL, _FIX, _PCL, _PLD, _PMD, _PRx, 
   5965 _PSL, 
   5966 _Sx, 
   5967 and _TZD. ACPICA BZ 914.
   5968 
   5969 Split and segregated all internal global lock functions to a new file, 
   5970 evglock.c.
   5971 
   5972 Updated internal address SpaceID for DataTable regions. Moved this 
   5973 internal 
   5974 space 
   5975 id in preparation for ACPI 5.0 changes that will include some new space 
   5976 IDs. 
   5977 This 
   5978 change should not affect user/host code.
   5979 
   5980 Example Code and Data Size: These are the sizes for the OS-independent 
   5981 acpica.lib 
   5982 produced by the Microsoft Visual C++ 9.0 32-bit compiler. The debug 
   5983 version of 
   5984 the code includes the debug output trace mechanism and has a much larger 
   5985 code 
   5986 and 
   5987 data size.
   5988 
   5989   Previous Release (VC 9.0):
   5990     Non-Debug Version:  89.8K Code, 23.8K Data, 113.6K Total
   5991     Debug Version:     164.2K Code, 67.9K Data, 232.1K Total
   5992   Current Release (VC 9.0):
   5993     Non-Debug Version:  90.0K Code, 23.8K Data, 113.8K Total
   5994     Debug Version:     164.5K Code, 68.0K Data, 232.5K Total
   5995 
   5996 2) iASL Compiler/Disassembler and Tools:
   5997 
   5998 iASL/DTC: Major update for new grammar features. Allow generic data types 
   5999 in 
   6000 custom ACPI tables. Field names are now optional. Any line can be split 
   6001 to 
   6002 multiple lines using the continuation char (\). Large buffers now use 
   6003 line-
   6004 continuation character(s) and no colon on the continuation lines. See the 
   6005 grammar 
   6006 update in the iASL compiler reference. ACPI BZ 910,911. Lin Ming, Bob 
   6007 Moore.
   6008 
   6009 iASL: Mark ASL "Return()" and the simple "Return" as "Null" return 
   6010 statements. 
   6011 Since the parser stuffs a "zero" as the return value for these statements 
   6012 (due 
   6013 to 
   6014 the underlying AML grammar), they were seen as "return with value" by the 
   6015 iASL 
   6016 semantic checking. They are now seen correctly as "null" return 
   6017 statements.
   6018 
   6019 iASL: Check if a_REG declaration has a corresponding Operation Region. 
   6020 Adds a 
   6021 check for each _REG to ensure that there is in fact a corresponding 
   6022 operation 
   6023 region declaration in the same scope. If not, the _REG method is not very 
   6024 useful 
   6025 since it probably won't be executed. ACPICA BZ 915.
   6026 
   6027 iASL/DTC: Finish support for expression evaluation. Added a new 
   6028 expression 
   6029 parser 
   6030 that implements c-style operator precedence and parenthesization. ACPICA 
   6031 bugzilla 
   6032 908.
   6033 
   6034 Disassembler/DTC: Remove support for () and <> style comments in data 
   6035 tables. 
   6036 Now 
   6037 that DTC has full expression support, we don't want to have comment 
   6038 strings 
   6039 that 
   6040 start with a parentheses or a less-than symbol. Now, only the standard /* 
   6041 and 
   6042 // 
   6043 comments are supported, as well as the bracket [] comments.
   6044 
   6045 AcpiXtract: Fix for RSDP and dynamic SSDT extraction. These tables have 
   6046 "unusual" 
   6047 headers in the acpidump file. Update the header validation to support 
   6048 these 
   6049 tables. Problem introduced in previous AcpiXtract version in the change 
   6050 to 
   6051 support "wrong checksum" error messages emitted by acpidump utility.
   6052 
   6053 iASL: Add a * option to generate all template files (as a synonym for 
   6054 ALL) 
   6055 as 
   6056 in 
   6057 "iasl -T *" or "iasl -T ALL".
   6058 
   6059 iASL/DTC: Do not abort compiler on fatal errors. We do not want to 
   6060 completely 
   6061 abort the compiler on "fatal" errors, simply should abort the current 
   6062 compile. 
   6063 This allows multiple compiles with a single (possibly wildcard) compiler 
   6064 invocation.
   6065 
   6066 ----------------------------------------
   6067 16 March 2011. Summary of changes for version 20110316:
   6068 
   6069 1) ACPI CA Core Subsystem:
   6070 
   6071 Fixed a problem caused by a _PRW method appearing at the namespace root 
   6072 scope 
   6073 during the setup of wake GPEs. A fault could occur if a _PRW directly 
   6074 under 
   6075 the 
   6076 root object was passed to the AcpiSetupGpeForWake interface. Lin Ming.
   6077 
   6078 Implemented support for "spurious" Global Lock interrupts. On some 
   6079 systems, a 
   6080 global lock interrupt can occur without the pending flag being set. Upon 
   6081 a 
   6082 GL 
   6083 interrupt, we now ensure that a thread is actually waiting for the lock 
   6084 before 
   6085 signaling GL availability. Rafael Wysocki, Bob Moore.
   6086 
   6087 Example Code and Data Size: These are the sizes for the OS-independent 
   6088 acpica.lib 
   6089 produced by the Microsoft Visual C++ 9.0 32-bit compiler. The debug 
   6090 version of 
   6091 the code includes the debug output trace mechanism and has a much larger 
   6092 code 
   6093 and 
   6094 data size.
   6095 
   6096   Previous Release (VC 9.0):
   6097     Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
   6098     Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
   6099   Current Release (VC 9.0):
   6100     Non-Debug Version:  89.8K Code, 23.8K Data, 113.6K Total
   6101     Debug Version:     164.2K Code, 67.9K Data, 232.1K Total
   6102 
   6103 2) iASL Compiler/Disassembler and Tools:
   6104 
   6105 Implemented full support for the "SLIC" ACPI table. Includes support in 
   6106 the 
   6107 header files, disassembler, table compiler, and template generator. Bob 
   6108 Moore, 
   6109 Lin Ming.
   6110 
   6111 AcpiXtract: Correctly handle embedded comments and messages from 
   6112 AcpiDump. 
   6113 Apparently some or all versions of acpidump will occasionally emit a 
   6114 comment 
   6115 like 
   6116 "Wrong checksum", etc., into the dump file. This was causing problems for 
   6117 AcpiXtract. ACPICA BZ 905.
   6118 
   6119 iASL: Fix the Linux makefile by removing an inadvertent double file 
   6120 inclusion. 
   6121 ACPICA BZ 913.
   6122 
   6123 AcpiExec: Update installation of operation region handlers. Install one 
   6124 handler 
   6125 for a user-defined address space. This is used by the ASL test suite 
   6126 (ASLTS).
   6127 
   6128 ----------------------------------------
   6129 11 February 2011. Summary of changes for version 20110211:
   6130 
   6131 1) ACPI CA Core Subsystem:
   6132 
   6133 Added a mechanism to defer _REG methods for some early-installed 
   6134 handlers. 
   6135 Most user handlers should be installed before call to 
   6136 AcpiEnableSubsystem. 
   6137 However, Event handlers and region handlers should be installed after 
   6138 AcpiInitializeObjects. Override handlers for the "default" regions should 
   6139 be 
   6140 installed early, however. This change executes all _REG methods for the 
   6141 default regions (Memory/IO/PCI/DataTable) simultaneously to prevent any 
   6142 chicken/egg issues between them. ACPICA BZ 848.
   6143 
   6144 Implemented an optimization for GPE detection. This optimization will 
   6145 simply 
   6146 ignore GPE registers that contain no enabled GPEs -- there is no need to 
   6147 read the register since this information is available internally. This 
   6148 becomes more important on machines with a large GPE space. ACPICA 
   6149 bugzilla 
   6150 884. Lin Ming. Suggestion from Joe Liu.
   6151 
   6152 Removed all use of the highly unreliable FADT revision field. The 
   6153 revision 
   6154 number in the FADT has been found to be completely unreliable and cannot 
   6155 be 
   6156 trusted. Only the actual table length can be used to infer the version. 
   6157 This 
   6158 change updates the ACPICA core and the disassembler so that both no 
   6159 longer 
   6160 even look at the FADT version and instead depend solely upon the FADT 
   6161 length.
   6162 
   6163 Fix an unresolved name issue for the no-debug and no-error-message source 
   6164 generation cases. The _AcpiModuleName was left undefined in these cases, 
   6165 but 
   6166 it is actually needed as a parameter to some interfaces. Define 
   6167 _AcpiModuleName as a null string in these cases. ACPICA Bugzilla 888.
   6168 
   6169 Split several large files (makefiles and project files updated)
   6170   utglobal.c   -> utdecode.c
   6171   dbcomds.c    -> dbmethod.c dbnames.c
   6172   dsopcode.c   -> dsargs.c dscontrol.c
   6173   dsload.c     -> dsload2.c
   6174   aslanalyze.c -> aslbtypes.c aslwalks.c
   6175 
   6176 Example Code and Data Size: These are the sizes for the OS-independent 
   6177 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   6178 debug version of the code includes the debug output trace mechanism and 
   6179 has 
   6180 a much larger code and data size.
   6181 
   6182   Previous Release (VC 9.0):
   6183     Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
   6184     Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
   6185   Current Release (VC 9.0):
   6186     Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
   6187     Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
   6188 
   6189 2) iASL Compiler/Disassembler and Tools:
   6190 
   6191 iASL: Implemented the predefined macros __LINE__, __FILE__, and __DATE__. 
   6192 These are useful C-style macros with the standard definitions. ACPICA 
   6193 bugzilla 898.
   6194 
   6195 iASL/DTC: Added support for integer expressions and labels. Support for 
   6196 full 
   6197 expressions for all integer fields in all ACPI tables. Support for labels 
   6198 in 
   6199 "generic" portions of tables such as UEFI. See the iASL reference manual.
   6200 
   6201 Debugger: Added a command to display the status of global handlers. The 
   6202 "handlers" command will display op region, fixed event, and miscellaneous 
   6203 global handlers. installation status -- and for op regions, whether 
   6204 default 
   6205 or user-installed handler will be used.
   6206 
   6207 iASL: Warn if reserved method incorrectly returns a value. Many 
   6208 predefined 
   6209 names are defined such that they do not return a value. If implemented as 
   6210 a 
   6211 method, issue a warning if such a name explicitly returns a value. ACPICA 
   6212 Bugzilla 855.
   6213 
   6214 iASL: Added detection of GPE method name conflicts. Detects a conflict 
   6215 where 
   6216 there are two GPE methods of the form _Lxy and _Exy in the same scope. 
   6217 (For 
   6218 example, _L1D and _E1D in the same scope.) ACPICA bugzilla 848.
   6219 
   6220 iASL/DTC: Fixed a couple input scanner issues with comments and line 
   6221 numbers. Comment remover could get confused and miss a comment ending. 
   6222 Fixed 
   6223 a problem with line counter maintenance.
   6224 
   6225 iASL/DTC: Reduced the severity of some errors from fatal to error. There 
   6226 is 
   6227 no need to abort on simple errors within a field definition.
   6228 
   6229 Debugger: Simplified the output of the help command. All help output now 
   6230 in 
   6231 a single screen, instead of help subcommands. ACPICA Bugzilla 897.
   6232 
   6233 ----------------------------------------
   6234 12 January 2011. Summary of changes for version 20110112:
   6235 
   6236 1) ACPI CA Core Subsystem:
   6237 
   6238 Fixed a race condition between method execution and namespace walks that 
   6239 can 
   6240 possibly cause a fault. The problem was apparently introduced in version 
   6241 20100528 as a result of a performance optimization that reduces the 
   6242 number 
   6243 of 
   6244 namespace walks upon method exit by using the delete_namespace_subtree 
   6245 function instead of the delete_namespace_by_owner function used 
   6246 previously. 
   6247 Bug is a missing namespace lock in the delete_namespace_subtree function. 
   6248 dana.myers (a] oracle.com
   6249 
   6250 Fixed several issues and a possible fault with the automatic "serialized" 
   6251 method support. History: This support changes a method to "serialized" on 
   6252 the 
   6253 fly if the method generates an AE_ALREADY_EXISTS error, indicating the 
   6254 possibility that it cannot handle reentrancy. This fix repairs a couple 
   6255 of 
   6256 issues seen in the field, especially on machines with many cores:
   6257 
   6258     1) Delete method children only upon the exit of the last thread,
   6259        so as to not delete objects out from under other running threads
   6260       (and possibly causing a fault.)
   6261     2) Set the "serialized" bit for the method only upon the exit of the
   6262        Last thread, so as to not cause deadlock when running threads
   6263        attempt to exit.
   6264     3) Cleanup the use of the AML "MethodFlags" and internal method flags
   6265        so that there is no longer any confusion between the two.
   6266 
   6267     Lin Ming, Bob Moore. Reported by dana.myers (a] oracle.com.
   6268 
   6269 Debugger: Now lock the namespace for duration of a namespace dump. 
   6270 Prevents 
   6271 issues if the namespace is changing dynamically underneath the debugger. 
   6272 Especially affects temporary namespace nodes, since the debugger displays 
   6273 these also.
   6274 
   6275 Updated the ordering of include files. The ACPICA headers should appear 
   6276 before any compiler-specific headers (stdio.h, etc.) so that acenv.h can 
   6277 set 
   6278 any necessary compiler-specific defines, etc. Affects the ACPI-related 
   6279 tools 
   6280 and utilities.
   6281 
   6282 Updated all ACPICA copyrights and signons to 2011. Added the 2011 
   6283 copyright 
   6284 to all module headers and signons, including the Linux header. This 
   6285 affects 
   6286 virtually every file in the ACPICA core subsystem, iASL compiler, and all 
   6287 utilities.
   6288 
   6289 Added project files for MS Visual Studio 2008 (VC++ 9.0). The original 
   6290 project files for VC++ 6.0 are now obsolete. New project files can be 
   6291 found 
   6292 under acpica/generate/msvc9. See acpica/generate/msvc9/readme.txt for 
   6293 details.
   6294 
   6295 Example Code and Data Size: These are the sizes for the OS-independent 
   6296 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
   6297 debug version of the code includes the debug output trace mechanism and 
   6298 has a 
   6299 much larger code and data size.
   6300 
   6301   Previous Release (VC 6.0):
   6302     Non-Debug Version:  89.8K Code, 18.9K Data, 108.7K Total
   6303     Debug Version:     166.6K Code, 52.1K Data, 218.7K Total
   6304   Current Release (VC 9.0):
   6305     Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
   6306     Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
   6307 
   6308 2) iASL Compiler/Disassembler and Tools:
   6309 
   6310 iASL: Added generic data types to the Data Table compiler. Add "generic" 
   6311 data 
   6312 types such as UINT32, String, Unicode, etc., to simplify the generation 
   6313 of 
   6314 platform-defined tables such as UEFI. Lin Ming.
   6315 
   6316 iASL: Added listing support for the Data Table Compiler. Adds listing 
   6317 support 
   6318 (-l) to display actual binary output for each line of input code.
   6319 
   6320 ----------------------------------------
   6321 09 December 2010. Summary of changes for version 20101209:
   6322 
   6323 1) ACPI CA Core Subsystem:
   6324 
   6325 Completed the major overhaul of the GPE support code that was begun in 
   6326 July 
   6327 2010. Major features include: removal of _PRW execution in ACPICA (host 
   6328 executes _PRWs anyway), cleanup of "wake" GPE interfaces and processing, 
   6329 changes to existing interfaces, simplification of GPE handler operation, 
   6330 and 
   6331 a handful of new interfaces:
   6332 
   6333     AcpiUpdateAllGpes
   6334     AcpiFinishGpe
   6335     AcpiSetupGpeForWake
   6336     AcpiSetGpeWakeMask
   6337     One new file, evxfgpe.c to consolidate all external GPE interfaces.
   6338 
   6339 See the ACPICA Programmer Reference for full details and programming 
   6340 information. See the new section 4.4 "General Purpose Event (GPE) 
   6341 Support" 
   6342 for a full overview, and section 8.7 "ACPI General Purpose Event 
   6343 Management" 
   6344 for programming details. ACPICA BZ 858,870,877. Matthew Garrett, Lin 
   6345 Ming, 
   6346 Bob Moore, Rafael Wysocki.
   6347 
   6348 Implemented a new GPE feature for Windows compatibility, the "Implicit 
   6349 Wake 
   6350 GPE Notify". This feature will automatically issue a Notify(2) on a 
   6351 device 
   6352 when a Wake GPE is received if there is no corresponding GPE method or 
   6353 handler. ACPICA BZ 870.
   6354 
   6355 Fixed a problem with the Scope() operator during table parse and load 
   6356 phase. 
   6357 During load phase (table load or method execution), the scope operator 
   6358 should 
   6359 not enter the target into the namespace. Instead, it should open a new 
   6360 scope 
   6361 at the target location. Linux BZ 19462, ACPICA BZ 882.
   6362 
   6363 Example Code and Data Size: These are the sizes for the OS-independent 
   6364 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   6365 debug version of the code includes the debug output trace mechanism and 
   6366 has a 
   6367 much larger code and data size.
   6368 
   6369   Previous Release:
   6370     Non-Debug Version:  89.8K Code, 18.9K Data, 108.7K Total
   6371     Debug Version:     166.6K Code, 52.1K Data, 218.7K Total
   6372   Current Release:
   6373     Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
   6374     Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
   6375 
   6376 2) iASL Compiler/Disassembler and Tools:
   6377 
   6378 iASL: Relax the alphanumeric restriction on _CID strings. These strings 
   6379 are 
   6380 "bus-specific" per the ACPI specification, and therefore any characters 
   6381 are 
   6382 acceptable. The only checks that can be performed are for a null string 
   6383 and 
   6384 perhaps for a leading asterisk. ACPICA BZ 886.
   6385 
   6386 iASL: Fixed a problem where a syntax error that caused a premature EOF 
   6387 condition on the source file emitted a very confusing error message. The 
   6388 premature EOF is now detected correctly. ACPICA BZ 891.
   6389 
   6390 Disassembler: Decode the AccessSize within a Generic Address Structure 
   6391 (byte 
   6392 access, word access, etc.) Note, this field does not allow arbitrary bit 
   6393 access, the size is encoded as 1=byte, 2=word, 3=dword, and 4=qword.
   6394 
   6395 New: AcpiNames utility - Example namespace dump utility. Shows an example 
   6396 of 
   6397 ACPICA configuration for a minimal namespace dump utility. Uses table and 
   6398 namespace managers, but no AML interpreter. Does not add any 
   6399 functionality 
   6400 over AcpiExec, it is a subset of AcpiExec. The purpose is to show how to 
   6401 partition and configure ACPICA. ACPICA BZ 883.
   6402 
   6403 AML Debugger: Increased the debugger buffer size for method return 
   6404 objects. 
   6405 Was 4K, increased to 16K. Also enhanced error messages for debugger 
   6406 method 
   6407 execution, including the buffer overflow case.
   6408 
   6409 ----------------------------------------
   6410 13 October 2010. Summary of changes for version 20101013:
   6411 
   6412 1) ACPI CA Core Subsystem:
   6413 
   6414 Added support to clear the PCIEXP_WAKE event. When clearing ACPI events, 
   6415 now 
   6416 clear the PCIEXP_WAKE_STS bit in the ACPI PM1 Status Register, via 
   6417 HwClearAcpiStatus. Original change from Colin King. ACPICA BZ 880.
   6418 
   6419 Changed the type of the predefined namespace object _TZ from ThermalZone 
   6420 to 
   6421 Device. This was found to be confusing to the host software that 
   6422 processes 
   6423 the various thermal zones, since _TZ is not really a ThermalZone. 
   6424 However, 
   6425 a 
   6426 Notify() can still be performed on it. ACPICA BZ 876. Suggestion from Rui 
   6427 Zhang.
   6428 
   6429 Added Windows Vista SP2 to the list of supported _OSI strings. The actual 
   6430 string is "Windows 2006 SP2".
   6431 
   6432 Eliminated duplicate code in AcpiUtExecute* functions. Now that the 
   6433 nsrepair 
   6434 code automatically repairs _HID-related strings, this type of code is no 
   6435 longer needed in Execute_HID, Execute_CID, and Execute_UID. ACPICA BZ 
   6436 878.
   6437 
   6438 Example Code and Data Size: These are the sizes for the OS-independent 
   6439 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   6440 debug version of the code includes the debug output trace mechanism and 
   6441 has a 
   6442 much larger code and data size.
   6443 
   6444   Previous Release:
   6445     Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
   6446     Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
   6447   Current Release:
   6448     Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
   6449     Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
   6450 
   6451 2) iASL Compiler/Disassembler and Tools:
   6452 
   6453 iASL: Implemented additional compile-time validation for _HID strings. 
   6454 The 
   6455 non-hex prefix (such as "PNP" or "ACPI") must be uppercase, and the 
   6456 length 
   6457 of 
   6458 the string must be exactly seven or eight characters. For both _HID and 
   6459 _CID 
   6460 strings, all characters must be alphanumeric. ACPICA BZ 874.
   6461 
   6462 iASL: Allow certain "null" resource descriptors. Some BIOS code creates 
   6463 descriptors that are mostly or all zeros, with the expectation that they 
   6464 will 
   6465 be filled in at runtime. iASL now allows this as long as there is a 
   6466 "resource 
   6467 tag" (name) associated with the descriptor, which gives the ASL a handle 
   6468 needed to modify the descriptor. ACPICA BZ 873.
   6469 
   6470 Added single-thread support to the generic Unix application OSL. 
   6471 Primarily 
   6472 for iASL support, this change removes the use of semaphores in the 
   6473 single-
   6474 threaded ACPICA tools/applications - increasing performance. The 
   6475 _MULTI_THREADED option was replaced by the (reverse) ACPI_SINGLE_THREADED 
   6476 option. ACPICA BZ 879.
   6477 
   6478 AcpiExec: several fixes for the 64-bit version. Adds XSDT support and 
   6479 support 
   6480 for 64-bit DSDT/FACS addresses in the FADT. Lin Ming.
   6481 
   6482 iASL: Moved all compiler messages to a new file, aslmessages.h.
   6483 
   6484 ----------------------------------------
   6485 15 September 2010. Summary of changes for version 20100915:
   6486 
   6487 1) ACPI CA Core Subsystem:
   6488 
   6489 Removed the AcpiOsDerivePciId OSL interface. The various host 
   6490 implementations 
   6491 of this function were not OS-dependent and are now obsolete and can be 
   6492 removed from all host OSLs. This function has been replaced by 
   6493 AcpiHwDerivePciId, which is now part of the ACPICA core code. 
   6494 AcpiHwDerivePciId has been implemented without recursion. Adds one new 
   6495 module, hwpci.c. ACPICA BZ 857.
   6496 
   6497 Implemented a dynamic repair for _HID and _CID strings. The following 
   6498 problems are now repaired at runtime: 1) Remove a leading asterisk in the 
   6499 string, and 2) the entire string is uppercased. Both repairs are in 
   6500 accordance with the ACPI specification and will simplify host driver 
   6501 code. 
   6502 ACPICA BZ 871.
   6503 
   6504 The ACPI_THREAD_ID type is no longer configurable, internally it is now 
   6505 always UINT64. This simplifies the ACPICA code, especially any printf 
   6506 output. 
   6507 UINT64 is the only common data type for all thread_id types across all 
   6508 operating systems. It is now up to the host OSL to cast the native 
   6509 thread_id 
   6510 type to UINT64 before returning the value to ACPICA (via 
   6511 AcpiOsGetThreadId). 
   6512 Lin Ming, Bob Moore.
   6513 
   6514 Added the ACPI_INLINE type to enhance the ACPICA configuration. The 
   6515 "inline" 
   6516 keyword is not standard across compilers, and this type allows inline to 
   6517 be 
   6518 configured on a per-compiler basis. Lin Ming.
   6519 
   6520 Made the system global AcpiGbl_SystemAwakeAndRunning publically 
   6521 available. 
   6522 Added an extern for this boolean in acpixf.h. Some hosts utilize this 
   6523 value 
   6524 during suspend/restore operations. ACPICA BZ 869.
   6525 
   6526 All code that implements error/warning messages with the "ACPI:" prefix 
   6527 has 
   6528 been moved to a new module, utxferror.c.
   6529 
   6530 The UINT64_OVERLAY was moved to utmath.c, which is the only module where 
   6531 it 
   6532 is used. ACPICA BZ 829. Lin Ming, Bob Moore.
   6533 
   6534 Example Code and Data Size: These are the sizes for the OS-independent 
   6535 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   6536 debug version of the code includes the debug output trace mechanism and 
   6537 has a 
   6538 much larger code and data size.
   6539 
   6540   Previous Release:
   6541     Non-Debug Version:  89.1K Code, 19.0K Data, 108.1K Total
   6542     Debug Version:     165.1K Code, 51.9K Data, 217.0K Total
   6543   Current Release:
   6544     Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
   6545     Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
   6546 
   6547 2) iASL Compiler/Disassembler and Tools:
   6548 
   6549 iASL/Disassembler: Write ACPI errors to stderr instead of the output 
   6550 file. 
   6551 This keeps the output files free of random error messages that may 
   6552 originate 
   6553 from within the namespace/interpreter code. Used this opportunity to 
   6554 merge 
   6555 all ACPI:-style messages into a single new module, utxferror.c. ACPICA BZ 
   6556 866. Lin Ming, Bob Moore.
   6557 
   6558 Tools: update some printfs for ansi warnings on size_t. Handle width 
   6559 change 
   6560 of size_t on 32-bit versus 64-bit generations. Lin Ming.
   6561 
   6562 ----------------------------------------
   6563 06 August 2010. Summary of changes for version 20100806:
   6564 
   6565 1) ACPI CA Core Subsystem:
   6566 
   6567 Designed and implemented a new host interface to the _OSI support code. 
   6568 This 
   6569 will allow the host to dynamically add or remove multiple _OSI strings, 
   6570 as 
   6571 well as install an optional handler that is called for each _OSI 
   6572 invocation. 
   6573 Also added a new AML debugger command, 'osi' to display and modify the 
   6574 global 
   6575 _OSI string table, and test support in the AcpiExec utility. See the 
   6576 ACPICA 
   6577 reference manual for full details. Lin Ming, Bob Moore. ACPICA BZ 836.
   6578 New Functions:
   6579     AcpiInstallInterface - Add an _OSI string.
   6580     AcpiRemoveInterface - Delete an _OSI string.
   6581     AcpiInstallInterfaceHandler - Install optional _OSI handler.
   6582 Obsolete Functions:
   6583     AcpiOsValidateInterface - no longer used.
   6584 New Files:
   6585     source/components/utilities/utosi.c
   6586 
   6587 Re-introduced the support to enable multi-byte transfers for Embedded 
   6588 Controller (EC) operation regions. A reported problem was found to be a 
   6589 bug 
   6590 in the host OS, not in the multi-byte support. Previously, the maximum 
   6591 data 
   6592 size passed to the EC operation region handler was a single byte. There 
   6593 are 
   6594 often EC Fields larger than one byte that need to be transferred, and it 
   6595 is 
   6596 useful for the EC driver to lock these as a single transaction. This 
   6597 change 
   6598 enables single transfers larger than 8 bits. This effectively changes the 
   6599 access to the EC space from ByteAcc to AnyAcc, and will probably require 
   6600 changes to the host OS Embedded Controller driver to enable 16/32/64/256-
   6601 bit 
   6602 transfers in addition to 8-bit transfers. Alexey Starikovskiy, Lin Ming.
   6603 
   6604 Fixed a problem with the prototype for AcpiOsReadPciConfiguration. The 
   6605 prototype in acpiosxf.h had the output value pointer as a (void *).
   6606 It should be a (UINT64 *). This may affect some host OSL code.
   6607 
   6608 Fixed a couple problems with the recently modified Linux makefiles for 
   6609 iASL 
   6610 and AcpiExec. These new makefiles place the generated object files in the 
   6611 local directory so that there can be no collisions between the files that 
   6612 are 
   6613 shared between them that are compiled with different options.
   6614 
   6615 Example Code and Data Size: These are the sizes for the OS-independent 
   6616 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   6617 debug version of the code includes the debug output trace mechanism and 
   6618 has a 
   6619 much larger code and data size.
   6620 
   6621   Previous Release:
   6622     Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
   6623     Debug Version:     164.0K Code, 51.5K Data, 215.5K Total
   6624   Current Release:
   6625     Non-Debug Version:  89.1K Code, 19.0K Data, 108.1K Total
   6626     Debug Version:     165.1K Code, 51.9K Data, 217.0K Total
   6627 
   6628 2) iASL Compiler/Disassembler and Tools:
   6629 
   6630 iASL/Disassembler: Added a new option (-da, "disassemble all") to load 
   6631 the 
   6632 namespace from and disassemble an entire group of AML files. Useful for 
   6633 loading all of the AML tables for a given machine (DSDT, SSDT1...SSDTn) 
   6634 and 
   6635 disassembling with one simple command. ACPICA BZ 865. Lin Ming.
   6636 
   6637 iASL: Allow multiple invocations of -e option. This change allows 
   6638 multiple 
   6639 uses of -e on the command line: "-e ssdt1.dat -e ssdt2.dat". ACPICA BZ 
   6640 834. 
   6641 Lin Ming.
   6642 
   6643 ----------------------------------------
   6644 02 July 2010. Summary of changes for version 20100702:
   6645 
   6646 1) ACPI CA Core Subsystem:
   6647 
   6648 Implemented several updates to the recently added GPE reference count 
   6649 support. The model for "wake" GPEs is changing to give the host OS 
   6650 complete 
   6651 control of these GPEs. Eventually, the ACPICA core will not execute any 
   6652 _PRW 
   6653 methods, since the host already must execute them. Also, additional 
   6654 changes 
   6655 were made to help ensure that the reference counts are kept in proper 
   6656 synchronization with reality. Rafael J. Wysocki.
   6657 
   6658 1) Ensure that GPEs are not enabled twice during initialization.
   6659 2) Ensure that GPE enable masks stay in sync with the reference count.
   6660 3) Do not inadvertently enable GPEs when writing GPE registers.
   6661 4) Remove the internal wake reference counter and add new AcpiGpeWakeup 
   6662 interface. This interface will set or clear individual GPEs for wakeup.
   6663 5) Remove GpeType argument from AcpiEnable and AcpiDisable. These 
   6664 interfaces 
   6665 are now used for "runtime" GPEs only.
   6666 
   6667 Changed the behavior of the GPE install/remove handler interfaces. The 
   6668 GPE 
   6669 is 
   6670 no longer disabled during this process, as it was found to cause problems 
   6671 on 
   6672 some machines. Rafael J. Wysocki.
   6673 
   6674 Reverted a change introduced in version 20100528 to enable Embedded 
   6675 Controller multi-byte transfers. This change was found to cause problems 
   6676 with 
   6677 Index Fields and possibly Bank Fields. It will be reintroduced when these 
   6678 problems have been resolved.
   6679 
   6680 Fixed a problem with references to Alias objects within Package Objects. 
   6681 A 
   6682 reference to an Alias within the definition of a Package was not always 
   6683 resolved properly. Aliases to objects like Processors, Thermal zones, 
   6684 etc. 
   6685 were resolved to the actual object instead of a reference to the object 
   6686 as 
   6687 it 
   6688 should be. Package objects are only allowed to contain integer, string, 
   6689 buffer, package, and reference objects. Redhat bugzilla 608648.
   6690 
   6691 Example Code and Data Size: These are the sizes for the OS-independent 
   6692 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   6693 debug version of the code includes the debug output trace mechanism and 
   6694 has a 
   6695 much larger code and data size.
   6696 
   6697   Previous Release:
   6698     Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
   6699     Debug Version:     164.1K Code, 51.5K Data, 215.6K Total
   6700   Current Release:
   6701     Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
   6702     Debug Version:     164.0K Code, 51.5K Data, 215.5K Total
   6703 
   6704 2) iASL Compiler/Disassembler and Tools:
   6705 
   6706 iASL: Implemented a new compiler subsystem to allow definition and 
   6707 compilation of the non-AML ACPI tables such as FADT, MADT, SRAT, etc. 
   6708 These 
   6709 are called "ACPI Data Tables", and the new compiler is the "Data Table 
   6710 Compiler". This compiler is intended to simplify the existing error-prone 
   6711 process of creating these tables for the BIOS, as well as allowing the 
   6712 disassembly, modification, recompilation, and override of existing ACPI 
   6713 data 
   6714 tables. See the iASL User Guide for detailed information.
   6715 
   6716 iASL: Implemented a new Template Generator option in support of the new 
   6717 Data 
   6718 Table Compiler. This option will create examples of all known ACPI tables 
   6719 that can be used as the basis for table development. See the iASL 
   6720 documentation and the -T option.
   6721 
   6722 Disassembler and headers: Added support for the WDDT ACPI table (Watchdog 
   6723 Descriptor Table).
   6724 
   6725 Updated the Linux makefiles for iASL and AcpiExec to place the generated 
   6726 object files in the local directory so that there can be no collisions 
   6727 between the shared files between them that are generated with different 
   6728 options.
   6729 
   6730 Added support for Mac OS X in the Unix OSL used for iASL and AcpiExec. 
   6731 Use 
   6732 the #define __APPLE__ to enable this support.
   6733 
   6734 ----------------------------------------
   6735 28 May 2010. Summary of changes for version 20100528:
   6736 
   6737 Note: The ACPI 4.0a specification was released on April 5, 2010 and is 
   6738 available at www.acpi.info. This is primarily an errata release.
   6739 
   6740 1) ACPI CA Core Subsystem:
   6741 
   6742 Undefined ACPI tables: We are looking for the definitions for the 
   6743 following 
   6744 ACPI tables that have been seen in the field: ATKG, IEIT, GSCI.
   6745 
   6746 Implemented support to enable multi-byte transfers for Embedded 
   6747 Controller 
   6748 (EC) operation regions. Previously, the maximum data size passed to the 
   6749 EC 
   6750 operation region handler was a single byte. There are often EC Fields 
   6751 larger 
   6752 than one byte that need to be transferred, and it is useful for the EC 
   6753 driver 
   6754 to lock these as a single transaction. This change enables single 
   6755 transfers 
   6756 larger than 8 bits. This effectively changes the access to the EC space 
   6757 from 
   6758 ByteAcc to AnyAcc, and will probably require changes to the host OS 
   6759 Embedded 
   6760 Controller driver to enable 16/32/64/256-bit transfers in addition to 8-
   6761 bit 
   6762 transfers. Alexey Starikovskiy, Lin Ming
   6763 
   6764 Implemented a performance enhancement for namespace search and access. 
   6765 This 
   6766 change enhances the performance of namespace searches and walks by adding 
   6767 a 
   6768 backpointer to the parent in each namespace node. On large namespaces, 
   6769 this 
   6770 change can improve overall ACPI performance by up to 9X. Adding a pointer 
   6771 to 
   6772 each namespace node increases the overall size of the internal namespace 
   6773 by 
   6774 about 5%, since each namespace entry usually consists of both a namespace 
   6775 node and an ACPI operand object. However, this is the first growth of the 
   6776 namespace in ten years. ACPICA bugzilla 817. Alexey Starikovskiy.
   6777 
   6778 Implemented a performance optimization that reduces the number of 
   6779 namespace 
   6780 walks. On control method exit, only walk the namespace if the method is 
   6781 known 
   6782 to have created namespace objects outside of its local scope. Previously, 
   6783 the 
   6784 entire namespace was traversed on each control method exit. This change 
   6785 can 
   6786 improve overall ACPI performance by up to 3X. Alexey Starikovskiy, Bob 
   6787 Moore.
   6788 
   6789 Added support to truncate I/O addresses to 16 bits for Windows 
   6790 compatibility. 
   6791 Some ASL code has been seen in the field that inadvertently has bits set 
   6792 above bit 15. This feature is optional and is enabled if the BIOS 
   6793 requests 
   6794 any Windows OSI strings. It can also be enabled by the host OS. Matthew 
   6795 Garrett, Bob Moore.
   6796 
   6797 Added support to limit the maximum time for the ASL Sleep() operator. To 
   6798 prevent accidental deep sleeps, limit the maximum time that Sleep() will 
   6799 actually sleep. Configurable, the default maximum is two seconds. ACPICA 
   6800 bugzilla 854.
   6801 
   6802 Added run-time validation support for the _WDG and_WED Microsoft 
   6803 predefined 
   6804 methods. These objects are defined by "Windows Instrumentation", and are 
   6805 not 
   6806 part of the ACPI spec. ACPICA BZ 860.
   6807 
   6808 Expanded all statistic counters used during namespace and device 
   6809 initialization from 16 to 32 bits in order to support very large 
   6810 namespaces.
   6811 
   6812 Replaced all instances of %d in printf format specifiers with %u since 
   6813 nearly 
   6814 all integers in ACPICA are unsigned.
   6815 
   6816 Fixed the exception namestring for AE_WAKE_ONLY_GPE. Was incorrectly 
   6817 returned 
   6818 as AE_NO_HANDLER.
   6819 
   6820 Example Code and Data Size: These are the sizes for the OS-independent 
   6821 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   6822 debug version of the code includes the debug output trace mechanism and 
   6823 has a 
   6824 much larger code and data size.
   6825 
   6826   Previous Release:
   6827     Non-Debug Version:  88.4K Code, 18.8K Data, 107.2K Total
   6828     Debug Version:     164.2K Code, 51.5K Data, 215.7K Total
   6829   Current Release:
   6830     Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
   6831     Debug Version:     164.1K Code, 51.5K Data, 215.6K Total
   6832 
   6833 2) iASL Compiler/Disassembler and Tools:
   6834 
   6835 iASL: Added compiler support for the _WDG and_WED Microsoft predefined 
   6836 methods. These objects are defined by "Windows Instrumentation", and are 
   6837 not 
   6838 part of the ACPI spec. ACPICA BZ 860.
   6839 
   6840 AcpiExec: added option to disable the memory tracking mechanism. The -dt 
   6841 option will disable the tracking mechanism, which improves performance 
   6842 considerably.
   6843 
   6844 AcpiExec: Restructured the command line options into -d (disable) and -e 
   6845 (enable) options.
   6846 
   6847 ----------------------------------------
   6848 28 April 2010. Summary of changes for version 20100428:
   6849 
   6850 1) ACPI CA Core Subsystem:
   6851 
   6852 Implemented GPE support for dynamically loaded ACPI tables. For all GPEs, 
   6853 including FADT-based and GPE Block Devices, execute any _PRW methods in 
   6854 the 
   6855 new table, and process any _Lxx/_Exx GPE methods in the new table. Any 
   6856 runtime GPE that is referenced by an _Lxx/_Exx method in the new table is 
   6857 immediately enabled. Handles the FADT-defined GPEs as well as GPE Block 
   6858 Devices. Provides compatibility with other ACPI implementations. Two new 
   6859 files added, evgpeinit.c and evgpeutil.c. ACPICA BZ 833. Lin Ming, Bob 
   6860 Moore.
   6861 
   6862 Fixed a regression introduced in version 20100331 within the table 
   6863 manager 
   6864 where initial table loading could fail. This was introduced in the fix 
   6865 for 
   6866 AcpiReallocateRootTable. Also, renamed some of fields in the table 
   6867 manager 
   6868 data structures to clarify their meaning and use.
   6869 
   6870 Fixed a possible allocation overrun during internal object copy in 
   6871 AcpiUtCopySimpleObject. The original code did not correctly handle the 
   6872 case 
   6873 where the object to be copied was a namespace node. Lin Ming. ACPICA BZ 
   6874 847.
   6875 
   6876 Updated the allocation dump routine, AcpiUtDumpAllocation and fixed a 
   6877 possible access beyond end-of-allocation. Also, now fully validate 
   6878 descriptor 
   6879 (size and type) before output. Lin Ming, Bob Moore. ACPICA BZ 847
   6880 
   6881 Example Code and Data Size: These are the sizes for the OS-independent 
   6882 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   6883 debug version of the code includes the debug output trace mechanism and 
   6884 has a 
   6885 much larger code and data size.
   6886 
   6887   Previous Release:
   6888     Non-Debug Version:  87.9K Code, 18.6K Data, 106.5K Total
   6889     Debug Version:     163.5K Code, 51.3K Data, 214.8K Total
   6890   Current Release:
   6891     Non-Debug Version:  88.4K Code, 18.8K Data, 107.2K Total
   6892     Debug Version:     164.2K Code, 51.5K Data, 215.7K Total
   6893 
   6894 2) iASL Compiler/Disassembler and Tools:
   6895 
   6896 iASL: Implemented Min/Max/Len/Gran validation for address resource 
   6897 descriptors. This change implements validation for the address fields 
   6898 that 
   6899 are common to all address-type resource descriptors. These checks are 
   6900 implemented: Checks for valid Min/Max, length within the Min/Max window, 
   6901 valid granularity, Min/Max a multiple of granularity, and _MIF/_MAF as 
   6902 per 
   6903 table 6-40 in the ACPI 4.0a specification. Also split the large 
   6904 aslrestype1.c 
   6905 and aslrestype2.c files into five new files. ACPICA BZ 840.
   6906 
   6907 iASL: Added support for the _Wxx predefined names. This support was 
   6908 missing 
   6909 and these names were not recognized by the compiler as valid predefined 
   6910 names. ACPICA BZ 851.
   6911 
   6912 iASL: Added an error for all predefined names that are defined to return 
   6913 no 
   6914 value and thus must be implemented as Control Methods. These include all 
   6915 of 
   6916 the _Lxx, _Exx, _Wxx, and _Qxx names, as well as some other miscellaneous 
   6917 names such as _DIS, _INI, _IRC, _OFF, _ON, and _PSx. ACPICA BZ 850, 856.
   6918 
   6919 iASL: Implemented the -ts option to emit hex AML data in ASL format, as 
   6920 an 
   6921 ASL Buffer. Allows ACPI tables to be easily included within ASL files, to 
   6922 be 
   6923 dynamically loaded via the Load() operator. Also cleaned up output for 
   6924 the 
   6925 -
   6926 ta and -tc options. ACPICA BZ 853.
   6927 
   6928 Tests: Added a new file with examples of extended iASL error checking. 
   6929 Demonstrates the advanced error checking ability of the iASL compiler. 
   6930 Available at tests/misc/badcode.asl.
   6931 
   6932 ----------------------------------------
   6933 31 March 2010. Summary of changes for version 20100331:
   6934 
   6935 1) ACPI CA Core Subsystem:
   6936 
   6937 Completed a major update for the GPE support in order to improve support 
   6938 for 
   6939 shared GPEs and to simplify both host OS and ACPICA code. Added a 
   6940 reference 
   6941 count mechanism to support shared GPEs that require multiple device 
   6942 drivers. 
   6943 Several external interfaces have changed. One external interface has been 
   6944 removed. One new external interface was added. Most of the GPE external 
   6945 interfaces now use the GPE spinlock instead of the events mutex (and the 
   6946 Flags parameter for many GPE interfaces has been removed.) See the 
   6947 updated 
   6948 ACPICA Programmer Reference for details. Matthew Garrett, Bob Moore, 
   6949 Rafael 
   6950 Wysocki. ACPICA BZ 831.
   6951 
   6952 Changed:
   6953     AcpiEnableGpe, AcpiDisableGpe, AcpiClearGpe, AcpiGetGpeStatus
   6954 Removed:
   6955     AcpiSetGpeType
   6956 New:
   6957     AcpiSetGpe
   6958 
   6959 Implemented write support for DataTable operation regions. These regions 
   6960 are 
   6961 defined via the DataTableRegion() operator. Previously, only read support 
   6962 was 
   6963 implemented. The ACPI specification allows DataTableRegions to be 
   6964 read/write, 
   6965 however.
   6966 
   6967 Implemented a new subsystem option to force a copy of the DSDT to local 
   6968 memory. Optionally copy the entire DSDT to local memory (instead of 
   6969 simply 
   6970 mapping it.) There are some (albeit very rare) BIOSs that corrupt or 
   6971 replace 
   6972 the original DSDT, creating the need for this option. Default is FALSE, 
   6973 do 
   6974 not copy the DSDT.
   6975 
   6976 Implemented detection of a corrupted or replaced DSDT. This change adds 
   6977 support to detect a DSDT that has been corrupted and/or replaced from 
   6978 outside 
   6979 the OS (by firmware). This is typically catastrophic for the system, but 
   6980 has 
   6981 been seen on some machines. Once this problem has been detected, the DSDT 
   6982 copy option can be enabled via system configuration. Lin Ming, Bob Moore.
   6983 
   6984 Fixed two problems with AcpiReallocateRootTable during the root table 
   6985 copy. 
   6986 When copying the root table to the new allocation, the length used was 
   6987 incorrect. The new size was used instead of the current table size, 
   6988 meaning 
   6989 too much data was copied. Also, the count of available slots for ACPI 
   6990 tables 
   6991 was not set correctly. Alexey Starikovskiy, Bob Moore.
   6992 
   6993 Example Code and Data Size: These are the sizes for the OS-independent 
   6994 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   6995 debug version of the code includes the debug output trace mechanism and 
   6996 has a 
   6997 much larger code and data size.
   6998 
   6999   Previous Release:
   7000     Non-Debug Version:  87.5K Code, 18.4K Data, 105.9K Total
   7001     Debug Version:     163.4K Code, 51.1K Data, 214.5K Total
   7002   Current Release:
   7003     Non-Debug Version:  87.9K Code, 18.6K Data, 106.5K Total
   7004     Debug Version:     163.5K Code, 51.3K Data, 214.8K Total
   7005 
   7006 2) iASL Compiler/Disassembler and Tools:
   7007 
   7008 iASL: Implement limited typechecking for values returned from predefined 
   7009 control methods. The type of any returned static (unnamed) object is now 
   7010 validated. For example, Return(1). ACPICA BZ 786.
   7011 
   7012 iASL: Fixed a predefined name object verification regression. Fixes a 
   7013 problem 
   7014 introduced in version 20100304. An error is incorrectly generated if a 
   7015 predefined name is declared as a static named object with a value defined 
   7016 using the keywords "Zero", "One", or "Ones". Lin Ming.
   7017 
   7018 iASL: Added Windows 7 support for the -g option (get local ACPI tables) 
   7019 by 
   7020 reducing the requested registry access rights. ACPICA BZ 842.
   7021 
   7022 Disassembler: fixed a possible fault when generating External() 
   7023 statements. 
   7024 Introduced in commit ae7d6fd: Properly handle externals with parent-
   7025 prefix 
   7026 (carat). Fixes a string length allocation calculation. Lin Ming.
   7027 
   7028 ----------------------------------------
   7029 04 March 2010. Summary of changes for version 20100304:
   7030 
   7031 1) ACPI CA Core Subsystem:
   7032 
   7033 Fixed a possible problem with the AML Mutex handling function 
   7034 AcpiExReleaseMutex where the function could fault under the very rare 
   7035 condition when the interpreter has blocked, the interpreter lock is 
   7036 released, 
   7037 the interpreter is then reentered via the same thread, and attempts to 
   7038 acquire an AML mutex that was previously acquired. FreeBSD report 140979. 
   7039 Lin 
   7040 Ming.
   7041 
   7042 Implemented additional configuration support for the AML "Debug Object". 
   7043 Output from the debug object can now be enabled via a global variable, 
   7044 AcpiGbl_EnableAmlDebugObject. This will assist with remote machine 
   7045 debugging. 
   7046 This debug output is now available in the release version of ACPICA 
   7047 instead 
   7048 of just the debug version. Also, the entire debug output module can now 
   7049 be 
   7050 configured out of the ACPICA build if desired. One new file added, 
   7051 executer/exdebug.c. Lin Ming, Bob Moore.
   7052 
   7053 Added header support for the ACPI MCHI table (Management Controller Host 
   7054 Interface Table). This table was added in ACPI 4.0, but the defining 
   7055 document 
   7056 has only recently become available.
   7057 
   7058 Standardized output of integer values for ACPICA warnings/errors. Always 
   7059 use 
   7060 0x prefix for hex output, always use %u for unsigned integer decimal 
   7061 output. 
   7062 Affects ACPI_INFO, ACPI_ERROR, ACPI_EXCEPTION, and ACPI_WARNING (about 
   7063 400 
   7064 invocations.) These invocations were converted from the original 
   7065 ACPI_DEBUG_PRINT invocations and were not consistent. ACPICA BZ 835.
   7066 
   7067 Example Code and Data Size: These are the sizes for the OS-independent 
   7068 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   7069 debug version of the code includes the debug output trace mechanism and 
   7070 has a 
   7071 much larger code and data size.
   7072 
   7073   Previous Release:
   7074     Non-Debug Version:  87.1K Code, 18.0K Data, 105.1K Total
   7075     Debug Version:     163.5K Code, 50.9K Data, 214.4K Total
   7076   Current Release:
   7077     Non-Debug Version:  87.5K Code, 18.4K Data, 105.9K Total
   7078     Debug Version:     163.4K Code, 51.1K Data, 214.5K Total
   7079 
   7080 2) iASL Compiler/Disassembler and Tools:
   7081 
   7082 iASL: Implemented typechecking support for static (non-control method) 
   7083 predefined named objects that are declared with the Name() operator. For 
   7084 example, the type of this object is now validated to be of type Integer: 
   7085 Name(_BBN, 1). This change migrates the compiler to using the core 
   7086 predefined 
   7087 name table instead of maintaining a local version. Added a new file, 
   7088 aslpredef.c. ACPICA BZ 832.
   7089 
   7090 Disassembler: Added support for the ACPI 4.0 MCHI table.
   7091 
   7092 ----------------------------------------
   7093 21 January 2010. Summary of changes for version 20100121:
   7094 
   7095 1) ACPI CA Core Subsystem:
   7096 
   7097 Added the 2010 copyright to all module headers and signons. This affects 
   7098 virtually every file in the ACPICA core subsystem, the iASL compiler, the 
   7099 tools/utilities, and the test suites.
   7100 
   7101 Implemented a change to the AcpiGetDevices interface to eliminate 
   7102 unnecessary 
   7103 invocations of the _STA method. In the case where a specific _HID is 
   7104 requested, do not run _STA until a _HID match is found. This eliminates 
   7105 potentially dozens of _STA calls during a search for a particular 
   7106 device/HID, 
   7107 which in turn can improve boot times. ACPICA BZ 828. Lin Ming.
   7108 
   7109 Implemented an additional repair for predefined method return values. 
   7110 Attempt 
   7111 to repair unexpected NULL elements within returned Package objects. 
   7112 Create 
   7113 an 
   7114 Integer of value zero, a NULL String, or a zero-length Buffer as 
   7115 appropriate. 
   7116 ACPICA BZ 818. Lin Ming, Bob Moore.
   7117 
   7118 Removed the obsolete ACPI_INTEGER data type. This type was introduced as 
   7119 the 
   7120 code was migrated from ACPI 1.0 (with 32-bit AML integers) to ACPI 2.0 
   7121 (with 
   7122 64-bit AML integers). It is now obsolete and this change removes it from 
   7123 the 
   7124 ACPICA code base, replaced by UINT64. The original typedef has been 
   7125 retained 
   7126 for now for compatibility with existing device driver code. ACPICA BZ 
   7127 824.
   7128 
   7129 Removed the unused UINT32_STRUCT type, and the obsolete Integer64 field 
   7130 in 
   7131 the parse tree object.
   7132 
   7133 Added additional warning options for the gcc-4 generation. Updated the 
   7134 source 
   7135 accordingly. This includes some code restructuring to eliminate 
   7136 unreachable 
   7137 code, elimination of some gotos, elimination of unused return values, 
   7138 some 
   7139 additional casting, and removal of redundant declarations.
   7140 
   7141 Example Code and Data Size: These are the sizes for the OS-independent 
   7142 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   7143 debug version of the code includes the debug output trace mechanism and 
   7144 has a 
   7145 much larger code and data size.
   7146 
   7147   Previous Release:
   7148     Non-Debug Version:  87.0K Code, 18.0K Data, 105.0K Total
   7149     Debug Version:     163.4K Code, 50.8K Data, 214.2K Total
   7150   Current Release:
   7151     Non-Debug Version:  87.1K Code, 18.0K Data, 105.1K Total
   7152     Debug Version:     163.5K Code, 50.9K Data, 214.4K Total
   7153 
   7154 2) iASL Compiler/Disassembler and Tools:
   7155 
   7156 No functional changes for this release.
   7157 
   7158 ----------------------------------------
   7159 14 December 2009. Summary of changes for version 20091214:
   7160 
   7161 1) ACPI CA Core Subsystem:
   7162 
   7163 Enhanced automatic data type conversions for predefined name repairs. 
   7164 This 
   7165 change expands the automatic repairs/conversions for predefined name 
   7166 return 
   7167 values to make Integers, Strings, and Buffers fully interchangeable. 
   7168 Also, 
   7169 a 
   7170 Buffer can be converted to a Package of Integers if necessary. The 
   7171 nsrepair.c 
   7172 module was completely restructured. Lin Ming, Bob Moore.
   7173 
   7174 Implemented automatic removal of null package elements during predefined 
   7175 name 
   7176 repairs. This change will automatically remove embedded and trailing NULL 
   7177 package elements from returned package objects that are defined to 
   7178 contain 
   7179 a 
   7180 variable number of sub-packages. The driver is then presented with a 
   7181 package 
   7182 with no null elements to deal with. ACPICA BZ 819.
   7183 
   7184 Implemented a repair for the predefined _FDE and _GTM names. The expected 
   7185 return value for both names is a Buffer of 5 DWORDs. This repair fixes 
   7186 two 
   7187 possible problems (both seen in the field), where a package of integers 
   7188 is 
   7189 returned, or a buffer of BYTEs is returned. With assistance from Jung-uk 
   7190 Kim.
   7191 
   7192 Implemented additional module-level code support. This change will 
   7193 properly 
   7194 execute module-level code that is not at the root of the namespace (under 
   7195 a 
   7196 Device object, etc.). Now executes the code within the current scope 
   7197 instead 
   7198 of the root. ACPICA BZ 762. Lin Ming.
   7199 
   7200 Fixed possible mutex acquisition errors when running _REG methods. Fixes 
   7201 a 
   7202 problem where mutex errors can occur when running a _REG method that is 
   7203 in 
   7204 the same scope as a method-defined operation region or an operation 
   7205 region 
   7206 under a module-level IF block. This type of code is rare, so the problem 
   7207 has 
   7208 not been seen before. ACPICA BZ 826. Lin Ming, Bob Moore.
   7209 
   7210 Fixed a possible memory leak during module-level code execution. An 
   7211 object 
   7212 could be leaked for each block of executed module-level code if the 
   7213 interpreter slack mode is enabled This change deletes any implicitly 
   7214 returned 
   7215 object from the module-level code block. Lin Ming.
   7216 
   7217 Removed messages for successful predefined repair(s). The repair 
   7218 mechanism 
   7219 was considered too wordy. Now, messages are only unconditionally emitted 
   7220 if 
   7221 the return object cannot be repaired. Existing messages for successful 
   7222 repairs were converted to ACPI_DEBUG_PRINT messages for now. ACPICA BZ 
   7223 827.
   7224 
   7225 Example Code and Data Size: These are the sizes for the OS-independent 
   7226 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   7227 debug version of the code includes the debug output trace mechanism and 
   7228 has a 
   7229 much larger code and data size.
   7230 
   7231   Previous Release:
   7232     Non-Debug Version:  86.6K Code, 18.2K Data, 104.8K Total
   7233     Debug Version:     162.7K Code, 50.8K Data, 213.5K Total
   7234   Current Release:
   7235     Non-Debug Version:  87.0K Code, 18.0K Data, 105.0K Total
   7236     Debug Version:     163.4K Code, 50.8K Data, 214.2K Total
   7237 
   7238 2) iASL Compiler/Disassembler and Tools:
   7239 
   7240 iASL: Fixed a regression introduced in 20091112 where intermediate .SRC 
   7241 files 
   7242 were no longer automatically removed at the termination of the compile.
   7243 
   7244 acpiexec: Implemented the -f option to specify default region fill value. 
   7245 This option specifies the value used to initialize buffers that simulate 
   7246 operation regions. Default value is zero. Useful for debugging problems 
   7247 that 
   7248 depend on a specific initial value for a region or field.
   7249 
   7250 ----------------------------------------
   7251 12 November 2009. Summary of changes for version 20091112:
   7252 
   7253 1) ACPI CA Core Subsystem:
   7254 
   7255 Implemented a post-order callback to AcpiWalkNamespace. The existing 
   7256 interface only has a pre-order callback. This change adds an additional 
   7257 parameter for a post-order callback which will be more useful for bus 
   7258 scans. 
   7259 ACPICA BZ 779. Lin Ming. Updated the ACPICA Programmer Reference.
   7260 
   7261 Modified the behavior of the operation region memory mapping cache for 
   7262 SystemMemory. Ensure that the memory mappings created for operation 
   7263 regions 
   7264 do not cross 4K page boundaries. Crossing a page boundary while mapping 
   7265 regions can cause kernel warnings on some hosts if the pages have 
   7266 different 
   7267 attributes. Such regions are probably BIOS bugs, and this is the 
   7268 workaround. 
   7269 Linux BZ 14445. Lin Ming.
   7270 
   7271 Implemented an automatic repair for predefined methods that must return 
   7272 sorted lists. This change will repair (by sorting) packages returned by 
   7273 _ALR, 
   7274 _PSS, and _TSS. Drivers can now assume that the packages are correctly 
   7275 sorted 
   7276 and do not contain NULL package elements. Adds one new file, 
   7277 namespace/nsrepair2.c. ACPICA BZ 784. Lin Ming, Bob Moore.
   7278 
   7279 Fixed a possible fault during predefined name validation if a return 
   7280 Package 
   7281 object contains NULL elements. Also adds a warning if a NULL element is 
   7282 followed by any non-null elements. ACPICA BZ 813, 814. Future enhancement 
   7283 may 
   7284 include repair or removal of all such NULL elements where possible.
   7285 
   7286 Implemented additional module-level executable AML code support. This 
   7287 change 
   7288 will execute module-level code that is not at the root of the namespace 
   7289 (under a Device object, etc.) at table load time. Module-level executable 
   7290 AML 
   7291 code has been illegal since ACPI 2.0. ACPICA BZ 762. Lin Ming.
   7292 
   7293 Implemented a new internal function to create Integer objects. This 
   7294 function 
   7295 simplifies miscellaneous object creation code. ACPICA BZ 823.
   7296 
   7297 Reduced the severity of predefined repair messages, Warning to Info. 
   7298 Since 
   7299 the object was successfully repaired, a warning is too severe. Reduced to 
   7300 an 
   7301 info message for now. These messages may eventually be changed to debug-
   7302 only. 
   7303 ACPICA BZ 812.
   7304 
   7305 Example Code and Data Size: These are the sizes for the OS-independent 
   7306 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   7307 debug version of the code includes the debug output trace mechanism and 
   7308 has a 
   7309 much larger code and data size.
   7310 
   7311   Previous Release:
   7312     Non-Debug Version:  85.8K Code, 18.0K Data, 103.8K Total
   7313     Debug Version:     161.8K Code, 50.6K Data, 212.4K Total
   7314   Current Release:
   7315     Non-Debug Version:  86.6K Code, 18.2K Data, 104.8K Total
   7316     Debug Version:     162.7K Code, 50.8K Data, 213.5K Total
   7317 
   7318 2) iASL Compiler/Disassembler and Tools:
   7319 
   7320 iASL: Implemented Switch() with While(1) so that Break works correctly. 
   7321 This 
   7322 change correctly implements the Switch operator with a surrounding 
   7323 While(1) 
   7324 so that the Break operator works as expected. ACPICA BZ 461. Lin Ming.
   7325 
   7326 iASL: Added a message if a package initializer list is shorter than 
   7327 package 
   7328 length. Adds a new remark for a Package() declaration if an initializer 
   7329 list 
   7330 exists, but is shorter than the declared length of the package. Although 
   7331 technically legal, this is probably a coding error and it is seen in the 
   7332 field. ACPICA BZ 815. Lin Ming, Bob Moore.
   7333 
   7334 iASL: Fixed a problem where the compiler could fault after the maximum 
   7335 number 
   7336 of errors was reached (200).
   7337 
   7338 acpixtract: Fixed a possible warning for pointer cast if the compiler 
   7339 warning 
   7340 level set very high.
   7341 
   7342 ----------------------------------------
   7343 13 October 2009. Summary of changes for version 20091013:
   7344 
   7345 1) ACPI CA Core Subsystem:
   7346 
   7347 Fixed a problem where an Operation Region _REG method could be executed 
   7348 more 
   7349 than once. If a custom address space handler is installed by the host 
   7350 before 
   7351 the "initialize operation regions" phase of the ACPICA initialization, 
   7352 any 
   7353 _REG methods for that address space could be executed twice. This change 
   7354 fixes the problem. ACPICA BZ 427. Lin Ming.
   7355 
   7356 Fixed a possible memory leak for the Scope() ASL operator. When the exact 
   7357 invocation of "Scope(\)" is executed (change scope to root), one internal 
   7358 operand object was leaked. Lin Ming.
   7359 
   7360 Implemented a run-time repair for the _MAT predefined method. If the _MAT 
   7361 return value is defined as a Field object in the AML, and the field
   7362 size is less than or equal to the default width of an integer (32 or 
   7363 64),_MAT 
   7364 can incorrectly return an Integer instead of a Buffer. ACPICA now 
   7365 automatically repairs this problem. ACPICA BZ 810.
   7366 
   7367 Implemented a run-time repair for the _BIF and _BIX predefined methods. 
   7368 The 
   7369 "OEM Information" field is often incorrectly returned as an Integer with 
   7370 value zero if the field is not supported by the platform. This is due to 
   7371 an 
   7372 ambiguity in the ACPI specification. The field should always be a string. 
   7373 ACPICA now automatically repairs this problem by returning a NULL string 
   7374 within the returned Package. ACPICA BZ 807.
   7375 
   7376 Example Code and Data Size: These are the sizes for the OS-independent 
   7377 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   7378 debug version of the code includes the debug output trace mechanism and 
   7379 has a 
   7380 much larger code and data size.
   7381 
   7382   Previous Release:
   7383     Non-Debug Version:  85.6K Code, 18.0K Data, 103.6K Total
   7384     Debug Version:     161.7K Code, 50.9K Data, 212.6K Total
   7385   Current Release:
   7386     Non-Debug Version:  85.8K Code, 18.0K Data, 103.8K Total
   7387     Debug Version:     161.8K Code, 50.6K Data, 212.4K Total
   7388 
   7389 2) iASL Compiler/Disassembler and Tools:
   7390 
   7391 Disassembler: Fixed a problem where references to external symbols that 
   7392 contained one or more parent-prefixes (carats) were not handled 
   7393 correctly, 
   7394 possibly causing a fault. ACPICA BZ 806. Lin Ming.
   7395 
   7396 Disassembler: Restructured the code so that all functions that handle 
   7397 external symbols are in a single module. One new file is added, 
   7398 common/dmextern.c.
   7399 
   7400 AML Debugger: Added a max count argument for the Batch command (which 
   7401 executes multiple predefined methods within the namespace.)
   7402 
   7403 iASL: Updated the compiler documentation (User Reference.) Available at 
   7404 http://www.acpica.org/documentation/. ACPICA BZ 750.
   7405 
   7406 AcpiXtract: Updated for Lint and other formatting changes. Close all open 
   7407 files.
   7408 
   7409 ----------------------------------------
   7410 03 September 2009. Summary of changes for version 20090903:
   7411 
   7412 1) ACPI CA Core Subsystem:
   7413 
   7414 For Windows Vista compatibility, added the automatic execution of an _INI 
   7415 method located at the namespace root (\_INI). This method is executed at 
   7416 table load time. This support is in addition to the automatic execution 
   7417 of 
   7418 \_SB._INI. Lin Ming.
   7419 
   7420 Fixed a possible memory leak in the interpreter for AML package objects 
   7421 if 
   7422 the package initializer list is longer than the defined size of the 
   7423 package. 
   7424 This apparently can only happen if the BIOS changes the package size on 
   7425 the 
   7426 fly (seen in a _PSS object), as ASL compilers do not allow this. The 
   7427 interpreter will truncate the package to the defined size (and issue an 
   7428 error 
   7429 message), but previously could leave the extra objects undeleted if they 
   7430 were 
   7431 pre-created during the argument processing (such is the case if the 
   7432 package 
   7433 consists of a number of sub-packages as in the _PSS.) ACPICA BZ 805.
   7434 
   7435 Fixed a problem seen when a Buffer or String is stored to itself via ASL. 
   7436 This has been reported in the field. Previously, ACPICA would zero out 
   7437 the 
   7438 buffer/string. Now, the operation is treated as a noop. Provides Windows 
   7439 compatibility. ACPICA BZ 803. Lin Ming.
   7440 
   7441 Removed an extraneous error message for ASL constructs of the form 
   7442 Store(LocalX,LocalX) when LocalX is uninitialized. These curious 
   7443 statements 
   7444 are seen in many BIOSs and are once again treated as NOOPs and no error 
   7445 is 
   7446 emitted when they are encountered. ACPICA BZ 785.
   7447 
   7448 Fixed an extraneous warning message if a _DSM reserved method returns a 
   7449 Package object. _DSM can return any type of object, so validation on the 
   7450 return type cannot be performed. ACPICA BZ 802.
   7451 
   7452 Example Code and Data Size: These are the sizes for the OS-independent 
   7453 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   7454 debug version of the code includes the debug output trace mechanism and 
   7455 has a 
   7456 much larger code and data size.
   7457 
   7458   Previous Release:
   7459     Non-Debug Version:  85.5K Code, 18.0K Data, 103.5K Total
   7460     Debug Version:     161.6K Code, 50.9K Data, 212.5K Total
   7461   Current Release:
   7462     Non-Debug Version:  85.6K Code, 18.0K Data, 103.6K Total
   7463     Debug Version:     161.7K Code, 50.9K Data, 212.6K Total
   7464 
   7465 2) iASL Compiler/Disassembler and Tools:
   7466 
   7467 iASL: Fixed a problem with the use of the Alias operator and Resource 
   7468 Templates. The correct alias is now constructed and no error is emitted. 
   7469 ACPICA BZ 738.
   7470 
   7471 iASL: Implemented the -I option to specify additional search directories 
   7472 for 
   7473 include files. Allows multiple additional search paths for include files. 
   7474 Directories are searched in the order specified on the command line 
   7475 (after 
   7476 the local directory is searched.) ACPICA BZ 800.
   7477 
   7478 iASL: Fixed a problem where the full pathname for include files was not 
   7479 emitted for warnings/errors. This caused the IDE support to not work 
   7480 properly. ACPICA BZ 765.
   7481 
   7482 iASL: Implemented the -@ option to specify a Windows-style response file 
   7483 containing additional command line options. ACPICA BZ 801.
   7484 
   7485 AcpiExec: Added support to load multiple AML files simultaneously (such 
   7486 as 
   7487 a 
   7488 DSDT and multiple SSDTs). Also added support for wildcards within the AML 
   7489 pathname. These features allow all machine tables to be easily loaded and 
   7490 debugged together. ACPICA BZ 804.
   7491 
   7492 Disassembler: Added missing support for disassembly of HEST table Error 
   7493 Bank 
   7494 subtables. 
   7495 
   7496 ----------------------------------------
   7497 30 July 2009. Summary of changes for version 20090730:
   7498 
   7499 The ACPI 4.0 implementation for ACPICA is complete with this release.
   7500 
   7501 1) ACPI CA Core Subsystem:
   7502 
   7503 ACPI 4.0: Added header file support for all new and changed ACPI tables. 
   7504 Completely new tables are: IBFT, IVRS, MSCT, and WAET. Tables that are 
   7505 new 
   7506 for ACPI 4.0, but have previously been supported in ACPICA are: CPEP, 
   7507 BERT, 
   7508 EINJ, ERST, and HEST. Other newly supported tables are: UEFI and WDAT. 
   7509 There 
   7510 have been some ACPI 4.0 changes to other existing tables. Split the large 
   7511 actbl1.h header into the existing actbl2.h header. ACPICA BZ 774.
   7512 
   7513 ACPI 4.0: Implemented predefined name validation for all new names. There 
   7514 are 
   7515 31 new names in ACPI 4.0. The predefined validation module was split into 
   7516 two 
   7517 files. The new file is namespace/nsrepair.c. ACPICA BZ 770.
   7518 
   7519 Implemented support for so-called "module-level executable code". This is 
   7520 executable AML code that exists outside of any control method and is 
   7521 intended 
   7522 to be executed at table load time. Although illegal since ACPI 2.0, this 
   7523 type 
   7524 of code still exists and is apparently still being created. Blocks of 
   7525 this 
   7526 code are now detected and executed as intended. Currently, the code 
   7527 blocks 
   7528 must exist under either an If, Else, or While construct; these are the 
   7529 typical cases seen in the field. ACPICA BZ 762. Lin Ming.
   7530 
   7531 Implemented an automatic dynamic repair for predefined names that return 
   7532 nested Package objects. This applies to predefined names that are defined 
   7533 to 
   7534 return a variable-length Package of sub-packages. If the number of sub-
   7535 packages is one, BIOS code is occasionally seen that creates a simple 
   7536 single 
   7537 package with no sub-packages. This code attempts to fix the problem by 
   7538 wrapping a new package object around the existing package. These methods 
   7539 can 
   7540 be repaired: _ALR, _CSD, _HPX, _MLS, _PRT, _PSS, _TRT, and _TSS. ACPICA 
   7541 BZ 
   7542 790.
   7543 
   7544 Fixed a regression introduced in 20090625 for the AcpiGetDevices 
   7545 interface. 
   7546 The _HID/_CID matching was broken and no longer matched IDs correctly. 
   7547 ACPICA 
   7548 BZ 793.
   7549 
   7550 Fixed a problem with AcpiReset where the reset would silently fail if the 
   7551 register was one of the protected I/O ports. AcpiReset now bypasses the 
   7552 port 
   7553 validation mechanism. This may eventually be driven into the 
   7554 AcpiRead/Write 
   7555 interfaces.
   7556 
   7557 Fixed a regression related to the recent update of the AcpiRead/Write 
   7558 interfaces. A sleep/suspend could fail if the optional PM2 Control 
   7559 register 
   7560 does not exist during an attempt to write the Bus Master Arbitration bit. 
   7561 (However, some hosts already delete the code that writes this bit, and 
   7562 the 
   7563 code may in fact be obsolete at this date.) ACPICA BZ 799.
   7564 
   7565 Fixed a problem where AcpiTerminate could fault if inadvertently called 
   7566 twice 
   7567 in succession. ACPICA BZ 795.
   7568 
   7569 Example Code and Data Size: These are the sizes for the OS-independent 
   7570 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   7571 debug version of the code includes the debug output trace mechanism and 
   7572 has a 
   7573 much larger code and data size.
   7574 
   7575   Previous Release:
   7576     Non-Debug Version:  84.7K Code, 17.8K Data, 102.5K Total
   7577     Debug Version:     160.5K Code, 50.6K Data, 211.1K Total
   7578   Current Release:
   7579     Non-Debug Version:  85.5K Code, 18.0K Data, 103.5K Total
   7580     Debug Version:     161.6K Code, 50.9K Data, 212.5K Total
   7581 
   7582 2) iASL Compiler/Disassembler and Tools:
   7583 
   7584 ACPI 4.0: Implemented disassembler support for all new ACPI tables and 
   7585 changes to existing tables. ACPICA BZ 775.
   7586 
   7587 ----------------------------------------
   7588 25 June 2009. Summary of changes for version 20090625:
   7589 
   7590 The ACPI 4.0 Specification was released on June 16 and is available at 
   7591 www.acpi.info. ACPICA implementation of ACPI 4.0 is underway and will 
   7592 continue for the next few releases.
   7593 
   7594 1) ACPI CA Core Subsystem:
   7595 
   7596 ACPI 4.0: Implemented interpreter support for the IPMI operation region 
   7597 address space. Includes support for bi-directional data buffers and an 
   7598 IPMI 
   7599 address space handler (to be installed by an IPMI device driver.) ACPICA 
   7600 BZ 
   7601 773. Lin Ming.
   7602 
   7603 ACPI 4.0: Added changes for existing ACPI tables - FACS and SRAT. 
   7604 Includes 
   7605 support in both the header files and the disassembler.
   7606 
   7607 Completed a major update for the AcpiGetObjectInfo external interface. 
   7608 Changes include:
   7609  - Support for variable, unlimited length HID, UID, and CID strings.
   7610  - Support Processor objects the same as Devices (HID,UID,CID,ADR,STA, 
   7611 etc.)
   7612  - Call the _SxW power methods on behalf of a device object.
   7613  - Determine if a device is a PCI root bridge.
   7614  - Change the ACPI_BUFFER parameter to ACPI_DEVICE_INFO.
   7615 These changes will require an update to all callers of this interface. 
   7616 See 
   7617 the updated ACPICA Programmer Reference for details. One new source file 
   7618 has 
   7619 been added - utilities/utids.c. ACPICA BZ 368, 780.
   7620 
   7621 Updated the AcpiRead and AcpiWrite external interfaces to support 64-bit 
   7622 transfers. The Value parameter has been extended from 32 bits to 64 bits 
   7623 in 
   7624 order to support new ACPI 4.0 tables. These changes will require an 
   7625 update 
   7626 to 
   7627 all callers of these interfaces. See the ACPICA Programmer Reference for 
   7628 details. ACPICA BZ 768.
   7629 
   7630 Fixed several problems with AcpiAttachData. The handler was not invoked 
   7631 when 
   7632 the host node was deleted. The data sub-object was not automatically 
   7633 deleted 
   7634 when the host node was deleted. The interface to the handler had an 
   7635 unused 
   7636 parameter, this was removed. ACPICA BZ 778.
   7637 
   7638 Enhanced the function that dumps ACPI table headers. All non-printable 
   7639 characters in the string fields are now replaced with '?' (Signature, 
   7640 OemId, 
   7641 OemTableId, and CompilerId.) ACPI tables with non-printable characters in 
   7642 these fields are occasionally seen in the field. ACPICA BZ 788.
   7643 
   7644 Fixed a problem with predefined method repair code where the code that 
   7645 attempts to repair/convert an object of incorrect type is only executed 
   7646 on 
   7647 the first time the predefined method is called. The mechanism that 
   7648 disables 
   7649 warnings on subsequent calls was interfering with the repair mechanism. 
   7650 ACPICA BZ 781.
   7651 
   7652 Fixed a possible memory leak in the predefined validation/repair code 
   7653 when 
   7654 a 
   7655 buffer is automatically converted to an expected string object.
   7656 
   7657 Removed obsolete 16-bit files from the distribution and from the current 
   7658 git 
   7659 tree head. ACPICA BZ 776.
   7660 
   7661 Example Code and Data Size: These are the sizes for the OS-independent 
   7662 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   7663 debug version of the code includes the debug output trace mechanism and 
   7664 has a 
   7665 much larger code and data size.
   7666 
   7667   Previous Release:
   7668     Non-Debug Version:  83.4K Code, 17.5K Data, 100.9K Total
   7669     Debug Version:     158.9K Code, 50.0K Data, 208.9K Total
   7670   Current Release:
   7671     Non-Debug Version:  84.7K Code, 17.8K Data, 102.5K Total
   7672     Debug Version:     160.5K Code, 50.6K Data, 211.1K Total
   7673 
   7674 2) iASL Compiler/Disassembler and Tools:
   7675 
   7676 ACPI 4.0: iASL and Disassembler - implemented support for the new IPMI 
   7677 operation region keyword. ACPICA BZ 771, 772. Lin Ming.
   7678 
   7679 ACPI 4.0: iASL - implemented compile-time validation support for all new 
   7680 predefined names and control methods (31 total). ACPICA BZ 769.
   7681 
   7682 ----------------------------------------
   7683 21 May 2009. Summary of changes for version 20090521:
   7684 
   7685 1) ACPI CA Core Subsystem:
   7686 
   7687 Disabled the preservation of the SCI enable bit in the PM1 control 
   7688 register. 
   7689 The SCI enable bit (bit 0, SCI_EN) is defined by the ACPI specification 
   7690 to 
   7691 be 
   7692 a "preserved" bit - "OSPM always preserves this bit position", section 
   7693 4.7.3.2.1. However, some machines fail if this bit is in fact preserved 
   7694 because the bit needs to be explicitly set by the OS as a workaround. No 
   7695 machines fail if the bit is not preserved. Therefore, ACPICA no longer 
   7696 attempts to preserve this bit.
   7697 
   7698 Fixed a problem in AcpiRsGetPciRoutingTableLength where an invalid or 
   7699 incorrectly formed _PRT package could cause a fault. Added validation to 
   7700 ensure that each package element is actually a sub-package.
   7701 
   7702 Implemented a new interface to install or override a single control 
   7703 method, 
   7704 AcpiInstallMethod. This interface is useful when debugging in order to 
   7705 repair 
   7706 an existing method or to install a missing method without having to 
   7707 override 
   7708 the entire ACPI table. See the ACPICA Programmer Reference for use and 
   7709 examples. Lin Ming, Bob Moore.
   7710 
   7711 Fixed several reference count issues with the DdbHandle object that is 
   7712 created from a Load or LoadTable operator. Prevent premature deletion of 
   7713 the 
   7714 object. Also, mark the object as invalid once the table has been 
   7715 unloaded. 
   7716 This is needed because the handle itself may not be deleted after the 
   7717 table 
   7718 unload, depending on whether it has been stored in a named object by the 
   7719 caller. Lin Ming.
   7720 
   7721 Fixed a problem with Mutex Sync Levels. Fixed a problem where if multiple 
   7722 mutexes of the same sync level are acquired but then not released in 
   7723 strict 
   7724 opposite order, the internally maintained Current Sync Level becomes 
   7725 confused 
   7726 and can cause subsequent execution errors. ACPICA BZ 471.
   7727 
   7728 Changed the allowable release order for ASL mutex objects. The ACPI 4.0 
   7729 specification has been changed to make the SyncLevel for mutex objects 
   7730 more 
   7731 useful. When releasing a mutex, the SyncLevel of the mutex must now be 
   7732 the 
   7733 same as the current sync level. This makes more sense than the previous 
   7734 rule 
   7735 (SyncLevel less than or equal). This change updates the code to match the 
   7736 specification.
   7737 
   7738 Fixed a problem with the local version of the AcpiOsPurgeCache function. 
   7739 The 
   7740 (local) cache must be locked during all cache object deletions. Andrew 
   7741 Baumann.
   7742 
   7743 Updated the Load operator to use operation region interfaces. This 
   7744 replaces 
   7745 direct memory mapping with region access calls. Now, all region accesses 
   7746 go 
   7747 through the installed region handler as they should.
   7748 
   7749 Simplified and optimized the NsGetNextNode function. Reduced parameter 
   7750 count 
   7751 and reduced code for this frequently used function.
   7752 
   7753 Example Code and Data Size: These are the sizes for the OS-independent 
   7754 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   7755 debug version of the code includes the debug output trace mechanism and 
   7756 has a 
   7757 much larger code and data size.
   7758 
   7759   Previous Release:
   7760     Non-Debug Version:  82.8K Code, 17.5K Data, 100.3K Total
   7761     Debug Version:     158.0K Code, 49.9K Data, 207.9K Total
   7762   Current Release:
   7763     Non-Debug Version:  83.4K Code, 17.5K Data, 100.9K Total
   7764     Debug Version:     158.9K Code, 50.0K Data, 208.9K Total
   7765 
   7766 2) iASL Compiler/Disassembler and Tools:
   7767 
   7768 Disassembler: Fixed some issues with DMAR, HEST, MADT tables. Some 
   7769 problems 
   7770 with sub-table disassembly and handling invalid sub-tables. Attempt 
   7771 recovery 
   7772 after an invalid sub-table ID.
   7773 
   7774 ----------------------------------------
   7775 22 April 2009. Summary of changes for version 20090422:
   7776 
   7777 1) ACPI CA Core Subsystem:
   7778 
   7779 Fixed a compatibility issue with the recently released I/O port 
   7780 protection 
   7781 mechanism. For windows compatibility, 1) On a port protection violation, 
   7782 simply ignore the request and do not return an exception (allow the 
   7783 control 
   7784 method to continue execution.) 2) If only part of the request overlaps a 
   7785 protected port, read/write the individual ports that are not protected. 
   7786 Linux 
   7787 BZ 13036. Lin Ming
   7788 
   7789 Enhanced the execution of the ASL/AML BreakPoint operator so that it 
   7790 actually 
   7791 breaks into the AML debugger if the debugger is present. This matches the 
   7792 ACPI-defined behavior.
   7793 
   7794 Fixed several possible warnings related to the use of the configurable 
   7795 ACPI_THREAD_ID. This type can now be configured as either an integer or a 
   7796 pointer with no warnings. Also fixes several warnings in printf-like 
   7797 statements for the 64-bit build when the type is configured as a pointer. 
   7798 ACPICA BZ 766, 767.
   7799 
   7800 Fixed a number of possible warnings when compiling with gcc 4+ (depending 
   7801 on 
   7802 warning options.) Examples include printf formats, aliasing, unused 
   7803 globals, 
   7804 missing prototypes, missing switch default statements, use of non-ANSI 
   7805 library functions, use of non-ANSI constructs. See generate/unix/Makefile 
   7806 for 
   7807 a list of warning options used with gcc 3 and 4. ACPICA BZ 735.
   7808 
   7809 Example Code and Data Size: These are the sizes for the OS-independent 
   7810 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   7811 debug version of the code includes the debug output trace mechanism and 
   7812 has a 
   7813 much larger code and data size.
   7814 
   7815   Previous Release:
   7816     Non-Debug Version:  82.6K Code, 17.6K Data, 100.2K Total
   7817     Debug Version:     157.7K Code, 49.9K Data, 207.6K Total
   7818   Current Release:
   7819     Non-Debug Version:  82.8K Code, 17.5K Data, 100.3K Total
   7820     Debug Version:     158.0K Code, 49.9K Data, 207.9K Total
   7821 
   7822 2) iASL Compiler/Disassembler and Tools:
   7823 
   7824 iASL: Fixed a generation warning from Bison 2.3 and fixed several 
   7825 warnings 
   7826 on 
   7827 the 64-bit build.
   7828 
   7829 iASL: Fixed a problem where the Unix/Linux versions of the compiler could 
   7830 not 
   7831 correctly digest Windows/DOS formatted files (with CR/LF).
   7832 
   7833 iASL: Added a new option for "quiet mode" (-va) that produces only the 
   7834 compilation summary, not individual errors and warnings. Useful for large 
   7835 batch compilations.
   7836 
   7837 AcpiExec: Implemented a new option (-z) to enable a forced 
   7838 semaphore/mutex 
   7839 timeout that can be used to detect hang conditions during execution of 
   7840 AML 
   7841 code (includes both internal semaphores and AML-defined mutexes and 
   7842 events.)
   7843 
   7844 Added new makefiles for the generation of acpica in a generic unix-like 
   7845 environment. These makefiles are intended to generate the acpica tools 
   7846 and 
   7847 utilities from the original acpica git source tree structure.
   7848 
   7849 Test Suites: Updated and cleaned up the documentation files. Updated the 
   7850 copyrights to 2009, affecting all source files. Use the new version of 
   7851 iASL 
   7852 with quiet mode. Increased the number of available semaphores in the 
   7853 Windows 
   7854 OSL, allowing the aslts to execute fully on Windows. For the Unix OSL, 
   7855 added 
   7856 an alternate implementation of the semaphore timeout to allow aslts to 
   7857 execute fully on Cygwin.
   7858 
   7859 ----------------------------------------
   7860 20 March 2009. Summary of changes for version 20090320:
   7861 
   7862 1) ACPI CA Core Subsystem:
   7863 
   7864 Fixed a possible race condition between AcpiWalkNamespace and dynamic 
   7865 table 
   7866 unloads. Added a reader/writer locking mechanism to allow multiple 
   7867 concurrent 
   7868 namespace walks (readers), but block a dynamic table unload until it can 
   7869 gain 
   7870 exclusive write access to the namespace. This fixes a problem where a 
   7871 table 
   7872 unload could (possibly catastrophically) delete the portion of the 
   7873 namespace 
   7874 that is currently being examined by a walk. Adds a new file, utlock.c, 
   7875 that 
   7876 implements the reader/writer lock mechanism. ACPICA BZ 749.
   7877 
   7878 Fixed a regression introduced in version 20090220 where a change to the 
   7879 FADT 
   7880 handling could cause the ACPICA subsystem to access non-existent I/O 
   7881 ports.
   7882 
   7883 Modified the handling of FADT register and table (FACS/DSDT) addresses. 
   7884 The 
   7885 FADT can contain both 32-bit and 64-bit versions of these addresses. 
   7886 Previously, the 64-bit versions were favored, meaning that if both 32 and 
   7887 64 
   7888 versions were valid, but not equal, the 64-bit version was used. This was 
   7889 found to cause some machines to fail. Now, in this case, the 32-bit 
   7890 version 
   7891 is used instead. This now matches the Windows behavior.
   7892 
   7893 Implemented a new mechanism to protect certain I/O ports. Provides 
   7894 Microsoft 
   7895 compatibility and protects the standard PC I/O ports from access via AML 
   7896 code. Adds a new file, hwvalid.c
   7897 
   7898 Fixed a possible extraneous warning message from the FADT support. The 
   7899 message warns of a 32/64 length mismatch between the legacy and GAS 
   7900 definitions for a register.
   7901 
   7902 Removed the obsolete AcpiOsValidateAddress OSL interface. This interface 
   7903 is 
   7904 made obsolete by the port protection mechanism above. It was previously 
   7905 used 
   7906 to validate the entire address range of an operation region, which could 
   7907 be 
   7908 incorrect if the range included illegal ports, but fields within the 
   7909 operation region did not actually access those ports. Validation is now 
   7910 performed on a per-field basis instead of the entire region.
   7911 
   7912 Modified the handling of the PM1 Status Register ignored bit (bit 11.) 
   7913 Ignored bits must be "preserved" according to the ACPI spec. Usually, 
   7914 this 
   7915 means a read/modify/write when writing to the register. However, for 
   7916 status 
   7917 registers, writing a one means clear the event. Writing a zero means 
   7918 preserve 
   7919 the event (do not clear.) This behavior is clarified in the ACPI 4.0 
   7920 spec, 
   7921 and the ACPICA code now simply always writes a zero to the ignored bit.
   7922 
   7923 Modified the handling of ignored bits for the PM1 A/B Control Registers. 
   7924 As 
   7925 per the ACPI specification, for the control registers, preserve 
   7926 (read/modify/write) all bits that are defined as either reserved or 
   7927 ignored.
   7928 
   7929 Updated the handling of write-only bits in the PM1 A/B Control Registers. 
   7930 When reading the register, zero the write-only bits as per the ACPI spec. 
   7931 ACPICA BZ 443. Lin Ming.
   7932 
   7933 Removed "Linux" from the list of supported _OSI strings. Linux no longer 
   7934 wants to reply true to this request. The Windows strings are the only 
   7935 paths 
   7936 through the AML that are tested and known to work properly.
   7937 
   7938   Previous Release:
   7939     Non-Debug Version:  82.0K Code, 17.5K Data,  99.5K Total
   7940     Debug Version:     156.9K Code, 49.8K Data, 206.7K Total
   7941   Current Release:
   7942     Non-Debug Version:  82.6K Code, 17.6K Data, 100.2K Total
   7943     Debug Version:     157.7K Code, 49.9K Data, 207.6K Total
   7944 
   7945 2) iASL Compiler/Disassembler and Tools:
   7946 
   7947 Acpiexec: Split the large aeexec.c file into two new files, aehandlers.c 
   7948 and 
   7949 aetables.c
   7950 
   7951 ----------------------------------------
   7952 20 February 2009. Summary of changes for version 20090220:
   7953 
   7954 1) ACPI CA Core Subsystem:
   7955 
   7956 Optimized the ACPI register locking. Removed locking for reads from the 
   7957 ACPI 
   7958 bit registers in PM1 Status, Enable, Control, and PM2 Control. The lock 
   7959 is 
   7960 not required when reading the single-bit registers. The 
   7961 AcpiGetRegisterUnlocked function is no longer needed and has been 
   7962 removed. 
   7963 This will improve performance for reads on these registers. ACPICA BZ 
   7964 760.
   7965 
   7966 Fixed the parameter validation for AcpiRead/Write. Now return 
   7967 AE_BAD_PARAMETER if the input register pointer is null, and 
   7968 AE_BAD_ADDRESS 
   7969 if 
   7970 the register has an address of zero. Previously, these cases simply 
   7971 returned 
   7972 AE_OK. For optional registers such as PM1B status/enable/control, the 
   7973 caller 
   7974 should check for a valid register address before calling. ACPICA BZ 748.
   7975 
   7976 Renamed the external ACPI bit register access functions. Renamed 
   7977 AcpiGetRegister and AcpiSetRegister to clarify the purpose of these 
   7978 functions. The new names are AcpiReadBitRegister and 
   7979 AcpiWriteBitRegister. 
   7980 Also, restructured the code for these functions by simplifying the code 
   7981 path 
   7982 and condensing duplicate code to reduce code size.
   7983 
   7984 Added new functions to transparently handle the possibly split PM1 A/B 
   7985 registers. AcpiHwReadMultiple and AcpiHwWriteMultiple. These two 
   7986 functions 
   7987 now handle the split registers for PM1 Status, Enable, and Control. 
   7988 ACPICA 
   7989 BZ 
   7990 746.
   7991 
   7992 Added a function to handle the PM1 control registers, 
   7993 AcpiHwWritePm1Control. 
   7994 This function writes both of the PM1 control registers (A/B). These 
   7995 registers 
   7996 are different than the PM1 A/B status and enable registers in that 
   7997 different 
   7998 values can be written to the A/B registers. Most notably, the SLP_TYP 
   7999 bits 
   8000 can be different, as per the values returned from the _Sx predefined 
   8001 methods.
   8002 
   8003 Removed an extra register write within AcpiHwClearAcpiStatus. This 
   8004 function 
   8005 was writing an optional PM1B status register twice. The existing call to 
   8006 the 
   8007 low-level AcpiHwRegisterWrite automatically handles a possibly split PM1 
   8008 A/B 
   8009 register. ACPICA BZ 751.
   8010 
   8011 Split out the PM1 Status registers from the FADT. Added new globals for 
   8012 these 
   8013 registers (A/B), similar to the way the PM1 Enable registers are handled. 
   8014 Instead of overloading the FADT Event Register blocks. This makes the 
   8015 code 
   8016 clearer and less prone to error.
   8017 
   8018 Fixed the warning message for when the platform contains too many ACPI 
   8019 tables 
   8020 for the default size of the global root table data structure. The 
   8021 calculation 
   8022 for the truncation value was incorrect.
   8023 
   8024 Removed the ACPI_GET_OBJECT_TYPE macro. Removed all instances of this 
   8025 obsolete macro, since it is now a simple reference to ->common.type. 
   8026 There 
   8027 were about 150 invocations of the macro across 41 files. ACPICA BZ 755.
   8028 
   8029 Removed the redundant ACPI_BITREG_SLEEP_TYPE_B. This type is the same as 
   8030 TYPE_A. Removed this and all related instances. Renamed SLEEP_TYPE_A to 
   8031 simply SLEEP_TYPE. ACPICA BZ 754.
   8032 
   8033 Conditionally compile the AcpiSetFirmwareWakingVector64 function. This 
   8034 function is only needed on 64-bit host operating systems and is thus not 
   8035 included for 32-bit hosts.
   8036 
   8037 Debug output: print the input and result for invocations of the _OSI 
   8038 reserved 
   8039 control method via the ACPI_LV_INFO debug level. Also, reduced some of 
   8040 the 
   8041 verbosity of this debug level. Len Brown.
   8042 
   8043 Example Code and Data Size: These are the sizes for the OS-independent 
   8044 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   8045 debug version of the code includes the debug output trace mechanism and 
   8046 has a 
   8047 much larger code and data size.
   8048 
   8049   Previous Release:
   8050     Non-Debug Version:  82.3K Code, 17.5K Data,  99.8K Total
   8051     Debug Version:     157.3K Code, 49.8K Data, 207.1K Total
   8052   Current Release:
   8053     Non-Debug Version:  82.0K Code, 17.5K Data,  99.5K Total
   8054     Debug Version:     156.9K Code, 49.8K Data, 206.7K Total
   8055 
   8056 2) iASL Compiler/Disassembler and Tools:
   8057 
   8058 Disassembler: Decode the FADT PM_Profile field. Emit ascii names for the 
   8059 various legal performance profiles.
   8060 
   8061 ----------------------------------------
   8062 23 January 2009. Summary of changes for version 20090123:
   8063 
   8064 1) ACPI CA Core Subsystem:
   8065 
   8066 Added the 2009 copyright to all module headers and signons. This affects 
   8067 virtually every file in the ACPICA core subsystem, the iASL compiler, and 
   8068 the tools/utilities.
   8069 
   8070 Implemented a change to allow the host to override any ACPI table, 
   8071 including 
   8072 dynamically loaded tables. Previously, only the DSDT could be replaced by 
   8073 the 
   8074 host. With this change, the AcpiOsTableOverride interface is called for 
   8075 each 
   8076 table found in the RSDT/XSDT during ACPICA initialization, and also 
   8077 whenever 
   8078 a table is dynamically loaded via the AML Load operator.
   8079 
   8080 Updated FADT flag definitions, especially the Boot Architecture flags.
   8081 
   8082 Debugger: For the Find command, automatically pad the input ACPI name 
   8083 with 
   8084 underscores if the name is shorter than 4 characters. This enables a 
   8085 match 
   8086 with the actual namespace entry which is itself padded with underscores.
   8087 
   8088 Example Code and Data Size: These are the sizes for the OS-independent 
   8089 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   8090 debug version of the code includes the debug output trace mechanism and 
   8091 has a 
   8092 much larger code and data size.
   8093 
   8094   Previous Release:
   8095     Non-Debug Version:  82.3K Code, 17.4K Data,  99.7K Total
   8096     Debug Version:     157.1K Code, 49.7K Data, 206.8K Total
   8097   Current Release:
   8098     Non-Debug Version:  82.3K Code, 17.5K Data,  99.8K Total
   8099     Debug Version:     157.3K Code, 49.8K Data, 207.1K Total
   8100 
   8101 2) iASL Compiler/Disassembler and Tools:
   8102 
   8103 Fix build error under Bison-2.4.
   8104 
   8105 Dissasembler: Enhanced FADT support. Added decoding of the Boot 
   8106 Architecture 
   8107 flags. Now decode all flags, regardless of the FADT version. Flag output 
   8108 includes the FADT version which first defined each flag.
   8109 
   8110 The iASL -g option now dumps the RSDT to a file (in addition to the FADT 
   8111 and 
   8112 DSDT). Windows only.
   8113 
   8114 ----------------------------------------
   8115 04 December 2008. Summary of changes for version 20081204:
   8116 
   8117 1) ACPI CA Core Subsystem:
   8118 
   8119 The ACPICA Programmer Reference has been completely updated and revamped 
   8120 for 
   8121 this release. This includes updates to the external interfaces, OSL 
   8122 interfaces, the overview sections, and the debugger reference.
   8123 
   8124 Several new ACPICA interfaces have been implemented and documented in the 
   8125 programmer reference:
   8126 AcpiReset - Writes the reset value to the FADT-defined reset register.
   8127 AcpiDisableAllGpes - Disable all available GPEs.
   8128 AcpiEnableAllRuntimeGpes - Enable all available runtime GPEs.
   8129 AcpiGetGpeDevice - Get the GPE block device associated with a GPE.
   8130 AcpiGbl_CurrentGpeCount - Tracks the current number of available GPEs.
   8131 AcpiRead - Low-level read ACPI register (was HwLowLevelRead.)
   8132 AcpiWrite - Low-level write ACPI register (was HwLowLevelWrite.)
   8133 
   8134 Most of the public ACPI hardware-related interfaces have been moved to a 
   8135 new 
   8136 file, components/hardware/hwxface.c
   8137 
   8138 Enhanced the FADT parsing and low-level ACPI register access: The ACPI 
   8139 register lengths within the FADT are now used, and the low level ACPI 
   8140 register access no longer hardcodes the ACPI register lengths. Given that 
   8141 there may be some risk in actually trusting the FADT register lengths, a 
   8142 run-
   8143 time option was added to fall back to the default hardcoded lengths if 
   8144 the 
   8145 FADT proves to contain incorrect values - UseDefaultRegisterWidths. This 
   8146 option is set to true for now, and a warning is issued if a suspicious 
   8147 FADT 
   8148 register length is overridden with the default value.
   8149 
   8150 Fixed a reference count issue in NsRepairObject. This problem was 
   8151 introduced 
   8152 in version 20081031 as part of a fix to repair Buffer objects within 
   8153 Packages. Lin Ming.
   8154 
   8155 Added semaphore support to the Linux/Unix application OS-services layer 
   8156 (OSL). ACPICA BZ 448. Lin Ming.
   8157 
   8158 Added the ACPI_MUTEX_TYPE configuration option to select whether mutexes 
   8159 will 
   8160 be implemented in the OSL, or will binary semaphores be used instead.
   8161 
   8162 Example Code and Data Size: These are the sizes for the OS-independent 
   8163 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   8164 debug version of the code includes the debug output trace mechanism and 
   8165 has a 
   8166 much larger code and data size.
   8167 
   8168   Previous Release:
   8169     Non-Debug Version:  81.7K Code, 17.3K Data,  99.0K Total
   8170     Debug Version:     156.4K Code, 49.4K Data, 205.8K Total
   8171   Current Release:
   8172     Non-Debug Version:  82.3K Code, 17.4K Data,  99.7K Total
   8173     Debug Version:     157.1K Code, 49.7K Data, 206.8K Total
   8174 
   8175 2) iASL Compiler/Disassembler and Tools:
   8176 
   8177 iASL: Completed the '-e' option to include additional ACPI tables in 
   8178 order 
   8179 to 
   8180 aid with disassembly and External statement generation. ACPICA BZ 742. 
   8181 Lin 
   8182 Ming.
   8183 
   8184 iASL: Removed the "named object in while loop" error. The compiler cannot 
   8185 determine how many times a loop will execute. ACPICA BZ 730.
   8186 
   8187 Disassembler: Implemented support for FADT revision 2 (MS extension). 
   8188 ACPICA 
   8189 BZ 743.
   8190 
   8191 Disassembler: Updates for several ACPI data tables (HEST, EINJ, and 
   8192 MCFG).
   8193 
   8194 ----------------------------------------
   8195 31 October 2008. Summary of changes for version 20081031:
   8196 
   8197 1) ACPI CA Core Subsystem:
   8198 
   8199 Restructured the ACPICA header files into public/private. acpi.h now 
   8200 includes 
   8201 only the "public" acpica headers. All other acpica headers are "private" 
   8202 and 
   8203 should not be included by acpica users. One new file, accommon.h is used 
   8204 to 
   8205 include the commonly used private headers for acpica code generation. 
   8206 Future 
   8207 plans include moving all private headers to a new subdirectory.
   8208 
   8209 Implemented an automatic Buffer->String return value conversion for 
   8210 predefined ACPI methods. For these methods (such as _BIF), added 
   8211 automatic 
   8212 conversion for return objects that are required to be a String, but a 
   8213 Buffer 
   8214 was found instead. This can happen when reading string battery data from 
   8215 an 
   8216 operation region, because it used to be difficult to convert the data 
   8217 from 
   8218 buffer to string from within the ASL. Ensures that the host OS is 
   8219 provided 
   8220 with a valid null-terminated string. Linux BZ 11822.
   8221 
   8222 Updated the FACS waking vector interfaces. Split 
   8223 AcpiSetFirmwareWakingVector 
   8224 into two: one for the 32-bit vector, another for the 64-bit vector. This 
   8225 is 
   8226 required because the host OS must setup the wake much differently for 
   8227 each 
   8228 vector (real vs. protected mode, etc.) and the interface itself should 
   8229 not 
   8230 be 
   8231 deciding which vector to use. Also, eliminated the 
   8232 GetFirmwareWakingVector 
   8233 interface, as it served no purpose (only the firmware reads the vector, 
   8234 OS 
   8235 only writes the vector.) ACPICA BZ 731.
   8236 
   8237 Implemented a mechanism to escape infinite AML While() loops. Added a 
   8238 loop 
   8239 counter to force exit from AML While loops if the count becomes too 
   8240 large. 
   8241 This can occur in poorly written AML when the hardware does not respond 
   8242 within a while loop and the loop does not implement a timeout. The 
   8243 maximum 
   8244 loop count is configurable. A new exception code is returned when a loop 
   8245 is 
   8246 broken, AE_AML_INFINITE_LOOP. Alexey Starikovskiy, Bob Moore.
   8247 
   8248 Optimized the execution of AML While loops. Previously, a control state 
   8249 object was allocated and freed for each execution of the loop. The 
   8250 optimization is to simply reuse the control state for each iteration. 
   8251 This 
   8252 speeds up the raw loop execution time by about 5%.
   8253 
   8254 Enhanced the implicit return mechanism. For Windows compatibility, return 
   8255 an 
   8256 implicit integer of value zero for methods that contain no executable 
   8257 code. 
   8258 Such methods are seen in the field as stubs (presumably), and can cause 
   8259 drivers to fail if they expect a return value. Lin Ming.
   8260 
   8261 Allow multiple backslashes as root prefixes in namepaths. In a fully 
   8262 qualified namepath, allow multiple backslash prefixes. This can happen 
   8263 (and 
   8264 is seen in the field) because of the use of a double-backslash in strings 
   8265 (since backslash is the escape character) causing confusion. ACPICA BZ 
   8266 739 
   8267 Lin Ming.
   8268 
   8269 Emit a warning if two different FACS or DSDT tables are discovered in the 
   8270 FADT. Checks if there are two valid but different addresses for the FACS 
   8271 and 
   8272 DSDT within the FADT (mismatch between the 32-bit and 64-bit fields.)
   8273 
   8274 Consolidated the method argument count validation code. Merged the code 
   8275 that 
   8276 validates control method argument counts into the predefined validation 
   8277 module. Eliminates possible multiple warnings for incorrect argument 
   8278 counts.
   8279 
   8280 Implemented ACPICA example code. Includes code for ACPICA initialization, 
   8281 handler installation, and calling a control method. Available at 
   8282 source/tools/examples.
   8283 
   8284 Added a global pointer for FACS table to simplify internal FACS access. 
   8285 Use 
   8286 the global pointer instead of using AcpiGetTableByIndex for each FACS 
   8287 access. 
   8288 This simplifies the code for the Global Lock and the Firmware Waking 
   8289 Vector(s).
   8290 
   8291 Example Code and Data Size: These are the sizes for the OS-independent 
   8292 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   8293 debug version of the code includes the debug output trace mechanism and 
   8294 has a 
   8295 much larger code and data size.
   8296 
   8297   Previous Release:
   8298     Non-Debug Version:  81.2K Code, 17.0K Data,  98.2K Total
   8299     Debug Version:     155.8K Code, 49.1K Data, 204.9K Total
   8300   Current Release:
   8301     Non-Debug Version:  81.7K Code, 17.3K Data,  99.0K Total
   8302     Debug Version:     156.4K Code, 49.4K Data, 205.8K Total
   8303 
   8304 2) iASL Compiler/Disassembler and Tools:
   8305 
   8306 iASL: Improved disassembly of external method calls. Added the -e option 
   8307 to 
   8308 allow the inclusion of additional ACPI tables to help with the 
   8309 disassembly 
   8310 of 
   8311 method invocations and the generation of external declarations during the 
   8312 disassembly. Certain external method invocations cannot be disassembled 
   8313 properly without the actual declaration of the method. Use the -e option 
   8314 to 
   8315 include the table where the external method(s) are actually declared. 
   8316 Most 
   8317 useful for disassembling SSDTs that make method calls back to the master 
   8318 DSDT. Lin Ming. Example: To disassemble an SSDT with calls to DSDT:  iasl 
   8319 -d 
   8320 -e dsdt.aml ssdt1.aml
   8321 
   8322 iASL: Fix to allow references to aliases within ASL namepaths. Fixes a 
   8323 problem where the use of an alias within a namepath would result in a not 
   8324 found error or cause the compiler to fault. Also now allows forward 
   8325 references from the Alias operator itself. ACPICA BZ 738.
   8326 
   8327 ----------------------------------------
   8328 26 September 2008. Summary of changes for version 20080926:
   8329 
   8330 1) ACPI CA Core Subsystem:
   8331 
   8332 Designed and implemented a mechanism to validate predefined ACPI methods 
   8333 and 
   8334 objects. This code validates the predefined ACPI objects (objects whose 
   8335 names 
   8336 start with underscore) that appear in the namespace, at the time they are 
   8337 evaluated. The argument count and the type of the returned object are 
   8338 validated against the ACPI specification. The purpose of this validation 
   8339 is 
   8340 to detect problems with the BIOS-implemented predefined ACPI objects 
   8341 before 
   8342 the results are returned to the ACPI-related drivers. Future enhancements 
   8343 may 
   8344 include actual repair of incorrect return objects where possible. Two new 
   8345 files are nspredef.c and acpredef.h.
   8346 
   8347 Fixed a fault in the AML parser if a memory allocation fails during the 
   8348 Op 
   8349 completion routine AcpiPsCompleteThisOp. Lin Ming. ACPICA BZ 492.
   8350 
   8351 Fixed an issue with implicit return compatibility. This change improves 
   8352 the 
   8353 implicit return mechanism to be more compatible with the MS interpreter. 
   8354 Lin 
   8355 Ming, ACPICA BZ 349.
   8356 
   8357 Implemented support for zero-length buffer-to-string conversions. Allow 
   8358 zero 
   8359 length strings during interpreter buffer-to-string conversions. For 
   8360 example, 
   8361 during the ToDecimalString and ToHexString operators, as well as implicit 
   8362 conversions. Fiodor Suietov, ACPICA BZ 585.
   8363 
   8364 Fixed two possible memory leaks in the error exit paths of 
   8365 AcpiUtUpdateObjectReference and AcpiUtWalkPackageTree. These functions 
   8366 are 
   8367 similar in that they use a stack of state objects in order to eliminate 
   8368 recursion. The stack must be fully unwound and deallocated if an error 
   8369 occurs. Lin Ming. ACPICA BZ 383.
   8370 
   8371 Removed the unused ACPI_BITREG_WAKE_ENABLE definition and entry in the 
   8372 global 
   8373 ACPI register table. This bit does not exist and is unused. Lin Ming, Bob 
   8374 Moore ACPICA BZ 442.
   8375 
   8376 Removed the obsolete version number in module headers. Removed the 
   8377 "$Revision" number that appeared in each module header. This version 
   8378 number 
   8379 was useful under SourceSafe and CVS, but has no meaning under git. It is 
   8380 not 
   8381 only incorrect, it could also be misleading.
   8382 
   8383 Example Code and Data Size: These are the sizes for the OS-independent 
   8384 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   8385 debug version of the code includes the debug output trace mechanism and 
   8386 has a 
   8387 much larger code and data size.
   8388 
   8389   Previous Release:
   8390     Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
   8391     Debug Version:     153.7K Code, 48.2K Data, 201.9K Total
   8392   Current Release:
   8393     Non-Debug Version:  81.2K Code, 17.0K Data,  98.2K Total
   8394     Debug Version:     155.8K Code, 49.1K Data, 204.9K Total
   8395 
   8396 ----------------------------------------
   8397 29 August 2008. Summary of changes for version 20080829:
   8398 
   8399 1) ACPI CA Core Subsystem:
   8400 
   8401 Completed a major cleanup of the internal ACPI_OPERAND_OBJECT of type 
   8402 Reference. Changes include the elimination of cheating on the Object 
   8403 field 
   8404 for the DdbHandle subtype, addition of a reference class field to 
   8405 differentiate the various reference types (instead of an AML opcode), and 
   8406 the 
   8407 cleanup of debug output for this object. Lin Ming, Bob Moore. BZ 723
   8408 
   8409 Reduce an error to a warning for an incorrect method argument count. 
   8410 Previously aborted with an error if too few arguments were passed to a 
   8411 control method via the external ACPICA interface. Now issue a warning 
   8412 instead 
   8413 and continue. Handles the case where the method inadvertently declares 
   8414 too 
   8415 many arguments, but does not actually use the extra ones. Applies mainly 
   8416 to 
   8417 the predefined methods. Lin Ming. Linux BZ 11032.
   8418 
   8419 Disallow the evaluation of named object types with no intrinsic value. 
   8420 Return 
   8421 AE_TYPE for objects that have no value and therefore evaluation is 
   8422 undefined: 
   8423 Device, Event, Mutex, Region, Thermal, and Scope. Previously, evaluation 
   8424 of 
   8425 these types were allowed, but an exception would be generated at some 
   8426 point 
   8427 during the evaluation. Now, the error is generated up front.
   8428 
   8429 Fixed a possible memory leak in the AcpiNsGetExternalPathname function 
   8430 (nsnames.c). Fixes a leak in the error exit path.
   8431 
   8432 Removed the obsolete debug levels ACPI_DB_WARN and ACPI_DB_ERROR. These 
   8433 debug 
   8434 levels were made obsolete by the ACPI_WARNING, ACPI_ERROR, and 
   8435 ACPI_EXCEPTION 
   8436 interfaces. Also added ACPI_DB_EVENTS to correspond with the existing 
   8437 ACPI_LV_EVENTS.
   8438 
   8439 Removed obsolete and/or unused exception codes from the acexcep.h header. 
   8440 There is the possibility that certain device drivers may be affected if 
   8441 they 
   8442 use any of these exceptions.
   8443 
   8444 The ACPICA documentation has been added to the public git source tree, 
   8445 under 
   8446 acpica/documents. Included are the ACPICA programmer reference, the iASL 
   8447 compiler reference, and the changes.txt release logfile.
   8448 
   8449 Example Code and Data Size: These are the sizes for the OS-independent 
   8450 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   8451 debug version of the code includes the debug output trace mechanism and 
   8452 has a 
   8453 much larger code and data size.
   8454 
   8455   Previous Release:
   8456     Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
   8457     Debug Version:     153.9K Code, 48.4K Data, 202.3K Total
   8458   Current Release:
   8459     Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
   8460     Debug Version:     153.7K Code, 48.2K Data, 201.9K Total
   8461 
   8462 2) iASL Compiler/Disassembler and Tools:
   8463 
   8464 Allow multiple argument counts for the predefined _SCP method. ACPI 3.0 
   8465 defines _SCP with 3 arguments. Previous versions defined it with only 1 
   8466 argument. iASL now allows both definitions.
   8467 
   8468 iASL/disassembler: avoid infinite loop on bad ACPI tables. Check for 
   8469 zero-
   8470 length subtables when disassembling ACPI tables. Also fixed a couple of 
   8471 errors where a full 16-bit table type field was not extracted from the 
   8472 input 
   8473 properly.
   8474 
   8475 acpisrc: Improve comment counting mechanism for generating source code 
   8476 statistics. Count first and last lines of multi-line comments as 
   8477 whitespace, 
   8478 not comment lines. Handle Linux legal header in addition to standard 
   8479 acpica 
   8480 header.
   8481 
   8482 ----------------------------------------
   8483 
   8484 29 July 2008. Summary of changes for version 20080729:
   8485 
   8486 1) ACPI CA Core Subsystem:
   8487 
   8488 Fix a possible deadlock in the GPE dispatch. Remove call to 
   8489 AcpiHwDisableAllGpes during wake in AcpiEvGpeDispatch. This call will 
   8490 attempt 
   8491 to acquire the GPE lock but can deadlock since the GPE lock is already 
   8492 held 
   8493 at dispatch time. This code was introduced in version 20060831 as a 
   8494 response 
   8495 to Linux BZ 6881 and has since been removed from Linux.
   8496 
   8497 Add a function to dereference returned reference objects. Examines the 
   8498 return 
   8499 object from a call to AcpiEvaluateObject. Any Index or RefOf references 
   8500 are 
   8501 automatically dereferenced in an attempt to return something useful 
   8502 (these 
   8503 reference types cannot be converted into an external ACPI_OBJECT.) 
   8504 Provides 
   8505 MS compatibility. Lin Ming, Bob Moore. Linux BZ 11105
   8506 
   8507 x2APIC support: changes for MADT and SRAT ACPI tables. There are 2 new 
   8508 subtables for the MADT and one new subtable for the SRAT. Includes 
   8509 disassembler and AcpiSrc support. Data from the Intel 64 Architecture 
   8510 x2APIC 
   8511 Specification, June 2008.
   8512 
   8513 Additional error checking for pathname utilities. Add error check after 
   8514 all 
   8515 calls to AcpiNsGetPathnameLength. Add status return from 
   8516 AcpiNsBuildExternalPath and check after all calls. Add parameter 
   8517 validation 
   8518 to AcpiUtInitializeBuffer. Reported by and initial patch by Ingo Molnar.
   8519 
   8520 Return status from the global init function AcpiUtGlobalInitialize. This 
   8521 is 
   8522 used by both the kernel subsystem and the utilities such as iASL 
   8523 compiler. 
   8524 The function could possibly fail when the caches are initialized. Yang 
   8525 Yi.
   8526 
   8527 Add a function to decode reference object types to strings. Created for 
   8528 improved error messages. 
   8529 
   8530 Improve object conversion error messages. Better error messages during 
   8531 object 
   8532 conversion from internal to the external ACPI_OBJECT. Used for external 
   8533 calls 
   8534 to AcpiEvaluateObject.
   8535 
   8536 Example Code and Data Size: These are the sizes for the OS-independent 
   8537 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   8538 debug version of the code includes the debug output trace mechanism and 
   8539 has a 
   8540 much larger code and data size.
   8541 
   8542   Previous Release:
   8543     Non-Debug Version:  79.6K Code, 16.2K Data,  95.8K Total
   8544     Debug Version:     153.5K Code, 48.2K Data, 201.7K Total
   8545   Current Release:
   8546     Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
   8547     Debug Version:     153.9K Code, 48.4K Data, 202.3K Total
   8548 
   8549 2) iASL Compiler/Disassembler and Tools:
   8550 
   8551 Debugger: fix a possible hang when evaluating non-methods. Fixes a 
   8552 problem 
   8553 introduced in version 20080701. If the object being evaluated (via 
   8554 execute 
   8555 command) is not a method, the debugger can hang while trying to obtain 
   8556 non-
   8557 existent parameters.
   8558 
   8559 iASL: relax error for using reserved "_T_x" identifiers. These names can 
   8560 appear in a disassembled ASL file if they were emitted by the original 
   8561 compiler. Instead of issuing an error or warning and forcing the user to 
   8562 manually change these names, issue a remark instead.
   8563 
   8564 iASL: error if named object created in while loop. Emit an error if any 
   8565 named 
   8566 object is created within a While loop. If allowed, this code will 
   8567 generate 
   8568 a 
   8569 run-time error on the second iteration of the loop when an attempt is 
   8570 made 
   8571 to 
   8572 create the same named object twice. ACPICA bugzilla 730.
   8573 
   8574 iASL: Support absolute pathnames for include files. Add support for 
   8575 absolute 
   8576 pathnames within the Include operator. previously, only relative 
   8577 pathnames 
   8578 were supported.
   8579 
   8580 iASL: Enforce minimum 1 interrupt in interrupt macro and Resource 
   8581 Descriptor. 
   8582 The ACPI spec requires one interrupt minimum. BZ 423
   8583 
   8584 iASL: Handle a missing ResourceSource arg, with a present SourceIndex. 
   8585 Handles the case for the Interrupt Resource Descriptor where
   8586 the ResourceSource argument is omitted but ResourceSourceIndex
   8587 is present. Now leave room for the Index. BZ 426
   8588 
   8589 iASL: Prevent error message if CondRefOf target does not exist. Fixes 
   8590 cases 
   8591 where an error message is emitted if the target does not exist. BZ 516
   8592 
   8593 iASL: Fix broken -g option (get Windows ACPI tables). Fixes the -g option 
   8594 (get ACPI tables on Windows). This was apparently broken in version 
   8595 20070919.
   8596 
   8597 AcpiXtract: Handle EOF while extracting data. Correctly handle the case 
   8598 where 
   8599 the EOF happens immediately after the last table in the input file. Print 
   8600 completion message. Previously, no message was displayed in this case.
   8601 
   8602 ----------------------------------------
   8603 01 July 2008. Summary of changes for version 20080701:
   8604 
   8605 0) Git source tree / acpica.org
   8606 
   8607 Fixed a problem where a git-clone from http would not transfer the entire 
   8608 source tree.
   8609 
   8610 1) ACPI CA Core Subsystem:
   8611 
   8612 Implemented a "careful" GPE disable in AcpiEvDisableGpe, only modify one 
   8613 enable bit. Now performs a read-change-write of the enable register 
   8614 instead 
   8615 of simply writing out the cached enable mask. This will prevent 
   8616 inadvertent 
   8617 enabling of GPEs if a rogue GPE is received during initialization (before 
   8618 GPE 
   8619 handlers are installed.)
   8620 
   8621 Implemented a copy for dynamically loaded tables. Previously, dynamically 
   8622 loaded tables were simply mapped - but on some machines this memory is 
   8623 corrupted after suspend. Now copy the table to a local buffer. For the 
   8624 OpRegion case, added checksum verify. Use the table length from the table 
   8625 header, not the region length. For the Buffer case, use the table length 
   8626 also. Dennis Noordsij, Bob Moore. BZ 10734
   8627 
   8628 Fixed a problem where the same ACPI table could not be dynamically loaded 
   8629 and 
   8630 unloaded more than once. Without this change, a table cannot be loaded 
   8631 again 
   8632 once it has been loaded/unloaded one time. The current mechanism does not 
   8633 unregister a table upon an unload. During a load, if the same table is 
   8634 found, 
   8635 this no longer returns an exception. BZ 722
   8636 
   8637 Fixed a problem where the wrong descriptor length was calculated for the 
   8638 EndTag descriptor in 64-bit mode. The "minimal" descriptors such as 
   8639 EndTag 
   8640 are calculated as 12 bytes long, but the actual length in the internal 
   8641 descriptor is 16 because of the round-up to 8 on the 64-bit build. 
   8642 Reported 
   8643 by Linn Crosetto. BZ 728
   8644 
   8645 Fixed a possible memory leak in the Unload operator. The DdbHandle 
   8646 returned 
   8647 by Load() did not have its reference count decremented during unload, 
   8648 leading 
   8649 to a memory leak. Lin Ming. BZ 727
   8650 
   8651 Fixed a possible memory leak when deleting thermal/processor objects. Any 
   8652 associated notify handlers (and objects) were not being deleted. Fiodor 
   8653 Suietov. BZ 506
   8654 
   8655 Fixed the ordering of the ASCII names in the global mutex table to match 
   8656 the 
   8657 actual mutex IDs. Used by AcpiUtGetMutexName, a function used for debug 
   8658 only. 
   8659 Vegard Nossum. BZ 726
   8660 
   8661 Enhanced the AcpiGetObjectInfo interface to return the number of required 
   8662 arguments if the object is a control method. Added this call to the 
   8663 debugger 
   8664 so the proper number of default arguments are passed to a method. This 
   8665 prevents a warning when executing methods from AcpiExec.
   8666 
   8667 Added a check for an invalid handle in AcpiGetObjectInfo. Return 
   8668 AE_BAD_PARAMETER if input handle is invalid. BZ 474
   8669 
   8670 Fixed an extraneous warning from exconfig.c on the 64-bit build.
   8671 
   8672 Example Code and Data Size: These are the sizes for the OS-independent 
   8673 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   8674 debug version of the code includes the debug output trace mechanism and 
   8675 has a 
   8676 much larger code and data size.
   8677 
   8678   Previous Release:
   8679     Non-Debug Version:  79.3K Code, 16.2K Data,  95.5K Total
   8680     Debug Version:     153.0K Code, 48.2K Data, 201.2K Total
   8681   Current Release:
   8682     Non-Debug Version:  79.6K Code, 16.2K Data,  95.8K Total
   8683     Debug Version:     153.5K Code, 48.2K Data, 201.7K Total
   8684 
   8685 2) iASL Compiler/Disassembler and Tools:
   8686 
   8687 iASL: Added two missing ACPI reserved names. Added _MTP and _ASZ, both 
   8688 resource descriptor names.
   8689 
   8690 iASL: Detect invalid ASCII characters in input (windows version). Removed 
   8691 the 
   8692 "-CF" flag from the flex compile, enables correct detection of non-ASCII 
   8693 characters in the input. BZ 441
   8694 
   8695 iASL: Eliminate warning when result of LoadTable is not used. Eliminate 
   8696 the 
   8697 "result of operation not used" warning when the DDB handle returned from 
   8698 LoadTable is not used. The warning is not needed. BZ 590
   8699 
   8700 AcpiExec: Add support for dynamic table load/unload. Now calls _CFG 
   8701 method 
   8702 to 
   8703 pass address of table to the AML. Added option to disable OpRegion 
   8704 simulation 
   8705 to allow creation of an OpRegion with a real address that was passed to 
   8706 _CFG. 
   8707 All of this allows testing of the Load and Unload operators from 
   8708 AcpiExec.
   8709 
   8710 Debugger: update tables command for unloaded tables. Handle unloaded 
   8711 tables 
   8712 and use the standard table header output routine.
   8713 
   8714 ----------------------------------------
   8715 09 June 2008. Summary of changes for version 20080609:
   8716 
   8717 1) ACPI CA Core Subsystem:
   8718 
   8719 Implemented a workaround for reversed _PRT entries. A significant number 
   8720 of 
   8721 BIOSs erroneously reverse the _PRT SourceName and the SourceIndex. This 
   8722 change dynamically detects and repairs this problem. Provides 
   8723 compatibility 
   8724 with MS ACPI. BZ 6859
   8725 
   8726 Simplified the internal ACPI hardware interfaces to eliminate the locking 
   8727 flag parameter from Register Read/Write. Added a new external interface, 
   8728 AcpiGetRegisterUnlocked.
   8729 
   8730 Fixed a problem where the invocation of a GPE control method could hang. 
   8731 This 
   8732 was a regression introduced in 20080514. The new method argument count 
   8733 validation mechanism can enter an infinite loop when a GPE method is 
   8734 dispatched. Problem fixed by removing the obsolete code that passed GPE 
   8735 block 
   8736 information to the notify handler via the control method parameter 
   8737 pointer.
   8738 
   8739 Fixed a problem where the _SST execution status was incorrectly returned 
   8740 to 
   8741 the caller of AcpiEnterSleepStatePrep. This was a regression introduced 
   8742 in 
   8743 20080514. _SST is optional and a NOT_FOUND exception should never be 
   8744 returned. BZ 716
   8745 
   8746 Fixed a problem where a deleted object could be accessed from within the 
   8747 AML 
   8748 parser. This was a regression introduced in version 20080123 as a fix for 
   8749 the 
   8750 Unload operator. Lin Ming. BZ 10669
   8751 
   8752 Cleaned up the debug operand dump mechanism. Eliminated unnecessary 
   8753 operands 
   8754 and eliminated the use of a negative index in a loop. Operands are now 
   8755 displayed in the correct order, not backwards. This also fixes a 
   8756 regression 
   8757 introduced in 20080514 on 64-bit systems where the elimination of 
   8758 ACPI_NATIVE_UINT caused the negative index to go large and positive. BZ 
   8759 715
   8760 
   8761 Fixed a possible memory leak in EvPciConfigRegionSetup where the error 
   8762 exit 
   8763 path did not delete a locally allocated structure.
   8764 
   8765 Updated definitions for the DMAR and SRAT tables to synchronize with the 
   8766 current specifications. Includes disassembler support.
   8767 
   8768 Fixed a problem in the mutex debug code (in utmutex.c) where an incorrect 
   8769 loop termination value was used. Loop terminated on iteration early, 
   8770 missing 
   8771 one mutex. Linn Crosetto
   8772 
   8773 Example Code and Data Size: These are the sizes for the OS-independent 
   8774 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   8775 debug version of the code includes the debug output trace mechanism and 
   8776 has a 
   8777 much larger code and data size.
   8778 
   8779   Previous Release:
   8780     Non-Debug Version:  79.5K Code, 16.2K Data,  95.7K Total
   8781     Debug Version:     153.3K Code, 48.3K Data, 201.6K Total
   8782   Current Release:
   8783     Non-Debug Version:  79.3K Code, 16.2K Data,  95.5K Total
   8784     Debug Version:     153.0K Code, 48.2K Data, 201.2K Total
   8785 
   8786 2) iASL Compiler/Disassembler and Tools:
   8787 
   8788 Disassembler: Implemented support for EisaId() within _CID objects. Now 
   8789 disassemble integer _CID objects back to EisaId invocations, including 
   8790 multiple integers within _CID packages. Includes single-step support for 
   8791 debugger also.
   8792 
   8793 Disassembler: Added support for DMAR and SRAT table definition changes.
   8794 
   8795 ----------------------------------------
   8796 14 May 2008. Summary of changes for version 20080514:
   8797 
   8798 1) ACPI CA Core Subsystem:
   8799 
   8800 Fixed a problem where GPEs were enabled too early during the ACPICA 
   8801 initialization. This could lead to "handler not installed" errors on some 
   8802 machines. Moved GPE enable until after _REG/_STA/_INI methods are run. 
   8803 This 
   8804 ensures that all operation regions and devices throughout the namespace 
   8805 have 
   8806 been initialized before GPEs are enabled. Alexey Starikovskiy, BZ 9916.
   8807 
   8808 Implemented a change to the enter sleep code. Moved execution of the _GTS 
   8809 method to just before setting sleep enable bit. The execution was moved 
   8810 from 
   8811 AcpiEnterSleepStatePrep to AcpiEnterSleepState. _GTS is now executed 
   8812 immediately before the SLP_EN bit is set, as per the ACPI specification. 
   8813 Luming Yu, BZ 1653.
   8814 
   8815 Implemented a fix to disable unknown GPEs (2nd version). Now always 
   8816 disable 
   8817 the GPE, even if ACPICA thinks that that it is already disabled. It is 
   8818 possible that the AML or some other code has enabled the GPE unbeknownst 
   8819 to 
   8820 the ACPICA code.
   8821 
   8822 Fixed a problem with the Field operator where zero-length fields would 
   8823 return 
   8824 an AE_AML_NO_OPERAND exception during table load. Fix enables zero-length 
   8825 ASL 
   8826 field declarations in Field(), BankField(), and IndexField(). BZ 10606.
   8827 
   8828 Implemented a fix for the Load operator, now load the table at the 
   8829 namespace 
   8830 root. This reverts a change introduced in version 20071019. The table is 
   8831 now 
   8832 loaded at the namespace root even though this goes against the ACPI 
   8833 specification. This provides compatibility with other ACPI 
   8834 implementations. 
   8835 The ACPI specification will be updated to reflect this in ACPI 4.0. Lin 
   8836 Ming.
   8837 
   8838 Fixed a problem where ACPICA would not Load() tables with unusual 
   8839 signatures. 
   8840 Now ignore ACPI table signature for Load() operator. Only "SSDT" is 
   8841 acceptable to the ACPI spec, but tables are seen with OEMx and null sigs. 
   8842 Therefore, signature validation is worthless. Apparently MS ACPI accepts 
   8843 such 
   8844 signatures, ACPICA must be compatible. BZ 10454.
   8845 
   8846 Fixed a possible negative array index in AcpiUtValidateException. Added 
   8847 NULL 
   8848 fields to the exception string arrays to eliminate a -1 subtraction on 
   8849 the 
   8850 SubStatus field.
   8851 
   8852 Updated the debug tracking macros to reduce overall code and data size. 
   8853 Changed ACPI_MODULE_NAME and ACPI_FUNCTION_NAME to use arrays of strings 
   8854 instead of pointers to static strings. Jan Beulich and Bob Moore.
   8855 
   8856 Implemented argument count checking in control method invocation via 
   8857 AcpiEvaluateObject. Now emit an error if too few arguments, warning if 
   8858 too 
   8859 many. This applies only to extern programmatic control method execution, 
   8860 not 
   8861 method-to-method calls within the AML. Lin Ming.
   8862 
   8863 Eliminated the ACPI_NATIVE_UINT type across all ACPICA code. This type is 
   8864 no 
   8865 longer needed, especially with the removal of 16-bit support. It was 
   8866 replaced 
   8867 mostly with UINT32, but also ACPI_SIZE where a type that changes 32/64 
   8868 bit 
   8869 on 
   8870 32/64-bit platforms is required.
   8871 
   8872 Added the C const qualifier for appropriate string constants -- mostly 
   8873 MODULE_NAME and printf format strings. Jan Beulich.
   8874 
   8875 Example Code and Data Size: These are the sizes for the OS-independent 
   8876 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   8877 debug version of the code includes the debug output trace mechanism and 
   8878 has a 
   8879 much larger code and data size.
   8880 
   8881   Previous Release:
   8882     Non-Debug Version:  80.0K Code, 17.4K Data,  97.4K Total
   8883     Debug Version:     159.4K Code, 64.4K Data, 223.8K Total
   8884   Current Release:
   8885     Non-Debug Version:  79.5K Code, 16.2K Data,  95.7K Total
   8886     Debug Version:     153.3K Code, 48.3K Data, 201.6K Total
   8887 
   8888 2) iASL Compiler/Disassembler and Tools:
   8889 
   8890 Implemented ACPI table revision ID validation in the disassembler. Zero 
   8891 is 
   8892 always invalid. For DSDTs, the ID controls the interpreter integer width. 
   8893 1 
   8894 means 32-bit and this is unusual. 2 or greater is 64-bit.
   8895 
   8896 ----------------------------------------
   8897 21 March 2008. Summary of changes for version 20080321:
   8898 
   8899 1) ACPI CA Core Subsystem:
   8900 
   8901 Implemented an additional change to the GPE support in order to suppress 
   8902 spurious or stray GPEs. The AcpiEvDisableGpe function will now 
   8903 permanently 
   8904 disable incoming GPEs that are neither enabled nor disabled -- meaning 
   8905 that 
   8906 the GPE is unknown to the system. This should prevent future interrupt 
   8907 floods 
   8908 from that GPE. BZ 6217 (Zhang Rui)
   8909 
   8910 Fixed a problem where NULL package elements were not returned to the 
   8911 AcpiEvaluateObject interface correctly. The element was simply ignored 
   8912 instead of returning a NULL ACPI_OBJECT package element, potentially 
   8913 causing 
   8914 a buffer overflow and/or confusing the caller who expected a fixed number 
   8915 of 
   8916 elements. BZ 10132 (Lin Ming, Bob Moore)
   8917 
   8918 Fixed a problem with the CreateField, CreateXXXField (Bit, Byte, Word, 
   8919 Dword, 
   8920 Qword), Field, BankField, and IndexField operators when invoked from 
   8921 inside 
   8922 an executing control method. In this case, these operators created 
   8923 namespace 
   8924 nodes that were incorrectly left marked as permanent nodes instead of 
   8925 temporary nodes. This could cause a problem if there is race condition 
   8926 between an exiting control method and a running namespace walk. (Reported 
   8927 by 
   8928 Linn Crosetto)
   8929 
   8930 Fixed a problem where the CreateField and CreateXXXField operators would 
   8931 incorrectly allow duplicate names (the name of the field) with no 
   8932 exception 
   8933 generated.
   8934 
   8935 Implemented several changes for Notify handling. Added support for new 
   8936 Notify 
   8937 values (ACPI 2.0+) and improved the Notify debug output. Notify on 
   8938 PowerResource objects is no longer allowed, as per the ACPI 
   8939 specification. 
   8940 (Bob Moore, Zhang Rui)
   8941 
   8942 All Reference Objects returned via the AcpiEvaluateObject interface are 
   8943 now 
   8944 marked as type "REFERENCE" instead of "ANY". The type ANY is now reserved 
   8945 for 
   8946 NULL objects - either NULL package elements or unresolved named 
   8947 references.
   8948 
   8949 Fixed a problem where an extraneous debug message was produced for 
   8950 package 
   8951 objects (when debugging enabled). The message "Package List length larger 
   8952 than NumElements count" is now produced in the correct case, and is now 
   8953 an 
   8954 error message rather than a debug message. Added a debug message for the 
   8955 opposite case, where NumElements is larger than the Package List (the 
   8956 package 
   8957 will be padded out with NULL elements as per the ACPI spec.)
   8958 
   8959 Implemented several improvements for the output of the ASL "Debug" object 
   8960 to 
   8961 clarify and keep all data for a given object on one output line.
   8962 
   8963 Fixed two size calculation issues with the variable-length Start 
   8964 Dependent 
   8965 resource descriptor.
   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 
   8971 a much larger code and data size.
   8972 
   8973   Previous Release:
   8974     Non-Debug Version:  79.7K Code, 17.3K Data,  97.0K Total
   8975     Debug Version:     158.9K Code, 64.0K Data, 222.9K Total
   8976   Current Release:
   8977     Non-Debug Version:  80.0K Code, 17.4K Data,  97.4K Total
   8978     Debug Version:     159.4K Code, 64.4K Data, 223.8K Total
   8979 
   8980 2) iASL Compiler/Disassembler and Tools:
   8981 
   8982 Fixed a problem with the use of the Switch operator where execution of 
   8983 the 
   8984 containing method by multiple concurrent threads could cause an 
   8985 AE_ALREADY_EXISTS exception. This is caused by the fact that there is no 
   8986 actual Switch opcode, it must be simulated with local named temporary 
   8987 variables and if/else pairs. The solution chosen was to mark any method 
   8988 that 
   8989 uses Switch as Serialized, thus preventing multiple thread entries. BZ 
   8990 469.
   8991 
   8992 ----------------------------------------
   8993 13 February 2008. Summary of changes for version 20080213:
   8994 
   8995 1) ACPI CA Core Subsystem:
   8996 
   8997 Implemented another MS compatibility design change for GPE/Notify 
   8998 handling. 
   8999 GPEs are now cleared/enabled asynchronously to allow all pending notifies 
   9000 to 
   9001 complete first. It is expected that the OSL will queue the enable request 
   9002 behind all pending notify requests (may require changes to the local host 
   9003 OSL 
   9004 in AcpiOsExecute). Alexey Starikovskiy.
   9005 
   9006 Fixed a problem where buffer and package objects passed as arguments to a 
   9007 control method via the external AcpiEvaluateObject interface could cause 
   9008 an 
   9009 AE_AML_INTERNAL exception depending on the order and type of operators 
   9010 executed by the target control method.
   9011 
   9012 Fixed a problem where resource descriptor size optimization could cause a 
   9013 problem when a _CRS resource template is passed to a _SRS method. The 
   9014 _SRS 
   9015 resource template must use the same descriptors (with the same size) as 
   9016 returned from _CRS. This change affects the following resource 
   9017 descriptors: 
   9018 IRQ / IRQNoFlags and StartDependendentFn / StartDependentFnNoPri. (BZ 
   9019 9487)
   9020 
   9021 Fixed a problem where a CopyObject to RegionField, BankField, and 
   9022 IndexField 
   9023 objects did not perform an implicit conversion as it should. These types 
   9024 must 
   9025 retain their initial type permanently as per the ACPI specification. 
   9026 However, 
   9027 a CopyObject to all other object types should not perform an implicit 
   9028 conversion, as per the ACPI specification. (Lin Ming, Bob Moore) BZ 388
   9029 
   9030 Fixed a problem with the AcpiGetDevices interface where the mechanism to 
   9031 match device CIDs did not examine the entire list of available CIDs, but 
   9032 instead aborted on the first non-matching CID. Andrew Patterson.
   9033 
   9034 Fixed a regression introduced in version 20071114. The ACPI_HIDWORD macro 
   9035 was 
   9036 inadvertently changed to return a 16-bit value instead of a 32-bit value, 
   9037 truncating the upper dword of a 64-bit value. This macro is only used to 
   9038 display debug output, so no incorrect calculations were made. Also, 
   9039 reimplemented the macro so that a 64-bit shift is not performed by 
   9040 inefficient compilers.
   9041 
   9042 Added missing va_end statements that should correspond with each va_start 
   9043 statement.
   9044 
   9045 Example Code and Data Size: These are the sizes for the OS-independent 
   9046 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9047 debug version of the code includes the debug output trace mechanism and 
   9048 has 
   9049 a much larger code and data size.
   9050 
   9051   Previous Release:
   9052     Non-Debug Version:  79.5K Code, 17.2K Data,  96.7K Total
   9053     Debug Version:     159.0K Code, 63.8K Data, 222.8K Total
   9054   Current Release:
   9055     Non-Debug Version:  79.7K Code, 17.3K Data,  97.0K Total
   9056     Debug Version:     158.9K Code, 64.0K Data, 222.9K Total
   9057 
   9058 2) iASL Compiler/Disassembler and Tools:
   9059 
   9060 Implemented full disassembler support for the following new ACPI tables: 
   9061 BERT, EINJ, and ERST. Implemented partial disassembler support for the 
   9062 complicated HEST table. These tables support the Windows Hardware Error 
   9063 Architecture (WHEA).
   9064 
   9065 ----------------------------------------
   9066 23 January 2008. Summary of changes for version 20080123:
   9067 
   9068 1) ACPI CA Core Subsystem:
   9069 
   9070 Added the 2008 copyright to all module headers and signons. This affects 
   9071 virtually every file in the ACPICA core subsystem, the iASL compiler, and 
   9072 the tools/utilities.
   9073 
   9074 Fixed a problem with the SizeOf operator when used with Package and 
   9075 Buffer 
   9076 objects. These objects have deferred execution for some arguments, and 
   9077 the 
   9078 execution is now completed before the SizeOf is executed. This problem 
   9079 caused 
   9080 unexpected AE_PACKAGE_LIMIT errors on some systems (Lin Ming, Bob Moore) 
   9081 BZ 
   9082 9558
   9083 
   9084 Implemented an enhancement to the interpreter "slack mode". In the 
   9085 absence 
   9086 of 
   9087 an explicit return or an implicitly returned object from the last 
   9088 executed 
   9089 opcode, a control method will now implicitly return an integer of value 0 
   9090 for 
   9091 Microsoft compatibility. (Lin Ming) BZ 392
   9092 
   9093 Fixed a problem with the Load operator where an exception was not 
   9094 returned 
   9095 in 
   9096 the case where the table is already loaded. (Lin Ming) BZ 463
   9097 
   9098 Implemented support for the use of DDBHandles as an Indexed Reference, as 
   9099 per 
   9100 the ACPI spec. (Lin Ming) BZ 486
   9101 
   9102 Implemented support for UserTerm (Method invocation) for the Unload 
   9103 operator 
   9104 as per the ACPI spec. (Lin Ming) BZ 580
   9105 
   9106 Fixed a problem with the LoadTable operator where the OemId and 
   9107 OemTableId 
   9108 input strings could cause unexpected failures if they were shorter than 
   9109 the 
   9110 maximum lengths allowed. (Lin Ming, Bob Moore) BZ 576
   9111 
   9112 Implemented support for UserTerm (Method invocation) for the Unload 
   9113 operator 
   9114 as per the ACPI spec. (Lin Ming) BZ 580
   9115 
   9116 Implemented header file support for new ACPI tables - BERT, ERST, EINJ, 
   9117 HEST, 
   9118 IBFT, UEFI, WDAT. Disassembler support is forthcoming.
   9119 
   9120 Example Code and Data Size: These are the sizes for the OS-independent 
   9121 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9122 debug version of the code includes the debug output trace mechanism and 
   9123 has 
   9124 a much larger code and data size.
   9125 
   9126   Previous Release:
   9127     Non-Debug Version:  79.3K Code, 17.2K Data,  96.5K Total
   9128     Debug Version:     158.6K Code, 63.8K Data, 222.4K Total
   9129   Current Release:
   9130     Non-Debug Version:  79.5K Code, 17.2K Data,  96.7K Total
   9131     Debug Version:     159.0K Code, 63.8K Data, 222.8K Total
   9132 
   9133 2) iASL Compiler/Disassembler and Tools:
   9134 
   9135 Implemented support in the disassembler for checksum validation on 
   9136 incoming 
   9137 binary DSDTs and SSDTs. If incorrect, a message is displayed within the 
   9138 table 
   9139 header dump at the start of the disassembly.
   9140 
   9141 Implemented additional debugging information in the namespace listing 
   9142 file 
   9143 created during compilation. In addition to the namespace hierarchy, the 
   9144 full 
   9145 pathname to each namespace object is displayed.
   9146 
   9147 Fixed a problem with the disassembler where invalid ACPI tables could 
   9148 cause 
   9149 faults or infinite loops.
   9150 
   9151 Fixed an unexpected parse error when using the optional "parameter types" 
   9152 list in a control method declaration. (Lin Ming) BZ 397
   9153 
   9154 Fixed a problem where two External declarations with the same name did 
   9155 not 
   9156 cause an error (Lin Ming) BZ 509
   9157 
   9158 Implemented support for full TermArgs (adding Argx, Localx and method 
   9159 invocation) for the ParameterData parameter to the LoadTable operator. 
   9160 (Lin 
   9161 Ming) BZ 583,587
   9162 
   9163 ----------------------------------------
   9164 19 December 2007. Summary of changes for version 20071219:
   9165 
   9166 1) ACPI CA Core Subsystem:
   9167 
   9168 Implemented full support for deferred execution for the TermArg string 
   9169 arguments for DataTableRegion. This enables forward references and full 
   9170 operand resolution for the three string arguments. Similar to 
   9171 OperationRegion 
   9172 deferred argument execution.) Lin Ming. BZ 430
   9173 
   9174 Implemented full argument resolution support for the BankValue argument 
   9175 to 
   9176 BankField. Previously, only constants were supported, now any TermArg may 
   9177 be 
   9178 used. Lin Ming BZ 387, 393
   9179 
   9180 Fixed a problem with AcpiGetDevices where the search of a branch of the 
   9181 device tree could be terminated prematurely. In accordance with the ACPI 
   9182 specification, the search down the current branch is terminated if a 
   9183 device 
   9184 is both not present and not functional (instead of just not present.) 
   9185 Yakui 
   9186 Zhao.
   9187 
   9188 Fixed a problem where "unknown" GPEs could be allowed to fire repeatedly 
   9189 if 
   9190 the underlying AML code changed the GPE enable registers. Now, any 
   9191 unknown 
   9192 incoming GPE (no _Lxx/_Exx method and not the EC GPE) is immediately 
   9193 disabled 
   9194 instead of simply ignored. Rui Zhang.
   9195 
   9196 Fixed a problem with Index Fields where the Index register was 
   9197 incorrectly 
   9198 limited to a maximum of 32 bits. Now any size may be used.
   9199 
   9200 Fixed a couple memory leaks associated with "implicit return" objects 
   9201 when 
   9202 the AML Interpreter slack mode is enabled. Lin Ming BZ 349
   9203 
   9204 Example Code and Data Size: These are the sizes for the OS-independent 
   9205 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9206 debug version of the code includes the debug output trace mechanism and 
   9207 has 
   9208 a much larger code and data size.
   9209 
   9210   Previous Release:
   9211     Non-Debug Version:  79.0K Code, 17.2K Data,  96.2K Total
   9212     Debug Version:     157.9K Code, 63.6K Data, 221.5K Total
   9213   Current Release:
   9214     Non-Debug Version:  79.3K Code, 17.2K Data,  96.5K Total
   9215     Debug Version:     158.6K Code, 63.8K Data, 222.4K Total
   9216 
   9217 ----------------------------------------
   9218 14 November 2007. Summary of changes for version 20071114:
   9219 
   9220 1) ACPI CA Core Subsystem:
   9221 
   9222 Implemented event counters for each of the Fixed Events, the ACPI SCI 
   9223 (interrupt) itself, and control methods executed. Named 
   9224 AcpiFixedEventCount[], AcpiSciCount, and AcpiMethodCount respectively. 
   9225 These 
   9226 should be useful for debugging and statistics.
   9227 
   9228 Implemented a new external interface, AcpiGetStatistics, to retrieve the 
   9229 contents of the various event counters. Returns the current values for 
   9230 AcpiSciCount, AcpiGpeCount, the AcpiFixedEventCount array, and 
   9231 AcpiMethodCount. The interface can be expanded in the future if new 
   9232 counters 
   9233 are added. Device drivers should use this interface rather than access 
   9234 the 
   9235 counters directly.
   9236 
   9237 Fixed a problem with the FromBCD and ToBCD operators. With some 
   9238 compilers, 
   9239 the ShortDivide function worked incorrectly, causing problems with the 
   9240 BCD 
   9241 functions with large input values. A truncation from 64-bit to 32-bit 
   9242 inadvertently occurred. Internal BZ 435. Lin Ming
   9243 
   9244 Fixed a problem with Index references passed as method arguments. 
   9245 References 
   9246 passed as arguments to control methods were dereferenced immediately 
   9247 (before 
   9248 control was passed to the called method). The references are now 
   9249 correctly 
   9250 passed directly to the called method. BZ 5389. Lin Ming
   9251 
   9252 Fixed a problem with CopyObject used in conjunction with the Index 
   9253 operator. 
   9254 The reference was incorrectly dereferenced before the copy. The reference 
   9255 is 
   9256 now correctly copied. BZ 5391. Lin Ming
   9257 
   9258 Fixed a problem with Control Method references within Package objects. 
   9259 These 
   9260 references are now correctly generated. This completes the package 
   9261 construction overhaul that began in version 20071019.
   9262 
   9263 Example Code and Data Size: These are the sizes for the OS-independent 
   9264 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9265 debug version of the code includes the debug output trace mechanism and 
   9266 has 
   9267 a much larger code and data size.
   9268 
   9269   Previous Release:
   9270     Non-Debug Version:  78.8K Code, 17.2K Data,  96.0K Total
   9271     Debug Version:     157.2K Code, 63.4K Data, 220.6K Total
   9272   Current Release:
   9273     Non-Debug Version:  79.0K Code, 17.2K Data,  96.2K Total
   9274     Debug Version:     157.9K Code, 63.6K Data, 221.5K Total
   9275 
   9276 
   9277 2) iASL Compiler/Disassembler and Tools:
   9278 
   9279 The AcpiExec utility now installs handlers for all of the predefined 
   9280 Operation Region types. New types supported are: PCI_Config, CMOS, and 
   9281 PCIBARTarget.
   9282 
   9283 Fixed a problem with the 64-bit version of AcpiExec where the extended 
   9284 (64-
   9285 bit) address fields for the DSDT and FACS within the FADT were not being 
   9286 used, causing truncation of the upper 32-bits of these addresses. Lin 
   9287 Ming 
   9288 and Bob Moore
   9289 
   9290 ----------------------------------------
   9291 19 October 2007. Summary of changes for version 20071019:
   9292 
   9293 1) ACPI CA Core Subsystem:
   9294 
   9295 Fixed a problem with the Alias operator when the target of the alias is a 
   9296 named ASL operator that opens a new scope -- Scope, Device, 
   9297 PowerResource, 
   9298 Processor, and ThermalZone. In these cases, any children of the original 
   9299 operator could not be accessed via the alias, potentially causing 
   9300 unexpected 
   9301 AE_NOT_FOUND exceptions. (BZ 9067)
   9302 
   9303 Fixed a problem with the Package operator where all named references were 
   9304 created as object references and left otherwise unresolved. According to 
   9305 the 
   9306 ACPI specification, a Package can only contain Data Objects or references 
   9307 to 
   9308 control methods. The implication is that named references to Data Objects 
   9309 (Integer, Buffer, String, Package, BufferField, Field) should be resolved 
   9310 immediately upon package creation. This is the approach taken with this 
   9311 change. References to all other named objects (Methods, Devices, Scopes, 
   9312 etc.) are all now properly created as reference objects. (BZ 5328)
   9313 
   9314 Reverted a change to Notify handling that was introduced in version 
   9315 20070508. This version changed the Notify handling from asynchronous to 
   9316 fully synchronous (Device driver Notify handling with respect to the 
   9317 Notify 
   9318 ASL operator). It was found that this change caused more problems than it 
   9319 solved and was removed by most users.
   9320 
   9321 Fixed a problem with the Increment and Decrement operators where the type 
   9322 of 
   9323 the target object could be unexpectedly and incorrectly changed. (BZ 353) 
   9324 Lin Ming.
   9325 
   9326 Fixed a problem with the Load and LoadTable operators where the table 
   9327 location within the namespace was ignored. Instead, the table was always 
   9328 loaded into the root or current scope. Lin Ming.
   9329 
   9330 Fixed a problem with the Load operator when loading a table from a buffer 
   9331 object. The input buffer was prematurely zeroed and/or deleted. (BZ 577)
   9332 
   9333 Fixed a problem with the Debug object where a store of a DdbHandle 
   9334 reference 
   9335 object to the Debug object could cause a fault.
   9336 
   9337 Added a table checksum verification for the Load operator, in the case 
   9338 where 
   9339 the load is from a buffer. (BZ 578).
   9340 
   9341 Implemented additional parameter validation for the LoadTable operator. 
   9342 The 
   9343 length of the input strings SignatureString, OemIdString, and OemTableId 
   9344 are 
   9345 now checked for maximum lengths. (BZ 582) Lin Ming.
   9346 
   9347 Example Code and Data Size: These are the sizes for the OS-independent 
   9348 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9349 debug version of the code includes the debug output trace mechanism and 
   9350 has 
   9351 a much larger code and data size.
   9352 
   9353   Previous Release:
   9354     Non-Debug Version:  78.5K Code, 17.1K Data,  95.6K Total
   9355     Debug Version:     156.7K Code, 63.2K Data, 219.9K Total
   9356   Current Release:
   9357     Non-Debug Version:  78.8K Code, 17.2K Data,  96.0K Total
   9358     Debug Version:     157.2K Code, 63.4K Data, 220.6K Total
   9359 
   9360 
   9361 2) iASL Compiler/Disassembler:
   9362 
   9363 Fixed a problem where if a single file was specified and the file did not 
   9364 exist, no error message was emitted. (Introduced with wildcard support in 
   9365 version 20070917.)
   9366 
   9367 ----------------------------------------
   9368 19 September 2007. Summary of changes for version 20070919:
   9369 
   9370 1) ACPI CA Core Subsystem:
   9371 
   9372 Designed and implemented new external interfaces to install and remove 
   9373 handlers for ACPI table-related events. Current events that are defined 
   9374 are 
   9375 LOAD and UNLOAD. These interfaces allow the host to track ACPI tables as 
   9376 they are dynamically loaded and unloaded. See AcpiInstallTableHandler and 
   9377 AcpiRemoveTableHandler. (Lin Ming and Bob Moore)
   9378 
   9379 Fixed a problem where the use of the AcpiGbl_AllMethodsSerialized flag 
   9380 (acpi_serialized option on Linux) could cause some systems to hang during 
   9381 initialization. (Bob Moore) BZ 8171
   9382 
   9383 Fixed a problem where objects of certain types (Device, ThermalZone, 
   9384 Processor, PowerResource) can be not found if they are declared and 
   9385 referenced from within the same control method (Lin Ming) BZ 341
   9386 
   9387 Example Code and Data Size: These are the sizes for the OS-independent 
   9388 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9389 debug version of the code includes the debug output trace mechanism and 
   9390 has 
   9391 a much larger code and data size.
   9392 
   9393   Previous Release:
   9394     Non-Debug Version:  78.3K Code, 17.0K Data,  95.3K Total
   9395     Debug Version:     156.3K Code, 63.1K Data, 219.4K Total
   9396   Current Release:
   9397     Non-Debug Version:  78.5K Code, 17.1K Data,  95.6K Total
   9398     Debug Version:     156.7K Code, 63.2K Data, 219.9K Total
   9399 
   9400 
   9401 2) iASL Compiler/Disassembler:
   9402 
   9403 Implemented support to allow multiple files to be compiled/disassembled 
   9404 in 
   9405 a 
   9406 single invocation. This includes command line wildcard support for both 
   9407 the 
   9408 Windows and Unix versions of the compiler. This feature simplifies the 
   9409 disassembly and compilation of multiple ACPI tables in a single 
   9410 directory.
   9411 
   9412 ----------------------------------------
   9413 08 May 2007. Summary of changes for version 20070508:
   9414 
   9415 1) ACPI CA Core Subsystem:
   9416 
   9417 Implemented a Microsoft compatibility design change for the handling of 
   9418 the 
   9419 Notify AML operator. Previously, notify handlers were dispatched and 
   9420 executed completely asynchronously in a deferred thread. The new design 
   9421 still executes the notify handlers in a different thread, but the 
   9422 original 
   9423 thread that executed the Notify() now waits at a synchronization point 
   9424 for 
   9425 the notify handler to complete. Some machines depend on a synchronous 
   9426 Notify 
   9427 operator in order to operate correctly.
   9428 
   9429 Implemented support to allow Package objects to be passed as method 
   9430 arguments to the external AcpiEvaluateObject interface. Previously, this 
   9431 would return the AE_NOT_IMPLEMENTED exception. This feature had not been 
   9432 implemented since there were no reserved control methods that required it 
   9433 until recently.
   9434 
   9435 Fixed a problem with the internal FADT conversion where ACPI 1.0 FADTs 
   9436 that 
   9437 contained invalid non-zero values in reserved fields could cause later 
   9438 failures because these fields have meaning in later revisions of the 
   9439 FADT. 
   9440 For incoming ACPI 1.0 FADTs, these fields are now always zeroed. (The 
   9441 fields 
   9442 are: Preferred_PM_Profile, PSTATE_CNT, CST_CNT, and IAPC_BOOT_FLAGS.)
   9443 
   9444 Fixed a problem where the Global Lock handle was not properly updated if 
   9445 a 
   9446 thread that acquired the Global Lock via executing AML code then 
   9447 attempted 
   9448 to acquire the lock via the AcpiAcquireGlobalLock interface. Reported by 
   9449 Joe 
   9450 Liu.
   9451 
   9452 Fixed a problem in AcpiEvDeleteGpeXrupt where the global interrupt list 
   9453 could be corrupted if the interrupt being removed was at the head of the 
   9454 list. Reported by Linn Crosetto.
   9455 
   9456 Example Code and Data Size: These are the sizes for the OS-independent 
   9457 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9458 debug version of the code includes the debug output trace mechanism and 
   9459 has 
   9460 a much larger code and data size.
   9461 
   9462   Previous Release:
   9463     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
   9464     Debug Version:     155.9K Code, 63.1K Data, 219.0K Total
   9465   Current Release:
   9466     Non-Debug Version:  78.3K Code, 17.0K Data,  95.3K Total
   9467     Debug Version:     156.3K Code, 63.1K Data, 219.4K Total
   9468 
   9469 ----------------------------------------
   9470 20 March 2007. Summary of changes for version 20070320:
   9471 
   9472 1) ACPI CA Core Subsystem:
   9473 
   9474 Implemented a change to the order of interpretation and evaluation of AML 
   9475 operand objects within the AML interpreter. The interpreter now evaluates 
   9476 operands in the order that they appear in the AML stream (and the 
   9477 corresponding ASL code), instead of in the reverse order (after the 
   9478 entire 
   9479 operand list has been parsed). The previous behavior caused several 
   9480 subtle 
   9481 incompatibilities with the Microsoft AML interpreter as well as being 
   9482 somewhat non-intuitive. BZ 7871, local BZ 263. Valery Podrezov.
   9483 
   9484 Implemented a change to the ACPI Global Lock support. All interfaces to 
   9485 the 
   9486 global lock now allow the same thread to acquire the lock multiple times. 
   9487 This affects the AcpiAcquireGlobalLock external interface to the global 
   9488 lock 
   9489 as well as the internal use of the global lock to support AML fields -- a 
   9490 control method that is holding the global lock can now simultaneously 
   9491 access 
   9492 AML fields that require global lock protection. Previously, in both 
   9493 cases, 
   9494 this would have resulted in an AE_ALREADY_ACQUIRED exception. The change 
   9495 to 
   9496 AcpiAcquireGlobalLock is of special interest to drivers for the Embedded 
   9497 Controller. There is no change to the behavior of the AML Acquire 
   9498 operator, 
   9499 as this can already be used to acquire a mutex multiple times by the same 
   9500 thread. BZ 8066. With assistance from Alexey Starikovskiy.
   9501 
   9502 Fixed a problem where invalid objects could be referenced in the AML 
   9503 Interpreter after error conditions. During operand evaluation, ensure 
   9504 that 
   9505 the internal "Return Object" field is cleared on error and only valid 
   9506 pointers are stored there. Caused occasional access to deleted objects 
   9507 that 
   9508 resulted in "large reference count" warning messages. Valery Podrezov.
   9509 
   9510 Fixed a problem where an AE_STACK_OVERFLOW internal exception could occur 
   9511 on 
   9512 deeply nested control method invocations. BZ 7873, local BZ 487. Valery 
   9513 Podrezov.
   9514 
   9515 Fixed an internal problem with the handling of result objects on the 
   9516 interpreter result stack. BZ 7872. Valery Podrezov.
   9517 
   9518 Removed obsolete code that handled the case where AML_NAME_OP is the 
   9519 target 
   9520 of a reference (Reference.Opcode). This code was no longer necessary. BZ 
   9521 7874. Valery Podrezov.
   9522 
   9523 Removed obsolete ACPI_NO_INTEGER64_SUPPORT from two header files. This 
   9524 was 
   9525 a 
   9526 remnant from the previously discontinued 16-bit support.
   9527 
   9528 Example Code and Data Size: These are the sizes for the OS-independent 
   9529 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9530 debug version of the code includes the debug output trace mechanism and 
   9531 has 
   9532 a much larger code and data size.
   9533 
   9534   Previous Release:
   9535     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
   9536     Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
   9537   Current Release:
   9538     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
   9539     Debug Version:     155.9K Code, 63.1K Data, 219.0K Total
   9540 
   9541 ----------------------------------------
   9542 26 January 2007. Summary of changes for version 20070126:
   9543 
   9544 1) ACPI CA Core Subsystem:
   9545 
   9546 Added the 2007 copyright to all module headers and signons. This affects 
   9547 virtually every file in the ACPICA core subsystem, the iASL compiler, and 
   9548 the utilities.
   9549 
   9550 Implemented a fix for an incorrect parameter passed to AcpiTbDeleteTable 
   9551 during a table load. A bad pointer was passed in the case where the DSDT 
   9552 is 
   9553 overridden, causing a fault in this case.
   9554 
   9555 Example Code and Data Size: These are the sizes for the OS-independent 
   9556 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9557 debug version of the code includes the debug output trace mechanism and 
   9558 has 
   9559 a much larger code and data size.
   9560 
   9561   Previous Release:
   9562     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
   9563     Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
   9564   Current Release:
   9565     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
   9566     Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
   9567 
   9568 ----------------------------------------
   9569 15 December 2006. Summary of changes for version 20061215:
   9570 
   9571 1) ACPI CA Core Subsystem:
   9572 
   9573 Support for 16-bit ACPICA has been completely removed since it is no 
   9574 longer 
   9575 necessary and it clutters the code. All 16-bit macros, types, and 
   9576 conditional compiles have been removed, cleaning up and simplifying the 
   9577 code 
   9578 across the entire subsystem. DOS support is no longer needed since the 
   9579 bootable Linux firmware kit is now available.
   9580 
   9581 The handler for the Global Lock is now removed during AcpiTerminate to 
   9582 enable a clean subsystem restart, via the implementation of the 
   9583 AcpiEvRemoveGlobalLockHandler function. (With assistance from Joel Bretz, 
   9584 HP)
   9585 
   9586 Implemented enhancements to the multithreading support within the 
   9587 debugger 
   9588 to enable improved multithreading debugging and evaluation of the 
   9589 subsystem. 
   9590 (Valery Podrezov)
   9591 
   9592 Debugger: Enhanced the Statistics/Memory command to emit the total 
   9593 (maximum) 
   9594 memory used during the execution, as well as the maximum memory consumed 
   9595 by 
   9596 each of the various object types. (Valery Podrezov)
   9597 
   9598 Example Code and Data Size: These are the sizes for the OS-independent 
   9599 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9600 debug version of the code includes the debug output trace mechanism and 
   9601 has 
   9602 a much larger code and data size.
   9603 
   9604   Previous Release:
   9605     Non-Debug Version:  77.9K Code, 17.0K Data,  94.9K Total
   9606     Debug Version:     155.2K Code, 63.1K Data, 218.3K Total
   9607   Current Release:
   9608     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
   9609     Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
   9610 
   9611 
   9612 2) iASL Compiler/Disassembler and Tools:
   9613 
   9614 AcpiExec: Implemented a new option (-m) to display full memory use 
   9615 statistics upon subsystem/program termination. (Valery Podrezov)
   9616 
   9617 ----------------------------------------
   9618 09 November 2006. Summary of changes for version 20061109:
   9619 
   9620 1) ACPI CA Core Subsystem:
   9621 
   9622 Optimized the Load ASL operator in the case where the source operand is 
   9623 an 
   9624 operation region. Simply map the operation region memory, instead of 
   9625 performing a bytewise read. (Region must be of type SystemMemory, see 
   9626 below.)
   9627 
   9628 Fixed the Load ASL operator for the case where the source operand is a 
   9629 region field. A buffer object is also allowed as the source operand. BZ 
   9630 480
   9631 
   9632 Fixed a problem where the Load ASL operator allowed the source operand to 
   9633 be 
   9634 an operation region of any type. It is now restricted to regions of type 
   9635 SystemMemory, as per the ACPI specification. BZ 481
   9636 
   9637 Additional cleanup and optimizations for the new Table Manager code.
   9638 
   9639 AcpiEnable will now fail if all of the required ACPI tables are not 
   9640 loaded 
   9641 (FADT, FACS, DSDT). BZ 477
   9642 
   9643 Added #pragma pack(8/4) to acobject.h to ensure that the structures in 
   9644 this 
   9645 header are always compiled as aligned. The ACPI_OPERAND_OBJECT has been 
   9646 manually optimized to be aligned and will not work if it is byte-packed. 
   9647 
   9648 Example Code and Data Size: These are the sizes for the OS-independent 
   9649 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9650 debug version of the code includes the debug output trace mechanism and 
   9651 has 
   9652 a much larger code and data size.
   9653 
   9654   Previous Release:
   9655     Non-Debug Version:  78.1K Code, 17.1K Data,  95.2K Total
   9656     Debug Version:     155.4K Code, 63.1K Data, 218.5K Total
   9657   Current Release:
   9658     Non-Debug Version:  77.9K Code, 17.0K Data,  94.9K Total
   9659     Debug Version:     155.2K Code, 63.1K Data, 218.3K Total
   9660 
   9661 
   9662 2) iASL Compiler/Disassembler and Tools:
   9663 
   9664 Fixed a problem where the presence of the _OSI predefined control method 
   9665 within complex expressions could cause an internal compiler error.
   9666 
   9667 AcpiExec: Implemented full region support for multiple address spaces. 
   9668 SpaceId is now part of the REGION object. BZ 429
   9669 
   9670 ----------------------------------------
   9671 11 October 2006. Summary of changes for version 20061011:
   9672 
   9673 1) ACPI CA Core Subsystem:
   9674 
   9675 Completed an AML interpreter performance enhancement for control method 
   9676 execution. Previously a 2-pass parse/execution, control methods are now 
   9677 completely parsed and executed in a single pass. This improves overall 
   9678 interpreter performance by ~25%, reduces code size, and reduces CPU stack 
   9679 use. (Valery Podrezov + interpreter changes in version 20051202 that 
   9680 eliminated namespace loading during the pass one parse.)
   9681 
   9682 Implemented _CID support for PCI Root Bridge detection. If the _HID does 
   9683 not 
   9684 match the predefined PCI Root Bridge IDs, the _CID list (if present) is 
   9685 now 
   9686 obtained and also checked for an ID match.
   9687 
   9688 Implemented additional support for the PCI _ADR execution: upsearch until 
   9689 a 
   9690 device scope is found before executing _ADR. This allows PCI_Config 
   9691 operation regions to be declared locally within control methods 
   9692 underneath 
   9693 PCI device objects.
   9694 
   9695 Fixed a problem with a possible race condition between threads executing 
   9696 AcpiWalkNamespace and the AML interpreter. This condition was removed by 
   9697 modifying AcpiWalkNamespace to (by default) ignore all temporary 
   9698 namespace 
   9699 entries created during any concurrent control method execution. An 
   9700 additional namespace race condition is known to exist between 
   9701 AcpiWalkNamespace and the Load/Unload ASL operators and is still under 
   9702 investigation.
   9703 
   9704 Restructured the AML ParseLoop function, breaking it into several 
   9705 subfunctions in order to reduce CPU stack use and improve 
   9706 maintainability. 
   9707 (Mikhail Kouzmich)
   9708 
   9709 AcpiGetHandle: Fix for parameter validation to detect invalid 
   9710 combinations 
   9711 of prefix handle and pathname. BZ 478
   9712 
   9713 Example Code and Data Size: These are the sizes for the OS-independent 
   9714 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9715 debug version of the code includes the debug output trace mechanism and 
   9716 has 
   9717 a much larger code and data size.
   9718 
   9719   Previous Release:
   9720     Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
   9721     Debug Version:     154.6K Code, 63.0K Data, 217.6K Total
   9722   Current Release:
   9723     Non-Debug Version:  78.1K Code, 17.1K Data,  95.2K Total
   9724     Debug Version:     155.4K Code, 63.1K Data, 218.5K Total
   9725 
   9726 2) iASL Compiler/Disassembler and Tools:
   9727 
   9728 Ported the -g option (get local ACPI tables) to the new ACPICA Table 
   9729 Manager 
   9730 to restore original behavior.
   9731 
   9732 ----------------------------------------
   9733 27 September 2006. Summary of changes for version 20060927:
   9734 
   9735 1) ACPI CA Core Subsystem:
   9736 
   9737 Removed the "Flags" parameter from AcpiGetRegister and AcpiSetRegister. 
   9738 These functions now use a spinlock for mutual exclusion and the interrupt 
   9739 level indication flag is not needed.
   9740 
   9741 Fixed a problem with the Global Lock where the lock could appear to be 
   9742 obtained before it is actually obtained. The global lock semaphore was 
   9743 inadvertently created with one unit instead of zero units. (BZ 464) 
   9744 Fiodor 
   9745 Suietov.
   9746 
   9747 Fixed a possible memory leak and fault in AcpiExResolveObjectToValue 
   9748 during 
   9749 a read from a buffer or region field. (BZ 458) Fiodor Suietov.
   9750 
   9751 Example Code and Data Size: These are the sizes for the OS-independent 
   9752 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9753 debug version of the code includes the debug output trace mechanism and 
   9754 has 
   9755 a much larger code and data size.
   9756 
   9757   Previous Release:
   9758     Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
   9759     Debug Version:     154.7K Code, 63.0K Data, 217.7K Total
   9760   Current Release:
   9761     Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
   9762     Debug Version:     154.6K Code, 63.0K Data, 217.6K Total
   9763 
   9764 
   9765 2) iASL Compiler/Disassembler and Tools:
   9766 
   9767 Fixed a compilation problem with the pre-defined Resource Descriptor 
   9768 field 
   9769 names where an "object does not exist" error could be incorrectly 
   9770 generated 
   9771 if the parent ResourceTemplate pathname places the template within a 
   9772 different namespace scope than the current scope. (BZ 7212)
   9773 
   9774 Fixed a problem where the compiler could hang after syntax errors 
   9775 detected 
   9776 in an ElseIf construct. (BZ 453)
   9777 
   9778 Fixed a problem with the AmlFilename parameter to the DefinitionBlock() 
   9779 operator. An incorrect output filename was produced when this parameter 
   9780 was 
   9781 a null string (""). Now, the original input filename is used as the AML 
   9782 output filename, with an ".aml" extension.
   9783 
   9784 Implemented a generic batch command mode for the AcpiExec utility 
   9785 (execute 
   9786 any AML debugger command) (Valery Podrezov).
   9787 
   9788 ----------------------------------------
   9789 12 September 2006. Summary of changes for version 20060912:
   9790 
   9791 1) ACPI CA Core Subsystem:
   9792 
   9793 Enhanced the implementation of the "serialized mode" of the interpreter 
   9794 (enabled via the AcpiGbl_AllMethodsSerialized flag.) When this mode is 
   9795 specified, instead of creating a serialization semaphore per control 
   9796 method, 
   9797 the interpreter lock is simply no longer released before a blocking 
   9798 operation during control method execution. This effectively makes the AML 
   9799 Interpreter single-threaded. The overhead of a semaphore per-method is 
   9800 eliminated.
   9801 
   9802 Fixed a regression where an error was no longer emitted if a control 
   9803 method 
   9804 attempts to create 2 objects of the same name. This once again returns 
   9805 AE_ALREADY_EXISTS. When this exception occurs, it invokes the mechanism 
   9806 that 
   9807 will dynamically serialize the control method to possible prevent future 
   9808 errors. (BZ 440)
   9809 
   9810 Integrated a fix for a problem with PCI Express HID detection in the PCI 
   9811 Config Space setup procedure. (BZ 7145)
   9812 
   9813 Moved all FADT-related functions to a new file, tbfadt.c. Eliminated the 
   9814 AcpiHwInitialize function - the FADT registers are now validated when the 
   9815 table is loaded.
   9816 
   9817 Added two new warnings during FADT verification - 1) if the FADT is 
   9818 larger 
   9819 than the largest known FADT version, and 2) if there is a mismatch 
   9820 between 
   9821 a 
   9822 32-bit block address and the 64-bit X counterpart (when both are non-
   9823 zero.)
   9824 
   9825 Example Code and Data Size: These are the sizes for the OS-independent 
   9826 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9827 debug version of the code includes the debug output trace mechanism and 
   9828 has 
   9829 a much larger code and data size.
   9830 
   9831   Previous Release:
   9832     Non-Debug Version:  77.9K Code, 16.7K Data,  94.6K Total
   9833     Debug Version:     154.9K Code, 62.6K Data, 217.5K Total
   9834   Current Release:
   9835     Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
   9836     Debug Version:     154.7K Code, 63.0K Data, 217.7K Total
   9837 
   9838 
   9839 2) iASL Compiler/Disassembler and Tools:
   9840 
   9841 Fixed a problem with the implementation of the Switch() operator where 
   9842 the 
   9843 temporary variable was declared too close to the actual Switch, instead 
   9844 of 
   9845 at method level. This could cause a problem if the Switch() operator is 
   9846 within a while loop, causing an error on the second iteration. (BZ 460)
   9847 
   9848 Disassembler - fix for error emitted for unknown type for target of scope 
   9849 operator. Now, ignore it and continue.
   9850 
   9851 Disassembly of an FADT now verifies the input FADT and reports any errors 
   9852 found. Fix for proper disassembly of full-sized (ACPI 2.0) FADTs.
   9853 
   9854 Disassembly of raw data buffers with byte initialization data now 
   9855 prefixes 
   9856 each output line with the current buffer offset.
   9857 
   9858 Disassembly of ASF! table now includes all variable-length data fields at 
   9859 the end of some of the subtables.
   9860 
   9861 The disassembler now emits a comment if a buffer appears to be a 
   9862 ResourceTemplate, but cannot be disassembled as such because the EndTag 
   9863 does 
   9864 not appear at the very end of the buffer.
   9865 
   9866 AcpiExec - Added the "-t" command line option to enable the serialized 
   9867 mode 
   9868 of the AML interpreter.
   9869 
   9870 ----------------------------------------
   9871 31 August 2006. Summary of changes for version 20060831:
   9872 
   9873 1) ACPI CA Core Subsystem:
   9874 
   9875 Miscellaneous fixes for the Table Manager:
   9876 - Correctly initialize internal common FADT for all 64-bit "X" fields
   9877 - Fixed a couple table mapping issues during table load
   9878 - Fixed a couple alignment issues for IA64
   9879 - Initialize input array to zero in AcpiInitializeTables
   9880 - Additional parameter validation for AcpiGetTable, AcpiGetTableHeader, 
   9881 AcpiGetTableByIndex
   9882 
   9883 Change for GPE support: when a "wake" GPE is received, all wake GPEs are 
   9884 now 
   9885 immediately disabled to prevent the waking GPE from firing again and to 
   9886 prevent other wake GPEs from interrupting the wake process.
   9887 
   9888 Added the AcpiGpeCount global that tracks the number of processed GPEs, 
   9889 to 
   9890 be used for debugging systems with a large number of ACPI interrupts.
   9891 
   9892 Implemented support for the "DMAR" ACPI table (DMA Redirection Table) in 
   9893 both the ACPICA headers and the disassembler.
   9894 
   9895 Example Code and Data Size: These are the sizes for the OS-independent 
   9896 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   9897 debug version of the code includes the debug output trace mechanism and 
   9898 has 
   9899 a much larger code and data size.
   9900 
   9901   Previous Release:
   9902     Non-Debug Version:  77.8K Code, 16.5K Data,  94.3K Total
   9903     Debug Version:     154.6K Code, 62.3K Data, 216.9K Total
   9904   Current Release:
   9905     Non-Debug Version:  77.9K Code, 16.7K Data,  94.6K Total
   9906     Debug Version:     154.9K Code, 62.6K Data, 217.5K Total
   9907 
   9908 
   9909 2) iASL Compiler/Disassembler and Tools:
   9910 
   9911 Disassembler support for the DMAR ACPI table.
   9912 
   9913 ----------------------------------------
   9914 23 August 2006. Summary of changes for version 20060823:
   9915 
   9916 1) ACPI CA Core Subsystem:
   9917 
   9918 The Table Manager component has been completely redesigned and 
   9919 reimplemented. The new design is much simpler, and reduces the overall 
   9920 code 
   9921 and data size of the kernel-resident ACPICA by approximately 5%. Also, it 
   9922 is 
   9923 now possible to obtain the ACPI tables very early during kernel 
   9924 initialization, even before dynamic memory management is initialized. 
   9925 (Alexey Starikovskiy, Fiodor Suietov, Bob Moore)
   9926 
   9927 Obsolete ACPICA interfaces:
   9928 
   9929 - AcpiGetFirmwareTable: Use AcpiGetTable instead (works at early kernel 
   9930 init 
   9931 time).
   9932 - AcpiLoadTable: Not needed.
   9933 - AcpiUnloadTable: Not needed.
   9934 
   9935 New ACPICA interfaces:
   9936 
   9937 - AcpiInitializeTables: Must be called before the table manager can be 
   9938 used.
   9939 - AcpiReallocateRootTable: Used to transfer the root table to dynamically 
   9940 allocated memory after it becomes available.
   9941 - AcpiGetTableByIndex: Allows the host to easily enumerate all ACPI 
   9942 tables 
   9943 in the RSDT/XSDT.
   9944 
   9945 Other ACPICA changes:
   9946 
   9947 - AcpiGetTableHeader returns the actual mapped table header, not a copy. 
   9948 Use 
   9949 AcpiOsUnmapMemory to free this mapping.
   9950 - AcpiGetTable returns the actual mapped table. The mapping is managed 
   9951 internally and must not be deleted by the caller. Use of this interface 
   9952 causes no additional dynamic memory allocation.
   9953 - AcpiFindRootPointer: Support for physical addressing has been 
   9954 eliminated, 
   9955 it appeared to be unused.
   9956 - The interface to AcpiOsMapMemory has changed to be consistent with the 
   9957 other allocation interfaces.
   9958 - The interface to AcpiOsGetRootPointer has changed to eliminate 
   9959 unnecessary 
   9960 parameters.
   9961 - ACPI_PHYSICAL_ADDRESS is now 32 bits on 32-bit platforms, 64 bits on 
   9962 64-
   9963 bit platforms. Was previously 64 bits on all platforms.
   9964 - The interface to the ACPI Global Lock acquire/release macros have 
   9965 changed 
   9966 slightly since ACPICA no longer keeps a local copy of the FACS with a 
   9967 constructed pointer to the actual global lock.
   9968 
   9969 Porting to the new table manager:
   9970 
   9971 - AcpiInitializeTables: Must be called once, and can be called anytime 
   9972 during the OS initialization process. It allows the host to specify an 
   9973 area 
   9974 of memory to be used to store the internal version of the RSDT/XSDT (root 
   9975 table). This allows the host to access ACPI tables before memory 
   9976 management 
   9977 is initialized and running.
   9978 - AcpiReallocateRootTable: Can be called after memory management is 
   9979 running 
   9980 to copy the root table to a dynamically allocated array, freeing up the 
   9981 scratch memory specified in the call to AcpiInitializeTables.
   9982 - AcpiSubsystemInitialize: This existing interface is independent of the 
   9983 Table Manager, and does not have to be called before the Table Manager 
   9984 can 
   9985 be used, it only must be called before the rest of ACPICA can be used.
   9986 - ACPI Tables: Some changes have been made to the names and structure of 
   9987 the 
   9988 actbl.h and actbl1.h header files and may require changes to existing 
   9989 code. 
   9990 For example, bitfields have been completely removed because of their lack 
   9991 of 
   9992 portability across C compilers.
   9993 - Update interfaces to the Global Lock acquire/release macros if local 
   9994 versions are used. (see acwin.h)
   9995 
   9996 Obsolete files: tbconvrt.c, tbget.c, tbgetall.c, tbrsdt.c
   9997 
   9998 New files: tbfind.c
   9999 
   10000 Example Code and Data Size: These are the sizes for the OS-independent 
   10001 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   10002 debug version of the code includes the debug output trace mechanism and 
   10003 has 
   10004 a much larger code and data size.
   10005 
   10006   Previous Release:
   10007     Non-Debug Version:  80.7K Code, 17.9K Data,  98.6K Total
   10008     Debug Version:     161.0K Code, 65.1K Data, 226.1K Total
   10009   Current Release:
   10010     Non-Debug Version:  77.8K Code, 16.5K Data,  94.3K Total
   10011     Debug Version:     154.6K Code, 62.3K Data, 216.9K Total
   10012 
   10013 
   10014 2) iASL Compiler/Disassembler and Tools:
   10015 
   10016 No changes for this release.
   10017 
   10018 ----------------------------------------
   10019 21 July 2006. Summary of changes for version 20060721:
   10020 
   10021 1) ACPI CA Core Subsystem:
   10022 
   10023 The full source code for the ASL test suite used to validate the iASL 
   10024 compiler and the ACPICA core subsystem is being released with the ACPICA 
   10025 source for the first time. The source is contained in a separate package 
   10026 and 
   10027 consists of over 1100 files that exercise all ASL/AML operators. The 
   10028 package 
   10029 should appear on the Intel/ACPI web site shortly. (Valery Podrezov, 
   10030 Fiodor 
   10031 Suietov)
   10032 
   10033 Completed a new design and implementation for support of the ACPI Global 
   10034 Lock. On the OS side, the global lock is now treated as a standard AML 
   10035 mutex. Previously, multiple OS threads could "acquire" the global lock 
   10036 simultaneously. However, this could cause the BIOS to be starved out of 
   10037 the 
   10038 lock - especially in cases such as the Embedded Controller driver where 
   10039 there is a tight coupling between the OS and the BIOS.
   10040 
   10041 Implemented an optimization for the ACPI Global Lock interrupt mechanism. 
   10042 The Global Lock interrupt handler no longer queues the execution of a 
   10043 separate thread to signal the global lock semaphore. Instead, the 
   10044 semaphore 
   10045 is signaled directly from the interrupt handler.
   10046 
   10047 Implemented support within the AML interpreter for package objects that 
   10048 contain a larger AML length (package list length) than the package 
   10049 element 
   10050 count. In this case, the length of the package is truncated to match the 
   10051 package element count. Some BIOS code apparently modifies the package 
   10052 length 
   10053 on the fly, and this change supports this behavior. Provides 
   10054 compatibility 
   10055 with the MS AML interpreter. (With assistance from Fiodor Suietov)
   10056 
   10057 Implemented a temporary fix for the BankValue parameter of a Bank Field 
   10058 to 
   10059 support all constant values, now including the Zero and One opcodes. 
   10060 Evaluation of this parameter must eventually be converted to a full 
   10061 TermArg 
   10062 evaluation. A not-implemented error is now returned (temporarily) for 
   10063 non-
   10064 constant values for this parameter.
   10065 
   10066 Fixed problem reports (Fiodor Suietov) integrated:
   10067 - Fix for premature object deletion after CopyObject on Operation Region 
   10068 (BZ 
   10069 350)
   10070 
   10071 Example Code and Data Size: These are the sizes for the OS-independent 
   10072 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   10073 debug version of the code includes the debug output trace mechanism and 
   10074 has 
   10075 a much larger code and data size.
   10076 
   10077   Previous Release:
   10078     Non-Debug Version:  80.7K Code, 18.0K Data,  98.7K Total
   10079     Debug Version:     160.9K Code, 65.1K Data, 226.0K Total
   10080   Current Release:
   10081     Non-Debug Version:  80.7K Code, 17.9K Data,  98.6K Total
   10082     Debug Version:     161.0K Code, 65.1K Data, 226.1K Total
   10083 
   10084 
   10085 2) iASL Compiler/Disassembler and Tools:
   10086 
   10087 No changes for this release.
   10088 
   10089 ----------------------------------------
   10090 07 July 2006. Summary of changes for version 20060707:
   10091 
   10092 1) ACPI CA Core Subsystem:
   10093 
   10094 Added the ACPI_PACKED_POINTERS_NOT_SUPPORTED macro to support C compilers 
   10095 that do not allow the initialization of address pointers within packed 
   10096 structures - even though the hardware itself may support misaligned 
   10097 transfers. Some of the debug data structures are packed by default to 
   10098 minimize size.
   10099 
   10100 Added an error message for the case where AcpiOsGetThreadId() returns 
   10101 zero. 
   10102 A non-zero value is required by the core ACPICA code to ensure the proper 
   10103 operation of AML mutexes and recursive control methods.
   10104 
   10105 The DSDT is now the only ACPI table that determines whether the AML 
   10106 interpreter is in 32-bit or 64-bit mode. Not really a functional change, 
   10107 but 
   10108 the hooks for per-table 32/64 switching have been removed from the code. 
   10109 A 
   10110 clarification to the ACPI specification is forthcoming in ACPI 3.0B.
   10111 
   10112 Fixed a possible leak of an OwnerID in the error path of 
   10113 AcpiTbInitTableDescriptor (tbinstal.c), and migrated all table OwnerID 
   10114 deletion to a single place in AcpiTbUninstallTable to correct possible 
   10115 leaks 
   10116 when using the AcpiTbDeleteTablesByType interface (with assistance from 
   10117 Lance Ortiz.)
   10118 
   10119 Fixed a problem with Serialized control methods where the semaphore 
   10120 associated with the method could be over-signaled after multiple method 
   10121 invocations.
   10122 
   10123 Fixed two issues with the locking of the internal namespace data 
   10124 structure. 
   10125 Both the Unload() operator and AcpiUnloadTable interface now lock the 
   10126 namespace during the namespace deletion associated with the table unload 
   10127 (with assistance from Linn Crosetto.)
   10128 
   10129 Fixed problem reports (Valery Podrezov) integrated:
   10130 - Eliminate unnecessary memory allocation for CreateXxxxField (BZ 5426)
   10131 
   10132 Fixed problem reports (Fiodor Suietov) integrated:
   10133 - Incomplete cleanup branches in AcpiTbGetTableRsdt (BZ 369)
   10134 - On Address Space handler deletion, needless deactivation call (BZ 374)
   10135 - AcpiRemoveAddressSpaceHandler: validate Device handle parameter (BZ 
   10136 375)
   10137 - Possible memory leak, Notify sub-objects of Processor, Power, 
   10138 ThermalZone 
   10139 (BZ 376)
   10140 - AcpiRemoveAddressSpaceHandler: validate Handler parameter (BZ 378)
   10141 - Minimum Length of RSDT should be validated (BZ 379)
   10142 - AcpiRemoveNotifyHandler: return AE_NOT_EXIST if Processor Obj has no 
   10143 Handler (BZ (380)
   10144 - AcpiUnloadTable: return AE_NOT_EXIST if no table of specified type 
   10145 loaded 
   10146 (BZ 381)
   10147 
   10148 Example Code and Data Size: These are the sizes for the OS-independent 
   10149 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   10150 debug version of the code includes the debug output trace mechanism and 
   10151 has 
   10152 a much larger code and data size.
   10153 
   10154   Previous Release:
   10155     Non-Debug Version:  80.5K Code, 17.8K Data,  98.3K Total
   10156     Debug Version:     160.8K Code, 64.8K Data, 225.6K Total
   10157   Current Release:
   10158     Non-Debug Version:  80.7K Code, 17.9K Data,  98.6K Total
   10159     Debug Version:     161.0K Code, 65.1K Data, 226.1K Total
   10160 
   10161 
   10162 2) iASL Compiler/Disassembler and Tools:
   10163 
   10164 Fixed problem reports:
   10165 Compiler segfault when ASL contains a long (>1024) String declaration (BZ 
   10166 436)
   10167 
   10168 ----------------------------------------
   10169 23 June 2006. Summary of changes for version 20060623:
   10170 
   10171 1) ACPI CA Core Subsystem:
   10172 
   10173 Implemented a new ACPI_SPINLOCK type for the OSL lock interfaces. This 
   10174 allows the type to be customized to the host OS for improved efficiency 
   10175 (since a spinlock is usually a very small object.)
   10176 
   10177 Implemented support for "ignored" bits in the ACPI registers. According 
   10178 to 
   10179 the ACPI specification, these bits should be preserved when writing the 
   10180 registers via a read/modify/write cycle. There are 3 bits preserved in 
   10181 this 
   10182 manner: PM1_CONTROL[0] (SCI_EN), PM1_CONTROL[9], and PM1_STATUS[11].
   10183 
   10184 Implemented the initial deployment of new OSL mutex interfaces. Since 
   10185 some 
   10186 host operating systems have separate mutex and semaphore objects, this 
   10187 feature was requested. The base code now uses mutexes (and the new mutex 
   10188 interfaces) wherever a binary semaphore was used previously. However, for 
   10189 the current release, the mutex interfaces are defined as macros to map 
   10190 them 
   10191 to the existing semaphore interfaces. Therefore, no OSL changes are 
   10192 required 
   10193 at this time. (See acpiosxf.h)
   10194 
   10195 Fixed several problems with the support for the control method SyncLevel 
   10196 parameter. The SyncLevel now works according to the ACPI specification 
   10197 and 
   10198 in concert with the Mutex SyncLevel parameter, since the current 
   10199 SyncLevel 
   10200 is a property of the executing thread. Mutual exclusion for control 
   10201 methods 
   10202 is now implemented with a mutex instead of a semaphore.
   10203 
   10204 Fixed three instances of the use of the C shift operator in the bitfield 
   10205 support code (exfldio.c) to avoid the use of a shift value larger than 
   10206 the 
   10207 target data width. The behavior of C compilers is undefined in this case 
   10208 and 
   10209 can cause unpredictable results, and therefore the case must be detected 
   10210 and 
   10211 avoided. (Fiodor Suietov)
   10212 
   10213 Added an info message whenever an SSDT or OEM table is loaded dynamically 
   10214 via the Load() or LoadTable() ASL operators. This should improve 
   10215 debugging 
   10216 capability since it will show exactly what tables have been loaded 
   10217 (beyond 
   10218 the tables present in the RSDT/XSDT.)
   10219 
   10220 Example Code and Data Size: These are the sizes for the OS-independent 
   10221 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   10222 debug version of the code includes the debug output trace mechanism and 
   10223 has 
   10224 a much larger code and data size.
   10225 
   10226   Previous Release:
   10227     Non-Debug Version:  80.0K Code, 17.6K Data,  97.6K Total
   10228     Debug Version:     160.2K Code, 64.7K Data, 224.9K Total
   10229   Current Release:
   10230     Non-Debug Version:  80.5K Code, 17.8K Data,  98.3K Total
   10231     Debug Version:     160.8K Code, 64.8K Data, 225.6K Total
   10232 
   10233 
   10234 2) iASL Compiler/Disassembler and Tools:
   10235 
   10236 No changes for this release.
   10237 
   10238 ----------------------------------------
   10239 08 June 2006. Summary of changes for version 20060608:
   10240 
   10241 1) ACPI CA Core Subsystem:
   10242 
   10243 Converted the locking mutex used for the ACPI hardware to a spinlock. 
   10244 This 
   10245 change should eliminate all problems caused by attempting to acquire a 
   10246 semaphore at interrupt level, and it means that all ACPICA external 
   10247 interfaces that directly access the ACPI hardware can be safely called 
   10248 from 
   10249 interrupt level. OSL code that implements the semaphore interfaces should 
   10250 be 
   10251 able to eliminate any workarounds for being called at interrupt level.
   10252 
   10253 Fixed a regression introduced in 20060526 where the ACPI device 
   10254 initialization could be prematurely aborted with an AE_NOT_FOUND if a 
   10255 device 
   10256 did not have an optional _INI method.
   10257 
   10258 Fixed an IndexField issue where a write to the Data Register should be 
   10259 limited in size to the AccessSize (width) of the IndexField itself. (BZ 
   10260 433, 
   10261 Fiodor Suietov)
   10262 
   10263 Fixed problem reports (Valery Podrezov) integrated:
   10264 - Allow store of ThermalZone objects to Debug object (BZ 5369/5370)
   10265 
   10266 Fixed problem reports (Fiodor Suietov) integrated:
   10267 - AcpiGetTableHeader doesn't handle multiple instances correctly (BZ 364)
   10268 
   10269 Removed four global mutexes that were obsolete and were no longer being 
   10270 used.
   10271 
   10272 Example Code and Data Size: These are the sizes for the OS-independent 
   10273 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   10274 debug version of the code includes the debug output trace mechanism and 
   10275 has 
   10276 a much larger code and data size.
   10277 
   10278   Previous Release:
   10279     Non-Debug Version:  80.0K Code, 17.7K Data,  97.7K Total
   10280     Debug Version:     160.3K Code, 64.9K Data, 225.2K Total
   10281   Current Release:
   10282     Non-Debug Version:  80.0K Code, 17.6K Data,  97.6K Total
   10283     Debug Version:     160.2K Code, 64.7K Data, 224.9K Total
   10284 
   10285 
   10286 2) iASL Compiler/Disassembler and Tools:
   10287 
   10288 Fixed a fault when using -g option (get tables from registry) on Windows 
   10289 machines.
   10290 
   10291 Fixed problem reports integrated:
   10292 - Generate error if CreateField NumBits parameter is zero. (BZ 405)
   10293 - Fault if Offset/Length in Field unit is very large (BZ 432, Fiodor 
   10294 Suietov)
   10295 - Global table revision override (-r) is ignored (BZ 413)
   10296 
   10297 ----------------------------------------
   10298 26 May 2006. Summary of changes for version 20060526:
   10299 
   10300 1) ACPI CA Core Subsystem:
   10301 
   10302 Restructured, flattened, and simplified the internal interfaces for 
   10303 namespace object evaluation - resulting in smaller code, less CPU stack 
   10304 use, 
   10305 and fewer interfaces. (With assistance from Mikhail Kouzmich)
   10306 
   10307 Fixed a problem with the CopyObject operator where the first parameter 
   10308 was 
   10309 not typed correctly for the parser, interpreter, compiler, and 
   10310 disassembler. 
   10311 Caused various errors and unexpected behavior.
   10312 
   10313 Fixed a problem where a ShiftLeft or ShiftRight of more than 64 bits 
   10314 produced incorrect results with some C compilers. Since the behavior of C 
   10315 compilers when the shift value is larger than the datatype width is 
   10316 apparently not well defined, the interpreter now detects this condition 
   10317 and 
   10318 simply returns zero as expected in all such cases. (BZ 395)
   10319 
   10320 Fixed problem reports (Valery Podrezov) integrated:
   10321 - Update String-to-Integer conversion to match ACPI 3.0A spec (BZ 5329)
   10322 - Allow interpreter to handle nested method declarations (BZ 5361)
   10323 
   10324 Fixed problem reports (Fiodor Suietov) integrated:
   10325 - AcpiTerminate doesn't free debug memory allocation list objects (BZ 
   10326 355)
   10327 - After Core Subsystem shutdown, AcpiSubsystemStatus returns AE_OK (BZ 
   10328 356)
   10329 - AcpiOsUnmapMemory for RSDP can be invoked inconsistently (BZ 357)
   10330 - Resource Manager should return AE_TYPE for non-device objects (BZ 358)
   10331 - Incomplete cleanup branch in AcpiNsEvaluateRelative (BZ 359)
   10332 - Use AcpiOsFree instead of ACPI_FREE in AcpiRsSetSrsMethodData (BZ 360)
   10333 - Incomplete cleanup branch in AcpiPsParseAml (BZ 361)
   10334 - Incomplete cleanup branch in AcpiDsDeleteWalkState (BZ 362)
   10335 - AcpiGetTableHeader returns AE_NO_ACPI_TABLES until DSDT is loaded (BZ 
   10336 365)
   10337 - Status of the Global Initialization Handler call not used (BZ 366)
   10338 - Incorrect object parameter to Global Initialization Handler (BZ 367)
   10339 
   10340 Example Code and Data Size: These are the sizes for the OS-independent 
   10341 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   10342 debug version of the code includes the debug output trace mechanism and 
   10343 has 
   10344 a much larger code and data size.
   10345 
   10346   Previous Release:
   10347     Non-Debug Version:  79.8K Code, 17.7K Data,  97.5K Total
   10348     Debug Version:     160.5K Code, 65.1K Data, 225.6K Total
   10349   Current Release:
   10350     Non-Debug Version:  80.0K Code, 17.7K Data,  97.7K Total
   10351     Debug Version:     160.3K Code, 64.9K Data, 225.2K Total
   10352 
   10353 
   10354 2) iASL Compiler/Disassembler and Tools:
   10355 
   10356 Modified the parser to allow the names IO, DMA, and IRQ to be used as 
   10357 namespace identifiers with no collision with existing resource descriptor 
   10358 macro names. This provides compatibility with other ASL compilers and is 
   10359 most useful for disassembly/recompilation of existing tables without 
   10360 parse 
   10361 errors. (With assistance from Thomas Renninger)
   10362 
   10363 Disassembler: fixed an incorrect disassembly problem with the 
   10364 DataTableRegion and CopyObject operators. Fixed a possible fault during 
   10365 disassembly of some Alias operators.
   10366 
   10367 ----------------------------------------
   10368 12 May 2006. Summary of changes for version 20060512:
   10369 
   10370 1) ACPI CA Core Subsystem:
   10371 
   10372 Replaced the AcpiOsQueueForExecution interface with a new interface named 
   10373 AcpiOsExecute. The major difference is that the new interface does not 
   10374 have 
   10375 a Priority parameter, this appeared to be useless and has been replaced 
   10376 by 
   10377 a 
   10378 Type parameter. The Type tells the host what type of execution is being 
   10379 requested, such as global lock handler, notify handler, GPE handler, etc. 
   10380 This allows the host to queue and execute the request as appropriate for 
   10381 the 
   10382 request type, possibly using different work queues and different 
   10383 priorities 
   10384 for the various request types. This enables fixes for multithreading 
   10385 deadlock problems such as BZ #5534, and will require changes to all 
   10386 existing 
   10387 OS interface layers. (Alexey Starikovskiy and Bob Moore)
   10388 
   10389 Fixed a possible memory leak associated with the support for the so-
   10390 called 
   10391 "implicit return" ACPI extension. Reported by FreeBSD, BZ #6514. (Fiodor 
   10392 Suietov)
   10393 
   10394 Fixed a problem with the Load() operator where a table load from an 
   10395 operation region could overwrite an internal table buffer by up to 7 
   10396 bytes 
   10397 and cause alignment faults on IPF systems. (With assistance from Luming 
   10398 Yu)
   10399 
   10400 Example Code and Data Size: These are the sizes for the OS-independent 
   10401 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   10402 debug version of the code includes the debug output trace mechanism and 
   10403 has 
   10404 a much larger code and data size.
   10405 
   10406   Previous Release:
   10407     Non-Debug Version:  79.7K Code, 17.7K Data,  97.4K Total
   10408     Debug Version:     160.1K Code, 65.2K Data, 225.3K Total
   10409   Current Release:
   10410     Non-Debug Version:  79.8K Code, 17.7K Data,  97.5K Total
   10411     Debug Version:     160.5K Code, 65.1K Data, 225.6K Total
   10412 
   10413 
   10414 
   10415 2) iASL Compiler/Disassembler and Tools:
   10416 
   10417 Disassembler: Implemented support to cross reference the internal 
   10418 namespace 
   10419 and automatically generate ASL External() statements for symbols not 
   10420 defined 
   10421 within the current table being disassembled. This will simplify the 
   10422 disassembly and recompilation of interdependent tables such as SSDTs 
   10423 since 
   10424 these statements will no longer have to be added manually.
   10425 
   10426 Disassembler: Implemented experimental support to automatically detect 
   10427 invocations of external control methods and generate appropriate 
   10428 External() 
   10429 statements. This is problematic because the AML cannot be correctly 
   10430 parsed 
   10431 until the number of arguments for each control method is known. 
   10432 Currently, 
   10433 standalone method invocations and invocations as the source operand of a 
   10434 Store() statement are supported.
   10435 
   10436 Disassembler: Implemented support for the ASL pseudo-operators LNotEqual, 
   10437 LLessEqual, and LGreaterEqual. Previously disassembled as LNot(LEqual()), 
   10438 LNot(LGreater()), and LNot(LLess()), this makes the disassembled ASL code 
   10439 more readable and likely closer to the original ASL source.
   10440 
   10441 ----------------------------------------
   10442 21 April 2006. Summary of changes for version 20060421:
   10443 
   10444 1) ACPI CA Core Subsystem:
   10445 
   10446 Removed a device initialization optimization introduced in 20051216 where 
   10447 the _STA method was not run unless an _INI was also present for the same 
   10448 device. This optimization could cause problems because it could allow 
   10449 _INI 
   10450 methods to be run within a not-present device subtree. (If a not-present 
   10451 device had no _INI, _STA would not be run, the not-present status would 
   10452 not 
   10453 be discovered, and the children of the device would be incorrectly 
   10454 traversed.)
   10455 
   10456 Implemented a new _STA optimization where namespace subtrees that do not 
   10457 contain _INI are identified and ignored during device initialization. 
   10458 Selectively running _STA can significantly improve boot time on large 
   10459 machines (with assistance from Len Brown.)
   10460 
   10461 Implemented support for the device initialization case where the returned 
   10462 _STA flags indicate a device not-present but functioning. In this case, 
   10463 _INI 
   10464 is not run, but the device children are examined for presence, as per the 
   10465 ACPI specification.
   10466 
   10467 Implemented an additional change to the IndexField support in order to 
   10468 conform to MS behavior. The value written to the Index Register is not 
   10469 simply a byte offset, it is a byte offset in units of the access width of 
   10470 the parent Index Field. (Fiodor Suietov)
   10471 
   10472 Defined and deployed a new OSL interface, AcpiOsValidateAddress. This 
   10473 interface is called during the creation of all AML operation regions, and 
   10474 allows the host OS to exert control over what addresses it will allow the 
   10475 AML code to access. Operation Regions whose addresses are disallowed will 
   10476 cause a runtime exception when they are actually accessed (will not 
   10477 affect 
   10478 or abort table loading.) See oswinxf or osunixxf for an example 
   10479 implementation.
   10480 
   10481 Defined and deployed a new OSL interface, AcpiOsValidateInterface. This 
   10482 interface allows the host OS to match the various "optional" 
   10483 interface/behavior strings for the _OSI predefined control method as 
   10484 appropriate (with assistance from Bjorn Helgaas.) See oswinxf or osunixxf 
   10485 for an example implementation.
   10486 
   10487 Restructured and corrected various problems in the exception handling 
   10488 code 
   10489 paths within DsCallControlMethod and DsTerminateControlMethod in dsmethod 
   10490 (with assistance from Takayoshi Kochi.)
   10491 
   10492 Modified the Linux source converter to ignore quoted string literals 
   10493 while 
   10494 converting identifiers from mixed to lower case. This will correct 
   10495 problems 
   10496 with the disassembler and other areas where such strings must not be 
   10497 modified.
   10498 
   10499 The ACPI_FUNCTION_* macros no longer require quotes around the function 
   10500 name. This allows the Linux source converter to convert the names, now 
   10501 that 
   10502 the converter ignores quoted strings.
   10503 
   10504 Example Code and Data Size: These are the sizes for the OS-independent 
   10505 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   10506 debug version of the code includes the debug output trace mechanism and 
   10507 has 
   10508 a much larger code and data size.
   10509 
   10510   Previous Release:
   10511 
   10512     Non-Debug Version:  81.1K Code, 17.7K Data,  98.8K Total
   10513     Debug Version:     158.9K Code, 64.9K Data, 223.8K Total
   10514   Current Release:
   10515     Non-Debug Version:  79.7K Code, 17.7K Data,  97.4K Total
   10516     Debug Version:     160.1K Code, 65.2K Data, 225.3K Total
   10517 
   10518 
   10519 2) iASL Compiler/Disassembler and Tools:
   10520 
   10521 Implemented 3 new warnings for iASL, and implemented multiple warning 
   10522 levels 
   10523 (w2 flag).
   10524 
   10525 1) Ignored timeouts: If the TimeoutValue parameter to Wait or Acquire is 
   10526 not 
   10527 WAIT_FOREVER (0xFFFF) and the code does not examine the return value to 
   10528 check for the possible timeout, a warning is issued.
   10529 
   10530 2) Useless operators: If an ASL operator does not specify an optional 
   10531 target 
   10532 operand and it also does not use the function return value from the 
   10533 operator, a warning is issued since the operator effectively does 
   10534 nothing.
   10535 
   10536 3) Unreferenced objects: If a namespace object is created, but never 
   10537 referenced, a warning is issued. This is a warning level 2 since there 
   10538 are 
   10539 cases where this is ok, such as when a secondary table is loaded that 
   10540 uses 
   10541 the unreferenced objects. Even so, care is taken to only flag objects 
   10542 that 
   10543 don't look like they will ever be used. For example, the reserved methods 
   10544 (starting with an underscore) are usually not referenced because it is 
   10545 expected that the OS will invoke them.
   10546 
   10547 ----------------------------------------
   10548 31 March 2006. Summary of changes for version 20060331:
   10549 
   10550 1) ACPI CA Core Subsystem:
   10551 
   10552 Implemented header file support for the following additional ACPI tables: 
   10553 ASF!, BOOT, CPEP, DBGP, MCFG, SPCR, SPMI, TCPA, and WDRT. With this 
   10554 support, 
   10555 all current and known ACPI tables are now defined in the ACPICA headers 
   10556 and 
   10557 are available for use by device drivers and other software.
   10558 
   10559 Implemented support to allow tables that contain ACPI names with invalid 
   10560 characters to be loaded. Previously, this would cause the table load to 
   10561 fail, but since there are several known cases of such tables on existing 
   10562 machines, this change was made to enable ACPI support for them. Also, 
   10563 this 
   10564 matches the behavior of the Microsoft ACPI implementation.
   10565 
   10566 Fixed a couple regressions introduced during the memory optimization in 
   10567 the 
   10568 20060317 release. The namespace node definition required additional 
   10569 reorganization and an internal datatype that had been changed to 8-bit 
   10570 was 
   10571 restored to 32-bit. (Valery Podrezov)
   10572 
   10573 Fixed a problem where a null pointer passed to AcpiUtDeleteGenericState 
   10574 could be passed through to AcpiOsReleaseObject which is unexpected. Such 
   10575 null pointers are now trapped and ignored, matching the behavior of the 
   10576 previous implementation before the deployment of AcpiOsReleaseObject.
   10577 (Valery Podrezov, Fiodor Suietov)
   10578 
   10579 Fixed a memory mapping leak during the deletion of a SystemMemory 
   10580 operation 
   10581 region where a cached memory mapping was not deleted. This became a 
   10582 noticeable problem for operation regions that are defined within 
   10583 frequently 
   10584 used control methods. (Dana Meyers)
   10585 
   10586 Reorganized the ACPI table header files into two main files: one for the 
   10587 ACPI tables consumed by the ACPICA core, and another for the 
   10588 miscellaneous 
   10589 ACPI tables that are consumed by the drivers and other software. The 
   10590 various 
   10591 FADT definitions were merged into one common section and three different 
   10592 tables (ACPI 1.0, 1.0+, and 2.0)
   10593 
   10594 Example Code and Data Size: These are the sizes for the OS-independent 
   10595 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
   10596 debug version of the code includes the debug output trace mechanism and 
   10597 has 
   10598 a much larger code and data size.
   10599 
   10600   Previous Release:
   10601     Non-Debug Version:  80.9K Code, 17.7K Data,  98.6K Total
   10602     Debug Version:     158.7K Code, 64.8K Data, 223.5K Total
   10603   Current Release:
   10604     Non-Debug Version:  81.1K Code, 17.7K Data,  98.8K Total
   10605     Debug Version:     158.9K Code, 64.9K Data, 223.8K Total
   10606 
   10607 
   10608 2) iASL Compiler/Disassembler and Tools:
   10609 
   10610 Disassembler: Implemented support to decode and format all non-AML ACPI 
   10611 tables (tables other than DSDTs and SSDTs.) This includes the new tables 
   10612 added to the ACPICA headers, therefore all current and known ACPI tables 
   10613 are 
   10614 supported.
   10615 
   10616 Disassembler: The change to allow ACPI names with invalid characters also 
   10617 enables the disassembly of such tables. Invalid characters within names 
   10618 are 
   10619 changed to '*' to make the name printable; the iASL compiler will still 
   10620 generate an error for such names, however, since this is an invalid ACPI 
   10621 character.
   10622 
   10623 Implemented an option for AcpiXtract (-a) to extract all tables found in 
   10624 the 
   10625 input file. The default invocation extracts only the DSDTs and SSDTs.
   10626 
   10627 Fixed a couple of gcc generation issues for iASL and AcpiExec and added a 
   10628 makefile for the AcpiXtract utility.
   10629 
   10630 ----------------------------------------
   10631 17 March 2006. Summary of changes for version 20060317:
   10632 
   10633 1) ACPI CA Core Subsystem:
   10634 
   10635 Implemented the use of a cache object for all internal namespace nodes. 
   10636 Since there are about 1000 static nodes in a typical system, this will 
   10637 decrease memory use for cache implementations that minimize per-
   10638 allocation 
   10639 overhead (such as a slab allocator.)
   10640 
   10641 Removed the reference count mechanism for internal namespace nodes, since 
   10642 it 
   10643 was deemed unnecessary. This reduces the size of each namespace node by 
   10644 about 5%-10% on all platforms. Nodes are now 20 bytes for the 32-bit 
   10645 case, 
   10646 and 32 bytes for the 64-bit case.
   10647 
   10648 Optimized several internal data structures to reduce object size on 64-
   10649 bit 
   10650 platforms by packing data within the 64-bit alignment. This includes the 
   10651 frequently used ACPI_OPERAND_OBJECT, of which there can be ~1000 static 
   10652 instances corresponding to the namespace objects.
   10653 
   10654 Added two new strings for the predefined _OSI method: "Windows 2001.1 
   10655 SP1" 
   10656 and "Windows 2006".
   10657 
   10658 Split the allocation tracking mechanism out to a separate file, from 
   10659 utalloc.c to uttrack.c. This mechanism appears to be only useful for 
   10660 application-level code. Kernels may wish to not include uttrack.c in 
   10661 distributions.
   10662 
   10663 Removed all remnants of the obsolete ACPI_REPORT_* macros and the 
   10664 associated 
   10665 code. (These macros have been replaced by the ACPI_ERROR and ACPI_WARNING 
   10666 macros.)
   10667 
   10668 Code and Data Size: These are the sizes for the acpica.lib produced by 
   10669 the 
   10670 Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any 
   10671 ACPI 
   10672 driver or OSPM code. The debug version of the code includes the debug 
   10673 output 
   10674 trace mechanism and has a much larger code and data size. Note that these 
   10675 values will vary depending on the efficiency of the compiler and the 
   10676 compiler options used during generation.
   10677 
   10678   Previous Release:
   10679     Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
   10680     Debug Version:     161.6K Code, 65.7K Data, 227.3K Total
   10681   Current Release:
   10682     Non-Debug Version:  80.9K Code, 17.7K Data,  98.6K Total
   10683     Debug Version:     158.7K Code, 64.8K Data, 223.5K Total
   10684 
   10685 
   10686 2) iASL Compiler/Disassembler and Tools:
   10687 
   10688 Implemented an ANSI C version of the acpixtract utility. This version 
   10689 will 
   10690 automatically extract the DSDT and all SSDTs from the input acpidump text 
   10691 file and dump the binary output to separate files. It can also display a 
   10692 summary of the input file including the headers for each table found and 
   10693 will extract any single ACPI table, with any signature. (See 
   10694 source/tools/acpixtract)
   10695 
   10696 ----------------------------------------
   10697 10 March 2006. Summary of changes for version 20060310:
   10698 
   10699 1) ACPI CA Core Subsystem:
   10700 
   10701 Tagged all external interfaces to the subsystem with the new 
   10702 ACPI_EXPORT_SYMBOL macro. This macro can be defined as necessary to 
   10703 assist 
   10704 kernel integration. For Linux, the macro resolves to the EXPORT_SYMBOL 
   10705 macro. The default definition is NULL.
   10706 
   10707 Added the ACPI_THREAD_ID type for the return value from 
   10708 AcpiOsGetThreadId. 
   10709 This allows the host to define this as necessary to simplify kernel 
   10710 integration. The default definition is ACPI_NATIVE_UINT.
   10711 
   10712 Fixed two interpreter problems related to error processing, the deletion 
   10713 of 
   10714 objects, and placing invalid pointers onto the internal operator result 
   10715 stack. BZ 6028, 6151 (Valery Podrezov)
   10716 
   10717 Increased the reference count threshold where a warning is emitted for 
   10718 large 
   10719 reference counts in order to eliminate unnecessary warnings on systems 
   10720 with 
   10721 large namespaces (especially 64-bit.) Increased the value from 0x400 to 
   10722 0x800.
   10723 
   10724 Due to universal disagreement as to the meaning of the 'c' in the 
   10725 calloc() 
   10726 function, the ACPI_MEM_CALLOCATE macro has been renamed to 
   10727 ACPI_ALLOCATE_ZEROED so that the purpose of the interface is 'clear'. 
   10728 ACPI_MEM_ALLOCATE and ACPI_MEM_FREE are renamed to ACPI_ALLOCATE and 
   10729 ACPI_FREE.
   10730 
   10731 Code and Data Size: These are the sizes for the acpica.lib produced by 
   10732 the 
   10733 Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any 
   10734 ACPI 
   10735 driver or OSPM code. The debug version of the code includes the debug 
   10736 output 
   10737 trace mechanism and has a much larger code and data size. Note that these 
   10738 values will vary depending on the efficiency of the compiler and the 
   10739 compiler options used during generation.
   10740 
   10741   Previous Release:
   10742     Non-Debug Version:  81.0K Code, 17.8K Data,  98.8K Total
   10743     Debug Version:     161.4K Code, 65.7K Data, 227.1K Total
   10744   Current Release:
   10745     Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
   10746     Debug Version:     161.6K Code, 65.7K Data, 227.3K Total
   10747 
   10748 
   10749 2) iASL Compiler/Disassembler:
   10750 
   10751 Disassembler: implemented support for symbolic resource descriptor 
   10752 references. If a CreateXxxxField operator references a fixed offset 
   10753 within 
   10754 a 
   10755 resource descriptor, a name is assigned to the descriptor and the offset 
   10756 is 
   10757 translated to the appropriate resource tag and pathname. The addition of 
   10758 this support brings the disassembled code very close to the original ASL 
   10759 source code and helps eliminate run-time errors when the disassembled 
   10760 code 
   10761 is modified (and recompiled) in such a way as to invalidate the original 
   10762 fixed offsets.
   10763 
   10764 Implemented support for a Descriptor Name as the last parameter to the 
   10765 ASL 
   10766 Register() macro. This parameter was inadvertently left out of the ACPI 
   10767 specification, and will be added for ACPI 3.0b.
   10768 
   10769 Fixed a problem where the use of the "_OSI" string (versus the full path 
   10770 "\_OSI") caused an internal compiler error. ("No back ptr to op")
   10771 
   10772 Fixed a problem with the error message that occurs when an invalid string 
   10773 is 
   10774 used for a _HID object (such as one with an embedded asterisk: 
   10775 "*PNP010A".) 
   10776 The correct message is now displayed.
   10777 
   10778 ----------------------------------------
   10779 17 February 2006. Summary of changes for version 20060217:
   10780 
   10781 1) ACPI CA Core Subsystem:
   10782 
   10783 Implemented a change to the IndexField support to match the behavior of 
   10784 the 
   10785 Microsoft AML interpreter. The value written to the Index register is now 
   10786 a 
   10787 byte offset, no longer an index based upon the width of the Data 
   10788 register. 
   10789 This should fix IndexField problems seen on some machines where the Data 
   10790 register is not exactly one byte wide. The ACPI specification will be 
   10791 clarified on this point.
   10792 
   10793 Fixed a problem where several resource descriptor types could overrun the 
   10794 internal descriptor buffer due to size miscalculation: VendorShort, 
   10795 VendorLong, and Interrupt. This was noticed on IA64 machines, but could 
   10796 affect all platforms.
   10797 
   10798 Fixed a problem where individual resource descriptors were misaligned 
   10799 within 
   10800 the internal buffer, causing alignment faults on IA64 platforms.
   10801 
   10802 Code and Data Size: These are the sizes for the acpica.lib produced by 
   10803 the 
   10804 Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any 
   10805 ACPI 
   10806 driver or OSPM code. The debug version of the code includes the debug 
   10807 output 
   10808 trace mechanism and has a much larger code and data size. Note that these 
   10809 values will vary depending on the efficiency of the compiler and the 
   10810 compiler options used during generation.
   10811 
   10812   Previous Release:
   10813     Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
   10814     Debug Version:     161.3K Code, 65.6K Data, 226.9K Total
   10815   Current Release:
   10816     Non-Debug Version:  81.0K Code, 17.8K Data,  98.8K Total
   10817     Debug Version:     161.4K Code, 65.7K Data, 227.1K Total
   10818 
   10819 
   10820 2) iASL Compiler/Disassembler:
   10821 
   10822 Implemented support for new reserved names: _WDG and _WED are Microsoft 
   10823 extensions for Windows Instrumentation Management, _TDL is a new ACPI-
   10824 defined method (Throttling Depth Limit.)
   10825 
   10826 Fixed a problem where a zero-length VendorShort or VendorLong resource 
   10827 descriptor was incorrectly emitted as a descriptor of length one.
   10828 
   10829 ----------------------------------------
   10830 10 February 2006. Summary of changes for version 20060210:
   10831 
   10832 1) ACPI CA Core Subsystem:
   10833 
   10834 Removed a couple of extraneous ACPI_ERROR messages that appeared during 
   10835 normal execution. These became apparent after the conversion from 
   10836 ACPI_DEBUG_PRINT.
   10837 
   10838 Fixed a problem where the CreateField operator could hang if the BitIndex 
   10839 or 
   10840 NumBits parameter referred to a named object. (Valery Podrezov, BZ 5359)
   10841 
   10842 Fixed a problem where a DeRefOf operation on a buffer object incorrectly 
   10843 failed with an exception. This also fixes a couple of related RefOf and 
   10844 DeRefOf issues. (Valery Podrezov, BZ 5360/5392/5387)
   10845 
   10846 Fixed a problem where the AE_BUFFER_LIMIT exception was returned instead 
   10847 of 
   10848 AE_STRING_LIMIT on an out-of-bounds Index() operation. (Valery Podrezov, 
   10849 BZ 
   10850 5480)
   10851 
   10852 Implemented a memory cleanup at the end of the execution of each 
   10853 iteration 
   10854 of an AML While() loop, preventing the accumulation of outstanding 
   10855 objects. 
   10856 (Valery Podrezov, BZ 5427)
   10857 
   10858 Eliminated a chunk of duplicate code in the object resolution code. 
   10859 (Valery 
   10860 Podrezov, BZ 5336)
   10861 
   10862 Fixed several warnings during the 64-bit code generation.
   10863 
   10864 The AcpiSrc source code conversion tool now inserts one line of 
   10865 whitespace 
   10866 after an if() statement that is followed immediately by a comment, 
   10867 improving 
   10868 readability of the Linux code.
   10869 
   10870 Code and Data Size: The current and previous library sizes for the core 
   10871 subsystem are shown below. These are the code and data sizes for the 
   10872 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
   10873 These 
   10874 values do not include any ACPI driver or OSPM code. The debug version of 
   10875 the 
   10876 code includes the debug output trace mechanism and has a much larger code 
   10877 and data size. Note that these values will vary depending on the 
   10878 efficiency 
   10879 of the compiler and the compiler options used during generation.
   10880 
   10881   Previous Release:
   10882     Non-Debug Version:  81.0K Code, 17.9K Data,  98.9K Total
   10883     Debug Version:     161.3K Code, 65.7K Data, 227.0K Total
   10884   Current Release:
   10885     Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
   10886     Debug Version:     161.3K Code, 65.6K Data, 226.9K Total
   10887 
   10888 
   10889 2) iASL Compiler/Disassembler:
   10890 
   10891 Fixed a problem with the disassembly of a BankField operator with a 
   10892 complex 
   10893 expression for the BankValue parameter.
   10894 
   10895 ----------------------------------------
   10896 27 January 2006. Summary of changes for version 20060127:
   10897 
   10898 1) ACPI CA Core Subsystem:
   10899 
   10900 Implemented support in the Resource Manager to allow unresolved 
   10901 namestring 
   10902 references within resource package objects for the _PRT method. This 
   10903 support 
   10904 is in addition to the previously implemented unresolved reference support 
   10905 within the AML parser. If the interpreter slack mode is enabled, these 
   10906 unresolved references will be passed through to the caller as a NULL 
   10907 package 
   10908 entry.
   10909 
   10910 Implemented and deployed new macros and functions for error and warning 
   10911 messages across the subsystem. These macros are simpler and generate less 
   10912 code than their predecessors. The new macros ACPI_ERROR, ACPI_EXCEPTION, 
   10913 ACPI_WARNING, and ACPI_INFO replace the ACPI_REPORT_* macros. The older 
   10914 macros remain defined to allow ACPI drivers time to migrate to the new 
   10915 macros.
   10916 
   10917 Implemented the ACPI_CPU_FLAGS type to simplify host OS integration of 
   10918 the 
   10919 Acquire/Release Lock OSL interfaces.
   10920 
   10921 Fixed a problem where Alias ASL operators are sometimes not correctly 
   10922 resolved, in both the interpreter and the iASL compiler.
   10923 
   10924 Fixed several problems with the implementation of the 
   10925 ConcatenateResTemplate 
   10926 ASL operator. As per the ACPI specification, zero length buffers are now 
   10927 treated as a single EndTag. One-length buffers always cause a fatal 
   10928 exception. Non-zero length buffers that do not end with a full 2-byte 
   10929 EndTag 
   10930 cause a fatal exception.
   10931 
   10932 Fixed a possible structure overwrite in the AcpiGetObjectInfo external 
   10933 interface. (With assistance from Thomas Renninger)
   10934 
   10935 Code and Data Size: The current and previous library sizes for the core 
   10936 subsystem are shown below. These are the code and data sizes for the 
   10937 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
   10938 These 
   10939 values do not include any ACPI driver or OSPM code. The debug version of 
   10940 the 
   10941 code includes the debug output trace mechanism and has a much larger code 
   10942 and data size. Note that these values will vary depending on the 
   10943 efficiency 
   10944 of the compiler and the compiler options used during generation.
   10945 
   10946   Previous Release:
   10947     Non-Debug Version:  83.1K Code, 18.4K Data, 101.5K Total
   10948     Debug Version:     163.2K Code, 66.2K Data, 229.4K Total
   10949   Current Release:
   10950     Non-Debug Version:  81.0K Code, 17.9K Data,  98.9K Total
   10951     Debug Version:     161.3K Code, 65.7K Data, 227.0K Total
   10952 
   10953 
   10954 2) iASL Compiler/Disassembler:
   10955 
   10956 Fixed an internal error that was generated for any forward references to 
   10957 ASL 
   10958 Alias objects.
   10959 
   10960 ----------------------------------------
   10961 13 January 2006. Summary of changes for version 20060113:
   10962 
   10963 1) ACPI CA Core Subsystem:
   10964 
   10965 Added 2006 copyright to all module headers and signons. This affects 
   10966 virtually every file in the ACPICA core subsystem, iASL compiler, and the 
   10967 utilities.
   10968  
   10969 Enhanced the ACPICA error reporting in order to simplify user migration 
   10970 to 
   10971 the non-debug version of ACPICA. Replaced all instances of the 
   10972 ACPI_DEBUG_PRINT macro invoked at the ACPI_DB_ERROR and ACPI_DB_WARN 
   10973 debug 
   10974 levels with the ACPI_REPORT_ERROR and ACPI_REPORT_WARNING macros, 
   10975 respectively. This preserves all error and warning messages in the non-
   10976 debug 
   10977 version of the ACPICA code (this has been referred to as the "debug lite" 
   10978 option.) Over 200 cases were converted to create a total of over 380 
   10979 error/warning messages across the ACPICA code. This increases the code 
   10980 and 
   10981 data size of the default non-debug version of the code somewhat (about 
   10982 13K), 
   10983 but all error/warning reporting may be disabled if desired (and code 
   10984 eliminated) by specifying the ACPI_NO_ERROR_MESSAGES compile-time 
   10985 configuration option. The size of the debug version of ACPICA remains 
   10986 about 
   10987 the same.
   10988 
   10989 Fixed a memory leak within the AML Debugger "Set" command. One object was 
   10990 not properly deleted for every successful invocation of the command.
   10991 
   10992 Code and Data Size: The current and previous library sizes for the core 
   10993 subsystem are shown below. These are the code and data sizes for the 
   10994 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
   10995 These 
   10996 values do not include any ACPI driver or OSPM code. The debug version of 
   10997 the 
   10998 code includes the debug output trace mechanism and has a much larger code 
   10999 and data size. Note that these values will vary depending on the 
   11000 efficiency 
   11001 of the compiler and the compiler options used during generation.
   11002 
   11003   Previous Release:
   11004     Non-Debug Version:  76.6K Code, 12.3K Data,  88.9K Total
   11005     Debug Version:     163.7K Code, 67.5K Data, 231.2K Total
   11006   Current Release:
   11007     Non-Debug Version:  83.1K Code, 18.4K Data, 101.5K Total
   11008     Debug Version:     163.2K Code, 66.2K Data, 229.4K Total
   11009 
   11010 
   11011 2) iASL Compiler/Disassembler:
   11012 
   11013 The compiler now officially supports the ACPI 3.0a specification that was 
   11014 released on December 30, 2005. (Specification is available at 
   11015 www.acpi.info)
   11016 
   11017 ----------------------------------------
   11018 16 December 2005. Summary of changes for version 20051216:
   11019 
   11020 1) ACPI CA Core Subsystem:
   11021 
   11022 Implemented optional support to allow unresolved names within ASL Package 
   11023 objects. A null object is inserted in the package when a named reference 
   11024 cannot be located in the current namespace. Enabled via the interpreter 
   11025 slack flag, this should eliminate AE_NOT_FOUND exceptions seen on 
   11026 machines 
   11027 that contain such code.
   11028 
   11029 Implemented an optimization to the initialization sequence that can 
   11030 improve 
   11031 boot time. During ACPI device initialization, the _STA method is now run 
   11032 if 
   11033 and only if the _INI method exists. The _STA method is used to determine 
   11034 if 
   11035 the device is present; An _INI can only be run if _STA returns present, 
   11036 but 
   11037 it is a waste of time to run the _STA method if the _INI does not exist. 
   11038 (Prototype and assistance from Dong Wei)
   11039 
   11040 Implemented use of the C99 uintptr_t for the pointer casting macros if it 
   11041 is 
   11042 available in the current compiler. Otherwise, the default (void *) cast 
   11043 is 
   11044 used as before.
   11045 
   11046 Fixed some possible memory leaks found within the execution path of the 
   11047 Break, Continue, If, and CreateField operators. (Valery Podrezov)
   11048 
   11049 Fixed a problem introduced in the 20051202 release where an exception is 
   11050 generated during method execution if a control method attempts to declare 
   11051 another method.
   11052 
   11053 Moved resource descriptor string constants that are used by both the AML 
   11054 disassembler and AML debugger to the common utilities directory so that 
   11055 these components are independent.
   11056 
   11057 Implemented support in the AcpiExec utility (-e switch) to globally 
   11058 ignore 
   11059 exceptions during control method execution (method is not aborted.)
   11060 
   11061 Added the rsinfo.c source file to the AcpiExec makefile for Linux/Unix 
   11062 generation.
   11063 
   11064 Code and Data Size: The current and previous library sizes for the core 
   11065 subsystem are shown below. These are the code and data sizes for the 
   11066 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
   11067 These 
   11068 values do not include any ACPI driver or OSPM code. The debug version of 
   11069 the 
   11070 code includes the debug output trace mechanism and has a much larger code 
   11071 and data size. Note that these values will vary depending on the 
   11072 efficiency 
   11073 of the compiler and the compiler options used during generation.
   11074 
   11075   Previous Release:
   11076     Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
   11077     Debug Version:     163.2K Code, 67.4K Data, 230.6K Total
   11078   Current Release:
   11079     Non-Debug Version:  76.6K Code, 12.3K Data,  88.9K Total
   11080     Debug Version:     163.7K Code, 67.5K Data, 231.2K Total
   11081 
   11082 
   11083 2) iASL Compiler/Disassembler:
   11084 
   11085 Fixed a problem where a CPU stack overflow fault could occur if a 
   11086 recursive 
   11087 method call was made from within a Return statement.
   11088 
   11089 ----------------------------------------
   11090 02 December 2005. Summary of changes for version 20051202:
   11091 
   11092 1) ACPI CA Core Subsystem:
   11093 
   11094 Modified the parsing of control methods to no longer create namespace 
   11095 objects during the first pass of the parse. Objects are now created only 
   11096 during the execute phase, at the moment the namespace creation operator 
   11097 is 
   11098 encountered in the AML (Name, OperationRegion, CreateByteField, etc.) 
   11099 This 
   11100 should eliminate ALREADY_EXISTS exceptions seen on some machines where 
   11101 reentrant control methods are protected by an AML mutex. The mutex will 
   11102 now 
   11103 correctly block multiple threads from attempting to create the same 
   11104 object 
   11105 more than once.
   11106 
   11107 Increased the number of available Owner Ids for namespace object tracking 
   11108 from 32 to 255. This should eliminate the OWNER_ID_LIMIT exceptions seen 
   11109 on 
   11110 some machines with a large number of ACPI tables (either static or 
   11111 dynamic).
   11112 
   11113 Fixed a problem with the AcpiExec utility where a fault could occur when 
   11114 the 
   11115 -b switch (batch mode) is used.
   11116 
   11117 Enhanced the namespace dump routine to output the owner ID for each 
   11118 namespace object.
   11119 
   11120 Code and Data Size: The current and previous library sizes for the core 
   11121 subsystem are shown below. These are the code and data sizes for the 
   11122 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
   11123 These 
   11124 values do not include any ACPI driver or OSPM code. The debug version of 
   11125 the 
   11126 code includes the debug output trace mechanism and has a much larger code 
   11127 and data size. Note that these values will vary depending on the 
   11128 efficiency 
   11129 of the compiler and the compiler options used during generation.
   11130 
   11131   Previous Release:
   11132     Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
   11133     Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
   11134   Current Release:
   11135     Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
   11136     Debug Version:     163.2K Code, 67.4K Data, 230.6K Total
   11137 
   11138 
   11139 2) iASL Compiler/Disassembler:
   11140 
   11141 Fixed a parse error during compilation of certain Switch/Case constructs. 
   11142 To 
   11143 simplify the parse, the grammar now allows for multiple Default 
   11144 statements 
   11145 and this error is now detected and flagged during the analysis phase.
   11146 
   11147 Disassembler: The disassembly now includes the contents of the original 
   11148 table header within a comment at the start of the file. This includes the 
   11149 name and version of the original ASL compiler.
   11150 
   11151 ----------------------------------------
   11152 17 November 2005. Summary of changes for version 20051117:
   11153 
   11154 1) ACPI CA Core Subsystem:
   11155 
   11156 Fixed a problem in the AML parser where the method thread count could be 
   11157 decremented below zero if any errors occurred during the method parse 
   11158 phase. 
   11159 This should eliminate AE_AML_METHOD_LIMIT exceptions seen on some 
   11160 machines. 
   11161 This also fixed a related regression with the mechanism that detects and 
   11162 corrects methods that cannot properly handle reentrancy (related to the 
   11163 deployment of the new OwnerId mechanism.)
   11164 
   11165 Eliminated the pre-parsing of control methods (to detect errors) during 
   11166 table load. Related to the problem above, this was causing unwind issues 
   11167 if 
   11168 any errors occurred during the parse, and it seemed to be overkill. A 
   11169 table 
   11170 load should not be aborted if there are problems with any single control 
   11171 method, thus rendering this feature rather pointless.
   11172 
   11173 Fixed a problem with the new table-driven resource manager where an 
   11174 internal 
   11175 buffer overflow could occur for small resource templates.
   11176 
   11177 Implemented a new external interface, AcpiGetVendorResource. This 
   11178 interface 
   11179 will find and return a vendor-defined resource descriptor within a _CRS 
   11180 or 
   11181 _PRS method via an ACPI 3.0 UUID match. With assistance from Bjorn 
   11182 Helgaas.
   11183 
   11184 Removed the length limit (200) on string objects as per the upcoming ACPI 
   11185 3.0A specification. This affects the following areas of the interpreter: 
   11186 1) 
   11187 any implicit conversion of a Buffer to a String, 2) a String object 
   11188 result 
   11189 of the ASL Concatentate operator, 3) the String object result of the ASL 
   11190 ToString operator.
   11191 
   11192 Fixed a problem in the Windows OS interface layer (OSL) where a 
   11193 WAIT_FOREVER 
   11194 on a semaphore object would incorrectly timeout. This allows the 
   11195 multithreading features of the AcpiExec utility to work properly under 
   11196 Windows.
   11197 
   11198 Updated the Linux makefiles for the iASL compiler and AcpiExec to include 
   11199 the recently added file named "utresrc.c".
   11200 
   11201 Code and Data Size: The current and previous library sizes for the core 
   11202 subsystem are shown below. These are the code and data sizes for the 
   11203 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
   11204 These 
   11205 values do not include any ACPI driver or OSPM code. The debug version of 
   11206 the 
   11207 code includes the debug output trace mechanism and has a much larger code 
   11208 and data size. Note that these values will vary depending on the 
   11209 efficiency 
   11210 of the compiler and the compiler options used during generation.
   11211 
   11212   Previous Release:
   11213     Non-Debug Version:  76.2K Code, 12.3K Data,  88.5K Total
   11214     Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
   11215   Current Release:
   11216     Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
   11217     Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
   11218 
   11219 
   11220 2) iASL Compiler/Disassembler:
   11221 
   11222 Removed the limit (200) on string objects as per the upcoming ACPI 3.0A 
   11223 specification. For the iASL compiler, this means that string literals 
   11224 within 
   11225 the source ASL can be of any length. 
   11226 
   11227 Enhanced the listing output to dump the AML code for resource descriptors 
   11228 immediately after the ASL code for each descriptor, instead of in a block 
   11229 at 
   11230 the end of the entire resource template.
   11231 
   11232 Enhanced the compiler debug output to dump the entire original parse tree 
   11233 constructed during the parse phase, before any transforms are applied to 
   11234 the 
   11235 tree. The transformed tree is dumped also.
   11236 
   11237 ----------------------------------------
   11238 02 November 2005. Summary of changes for version 20051102:
   11239 
   11240 1) ACPI CA Core Subsystem:
   11241 
   11242 Modified the subsystem initialization sequence to improve GPE support. 
   11243 The 
   11244 GPE initialization has been split into two parts in order to defer 
   11245 execution 
   11246 of the _PRW methods (Power Resources for Wake) until after the hardware 
   11247 is 
   11248 fully initialized and the SCI handler is installed. This allows the _PRW 
   11249 methods to access fields protected by the Global Lock. This will fix 
   11250 systems 
   11251 where a NO_GLOBAL_LOCK exception has been seen during initialization.
   11252 
   11253 Converted the ACPI internal object disassemble and display code within 
   11254 the 
   11255 AML debugger to fully table-driven operation, reducing code size and 
   11256 increasing maintainability.
   11257 
   11258 Fixed a regression with the ConcatenateResTemplate() ASL operator 
   11259 introduced 
   11260 in the 20051021 release.
   11261 
   11262 Implemented support for "local" internal ACPI object types within the 
   11263 debugger "Object" command and the AcpiWalkNamespace external interfaces. 
   11264 These local types include RegionFields, BankFields, IndexFields, Alias, 
   11265 and 
   11266 reference objects.
   11267 
   11268 Moved common AML resource handling code into a new file, "utresrc.c". 
   11269 This 
   11270 code is shared by both the Resource Manager and the AML Debugger.
   11271 
   11272 Code and Data Size: The current and previous library sizes for the core 
   11273 subsystem are shown below. These are the code and data sizes for the 
   11274 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
   11275 These 
   11276 values do not include any ACPI driver or OSPM code. The debug version of 
   11277 the 
   11278 code includes the debug output trace mechanism and has a much larger code 
   11279 and data size. Note that these values will vary depending on the 
   11280 efficiency 
   11281 of the compiler and the compiler options used during generation.
   11282 
   11283   Previous Release:
   11284     Non-Debug Version:  76.1K Code, 12.2K Data,  88.3K Total
   11285     Debug Version:     163.5K Code, 67.0K Data, 230.5K Total
   11286   Current Release:
   11287     Non-Debug Version:  76.2K Code, 12.3K Data,  88.5K Total
   11288     Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
   11289 
   11290 
   11291 2) iASL Compiler/Disassembler:
   11292 
   11293 Fixed a problem with very large initializer lists (more than 4000 
   11294 elements) 
   11295 for both Buffer and Package objects where the parse stack could overflow.
   11296 
   11297 Enhanced the pre-compile source code scan for non-ASCII characters to 
   11298 ignore 
   11299 characters within comment fields. The scan is now always performed and is 
   11300 no 
   11301 longer optional, detecting invalid characters within a source file 
   11302 immediately rather than during the parse phase or later.
   11303 
   11304 Enhanced the ASL grammar definition to force early reductions on all 
   11305 list-
   11306 style grammar elements so that the overall parse stack usage is greatly 
   11307 reduced. This should improve performance and reduce the possibility of 
   11308 parse 
   11309 stack overflow.
   11310 
   11311 Eliminated all reduce/reduce conflicts in the iASL parser generation. 
   11312 Also, 
   11313 with the addition of a %expected statement, the compiler generates from 
   11314 source with no warnings.
   11315 
   11316 Fixed a possible segment fault in the disassembler if the input filename 
   11317 does not contain a "dot" extension (Thomas Renninger).
   11318 
   11319 ----------------------------------------
   11320 21 October 2005. Summary of changes for version 20051021:
   11321 
   11322 1) ACPI CA Core Subsystem:
   11323 
   11324 Implemented support for the EM64T and other x86-64 processors. This 
   11325 essentially entails recognizing that these processors support non-aligned 
   11326 memory transfers. Previously, all 64-bit processors were assumed to lack 
   11327 hardware support for non-aligned transfers.
   11328 
   11329 Completed conversion of the Resource Manager to nearly full table-driven 
   11330 operation. Specifically, the resource conversion code (convert AML to 
   11331 internal format and the reverse) and the debug code to dump internal 
   11332 resource descriptors are fully table-driven, reducing code and data size 
   11333 and 
   11334 improving maintainability.
   11335 
   11336 The OSL interfaces for Acquire and Release Lock now use a 64-bit flag 
   11337 word 
   11338 on 64-bit processors instead of a fixed 32-bit word. (With assistance 
   11339 from 
   11340 Alexey Starikovskiy)
   11341 
   11342 Implemented support within the resource conversion code for the Type-
   11343 Specific byte within the various ACPI 3.0 *WordSpace macros.
   11344 
   11345 Fixed some issues within the resource conversion code for the type-
   11346 specific 
   11347 flags for both Memory and I/O address resource descriptors. For Memory, 
   11348 implemented support for the MTP and TTP flags. For I/O, split the TRS and 
   11349 TTP flags into two separate fields.
   11350 
   11351 Code and Data Size: The current and previous library sizes for the core 
   11352 subsystem are shown below. These are the code and data sizes for the 
   11353 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
   11354 These 
   11355 values do not include any ACPI driver or OSPM code. The debug version of 
   11356 the 
   11357 code includes the debug output trace mechanism and has a much larger code 
   11358 and data size. Note that these values will vary depending on the 
   11359 efficiency 
   11360 of the compiler and the compiler options used during generation.
   11361 
   11362   Previous Release:
   11363     Non-Debug Version:  77.1K Code, 12.1K Data,  89.2K Total
   11364     Debug Version:     168.0K Code, 68.3K Data, 236.3K Total
   11365   Current Release:
   11366     Non-Debug Version:  76.1K Code, 12.2K Data,  88.3K Total
   11367     Debug Version:     163.5K Code, 67.0K Data, 230.5K Total
   11368 
   11369 
   11370 
   11371 2) iASL Compiler/Disassembler:
   11372 
   11373 Relaxed a compiler restriction that disallowed a ResourceIndex byte if 
   11374 the 
   11375 corresponding ResourceSource string was not also present in a resource 
   11376 descriptor declaration. This restriction caused problems with existing 
   11377 AML/ASL code that includes the Index byte without the string. When such 
   11378 AML 
   11379 was disassembled, it could not be compiled without modification. Further, 
   11380 the modified code created a resource template with a different size than 
   11381 the 
   11382 original, breaking code that used fixed offsets into the resource 
   11383 template 
   11384 buffer.
   11385 
   11386 Removed a recent feature of the disassembler to ignore a lone 
   11387 ResourceIndex 
   11388 byte. This byte is now emitted if present so that the exact AML can be 
   11389 reproduced when the disassembled code is recompiled.
   11390 
   11391 Improved comments and text alignment for the resource descriptor code 
   11392 emitted by the disassembler.
   11393 
   11394 Implemented disassembler support for the ACPI 3.0 AccessSize field within 
   11395 a 
   11396 Register() resource descriptor.
   11397 
   11398 ----------------------------------------
   11399 30 September 2005. Summary of changes for version 20050930:
   11400 
   11401 1) ACPI CA Core Subsystem:
   11402 
   11403 Completed a major overhaul of the Resource Manager code - specifically, 
   11404 optimizations in the area of the AML/internal resource conversion code. 
   11405 The 
   11406 code has been optimized to simplify and eliminate duplicated code, CPU 
   11407 stack 
   11408 use has been decreased by optimizing function parameters and local 
   11409 variables, and naming conventions across the manager have been 
   11410 standardized 
   11411 for clarity and ease of maintenance (this includes function, parameter, 
   11412 variable, and struct/typedef names.) The update may force changes in some 
   11413 driver code, depending on how resources are handled by the host OS.
   11414 
   11415 All Resource Manager dispatch and information tables have been moved to a 
   11416 single location for clarity and ease of maintenance. One new file was 
   11417 created, named "rsinfo.c".
   11418 
   11419 The ACPI return macros (return_ACPI_STATUS, etc.) have been modified to 
   11420 guarantee that the argument is not evaluated twice, making them less 
   11421 prone 
   11422 to macro side-effects. However, since there exists the possibility of 
   11423 additional stack use if a particular compiler cannot optimize them (such 
   11424 as 
   11425 in the debug generation case), the original macros are optionally 
   11426 available.  
   11427 Note that some invocations of the return_VALUE macro may now cause size 
   11428 mismatch warnings; the return_UINT8 and return_UINT32 macros are provided 
   11429 to 
   11430 eliminate these. (From Randy Dunlap)
   11431 
   11432 Implemented a new mechanism to enable debug tracing for individual 
   11433 control 
   11434 methods. A new external interface, AcpiDebugTrace, is provided to enable 
   11435 this mechanism. The intent is to allow the host OS to easily enable and 
   11436 disable tracing for problematic control methods. This interface can be 
   11437 easily exposed to a user or debugger interface if desired. See the file 
   11438 psxface.c for details.
   11439 
   11440 AcpiUtCallocate will now return a valid pointer if a length of zero is 
   11441 specified - a length of one is used and a warning is issued. This matches 
   11442 the behavior of AcpiUtAllocate.
   11443 
   11444 Code and Data Size: The current and previous library sizes for the core 
   11445 subsystem are shown below. These are the code and data sizes for the 
   11446 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
   11447 These 
   11448 values do not include any ACPI driver or OSPM code. The debug version of 
   11449 the 
   11450 code includes the debug output trace mechanism and has a much larger code 
   11451 and data size. Note that these values will vary depending on the 
   11452 efficiency 
   11453 of the compiler and the compiler options used during generation.
   11454 
   11455   Previous Release:
   11456     Non-Debug Version:  77.5K Code, 12.0K Data,  89.5K Total
   11457     Debug Version:     168.1K Code, 68.4K Data, 236.5K Total
   11458   Current Release:
   11459     Non-Debug Version:  77.1K Code, 12.1K Data,  89.2K Total
   11460     Debug Version:     168.0K Code, 68.3K Data, 236.3K Total
   11461 
   11462 
   11463 2) iASL Compiler/Disassembler:
   11464 
   11465 A remark is issued if the effective compile-time length of a package or 
   11466 buffer is zero. Previously, this was a warning.
   11467 
   11468 ----------------------------------------
   11469 16 September 2005. Summary of changes for version 20050916:
   11470 
   11471 1) ACPI CA Core Subsystem:
   11472 
   11473 Fixed a problem within the Resource Manager where support for the Generic 
   11474 Register descriptor was not fully implemented. This descriptor is now 
   11475 fully 
   11476 recognized, parsed, disassembled, and displayed.
   11477 
   11478 Completely restructured the Resource Manager code to utilize table-driven 
   11479 dispatch and lookup, eliminating many of the large switch() statements. 
   11480 This 
   11481 reduces overall subsystem code size and code complexity. Affects the 
   11482 resource parsing and construction, disassembly, and debug dump output.
   11483 
   11484 Cleaned up and restructured the debug dump output for all resource 
   11485 descriptors. Improved readability of the output and reduced code size.
   11486 
   11487 Fixed a problem where changes to internal data structures caused the 
   11488 optional ACPI_MUTEX_DEBUG code to fail compilation if specified.
   11489 
   11490 Code and Data Size: The current and previous library sizes for the core 
   11491 subsystem are shown below. These are the code and data sizes for the 
   11492 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
   11493 These 
   11494 values do not include any ACPI driver or OSPM code. The debug version of 
   11495 the 
   11496 code includes the debug output trace mechanism and has a much larger code 
   11497 and data size. Note that these values will vary depending on the 
   11498 efficiency 
   11499 of the compiler and the compiler options used during generation.
   11500 
   11501   Previous Release:
   11502     Non-Debug Version:  78.4K Code, 11.8K Data,  90.2K Total
   11503     Debug Version:     169.6K Code, 69.9K Data, 239.5K Total
   11504   Current Release:
   11505     Non-Debug Version:  77.5K Code, 12.0K Data,  89.5K Total
   11506     Debug Version:     168.1K Code, 68.4K Data, 236.5K Total
   11507 
   11508 
   11509 2) iASL Compiler/Disassembler:
   11510 
   11511 Updated the disassembler to automatically insert an EndDependentFn() 
   11512 macro 
   11513 into the ASL stream if this macro is missing in the original AML code, 
   11514 simplifying compilation of the resulting ASL module.
   11515 
   11516 Fixed a problem in the disassembler where a disassembled ResourceSource 
   11517 string (within a large resource descriptor) was not surrounded by quotes 
   11518 and 
   11519 not followed by a comma, causing errors when the resulting ASL module was 
   11520 compiled. Also, escape sequences within a ResourceSource string are now 
   11521 handled correctly (especially "\\")
   11522 
   11523 ----------------------------------------
   11524 02 September 2005. Summary of changes for version 20050902:
   11525 
   11526 1) ACPI CA Core Subsystem:
   11527 
   11528 Fixed a problem with the internal Owner ID allocation and deallocation 
   11529 mechanisms for control method execution and recursive method invocation. 
   11530 This should eliminate the OWNER_ID_LIMIT exceptions and "Invalid OwnerId" 
   11531 messages seen on some systems. Recursive method invocation depth is 
   11532 currently limited to 255. (Alexey Starikovskiy)
   11533 
   11534 Completely eliminated all vestiges of support for the "module-level 
   11535 executable code" until this support is fully implemented and debugged. 
   11536 This 
   11537 should eliminate the NO_RETURN_VALUE exceptions seen during table load on 
   11538 some systems that invoke this support.
   11539 
   11540 Fixed a problem within the resource manager code where the transaction 
   11541 flags 
   11542 for a 64-bit address descriptor were handled incorrectly in the type-
   11543 specific flag byte.
   11544 
   11545 Consolidated duplicate code within the address descriptor resource 
   11546 manager 
   11547 code, reducing overall subsystem code size.
   11548 
   11549 Fixed a fault when using the AML debugger "disassemble" command to 
   11550 disassemble individual control methods.
   11551 
   11552 Removed references to the "release_current" directory within the Unix 
   11553 release package.
   11554 
   11555 Code and Data Size: The current and previous core subsystem library sizes 
   11556 are shown below. These are the code and data sizes for the acpica.lib 
   11557 produced by the Microsoft Visual C++ 6.0 compiler. These values do not 
   11558 include any ACPI driver or OSPM code. The debug version of the code 
   11559 includes 
   11560 the debug output trace mechanism and has a much larger code and data 
   11561 size. 
   11562 Note that these values will vary depending on the efficiency of the 
   11563 compiler 
   11564 and the compiler options used during generation.
   11565 
   11566   Previous Release:
   11567     Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
   11568     Debug Version:     170.0K Code, 69.9K Data, 239.9K Total
   11569   Current Release:
   11570     Non-Debug Version:  78.4K Code, 11.8K Data,  90.2K Total
   11571     Debug Version:     169.6K Code, 69.9K Data, 239.5K Total
   11572 
   11573 
   11574 2) iASL Compiler/Disassembler:
   11575 
   11576 Implemented an error check for illegal duplicate values in the interrupt 
   11577 and 
   11578 dma lists for the following ASL macros: Dma(), Irq(), IrqNoFlags(), and 
   11579 Interrupt().
   11580 
   11581 Implemented error checking for the Irq() and IrqNoFlags() macros to 
   11582 detect 
   11583 too many values in the interrupt list (16 max) and invalid values in the 
   11584 list (range 0 - 15)
   11585 
   11586 The maximum length string literal within an ASL file is now restricted to 
   11587 200 characters as per the ACPI specification.
   11588 
   11589 Fixed a fault when using the -ln option (generate namespace listing).
   11590 
   11591 Implemented an error check to determine if a DescriptorName within a 
   11592 resource descriptor has already been used within the current scope.
   11593 
   11594 ----------------------------------------
   11595 15 August 2005.  Summary of changes for version 20050815:
   11596  
   11597 1) ACPI CA Core Subsystem:
   11598  
   11599 Implemented a full bytewise compare to determine if a table load request 
   11600 is 
   11601 attempting to load a duplicate table. The compare is performed if the 
   11602 table 
   11603 signatures and table lengths match. This will allow different tables with 
   11604 the same OEM Table ID and revision to be loaded - probably against the 
   11605 ACPI 
   11606 specification, but discovered in the field nonetheless.
   11607  
   11608 Added the changes.txt logfile to each of the zipped release packages.
   11609  
   11610 Code and Data Size: Current and previous core subsystem library sizes are 
   11611 shown below. These are the code and data sizes for the acpica.lib 
   11612 produced 
   11613 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   11614 any ACPI driver or OSPM code. The debug version of the code includes the 
   11615 debug output trace mechanism and has a much larger code and data size. 
   11616 Note 
   11617 that these values will vary depending on the efficiency of the compiler 
   11618 and 
   11619 the compiler options used during generation.
   11620  
   11621   Previous Release:
   11622     Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
   11623     Debug Version:     167.0K Code, 69.9K Data, 236.9K Total
   11624   Current Release:
   11625     Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
   11626     Debug Version:     170.0K Code, 69.9K Data, 239.9K Total
   11627  
   11628  
   11629 2) iASL Compiler/Disassembler:
   11630  
   11631 Fixed a problem where incorrect AML code could be generated for Package 
   11632 objects if optimization is disabled (via the -oa switch).
   11633  
   11634 Fixed a problem with where incorrect AML code is generated for variable-
   11635 length packages when the package length is not specified and the number 
   11636 of 
   11637 initializer values is greater than 255.
   11638  
   11639 
   11640 ----------------------------------------
   11641 29 July 2005.  Summary of changes for version 20050729:
   11642 
   11643 1) ACPI CA Core Subsystem:
   11644 
   11645 Implemented support to ignore an attempt to install/load a particular 
   11646 ACPI 
   11647 table more than once. Apparently there exists BIOS code that repeatedly 
   11648 attempts to load the same SSDT upon certain events. With assistance from 
   11649 Venkatesh Pallipadi.
   11650 
   11651 Restructured the main interface to the AML parser in order to correctly 
   11652 handle all exceptional conditions. This will prevent leakage of the 
   11653 OwnerId 
   11654 resource and should eliminate the AE_OWNER_ID_LIMIT exceptions seen on 
   11655 some 
   11656 machines. With assistance from Alexey Starikovskiy.
   11657 
   11658 Support for "module level code" has been disabled in this version due to 
   11659 a 
   11660 number of issues that have appeared on various machines. The support can 
   11661 be 
   11662 enabled by defining ACPI_ENABLE_MODULE_LEVEL_CODE during subsystem 
   11663 compilation. When the issues are fully resolved, the code will be enabled 
   11664 by 
   11665 default again.
   11666 
   11667 Modified the internal functions for debug print support to define the 
   11668 FunctionName parameter as a (const char *) for compatibility with 
   11669 compiler 
   11670 built-in macros such as __FUNCTION__, etc.
   11671 
   11672 Linted the entire ACPICA source tree for both 32-bit and 64-bit.
   11673 
   11674 Implemented support to display an object count summary for the AML 
   11675 Debugger 
   11676 commands Object and Methods.
   11677 
   11678 Code and Data Size: Current and previous core subsystem library sizes are 
   11679 shown below. These are the code and data sizes for the acpica.lib 
   11680 produced 
   11681 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   11682 any ACPI driver or OSPM code. The debug version of the code includes the 
   11683 debug output trace mechanism and has a much larger code and data size. 
   11684 Note 
   11685 that these values will vary depending on the efficiency of the compiler 
   11686 and 
   11687 the compiler options used during generation.
   11688 
   11689   Previous Release:
   11690     Non-Debug Version:  78.6K Code, 11.6K Data,  90.2K Total
   11691     Debug Version:     170.0K Code, 69.7K Data, 239.7K Total
   11692   Current Release:
   11693     Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
   11694     Debug Version:     167.0K Code, 69.9K Data, 236.9K Total
   11695 
   11696 
   11697 2) iASL Compiler/Disassembler:
   11698 
   11699 Fixed a regression that appeared in the 20050708 version of the compiler 
   11700 where an error message was inadvertently emitted for invocations of the 
   11701 _OSI 
   11702 reserved control method.
   11703 
   11704 ----------------------------------------
   11705 08 July 2005.  Summary of changes for version 20050708:
   11706 
   11707 1) ACPI CA Core Subsystem:
   11708 
   11709 The use of the CPU stack in the debug version of the subsystem has been 
   11710 considerably reduced. Previously, a debug structure was declared in every 
   11711 function that used the debug macros. This structure has been removed in 
   11712 favor of declaring the individual elements as parameters to the debug 
   11713 functions. This reduces the cumulative stack use during nested execution 
   11714 of 
   11715 ACPI function calls at the cost of a small increase in the code size of 
   11716 the 
   11717 debug version of the subsystem. With assistance from Alexey Starikovskiy 
   11718 and 
   11719 Len Brown.
   11720 
   11721 Added the ACPI_GET_FUNCTION_NAME macro to enable the compiler-dependent 
   11722 headers to define a macro that will return the current function name at 
   11723 runtime (such as __FUNCTION__ or _func_, etc.) The function name is used 
   11724 by 
   11725 the debug trace output. If ACPI_GET_FUNCTION_NAME is not defined in the 
   11726 compiler-dependent header, the function name is saved on the CPU stack 
   11727 (one 
   11728 pointer per function.) This mechanism is used because apparently there 
   11729 exists no standard ANSI-C defined macro that that returns the function 
   11730 name.
   11731 
   11732 Redesigned and reimplemented the "Owner ID" mechanism used to track 
   11733 namespace objects created/deleted by ACPI tables and control method 
   11734 execution. A bitmap is now used to allocate and free the IDs, thus 
   11735 solving 
   11736 the wraparound problem present in the previous implementation. The size 
   11737 of 
   11738 the namespace node descriptor was reduced by 2 bytes as a result (Alexey 
   11739 Starikovskiy).
   11740 
   11741 Removed the UINT32_BIT and UINT16_BIT types that were used for the 
   11742 bitfield 
   11743 flag definitions within the headers for the predefined ACPI tables. These 
   11744 have been replaced by UINT8_BIT in order to increase the code portability 
   11745 of 
   11746 the subsystem. If the use of UINT8 remains a problem, we may be forced to 
   11747 eliminate bitfields entirely because of a lack of portability.
   11748 
   11749 Enhanced the performance of the AcpiUtUpdateObjectReference procedure. 
   11750 This 
   11751 is a frequently used function and this improvement increases the 
   11752 performance 
   11753 of the entire subsystem (Alexey Starikovskiy).
   11754 
   11755 Fixed several possible memory leaks and the inverse - premature object 
   11756 deletion (Alexey Starikovskiy).
   11757 
   11758 Code and Data Size: Current and previous core subsystem library sizes are 
   11759 shown below. These are the code and data sizes for the acpica.lib 
   11760 produced 
   11761 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   11762 any ACPI driver or OSPM code. The debug version of the code includes the 
   11763 debug output trace mechanism and has a much larger code and data size. 
   11764 Note 
   11765 that these values will vary depending on the efficiency of the compiler 
   11766 and 
   11767 the compiler options used during generation.
   11768 
   11769   Previous Release:
   11770     Non-Debug Version:  78.6K Code, 11.5K Data,  90.1K Total
   11771     Debug Version:     165.2K Code, 69.6K Data, 234.8K Total
   11772   Current Release:
   11773     Non-Debug Version:  78.6K Code, 11.6K Data,  90.2K Total
   11774     Debug Version:     170.0K Code, 69.7K Data, 239.7K Total
   11775 
   11776 ----------------------------------------
   11777 24 June 2005.  Summary of changes for version 20050624:
   11778 
   11779 1) ACPI CA Core Subsystem:
   11780 
   11781 Modified the new OSL cache interfaces to use ACPI_CACHE_T as the type for 
   11782 the host-defined cache object. This allows the OSL implementation to 
   11783 define 
   11784 and type this object in any manner desired, simplifying the OSL 
   11785 implementation. For example, ACPI_CACHE_T is defined as kmem_cache_t for 
   11786 Linux, and should be defined in the OS-specific header file for other 
   11787 operating systems as required.
   11788 
   11789 Changed the interface to AcpiOsAcquireObject to directly return the 
   11790 requested object as the function return (instead of ACPI_STATUS.) This 
   11791 change was made for performance reasons, since this is the purpose of the 
   11792 interface in the first place. AcpiOsAcquireObject is now similar to the 
   11793 AcpiOsAllocate interface.
   11794 
   11795 Implemented a new AML debugger command named Businfo. This command 
   11796 displays 
   11797 information about all devices that have an associate _PRT object. The 
   11798 _ADR, 
   11799 _HID, _UID, and _CID are displayed for these devices.
   11800 
   11801 Modified the initialization sequence in AcpiInitializeSubsystem to call 
   11802 the 
   11803 OSL interface AcpiOslInitialize first, before any local initialization. 
   11804 This 
   11805 change was required because the global initialization now calls OSL 
   11806 interfaces.
   11807 
   11808 Enhanced the Dump command to display the entire contents of Package 
   11809 objects 
   11810 (including all sub-objects and their values.) 
   11811 
   11812 Restructured the code base to split some files because of size and/or 
   11813 because the code logically belonged in a separate file. New files are 
   11814 listed 
   11815 below. All makefiles and project files included in the ACPI CA release 
   11816 have 
   11817 been updated.
   11818     utilities/utcache.c           /* Local cache interfaces */
   11819     utilities/utmutex.c           /* Local mutex support */
   11820     utilities/utstate.c           /* State object support */
   11821     interpreter/parser/psloop.c   /* Main AML parse loop */
   11822 
   11823 Code and Data Size: Current and previous core subsystem library sizes are 
   11824 shown below. These are the code and data sizes for the acpica.lib 
   11825 produced 
   11826 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   11827 any ACPI driver or OSPM code. The debug version of the code includes the 
   11828 debug output trace mechanism and has a much larger code and data size. 
   11829 Note 
   11830 that these values will vary depending on the efficiency of the compiler 
   11831 and 
   11832 the compiler options used during generation.
   11833 
   11834   Previous Release:
   11835     Non-Debug Version:  78.3K Code, 11.6K Data,  89.9K Total
   11836     Debug Version:     164.0K Code, 69.1K Data, 233.1K Total
   11837   Current Release:
   11838     Non-Debug Version:  78.6K Code, 11.5K Data,  90.1K Total
   11839     Debug Version:     165.2K Code, 69.6K Data, 234.8K Total
   11840 
   11841 
   11842 2) iASL Compiler/Disassembler:
   11843 
   11844 Fixed a regression introduced in version 20050513 where the use of a 
   11845 Package 
   11846 object within a Case() statement caused a compile time exception. The 
   11847 original behavior has been restored (a Match() operator is emitted.)
   11848 
   11849 ----------------------------------------
   11850 17 June 2005.  Summary of changes for version 20050617:
   11851 
   11852 1) ACPI CA Core Subsystem:
   11853 
   11854 Moved the object cache operations into the OS interface layer (OSL) to 
   11855 allow 
   11856 the host OS to handle these operations if desired (for example, the Linux 
   11857 OSL will invoke the slab allocator). This support is optional; the 
   11858 compile 
   11859 time define ACPI_USE_LOCAL_CACHE may be used to utilize the original 
   11860 cache 
   11861 code in the ACPI CA core. The new OSL interfaces are shown below. See 
   11862 utalloc.c for an example implementation, and acpiosxf.h for the exact 
   11863 interface definitions. With assistance from Alexey Starikovskiy.
   11864     AcpiOsCreateCache
   11865     AcpiOsDeleteCache
   11866     AcpiOsPurgeCache
   11867     AcpiOsAcquireObject
   11868     AcpiOsReleaseObject
   11869 
   11870 Modified the interfaces to AcpiOsAcquireLock and AcpiOsReleaseLock to 
   11871 return 
   11872 and restore a flags parameter. This fits better with many OS lock models. 
   11873 Note: the current execution state (interrupt handler or not) is no longer 
   11874 passed to these interfaces. If necessary, the OSL must determine this 
   11875 state 
   11876 by itself, a simple and fast operation. With assistance from Alexey 
   11877 Starikovskiy.
   11878 
   11879 Fixed a problem in the ACPI table handling where a valid XSDT was assumed 
   11880 present if the revision of the RSDP was 2 or greater. According to the 
   11881 ACPI 
   11882 specification, the XSDT is optional in all cases, and the table manager 
   11883 therefore now checks for both an RSDP >=2 and a valid XSDT pointer. 
   11884 Otherwise, the RSDT pointer is used. Some ACPI 2.0 compliant BIOSs 
   11885 contain 
   11886 only the RSDT.
   11887 
   11888 Fixed an interpreter problem with the Mid() operator in the case of an 
   11889 input 
   11890 string where the resulting output string is of zero length. It now 
   11891 correctly 
   11892 returns a valid, null terminated string object instead of a string object 
   11893 with a null pointer.
   11894 
   11895 Fixed a problem with the control method argument handling to allow a 
   11896 store 
   11897 to an Arg object that already contains an object of type Device. The 
   11898 Device 
   11899 object is now correctly overwritten. Previously, an error was returned.
   11900 
   11901 
   11902 Enhanced the debugger Find command to emit object values in addition to 
   11903 the 
   11904 found object pathnames. The output format is the same as the dump 
   11905 namespace 
   11906 command.
   11907 
   11908 Enhanced the debugger Set command. It now has the ability to set the 
   11909 value 
   11910 of any Named integer object in the namespace (Previously, only method 
   11911 locals 
   11912 and args could be set.)
   11913 
   11914 Code and Data Size: Current and previous core subsystem library sizes are 
   11915 shown below. These are the code and data sizes for the acpica.lib 
   11916 produced 
   11917 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   11918 any ACPI driver or OSPM code. The debug version of the code includes the 
   11919 debug output trace mechanism and has a much larger code and data size. 
   11920 Note 
   11921 that these values will vary depending on the efficiency of the compiler 
   11922 and 
   11923 the compiler options used during generation.
   11924 
   11925   Previous Release:
   11926     Non-Debug Version:  78.1K Code, 11.6K Data,  89.7K Total
   11927     Debug Version:     164.0K Code, 69.3K Data, 233.3K Total
   11928   Current Release:
   11929     Non-Debug Version:  78.3K Code, 11.6K Data,  89.9K Total
   11930     Debug Version:     164.0K Code, 69.1K Data, 233.1K Total
   11931 
   11932 
   11933 2) iASL Compiler/Disassembler:
   11934 
   11935 Fixed a regression in the disassembler where if/else/while constructs 
   11936 were 
   11937 output incorrectly. This problem was introduced in the previous release 
   11938 (20050526). This problem also affected the single-step disassembly in the 
   11939 debugger.
   11940 
   11941 Fixed a problem where compiling the reserved _OSI method would randomly 
   11942 (but 
   11943 rarely) produce compile errors.
   11944 
   11945 Enhanced the disassembler to emit compilable code in the face of 
   11946 incorrect 
   11947 AML resource descriptors. If the optional ResourceSourceIndex is present, 
   11948 but the ResourceSource is not, do not emit the ResourceSourceIndex in the 
   11949 disassembly. Otherwise, the resulting code cannot be compiled without 
   11950 errors.
   11951 
   11952 ----------------------------------------
   11953 26 May 2005.  Summary of changes for version 20050526:
   11954 
   11955 1) ACPI CA Core Subsystem:
   11956 
   11957 Implemented support to execute Type 1 and Type 2 AML opcodes appearing at 
   11958 the module level (not within a control method.) These opcodes are 
   11959 executed 
   11960 exactly once at the time the table is loaded. This type of code was legal 
   11961 up 
   11962 until the release of ACPI 2.0B (2002) and is now supported within ACPI CA 
   11963 in 
   11964 order to provide backwards compatibility with earlier BIOS 
   11965 implementations. 
   11966 This eliminates the "Encountered executable code at module level" warning 
   11967 that was previously generated upon detection of such code.
   11968 
   11969 Fixed a problem in the interpreter where an AE_NOT_FOUND exception could 
   11970 inadvertently be generated during the lookup of namespace objects in the 
   11971 second pass parse of ACPI tables and control methods. It appears that 
   11972 this 
   11973 problem could occur during the resolution of forward references to 
   11974 namespace 
   11975 objects.
   11976 
   11977 Added the ACPI_MUTEX_DEBUG #ifdef to the AcpiUtReleaseMutex function, 
   11978 corresponding to the same #ifdef in the AcpiUtAcquireMutex function. This 
   11979 allows the deadlock detection debug code to be compiled out in the normal 
   11980 case, improving mutex performance (and overall subsystem performance) 
   11981 considerably.
   11982 
   11983 Implemented a handful of miscellaneous fixes for possible memory leaks on 
   11984 error conditions and error handling control paths. These fixes were 
   11985 suggested by FreeBSD and the Coverity Prevent source code analysis tool.
   11986 
   11987 Added a check for a null RSDT pointer in AcpiGetFirmwareTable 
   11988 (tbxfroot.c) 
   11989 to prevent a fault in this error case.
   11990 
   11991 Code and Data Size: Current and previous core subsystem library sizes are 
   11992 shown below. These are the code and data sizes for the acpica.lib 
   11993 produced 
   11994 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   11995 any ACPI driver or OSPM code. The debug version of the code includes the 
   11996 debug output trace mechanism and has a much larger code and data size. 
   11997 Note 
   11998 that these values will vary depending on the efficiency of the compiler 
   11999 and 
   12000 the compiler options used during generation.
   12001 
   12002   Previous Release:
   12003     Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
   12004     Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
   12005   Current Release:
   12006     Non-Debug Version:  78.1K Code, 11.6K Data,  89.7K Total
   12007     Debug Version:     164.0K Code, 69.3K Data, 233.3K Total
   12008 
   12009 
   12010 2) iASL Compiler/Disassembler:
   12011 
   12012 Implemented support to allow Type 1 and Type 2 ASL operators to appear at 
   12013 the module level (not within a control method.) These operators will be 
   12014 executed once at the time the table is loaded. This type of code was 
   12015 legal 
   12016 up until the release of ACPI 2.0B (2002) and is now supported by the iASL 
   12017 compiler in order to provide backwards compatibility with earlier BIOS 
   12018 ASL 
   12019 code.
   12020 
   12021 The ACPI integer width (specified via the table revision ID or the -r 
   12022 override, 32 or 64 bits) is now used internally during compile-time 
   12023 constant 
   12024 folding to ensure that constants are truncated to 32 bits if necessary. 
   12025 Previously, the revision ID value was only emitted in the AML table 
   12026 header.
   12027 
   12028 An error message is now generated for the Mutex and Method operators if 
   12029 the 
   12030 SyncLevel parameter is outside the legal range of 0 through 15.
   12031 
   12032 Fixed a problem with the Method operator ParameterTypes list handling 
   12033 (ACPI 
   12034 3.0). Previously, more than 2 types or 2 arguments generated a syntax 
   12035 error.  
   12036 The actual underlying implementation of method argument typechecking is 
   12037 still under development, however.
   12038 
   12039 ----------------------------------------
   12040 13 May 2005.  Summary of changes for version 20050513:
   12041 
   12042 1) ACPI CA Core Subsystem:
   12043 
   12044 Implemented support for PCI Express root bridges -- added support for 
   12045 device 
   12046 PNP0A08 in the root bridge search within AcpiEvPciConfigRegionSetup.
   12047 
   12048 The interpreter now automatically truncates incoming 64-bit constants to 
   12049 32 
   12050 bits if currently executing out of a 32-bit ACPI table (Revision < 2). 
   12051 This 
   12052 also affects the iASL compiler constant folding. (Note: as per below, the 
   12053 iASL compiler no longer allows 64-bit constants within 32-bit tables.)
   12054 
   12055 Fixed a problem where string and buffer objects with "static" pointers 
   12056 (pointers to initialization data within an ACPI table) were not handled 
   12057 consistently. The internal object copy operation now always copies the 
   12058 data 
   12059 to a newly allocated buffer, regardless of whether the source object is 
   12060 static or not.
   12061 
   12062 Fixed a problem with the FromBCD operator where an implicit result 
   12063 conversion was improperly performed while storing the result to the 
   12064 target 
   12065 operand. Since this is an "explicit conversion" operator, the implicit 
   12066 conversion should never be performed on the output.
   12067 
   12068 Fixed a problem with the CopyObject operator where a copy to an existing 
   12069 named object did not always completely overwrite the existing object 
   12070 stored 
   12071 at name. Specifically, a buffer-to-buffer copy did not delete the 
   12072 existing 
   12073 buffer.
   12074 
   12075 Replaced "InterruptLevel" with "InterruptNumber" in all GPE interfaces 
   12076 and 
   12077 structs for consistency.
   12078 
   12079 Code and Data Size: Current and previous core subsystem library sizes are 
   12080 shown below. These are the code and data sizes for the acpica.lib 
   12081 produced 
   12082 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   12083 any ACPI driver or OSPM code. The debug version of the code includes the 
   12084 debug output trace mechanism and has a much larger code and data size. 
   12085 Note 
   12086 that these values will vary depending on the efficiency of the compiler 
   12087 and 
   12088 the compiler options used during generation.
   12089 
   12090   Previous Release:
   12091     Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
   12092     Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
   12093   Current Release: (Same sizes)
   12094     Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
   12095     Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
   12096 
   12097 
   12098 2) iASL Compiler/Disassembler:
   12099 
   12100 The compiler now emits a warning if an attempt is made to generate a 64-
   12101 bit 
   12102 integer constant from within a 32-bit ACPI table (Revision < 2). The 
   12103 integer 
   12104 is truncated to 32 bits.
   12105 
   12106 Fixed a problem with large package objects: if the static length of the 
   12107 package is greater than 255, the "variable length package" opcode is 
   12108 emitted. Previously, this caused an error. This requires an update to the 
   12109 ACPI spec, since it currently (incorrectly) states that packages larger 
   12110 than 
   12111 255 elements are not allowed.
   12112 
   12113 The disassembler now correctly handles variable length packages and 
   12114 packages 
   12115 larger than 255 elements.
   12116 
   12117 ----------------------------------------
   12118 08 April 2005.  Summary of changes for version 20050408:
   12119 
   12120 1) ACPI CA Core Subsystem:
   12121 
   12122 Fixed three cases in the interpreter where an "index" argument to an ASL 
   12123 function was still (internally) 32 bits instead of the required 64 bits. 
   12124 This was the Index argument to the Index, Mid, and Match operators.
   12125 
   12126 The "strupr" function is now permanently local (AcpiUtStrupr), since this 
   12127 is 
   12128 not a POSIX-defined function and not present in most kernel-level C 
   12129 libraries. All references to the C library strupr function have been 
   12130 removed 
   12131 from the headers.
   12132 
   12133 Completed the deployment of static functions/prototypes. All prototypes 
   12134 with 
   12135 the static attribute have been moved from the headers to the owning C 
   12136 file.
   12137 
   12138 Implemented an extract option (-e) for the AcpiBin utility (AML binary 
   12139 utility). This option allows the utility to extract individual ACPI 
   12140 tables 
   12141 from the output of AcpiDmp. It provides the same functionality of the 
   12142 acpixtract.pl perl script without the worry of setting the correct perl 
   12143 options. AcpiBin runs on Windows and has not yet been generated/validated 
   12144 in 
   12145 the Linux/Unix environment (but should be soon).
   12146  
   12147 Updated and fixed the table dump option for AcpiBin (-d). This option 
   12148 converts a single ACPI table to a hex/ascii file, similar to the output 
   12149 of 
   12150 AcpiDmp.
   12151 
   12152 Code and Data Size: Current and previous core subsystem library sizes are 
   12153 shown below. These are the code and data sizes for the acpica.lib 
   12154 produced 
   12155 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   12156 any ACPI driver or OSPM code. The debug version of the code includes the 
   12157 debug output trace mechanism and has a much larger code and data size. 
   12158 Note 
   12159 that these values will vary depending on the efficiency of the compiler 
   12160 and 
   12161 the compiler options used during generation.
   12162 
   12163   Previous Release:
   12164     Non-Debug Version:  78.0K Code, 11.6K Data,  89.6K Total
   12165     Debug Version:     163.5K Code, 69.3K Data, 232.8K Total
   12166   Current Release:
   12167     Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
   12168     Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
   12169 
   12170 
   12171 2) iASL Compiler/Disassembler:
   12172 
   12173 Disassembler fix: Added a check to ensure that the table length found in 
   12174 the 
   12175 ACPI table header within the input file is not longer than the actual 
   12176 input 
   12177 file size. This indicates some kind of file or table corruption.
   12178 
   12179 ----------------------------------------
   12180 29 March 2005.  Summary of changes for version 20050329:
   12181 
   12182 1) ACPI CA Core Subsystem:
   12183 
   12184 An error is now generated if an attempt is made to create a Buffer Field 
   12185 of 
   12186 length zero (A CreateField with a length operand of zero.)
   12187 
   12188 The interpreter now issues a warning whenever executable code at the 
   12189 module 
   12190 level is detected during ACPI table load. This will give some idea of the 
   12191 prevalence of this type of code.
   12192 
   12193 Implemented support for references to named objects (other than control 
   12194 methods) within package objects.
   12195 
   12196 Enhanced package object output for the debug object. Package objects are 
   12197 now 
   12198 completely dumped, showing all elements.
   12199 
   12200 Enhanced miscellaneous object output for the debug object. Any object can 
   12201 now be written to the debug object (for example, a device object can be 
   12202 written, and the type of the object will be displayed.)
   12203 
   12204 The "static" qualifier has been added to all local functions across both 
   12205 the 
   12206 core subsystem and the iASL compiler.
   12207 
   12208 The number of "long" lines (> 80 chars) within the source has been 
   12209 significantly reduced, by about 1/3.
   12210 
   12211 Cleaned up all header files to ensure that all CA/iASL functions are 
   12212 prototyped (even static functions) and the formatting is consistent.
   12213 
   12214 Two new header files have been added, acopcode.h and acnames.h.
   12215 
   12216 Removed several obsolete functions that were no longer used.
   12217 
   12218 Code and Data Size: Current and previous core subsystem library sizes are 
   12219 shown below. These are the code and data sizes for the acpica.lib 
   12220 produced 
   12221 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   12222 any ACPI driver or OSPM code. The debug version of the code includes the 
   12223 debug output trace mechanism and has a much larger code and data size. 
   12224 Note 
   12225 that these values will vary depending on the efficiency of the compiler 
   12226 and 
   12227 the compiler options used during generation.
   12228 
   12229   Previous Release:
   12230     Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
   12231     Debug Version:     165.4K Code, 69.7K Data, 236.1K Total
   12232   Current Release:
   12233     Non-Debug Version:  78.0K Code, 11.6K Data,  89.6K Total
   12234     Debug Version:     163.5K Code, 69.3K Data, 232.8K Total
   12235 
   12236 
   12237 
   12238 2) iASL Compiler/Disassembler:
   12239 
   12240 Fixed a problem with the resource descriptor generation/support. For the 
   12241 ResourceSourceIndex and the ResourceSource fields, both must be present, 
   12242 or 
   12243 both must be not present - can't have one without the other.
   12244 
   12245 The compiler now returns non-zero from the main procedure if any errors 
   12246 have 
   12247 occurred during the compilation.
   12248 
   12249 
   12250 ----------------------------------------
   12251 09 March 2005.  Summary of changes for version 20050309:
   12252 
   12253 1) ACPI CA Core Subsystem:
   12254 
   12255 The string-to-buffer implicit conversion code has been modified again 
   12256 after 
   12257 a change to the ACPI specification.  In order to match the behavior of 
   12258 the 
   12259 other major ACPI implementation, the target buffer is no longer truncated 
   12260 if 
   12261 the source string is smaller than an existing target buffer. This change 
   12262 requires an update to the ACPI spec, and should eliminate the recent 
   12263 AE_AML_BUFFER_LIMIT issues.
   12264 
   12265 The "implicit return" support was rewritten to a new algorithm that 
   12266 solves 
   12267 the general case. Rather than attempt to determine when a method is about 
   12268 to 
   12269 exit, the result of every ASL operator is saved momentarily until the 
   12270 very 
   12271 next ASL operator is executed. Therefore, no matter how the method exits, 
   12272 there will always be a saved implicit return value. This feature is only 
   12273 enabled with the AcpiGbl_EnableInterpreterSlack flag, and should 
   12274 eliminate 
   12275 AE_AML_NO_RETURN_VALUE errors when enabled.
   12276 
   12277 Implemented implicit conversion support for the predicate (operand) of 
   12278 the 
   12279 If, Else, and While operators. String and Buffer arguments are 
   12280 automatically 
   12281 converted to Integers.
   12282 
   12283 Changed the string-to-integer conversion behavior to match the new ACPI 
   12284 errata: "If no integer object exists, a new integer is created. The ASCII 
   12285 string is interpreted as a hexadecimal constant. Each string character is 
   12286 interpreted as a hexadecimal value ('0'-'9', 'A'-'F', 'a', 'f'), starting 
   12287 with the first character as the most significant digit, and ending with 
   12288 the 
   12289 first non-hexadecimal character or end-of-string." This means that the 
   12290 first 
   12291 non-hex character terminates the conversion and this is the code that was 
   12292 changed.
   12293 
   12294 Fixed a problem where the ObjectType operator would fail (fault) when 
   12295 used 
   12296 on an Index of a Package which pointed to a null package element. The 
   12297 operator now properly returns zero (Uninitialized) in this case.
   12298 
   12299 Fixed a problem where the While operator used excessive memory by not 
   12300 properly popping the result stack during execution. There was no memory 
   12301 leak 
   12302 after execution, however. (Code provided by Valery Podrezov.)
   12303 
   12304 Fixed a problem where references to control methods within Package 
   12305 objects 
   12306 caused the method to be invoked, instead of producing a reference object 
   12307 pointing to the method.
   12308 
   12309 Restructured and simplified the pswalk.c module (AcpiPsDeleteParseTree) 
   12310 to 
   12311 improve performance and reduce code size. (Code provided by Alexey 
   12312 Starikovskiy.)
   12313 
   12314 Code and Data Size: Current and previous core subsystem library sizes are 
   12315 shown below. These are the code and data sizes for the acpica.lib 
   12316 produced 
   12317 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   12318 any ACPI driver or OSPM code. The debug version of the code includes the 
   12319 debug output trace mechanism and has a much larger code and data size. 
   12320 Note 
   12321 that these values will vary depending on the efficiency of the compiler 
   12322 and 
   12323 the compiler options used during generation.
   12324 
   12325   Previous Release:
   12326     Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
   12327     Debug Version:     165.4K Code, 69.6K Data, 236.0K Total
   12328   Current Release:
   12329     Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
   12330     Debug Version:     165.4K Code, 69.7K Data, 236.1K Total
   12331 
   12332 
   12333 2) iASL Compiler/Disassembler:
   12334 
   12335 Fixed a problem with the Return operator with no arguments. Since the AML 
   12336 grammar for the byte encoding requires an operand for the Return opcode, 
   12337 the 
   12338 compiler now emits a Return(Zero) for this case.  An ACPI specification 
   12339 update has been written for this case.
   12340 
   12341 For tables other than the DSDT, namepath optimization is automatically 
   12342 disabled. This is because SSDTs can be loaded anywhere in the namespace, 
   12343 the 
   12344 compiler has no knowledge of where, and thus cannot optimize namepaths.
   12345 
   12346 Added "ProcessorObj" to the ObjectTypeKeyword list. This object type was 
   12347 inadvertently omitted from the ACPI specification, and will require an 
   12348 update to the spec.
   12349 
   12350 The source file scan for ASCII characters is now optional (-a). This 
   12351 change 
   12352 was made because some vendors place non-ascii characters within comments. 
   12353 However, the scan is simply a brute-force byte compare to ensure all 
   12354 characters in the file are in the range 0x00 to 0x7F.
   12355 
   12356 Fixed a problem with the CondRefOf operator where the compiler was 
   12357 inappropriately checking for the existence of the target. Since the point 
   12358 of 
   12359 the operator is to check for the existence of the target at run-time, the 
   12360 compiler no longer checks for the target existence.
   12361 
   12362 Fixed a problem where errors generated from the internal AML interpreter 
   12363 during constant folding were not handled properly, causing a fault.
   12364 
   12365 Fixed a problem with overly aggressive range checking for the Stall 
   12366 operator. The valid range (max 255) is now only checked if the operand is 
   12367 of 
   12368 type Integer. All other operand types cannot be statically checked.
   12369 
   12370 Fixed a problem where control method references within the RefOf, 
   12371 DeRefOf, 
   12372 and ObjectType operators were not treated properly. They are now treated 
   12373 as 
   12374 actual references, not method invocations.
   12375 
   12376 Fixed and enhanced the "list namespace" option (-ln). This option was 
   12377 broken 
   12378 a number of releases ago.
   12379 
   12380 Improved error handling for the Field, IndexField, and BankField 
   12381 operators. 
   12382 The compiler now cleanly reports and recovers from errors in the field 
   12383 component (FieldUnit) list.
   12384 
   12385 Fixed a disassembler problem where the optional ResourceDescriptor fields 
   12386 TRS and TTP were not always handled correctly.
   12387 
   12388 Disassembler - Comments in output now use "//" instead of "/*"
   12389 
   12390 ----------------------------------------
   12391 28 February 2005.  Summary of changes for version 20050228:
   12392 
   12393 1) ACPI CA Core Subsystem:
   12394 
   12395 Fixed a problem where the result of an Index() operator (an object 
   12396 reference) must increment the reference count on the target object for 
   12397 the 
   12398 life of the object reference.
   12399 
   12400 Implemented AML Interpreter and Debugger support for the new ACPI 3.0 
   12401 Extended Address (IO, Memory, Space), QwordSpace, DwordSpace, and 
   12402 WordSpace 
   12403 resource descriptors.
   12404 
   12405 Implemented support in the _OSI method for the ACPI 3.0 "Extended Address 
   12406 Space Descriptor" string, indicating interpreter support for the 
   12407 descriptors 
   12408 above.
   12409 
   12410 Implemented header support for the new ACPI 3.0 FADT flag bits.
   12411 
   12412 Implemented header support for the new ACPI 3.0 PCI Express bits for the 
   12413 PM1 
   12414 status/enable registers.
   12415 
   12416 Updated header support for the MADT processor local Apic struct and MADT 
   12417 platform interrupt source struct for new ACPI 3.0 fields.
   12418 
   12419 Implemented header support for the SRAT and SLIT ACPI tables.
   12420 
   12421 Implemented the -s switch in AcpiExec to enable the "InterpreterSlack" 
   12422 flag 
   12423 at runtime.
   12424 
   12425 Code and Data Size: Current and previous core subsystem library sizes are 
   12426 shown below. These are the code and data sizes for the acpica.lib 
   12427 produced 
   12428 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   12429 any ACPI driver or OSPM code. The debug version of the code includes the 
   12430 debug output trace mechanism and has a much larger code and data size. 
   12431 Note 
   12432 that these values will vary depending on the efficiency of the compiler 
   12433 and 
   12434 the compiler options used during generation.
   12435 
   12436   Previous Release:
   12437     Non-Debug Version:  78.2K Code, 11.5K Data,  89.7K Total
   12438     Debug Version:     164.9K Code, 69.2K Data, 234.1K Total
   12439   Current Release:
   12440     Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
   12441     Debug Version:     165.4K Code, 69.6K Data, 236.0K Total
   12442 
   12443 
   12444 2) iASL Compiler/Disassembler:
   12445 
   12446 Fixed a problem with the internal 64-bit String-to-integer conversion 
   12447 with 
   12448 strings less than two characters long.
   12449 
   12450 Fixed a problem with constant folding where the result of the Index() 
   12451 operator can not be considered a constant. This means that Index() cannot 
   12452 be 
   12453 a type3 opcode and this will require an update to the ACPI specification.
   12454 
   12455 Disassembler: Implemented support for the TTP, MTP, and TRS resource 
   12456 descriptor fields. These fields were inadvertently ignored and not output 
   12457 in 
   12458 the disassembly of the resource descriptor.
   12459 
   12460 
   12461  ----------------------------------------
   12462 11 February 2005.  Summary of changes for version 20050211:
   12463 
   12464 1) ACPI CA Core Subsystem:
   12465 
   12466 Implemented ACPI 3.0 support for implicit conversion within the Match() 
   12467 operator. MatchObjects can now be of type integer, buffer, or string 
   12468 instead 
   12469 of just type integer.  Package elements are implicitly converted to the 
   12470 type 
   12471 of the MatchObject. This change aligns the behavior of Match() with the 
   12472 behavior of the other logical operators (LLess(), etc.) It also requires 
   12473 an 
   12474 errata change to the ACPI specification as this support was intended for 
   12475 ACPI 3.0, but was inadvertently omitted.
   12476 
   12477 Fixed a problem with the internal implicit "to buffer" conversion. 
   12478 Strings 
   12479 that are converted to buffers will cause buffer truncation if the string 
   12480 is 
   12481 smaller than the target buffer. Integers that are converted to buffers 
   12482 will 
   12483 not cause buffer truncation, only zero extension (both as per the ACPI 
   12484 spec.) The problem was introduced when code was added to truncate the 
   12485 buffer, but this should not be performed in all cases, only the string 
   12486 case.
   12487 
   12488 Fixed a problem with the Buffer and Package operators where the 
   12489 interpreter 
   12490 would get confused if two such operators were used as operands to an ASL 
   12491 operator (such as LLess(Buffer(1){0},Buffer(1){1}). The internal result 
   12492 stack was not being popped after the execution of these operators, 
   12493 resulting 
   12494 in an AE_NO_RETURN_VALUE exception.
   12495 
   12496 Fixed a problem with constructs of the form Store(Index(...),...). The 
   12497 reference object returned from Index was inadvertently resolved to an 
   12498 actual 
   12499 value. This problem was introduced in version 20050114 when the behavior 
   12500 of 
   12501 Store() was modified to restrict the object types that can be used as the 
   12502 source operand (to match the ACPI specification.)
   12503 
   12504 Reduced excessive stack use within the AcpiGetObjectInfo procedure.
   12505 
   12506 Added a fix to aclinux.h to allow generation of AcpiExec on Linux.
   12507 
   12508 Updated the AcpiSrc utility to add the FADT_DESCRIPTOR_REV2_MINUS struct.
   12509 
   12510 Code and Data Size: Current and previous core subsystem library sizes are 
   12511 shown below. These are the code and data sizes for the acpica.lib 
   12512 produced 
   12513 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   12514 any ACPI driver or OSPM code. The debug version of the code includes the 
   12515 debug output trace mechanism and has a much larger code and data size. 
   12516 Note 
   12517 that these values will vary depending on the efficiency of the compiler 
   12518 and 
   12519 the compiler options used during generation.
   12520 
   12521   Previous Release:
   12522     Non-Debug Version:  78.1K Code, 11.5K Data,  89.6K Total
   12523     Debug Version:     164.8K Code, 69.2K Data, 234.0K Total
   12524   Current Release:
   12525     Non-Debug Version:  78.2K Code, 11.5K Data,  89.7K Total
   12526     Debug Version:     164.9K Code, 69.2K Data, 234.1K Total
   12527 
   12528 
   12529 2) iASL Compiler/Disassembler:
   12530 
   12531 Fixed a code generation problem in the constant folding optimization code 
   12532 where incorrect code was generated if a constant was reduced to a buffer 
   12533 object (i.e., a reduced type 5 opcode.)
   12534 
   12535 Fixed a typechecking problem for the ToBuffer operator. Caused by an 
   12536 incorrect return type in the internal opcode information table.
   12537 
   12538 ----------------------------------------
   12539 25 January 2005.  Summary of changes for version 20050125:
   12540 
   12541 1) ACPI CA Core Subsystem:
   12542 
   12543 Fixed a recently introduced problem with the Global Lock where the 
   12544 underlying semaphore was not created.  This problem was introduced in 
   12545 version 20050114, and caused an AE_AML_NO_OPERAND exception during an 
   12546 Acquire() operation on _GL.
   12547 
   12548 The local object cache is now optional, and is disabled by default. Both 
   12549 AcpiExec and the iASL compiler enable the cache because they run in user 
   12550 mode and this enhances their performance. #define 
   12551 ACPI_ENABLE_OBJECT_CACHE 
   12552 to enable the local cache.
   12553 
   12554 Fixed an issue in the internal function AcpiUtEvaluateObject concerning 
   12555 the 
   12556 optional "implicit return" support where an error was returned if no 
   12557 return 
   12558 object was expected, but one was implicitly returned. AE_OK is now 
   12559 returned 
   12560 in this case and the implicitly returned object is deleted. 
   12561 AcpiUtEvaluateObject is only occasionally used, and only to execute 
   12562 reserved 
   12563 methods such as _STA and _INI where the return type is known up front.
   12564 
   12565 Fixed a few issues with the internal convert-to-integer code. It now 
   12566 returns 
   12567 an error if an attempt is made to convert a null string, a string of only 
   12568 blanks/tabs, or a zero-length buffer. This affects both implicit 
   12569 conversion 
   12570 and explicit conversion via the ToInteger() operator.
   12571 
   12572 The internal debug code in AcpiUtAcquireMutex has been commented out. It 
   12573 is 
   12574 not needed for normal operation and should increase the performance of 
   12575 the 
   12576 entire subsystem. The code remains in case it is needed for debug 
   12577 purposes 
   12578 again.
   12579 
   12580 The AcpiExec source and makefile are included in the Unix/Linux package 
   12581 for 
   12582 the first time.
   12583 
   12584 Code and Data Size: Current and previous core subsystem library sizes are 
   12585 shown below. These are the code and data sizes for the acpica.lib 
   12586 produced 
   12587 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   12588 any ACPI driver or OSPM code. The debug version of the code includes the 
   12589 debug output trace mechanism and has a much larger code and data size. 
   12590 Note 
   12591 that these values will vary depending on the efficiency of the compiler 
   12592 and 
   12593 the compiler options used during generation.
   12594 
   12595   Previous Release:
   12596     Non-Debug Version:  78.4K Code,  11.5K Data,   89.9K Total
   12597     Debug Version:     165.4K Code,  69.4K Data,  234.8K Total
   12598   Current Release:
   12599     Non-Debug Version:  78.1K Code,  11.5K Data,   89.6K Total
   12600     Debug Version:     164.8K Code,  69.2K Data,  234.0K Total
   12601 
   12602 2) iASL Compiler/Disassembler:
   12603 
   12604 Switch/Case support: A warning is now issued if the type of the Switch 
   12605 value 
   12606 cannot be determined at compile time. For example, Switch(Arg0) will 
   12607 generate the warning, and the type is assumed to be an integer. As per 
   12608 the 
   12609 ACPI spec, use a construct such as Switch(ToInteger(Arg0)) to eliminate 
   12610 the 
   12611 warning.
   12612 
   12613 Switch/Case support: Implemented support for buffer and string objects as 
   12614 the switch value.  This is an ACPI 3.0 feature, now that LEqual supports 
   12615 buffers and strings.
   12616 
   12617 Switch/Case support: The emitted code for the LEqual() comparisons now 
   12618 uses 
   12619 the switch value as the first operand, not the second. The case value is 
   12620 now 
   12621 the second operand, and this allows the case value to be implicitly 
   12622 converted to the type of the switch value, not the other way around.
   12623 
   12624 Switch/Case support: Temporary variables are now emitted immediately 
   12625 within 
   12626 the control method, not at the global level. This means that there are 
   12627 now 
   12628 36 temps available per-method, not 36 temps per-module as was the case 
   12629 with 
   12630 the earlier implementation (_T_0 through _T_9 and _T_A through _T_Z.)
   12631 
   12632 ----------------------------------------
   12633 14 January 2005.  Summary of changes for version 20050114:
   12634 
   12635 Added 2005 copyright to all module headers.  This affects every module in 
   12636 the core subsystem, iASL compiler, and the utilities.
   12637 
   12638 1) ACPI CA Core Subsystem:
   12639 
   12640 Fixed an issue with the String-to-Buffer conversion code where the string 
   12641 null terminator was not included in the buffer after conversion, but 
   12642 there 
   12643 is existing ASL that assumes the string null terminator is included. This 
   12644 is 
   12645 the root of the ACPI_AML_BUFFER_LIMIT regression. This problem was 
   12646 introduced in the previous version when the code was updated to correctly 
   12647 set the converted buffer size as per the ACPI specification. The ACPI 
   12648 spec 
   12649 is ambiguous and will be updated to specify that the null terminator must 
   12650 be 
   12651 included in the converted buffer. This also affects the ToBuffer() ASL 
   12652 operator.
   12653 
   12654 Fixed a problem with the Mid() ASL/AML operator where it did not work 
   12655 correctly on Buffer objects. Newly created sub-buffers were not being 
   12656 marked 
   12657 as initialized.
   12658 
   12659 
   12660 Fixed a problem in AcpiTbFindTable where incorrect string compares were 
   12661 performed on the OemId and OemTableId table header fields.  These fields 
   12662 are 
   12663 not null terminated, so strncmp is now used instead of strcmp.
   12664 
   12665 Implemented a restriction on the Store() ASL/AML operator to align the 
   12666 behavior with the ACPI specification.  Previously, any object could be 
   12667 used 
   12668 as the source operand.  Now, the only objects that may be used are 
   12669 Integers, 
   12670 Buffers, Strings, Packages, Object References, and DDB Handles.  If 
   12671 necessary, the original behavior can be restored by enabling the 
   12672 EnableInterpreterSlack flag.
   12673 
   12674 Enhanced the optional "implicit return" support to allow an implicit 
   12675 return 
   12676 value from methods that are invoked externally via the AcpiEvaluateObject 
   12677 interface.  This enables implicit returns from the _STA and _INI methods, 
   12678 for example.
   12679 
   12680 Changed the Revision() ASL/AML operator to return the current version of 
   12681 the 
   12682 AML interpreter, in the YYYYMMDD format. Previously, it incorrectly 
   12683 returned 
   12684 the supported ACPI version (This is the function of the _REV method).
   12685 
   12686 Updated the _REV predefined method to return the currently supported 
   12687 version 
   12688 of ACPI, now 3.
   12689 
   12690 Implemented batch mode option for the AcpiExec utility (-b).
   12691 
   12692 Code and Data Size: Current and previous core subsystem library sizes are 
   12693 shown below. These are the code and data sizes for the acpica.lib 
   12694 produced 
   12695 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   12696 any ACPI driver or OSPM code. The debug version of the code includes the 
   12697 debug output trace mechanism and has a much larger code and data size. 
   12698 Note 
   12699 that these values will vary depending on the efficiency of the compiler 
   12700 and 
   12701 the compiler options used during generation.
   12702 
   12703   Previous Release:
   12704     Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
   12705     Debug Version:     165.3K Code,  69.4K Data,  234.7K Total
   12706   Current Release:
   12707     Non-Debug Version:  78.4K Code,  11.5K Data,   89.9K Total
   12708     Debug Version:     165.4K Code,  69.4K Data,  234.8K Total
   12709 
   12710 ----------------------------------------
   12711 10 December 2004.  Summary of changes for version 20041210:
   12712 
   12713 ACPI 3.0 support is nearing completion in both the iASL compiler and the 
   12714 ACPI CA core subsystem.
   12715 
   12716 1) ACPI CA Core Subsystem:
   12717 
   12718 Fixed a problem in the ToDecimalString operator where the resulting 
   12719 string 
   12720 length was incorrectly calculated. The length is now calculated exactly, 
   12721 eliminating incorrect AE_STRING_LIMIT exceptions.
   12722 
   12723 Fixed a problem in the ToHexString operator to allow a maximum 200 
   12724 character 
   12725 string to be produced.
   12726 
   12727 Fixed a problem in the internal string-to-buffer and buffer-to-buffer 
   12728 copy 
   12729 routine where the length of the resulting buffer was not truncated to the 
   12730 new size (if the target buffer already existed).
   12731 
   12732 Code and Data Size: Current and previous core subsystem library sizes are 
   12733 shown below. These are the code and data sizes for the acpica.lib 
   12734 produced 
   12735 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   12736 any ACPI driver or OSPM code. The debug version of the code includes the 
   12737 debug output trace mechanism and has a much larger code and data size. 
   12738 Note 
   12739 that these values will vary depending on the efficiency of the compiler 
   12740 and 
   12741 the compiler options used during generation.
   12742 
   12743   Previous Release:
   12744     Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
   12745     Debug Version:     164.7K Code,  68.5K Data,  233.2K Total
   12746   Current Release:
   12747     Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
   12748     Debug Version:     165.3K Code,  69.4K Data,  234.7K Total
   12749 
   12750 
   12751 2) iASL Compiler/Disassembler:
   12752 
   12753 Implemented the new ACPI 3.0 resource template macros - DWordSpace, 
   12754 ExtendedIO, ExtendedMemory, ExtendedSpace, QWordSpace, and WordSpace. 
   12755 Includes support in the disassembler.
   12756 
   12757 Implemented support for the new (ACPI 3.0) parameter to the Register 
   12758 macro, 
   12759 AccessSize.
   12760 
   12761 Fixed a problem where the _HE resource name for the Interrupt macro was 
   12762 referencing bit 0 instead of bit 1.
   12763 
   12764 Implemented check for maximum 255 interrupts in the Interrupt macro.
   12765 
   12766 Fixed a problem with the predefined resource descriptor names where 
   12767 incorrect AML code was generated if the offset within the resource buffer 
   12768 was 0 or 1.  The optimizer shortened the AML code to a single byte opcode 
   12769 but did not update the surrounding package lengths.
   12770 
   12771 Changes to the Dma macro:  All channels within the channel list must be 
   12772 in 
   12773 the range 0-7.  Maximum 8 channels can be specified. BusMaster operand is 
   12774 optional (default is BusMaster).
   12775 
   12776 Implemented check for maximum 7 data bytes for the VendorShort macro.
   12777 
   12778 The ReadWrite parameter is now optional for the Memory32 and similar 
   12779 macros.
   12780 
   12781 ----------------------------------------
   12782 03 December 2004.  Summary of changes for version 20041203:
   12783 
   12784 1) ACPI CA Core Subsystem:
   12785 
   12786 The low-level field insertion/extraction code (exfldio) has been 
   12787 completely 
   12788 rewritten to eliminate unnecessary complexity, bugs, and boundary 
   12789 conditions.
   12790 
   12791 Fixed a problem in the ToInteger, ToBuffer, ToHexString, and 
   12792 ToDecimalString 
   12793 operators where the input operand could be inadvertently deleted if no 
   12794 conversion was necessary (e.g., if the input to ToInteger was an Integer 
   12795 object.)
   12796 
   12797 Fixed a problem with the ToDecimalString and ToHexString where an 
   12798 incorrect 
   12799 exception code was returned if the resulting string would be > 200 chars.  
   12800 AE_STRING_LIMIT is now returned.
   12801 
   12802 Fixed a problem with the Concatenate operator where AE_OK was always 
   12803 returned, even if the operation failed.
   12804 
   12805 Fixed a problem in oswinxf (used by AcpiExec and iASL) to allow > 128 
   12806 semaphores to be allocated.
   12807 
   12808 Code and Data Size: Current and previous core subsystem library sizes are 
   12809 shown below. These are the code and data sizes for the acpica.lib 
   12810 produced 
   12811 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   12812 any ACPI driver or OSPM code. The debug version of the code includes the 
   12813 debug output trace mechanism and has a much larger code and data size. 
   12814 Note 
   12815 that these values will vary depending on the efficiency of the compiler 
   12816 and 
   12817 the compiler options used during generation.
   12818 
   12819   Previous Release:
   12820     Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
   12821     Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
   12822   Current Release:
   12823     Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
   12824     Debug Version:     164.7K Code,  68.5K Data,  233.2K Total
   12825 
   12826 
   12827 2) iASL Compiler/Disassembler:
   12828 
   12829 Fixed typechecking for the ObjectType and SizeOf operators.  Problem was 
   12830 recently introduced in 20041119.
   12831 
   12832 Fixed a problem with the ToUUID macro where the upper nybble of each 
   12833 buffer 
   12834 byte was inadvertently set to zero.
   12835 
   12836 ----------------------------------------
   12837 19 November 2004.  Summary of changes for version 20041119:
   12838 
   12839 1) ACPI CA Core Subsystem:
   12840 
   12841 Fixed a problem in the internal ConvertToInteger routine where new 
   12842 integers 
   12843 were not truncated to 32 bits for 32-bit ACPI tables. This routine 
   12844 converts 
   12845 buffers and strings to integers.
   12846 
   12847 Implemented support to store a value to an Index() on a String object. 
   12848 This 
   12849 is an ACPI 2.0 feature that had not yet been implemented.
   12850 
   12851 Implemented new behavior for storing objects to individual package 
   12852 elements 
   12853 (via the Index() operator). The previous behavior was to invoke the 
   12854 implicit 
   12855 conversion rules if an object was already present at the index.  The new 
   12856 behavior is to simply delete any existing object and directly store the 
   12857 new 
   12858 object. Although the ACPI specification seems unclear on this subject, 
   12859 other 
   12860 ACPI implementations behave in this manner.  (This is the root of the 
   12861 AE_BAD_HEX_CONSTANT issue.)
   12862 
   12863 Modified the RSDP memory scan mechanism to support the extended checksum 
   12864 for 
   12865 ACPI 2.0 (and above) RSDPs. Note that the search continues until a valid 
   12866 RSDP signature is found with a valid checksum.
   12867 
   12868 Code and Data Size: Current and previous core subsystem library sizes are 
   12869 shown below. These are the code and data sizes for the acpica.lib 
   12870 produced 
   12871 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   12872 any ACPI driver or OSPM code. The debug version of the code includes the 
   12873 debug output trace mechanism and has a much larger code and data size. 
   12874 Note 
   12875 that these values will vary depending on the efficiency of the compiler 
   12876 and 
   12877 the compiler options used during generation.
   12878 
   12879   Previous Release:
   12880     Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
   12881     Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
   12882   Current Release:
   12883     Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
   12884     Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
   12885 
   12886 
   12887 2) iASL Compiler/Disassembler:
   12888 
   12889 Fixed a missing semicolon in the aslcompiler.y file.
   12890 
   12891 ----------------------------------------
   12892 05 November 2004.  Summary of changes for version 20041105:
   12893 
   12894 1) ACPI CA Core Subsystem:
   12895 
   12896 Implemented support for FADT revision 2.  This was an interim table 
   12897 (between 
   12898 ACPI 1.0 and ACPI 2.0) that adds support for the FADT reset register.
   12899 
   12900 Implemented optional support to allow uninitialized LocalX and ArgX 
   12901 variables in a control method.  The variables are initialized to an 
   12902 Integer 
   12903 object with a value of zero.  This support is enabled by setting the 
   12904 AcpiGbl_EnableInterpreterSlack flag to TRUE.
   12905 
   12906 Implemented support for Integer objects for the SizeOf operator.  Either 
   12907 4 
   12908 or 8 is returned, depending on the current integer size (32-bit or 64-
   12909 bit, 
   12910 depending on the parent table revision).
   12911 
   12912 Fixed a problem in the implementation of the SizeOf and ObjectType 
   12913 operators 
   12914 where the operand was resolved to a value too early, causing incorrect 
   12915 return values for some objects.
   12916 
   12917 Fixed some possible memory leaks during exceptional conditions.
   12918 
   12919 Code and Data Size: Current and previous core subsystem library sizes are 
   12920 shown below. These are the code and data sizes for the acpica.lib 
   12921 produced 
   12922 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   12923 any ACPI driver or OSPM code. The debug version of the code includes the 
   12924 debug output trace mechanism and has a much larger code and data size. 
   12925 Note 
   12926 that these values will vary depending on the efficiency of the compiler 
   12927 and 
   12928 the compiler options used during generation.
   12929 
   12930   Previous Release:
   12931     Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
   12932     Debug Version:     164.8K Code,  68.6K Data,  233.4K Total
   12933   Current Release:
   12934     Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
   12935     Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
   12936 
   12937 
   12938 2) iASL Compiler/Disassembler:
   12939 
   12940 Implemented support for all ACPI 3.0 reserved names and methods.
   12941 
   12942 Implemented all ACPI 3.0 grammar elements in the front-end, including 
   12943 support for semicolons.
   12944 
   12945 Implemented the ACPI 3.0 Function() and ToUUID() macros
   12946 
   12947 Fixed a problem in the disassembler where a Scope() operator would not be 
   12948 emitted properly if the target of the scope was in another table.
   12949 
   12950 ----------------------------------------
   12951 15 October 2004.  Summary of changes for version 20041015:
   12952 
   12953 Note:  ACPI CA is currently undergoing an in-depth and complete formal 
   12954 evaluation to test/verify the following areas. Other suggestions are 
   12955 welcome. This will result in an increase in the frequency of releases and 
   12956 the number of bug fixes in the next few months.
   12957   - Functional tests for all ASL/AML operators
   12958   - All implicit/explicit type conversions
   12959   - Bit fields and operation regions
   12960   - 64-bit math support and 32-bit-only "truncated" math support
   12961   - Exceptional conditions, both compiler and interpreter
   12962   - Dynamic object deletion and memory leaks
   12963   - ACPI 3.0 support when implemented
   12964   - External interfaces to the ACPI subsystem
   12965 
   12966 
   12967 1) ACPI CA Core Subsystem:
   12968 
   12969 Fixed two alignment issues on 64-bit platforms - within debug statements 
   12970 in 
   12971 AcpiEvGpeDetect and AcpiEvCreateGpeBlock. Removed references to the 
   12972 Address 
   12973 field within the non-aligned ACPI generic address structure.
   12974 
   12975 Fixed a problem in the Increment and Decrement operators where incorrect 
   12976 operand resolution could result in the inadvertent modification of the 
   12977 original integer when the integer is passed into another method as an 
   12978 argument and the arg is then incremented/decremented.
   12979 
   12980 Fixed a problem in the FromBCD operator where the upper 32-bits of a 64-
   12981 bit 
   12982 BCD number were truncated during conversion.
   12983 
   12984 Fixed a problem in the ToDecimal operator where the length of the 
   12985 resulting 
   12986 string could be set incorrectly too long if the input operand was a 
   12987 Buffer 
   12988 object.
   12989 
   12990 Fixed a problem in the Logical operators (LLess, etc.) where a NULL byte 
   12991 (0) 
   12992 within a buffer would prematurely terminate a compare between buffer 
   12993 objects.
   12994 
   12995 Added a check for string overflow (>200 characters as per the ACPI 
   12996 specification) during the Concatenate operator with two string operands.
   12997 
   12998 Code and Data Size: Current and previous core subsystem library sizes are 
   12999 shown below. These are the code and data sizes for the acpica.lib 
   13000 produced 
   13001 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13002 any ACPI driver or OSPM code. The debug version of the code includes the 
   13003 debug output trace mechanism and has a much larger code and data size. 
   13004 Note 
   13005 that these values will vary depending on the efficiency of the compiler 
   13006 and 
   13007 the compiler options used during generation.
   13008 
   13009   Previous Release:
   13010     Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
   13011     Debug Version:     164.6K Code,  68.5K Data,  233.1K Total
   13012   Current Release:
   13013     Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
   13014     Debug Version:     164.8K Code,  68.6K Data,  233.4K Total
   13015 
   13016 
   13017 
   13018 2) iASL Compiler/Disassembler:
   13019 
   13020 Allow the use of the ObjectType operator on uninitialized Locals and Args 
   13021 (returns 0 as per the ACPI specification).
   13022 
   13023 Fixed a problem where the compiler would fault if there was a syntax 
   13024 error 
   13025 in the FieldName of all of the various CreateXXXField operators.
   13026 
   13027 Disallow the use of lower case letters within the EISAID macro, as per 
   13028 the 
   13029 ACPI specification.  All EISAID strings must be of the form "UUUNNNN" 
   13030 Where 
   13031 U is an uppercase letter and N is a hex digit.
   13032 
   13033 
   13034 ----------------------------------------
   13035 06 October 2004.  Summary of changes for version 20041006:
   13036 
   13037 1) ACPI CA Core Subsystem:
   13038 
   13039 Implemented support for the ACPI 3.0 Timer operator. This ASL function 
   13040 implements a 64-bit timer with 100 nanosecond granularity.
   13041 
   13042 Defined a new OSL interface, AcpiOsGetTimer. This interface is used to 
   13043 implement the ACPI 3.0 Timer operator.  This allows the host OS to 
   13044 implement 
   13045 the timer with the best clock available. Also, it keeps the core 
   13046 subsystem 
   13047 out of the clock handling business, since the host OS (usually) performs 
   13048 this function.
   13049 
   13050 Fixed an alignment issue on 64-bit platforms. The HwLowLevelRead(Write) 
   13051 functions use a 64-bit address which is part of the packed ACPI Generic 
   13052 Address Structure. Since the structure is non-aligned, the alignment 
   13053 macros 
   13054 are now used to extract the address to a local variable before use.
   13055 
   13056 Fixed a problem where the ToInteger operator assumed all input strings 
   13057 were 
   13058 hexadecimal. The operator now handles both decimal strings and hex 
   13059 strings 
   13060 (prefixed with "0x").
   13061 
   13062 Fixed a problem where the string length in the string object created as a 
   13063 result of the internal ConvertToString procedure could be incorrect. This 
   13064 potentially affected all implicit conversions and also the 
   13065 ToDecimalString 
   13066 and ToHexString operators.
   13067 
   13068 Fixed two problems in the ToString operator. If the length parameter was 
   13069 zero, an incorrect string object was created and the value of the input 
   13070 length parameter was inadvertently changed from zero to Ones.
   13071 
   13072 Fixed a problem where the optional ResourceSource string in the 
   13073 ExtendedIRQ 
   13074 resource macro was ignored.
   13075 
   13076 Simplified the interfaces to the internal division functions, reducing 
   13077 code 
   13078 size and complexity.
   13079 
   13080 Code and Data Size: Current and previous core subsystem library sizes are 
   13081 shown below. These are the code and data sizes for the acpica.lib 
   13082 produced 
   13083 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13084 any ACPI driver or OSPM code. The debug version of the code includes the 
   13085 debug output trace mechanism and has a much larger code and data size. 
   13086 Note 
   13087 that these values will vary depending on the efficiency of the compiler 
   13088 and 
   13089 the compiler options used during generation.
   13090 
   13091   Previous Release:
   13092     Non-Debug Version:  77.9K Code,  11.4K Data,   89.3K Total
   13093     Debug Version:     164.5K Code,  68.3K Data,  232.8K Total
   13094   Current Release:
   13095     Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
   13096     Debug Version:     164.6K Code,  68.5K Data,  233.1K Total
   13097 
   13098 
   13099 2) iASL Compiler/Disassembler:
   13100 
   13101 Implemented support for the ACPI 3.0 Timer operator.
   13102 
   13103 Fixed a problem where the Default() operator was inadvertently ignored in 
   13104 a 
   13105 Switch/Case block.  This was a problem in the translation of the Switch 
   13106 statement to If...Else pairs.
   13107 
   13108 Added support to allow a standalone Return operator, with no parentheses 
   13109 (or 
   13110 operands).
   13111 
   13112 Fixed a problem with code generation for the ElseIf operator where the 
   13113 translated Else...If parse tree was improperly constructed leading to the 
   13114 loss of some code.
   13115 
   13116 ----------------------------------------
   13117 22 September 2004.  Summary of changes for version 20040922:
   13118 
   13119 1) ACPI CA Core Subsystem:
   13120 
   13121 Fixed a problem with the implementation of the LNot() operator where 
   13122 "Ones" 
   13123 was not returned for the TRUE case. Changed the code to return Ones 
   13124 instead 
   13125 of (!Arg) which was usually 1. This change affects iASL constant folding 
   13126 for 
   13127 this operator also.
   13128 
   13129 Fixed a problem in AcpiUtInitializeBuffer where an existing buffer was 
   13130 not 
   13131 initialized properly -- Now zero the entire buffer in this case where the 
   13132 buffer already exists.
   13133 
   13134 Changed the interface to AcpiOsSleep from (UINT32 Seconds, UINT32 
   13135 Milliseconds) to simply (ACPI_INTEGER Milliseconds). This simplifies all 
   13136 related code considerably. This will require changes/updates to all OS 
   13137 interface layers (OSLs.)
   13138 
   13139 Implemented a new external interface, AcpiInstallExceptionHandler, to 
   13140 allow 
   13141 a system exception handler to be installed. This handler is invoked upon 
   13142 any 
   13143 run-time exception that occurs during control method execution.
   13144 
   13145 Added support for the DSDT in AcpiTbFindTable. This allows the 
   13146 DataTableRegion() operator to access the local copy of the DSDT.
   13147 
   13148 Code and Data Size: Current and previous core subsystem library sizes are 
   13149 shown below. These are the code and data sizes for the acpica.lib 
   13150 produced 
   13151 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13152 any ACPI driver or OSPM code. The debug version of the code includes the 
   13153 debug output trace mechanism and has a much larger code and data size. 
   13154 Note 
   13155 that these values will vary depending on the efficiency of the compiler 
   13156 and 
   13157 the compiler options used during generation.
   13158 
   13159   Previous Release:
   13160     Non-Debug Version:  77.8K Code,  11.4K Data,   89.2K Total
   13161     Debug Version:     164.2K Code,  68.2K Data,  232.4K Total
   13162   Current Release:
   13163     Non-Debug Version:  77.9K Code,  11.4K Data,   89.3K Total
   13164     Debug Version:     164.5K Code,  68.3K Data,  232.8K Total
   13165 
   13166 
   13167 2) iASL Compiler/Disassembler:
   13168 
   13169 Fixed a problem with constant folding and the LNot operator. LNot was 
   13170 returning 1 in the TRUE case, not Ones as per the ACPI specification. 
   13171 This 
   13172 could result in the generation of an incorrect folded/reduced constant.
   13173 
   13174 End-Of-File is now allowed within a "//"-style comment.  A parse error no 
   13175 longer occurs if such a comment is at the very end of the input ASL 
   13176 source 
   13177 file.
   13178 
   13179 Implemented the "-r" option to override the Revision in the table header. 
   13180 The initial use of this option will be to simplify the evaluation of the 
   13181 AML 
   13182 interpreter by allowing a single ASL source module to be compiled for 
   13183 either 
   13184 32-bit or 64-bit integers.
   13185 
   13186 
   13187 ----------------------------------------
   13188 27 August 2004.  Summary of changes for version 20040827:
   13189 
   13190 1) ACPI CA Core Subsystem:
   13191 
   13192 - Implemented support for implicit object conversion in the non-numeric 
   13193 logical operators (LEqual, LGreater, LGreaterEqual, LLess, LLessEqual, 
   13194 and 
   13195 LNotEqual.)  Any combination of Integers/Strings/Buffers may now be used; 
   13196 the second operand is implicitly converted on the fly to match the type 
   13197 of 
   13198 the first operand.  For example:
   13199 
   13200     LEqual (Source1, Source2)
   13201 
   13202 Source1 and Source2 must each evaluate to an integer, a string, or a 
   13203 buffer. 
   13204 The data type of Source1 dictates the required type of Source2. Source2 
   13205 is 
   13206 implicitly converted if necessary to match the type of Source1.
   13207 
   13208 - Updated and corrected the behavior of the string conversion support.  
   13209 The 
   13210 rules concerning conversion of buffers to strings (according to the ACPI 
   13211 specification) are as follows:
   13212 
   13213 ToDecimalString - explicit byte-wise conversion of buffer to string of 
   13214 decimal values (0-255) separated by commas. ToHexString - explicit byte-
   13215 wise 
   13216 conversion of buffer to string of hex values (0-FF) separated by commas. 
   13217 ToString - explicit byte-wise conversion of buffer to string.  Byte-by-
   13218 byte 
   13219 copy with no transform except NULL terminated. Any other implicit buffer-
   13220 to-
   13221 string conversion - byte-wise conversion of buffer to string of hex 
   13222 values 
   13223 (0-FF) separated by spaces.
   13224 
   13225 - Fixed typo in definition of AcpiGbl_EnableInterpreterSlack.
   13226 
   13227 - Fixed a problem in AcpiNsGetPathnameLength where the returned length 
   13228 was 
   13229 one byte too short in the case of a node in the root scope.  This could 
   13230 cause a fault during debug output.
   13231 
   13232 - Code and Data Size: Current and previous core subsystem library sizes 
   13233 are 
   13234 shown below.  These are the code and data sizes for the acpica.lib 
   13235 produced 
   13236 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13237 any ACPI driver or OSPM code.  The debug version of the code includes the 
   13238 debug output trace mechanism and has a much larger code and data size.  
   13239 Note 
   13240 that these values will vary depending on the efficiency of the compiler 
   13241 and 
   13242 the compiler options used during generation.
   13243 
   13244   Previous Release:
   13245     Non-Debug Version:  77.9K Code,  11.5K Data,   89.4K Total
   13246     Debug Version:     164.1K Code,  68.3K Data,  232.4K Total
   13247   Current Release:
   13248     Non-Debug Version:  77.8K Code,  11.4K Data,   89.2K Total
   13249     Debug Version:     164.2K Code,  68.2K Data,  232.4K Total
   13250 
   13251 
   13252 2) iASL Compiler/Disassembler:
   13253 
   13254 - Fixed a Linux generation error.
   13255 
   13256 
   13257 ----------------------------------------
   13258 16 August 2004.  Summary of changes for version 20040816:
   13259 
   13260 1) ACPI CA Core Subsystem:
   13261 
   13262 Designed and implemented support within the AML interpreter for the so-
   13263 called "implicit return".  This support returns the result of the last 
   13264 ASL 
   13265 operation within a control method, in the absence of an explicit Return() 
   13266 operator.  A few machines depend on this behavior, even though it is not 
   13267 explicitly supported by the ASL language.  It is optional support that 
   13268 can 
   13269 be enabled at runtime via the AcpiGbl_EnableInterpreterSlack flag.
   13270 
   13271 Removed support for the PCI_Config address space from the internal low 
   13272 level 
   13273 hardware interfaces (AcpiHwLowLevelRead and AcpiHwLowLevelWrite).  This 
   13274 support was not used internally, and would not work correctly anyway 
   13275 because 
   13276 the PCI bus number and segment number were not supported.  There are 
   13277 separate interfaces for PCI configuration space access because of the 
   13278 unique 
   13279 interface.
   13280 
   13281 Code and Data Size: Current and previous core subsystem library sizes are 
   13282 shown below.  These are the code and data sizes for the acpica.lib 
   13283 produced 
   13284 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13285 any ACPI driver or OSPM code.  The debug version of the code includes the 
   13286 debug output trace mechanism and has a much larger code and data size.  
   13287 Note 
   13288 that these values will vary depending on the efficiency of the compiler 
   13289 and 
   13290 the compiler options used during generation.
   13291 
   13292   Previous Release:
   13293     Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
   13294     Debug Version:     164.1K Code,  68.2K Data,  232.3K Total
   13295   Current Release:
   13296     Non-Debug Version:  77.9K Code,  11.5K Data,   89.4K Total
   13297     Debug Version:     164.1K Code,  68.3K Data,  232.4K Total
   13298 
   13299 
   13300 2) iASL Compiler/Disassembler:
   13301 
   13302 Fixed a problem where constants in ASL expressions at the root level (not 
   13303 within a control method) could be inadvertently truncated during code 
   13304 generation.  This problem was introduced in the 20040715 release.
   13305 
   13306 
   13307 ----------------------------------------
   13308 15 July 2004.  Summary of changes for version 20040715:
   13309 
   13310 1) ACPI CA Core Subsystem:
   13311 
   13312 Restructured the internal HW GPE interfaces to pass/track the current 
   13313 state 
   13314 of interrupts (enabled/disabled) in order to avoid possible deadlock and 
   13315 increase flexibility of the interfaces.
   13316 
   13317 Implemented a "lexicographical compare" for String and Buffer objects 
   13318 within 
   13319 the logical operators -- LGreater, LLess, LGreaterEqual, and LLessEqual -
   13320 - 
   13321 as per further clarification to the ACPI specification.  Behavior is 
   13322 similar 
   13323 to C library "strcmp".
   13324 
   13325 Completed a major reduction in CPU stack use for the AcpiGetFirmwareTable 
   13326 external function.  In the 32-bit non-debug case, the stack use has been 
   13327 reduced from 168 bytes to 32 bytes.
   13328 
   13329 Deployed a new run-time configuration flag, 
   13330 AcpiGbl_EnableInterpreterSlack, 
   13331 whose purpose is to allow the AML interpreter to forgive certain bad AML 
   13332 constructs.  Default setting is FALSE.
   13333 
   13334 Implemented the first use of AcpiGbl_EnableInterpreterSlack in the Field 
   13335 IO 
   13336 support code.  If enabled, it allows field access to go beyond the end of 
   13337 a 
   13338 region definition if the field is within the region length rounded up to 
   13339 the 
   13340 next access width boundary (a common coding error.)
   13341 
   13342 Renamed OSD_HANDLER to ACPI_OSD_HANDLER, and OSD_EXECUTION_CALLBACK to 
   13343 ACPI_OSD_EXEC_CALLBACK for consistency with other ACPI symbols.  Also, 
   13344 these 
   13345 symbols are lowercased by the latest version of the AcpiSrc tool.
   13346 
   13347 The prototypes for the PCI interfaces in acpiosxf.h have been updated to 
   13348 rename "Register" to simply "Reg" to prevent certain compilers from 
   13349 complaining.
   13350 
   13351 Code and Data Size: Current and previous core subsystem library sizes are 
   13352 shown below.  These are the code and data sizes for the acpica.lib 
   13353 produced 
   13354 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13355 any ACPI driver or OSPM code.  The debug version of the code includes the 
   13356 debug output trace mechanism and has a much larger code and data size.  
   13357 Note 
   13358 that these values will vary depending on the efficiency of the compiler 
   13359 and 
   13360 the compiler options used during generation.
   13361 
   13362   Previous Release:
   13363     Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
   13364     Debug Version:     163.8K Code,  68.2K Data,  232.0K Total
   13365   Current Release:
   13366     Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
   13367     Debug Version:     164.1K Code,  68.2K Data,  232.3K Total
   13368 
   13369 
   13370 2) iASL Compiler/Disassembler:
   13371 
   13372 Implemented full support for Package objects within the Case() operator.  
   13373 Note: The Break() operator is currently not supported within Case blocks 
   13374 (TermLists) as there is some question about backward compatibility with 
   13375 ACPI 
   13376 1.0 interpreters.
   13377 
   13378 
   13379 Fixed a problem where complex terms were not supported properly within 
   13380 the 
   13381 Switch() operator.
   13382 
   13383 Eliminated extraneous warning for compiler-emitted reserved names of the 
   13384 form "_T_x".  (Used in Switch/Case operators.)
   13385 
   13386 Eliminated optimization messages for "_T_x" objects and small constants 
   13387 within the DefinitionBlock operator.
   13388 
   13389 
   13390 ----------------------------------------
   13391 15 June 2004.  Summary of changes for version 20040615:
   13392 
   13393 1) ACPI CA Core Subsystem:
   13394 
   13395 Implemented support for Buffer and String objects (as per ACPI 2.0) for 
   13396 the 
   13397 following ASL operators:  LEqual, LGreater, LLess, LGreaterEqual, and 
   13398 LLessEqual.
   13399 
   13400 All directory names in the entire source package are lower case, as they 
   13401 were in earlier releases.
   13402 
   13403 Implemented "Disassemble" command in the AML debugger that will 
   13404 disassemble 
   13405 a single control method.
   13406 
   13407 Code and Data Size: Current and previous core subsystem library sizes are 
   13408 shown below.  These are the code and data sizes for the acpica.lib 
   13409 produced 
   13410 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13411 any ACPI driver or OSPM code.  The debug version of the code includes the 
   13412 debug output trace mechanism and has a much larger code and data size.  
   13413 Note 
   13414 that these values will vary depending on the efficiency of the compiler 
   13415 and 
   13416 the compiler options used during generation.
   13417 
   13418   Previous Release:
   13419     Non-Debug Version:  77.7K Code,  11.5K Data,   89.2K Total
   13420     Debug Version:     163.3K Code,  67.2K Data,  230.5K Total
   13421 
   13422   Current Release:
   13423     Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
   13424     Debug Version:     163.8K Code,  68.2K Data,  232.0K Total
   13425 
   13426 
   13427 2) iASL Compiler/Disassembler:
   13428 
   13429 Implemented support for Buffer and String objects (as per ACPI 2.0) for 
   13430 the 
   13431 following ASL operators:  LEqual, LGreater, LLess, LGreaterEqual, and 
   13432 LLessEqual.
   13433 
   13434 All directory names in the entire source package are lower case, as they 
   13435 were in earlier releases.
   13436 
   13437 Fixed a fault when using the -g or -d<nofilename> options if the FADT was 
   13438 not found.
   13439 
   13440 Fixed an issue with the Windows version of the compiler where later 
   13441 versions 
   13442 of Windows place the FADT in the registry under the name "FADT" and not 
   13443 "FACP" as earlier versions did.  This applies when using the -g or -
   13444 d<nofilename> options.  The compiler now looks for both strings as 
   13445 necessary.
   13446 
   13447 Fixed a problem with compiler namepath optimization where a namepath 
   13448 within 
   13449 the Scope() operator could not be optimized if the namepath was a subpath 
   13450 of 
   13451 the current scope path.
   13452 
   13453 ----------------------------------------
   13454 27 May 2004.  Summary of changes for version 20040527:
   13455 
   13456 1) ACPI CA Core Subsystem:
   13457 
   13458 Completed a new design and implementation for EBDA (Extended BIOS Data 
   13459 Area) 
   13460 support in the RSDP scan code.  The original code improperly scanned for 
   13461 the 
   13462 EBDA by simply scanning from memory location 0 to 0x400.  The correct 
   13463 method 
   13464 is to first obtain the EBDA pointer from within the BIOS data area, then 
   13465 scan 1K of memory starting at the EBDA pointer.  There appear to be few 
   13466 if 
   13467 any machines that place the RSDP in the EBDA, however.
   13468 
   13469 Integrated a fix for a possible fault during evaluation of BufferField 
   13470 arguments.  Obsolete code that was causing the problem was removed.
   13471 
   13472 Found and fixed a problem in the Field Support Code where data could be 
   13473 corrupted on a bit field read that starts on an aligned boundary but does 
   13474 not end on an aligned boundary.  Merged the read/write "datum length" 
   13475 calculation code into a common procedure.
   13476 
   13477 Rolled in a couple of changes to the FreeBSD-specific header.
   13478 
   13479 
   13480 Code and Data Size: Current and previous core subsystem library sizes are 
   13481 shown below.  These are the code and data sizes for the acpica.lib 
   13482 produced 
   13483 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13484 any ACPI driver or OSPM code.  The debug version of the code includes the 
   13485 debug output trace mechanism and has a much larger code and data size.  
   13486 Note 
   13487 that these values will vary depending on the efficiency of the compiler 
   13488 and 
   13489 the compiler options used during generation.
   13490 
   13491   Previous Release:
   13492     Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
   13493     Debug Version:     163.2K Code,  67.2K Data,  230.4K Total
   13494   Current Release:
   13495     Non-Debug Version:  77.7K Code,  11.5K Data,   89.2K Total
   13496     Debug Version:     163.3K Code,  67.2K Data,  230.5K Total
   13497 
   13498 
   13499 2) iASL Compiler/Disassembler:
   13500 
   13501 Fixed a generation warning produced by some overly-verbose compilers for 
   13502 a 
   13503 64-bit constant.
   13504 
   13505 ----------------------------------------
   13506 14 May 2004.  Summary of changes for version 20040514:
   13507 
   13508 1) ACPI CA Core Subsystem:
   13509 
   13510 Fixed a problem where hardware GPE enable bits sometimes not set properly 
   13511 during and after GPE method execution.  Result of 04/27 changes.
   13512 
   13513 Removed extra "clear all GPEs" when sleeping/waking.
   13514 
   13515 Removed AcpiHwEnableGpe and AcpiHwDisableGpe, replaced by the single 
   13516 AcpiHwWriteGpeEnableReg. Changed a couple of calls to the functions above 
   13517 to 
   13518 the new AcpiEv* calls as appropriate.
   13519 
   13520 ACPI_OS_NAME was removed from the OS-specific headers.  The default name 
   13521 is 
   13522 now "Microsoft Windows NT" for maximum compatibility.  However this can 
   13523 be 
   13524 changed by modifying the acconfig.h file.
   13525 
   13526 Allow a single invocation of AcpiInstallNotifyHandler for a handler that 
   13527 traps both types of notifies (System, Device).  Use ACPI_ALL_NOTIFY flag. 
   13528 
   13529 Run _INI methods on ThermalZone objects.  This is against the ACPI 
   13530 specification, but there is apparently ASL code in the field that has 
   13531 these 
   13532 _INI methods, and apparently "other" AML interpreters execute them.
   13533 
   13534 Performed a full 16/32/64 bit lint that resulted in some small changes.
   13535 
   13536 Added a sleep simulation command to the AML debugger to test sleep code. 
   13537 
   13538 Code and Data Size: Current and previous core subsystem library sizes are 
   13539 shown below.  These are the code and data sizes for the acpica.lib 
   13540 produced 
   13541 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13542 any ACPI driver or OSPM code.  The debug version of the code includes the 
   13543 debug output trace mechanism and has a much larger code and data size.  
   13544 Note 
   13545 that these values will vary depending on the efficiency of the compiler 
   13546 and 
   13547 the compiler options used during generation.
   13548 
   13549   Previous Release:
   13550     Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
   13551     Debug Version:     162.9K Code,  67.0K Data,  229.9K Total
   13552   Current Release:
   13553     Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
   13554     Debug Version:     163.2K Code,  67.2K Data,  230.4K Total
   13555 
   13556 ----------------------------------------
   13557 27 April 2004.  Summary of changes for version 20040427:
   13558 
   13559 1) ACPI CA Core Subsystem:
   13560 
   13561 Completed a major overhaul of the GPE handling within ACPI CA.  There are 
   13562 now three types of GPEs:  wake-only, runtime-only, and combination 
   13563 wake/run.  
   13564 The only GPEs allowed to be combination wake/run are for button-style 
   13565 devices such as a control-method power button, control-method sleep 
   13566 button, 
   13567 or a notebook lid switch.  GPEs that have an _Lxx or _Exx method and are 
   13568 not 
   13569 referenced by any _PRW methods are marked for "runtime" and hardware 
   13570 enabled.  Any GPE that is referenced by a _PRW method is marked for 
   13571 "wake" 
   13572 (and disabled at runtime).  However, at sleep time, only those GPEs that 
   13573 have been specifically enabled for wake via the AcpiEnableGpe interface 
   13574 will 
   13575 actually be hardware enabled.
   13576 
   13577 A new external interface has been added, AcpiSetGpeType(), that is meant 
   13578 to 
   13579 be used by device drivers to force a GPE to a particular type.  It will 
   13580 be 
   13581 especially useful for the drivers for the button devices mentioned above.
   13582 
   13583 Completed restructuring of the ACPI CA initialization sequence so that 
   13584 default operation region handlers are installed before GPEs are 
   13585 initialized 
   13586 and the _PRW methods are executed.  This will prevent errors when the 
   13587 _PRW 
   13588 methods attempt to access system memory or I/O space.
   13589 
   13590 GPE enable/disable no longer reads the GPE enable register.  We now keep 
   13591 the 
   13592 enable info for runtime and wake separate and in the GPE_EVENT_INFO.  We 
   13593 thus no longer depend on the hardware to maintain these bits.
   13594 
   13595 Always clear the wake status and fixed/GPE status bits before sleep, even 
   13596 for state S5.
   13597 
   13598 Improved the AML debugger output for displaying the GPE blocks and their 
   13599 current status.
   13600 
   13601 Added new strings for the _OSI method, of the form "Windows 2001 SPx" 
   13602 where 
   13603 x = 0,1,2,3,4.
   13604 
   13605 Fixed a problem where the physical address was incorrectly calculated 
   13606 when 
   13607 the Load() operator was used to directly load from an Operation Region 
   13608 (vs. 
   13609 loading from a Field object.)  Also added check for minimum table length 
   13610 for 
   13611 this case.
   13612 
   13613 Fix for multiple mutex acquisition.  Restore original thread SyncLevel on 
   13614 mutex release.
   13615 
   13616 Added ACPI_VALID_SXDS flag to the AcpiGetObjectInfo interface for 
   13617 consistency with the other fields returned.
   13618 
   13619 Shrunk the ACPI_GPE_EVENT_INFO structure by 40%.  There is one such 
   13620 structure for each GPE in the system, so the size of this structure is 
   13621 important.
   13622 
   13623 CPU stack requirement reduction:  Cleaned up the method execution and 
   13624 object 
   13625 evaluation paths so that now a parameter structure is passed, instead of 
   13626 copying the various method parameters over and over again.
   13627 
   13628 In evregion.c:  Correctly exit and reenter the interpreter region if and 
   13629 only if dispatching an operation region request to a user-installed 
   13630 handler.  
   13631 Do not exit/reenter when dispatching to a default handler (e.g., default 
   13632 system memory or I/O handlers)
   13633 
   13634 
   13635 Notes for updating drivers for the new GPE support.  The following 
   13636 changes 
   13637 must be made to ACPI-related device drivers that are attached to one or 
   13638 more 
   13639 GPEs: (This information will be added to the ACPI CA Programmer 
   13640 Reference.)
   13641 
   13642 1) AcpiInstallGpeHandler no longer automatically enables the GPE, you 
   13643 must 
   13644 explicitly call AcpiEnableGpe.
   13645 2) There is a new interface called AcpiSetGpeType. This should be called 
   13646 before enabling the GPE.  Also, this interface will automatically disable 
   13647 the GPE if it is currently enabled.
   13648 3) AcpiEnableGpe no longer supports a GPE type flag.
   13649 
   13650 Specific drivers that must be changed:
   13651 1) EC driver:
   13652     AcpiInstallGpeHandler (NULL, GpeNum, ACPI_GPE_EDGE_TRIGGERED, 
   13653 AeGpeHandler, NULL);
   13654     AcpiSetGpeType (NULL, GpeNum, ACPI_GPE_TYPE_RUNTIME);
   13655     AcpiEnableGpe (NULL, GpeNum, ACPI_NOT_ISR);
   13656 
   13657 2) Button Drivers (Power, Lid, Sleep):
   13658 Run _PRW method under parent device
   13659 If _PRW exists: /* This is a control-method button */
   13660     Extract GPE number and possibly GpeDevice
   13661     AcpiSetGpeType (GpeDevice, GpeNum, ACPI_GPE_TYPE_WAKE_RUN);
   13662     AcpiEnableGpe (GpeDevice, GpeNum, ACPI_NOT_ISR);
   13663 
   13664 For all other devices that have _PRWs, we automatically set the GPE type 
   13665 to 
   13666 ACPI_GPE_TYPE_WAKE, but the GPE is NOT automatically (wake) enabled.  
   13667 This 
   13668 must be done on a selective basis, usually requiring some kind of user 
   13669 app 
   13670 to allow the user to pick the wake devices.
   13671 
   13672 
   13673 Code and Data Size: Current and previous core subsystem library sizes are 
   13674 shown below.  These are the code and data sizes for the acpica.lib 
   13675 produced 
   13676 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13677 any ACPI driver or OSPM code.  The debug version of the code includes the 
   13678 debug output trace mechanism and has a much larger code and data size.  
   13679 Note 
   13680 that these values will vary depending on the efficiency of the compiler 
   13681 and 
   13682 the compiler options used during generation.
   13683 
   13684   Previous Release:
   13685     Non-Debug Version:  77.0K Code,  11.4K Data,   88.4K Total
   13686     Debug Version:     161.0K Code,  66.3K Data,  227.3K Total
   13687   Current Release:
   13688 
   13689     Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
   13690     Debug Version:     162.9K Code,  67.0K Data,  229.9K Total
   13691 
   13692 
   13693 
   13694 ----------------------------------------
   13695 02 April 2004.  Summary of changes for version 20040402:
   13696 
   13697 1) ACPI CA Core Subsystem:
   13698 
   13699 Fixed an interpreter problem where an indirect store through an ArgX 
   13700 parameter was incorrectly applying the "implicit conversion rules" during 
   13701 the store.  From the ACPI specification: "If the target is a method local 
   13702 or 
   13703 argument (LocalX or ArgX), no conversion is performed and the result is 
   13704 stored directly to the target".  The new behavior is to disable implicit 
   13705 conversion during ALL stores to an ArgX.
   13706 
   13707 Changed the behavior of the _PRW method scan to ignore any and all errors 
   13708 returned by a given _PRW.  This prevents the scan from aborting from the 
   13709 failure of any single _PRW.
   13710 
   13711 Moved the runtime configuration parameters from the global init procedure 
   13712 to 
   13713 static variables in acglobal.h.  This will allow the host to override the 
   13714 default values easily.
   13715 
   13716 Code and Data Size: Current and previous core subsystem library sizes are 
   13717 shown below.  These are the code and data sizes for the acpica.lib 
   13718 produced 
   13719 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13720 any ACPI driver or OSPM code.  The debug version of the code includes the 
   13721 debug output trace mechanism and has a much larger code and data size.  
   13722 Note 
   13723 that these values will vary depending on the efficiency of the compiler 
   13724 and 
   13725 the compiler options used during generation.
   13726 
   13727   Previous Release:
   13728     Non-Debug Version:  76.9K Code,  11.4K Data,   88.3K Total
   13729     Debug Version:     160.8K Code,  66.1K Data,  226.9K Total
   13730   Current Release:
   13731     Non-Debug Version:  77.0K Code,  11.4K Data,   88.4K Total
   13732     Debug Version:     161.0K Code,  66.3K Data,  227.3K Total
   13733 
   13734 
   13735 2) iASL Compiler/Disassembler:
   13736 
   13737 iASL now fully disassembles SSDTs.  However, External() statements are 
   13738 not 
   13739 generated automatically for unresolved symbols at this time.  This is a 
   13740 planned feature for future implementation.
   13741 
   13742 Fixed a scoping problem in the disassembler that occurs when the type of 
   13743 the 
   13744 target of a Scope() operator is overridden.  This problem caused an 
   13745 incorrectly nested internal namespace to be constructed.
   13746 
   13747 Any warnings or errors that are emitted during disassembly are now 
   13748 commented 
   13749 out automatically so that the resulting file can be recompiled without 
   13750 any 
   13751 hand editing.
   13752 
   13753 ----------------------------------------
   13754 26 March 2004.  Summary of changes for version 20040326:
   13755 
   13756 1) ACPI CA Core Subsystem:
   13757 
   13758 Implemented support for "wake" GPEs via interaction between GPEs and the 
   13759 _PRW methods.  Every GPE that is pointed to by one or more _PRWs is 
   13760 identified as a WAKE GPE and by default will no longer be enabled at 
   13761 runtime.  Previously, we were blindly enabling all GPEs with a 
   13762 corresponding 
   13763 _Lxx or _Exx method - but most of these turn out to be WAKE GPEs anyway.  
   13764 We 
   13765 believe this has been the cause of thousands of "spurious" GPEs on some 
   13766 systems.
   13767 
   13768 This new GPE behavior is can be reverted to the original behavior (enable 
   13769 ALL GPEs at runtime) via a runtime flag.
   13770 
   13771 Fixed a problem where aliased control methods could not access objects 
   13772 properly.  The proper scope within the namespace was not initialized 
   13773 (transferred to the target of the aliased method) before executing the 
   13774 target method.
   13775 
   13776 Fixed a potential race condition on internal object deletion on the 
   13777 return 
   13778 object in AcpiEvaluateObject. 
   13779 
   13780 Integrated a fix for resource descriptors where both _MEM and _MTP were 
   13781 being extracted instead of just _MEM.  (i.e. bitmask was incorrectly too 
   13782 wide, 0x0F instead of 0x03.)
   13783 
   13784 Added a special case for ACPI_ROOT_OBJECT in AcpiUtGetNodeName, 
   13785 preventing 
   13786 a 
   13787 fault in some cases.
   13788 
   13789 Updated Notify() values for debug statements in evmisc.c
   13790 
   13791 Return proper status from AcpiUtMutexInitialize, not just simply AE_OK.
   13792 
   13793 Code and Data Size: Current and previous core subsystem library sizes are 
   13794 shown below.  These are the code and data sizes for the acpica.lib 
   13795 produced 
   13796 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13797 any ACPI driver or OSPM code.  The debug version of the code includes the 
   13798 debug output trace mechanism and has a much larger code and data size.  
   13799 Note 
   13800 that these values will vary depending on the efficiency of the compiler 
   13801 and 
   13802 the compiler options used during generation.
   13803 
   13804   Previous Release:
   13805 
   13806     Non-Debug Version:  76.5K Code,  11.3K Data,   87.8K Total
   13807     Debug Version:     160.3K Code,  66.0K Data,  226.3K Total
   13808   Current Release:
   13809     Non-Debug Version:  76.9K Code,  11.4K Data,   88.3K Total
   13810     Debug Version:     160.8K Code,  66.1K Data,  226.9K Total
   13811 
   13812 ----------------------------------------
   13813 11 March 2004.  Summary of changes for version 20040311:
   13814 
   13815 1) ACPI CA Core Subsystem:
   13816 
   13817 Fixed a problem where errors occurring during the parse phase of control 
   13818 method execution did not abort cleanly.  For example, objects created and 
   13819 installed in the namespace were not deleted.  This caused all subsequent 
   13820 invocations of the method to return the AE_ALREADY_EXISTS exception.
   13821 
   13822 Implemented a mechanism to force a control method to "Serialized" 
   13823 execution 
   13824 if the method attempts to create namespace objects. (The root of the 
   13825 AE_ALREADY_EXISTS problem.)
   13826 
   13827 Implemented support for the predefined _OSI "internal" control method.  
   13828 Initial supported strings are "Linux", "Windows 2000", "Windows 2001", 
   13829 and 
   13830 "Windows 2001.1", and can be easily upgraded for new strings as 
   13831 necessary.  
   13832 This feature will allow "other" operating systems to execute the fully 
   13833 tested, "Windows" code path through the ASL code
   13834 
   13835 Global Lock Support:  Now allows multiple acquires and releases with any 
   13836 internal thread.  Removed concept of "owning thread" for this special 
   13837 mutex.
   13838 
   13839 Fixed two functions that were inappropriately declaring large objects on 
   13840 the 
   13841 CPU stack:  PsParseLoop, NsEvaluateRelative.  Reduces the stack usage 
   13842 during 
   13843 method execution considerably.
   13844 
   13845 Fixed a problem in the ACPI 2.0 FACS descriptor (actbl2.h) where the 
   13846 S4Bios_f field was incorrectly defined as UINT32 instead of UINT32_BIT.
   13847 
   13848 Fixed a problem where AcpiEvGpeDetect would fault if there were no GPEs 
   13849 defined on the machine.
   13850 
   13851 Implemented two runtime options:  One to force all control method 
   13852 execution 
   13853 to "Serialized" to mimic Windows behavior, another to disable _OSI 
   13854 support 
   13855 if it causes problems on a given machine.
   13856 
   13857 Code and Data Size: Current and previous core subsystem library sizes are 
   13858 shown below.  These are the code and data sizes for the acpica.lib 
   13859 produced 
   13860 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
   13861 any ACPI driver or OSPM code.  The debug version of the code includes the 
   13862 debug output trace mechanism and has a much larger code and data size.  
   13863 Note 
   13864 that these values will vary depending on the efficiency of the compiler 
   13865 and 
   13866 the compiler options used during generation.
   13867 
   13868   Previous Release:
   13869     Non-Debug Version:  74.8K Code,  10.1K Data,   84.9K Total
   13870     Debug Version:     158.7K Code,  65.1K Data,  223.8K Total
   13871   Current Release:
   13872     Non-Debug Version:  76.5K Code,  11.3K Data,   87.8K Total
   13873     Debug Version:     160.3K Code,  66.0K Data,  226.3K Total
   13874 
   13875 2) iASL Compiler/Disassembler:
   13876 
   13877 Fixed an array size problem for FreeBSD that would cause the compiler to 
   13878 fault.
   13879 
   13880 ----------------------------------------
   13881 20 February 2004.  Summary of changes for version 20040220:
   13882 
   13883 
   13884 1) ACPI CA Core Subsystem:
   13885 
   13886 Implemented execution of _SxD methods for Device objects in the 
   13887 GetObjectInfo interface.
   13888 
   13889 Fixed calls to _SST method to pass the correct arguments.
   13890 
   13891 Added a call to _SST on wake to restore to "working" state.
   13892 
   13893 Check for End-Of-Buffer failure case in the WalkResources interface.
   13894 
   13895 Integrated fix for 64-bit alignment issue in acglobal.h by moving two 
   13896 structures to the beginning of the file.
   13897 
   13898 After wake, clear GPE status register(s) before enabling GPEs.
   13899 
   13900 After wake, clear/enable power button.  (Perhaps we should clear/enable 
   13901 all 
   13902 fixed events upon wake.)
   13903 
   13904 Fixed a couple of possible memory leaks in the Namespace manager.
   13905 
   13906 Integrated latest acnetbsd.h file.
   13907 
   13908 ----------------------------------------
   13909 11 February 2004.  Summary of changes for version 20040211:
   13910 
   13911 
   13912 1) ACPI CA Core Subsystem:
   13913 
   13914 Completed investigation and implementation of the call-by-reference 
   13915 mechanism for control method arguments.
   13916 
   13917 Fixed a problem where a store of an object into an indexed package could 
   13918 fail if the store occurs within a different method than the method that 
   13919 created the package.
   13920 
   13921 Fixed a problem where the ToDecimal operator could return incorrect 
   13922 results.
   13923 
   13924 Fixed a problem where the CopyObject operator could fail on some of the 
   13925 more 
   13926 obscure objects (e.g., Reference objects.)
   13927 
   13928 Improved the output of the Debug object to display buffer, package, and 
   13929 index objects.
   13930 
   13931 Fixed a problem where constructs of the form "RefOf (ArgX)" did not 
   13932 return 
   13933 the expected result.
   13934 
   13935 Added permanent ACPI_REPORT_ERROR macros for all instances of the 
   13936 ACPI_AML_INTERNAL exception.
   13937 
   13938 Integrated latest version of acfreebsd.h
   13939 
   13940 ----------------------------------------
   13941 16 January 2004.  Summary of changes for version 20040116:
   13942 
   13943 The purpose of this release is primarily to update the copyright years in 
   13944 each module, thus causing a huge number of diffs.  There are a few small 
   13945 functional changes, however.
   13946 
   13947 1) ACPI CA Core Subsystem:
   13948 
   13949 Improved error messages when there is a problem finding one or more of 
   13950 the 
   13951 required base ACPI tables
   13952 
   13953 Reintroduced the definition of APIC_HEADER in actbl.h
   13954 
   13955 Changed definition of MADT_ADDRESS_OVERRIDE to 64 bits (actbl.h)
   13956 
   13957 Removed extraneous reference to NewObj in dsmthdat.c
   13958 
   13959 2) iASL compiler
   13960 
   13961 Fixed a problem introduced in December that disabled the correct 
   13962 disassembly 
   13963 of Resource Templates
   13964 
   13965 
   13966 ----------------------------------------
   13967 03 December 2003.  Summary of changes for version 20031203:
   13968 
   13969 1) ACPI CA Core Subsystem:
   13970 
   13971 Changed the initialization of Operation Regions during subsystem
   13972 init to perform two entire walks of the ACPI namespace; The first
   13973 to initialize the regions themselves, the second to execute the
   13974 _REG methods.  This fixed some interdependencies across _REG
   13975 methods found on some machines.
   13976 
   13977 Fixed a problem where a Store(Local0, Local1) could simply update
   13978 the object reference count, and not create a new copy of the
   13979 object if the Local1 is uninitialized.
   13980 
   13981 Implemented support for the _SST reserved method during sleep
   13982 transitions.
   13983 
   13984 Implemented support to clear the SLP_TYP and SLP_EN bits when
   13985 waking up, this is apparently required by some machines.
   13986 
   13987 When sleeping, clear the wake status only if SleepState is not S5.
   13988 
   13989 Fixed a problem in AcpiRsExtendedIrqResource() where an incorrect
   13990 pointer arithmetic advanced a string pointer too far.
   13991 
   13992 Fixed a problem in AcpiTbGetTablePtr() where a garbage pointer
   13993 could be returned if the requested table has not been loaded.
   13994 
   13995 Within the support for IRQ resources, restructured the handling of
   13996 the active and edge/level bits.
   13997 
   13998 Fixed a few problems in AcpiPsxExecute() where memory could be
   13999 leaked under certain error conditions.
   14000 
   14001 Improved error messages for the cases where the ACPI mode could
   14002 not be entered.
   14003 
   14004 Code and Data Size: Current and previous core subsystem library
   14005 sizes are shown below.  These are the code and data sizes for the
   14006 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
   14007 these values do not include any ACPI driver or OSPM code.  The
   14008 debug version of the code includes the debug output trace
   14009 mechanism and has a much larger code and data size.  Note that
   14010 these values will vary depending on the efficiency of the compiler
   14011 and the compiler options used during generation.
   14012 
   14013   Previous Release (20031029):
   14014     Non-Debug Version:  74.4K Code,  10.1K Data,   84.5K Total
   14015     Debug Version:     158.3K Code,  65.0K Data,  223.3K Total
   14016   Current Release:
   14017     Non-Debug Version:  74.8K Code,  10.1K Data,   84.9K Total
   14018     Debug Version:     158.7K Code,  65.1K Data,  223.8K Total
   14019 
   14020 2) iASL Compiler/Disassembler:
   14021 
   14022 Implemented a fix for the iASL disassembler where a bad index was
   14023 generated.  This was most noticeable on 64-bit platforms
   14024 
   14025 
   14026 ----------------------------------------
   14027 29 October 2003.  Summary of changes for version 20031029:
   14028 
   14029 1) ACPI CA Core Subsystem:
   14030 
   14031 
   14032 Fixed a problem where a level-triggered GPE with an associated
   14033 _Lxx control method was incorrectly cleared twice.
   14034 
   14035 Fixed a problem with the Field support code where an access can
   14036 occur beyond the end-of-region if the field is non-aligned but
   14037 extends to the very end of the parent region (resulted in an
   14038 AE_AML_REGION_LIMIT exception.)
   14039 
   14040 Fixed a problem with ACPI Fixed Events where an RT Clock handler
   14041 would not get invoked on an RTC event.  The RTC event bitmasks for
   14042 the PM1 registers were not being initialized properly.
   14043 
   14044 Implemented support for executing _STA and _INI methods for
   14045 Processor objects.  Although this is currently not part of the
   14046 ACPI specification, there is existing ASL code that depends on the
   14047 init-time execution of these methods.
   14048 
   14049 Implemented and deployed a GetDescriptorName function to decode
   14050 the various types of internal descriptors.  Guards against null
   14051 descriptors during debug output also.
   14052 
   14053 Implemented and deployed a GetNodeName function to extract the 4-
   14054 character namespace node name.  This function simplifies the debug
   14055 and error output, as well as guarding against null pointers during
   14056 output.
   14057 
   14058 Implemented and deployed the ACPI_FORMAT_UINT64 helper macro to
   14059 simplify the debug and error output of 64-bit integers.  This
   14060 macro replaces the HIDWORD and LODWORD macros for dumping these
   14061 integers.
   14062 
   14063 Updated the implementation of the Stall() operator to only call
   14064 AcpiOsStall(), and also return an error if the operand is larger
   14065 than 255.  This preserves the required behavior of not
   14066 relinquishing the processor, as would happen if AcpiOsSleep() was
   14067 called for "long stalls".
   14068 
   14069 Constructs of the form "Store(LocalX,LocalX)" where LocalX is not
   14070 initialized are now treated as NOOPs.
   14071 
   14072 Cleaned up a handful of warnings during 64-bit generation.
   14073 
   14074 Fixed a reported error where and incorrect GPE number was passed
   14075 to the GPE dispatch handler.  This value is only used for error
   14076 output, however.  Used this opportunity to clean up and streamline
   14077 the GPE dispatch code.
   14078 
   14079 Code and Data Size: Current and previous core subsystem library
   14080 sizes are shown below.  These are the code and data sizes for the
   14081 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
   14082 these values do not include any ACPI driver or OSPM code.  The
   14083 
   14084 debug version of the code includes the debug output trace
   14085 mechanism and has a much larger code and data size.  Note that
   14086 these values will vary depending on the efficiency of the compiler
   14087 and the compiler options used during generation.
   14088 
   14089   Previous Release (20031002):
   14090     Non-Debug Version:  74.1K Code,   9.7K Data,   83.8K Total
   14091     Debug Version:     157.9K Code,  64.8K Data,  222.7K Total
   14092   Current Release:
   14093     Non-Debug Version:  74.4K Code,  10.1K Data,   84.5K Total
   14094     Debug Version:     158.3K Code,  65.0K Data,  223.3K Total
   14095 
   14096 
   14097 2) iASL Compiler/Disassembler:
   14098 
   14099 Updated the iASL compiler to return an error if the operand to the
   14100 Stall() operator is larger than 255.
   14101 
   14102 
   14103 ----------------------------------------
   14104 02 October 2003.  Summary of changes for version 20031002:
   14105 
   14106 
   14107 1) ACPI CA Core Subsystem:
   14108 
   14109 Fixed a problem with Index Fields where the index was not
   14110 incremented for fields that require multiple writes to the
   14111 index/data registers (Fields that are wider than the data
   14112 register.)
   14113 
   14114 Fixed a problem with all Field objects where a write could go
   14115 beyond the end-of-field if the field was larger than the access
   14116 granularity and therefore required multiple writes to complete the
   14117 request.  An extra write beyond the end of the field could happen
   14118 inadvertently.
   14119 
   14120 Fixed a problem with Index Fields where a BUFFER_OVERFLOW error
   14121 would incorrectly be returned if the width of the Data Register
   14122 was larger than the specified field access width.
   14123 
   14124 Completed fixes for LoadTable() and Unload() and verified their
   14125 operation.  Implemented full support for the "DdbHandle" object
   14126 throughout the ACPI CA subsystem.
   14127 
   14128 Implemented full support for the MADT and ECDT tables in the ACPI
   14129 CA header files.  Even though these tables are not directly
   14130 consumed by ACPI CA, the header definitions are useful for ACPI
   14131 device drivers.
   14132 
   14133 Integrated resource descriptor fixes posted to the Linux ACPI
   14134 list.  This included checks for minimum descriptor length, and
   14135 support for trailing NULL strings within descriptors that have
   14136 optional string elements.
   14137 
   14138 Code and Data Size: Current and previous core subsystem library
   14139 sizes are shown below.  These are the code and data sizes for the
   14140 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
   14141 these values do not include any ACPI driver or OSPM code.  The
   14142 debug version of the code includes the debug output trace
   14143 mechanism and has a much larger code and data size.  Note that
   14144 these values will vary depending on the efficiency of the compiler
   14145 and the compiler options used during generation.
   14146 
   14147   Previous Release (20030918):
   14148     Non-Debug Version:  73.9K Code,   9.7K Data,   83.6K Total
   14149     Debug Version:     157.3K Code,  64.5K Data,  221.8K Total
   14150   Current Release:
   14151     Non-Debug Version:  74.1K Code,   9.7K Data,   83.8K Total
   14152     Debug Version:     157.9K Code,  64.8K Data,  222.7K Total
   14153 
   14154 
   14155 2) iASL Compiler:
   14156 
   14157 Implemented detection of non-ASCII characters within the input
   14158 source ASL file.  This catches attempts to compile binary (AML)
   14159 files early in the compile, with an informative error message.
   14160 
   14161 Fixed a problem where the disassembler would fault if the output
   14162 filename could not be generated or if the output file could not be
   14163 opened.
   14164 
   14165 ----------------------------------------
   14166 18 September 2003.  Summary of changes for version 20030918:
   14167 
   14168 
   14169 1) ACPI CA Core Subsystem:
   14170 
   14171 Found and fixed a longstanding problem with the late execution of
   14172 the various deferred AML opcodes (such as Operation Regions,
   14173 Buffer Fields, Buffers, and Packages).  If the name string
   14174 specified for the name of the new object placed the object in a
   14175 scope other than the current scope, the initialization/execution
   14176 of the opcode failed.  The solution to this problem was to
   14177 implement a mechanism where the late execution of such opcodes
   14178 does not attempt to lookup/create the name a second time in an
   14179 incorrect scope.  This fixes the "region size computed
   14180 incorrectly" problem.
   14181 
   14182 Fixed a call to AcpiHwRegisterWrite in hwregs.c that was causing a
   14183 Global Lock AE_BAD_PARAMETER error.
   14184 
   14185 Fixed several 64-bit issues with prototypes, casting and data
   14186 types.
   14187 
   14188 Removed duplicate prototype from acdisasm.h
   14189 
   14190 Fixed an issue involving EC Operation Region Detach (Shaohua Li)
   14191 
   14192 Code and Data Size: Current and previous core subsystem library
   14193 sizes are shown below.  These are the code and data sizes for the
   14194 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
   14195 these values do not include any ACPI driver or OSPM code.  The
   14196 debug version of the code includes the debug output trace
   14197 mechanism and has a much larger code and data size.  Note that
   14198 these values will vary depending on the efficiency of the compiler
   14199 and the compiler options used during generation.
   14200 
   14201   Previous Release:
   14202 
   14203     Non-Debug Version:  73.7K Code,   9.7K Data,   83.4K Total
   14204     Debug Version:     156.9K Code,  64.2K Data,  221.1K Total
   14205   Current Release:
   14206     Non-Debug Version:  73.9K Code,   9.7K Data,   83.6K Total
   14207     Debug Version:     157.3K Code,  64.5K Data,  221.8K Total
   14208 
   14209 
   14210 2) Linux:
   14211 
   14212 Fixed the AcpiOsSleep implementation in osunixxf.c to pass the
   14213 correct sleep time in seconds.
   14214 
   14215 ----------------------------------------
   14216 14 July 2003.  Summary of changes for version 20030619:
   14217 
   14218 1) ACPI CA Core Subsystem:
   14219 
   14220 Parse SSDTs in order discovered, as opposed to reverse order
   14221 (Hrvoje Habjanic)
   14222 
   14223 Fixes from FreeBSD and NetBSD. (Frank van der Linden, Thomas
   14224 Klausner,
   14225    Nate Lawson)
   14226 
   14227 
   14228 2) Linux:
   14229 
   14230 Dynamically allocate SDT list (suggested by Andi Kleen)
   14231 
   14232 proc function return value cleanups (Andi Kleen)
   14233 
   14234 Correctly handle NMI watchdog during long stalls (Andrew Morton)
   14235 
   14236 Make it so acpismp=force works (reported by Andrew Morton)
   14237 
   14238 
   14239 ----------------------------------------
   14240 19 June 2003.  Summary of changes for version 20030619:
   14241 
   14242 1) ACPI CA Core Subsystem:
   14243 
   14244 Fix To/FromBCD, eliminating the need for an arch-specific #define.
   14245 
   14246 Do not acquire a semaphore in the S5 shutdown path.
   14247 
   14248 Fix ex_digits_needed for 0. (Takayoshi Kochi)
   14249 
   14250 Fix sleep/stall code reversal. (Andi Kleen)
   14251 
   14252 Revert a change having to do with control method calling
   14253 semantics.
   14254 
   14255 2) Linux:
   14256 
   14257 acpiphp update (Takayoshi Kochi)
   14258 
   14259 Export acpi_disabled for sonypi (Stelian Pop)
   14260 
   14261 Mention acpismp=force in config help
   14262 
   14263 Re-add acpitable.c and acpismp=force. This improves backwards
   14264 
   14265 compatibility and also cleans up the code to a significant degree.
   14266 
   14267 Add ASUS Value-add driver (Karol Kozimor and Julien Lerouge)
   14268 
   14269 ----------------------------------------
   14270 22 May 2003.  Summary of changes for version 20030522:
   14271 
   14272 1) ACPI CA Core Subsystem:
   14273 
   14274 Found and fixed a reported problem where an AE_NOT_FOUND error
   14275 occurred occasionally during _BST evaluation.  This turned out to
   14276 be an Owner ID allocation issue where a called method did not get
   14277 a new ID assigned to it.  Eventually, (after 64k calls), the Owner
   14278 ID UINT16 would wraparound so that the ID would be the same as the
   14279 caller's and the called method would delete the caller's
   14280 namespace.
   14281 
   14282 Implemented extended error reporting for control methods that are
   14283 aborted due to a run-time exception.  Output includes the exact
   14284 AML instruction that caused the method abort, a dump of the method
   14285 locals and arguments at the time of the abort, and a trace of all
   14286 nested control method calls.
   14287 
   14288 Modified the interpreter to allow the creation of buffers of zero
   14289 length from the AML code. Implemented new code to ensure that no
   14290 attempt is made to actually allocate a memory buffer (of length
   14291 zero) - instead, a simple buffer object with a NULL buffer pointer
   14292 and length zero is created.  A warning is no longer issued when
   14293 the AML attempts to create a zero-length buffer.
   14294 
   14295 Implemented a workaround for the "leading asterisk issue" in
   14296 _HIDs, _UIDs, and _CIDs in the AML interpreter.  One leading
   14297 asterisk is automatically removed if present in any HID, UID, or
   14298 CID strings.  The iASL compiler will still flag this asterisk as
   14299 an error, however.
   14300 
   14301 Implemented full support for _CID methods that return a package of
   14302 multiple CIDs (Compatible IDs).  The AcpiGetObjectInfo() interface
   14303 now additionally returns a device _CID list if present.  This
   14304 required a change to the external interface in order to pass an
   14305 ACPI_BUFFER object as a parameter since the _CID list is of
   14306 variable length.
   14307 
   14308 Fixed a problem with the new AE_SAME_HANDLER exception where
   14309 handler initialization code did not know about this exception.
   14310 
   14311 Code and Data Size: Current and previous core subsystem library
   14312 sizes are shown below.  These are the code and data sizes for the
   14313 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
   14314 these values do not include any ACPI driver or OSPM code.  The
   14315 debug version of the code includes the debug output trace
   14316 mechanism and has a much larger code and data size.  Note that
   14317 these values will vary depending on the efficiency of the compiler
   14318 and the compiler options used during generation.
   14319 
   14320   Previous Release (20030509):
   14321     Non-Debug Version:  73.4K Code,   9.7K Data,   83.1K Total
   14322     Debug Version:     156.1K Code,  63.9K Data,  220.0K Total
   14323   Current Release:
   14324     Non-Debug Version:  73.7K Code,   9.7K Data,   83.4K Total
   14325     Debug Version:     156.9K Code,  64.2K Data,  221.1K Total
   14326 
   14327 
   14328 2) Linux:
   14329 
   14330 Fixed a bug in which we would reinitialize the ACPI interrupt
   14331 after it was already working, thus disabling all ACPI and the IRQs
   14332 for any other device sharing the interrupt. (Thanks to Stian
   14333 Jordet)
   14334 
   14335 Toshiba driver update (John Belmonte)
   14336 
   14337 Return only 0 or 1 for our interrupt handler status (Andrew
   14338 Morton)
   14339 
   14340 
   14341 3) iASL Compiler:
   14342 
   14343 Fixed a reported problem where multiple (nested) ElseIf()
   14344 statements were not handled correctly by the compiler, resulting
   14345 in incorrect warnings and incorrect AML code.  This was a problem
   14346 in both the ASL parser and the code generator.
   14347 
   14348 
   14349 4) Documentation:
   14350 
   14351 Added changes to existing interfaces, new exception codes, and new
   14352 text concerning reference count object management versus garbage
   14353 collection.
   14354 
   14355 ----------------------------------------
   14356 09 May 2003.  Summary of changes for version 20030509.
   14357 
   14358 
   14359 1) ACPI CA Core Subsystem:
   14360 
   14361 Changed the subsystem initialization sequence to hold off
   14362 installation of address space handlers until the hardware has been
   14363 initialized and the system has entered ACPI mode.  This is because
   14364 the installation of space handlers can cause _REG methods to be
   14365 run.  Previously, the _REG methods could potentially be run before
   14366 ACPI mode was enabled.
   14367 
   14368 Fixed some memory leak issues related to address space handler and
   14369 notify handler installation.  There were some problems with the
   14370 reference count mechanism caused by the fact that the handler
   14371 objects are shared across several namespace objects.
   14372 
   14373 Fixed a reported problem where reference counts within the
   14374 namespace were not properly updated when named objects created by
   14375 method execution were deleted.
   14376 
   14377 Fixed a reported problem where multiple SSDTs caused a deletion
   14378 issue during subsystem termination.  Restructured the table data
   14379 structures to simplify the linked lists and the related code.
   14380 
   14381 Fixed a problem where the table ID associated with secondary
   14382 tables (SSDTs) was not being propagated into the namespace objects
   14383 created by those tables.  This would only present a problem for
   14384 tables that are unloaded at run-time, however.
   14385 
   14386 Updated AcpiOsReadable and AcpiOsWritable to use the ACPI_SIZE
   14387 type as the length parameter (instead of UINT32).
   14388 
   14389 Solved a long-standing problem where an ALREADY_EXISTS error
   14390 appears on various systems.  This problem could happen when there
   14391 are multiple PCI_Config operation regions under a single PCI root
   14392 bus.  This doesn't happen very frequently, but there are some
   14393 systems that do this in the ASL.
   14394 
   14395 Fixed a reported problem where the internal DeleteNode function
   14396 was incorrectly handling the case where a namespace node was the
   14397 first in the parent's child list, and had additional peers (not
   14398 the only child, but first in the list of children.)
   14399 
   14400 Code and Data Size: Current core subsystem library sizes are shown
   14401 below.  These are the code and data sizes for the acpica.lib
   14402 produced by the Microsoft Visual C++ 6.0 compiler, and these
   14403 values do not include any ACPI driver or OSPM code.  The debug
   14404 version of the code includes the debug output trace mechanism and
   14405 has a much larger code and data size.  Note that these values will
   14406 vary depending on the efficiency of the compiler and the compiler
   14407 options used during generation.
   14408 
   14409   Previous Release
   14410     Non-Debug Version:  73.7K Code,   9.5K Data,   83.2K Total
   14411     Debug Version:     156.1K Code,  63.6K Data,  219.7K Total
   14412   Current Release:
   14413     Non-Debug Version:  73.4K Code,   9.7K Data,   83.1K Total
   14414     Debug Version:     156.1K Code,  63.9K Data,  220.0K Total
   14415 
   14416 
   14417 2) Linux:
   14418 
   14419 Allow ":" in OS override string (Ducrot Bruno)
   14420 
   14421 Kobject fix (Greg KH)
   14422 
   14423 
   14424 3 iASL Compiler/Disassembler:
   14425 
   14426 Fixed a problem in the generation of the C source code files (AML
   14427 is emitted in C source statements for BIOS inclusion) where the
   14428 Ascii dump that appears within a C comment at the end of each line
   14429 could cause a compile time error if the AML sequence happens to
   14430 have an open comment or close comment sequence embedded.
   14431 
   14432 
   14433 ----------------------------------------
   14434 24 April 2003.  Summary of changes for version 20030424.
   14435 
   14436 
   14437 1) ACPI CA Core Subsystem:
   14438 
   14439 Support for big-endian systems has been implemented.  Most of the
   14440 support has been invisibly added behind big-endian versions of the
   14441 ACPI_MOVE_* macros.
   14442 
   14443 Fixed a problem in AcpiHwDisableGpeBlock() and
   14444 AcpiHwClearGpeBlock() where an incorrect offset was passed to the
   14445 low level hardware write routine.  The offset parameter was
   14446 actually eliminated from the low level read/write routines because
   14447 they had become obsolete.
   14448 
   14449 Fixed a problem where a handler object was deleted twice during
   14450 the removal of a fixed event handler.
   14451 
   14452 
   14453 2) Linux:
   14454 
   14455 A fix for SMP systems with link devices was contributed by
   14456 
   14457 Compaq's Dan Zink.
   14458 
   14459 (2.5) Return whether we handled the interrupt in our IRQ handler.
   14460 (Linux ISRs no longer return void, so we can propagate the handler
   14461 return value from the ACPI CA core back to the OS.)
   14462 
   14463 
   14464 
   14465 3) Documentation:
   14466 
   14467 The ACPI CA Programmer Reference has been updated to reflect new
   14468 interfaces and changes to existing interfaces.
   14469 
   14470 ----------------------------------------
   14471 28 March 2003.  Summary of changes for version 20030328.
   14472 
   14473 1) ACPI CA Core Subsystem:
   14474 
   14475 The GPE Block Device support has been completed.  New interfaces
   14476 are AcpiInstallGpeBlock and AcpiRemoveGpeBlock.  The Event
   14477 interfaces (enable, disable, clear, getstatus) have been split
   14478 into separate interfaces for Fixed Events and General Purpose
   14479 Events (GPEs) in order to support GPE Block Devices properly.
   14480 
   14481 Fixed a problem where the error message "Failed to acquire
   14482 semaphore" would appear during operations on the embedded
   14483 controller (EC).
   14484 
   14485 Code and Data Size: Current core subsystem library sizes are shown
   14486 below.  These are the code and data sizes for the acpica.lib
   14487 produced by the Microsoft Visual C++ 6.0 compiler, and these
   14488 values do not include any ACPI driver or OSPM code.  The debug
   14489 version of the code includes the debug output trace mechanism and
   14490 has a much larger code and data size.  Note that these values will
   14491 vary depending on the efficiency of the compiler and the compiler
   14492 options used during generation.
   14493 
   14494   Previous Release
   14495     Non-Debug Version:  72.3K Code,   9.5K Data,   81.8K Total
   14496     Debug Version:     154.0K Code,  63.4K Data,  217.4K Total
   14497   Current Release:
   14498     Non-Debug Version:  73.7K Code,   9.5K Data,   83.2K Total
   14499     Debug Version:     156.1K Code,  63.6K Data,  219.7K Total
   14500 
   14501 
   14502 ----------------------------------------
   14503 28 February 2003.  Summary of changes for version 20030228.
   14504 
   14505 
   14506 1) ACPI CA Core Subsystem:
   14507 
   14508 The GPE handling and dispatch code has been completely overhauled
   14509 in preparation for support of GPE Block Devices (ID ACPI0006).
   14510 This affects internal data structures and code only; there should
   14511 be no differences visible externally.  One new file has been
   14512 added, evgpeblk.c
   14513 
   14514 The FADT fields GPE0_BLK_LEN and GPE1_BLK_LEN are now the only
   14515 fields that are used to determine the GPE block lengths.  The
   14516 REGISTER_BIT_WIDTH field of the X_GPEx_BLK extended address
   14517 structures are ignored.  This is per the ACPI specification but it
   14518 isn't very clear.  The full 256 Block 0/1 GPEs are now supported
   14519 (the use of REGISTER_BIT_WIDTH limited the number of GPEs to 128).
   14520 
   14521 In the SCI interrupt handler, removed the read of the PM1_CONTROL
   14522 register to look at the SCI_EN bit.  On some machines, this read
   14523 causes an SMI event and greatly slows down SCI events.  (This may
   14524 in fact be the cause of slow battery status response on some
   14525 systems.)
   14526 
   14527 Fixed a problem where a store of a NULL string to a package object
   14528 could cause the premature deletion of the object.  This was seen
   14529 during execution of the battery _BIF method on some systems,
   14530 resulting in no battery data being returned.
   14531 
   14532 Added AcpiWalkResources interface to simplify parsing of resource
   14533 lists.
   14534 
   14535 Code and Data Size: Current core subsystem library sizes are shown
   14536 below.  These are the code and data sizes for the acpica.lib
   14537 produced by the Microsoft Visual C++ 6.0 compiler, and these
   14538 values do not include any ACPI driver or OSPM code.  The debug
   14539 version of the code includes the debug output trace mechanism and
   14540 has a much larger code and data size.  Note that these values will
   14541 vary depending on the efficiency of the compiler and the compiler
   14542 options used during generation.
   14543 
   14544   Previous Release
   14545     Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
   14546     Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
   14547   Current Release:
   14548     Non-Debug Version:  72.3K Code,   9.5K Data,   81.8K Total
   14549     Debug Version:     154.0K Code,  63.4K Data,  217.4K Total
   14550 
   14551 
   14552 2) Linux
   14553 
   14554 S3 fixes (Ole Rohne)
   14555 
   14556 Update ACPI PHP driver with to use new acpi_walk_resource API
   14557 (Bjorn Helgaas)
   14558 
   14559 Add S4BIOS support (Pavel Machek)
   14560 
   14561 Map in entire table before performing checksum (John Stultz)
   14562 
   14563 Expand the mem= cmdline to allow the specification of reserved and
   14564 ACPI DATA blocks (Pavel Machek)
   14565 
   14566 Never use ACPI on VISWS
   14567 
   14568 Fix derive_pci_id (Ducrot Bruno, Alvaro Lopez)
   14569 
   14570 Revert a change that allowed P_BLK lengths to be 4 or 5. This is
   14571 causing us to think that some systems support C2 when they really
   14572 don't.
   14573 
   14574 Do not count processor objects for non-present CPUs (Thanks to
   14575 Dominik Brodowski)
   14576 
   14577 
   14578 3) iASL Compiler:
   14579 
   14580 Fixed a problem where ASL include files could not be found and
   14581 opened.
   14582 
   14583 Added support for the _PDC reserved name.
   14584 
   14585 
   14586 ----------------------------------------
   14587 22 January 2003.  Summary of changes for version 20030122.
   14588 
   14589 
   14590 1) ACPI CA Core Subsystem:
   14591 
   14592 Added a check for constructs of the form:  Store (Local0, Local0)
   14593 where Local0 is not initialized.  Apparently, some BIOS
   14594 programmers believe that this is a NOOP.  Since this store doesn't
   14595 do anything anyway, the new prototype behavior will ignore this
   14596 error.  This is a case where we can relax the strict checking in
   14597 the interpreter in the name of compatibility.
   14598 
   14599 
   14600 2) Linux
   14601 
   14602 The AcpiSrc Source Conversion Utility has been released with the
   14603 Linux package for the first time.  This is the utility that is
   14604 used to convert the ACPI CA base source code to the Linux version.
   14605 
   14606 (Both) Handle P_BLK lengths shorter than 6 more gracefully
   14607 
   14608 (Both) Move more headers to include/acpi, and delete an unused
   14609 header.
   14610 
   14611 (Both) Move drivers/acpi/include directory to include/acpi
   14612 
   14613 (Both) Boot functions don't use cmdline, so don't pass it around
   14614 
   14615 (Both) Remove include of unused header (Adrian Bunk)
   14616 
   14617 (Both) acpiphp.h includes both linux/acpi.h and acpi_bus.h. Since
   14618 the
   14619 former now also includes the latter, acpiphp.h only needs the one,
   14620 now.
   14621 
   14622 (2.5) Make it possible to select method of bios restoring after S3
   14623 resume. [=> no more ugly ifdefs] (Pavel Machek)
   14624 
   14625 (2.5) Make proc write interfaces work (Pavel Machek)
   14626 
   14627 (2.5) Properly init/clean up in cpufreq/acpi (Dominik Brodowski)
   14628 
   14629 (2.5) Break out ACPI Perf code into its own module, under cpufreq
   14630 (Dominik Brodowski)
   14631 
   14632 (2.4) S4BIOS support (Ducrot Bruno)
   14633 
   14634 (2.4) Fix acpiphp_glue.c for latest ACPI struct changes (Sergio
   14635 Visinoni)
   14636 
   14637 
   14638 3) iASL Compiler:
   14639 
   14640 Added support to disassemble SSDT and PSDTs.
   14641 
   14642 Implemented support to obtain SSDTs from the Windows registry if
   14643 available.
   14644 
   14645 
   14646 ----------------------------------------
   14647 09 January 2003.  Summary of changes for version 20030109.
   14648 
   14649 1) ACPI CA Core Subsystem:
   14650 
   14651 Changed the behavior of the internal Buffer-to-String conversion
   14652 function.  The current ACPI specification states that the contents
   14653 of the buffer are "converted to a string of two-character
   14654 hexadecimal numbers, each separated by a space".  Unfortunately,
   14655 this definition is not backwards compatible with existing ACPI 1.0
   14656 implementations (although the behavior was not defined in the ACPI
   14657 1.0 specification).  The new behavior simply copies data from the
   14658 buffer to the string until a null character is found or the end of
   14659 the buffer is reached.  The new String object is always null
   14660 terminated.  This problem was seen during the generation of _BIF
   14661 battery data where incorrect strings were returned for battery
   14662 type, etc.  This will also require an errata to the ACPI
   14663 specification.
   14664 
   14665 Renamed all instances of NATIVE_UINT and NATIVE_INT to
   14666 ACPI_NATIVE_UINT and ACPI_NATIVE_INT, respectively.
   14667 
   14668 Copyright in all module headers (both Linux and non-Linux) has be
   14669 updated to 2003.
   14670 
   14671 Code and Data Size: Current core subsystem library sizes are shown
   14672 below.  These are the code and data sizes for the acpica.lib
   14673 produced by the Microsoft Visual C++ 6.0 compiler, and these
   14674 values do not include any ACPI driver or OSPM code.  The debug
   14675 version of the code includes the debug output trace mechanism and
   14676 has a much larger code and data size.  Note that these values will
   14677 vary depending on the efficiency of the compiler and the compiler
   14678 options used during generation.
   14679 
   14680   Previous Release
   14681     Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
   14682     Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
   14683   Current Release:
   14684     Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
   14685     Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
   14686 
   14687 
   14688 2) Linux
   14689 
   14690 Fixed an oops on module insertion/removal (Matthew Tippett)
   14691 
   14692 (2.4) Fix to handle dynamic size of mp_irqs (Joerg Prante)
   14693 
   14694 (2.5) Replace pr_debug (Randy Dunlap)
   14695 
   14696 (2.5) Remove usage of CPUFREQ_ALL_CPUS (Dominik Brodowski)
   14697 
   14698 (Both) Eliminate spawning of thread from timer callback, in favor
   14699 of schedule_work()
   14700 
   14701 (Both) Show Lid status in /proc (Zdenek OGAR Skalak)
   14702 
   14703 (Both) Added define for Fixed Function HW region (Matthew Wilcox)
   14704 
   14705 (Both) Add missing statics to button.c (Pavel Machek)
   14706 
   14707 Several changes have been made to the source code translation
   14708 utility that generates the Linux Code in order to make the code
   14709 more "Linux-like":
   14710 
   14711 All typedefs on structs and unions have been removed in keeping
   14712 with the Linux coding style.
   14713 
   14714 Removed the non-Linux SourceSafe module revision number from each
   14715 module header.
   14716 
   14717 Completed major overhaul of symbols to be lowercased for linux.
   14718 Doubled the number of symbols that are lowercased.
   14719 
   14720 Fixed a problem where identifiers within procedure headers and
   14721 within quotes were not fully lower cased (they were left with a
   14722 starting capital.)
   14723 
   14724 Some C macros whose only purpose is to allow the generation of 16-
   14725 bit code are now completely removed in the Linux code, increasing
   14726 readability and maintainability.
   14727 
   14728 ----------------------------------------
   14729 
   14730 12 December 2002.  Summary of changes for version 20021212.
   14731 
   14732 
   14733 1) ACPI CA Core Subsystem:
   14734 
   14735 Fixed a problem where the creation of a zero-length AML Buffer
   14736 would cause a fault.
   14737 
   14738 Fixed a problem where a Buffer object that pointed to a static AML
   14739 buffer (in an ACPI table) could inadvertently be deleted, causing
   14740 memory corruption.
   14741 
   14742 Fixed a problem where a user buffer (passed in to the external
   14743 ACPI CA interfaces) could be overwritten if the buffer was too
   14744 small to complete the operation, causing memory corruption.
   14745 
   14746 Fixed a problem in the Buffer-to-String conversion code where a
   14747 string of length one was always returned, regardless of the size
   14748 of the input Buffer object.
   14749 
   14750 Removed the NATIVE_CHAR data type across the entire source due to
   14751 lack of need and lack of consistent use.
   14752 
   14753 Code and Data Size: Current core subsystem library sizes are shown
   14754 below.  These are the code and data sizes for the acpica.lib
   14755 produced by the Microsoft Visual C++ 6.0 compiler, and these
   14756 values do not include any ACPI driver or OSPM code.  The debug
   14757 version of the code includes the debug output trace mechanism and
   14758 has a much larger code and data size.  Note that these values will
   14759 vary depending on the efficiency of the compiler and the compiler
   14760 options used during generation.
   14761 
   14762   Previous Release
   14763     Non-Debug Version:  72.1K Code,   9.5K Data,   81.6K Total
   14764     Debug Version:     152.7K Code,  62.7K Data,  215.4K Total
   14765   Current Release:
   14766     Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
   14767     Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
   14768 
   14769 
   14770 ----------------------------------------
   14771 05 December 2002.  Summary of changes for version 20021205.
   14772 
   14773 1) ACPI CA Core Subsystem:
   14774 
   14775 Fixed a problem where a store to a String or Buffer object could
   14776 cause corruption of the DSDT if the object type being stored was
   14777 the same as the target object type and the length of the object
   14778 being stored was equal to or smaller than the original (existing)
   14779 target object.  This was seen to cause corruption of battery _BIF
   14780 buffers if the _BIF method modified the buffer on the fly.
   14781 
   14782 Fixed a problem where an internal error was generated if a control
   14783 method invocation was used in an OperationRegion, Buffer, or
   14784 Package declaration.  This was caused by the deferred parsing of
   14785 the control method and thus the deferred creation of the internal
   14786 method object.  The solution to this problem was to create the
   14787 internal method object at the moment the method is encountered in
   14788 the first pass - so that subsequent references to the method will
   14789 able to obtain the required parameter count and thus properly
   14790 parse the method invocation.  This problem presented itself as an
   14791 AE_AML_INTERNAL during the pass 1 parse phase during table load.
   14792 
   14793 Fixed a problem where the internal String object copy routine did
   14794 not always allocate sufficient memory for the target String object
   14795 and caused memory corruption.  This problem was seen to cause
   14796 "Allocation already present in list!" errors as memory allocation
   14797 became corrupted.
   14798 
   14799 Implemented a new function for the evaluation of namespace objects
   14800 that allows the specification of the allowable return object
   14801 types.  This simplifies a lot of code that checks for a return
   14802 object of one or more specific objects returned from the
   14803 evaluation (such as _STA, etc.)  This may become and external
   14804 function if it would be useful to ACPI-related drivers.
   14805 
   14806 Completed another round of prefixing #defines with "ACPI_" for
   14807 clarity.
   14808 
   14809 Completed additional code restructuring to allow more modular
   14810 linking for iASL compiler and AcpiExec.  Several files were split
   14811 creating new files.  New files:  nsparse.c dsinit.c evgpe.c
   14812 
   14813 Implemented an abort mechanism to terminate an executing control
   14814 method via the AML debugger.  This feature is useful for debugging
   14815 control methods that depend (wait) for specific hardware
   14816 responses.
   14817 
   14818 Code and Data Size: Current core subsystem library sizes are shown
   14819 below.  These are the code and data sizes for the acpica.lib
   14820 produced by the Microsoft Visual C++ 6.0 compiler, and these
   14821 values do not include any ACPI driver or OSPM code.  The debug
   14822 version of the code includes the debug output trace mechanism and
   14823 has a much larger code and data size.  Note that these values will
   14824 vary depending on the efficiency of the compiler and the compiler
   14825 options used during generation.
   14826 
   14827   Previous Release
   14828     Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
   14829     Debug Version:     152.9K Code,  63.3K Data,  216.2K Total
   14830   Current Release:
   14831     Non-Debug Version:  72.1K Code,   9.5K Data,   81.6K Total
   14832     Debug Version:     152.7K Code,  62.7K Data,  215.4K Total
   14833 
   14834 
   14835 2) iASL Compiler/Disassembler
   14836 
   14837 Fixed a compiler code generation problem for "Interrupt" Resource
   14838 Descriptors.  If specified in the ASL, the optional "Resource
   14839 Source Index" and "Resource Source" fields were not inserted into
   14840 the correct location within the AML resource descriptor, creating
   14841 an invalid descriptor.
   14842 
   14843 Fixed a disassembler problem for "Interrupt" resource descriptors.
   14844 The optional "Resource Source Index" and "Resource Source" fields
   14845 were ignored.
   14846 
   14847 
   14848 ----------------------------------------
   14849 22 November 2002.  Summary of changes for version 20021122.
   14850 
   14851 
   14852 1) ACPI CA Core Subsystem:
   14853 
   14854 Fixed a reported problem where an object stored to a Method Local
   14855 or Arg was not copied to a new object during the store - the
   14856 object pointer was simply copied to the Local/Arg.  This caused
   14857 all subsequent operations on the Local/Arg to also affect the
   14858 original source of the store operation.
   14859 
   14860 Fixed a problem where a store operation to a Method Local or Arg
   14861 was not completed properly if the Local/Arg contained a reference
   14862 (from RefOf) to a named field.  The general-purpose store-to-
   14863 namespace-node code is now used so that this case is handled
   14864 automatically.
   14865 
   14866 Fixed a problem where the internal object copy routine would cause
   14867 a protection fault if the object being copied was a Package and
   14868 contained either 1) a NULL package element or 2) a nested sub-
   14869 package.
   14870 
   14871 Fixed a problem with the GPE initialization that resulted from an
   14872 ambiguity in the ACPI specification.  One section of the
   14873 specification states that both the address and length of the GPE
   14874 block must be zero if the block is not supported.  Another section
   14875 implies that only the address need be zero if the block is not
   14876 supported.  The code has been changed so that both the address and
   14877 the length must be non-zero to indicate a valid GPE block (i.e.,
   14878 if either the address or the length is zero, the GPE block is
   14879 invalid.)
   14880 
   14881 Code and Data Size: Current core subsystem library sizes are shown
   14882 below.  These are the code and data sizes for the acpica.lib
   14883 produced by the Microsoft Visual C++ 6.0 compiler, and these
   14884 values do not include any ACPI driver or OSPM code.  The debug
   14885 version of the code includes the debug output trace mechanism and
   14886 has a much larger code and data size.  Note that these values will
   14887 vary depending on the efficiency of the compiler and the compiler
   14888 options used during generation.
   14889 
   14890   Previous Release
   14891     Non-Debug Version:  71.3K Code,   9.0K Data,   80.3K Total
   14892     Debug Version:     152.7K Code,  63.2K Data,  215.5K Total
   14893   Current Release:
   14894     Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
   14895     Debug Version:     152.9K Code,  63.3K Data,  216.2K Total
   14896 
   14897 
   14898 2) Linux
   14899 
   14900 Cleaned up EC driver. Exported an external EC read/write
   14901 interface. By going through this, other drivers (most notably
   14902 sonypi) will be able to serialize access to the EC.
   14903 
   14904 
   14905 3) iASL Compiler/Disassembler
   14906 
   14907 Implemented support to optionally generate include files for both
   14908 ASM and C (the -i switch).  This simplifies BIOS development by
   14909 automatically creating include files that contain external
   14910 declarations for the symbols that are created within the
   14911 
   14912 (optionally generated) ASM and C AML source files.
   14913 
   14914 
   14915 ----------------------------------------
   14916 15 November 2002.  Summary of changes for version 20021115.
   14917 
   14918 1) ACPI CA Core Subsystem:
   14919 
   14920 Fixed a memory leak problem where an error during resolution of
   14921 
   14922 method arguments during a method invocation from another method
   14923 failed to cleanup properly by deleting all successfully resolved
   14924 argument objects.
   14925 
   14926 Fixed a problem where the target of the Index() operator was not
   14927 correctly constructed if the source object was a package.  This
   14928 problem has not been detected because the use of a target operand
   14929 with Index() is very rare.
   14930 
   14931 Fixed a problem with the Index() operator where an attempt was
   14932 made to delete the operand objects twice.
   14933 
   14934 Fixed a problem where an attempt was made to delete an operand
   14935 twice during execution of the CondRefOf() operator if the target
   14936 did not exist.
   14937 
   14938 Implemented the first of perhaps several internal create object
   14939 functions that create and initialize a specific object type.  This
   14940 consolidates duplicated code wherever the object is created, thus
   14941 shrinking the size of the subsystem.
   14942 
   14943 Implemented improved debug/error messages for errors that occur
   14944 during nested method invocations.  All executing method pathnames
   14945 are displayed (with the error) as the call stack is unwound - thus
   14946 simplifying debug.
   14947 
   14948 Fixed a problem introduced in the 10/02 release that caused
   14949 premature deletion of a buffer object if a buffer was used as an
   14950 ASL operand where an integer operand is required (Thus causing an
   14951 implicit object conversion from Buffer to Integer.)  The change in
   14952 the 10/02 release was attempting to fix a memory leak (albeit
   14953 incorrectly.)
   14954 
   14955 Code and Data Size: Current core subsystem library sizes are shown
   14956 below.  These are the code and data sizes for the acpica.lib
   14957 produced by the Microsoft Visual C++ 6.0 compiler, and these
   14958 values do not include any ACPI driver or OSPM code.  The debug
   14959 version of the code includes the debug output trace mechanism and
   14960 has a much larger code and data size.  Note that these values will
   14961 vary depending on the efficiency of the compiler and the compiler
   14962 options used during generation.
   14963 
   14964   Previous Release
   14965     Non-Debug Version:  71.9K Code,   9.1K Data,   81.0K Total
   14966     Debug Version:     153.1K Code,  63.3K Data,  216.4K Total
   14967   Current Release:
   14968     Non-Debug Version:  71.3K Code,   9.0K Data,   80.3K Total
   14969     Debug Version:     152.7K Code,  63.2K Data,  215.5K Total
   14970 
   14971 
   14972 2) Linux
   14973 
   14974 Changed the implementation of the ACPI semaphores to use down()
   14975 instead of down_interruptable().  It is important that the
   14976 execution of ACPI control methods not be interrupted by signals.
   14977 Methods must run to completion, or the system may be left in an
   14978 unknown/unstable state.
   14979 
   14980 Fixed a compilation error when CONFIG_SOFTWARE_SUSPEND is not set.
   14981 (Shawn Starr)
   14982 
   14983 
   14984 3) iASL Compiler/Disassembler
   14985 
   14986 
   14987 Changed the default location of output files.  All output files
   14988 are now placed in the current directory by default instead of in
   14989 the directory of the source file.  This change may affect some
   14990 existing makefiles, but it brings the behavior of the compiler in
   14991 line with other similar tools.  The location of the output files
   14992 can be overridden with the -p command line switch.
   14993 
   14994 
   14995 ----------------------------------------
   14996 11 November 2002.  Summary of changes for version 20021111.
   14997 
   14998 
   14999 0) ACPI Specification 2.0B is released and is now available at:
   15000 http://www.acpi.info/index.html
   15001 
   15002 
   15003 1) ACPI CA Core Subsystem:
   15004 
   15005 Implemented support for the ACPI 2.0 SMBus Operation Regions.
   15006 This includes the early detection and handoff of the request to
   15007 the SMBus region handler (avoiding all of the complex field
   15008 support code), and support for the bidirectional return packet
   15009 from an SMBus write operation.  This paves the way for the
   15010 development of SMBus drivers in each host operating system.
   15011 
   15012 Fixed a problem where the semaphore WAIT_FOREVER constant was
   15013 defined as 32 bits, but must be 16 bits according to the ACPI
   15014 specification.  This had the side effect of causing ASL
   15015 Mutex/Event timeouts even though the ASL code requested a wait
   15016 forever.  Changed all internal references to the ACPI timeout
   15017 parameter to 16 bits to prevent future problems.  Changed the name
   15018 of WAIT_FOREVER to ACPI_WAIT_FOREVER.
   15019 
   15020 Code and Data Size: Current core subsystem library sizes are shown
   15021 below.  These are the code and data sizes for the acpica.lib
   15022 produced by the Microsoft Visual C++ 6.0 compiler, and these
   15023 values do not include any ACPI driver or OSPM code.  The debug
   15024 version of the code includes the debug output trace mechanism and
   15025 has a much larger code and data size.  Note that these values will
   15026 vary depending on the efficiency of the compiler and the compiler
   15027 options used during generation.
   15028 
   15029   Previous Release
   15030     Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
   15031     Debug Version:     152.3K Code,  63.0K Data,  215.3K Total
   15032   Current Release:
   15033     Non-Debug Version:  71.9K Code,   9.1K Data,   81.0K Total
   15034     Debug Version:     153.1K Code,  63.3K Data,  216.4K Total
   15035 
   15036 
   15037 2) Linux
   15038 
   15039 Module loading/unloading fixes (John Cagle)
   15040 
   15041 
   15042 3) iASL Compiler/Disassembler
   15043 
   15044 Added support for the SMBBlockProcessCall keyword (ACPI 2.0)
   15045 
   15046 Implemented support for the disassembly of all SMBus protocol
   15047 keywords (SMBQuick, SMBWord, etc.)
   15048 
   15049 ----------------------------------------
   15050 01 November 2002.  Summary of changes for version 20021101.
   15051 
   15052 
   15053 1) ACPI CA Core Subsystem:
   15054 
   15055 Fixed a problem where platforms that have a GPE1 block but no GPE0
   15056 block were not handled correctly.  This resulted in a "GPE
   15057 overlap" error message.  GPE0 is no longer required.
   15058 
   15059 Removed code added in the previous release that inserted nodes
   15060 into the namespace in alphabetical order.  This caused some side-
   15061 effects on various machines.  The root cause of the problem is
   15062 still under investigation since in theory, the internal ordering
   15063 of the namespace nodes should not matter.
   15064 
   15065 
   15066 Enhanced error reporting for the case where a named object is not
   15067 found during control method execution.  The full ACPI namepath
   15068 (name reference) of the object that was not found is displayed in
   15069 this case.
   15070 
   15071 Note: as a result of the overhaul of the namespace object types in
   15072 the previous release, the namespace nodes for the predefined
   15073 scopes (_TZ, _PR, etc.) are now of the type ACPI_TYPE_LOCAL_SCOPE
   15074 instead of ACPI_TYPE_ANY.  This simplifies the namespace
   15075 management code but may affect code that walks the namespace tree
   15076 looking for specific object types.
   15077 
   15078 Code and Data Size: Current core subsystem library sizes are shown
   15079 below.  These are the code and data sizes for the acpica.lib
   15080 produced by the Microsoft Visual C++ 6.0 compiler, and these
   15081 values do not include any ACPI driver or OSPM code.  The debug
   15082 version of the code includes the debug output trace mechanism and
   15083 has a much larger code and data size.  Note that these values will
   15084 vary depending on the efficiency of the compiler and the compiler
   15085 options used during generation.
   15086 
   15087   Previous Release
   15088     Non-Debug Version:  70.7K Code,   8.6K Data,   79.3K Total
   15089     Debug Version:     151.7K Code,  62.4K Data,  214.1K Total
   15090   Current Release:
   15091     Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
   15092     Debug Version:     152.3K Code,  63.0K Data,  215.3K Total
   15093 
   15094 
   15095 2) Linux
   15096 
   15097 Fixed a problem introduced in the previous release where the
   15098 Processor and Thermal objects were not recognized and installed in
   15099 /proc.  This was related to the scope type change described above.
   15100 
   15101 
   15102 3) iASL Compiler/Disassembler
   15103 
   15104 Implemented the -g option to get all of the required ACPI tables
   15105 from the registry and save them to files (Windows version of the
   15106 compiler only.)  The required tables are the FADT, FACS, and DSDT.
   15107 
   15108 Added ACPI table checksum validation during table disassembly in
   15109 order to catch corrupted tables.
   15110 
   15111 
   15112 ----------------------------------------
   15113 22 October 2002.  Summary of changes for version 20021022.
   15114 
   15115 1) ACPI CA Core Subsystem:
   15116 
   15117 Implemented a restriction on the Scope operator that the target
   15118 must already exist in the namespace at the time the operator is
   15119 encountered (during table load or method execution).  In other
   15120 words, forward references are not allowed and Scope() cannot
   15121 create a new object. This changes the previous behavior where the
   15122 interpreter would create the name if not found.  This new behavior
   15123 correctly enables the search-to-root algorithm during namespace
   15124 lookup of the target name.  Because of this upsearch, this fixes
   15125 the known Compaq _SB_.OKEC problem and makes both the AML
   15126 interpreter and iASL compiler compatible with other ACPI
   15127 implementations.
   15128 
   15129 Completed a major overhaul of the internal ACPI object types for
   15130 the ACPI Namespace and the associated operand objects.  Many of
   15131 these types had become obsolete with the introduction of the two-
   15132 pass namespace load.  This cleanup simplifies the code and makes
   15133 the entire namespace load mechanism much clearer and easier to
   15134 understand.
   15135 
   15136 Improved debug output for tracking scope opening/closing to help
   15137 diagnose scoping issues.  The old scope name as well as the new
   15138 scope name are displayed.  Also improved error messages for
   15139 problems with ASL Mutex objects and error messages for GPE
   15140 problems.
   15141 
   15142 Cleaned up the namespace dump code, removed obsolete code.
   15143 
   15144 All string output (for all namespace/object dumps) now uses the
   15145 common ACPI string output procedure which handles escapes properly
   15146 and does not emit non-printable characters.
   15147 
   15148 Fixed some issues with constants in the 64-bit version of the
   15149 local C library (utclib.c)
   15150 
   15151 
   15152 2) Linux
   15153 
   15154 EC Driver:  No longer attempts to acquire the Global Lock at
   15155 interrupt level.
   15156 
   15157 
   15158 3) iASL Compiler/Disassembler
   15159 
   15160 Implemented ACPI 2.0B grammar change that disallows all Type 1 and
   15161 2 opcodes outside of a control method.  This means that the
   15162 "executable" operators (versus the "namespace" operators) cannot
   15163 be used at the table level; they can only be used within a control
   15164 method.
   15165 
   15166 Implemented the restriction on the Scope() operator where the
   15167 target must already exist in the namespace at the time the
   15168 operator is encountered (during ASL compilation). In other words,
   15169 forward references are not allowed and Scope() cannot create a new
   15170 object.  This makes the iASL compiler compatible with other ACPI
   15171 implementations and makes the Scope() implementation adhere to the
   15172 ACPI specification.
   15173 
   15174 Fixed a problem where namepath optimization for the Alias operator
   15175 was optimizing the wrong path (of the two namepaths.)  This caused
   15176 a "Missing alias link" error message.
   15177 
   15178 Fixed a problem where an "unknown reserved name" warning could be
   15179 incorrectly generated for names like "_SB" when the trailing
   15180 underscore is not used in the original ASL.
   15181 
   15182 Fixed a problem where the reserved name check did not handle
   15183 NamePaths with multiple NameSegs correctly.  The first nameseg of
   15184 the NamePath was examined instead of the last NameSeg.
   15185 
   15186 
   15187 ----------------------------------------
   15188 
   15189 02 October 2002.  Summary of changes for this release.
   15190 
   15191 
   15192 1) ACPI CA Core Subsystem version 20021002:
   15193 
   15194 Fixed a problem where a store/copy of a string to an existing
   15195 string did not always set the string length properly in the String
   15196 object.
   15197 
   15198 Fixed a reported problem with the ToString operator where the
   15199 behavior was identical to the ToHexString operator instead of just
   15200 simply converting a raw buffer to a string data type.
   15201 
   15202 Fixed a problem where CopyObject and the other "explicit"
   15203 conversion operators were not updating the internal namespace node
   15204 type as part of the store operation.
   15205 
   15206 Fixed a memory leak during implicit source operand conversion
   15207 where the original object was not deleted if it was converted to a
   15208 new object of a different type.
   15209 
   15210 Enhanced error messages for all problems associated with namespace
   15211 lookups.  Common procedure generates and prints the lookup name as
   15212 well as the formatted status.
   15213 
   15214 Completed implementation of a new design for the Alias support
   15215 within the namespace.  The existing design did not handle the case
   15216 where a new object was assigned to one of the two names due to the
   15217 use of an explicit conversion operator, resulting in the two names
   15218 pointing to two different objects.  The new design simply points
   15219 the Alias name to the original name node - not to the object.
   15220 This results in a level of indirection that must be handled in the
   15221 name resolution mechanism.
   15222 
   15223 Code and Data Size: Current core subsystem library sizes are shown
   15224 below.  These are the code and data sizes for the acpica.lib
   15225 produced by the Microsoft Visual C++ 6.0 compiler, and these
   15226 values do not include any ACPI driver or OSPM code.  The debug
   15227 version of the code includes the debug output trace mechanism and
   15228 has a larger code and data size.  Note that these values will vary
   15229 depending on the efficiency of the compiler and the compiler
   15230 options used during generation.
   15231 
   15232   Previous Release
   15233     Non-Debug Version:  69.6K Code,   8.3K Data,   77.9K Total
   15234     Debug Version:     150.0K Code,  61.7K Data,  211.7K Total
   15235   Current Release:
   15236     Non-Debug Version:  70.7K Code,   8.6K Data,   79.3K Total
   15237     Debug Version:     151.7K Code,  62.4K Data,  214.1K Total
   15238 
   15239 
   15240 2) Linux
   15241 
   15242 Initialize thermal driver's timer before it is used. (Knut
   15243 Neumann)
   15244 
   15245 Allow handling negative celsius values. (Kochi Takayoshi)
   15246 
   15247 Fix thermal management and make trip points. R/W (Pavel Machek)
   15248 
   15249 Fix /proc/acpi/sleep. (P. Christeas)
   15250 
   15251 IA64 fixes. (David Mosberger)
   15252 
   15253 Fix reversed logic in blacklist code. (Sergio Monteiro Basto)
   15254 
   15255 Replace ACPI_DEBUG define with ACPI_DEBUG_OUTPUT. (Dominik
   15256 Brodowski)
   15257 
   15258 
   15259 3) iASL Compiler/Disassembler
   15260 
   15261 Clarified some warning/error messages.
   15262 
   15263 
   15264 ----------------------------------------
   15265 18 September 2002.  Summary of changes for this release.
   15266 
   15267 
   15268 1) ACPI CA Core Subsystem version 20020918:
   15269 
   15270 Fixed a reported problem with reference chaining (via the Index()
   15271 and RefOf() operators) in the ObjectType() and SizeOf() operators.
   15272 The definition of these operators includes the dereferencing of
   15273 all chained references to return information on the base object.
   15274 
   15275 Fixed a problem with stores to indexed package elements - the
   15276 existing code would not complete the store if an "implicit
   15277 conversion" was not performed.  In other words, if the existing
   15278 object (package element) was to be replaced completely, the code
   15279 didn't handle this case.
   15280 
   15281 Relaxed typechecking on the ASL "Scope" operator to allow the
   15282 target name to refer to an object of type Integer, String, or
   15283 Buffer, in addition to the scoping object types (Device,
   15284 predefined Scopes, Processor, PowerResource, and ThermalZone.)
   15285 This allows existing AML code that has workarounds for a bug in
   15286 Windows to function properly.  A warning is issued, however.  This
   15287 affects both the AML interpreter and the iASL compiler. Below is
   15288 an example of this type of ASL code:
   15289 
   15290       Name(DEB,0x00)
   15291       Scope(DEB)
   15292       {
   15293 
   15294 Fixed some reported problems with 64-bit integer support in the
   15295 local implementation of C library functions (clib.c)
   15296 
   15297 
   15298 2) Linux
   15299 
   15300 Use ACPI fix map region instead of IOAPIC region, since it is
   15301 undefined in non-SMP.
   15302 
   15303 Ensure that the SCI has the proper polarity and trigger, even on
   15304 systems that do not have an interrupt override entry in the MADT.
   15305 
   15306 2.5 big driver reorganization (Pat Mochel)
   15307 
   15308 Use early table mapping code from acpitable.c (Andi Kleen)
   15309 
   15310 New blacklist entries (Andi Kleen)
   15311 
   15312 Blacklist improvements. Split blacklist code out into a separate
   15313 file. Move checking the blacklist to very early. Previously, we
   15314 would use ACPI tables, and then halfway through init, check the
   15315 blacklist -- too late. Now, it's early enough to completely fall-
   15316 back to non-ACPI.
   15317 
   15318 
   15319 3) iASL Compiler/Disassembler version 20020918:
   15320 
   15321 Fixed a problem where the typechecking code didn't know that an
   15322 alias could point to a method.  In other words, aliases were not
   15323 being dereferenced during typechecking.
   15324 
   15325 
   15326 ----------------------------------------
   15327 29 August 2002.  Summary of changes for this release.
   15328 
   15329 1) ACPI CA Core Subsystem Version 20020829:
   15330 
   15331 If the target of a Scope() operator already exists, it must be an
   15332 object type that actually opens a scope -- such as a Device,
   15333 Method, Scope, etc.  This is a fatal runtime error.  Similar error
   15334 check has been added to the iASL compiler also.
   15335 
   15336 Tightened up the namespace load to disallow multiple names in the
   15337 same scope.  This previously was allowed if both objects were of
   15338 the same type.  (i.e., a lookup was the same as entering a new
   15339 name).
   15340 
   15341 
   15342 2) Linux
   15343 
   15344 Ensure that the ACPI interrupt has the proper trigger and
   15345 polarity.
   15346 
   15347 local_irq_disable is extraneous. (Matthew Wilcox)
   15348 
   15349 Make "acpi=off" actually do what it says, and not use the ACPI
   15350 interpreter *or* the tables.
   15351 
   15352 Added arch-neutral support for parsing SLIT and SRAT tables (Kochi
   15353 Takayoshi)
   15354 
   15355 
   15356 3) iASL Compiler/Disassembler  Version 20020829:
   15357 
   15358 Implemented namepath optimization for name declarations.  For
   15359 example, a declaration like "Method (\_SB_.ABCD)" would get
   15360 optimized to "Method (ABCD)" if the declaration is within the
   15361 \_SB_ scope.  This optimization is in addition to the named
   15362 reference path optimization first released in the previous
   15363 version. This would seem to complete all possible optimizations
   15364 for namepaths within the ASL/AML.
   15365 
   15366 If the target of a Scope() operator already exists, it must be an
   15367 object type that actually opens a scope -- such as a Device,
   15368 Method, Scope, etc.
   15369 
   15370 Implemented a check and warning for unreachable code in the same
   15371 block below a Return() statement.
   15372 
   15373 Fixed a problem where the listing file was not generated if the
   15374 compiler aborted if the maximum error count was exceeded (200).
   15375 
   15376 Fixed a problem where the typechecking of method return values was
   15377 broken.  This includes the check for a return value when the
   15378 method is invoked as a TermArg (a return value is expected.)
   15379 
   15380 Fixed a reported problem where EOF conditions during a quoted
   15381 string or comment caused a fault.
   15382 
   15383 
   15384 ----------------------------------------
   15385 15 August 2002.  Summary of changes for this release.
   15386 
   15387 1) ACPI CA Core Subsystem Version 20020815:
   15388 
   15389 Fixed a reported problem where a Store to a method argument that
   15390 contains a reference did not perform the indirect store correctly.
   15391 This problem was created during the conversion to the new
   15392 reference object model - the indirect store to a method argument
   15393 code was not updated to reflect the new model.
   15394 
   15395 Reworked the ACPI mode change code to better conform to ACPI 2.0,
   15396 handle corner cases, and improve code legibility (Kochi Takayoshi)
   15397 
   15398 Fixed a problem with the pathname parsing for the carat (^)
   15399 prefix.  The heavy use of the carat operator by the new namepath
   15400 optimization in the iASL compiler uncovered a problem with the AML
   15401 interpreter handling of this prefix.  In the case where one or
   15402 more carats precede a single nameseg, the nameseg was treated as
   15403 standalone and the search rule (to root) was inadvertently
   15404 applied.  This could cause both the iASL compiler and the
   15405 interpreter to find the wrong object or to miss the error that
   15406 should occur if the object does not exist at that exact pathname.
   15407 
   15408 Found and fixed the problem where the HP Pavilion DSDT would not
   15409 load.  This was a relatively minor tweak to the table loading code
   15410 (a problem caused by the unexpected encounter with a method
   15411 invocation not within a control method), but it does not solve the
   15412 overall issue of the execution of AML code at the table level.
   15413 This investigation is still ongoing.
   15414 
   15415 Code and Data Size: Current core subsystem library sizes are shown
   15416 below.  These are the code and data sizes for the acpica.lib
   15417 produced by the Microsoft Visual C++ 6.0 compiler, and these
   15418 values do not include any ACPI driver or OSPM code.  The debug
   15419 version of the code includes the debug output trace mechanism and
   15420 has a larger code and data size.  Note that these values will vary
   15421 depending on the efficiency of the compiler and the compiler
   15422 options used during generation.
   15423 
   15424   Previous Release
   15425     Non-Debug Version:  69.1K Code,   8.2K Data,   77.3K Total
   15426     Debug Version:     149.4K Code,  61.6K Data,  211.0K Total
   15427   Current Release:
   15428     Non-Debug Version:  69.6K Code,   8.3K Data,   77.9K Total
   15429     Debug Version:     150.0K Code,  61.7K Data,  211.7K Total
   15430 
   15431 
   15432 2) Linux
   15433 
   15434 Remove redundant slab.h include (Brad Hards)
   15435 
   15436 Fix several bugs in thermal.c (Herbert Nachtnebel)
   15437 
   15438 Make CONFIG_ACPI_BOOT work properly (Pavel Machek)
   15439 
   15440 Change acpi_system_suspend to use updated irq functions (Pavel
   15441 Machek)
   15442 
   15443 Export acpi_get_firmware_table (Matthew Wilcox)
   15444 
   15445 Use proper root proc entry for ACPI (Kochi Takayoshi)
   15446 
   15447 Fix early-boot table parsing (Bjorn Helgaas)
   15448 
   15449 
   15450 3) iASL Compiler/Disassembler
   15451 
   15452 Reworked the compiler options to make them more consistent and to
   15453 use two-letter options where appropriate.  We were running out of
   15454 sensible letters.   This may break some makefiles, so check the
   15455 current options list by invoking the compiler with no parameters.
   15456 
   15457 Completed the design and implementation of the ASL namepath
   15458 optimization option for the compiler.  This option optimizes all
   15459 references to named objects to the shortest possible path.  The
   15460 first attempt tries to utilize a single nameseg (4 characters) and
   15461 the "search-to-root" algorithm used by the interpreter.  If that
   15462 cannot be used (because either the name is not in the search path
   15463 or there is a conflict with another object with the same name),
   15464 the pathname is optimized using the carat prefix (usually a
   15465 shorter string than specifying the entire path from the root.)
   15466 
   15467 Implemented support to obtain the DSDT from the Windows registry
   15468 (when the disassembly option is specified with no input file).
   15469 Added this code as the implementation for AcpiOsTableOverride in
   15470 the Windows OSL.  Migrated the 16-bit code (used in the AcpiDump
   15471 utility) to scan memory for the DSDT to the AcpiOsTableOverride
   15472 function in the DOS OSL to make the disassembler truly OS
   15473 independent.
   15474 
   15475 Implemented a new option to disassemble and compile in one step.
   15476 When used without an input filename, this option will grab the
   15477 DSDT from the local machine, disassemble it, and compile it in one
   15478 step.
   15479 
   15480 Added a warning message for invalid escapes (a backslash followed
   15481 by any character other than the allowable escapes).  This catches
   15482 the quoted string error "\_SB_" (which should be "\\_SB_" ).
   15483 
   15484 Also, there are numerous instances in the ACPI specification where
   15485 this error occurs.
   15486 
   15487 Added a compiler option to disable all optimizations.  This is
   15488 basically the "compatibility mode" because by using this option,
   15489 the AML code will come out exactly the same as other ASL
   15490 compilers.
   15491 
   15492 Added error messages for incorrectly ordered dependent resource
   15493 functions.  This includes: missing EndDependentFn macro at end of
   15494 dependent resource list, nested dependent function macros (both
   15495 start and end), and missing StartDependentFn macro.  These are
   15496 common errors that should be caught at compile time.
   15497 
   15498 Implemented _OSI support for the disassembler and compiler.  _OSI
   15499 must be included in the namespace for proper disassembly (because
   15500 the disassembler must know the number of arguments.)
   15501 
   15502 Added an "optimization" message type that is optional (off by
   15503 default).  This message is used for all optimizations - including
   15504 constant folding, integer optimization, and namepath optimization.
   15505 
   15506 ----------------------------------------
   15507 25 July 2002.  Summary of changes for this release.
   15508 
   15509 
   15510 1) ACPI CA Core Subsystem Version 20020725:
   15511 
   15512 The AML Disassembler has been enhanced to produce compilable ASL
   15513 code and has been integrated into the iASL compiler (see below) as
   15514 well as the single-step disassembly for the AML debugger and the
   15515 disassembler for the AcpiDump utility.  All ACPI 2.0A opcodes,
   15516 resource templates and macros are fully supported.  The
   15517 disassembler has been tested on over 30 different AML files,
   15518 producing identical AML when the resulting disassembled ASL file
   15519 is recompiled with the same ASL compiler.
   15520 
   15521 Modified the Resource Manager to allow zero interrupts and zero
   15522 dma channels during the GetCurrentResources call.  This was
   15523 causing problems on some platforms.
   15524 
   15525 Added the AcpiOsRedirectOutput interface to the OSL to simplify
   15526 output redirection for the AcpiOsPrintf and AcpiOsVprintf
   15527 interfaces.
   15528 
   15529 Code and Data Size: Current core subsystem library sizes are shown
   15530 below.  These are the code and data sizes for the acpica.lib
   15531 produced by the Microsoft Visual C++ 6.0 compiler, and these
   15532 values do not include any ACPI driver or OSPM code.  The debug
   15533 version of the code includes the debug output trace mechanism and
   15534 has a larger code and data size.  Note that these values will vary
   15535 depending on the efficiency of the compiler and the compiler
   15536 options used during generation.
   15537 
   15538   Previous Release
   15539     Non-Debug Version:  68.7K Code,   7.4K Data,   76.1K Total
   15540     Debug Version:     142.9K Code,  58.7K Data,  201.6K Total
   15541   Current Release:
   15542     Non-Debug Version:  69.1K Code,   8.2K Data,   77.3K Total
   15543     Debug Version:     149.4K Code,  61.6K Data,  211.0K Total
   15544 
   15545 
   15546 2) Linux
   15547 
   15548 Fixed a panic in the EC driver (Dominik Brodowski)
   15549 
   15550 Implemented checksum of the R/XSDT itself during Linux table scan
   15551 (Richard Schaal)
   15552 
   15553 
   15554 3) iASL compiler
   15555 
   15556 The AML disassembler is integrated into the compiler.  The "-d"
   15557 option invokes the disassembler  to completely disassemble an
   15558 input AML file, producing as output a text ASL file with the
   15559 extension ".dsl" (to avoid name collisions with existing .asl
   15560 source files.)  A future enhancement will allow the disassembler
   15561 to obtain the BIOS DSDT from the registry under Windows.
   15562 
   15563 Fixed a problem with the VendorShort and VendorLong resource
   15564 descriptors where an invalid AML sequence was created.
   15565 
   15566 Implemented a fix for BufferData term in the ASL parser.  It was
   15567 inadvertently defined twice, allowing invalid syntax to pass and
   15568 causing reduction conflicts.
   15569 
   15570 Fixed a problem where the Ones opcode could get converted to a
   15571 value of zero if "Ones" was used where a byte, word or dword value
   15572 was expected.  The 64-bit value is now truncated to the correct
   15573 size with the correct value.
   15574 
   15575 
   15576 
   15577 ----------------------------------------
   15578 02 July 2002.  Summary of changes for this release.
   15579 
   15580 
   15581 1) ACPI CA Core Subsystem Version 20020702:
   15582 
   15583 The Table Manager code has been restructured to add several new
   15584 features.  Tables that are not required by the core subsystem
   15585 (other than the FADT, DSDT, FACS, PSDTs, etc.) are no longer
   15586 validated in any way and are returned from AcpiGetFirmwareTable if
   15587 requested.  The AcpiOsTableOverride interface is now called for
   15588 each table that is loaded by the subsystem in order to allow the
   15589 host to override any table it chooses.  Previously, only the DSDT
   15590 could be overridden.  Added one new files, tbrsdt.c and
   15591 tbgetall.c.
   15592 
   15593 Fixed a problem with the conversion of internal package objects to
   15594 external objects (when a package is returned from a control
   15595 method.)  The return buffer length was set to zero instead of the
   15596 proper length of the package object.
   15597 
   15598 Fixed a reported problem with the use of the RefOf and DeRefOf
   15599 operators when passing reference arguments to control methods.  A
   15600 new type of Reference object is used internally for references
   15601 produced by the RefOf operator.
   15602 
   15603 Added additional error messages in the Resource Manager to explain
   15604 AE_BAD_DATA errors when they occur during resource parsing.
   15605 
   15606 Split the AcpiEnableSubsystem into two primitives to enable a
   15607 finer granularity initialization sequence.  These two calls should
   15608 be called in this order: AcpiEnableSubsystem (flags),
   15609 AcpiInitializeObjects (flags).  The flags parameter remains the
   15610 same.
   15611 
   15612 
   15613 2) Linux
   15614 
   15615 Updated the ACPI utilities module to understand the new style of
   15616 fully resolved package objects that are now returned from the core
   15617 subsystem.  This eliminates errors of the form:
   15618 
   15619     ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PPB_._PRT]
   15620     acpi_utils-0430 [145] acpi_evaluate_reference:
   15621         Invalid element in package (not a device reference)
   15622 
   15623 The method evaluation utility uses the new buffer allocation
   15624 scheme instead of calling AcpiEvaluate Object twice.
   15625 
   15626 Added support for ECDT. This allows the use of the Embedded
   15627 
   15628 Controller before the namespace has been fully initialized, which
   15629 is necessary for ACPI 2.0 support, and for some laptops to
   15630 initialize properly. (Laptops using ECDT are still rare, so only
   15631 limited testing was performed of the added functionality.)
   15632 
   15633 Fixed memory leaks in the EC driver.
   15634 
   15635 Eliminated a brittle code structure in acpi_bus_init().
   15636 
   15637 Eliminated the acpi_evaluate() helper function in utils.c. It is
   15638 no longer needed since acpi_evaluate_object can optionally
   15639 allocate memory for the return object.
   15640 
   15641 Implemented fix for keyboard hang when getting battery readings on
   15642 some systems (Stephen White)
   15643 
   15644 PCI IRQ routing update (Dominik Brodowski)
   15645 
   15646 Fix an ifdef to allow compilation on UP with LAPIC but no IOAPIC
   15647 support
   15648 
   15649 ----------------------------------------
   15650 11 June 2002.  Summary of changes for this release.
   15651 
   15652 
   15653 1) ACPI CA Core Subsystem Version 20020611:
   15654 
   15655 Fixed a reported problem where constants such as Zero and One
   15656 appearing within _PRT packages were not handled correctly within
   15657 the resource manager code.  Originally reported against the ASL
   15658 compiler because the code generator now optimizes integers to
   15659 their minimal AML representation (i.e. AML constants if possible.)
   15660 The _PRT code now handles all AML constant opcodes correctly
   15661 (Zero, One, Ones, Revision).
   15662 
   15663 Fixed a problem with the Concatenate operator in the AML
   15664 interpreter where a buffer result object was incorrectly marked as
   15665 not fully evaluated, causing a run-time error of AE_AML_INTERNAL.
   15666 
   15667 All package sub-objects are now fully resolved before they are
   15668 returned from the external ACPI interfaces.  This means that name
   15669 strings are resolved to object handles, and constant operators
   15670 (Zero, One, Ones, Revision) are resolved to Integers.
   15671 
   15672 Implemented immediate resolution of the AML Constant opcodes
   15673 (Zero, One, Ones, Revision) to Integer objects upon detection
   15674 within the AML stream. This has simplified and reduced the
   15675 generated code size of the subsystem by eliminating about 10
   15676 switch statements for these constants (which previously were
   15677 contained in Reference objects.)  The complicating issues are that
   15678 the Zero opcode is used as a "placeholder" for unspecified
   15679 optional target operands and stores to constants are defined to be
   15680 no-ops.
   15681 
   15682 Code and Data Size: Current core subsystem library sizes are shown
   15683 below. These are the code and data sizes for the acpica.lib
   15684 produced by the Microsoft Visual C++ 6.0 compiler, and these
   15685 values do not include any ACPI driver or OSPM code.  The debug
   15686 version of the code includes the debug output trace mechanism and
   15687 has a larger code and data size.  Note that these values will vary
   15688 depending on the efficiency of the compiler and the compiler
   15689 options used during generation.
   15690 
   15691   Previous Release
   15692     Non-Debug Version:  69.3K Code,   7.4K Data,   76.7K Total
   15693     Debug Version:     143.8K Code,  58.8K Data,  202.6K Total
   15694   Current Release:
   15695     Non-Debug Version:  68.7K Code,   7.4K Data,   76.1K Total
   15696     Debug Version:     142.9K Code,  58.7K Data,  201.6K Total
   15697 
   15698 
   15699 2) Linux
   15700 
   15701 
   15702 Added preliminary support for obtaining _TRA data for PCI root
   15703 bridges (Bjorn Helgaas).
   15704 
   15705 
   15706 3) iASL Compiler Version X2046:
   15707 
   15708 Fixed a problem where the "_DDN" reserved name was defined to be a
   15709 control method with one argument.  There are no arguments, and
   15710 _DDN does not have to be a control method.
   15711 
   15712 Fixed a problem with the Linux version of the compiler where the
   15713 source lines printed with error messages were the wrong lines.
   15714 This turned out to be the "LF versus CR/LF" difference between
   15715 Windows and Unix.  This appears to be the longstanding issue
   15716 concerning listing output and error messages.
   15717 
   15718 Fixed a problem with the Linux version of compiler where opcode
   15719 names within error messages were wrong.  This was caused by a
   15720 slight difference in the output of the Flex tool on Linux versus
   15721 Windows.
   15722 
   15723 Fixed a problem with the Linux compiler where the hex output files
   15724 contained some garbage data caused by an internal buffer overrun.
   15725 
   15726 
   15727 ----------------------------------------
   15728 17 May 2002.  Summary of changes for this release.
   15729 
   15730 
   15731 1) ACPI CA Core Subsystem Version 20020517:
   15732 
   15733 Implemented a workaround to an BIOS bug discovered on the HP
   15734 OmniBook where the FADT revision number and the table size are
   15735 inconsistent (ACPI 2.0 revision vs. ACPI 1.0 table size).  The new
   15736 behavior is to fallback to using only the ACPI 1.0 fields of the
   15737 FADT if the table is too small to be a ACPI 2.0 table as claimed
   15738 by the revision number.  Although this is a BIOS bug, this is a
   15739 case where the workaround is simple enough and with no side
   15740 effects, so it seemed prudent to add it.  A warning message is
   15741 issued, however.
   15742 
   15743 Implemented minimum size checks for the fixed-length ACPI tables -
   15744 - the FADT and FACS, as well as consistency checks between the
   15745 revision number and the table size.
   15746 
   15747 Fixed a reported problem in the table override support where the
   15748 new table pointer was incorrectly treated as a physical address
   15749 instead of a logical address.
   15750 
   15751 Eliminated the use of the AE_AML_ERROR exception and replaced it
   15752 with more descriptive codes.
   15753 
   15754 Fixed a problem where an exception would occur if an ASL Field was
   15755 defined with no named Field Units underneath it (used by some
   15756 index fields).
   15757 
   15758 Code and Data Size: Current core subsystem library sizes are shown
   15759 below.  These are the code and data sizes for the acpica.lib
   15760 produced by the Microsoft Visual C++ 6.0 compiler, and these
   15761 values do not include any ACPI driver or OSPM code.  The debug
   15762 version of the code includes the debug output trace mechanism and
   15763 has a larger code and data size.  Note that these values will vary
   15764 depending on the efficiency of the compiler and the compiler
   15765 options used during generation.
   15766 
   15767   Previous Release
   15768     Non-Debug Version:  68.8K Code,   7.1K Data,   75.9K Total
   15769     Debug Version:     142.9K Code,  58.4K Data,  201.3K Total
   15770   Current Release:
   15771     Non-Debug Version:  69.3K Code,   7.4K Data,   76.7K Total
   15772     Debug Version:     143.8K Code,  58.8K Data,  202.6K Total
   15773 
   15774 
   15775 
   15776 2) Linux
   15777 
   15778 Much work done on ACPI init (MADT and PCI IRQ routing support).
   15779 (Paul D. and Dominik Brodowski)
   15780 
   15781 Fix PCI IRQ-related panic on boot (Sam Revitch)
   15782 
   15783 Set BM_ARB_DIS when entering a sleep state (Ducrot Bruno)
   15784 
   15785 Fix "MHz" typo (Dominik Brodowski)
   15786 
   15787 Fix RTC year 2000 issue (Dominik Brodowski)
   15788 
   15789 Preclude multiple button proc entries (Eric Brunet)
   15790 
   15791 Moved arch-specific code out of include/platform/aclinux.h
   15792 
   15793 3) iASL Compiler Version X2044:
   15794 
   15795 Implemented error checking for the string used in the EISAID macro
   15796 (Usually used in the definition of the _HID object.)  The code now
   15797 strictly enforces the PnP format - exactly 7 characters, 3
   15798 uppercase letters and 4 hex digits.
   15799 
   15800 If a raw string is used in the definition of the _HID object
   15801 (instead of the EISAID macro), the string must contain all
   15802 alphanumeric characters (e.g., "*PNP0011" is not allowed because
   15803 of the asterisk.)
   15804 
   15805 Implemented checking for invalid use of ACPI reserved names for
   15806 most of the name creation operators (Name, Device, Event, Mutex,
   15807 OperationRegion, PowerResource, Processor, and ThermalZone.)
   15808 Previously, this check was only performed for control methods.
   15809 
   15810 Implemented an additional check on the Name operator to emit an
   15811 error if a reserved name that must be implemented in ASL as a
   15812 control method is used.  We know that a reserved name must be a
   15813 method if it is defined with input arguments.
   15814 
   15815 The warning emitted when a namespace object reference is not found
   15816 during the cross reference phase has been changed into an error.
   15817 The "External" directive should be used for names defined in other
   15818 modules.
   15819 
   15820 
   15821 4) Tools and Utilities
   15822 
   15823 The 16-bit tools (adump16 and aexec16) have been regenerated and
   15824 tested.
   15825 
   15826 Fixed a problem with the output of both acpidump and adump16 where
   15827 the indentation of closing parentheses and brackets was not
   15828 
   15829 aligned properly with the parent block.
   15830 
   15831 
   15832 ----------------------------------------
   15833 03 May 2002.  Summary of changes for this release.
   15834 
   15835 
   15836 1) ACPI CA Core Subsystem Version 20020503:
   15837 
   15838 Added support a new OSL interface that allows the host operating
   15839 
   15840 system software to override the DSDT found in the firmware -
   15841 AcpiOsTableOverride.  With this interface, the OSL can examine the
   15842 version of the firmware DSDT and replace it with a different one
   15843 if desired.
   15844 
   15845 Added new external interfaces for accessing ACPI registers from
   15846 device drivers and other system software - AcpiGetRegister and
   15847 AcpiSetRegister.  This was simply an externalization of the
   15848 existing AcpiHwBitRegister interfaces.
   15849 
   15850 Fixed a regression introduced in the previous build where the
   15851 ASL/AML CreateField operator always returned an error,
   15852 "destination must be a NS Node".
   15853 
   15854 Extended the maximum time (before failure) to successfully enable
   15855 ACPI mode to 3 seconds.
   15856 
   15857 Code and Data Size: Current core subsystem library sizes are shown
   15858 below.  These are the code and data sizes for the acpica.lib
   15859 produced by the Microsoft Visual C++ 6.0 compiler, and these
   15860 values do not include any ACPI driver or OSPM code.  The debug
   15861 version of the code includes the debug output trace mechanism and
   15862 has a larger code and data size.  Note that these values will vary
   15863 depending on the efficiency of the compiler and the compiler
   15864 options used during generation.
   15865 
   15866   Previous Release
   15867     Non-Debug Version:  68.5K Code,   7.0K Data,   75.5K Total
   15868     Debug Version:     142.4K Code,  58.3K Data,  200.7K Total
   15869   Current Release:
   15870     Non-Debug Version:  68.8K Code,   7.1K Data,   75.9K Total
   15871     Debug Version:     142.9K Code,  58.4K Data,  201.3K Total
   15872 
   15873 
   15874 2) Linux
   15875 
   15876 Enhanced ACPI init code for SMP. We are now fully MPS and $PIR-
   15877 free. While 3 out of 4 of our in-house systems work fine, the last
   15878 one still hangs when testing the LAPIC timer.
   15879 
   15880 Renamed many files in 2.5 kernel release to omit "acpi_" from the
   15881 name.
   15882 
   15883 Added warning on boot for Presario 711FR.
   15884 
   15885 Sleep improvements (Pavel Machek)
   15886 
   15887 ACPI can now be built without CONFIG_PCI enabled.
   15888 
   15889 IA64: Fixed memory map functions (JI Lee)
   15890 
   15891 
   15892 3) iASL Compiler Version X2043:
   15893 
   15894 Added support to allow the compiler to be integrated into the MS
   15895 VC++ development environment for one-button compilation of single
   15896 files or entire projects -- with error-to-source-line mapping.
   15897 
   15898 Implemented support for compile-time constant folding for the
   15899 Type3, Type4, and Type5 opcodes first defined in the ACPI 2.0
   15900 specification.  This allows the ASL writer to use expressions
   15901 instead of Integer/Buffer/String constants in terms that must
   15902 evaluate to constants at compile time and will also simplify the
   15903 emitted AML in any such sub-expressions that can be folded
   15904 (evaluated at compile-time.)  This increases the size of the
   15905 compiler significantly because a portion of the ACPI CA AML
   15906 interpreter is included within the compiler in order to pre-
   15907 evaluate constant expressions.
   15908 
   15909 
   15910 Fixed a problem with the "Unicode" ASL macro that caused the
   15911 compiler to fault.  (This macro is used in conjunction with the
   15912 _STR reserved name.)
   15913 
   15914 Implemented an AML opcode optimization to use the Zero, One, and
   15915 Ones opcodes where possible to further reduce the size of integer
   15916 constants and thus reduce the overall size of the generated AML
   15917 code.
   15918 
   15919 Implemented error checking for new reserved terms for ACPI version
   15920 2.0A.
   15921 
   15922 Implemented the -qr option to display the current list of ACPI
   15923 reserved names known to the compiler.
   15924 
   15925 Implemented the -qc option to display the current list of ASL
   15926 operators that are allowed within constant expressions and can
   15927 therefore be folded at compile time if the operands are constants.
   15928 
   15929 
   15930 4) Documentation
   15931 
   15932 Updated the Programmer's Reference for new interfaces, data types,
   15933 and memory allocation model options.
   15934 
   15935 Updated the iASL Compiler User Reference to apply new format and
   15936 add information about new features and options.
   15937 
   15938 ----------------------------------------
   15939 19 April 2002.  Summary of changes for this release.
   15940 
   15941 1) ACPI CA Core Subsystem Version 20020419:
   15942 
   15943 The source code base for the Core Subsystem has been completely
   15944 cleaned with PC-lint (FlexLint) for both 32-bit and 64-bit
   15945 versions.  The Lint option files used are included in the
   15946 /acpi/generate/lint directory.
   15947 
   15948 Implemented enhanced status/error checking across the entire
   15949 Hardware manager subsystem.  Any hardware errors (reported from
   15950 the OSL) are now bubbled up and will abort a running control
   15951 method.
   15952 
   15953 
   15954 Fixed a problem where the per-ACPI-table integer width (32 or 64)
   15955 was stored only with control method nodes, causing a fault when
   15956 non-control method code was executed during table loading.  The
   15957 solution implemented uses a global variable to indicate table
   15958 width across the entire ACPI subsystem.  Therefore, ACPI CA does
   15959 not support mixed integer widths across different ACPI tables
   15960 (DSDT, SSDT).
   15961 
   15962 Fixed a problem where NULL extended fields (X fields) in an ACPI
   15963 2.0 ACPI FADT caused the table load to fail.  Although the
   15964 existing ACPI specification is a bit fuzzy on this topic, the new
   15965 behavior is to fall back on a ACPI 1.0 field if the corresponding
   15966 ACPI 2.0 X field is zero (even though the table revision indicates
   15967 a full ACPI 2.0 table.)  The ACPI specification will be updated to
   15968 clarify this issue.
   15969 
   15970 Fixed a problem with the SystemMemory operation region handler
   15971 where memory was always accessed byte-wise even if the AML-
   15972 specified access width was larger than a byte.  This caused
   15973 problems on systems with memory-mapped I/O.  Memory is now
   15974 accessed with the width specified.  On systems that do not support
   15975 non-aligned transfers, a check is made to guarantee proper address
   15976 alignment before proceeding in order to avoid an AML-caused
   15977 alignment fault within the kernel.
   15978 
   15979 
   15980 Fixed a problem with the ExtendedIrq resource where only one byte
   15981 of the 4-byte Irq field was extracted.
   15982 
   15983 Fixed the AcpiExDigitsNeeded() procedure to support _UID.  This
   15984 function was out of date and required a rewrite.
   15985 
   15986 Code and Data Size: Current core subsystem library sizes are shown
   15987 below.  These are the code and data sizes for the acpica.lib
   15988 produced by the Microsoft Visual C++ 6.0 compiler, and these
   15989 values do not include any ACPI driver or OSPM code.  The debug
   15990 version of the code includes the debug output trace mechanism and
   15991 has a larger code and data size.  Note that these values will vary
   15992 depending on the efficiency of the compiler and the compiler
   15993 options used during generation.
   15994 
   15995   Previous Release
   15996     Non-Debug Version:  66.6K Code,   6.5K Data,   73.1K Total
   15997     Debug Version:     139.8K Code,  57.4K Data,  197.2K Total
   15998   Current Release:
   15999     Non-Debug Version:  68.5K Code,   7.0K Data,   75.5K Total
   16000     Debug Version:     142.4K Code,  58.3K Data,  200.7K Total
   16001 
   16002 
   16003 2) Linux
   16004 
   16005 PCI IRQ routing fixes (Dominik Brodowski)
   16006 
   16007 
   16008 3) iASL Compiler Version X2042:
   16009 
   16010 Implemented an additional compile-time error check for a field
   16011 unit whose size + minimum access width would cause a run-time
   16012 access beyond the end-of-region.  Previously, only the field size
   16013 itself was checked.
   16014 
   16015 The Core subsystem and iASL compiler now share a common parse
   16016 object in preparation for compile-time evaluation of the type
   16017 3/4/5 ASL operators.
   16018 
   16019 
   16020 ----------------------------------------
   16021 Summary of changes for this release: 03_29_02
   16022 
   16023 1) ACPI CA Core Subsystem Version 20020329:
   16024 
   16025 Implemented support for late evaluation of TermArg operands to
   16026 Buffer and Package objects.  This allows complex expressions to be
   16027 used in the declarations of these object types.
   16028 
   16029 Fixed an ACPI 1.0 compatibility issue when reading Fields. In ACPI
   16030 1.0, if the field was larger than 32 bits, it was returned as a
   16031 buffer - otherwise it was returned as an integer.  In ACPI 2.0,
   16032 the field is returned as a buffer only if the field is larger than
   16033 64 bits.  The TableRevision is now considered when making this
   16034 conversion to avoid incompatibility with existing ASL code.
   16035 
   16036 Implemented logical addressing for AcpiOsGetRootPointer.  This
   16037 allows an RSDP with either a logical or physical address.  With
   16038 this support, the host OS can now override all ACPI tables with
   16039 one logical RSDP.  Includes implementation of  "typed" pointer
   16040 support to allow a common data type for both physical and logical
   16041 pointers internally.  This required a change to the
   16042 AcpiOsGetRootPointer interface.
   16043 
   16044 Implemented the use of ACPI 2.0 Generic Address Structures for all
   16045 GPE, Fixed Event, and PM Timer I/O.  This allows the use of memory
   16046 mapped I/O for these ACPI features.
   16047 
   16048 Initialization now ignores not only non-required tables (All
   16049 tables other than the FADT, FACS, DSDT, and SSDTs), but also does
   16050 not validate the table headers of unrecognized tables.
   16051 
   16052 Fixed a problem where a notify handler could only be
   16053 installed/removed on an object of type Device.  All "notify"
   16054 
   16055 objects are now supported -- Devices, Processor, Power, and
   16056 Thermal.
   16057 
   16058 Removed most verbosity from the ACPI_DB_INFO debug level.  Only
   16059 critical information is returned when this debug level is enabled.
   16060 
   16061 Code and Data Size: Current core subsystem library sizes are shown
   16062 below.  These are the code and data sizes for the acpica.lib
   16063 produced by the Microsoft Visual C++ 6.0 compiler, and these
   16064 values do not include any ACPI driver or OSPM code.  The debug
   16065 version of the code includes the debug output trace mechanism and
   16066 has a larger code and data size.  Note that these values will vary
   16067 depending on the efficiency of the compiler and the compiler
   16068 options used during generation.
   16069 
   16070   Previous Release
   16071     Non-Debug Version:  65.4K Code,   6.2K Data,   71.6K Total
   16072     Debug Version:     138.0K Code,  56.6K Data,  194.6K Total
   16073   Current Release:
   16074     Non-Debug Version:  66.6K Code,   6.5K Data,   73.1K Total
   16075     Debug Version:     139.8K Code,  57.4K Data,  197.2K Total
   16076 
   16077 
   16078 2) Linux:
   16079 
   16080 The processor driver (acpi_processor.c) now fully supports ACPI
   16081 2.0-based processor performance control (e.g. Intel(R)
   16082 SpeedStep(TM) technology) Note that older laptops that only have
   16083 the Intel "applet" interface are not supported through this.  The
   16084 'limit' and 'performance' interface (/proc) are fully functional.
   16085 [Note that basic policy for controlling performance state
   16086 transitions will be included in the next version of ospmd.]  The
   16087 idle handler was modified to more aggressively use C2, and PIIX4
   16088 errata handling underwent a complete overhaul (big thanks to
   16089 Dominik Brodowski).
   16090 
   16091 Added support for ACPI-PCI device binding (acpi_pci_root.c). _ADR-
   16092 based devices in the ACPI namespace are now dynamically bound
   16093 (associated) with their PCI counterparts (e.g. PCI1->01:00.0).
   16094 This allows, among other things, ACPI to resolve bus numbers for
   16095 subordinate PCI bridges.
   16096 
   16097 Enhanced PCI IRQ routing to get the proper bus number for _PRT
   16098 entries defined underneath PCI bridges.
   16099 
   16100 Added IBM 600E to bad bios list due to invalid _ADR value for
   16101 PIIX4 PCI-ISA bridge, resulting in improper PCI IRQ routing.
   16102 
   16103 In the process of adding full MADT support (e.g. IOAPIC) for IA32
   16104 (acpi.c, mpparse.c) -- stay tuned.
   16105 
   16106 Added back visual differentiation between fixed-feature and
   16107 control-method buttons in dmesg.  Buttons are also subtyped (e.g.
   16108 button/power/PWRF) to simplify button identification.
   16109 
   16110 We no longer use -Wno-unused when compiling debug. Please ignore
   16111 any "_THIS_MODULE defined but not used" messages.
   16112 
   16113 Can now shut down the system using "magic sysrq" key.
   16114 
   16115 
   16116 3) iASL Compiler version 2041:
   16117 
   16118 Fixed a problem where conversion errors for hex/octal/decimal
   16119 constants were not reported.
   16120 
   16121 Implemented a fix for the General Register template Address field.
   16122 This field was 8 bits when it should be 64.
   16123 
   16124 Fixed a problem where errors/warnings were no longer being emitted
   16125 within the listing output file.
   16126 
   16127 Implemented the ACPI 2.0A restriction on ACPI Table Signatures to
   16128 exactly 4 characters, alphanumeric only.
   16129 
   16130 
   16131 
   16132 
   16133 ----------------------------------------
   16134 Summary of changes for this release: 03_08_02
   16135 
   16136 
   16137 1) ACPI CA Core Subsystem Version 20020308:
   16138 
   16139 Fixed a problem with AML Fields where the use of the "AccessAny"
   16140 keyword could cause an interpreter error due to attempting to read
   16141 or write beyond the end of the parent Operation Region.
   16142 
   16143 Fixed a problem in the SystemMemory Operation Region handler where
   16144 an attempt was made to map memory beyond the end of the region.
   16145 This was the root cause of the "AE_ERROR" and "AE_NO_MEMORY"
   16146 errors on some Linux systems.
   16147 
   16148 Fixed a problem where the interpreter/namespace "search to root"
   16149 algorithm was not functioning for some object types.  Relaxed the
   16150 internal restriction on the search to allow upsearches for all
   16151 external object types as well as most internal types.
   16152 
   16153 
   16154 2) Linux:
   16155 
   16156 We now use safe_halt() macro versus individual calls to sti | hlt.
   16157 
   16158 Writing to the processor limit interface should now work. "echo 1"
   16159 will increase the limit, 2 will decrease, and 0 will reset to the
   16160 
   16161 default.
   16162 
   16163 
   16164 3) ASL compiler:
   16165 
   16166 Fixed segfault on Linux version.
   16167 
   16168 
   16169 ----------------------------------------
   16170 Summary of changes for this release: 02_25_02
   16171 
   16172 1) ACPI CA Core Subsystem:
   16173 
   16174 
   16175 Fixed a problem where the GPE bit masks were not initialized
   16176 properly, causing erratic GPE behavior.
   16177 
   16178 Implemented limited support for multiple calling conventions.  The
   16179 code can be generated with either the VPL (variable parameter
   16180 list, or "C") convention, or the FPL (fixed parameter list, or
   16181 "Pascal") convention.  The core subsystem is about 3.4% smaller
   16182 when generated with FPL.
   16183 
   16184 
   16185 2) Linux
   16186 
   16187 Re-add some /proc/acpi/event functionality that was lost during
   16188 the rewrite
   16189 
   16190 Resolved issue with /proc events for fixed-feature buttons showing
   16191 up as the system device.
   16192 
   16193 Fixed checks on C2/C3 latencies to be inclusive of maximum values.
   16194 
   16195 Replaced AE_ERRORs in acpi_osl.c with more specific error codes.
   16196 
   16197 Changed ACPI PRT option from "pci=noacpi-routing" to "pci=noacpi"
   16198 
   16199 Fixed limit interface & usage to fix bugs with passive cooling
   16200 hysterisis.
   16201 
   16202 Restructured PRT support.
   16203 
   16204 
   16205 ----------------------------------------
   16206 Summary of changes for this label: 02_14_02
   16207 
   16208 
   16209 1) ACPI CA Core Subsystem:
   16210 
   16211 Implemented support in AcpiLoadTable to allow loading of FACS and
   16212 FADT tables.
   16213 
   16214 Suport for the now-obsolete interim 0.71 64-bit ACPI tables has
   16215 been removed.  All 64-bit platforms should be migrated to the ACPI
   16216 2.0 tables.  The actbl71.h header has been removed from the source
   16217 tree.
   16218 
   16219 All C macros defined within the subsystem have been prefixed with
   16220 "ACPI_" to avoid collision with other system include files.
   16221 
   16222 Removed the return value for the two AcpiOsPrint interfaces, since
   16223 it is never used and causes lint warnings for ignoring the return
   16224 value.
   16225 
   16226 Added error checking to all internal mutex acquire and release
   16227 calls.  Although a failure from one of these interfaces is
   16228 probably a fatal system error, these checks will cause the
   16229 immediate abort of the currently executing method or interface.
   16230 
   16231 Fixed a problem where the AcpiSetCurrentResources interface could
   16232 fault.  This was a side effect of the deployment of the new memory
   16233 allocation model.
   16234 
   16235 Fixed a couple of problems with the Global Lock support introduced
   16236 in the last major build.  The "common" (1.0/2.0) internal FACS was
   16237 being overwritten with the FACS signature and clobbering the
   16238 Global Lock pointer.  Also, the actual firmware FACS was being
   16239 unmapped after construction of the "common" FACS, preventing
   16240 access to the actual Global Lock field within it.  The "common"
   16241 internal FACS is no longer installed as an actual ACPI table; it
   16242 is used simply as a global.
   16243 
   16244 Code and Data Size: Current core subsystem library sizes are shown
   16245 below.  These are the code and data sizes for the acpica.lib
   16246 produced by the Microsoft Visual C++ 6.0 compiler, and these
   16247 values do not include any ACPI driver or OSPM code.  The debug
   16248 version of the code includes the debug output trace mechanism and
   16249 has a larger code and data size.  Note that these values will vary
   16250 depending on the efficiency of the compiler and the compiler
   16251 options used during generation.
   16252 
   16253   Previous Release (02_07_01)
   16254     Non-Debug Version:  65.2K Code,   6.2K Data,   71.4K Total
   16255     Debug Version:     136.9K Code,  56.4K Data,  193.3K Total
   16256   Current Release:
   16257     Non-Debug Version:  65.4K Code,   6.2K Data,   71.6K Total
   16258     Debug Version:     138.0K Code,  56.6K Data,  194.6K Total
   16259 
   16260 
   16261 2) Linux
   16262 
   16263 Updated Linux-specific code for core macro and OSL interface
   16264 changes described above.
   16265 
   16266 Improved /proc/acpi/event. It now can be opened only once and has
   16267 proper poll functionality.
   16268 
   16269 Fixed and restructured power management (acpi_bus).
   16270 
   16271 Only create /proc "view by type" when devices of that class exist.
   16272 
   16273 Fixed "charging/discharging" bug (and others) in acpi_battery.
   16274 
   16275 Improved thermal zone code.
   16276 
   16277 
   16278 3) ASL Compiler, version X2039:
   16279 
   16280 
   16281 Implemented the new compiler restriction on ASL String hex/octal
   16282 escapes to non-null, ASCII values.  An error results if an invalid
   16283 value is used.  (This will require an ACPI 2.0 specification
   16284 change.)
   16285 
   16286 AML object labels that are output to the optional C and ASM source
   16287 are now prefixed with both the ACPI table signature and table ID
   16288 to help guarantee uniqueness within a large BIOS project.
   16289 
   16290 
   16291 ----------------------------------------
   16292 Summary of changes for this label: 02_01_02
   16293 
   16294 1) ACPI CA Core Subsystem:
   16295 
   16296 ACPI 2.0 support is complete in the entire Core Subsystem and the
   16297 ASL compiler. All new ACPI 2.0 operators are implemented and all
   16298 other changes for ACPI 2.0 support are complete.  With
   16299 simultaneous code and data optimizations throughout the subsystem,
   16300 ACPI 2.0 support has been implemented with almost no additional
   16301 cost in terms of code and data size.
   16302 
   16303 Implemented a new mechanism for allocation of return buffers.  If
   16304 the buffer length is set to ACPI_ALLOCATE_BUFFER, the buffer will
   16305 be allocated on behalf of the caller.  Consolidated all return
   16306 buffer validation and allocation to a common procedure.  Return
   16307 buffers will be allocated via the primary OSL allocation interface
   16308 since it appears that a separate pool is not needed by most users.
   16309 If a separate pool is required for these buffers, the caller can
   16310 still use the original mechanism and pre-allocate the buffer(s).
   16311 
   16312 Implemented support for string operands within the DerefOf
   16313 operator.
   16314 
   16315 Restructured the Hardware and Event managers to be table driven,
   16316 simplifying the source code and reducing the amount of generated
   16317 code.
   16318 
   16319 Split the common read/write low-level ACPI register bitfield
   16320 procedure into a separate read and write, simplifying the code
   16321 considerably.
   16322 
   16323 Obsoleted the AcpiOsCallocate OSL interface.  This interface was
   16324 used only a handful of times and didn't have enough critical mass
   16325 for a separate interface.  Replaced with a common calloc procedure
   16326 in the core.
   16327 
   16328 Fixed a reported problem with the GPE number mapping mechanism
   16329 that allows GPE1 numbers to be non-contiguous with GPE0.
   16330 Reorganized the GPE information and shrunk a large array that was
   16331 originally large enough to hold info for all possible GPEs (256)
   16332 to simply large enough to hold all GPEs up to the largest GPE
   16333 number on the machine.
   16334 
   16335 Fixed a reported problem with resource structure alignment on 64-
   16336 bit platforms.
   16337 
   16338 Changed the AcpiEnableEvent and AcpiDisableEvent external
   16339 interfaces to not require any flags for the common case of
   16340 enabling/disabling a GPE.
   16341 
   16342 Implemented support to allow a "Notify" on a Processor object.
   16343 
   16344 Most TBDs in comments within the source code have been resolved
   16345 and eliminated.
   16346 
   16347 
   16348 Fixed a problem in the interpreter where a standalone parent
   16349 prefix (^) was not handled correctly in the interpreter and
   16350 debugger.
   16351 
   16352 Removed obsolete and unnecessary GPE save/restore code.
   16353 
   16354 Implemented Field support in the ASL Load operator.  This allows a
   16355 table to be loaded from a named field, in addition to loading a
   16356 table directly from an Operation Region.
   16357 
   16358 Implemented timeout and handle support in the external Global Lock
   16359 interfaces.
   16360 
   16361 Fixed a problem in the AcpiDump utility where pathnames were no
   16362 longer being generated correctly during the dump of named objects.
   16363 
   16364 Modified the AML debugger to give a full display of if/while
   16365 predicates instead of just one AML opcode at a time.  (The
   16366 predicate can have several nested ASL statements.)  The old method
   16367 was confusing during single stepping.
   16368 
   16369 Code and Data Size: Current core subsystem library sizes are shown
   16370 below. These are the code and data sizes for the acpica.lib
   16371 produced by the Microsoft Visual C++ 6.0 compiler, and these
   16372 values do not include any ACPI driver or OSPM code.  The debug
   16373 version of the code includes the debug output trace mechanism and
   16374 has a larger code and data size.  Note that these values will vary
   16375 depending on the efficiency of the compiler and the compiler
   16376 options used during generation.
   16377 
   16378   Previous Release (12_18_01)
   16379      Non-Debug Version:  66.1K Code,   5.5K Data,   71.6K Total
   16380      Debug Version:     138.3K Code,  55.9K Data,  194.2K Total
   16381    Current Release:
   16382      Non-Debug Version:  65.2K Code,   6.2K Data,   71.4K Total
   16383      Debug Version:     136.9K Code,  56.4K Data,  193.3K Total
   16384 
   16385 2) Linux
   16386 
   16387  Implemented fix for PIIX reverse throttling errata (Processor
   16388 driver)
   16389 
   16390 Added new Limit interface (Processor and Thermal drivers)
   16391 
   16392 New thermal policy (Thermal driver)
   16393 
   16394 Many updates to /proc
   16395 
   16396 Battery "low" event support (Battery driver)
   16397 
   16398 Supports ACPI PCI IRQ routing (PCI Link and PCI root drivers)
   16399 
   16400 IA32 - IA64 initialization unification, no longer experimental
   16401 
   16402 Menuconfig options redesigned
   16403 
   16404 3) ASL Compiler, version X2037:
   16405 
   16406 Implemented several new output features to simplify integration of
   16407 AML code into  firmware: 1) Output the AML in C source code with
   16408 labels for each named ASL object.  The    original ASL source code
   16409 is interleaved as C comments. 2) Output the AML in ASM source code
   16410 with labels and interleaved ASL    source. 3) Output the AML in
   16411 raw hex table form, in either C or ASM.
   16412 
   16413 Implemented support for optional string parameters to the
   16414 LoadTable operator.
   16415 
   16416 Completed support for embedded escape sequences within string
   16417 literals.  The compiler now supports all single character escapes
   16418 as well as the Octal and Hex escapes.  Note: the insertion of a
   16419 null byte into a string literal (via the hex/octal escape) causes
   16420 the string to be immediately terminated.  A warning is issued.
   16421 
   16422 Fixed a problem where incorrect AML was generated for the case
   16423 where an ASL namepath consists of a single parent prefix (
   16424 
   16425 ) with no trailing name segments.
   16426 
   16427 The compiler has been successfully generated with a 64-bit C
   16428 compiler.
   16429 
   16430 
   16431 
   16432 
   16433 ----------------------------------------
   16434 Summary of changes for this label: 12_18_01
   16435 
   16436 1) Linux
   16437 
   16438 Enhanced blacklist with reason and severity fields. Any table's
   16439 signature may now be used to identify a blacklisted system.
   16440 
   16441 Call _PIC control method to inform the firmware which interrupt
   16442 model the OS is using. Turn on any disabled link devices.
   16443 
   16444 Cleaned up busmgr /proc error handling (Andreas Dilger)
   16445 
   16446  2) ACPI CA Core Subsystem:
   16447 
   16448 Implemented ACPI 2.0 semantics for the "Break" operator (Exit from
   16449 while loop)
   16450 
   16451 Completed implementation of the ACPI 2.0 "Continue",
   16452 "ConcatenateResTemplate", "DataTableRegion", and "LoadTable"
   16453 operators.  All new ACPI 2.0 operators are now implemented in both
   16454 the ASL compiler and the AML interpreter.  The only remaining ACPI
   16455 2.0 task is support for the String data type in the DerefOf
   16456 operator.  Fixed a problem with AcquireMutex where the status code
   16457 was lost if the caller had to actually wait for the mutex.
   16458 
   16459 Increased the maximum ASL Field size from 64K bits to 4G bits.
   16460 
   16461 Completed implementation of the external Global Lock interfaces --
   16462 AcpiAcquireGlobalLock and AcpiReleaseGlobalLock.  The Timeout and
   16463 Handler parameters were added.
   16464 
   16465 Completed another pass at removing warnings and issues when
   16466 compiling with 64-bit compilers.  The code now compiles cleanly
   16467 with the Intel 64-bit C/C++ compiler.  Most notably, the pointer
   16468 add and subtract (diff) macros have changed considerably.
   16469 
   16470 
   16471 Created and deployed a new ACPI_SIZE type that is 64-bits wide on
   16472 64-bit platforms, 32-bits on all others.  This type is used
   16473 wherever memory allocation and/or the C sizeof() operator is used,
   16474 and affects the OSL memory allocation interfaces AcpiOsAllocate
   16475 and AcpiOsCallocate.
   16476 
   16477 Implemented sticky user breakpoints in the AML debugger.
   16478 
   16479 Code and Data Size: Current core subsystem library sizes are shown
   16480 below. These are the code and data sizes for the acpica.lib
   16481 produced by the Microsoft Visual C++ 6.0 compiler, and these
   16482 values do not include any ACPI driver or OSPM code.  The debug
   16483 version of the code includes the debug output trace mechanism and
   16484 has a larger code and data size. Note that these values will vary
   16485 depending on the efficiency of the compiler and the compiler
   16486 options used during generation.
   16487 
   16488   Previous Release (12_05_01)
   16489      Non-Debug Version:  64.7K Code,   5.3K Data,   70.0K Total
   16490      Debug Version:     136.2K Code,  55.6K Data,  191.8K Total
   16491    Current Release:
   16492      Non-Debug Version:  66.1K Code,   5.5K Data,   71.6K Total
   16493      Debug Version:     138.3K Code,  55.9K Data,  194.2K Total
   16494 
   16495  3) ASL Compiler, version X2034:
   16496 
   16497 Now checks for (and generates an error if detected) the use of a
   16498 Break or Continue statement without an enclosing While statement.
   16499 
   16500 
   16501 Successfully generated the compiler with the Intel 64-bit C
   16502 compiler.
   16503 
   16504  ----------------------------------------
   16505 Summary of changes for this label: 12_05_01
   16506 
   16507  1) ACPI CA Core Subsystem:
   16508 
   16509 The ACPI 2.0 CopyObject operator is fully implemented.  This
   16510 operator creates a new copy of an object (and is also used to
   16511 bypass the "implicit conversion" mechanism of the Store operator.)
   16512 
   16513 The ACPI 2.0 semantics for the SizeOf operator are fully
   16514 implemented.  The change is that performing a SizeOf on a
   16515 reference object causes an automatic dereference of the object to
   16516 tha actual value before the size is evaluated. This behavior was
   16517 undefined in ACPI 1.0.
   16518 
   16519 The ACPI 2.0 semantics for the Extended IRQ resource descriptor
   16520 have been implemented.  The interrupt polarity and mode are now
   16521 independently set.
   16522 
   16523 Fixed a problem where ASL Constants (Zero, One, Ones, Revision)
   16524 appearing in Package objects were not properly converted to
   16525 integers when the internal Package was converted to an external
   16526 object (via the AcpiEvaluateObject interface.)
   16527 
   16528 Fixed a problem with the namespace object deletion mechanism for
   16529 objects created by control methods.  There were two parts to this
   16530 problem: 1) Objects created during the initialization phase method
   16531 parse were not being deleted, and 2) The object owner ID mechanism
   16532 to track objects was broken.
   16533 
   16534 Fixed a problem where the use of the ASL Scope operator within a
   16535 control method would result in an invalid opcode exception.
   16536 
   16537 Fixed a problem introduced in the previous label where the buffer
   16538 length required for the _PRT structure was not being returned
   16539 correctly.
   16540 
   16541 Code and Data Size: Current core subsystem library sizes are shown
   16542 below. These are the code and data sizes for the acpica.lib
   16543 produced by the Microsoft Visual C++ 6.0 compiler, and these
   16544 values do not include any ACPI driver or OSPM code.  The debug
   16545 version of the code includes the debug output trace mechanism and
   16546 has a larger code and data size.  Note that these values will vary
   16547 depending on the efficiency of the compiler and the compiler
   16548 options used during generation.
   16549 
   16550   Previous Release (11_20_01)
   16551      Non-Debug Version:  64.1K Code,   5.3K Data,   69.4K Total
   16552      Debug Version:     135.1K Code,  55.4K Data,  190.5K Total
   16553 
   16554   Current Release:
   16555      Non-Debug Version:  64.7K Code,   5.3K Data,   70.0K Total
   16556      Debug Version:     136.2K Code,  55.6K Data,  191.8K Total
   16557 
   16558  2) Linux:
   16559 
   16560 Updated all files to apply cleanly against 2.4.16.
   16561 
   16562 Added basic PCI Interrupt Routing Table (PRT) support for IA32
   16563 (acpi_pci.c), and unified the PRT code for IA32 and IA64.  This
   16564 version supports both static and dyanmic PRT entries, but dynamic
   16565 entries are treated as if they were static (not yet
   16566 reconfigurable).  Architecture- specific code to use this data is
   16567 absent on IA32 but should be available shortly.
   16568 
   16569 Changed the initialization sequence to start the ACPI interpreter
   16570 (acpi_init) prior to initialization of the PCI driver (pci_init)
   16571 in init/main.c.  This ordering is required to support PRT and
   16572 facilitate other (future) enhancement.  A side effect is that the
   16573 ACPI bus driver and certain device drivers can no longer be loaded
   16574 as modules.
   16575 
   16576 Modified the 'make menuconfig' options to allow PCI Interrupt
   16577 Routing support to be included without the ACPI Bus and other
   16578 device drivers.
   16579 
   16580  3) ASL Compiler, version X2033:
   16581 
   16582 Fixed some issues with the use of the new CopyObject and
   16583 DataTableRegion operators.  Both are fully functional.
   16584 
   16585  ----------------------------------------
   16586 Summary of changes for this label: 11_20_01
   16587 
   16588  20 November 2001.  Summary of changes for this release.
   16589 
   16590  1) ACPI CA Core Subsystem:
   16591 
   16592 Updated Index support to match ACPI 2.0 semantics.  Storing a
   16593 Integer, String, or Buffer to an Index of a Buffer will store only
   16594 the least-significant byte of the source to the Indexed buffer
   16595 byte.  Multiple writes are not performed.
   16596 
   16597 Fixed a problem where the access type used in an AccessAs ASL
   16598 operator was not recorded correctly into the field object.
   16599 
   16600 Fixed a problem where ASL Event objects were created in a
   16601 signalled state. Events are now created in an unsignalled state.
   16602 
   16603 The internal object cache is now purged after table loading and
   16604 initialization to reduce the use of dynamic kernel memory -- on
   16605 the assumption that object use is greatest during the parse phase
   16606 of the entire table (versus the run-time use of individual control
   16607 methods.)
   16608 
   16609 ACPI 2.0 variable-length packages are now fully operational.
   16610 
   16611 Code and Data Size: Code and Data optimizations have permitted new
   16612 feature development with an actual reduction in the library size.
   16613 Current core subsystem library sizes are shown below.  These are
   16614 the code and data sizes for the acpica.lib produced by the
   16615 Microsoft Visual C++ 6.0 compiler, and these values do not include
   16616 any ACPI driver or OSPM code.  The debug version of the code
   16617 includes the debug output trace mechanism and has a larger code
   16618 and data size.  Note that these values will vary depending on the
   16619 efficiency of the compiler and the compiler options used during
   16620 generation.
   16621 
   16622   Previous Release (11_09_01):
   16623      Non-Debug Version:  63.7K Code,   5.2K Data,   68.9K Total
   16624      Debug Version:     134.5K Code,  55.4K Data,  189.9K Total
   16625 
   16626   Current Release:
   16627      Non-Debug Version:  64.1K Code,   5.3K Data,   69.4K Total
   16628      Debug Version:     135.1K Code,  55.4K Data,  190.5K Total
   16629 
   16630  2) Linux:
   16631 
   16632 Enhanced the ACPI boot-time initialization code to allow the use
   16633 of Local APIC tables for processor enumeration on IA-32, and to
   16634 pave the way for a fully MPS-free boot (on SMP systems) in the
   16635 near future.  This functionality replaces
   16636 arch/i386/kernel/acpitables.c, which was introduced in an earlier
   16637 2.4.15-preX release.  To enable this feature you must add
   16638 "acpi_boot=on" to the kernel command line -- see the help entry
   16639 for CONFIG_ACPI_BOOT for more information.  An IA-64 release is in
   16640 the works...
   16641 
   16642 Restructured the configuration options to allow boot-time table
   16643 parsing support without inclusion of the ACPI Interpreter (and
   16644 other) code.
   16645 
   16646 NOTE: This release does not include fixes for the reported events,
   16647 power-down, and thermal passive cooling issues (coming soon).
   16648 
   16649  3) ASL Compiler:
   16650 
   16651 Added additional typechecking for Fields within restricted access
   16652 Operation Regions.  All fields within EC and CMOS regions must be
   16653 declared with ByteAcc. All fields withing SMBus regions must be
   16654 declared with the BufferAcc access type.
   16655 
   16656 Fixed a problem where the listing file output of control methods
   16657 no longer interleaved the actual AML code with the ASL source
   16658 code.
   16659 
   16660 
   16661 
   16662 
   16663 ----------------------------------------
   16664 Summary of changes for this label: 11_09_01
   16665 
   16666 1) ACPI CA Core Subsystem:
   16667 
   16668 Implemented ACPI 2.0-defined support for writes to fields with a
   16669 Buffer, String, or Integer source operand that is smaller than the
   16670 target field. In these cases, the source operand is zero-extended
   16671 to fill the target field.
   16672 
   16673 Fixed a problem where a Field starting bit offset (within the
   16674 parent operation region) was calculated incorrectly if the
   16675 
   16676 alignment of the field differed from the access width.  This
   16677 affected CreateWordField, CreateDwordField, CreateQwordField, and
   16678 possibly other fields that use the "AccessAny" keyword.
   16679 
   16680 Fixed a problem introduced in the 11_02_01 release where indirect
   16681 stores through method arguments did not operate correctly.
   16682 
   16683 2) Linux:
   16684 
   16685 Implemented boot-time ACPI table parsing support
   16686 (CONFIG_ACPI_BOOT) for IA32 and IA64 UP/SMP systems.  This code
   16687 facilitates the use of ACPI tables (e.g. MADT, SRAT) rather than
   16688 legacy BIOS interfaces (e.g. MPS) for the configuration of system
   16689 processors, memory, and interrupts during setup_arch().  Note that
   16690 this patch does not include the required architecture-specific
   16691 changes required to apply this information -- subsequent patches
   16692 will be posted for both IA32 and IA64 to achieve this.
   16693 
   16694 Added low-level sleep support for IA32 platforms, courtesy of Pat
   16695 Mochel. This allows IA32 systems to transition to/from various
   16696 sleeping states (e.g. S1, S3), although the lack of a centralized
   16697 driver model and power-manageable drivers will prevent its
   16698 (successful) use on most systems.
   16699 
   16700 Revamped the ACPI 'menuconfig' layout: created new "ACPI Support"
   16701 submenu, unified IA32 and IA64 options, added new "Boot using ACPI
   16702 tables" option, etc.
   16703 
   16704 Increased the default timeout for the EC driver from 1ms to 10ms
   16705 (1000 cycles of 10us) to try to address AE_TIME errors during EC
   16706 transactions.
   16707 
   16708  ----------------------------------------
   16709 Summary of changes for this label: 11_02_01
   16710 
   16711 1) ACPI CA Core Subsystem:
   16712 
   16713 ACPI 2.0 Support: Implemented ACPI 2.0 64-bit Field access
   16714 (QWordAcc keyword). All ACPI 2.0 64-bit support is now
   16715 implemented.
   16716 
   16717 OSL Interfaces: Several of the OSL (AcpiOs*) interfaces required
   16718 changes to support ACPI 2.0 Qword field access.  Read/Write
   16719 PciConfiguration(), Read/Write Memory(), and Read/Write Port() now
   16720 accept an ACPI_INTEGER (64 bits) as the value parameter.  Also,
   16721 the value parameter for the address space handler interface is now
   16722 an ACPI_INTEGER.  OSL implementations of these interfaces must now
   16723 handle the case where the Width parameter is 64.
   16724 
   16725 Index Fields: Fixed a problem where unaligned bit assembly and
   16726 disassembly for IndexFields was not supported correctly.
   16727 
   16728 Index and Bank Fields:  Nested Index and Bank Fields are now
   16729 supported. During field access, a check is performed to ensure
   16730 that the value written to an Index or Bank register is not out of
   16731 the range of the register.  The Index (or Bank) register is
   16732 written before each access to the field data. Future support will
   16733 include allowing individual IndexFields to be wider than the
   16734 DataRegister width.
   16735 
   16736 Fields: Fixed a problem where the AML interpreter was incorrectly
   16737 attempting to write beyond the end of a Field/OpRegion.  This was
   16738 a boundary case that occurred when a DWORD field was written to a
   16739 BYTE access OpRegion, forcing multiple writes and causing the
   16740 interpreter to write one datum too many.
   16741 
   16742 Fields: Fixed a problem with Field/OpRegion access where the
   16743 starting bit address of a field was incorrectly calculated if the
   16744 current access type was wider than a byte (WordAcc, DwordAcc, or
   16745 QwordAcc).
   16746 
   16747 Fields: Fixed a problem where forward references to individual
   16748 FieldUnits (individual Field names within a Field definition) were
   16749 not resolved during the AML table load.
   16750 
   16751 Fields: Fixed a problem where forward references from a Field
   16752 definition to the parent Operation Region definition were not
   16753 resolved during the AML table load.
   16754 
   16755 Fields: Duplicate FieldUnit names within a scope are now detected
   16756 during AML table load.
   16757 
   16758 Acpi Interfaces: Fixed a problem where the AcpiGetName() interface
   16759 returned an incorrect name for the root node.
   16760 
   16761 Code and Data Size: Code and Data optimizations have permitted new
   16762 feature development with an actual reduction in the library size.
   16763 Current core subsystem library sizes are shown below.  These are
   16764 the code and data sizes for the acpica.lib produced by the
   16765 Microsoft Visual C++ 6.0 compiler, and these values do not include
   16766 any ACPI driver or OSPM code.  The debug version of the code
   16767 includes the debug output trace mechanism and has a larger code
   16768 and data size.  Note that these values will vary depending on the
   16769 efficiency of the compiler and the compiler options used during
   16770 generation.
   16771 
   16772   Previous Release (10_18_01):
   16773      Non-Debug Version:  63.9K Code,   5.1K Data,   69.0K Total
   16774      Debug Version:     136.7K Code,  57.4K Data,  194.2K Total
   16775 
   16776   Current Release:
   16777      Non-Debug Version:  63.7K Code,   5.2K Data,   68.9K Total
   16778      Debug Version:     134.5K Code,  55.4K Data,  189.9K Total
   16779 
   16780  2) Linux:
   16781 
   16782 Improved /proc processor output (Pavel Machek) Re-added
   16783 MODULE_LICENSE("GPL") to all modules.
   16784 
   16785  3) ASL Compiler version X2030:
   16786 
   16787 Duplicate FieldUnit names within a scope are now detected and
   16788 flagged as errors.
   16789 
   16790  4) Documentation:
   16791 
   16792 Programmer Reference updated to reflect OSL and address space
   16793 handler interface changes described above.
   16794 
   16795 ----------------------------------------
   16796 Summary of changes for this label: 10_18_01
   16797 
   16798 ACPI CA Core Subsystem:
   16799 
   16800 Fixed a problem with the internal object reference count mechanism
   16801 that occasionally caused premature object deletion. This resolves
   16802 all of the outstanding problem reports where an object is deleted
   16803 in the middle of an interpreter evaluation.  Although this problem
   16804 only showed up in rather obscure cases, the solution to the
   16805 problem involved an adjustment of all reference counts involving
   16806 objects attached to namespace nodes.
   16807 
   16808 Fixed a problem with Field support in the interpreter where
   16809 writing to an aligned field whose length is an exact multiple (2
   16810 or greater) of the field access granularity would cause an attempt
   16811 to write beyond the end of the field.
   16812 
   16813 The top level AML opcode execution functions within the
   16814 interpreter have been renamed with a more meaningful and
   16815 consistent naming convention.  The modules exmonad.c and
   16816 exdyadic.c were eliminated.  New modules are exoparg1.c,
   16817 exoparg2.c, exoparg3.c, and exoparg6.c.
   16818 
   16819 Support for the ACPI 2.0 "Mid" ASL operator has been implemented.
   16820 
   16821 Fixed a problem where the AML debugger was causing some internal
   16822 objects to not be deleted during subsystem termination.
   16823 
   16824 Fixed a problem with the external AcpiEvaluateObject interface
   16825 where the subsystem would fault if the named object to be
   16826 evaluated refered to a constant such as Zero, Ones, etc.
   16827 
   16828 Fixed a problem with IndexFields and BankFields where the
   16829 subsystem would fault if the index, data, or bank registers were
   16830 not defined in the same scope as the field itself.
   16831 
   16832 Added printf format string checking for compilers that support
   16833 this feature.  Corrected more than 50 instances of issues with
   16834 format specifiers within invocations of ACPI_DEBUG_PRINT
   16835 throughout the core subsystem code.
   16836 
   16837 The ASL "Revision" operator now returns the ACPI support level
   16838 implemented in the core - the value "2" since the ACPI 2.0 support
   16839 is more than 50% implemented.
   16840 
   16841 Enhanced the output of the AML debugger "dump namespace" command
   16842 to output in a more human-readable form.
   16843 
   16844 Current core subsystem library code sizes are shown below.  These
   16845 
   16846 are the code and data sizes for the acpica.lib produced by the
   16847 Microsoft Visual C++ 6.0 compiler, and these values do not include
   16848 any ACPI driver or OSPM code.  The debug version of the code
   16849 includes the full debug trace mechanism -- leading to a much
   16850 
   16851 larger code and data size.  Note that these values will vary
   16852 depending on the efficiency of the compiler and the compiler
   16853 options used during generation.
   16854 
   16855      Previous Label (09_20_01):
   16856      Non-Debug Version:    65K Code,     5K Data,     70K Total
   16857      Debug Version:       138K Code,    58K Data,    196K Total
   16858 
   16859      This Label:
   16860 
   16861      Non-Debug Version:  63.9K Code,   5.1K Data,   69.0K Total
   16862      Debug Version:     136.7K Code,  57.4K Data,  194.2K Total
   16863 
   16864 Linux:
   16865 
   16866 Implemented a "Bad BIOS Blacklist" to track machines that have
   16867 known ASL/AML problems.
   16868 
   16869 Enhanced the /proc interface for the thermal zone driver and added
   16870 support for _HOT (the critical suspend trip point).  The 'info'
   16871 file now includes threshold/policy information, and allows setting
   16872 of _SCP (cooling preference) and _TZP (polling frequency) values
   16873 to the 'info' file. Examples: "echo tzp=5 > info" sets the polling
   16874 frequency to 5 seconds, and "echo scp=1 > info" sets the cooling
   16875 preference to the passive/quiet mode (if supported by the ASL).
   16876 
   16877 Implemented a workaround for a gcc bug that resuted in an OOPs
   16878 when loading the control method battery driver.
   16879 
   16880  ----------------------------------------
   16881 Summary of changes for this label: 09_20_01
   16882 
   16883  ACPI CA Core Subsystem:
   16884 
   16885 The AcpiEnableEvent and AcpiDisableEvent interfaces have been
   16886 modified to allow individual GPE levels to be flagged as wake-
   16887 enabled (i.e., these GPEs are to remain enabled when the platform
   16888 sleeps.)
   16889 
   16890 The AcpiEnterSleepState and AcpiLeaveSleepState interfaces now
   16891 support wake-enabled GPEs.  This means that upon entering the
   16892 sleep state, all GPEs that are not wake-enabled are disabled.
   16893 When leaving the sleep state, these GPEs are reenabled.
   16894 
   16895 A local double-precision divide/modulo module has been added to
   16896 enhance portability to OS kernels where a 64-bit math library is
   16897 not available.  The new module is "utmath.c".
   16898 
   16899 Several optimizations have been made to reduce the use of CPU
   16900 stack.  Originally over 2K, the maximum stack usage is now below
   16901 2K at 1860  bytes (1.82k)
   16902 
   16903 Fixed a problem with the AcpiGetFirmwareTable interface where the
   16904 root table pointer was not mapped into a logical address properly.
   16905 
   16906 Fixed a problem where a NULL pointer was being dereferenced in the
   16907 interpreter code for the ASL Notify operator.
   16908 
   16909 Fixed a problem where the use of the ASL Revision operator
   16910 returned an error. This operator now returns the current version
   16911 of the ACPI CA core subsystem.
   16912 
   16913 Fixed a problem where objects passed as control method parameters
   16914 to AcpiEvaluateObject were always deleted at method termination.
   16915 However, these objects may end up being stored into the namespace
   16916 by the called method.  The object reference count mechanism was
   16917 applied to these objects instead of a force delete.
   16918 
   16919 Fixed a problem where static strings or buffers (contained in the
   16920 AML code) that are declared as package elements within the ASL
   16921 code could cause a fault because the interpreter would attempt to
   16922 delete them.  These objects are now marked with the "static
   16923 object" flag to prevent any attempt to delete them.
   16924 
   16925 Implemented an interpreter optimization to use operands directly
   16926 from the state object instead of extracting the operands to local
   16927 variables.  This reduces stack use and code size, and improves
   16928 performance.
   16929 
   16930 The module exxface.c was eliminated as it was an unnecessary extra
   16931 layer of code.
   16932 
   16933 Current core subsystem library code sizes are shown below.  These
   16934 are the code and data sizes for the acpica.lib produced by the
   16935 Microsoft Visual C++ 6.0 compiler, and these values do not include
   16936 any ACPI driver or OSPM code.  The debug version of the code
   16937 includes the full debug trace mechanism -- leading to a much
   16938 larger code and data size.  Note that these values will vary
   16939 depending on the efficiency of the compiler and the compiler
   16940 options used during generation.
   16941 
   16942   Non-Debug Version:  65K Code,   5K Data,   70K Total
   16943 (Previously 69K)   Debug Version:     138K Code,  58K Data,  196K
   16944 Total  (Previously 195K)
   16945 
   16946 Linux:
   16947 
   16948 Support for ACPI 2.0 64-bit integers has been added.   All ACPI
   16949 Integer objects are now 64 bits wide
   16950 
   16951 All Acpi data types and structures are now in lower case.  Only
   16952 Acpi macros are upper case for differentiation.
   16953 
   16954  Documentation:
   16955 
   16956 Changes to the external interfaces as described above.
   16957 
   16958  ----------------------------------------
   16959 Summary of changes for this label: 08_31_01
   16960 
   16961  ACPI CA Core Subsystem:
   16962 
   16963 A bug with interpreter implementation of the ASL Divide operator
   16964 was found and fixed.  The implicit function return value (not the
   16965 explicit store operands) was returning the remainder instead of
   16966 the quotient.  This was a longstanding bug and it fixes several
   16967 known outstanding issues on various platforms.
   16968 
   16969 The ACPI_DEBUG_PRINT and function trace entry/exit macros have
   16970 been further optimized for size.  There are 700 invocations of the
   16971 DEBUG_PRINT macro alone, so each optimization reduces the size of
   16972 the debug version of the subsystem significantly.
   16973 
   16974 A stack trace mechanism has been implemented.  The maximum stack
   16975 usage is about 2K on 32-bit platforms.  The debugger command "stat
   16976 stack" will display the current maximum stack usage.
   16977 
   16978 All public symbols and global variables within the subsystem are
   16979 now prefixed with the string "Acpi".  This keeps all of the
   16980 symbols grouped together in a kernel map, and avoids conflicts
   16981 with other kernel subsystems.
   16982 
   16983 Most of the internal fixed lookup tables have been moved into the
   16984 code segment via the const operator.
   16985 
   16986 Several enhancements have been made to the interpreter to both
   16987 reduce the code size and improve performance.
   16988 
   16989 Current core subsystem library code sizes are shown below.  These
   16990 are the code and data sizes for the acpica.lib produced by the
   16991 Microsoft Visual C++ 6.0 compiler, and these values do not include
   16992 any ACPI driver or OSPM code.  The debug version of the code
   16993 includes the full debug trace mechanism which contains over 700
   16994 invocations of the DEBUG_PRINT macro, 500 function entry macro
   16995 invocations, and over 900 function exit macro invocations --
   16996 leading to a much larger code and data size.  Note that these
   16997 values will vary depending on the efficiency of the compiler and
   16998 the compiler options used during generation.
   16999 
   17000         Non-Debug Version:  64K Code,   5K Data,   69K Total
   17001 Debug Version:     137K Code,  58K Data,  195K Total
   17002 
   17003  Linux:
   17004 
   17005 Implemented wbinvd() macro, pending a kernel-wide definition.
   17006 
   17007 Fixed /proc/acpi/event to handle poll() and short reads.
   17008 
   17009  ASL Compiler, version X2026:
   17010 
   17011 Fixed a problem introduced in the previous label where the AML
   17012 
   17013 code emitted for package objects produced packages with zero
   17014 length.
   17015 
   17016  ----------------------------------------
   17017 Summary of changes for this label: 08_16_01
   17018 
   17019 ACPI CA Core Subsystem:
   17020 
   17021 The following ACPI 2.0 ASL operators have been implemented in the
   17022 AML interpreter (These are already supported by the Intel ASL
   17023 compiler):  ToDecimalString, ToHexString, ToString, ToInteger, and
   17024 ToBuffer.  Support for 64-bit AML constants is implemented in the
   17025 AML parser, debugger, and disassembler.
   17026 
   17027 The internal memory tracking mechanism (leak detection code) has
   17028 been upgraded to reduce the memory overhead (a separate tracking
   17029 block is no longer allocated for each memory allocation), and now
   17030 supports all of the internal object caches.
   17031 
   17032 The data structures and code for the internal object caches have
   17033 been coelesced and optimized so that there is a single cache and
   17034 memory list data structure and a single group of functions that
   17035 implement generic cache management.  This has reduced the code
   17036 size in both the debug and release versions of the subsystem.
   17037 
   17038 The DEBUG_PRINT macro(s) have been optimized for size and replaced
   17039 by ACPI_DEBUG_PRINT.  The syntax for this macro is slightly
   17040 different, because it generates a single call to an internal
   17041 function.  This results in a savings of about 90 bytes per
   17042 invocation, resulting in an overall code and data savings of about
   17043 16% in the debug version of the subsystem.
   17044 
   17045  Linux:
   17046 
   17047 Fixed C3 disk corruption problems and re-enabled C3 on supporting
   17048 machines.
   17049 
   17050 Integrated low-level sleep code by Patrick Mochel.
   17051 
   17052 Further tweaked source code Linuxization.
   17053 
   17054 Other minor fixes.
   17055 
   17056  ASL Compiler:
   17057 
   17058 Support for ACPI 2.0 variable length packages is fixed/completed.
   17059 
   17060 Fixed a problem where the optional length parameter for the ACPI
   17061 2.0 ToString operator.
   17062 
   17063 Fixed multiple extraneous error messages when a syntax error is
   17064 detected within the declaration line of a control method.
   17065 
   17066  ----------------------------------------
   17067 Summary of changes for this label: 07_17_01
   17068 
   17069 ACPI CA Core Subsystem:
   17070 
   17071 Added a new interface named AcpiGetFirmwareTable to obtain any
   17072 ACPI table via the ACPI signature.  The interface can be called at
   17073 any time during kernel initialization, even before the kernel
   17074 virtual memory manager is initialized and paging is enabled.  This
   17075 allows kernel subsystems to obtain ACPI tables very early, even
   17076 before the ACPI CA subsystem is initialized.
   17077 
   17078 Fixed a problem where Fields defined with the AnyAcc attribute
   17079 could be resolved to the incorrect address under the following
   17080 conditions: 1) the field width is larger than 8 bits and 2) the
   17081 parent operation region is not defined on a DWORD boundary.
   17082 
   17083 Fixed a problem where the interpreter is not being locked during
   17084 namespace initialization (during execution of the _INI control
   17085 methods), causing an error when an attempt is made to release it
   17086 later.
   17087 
   17088 ACPI 2.0 support in the AML Interpreter has begun and will be
   17089 ongoing throughout the rest of this year.  In this label, The Mod
   17090 operator is implemented.
   17091 
   17092 Added a new data type to contain full PCI addresses named
   17093 ACPI_PCI_ID. This structure contains the PCI Segment, Bus, Device,
   17094 and Function values.
   17095 
   17096  Linux:
   17097 
   17098 Enhanced the Linux version of the source code to change most
   17099 capitalized ACPI type names to lowercase. For example, all
   17100 instances of ACPI_STATUS are changed to acpi_status.  This will
   17101 result in a large diff, but the change is strictly cosmetic and
   17102 aligns the CA code closer to the Linux coding standard.
   17103 
   17104 OSL Interfaces:
   17105 
   17106 The interfaces to the PCI configuration space have been changed to
   17107 add the PCI Segment number and to split the single 32-bit combined
   17108 DeviceFunction field into two 16-bit fields.  This was
   17109 accomplished by moving the four values that define an address in
   17110 PCI configuration space (segment, bus, device, and function) to
   17111 the new ACPI_PCI_ID structure.
   17112 
   17113 The changes to the PCI configuration space interfaces led to a
   17114 reexamination of the complete set of address space access
   17115 interfaces for PCI, I/O, and Memory.  The previously existing 18
   17116 interfaces have proven difficult to maintain (any small change
   17117 must be propagated across at least 6 interfaces) and do not easily
   17118 allow for future expansion to 64 bits if necessary.  Also, on some
   17119 systems, it would not be appropriate to demultiplex the access
   17120 width (8, 16, 32,or 64) before calling the OSL if the
   17121 corresponding native OS interfaces contain a similar access width
   17122 parameter.  For these reasons, the 18 address space interfaces
   17123 have been replaced by these 6 new ones:
   17124 
   17125 AcpiOsReadPciConfiguration
   17126 AcpiOsWritePciConfiguration
   17127 AcpiOsReadMemory
   17128 AcpiOsWriteMemory
   17129 AcpiOsReadPort
   17130 AcpiOsWritePort
   17131 
   17132 Added a new interface named AcpiOsGetRootPointer to allow the OSL
   17133 to perform the platform and/or OS-specific actions necessary to
   17134 obtain the ACPI RSDP table pointer.  On IA-32 platforms, this
   17135 interface will simply call down to the CA core to perform the low-
   17136 memory search for the table.  On IA-64, the RSDP is obtained from
   17137 EFI.  Migrating this interface to the OSL allows the CA core to
   17138 
   17139 remain OS and platform independent.
   17140 
   17141 Added a new interface named AcpiOsSignal to provide a generic
   17142 "function code and pointer" interface for various miscellaneous
   17143 signals and notifications that must be made to the host OS.   The
   17144 first such signals are intended to support the ASL Fatal and
   17145 Breakpoint operators.  In the latter case, the AcpiOsBreakpoint
   17146 interface has been obsoleted.
   17147 
   17148 The definition of the AcpiFormatException interface has been
   17149 changed to simplify its use.  The caller no longer must supply a
   17150 buffer to the call; A pointer to a const string is now returned
   17151 directly.  This allows the call to be easily used in printf
   17152 statements, etc. since the caller does not have to manage a local
   17153 buffer.
   17154 
   17155 
   17156  ASL Compiler, Version X2025:
   17157 
   17158 The ACPI 2.0 Switch/Case/Default operators have been implemented
   17159 and are fully functional.  They will work with all ACPI 1.0
   17160 interpreters, since the operators are simply translated to If/Else
   17161 pairs.
   17162 
   17163 The ACPI 2.0 ElseIf operator is implemented and will also work
   17164 with 1.0 interpreters, for the same reason.
   17165 
   17166 Implemented support for ACPI 2.0 variable-length packages.  These
   17167 packages have a separate opcode, and their size is determined by
   17168 the interpreter at run-time.
   17169 
   17170 Documentation The ACPI CA Programmer Reference has been updated to
   17171 reflect the new interfaces and changes to existing interfaces.
   17172 
   17173  ------------------------------------------
   17174 Summary of changes for this label: 06_15_01
   17175 
   17176  ACPI CA Core Subsystem:
   17177 
   17178 Fixed a problem where a DWORD-accessed field within a Buffer
   17179 object would get its byte address inadvertently rounded down to
   17180 the nearest DWORD.  Buffers are always Byte-accessible.
   17181 
   17182  ASL Compiler, version X2024:
   17183 
   17184 Fixed a problem where the Switch() operator would either fault or
   17185 hang the compiler.  Note however, that the AML code for this ACPI
   17186 2.0 operator is not yet implemented.
   17187 
   17188 Compiler uses the new AcpiOsGetTimer interface to obtain compile
   17189 timings.
   17190 
   17191 Implementation of the CreateField operator automatically converts
   17192 a reference to a named field within a resource descriptor from a
   17193 byte offset to a bit offset if required.
   17194 
   17195 Added some missing named fields from the resource descriptor
   17196 support. These are the names that are automatically created by the
   17197 compiler to reference fields within a descriptor.  They are only
   17198 valid at compile time and are not passed through to the AML
   17199 interpreter.
   17200 
   17201 Resource descriptor named fields are now typed as Integers and
   17202 subject to compile-time typechecking when used in expressions.
   17203 
   17204  ------------------------------------------
   17205 Summary of changes for this label: 05_18_01
   17206 
   17207  ACPI CA Core Subsystem:
   17208 
   17209 Fixed a couple of problems in the Field support code where bits
   17210 from adjacent fields could be returned along with the proper field
   17211 bits. Restructured the field support code to improve performance,
   17212 readability and maintainability.
   17213 
   17214 New DEBUG_PRINTP macro automatically inserts the procedure name
   17215 into the output, saving hundreds of copies of procedure name
   17216 strings within the source, shrinking the memory footprint of the
   17217 debug version of the core subsystem.
   17218 
   17219  Source Code Structure:
   17220 
   17221 The source code directory tree was restructured to reflect the
   17222 current organization of the component architecture.  Some files
   17223 and directories have been moved and/or renamed.
   17224 
   17225  Linux:
   17226 
   17227 Fixed leaking kacpidpc processes.
   17228 
   17229 Fixed queueing event data even when /proc/acpi/event is not
   17230 opened.
   17231 
   17232  ASL Compiler, version X2020:
   17233 
   17234 Memory allocation performance enhancement - over 24X compile time
   17235 improvement on large ASL files.  Parse nodes and namestring
   17236 buffers are now allocated from a large internal compiler buffer.
   17237 
   17238 The temporary .SRC file is deleted unless the "-s" option is
   17239 specified
   17240 
   17241 The "-d" debug output option now sends all output to the .DBG file
   17242 instead of the console.
   17243 
   17244 "External" second parameter is now optional
   17245 
   17246 "ElseIf" syntax now properly allows the predicate
   17247 
   17248 Last operand to "Load" now recognized as a Target operand
   17249 
   17250 Debug object can now be used anywhere as a normal object.
   17251 
   17252 ResourceTemplate now returns an object of type BUFFER
   17253 
   17254 EISAID now returns an object of type INTEGER
   17255 
   17256 "Index" now works with a STRING operand
   17257 
   17258 "LoadTable" now accepts optional parameters
   17259 
   17260 "ToString" length parameter is now optional
   17261 
   17262 "Interrupt (ResourceType," parse error fixed.
   17263 
   17264 "Register" with a user-defined region space parse error fixed
   17265 
   17266 Escaped backslash at the end of a string ("\\") scan/parse error
   17267 fixed
   17268 
   17269 "Revision" is now an object of type INTEGER.
   17270 
   17271 
   17272 
   17273 ------------------------------------------
   17274 Summary of changes for this label: 05_02_01
   17275 
   17276 Linux:
   17277 
   17278 /proc/acpi/event now blocks properly.
   17279 
   17280 Removed /proc/sys/acpi. You can still dump your DSDT from
   17281 /proc/acpi/dsdt.
   17282 
   17283  ACPI CA Core Subsystem:
   17284 
   17285 Fixed a problem introduced in the previous label where some of the
   17286 "small" resource descriptor types were not recognized.
   17287 
   17288 Improved error messages for the case where an ASL Field is outside
   17289 the range of the parent operation region.
   17290 
   17291  ASL Compiler, version X2018:
   17292 
   17293 
   17294 Added error detection for ASL Fields that extend beyond the length
   17295 of the parent operation region (only if the length of the region
   17296 is known at compile time.)  This includes fields that have a
   17297 minimum access width that is smaller than the parent region, and
   17298 individual field units that are partially or entirely beyond the
   17299 extent of the parent.
   17300 
   17301 
   17302 
   17303 ------------------------------------------
   17304 Summary of changes for this label: 04_27_01
   17305 
   17306  ACPI CA Core Subsystem:
   17307 
   17308 Fixed a problem where the namespace mutex could be released at the
   17309 wrong time during execution of AcpiRemoveAddressSpaceHandler.
   17310 
   17311 Added optional thread ID output for debug traces, to simplify
   17312 debugging of multiple threads.  Added context switch notification
   17313 when the debug code realizes that a different thread is now
   17314 executing ACPI code.
   17315 
   17316 Some additional external data types have been prefixed with the
   17317 string "ACPI_" for consistency.  This may effect existing code.
   17318 The data types affected are the external callback typedefs - e.g.,
   17319 
   17320 WALK_CALLBACK becomes ACPI_WALK_CALLBACK.
   17321 
   17322  Linux:
   17323 
   17324 Fixed an issue with the OSL semaphore implementation where a
   17325 thread was waking up with an error from receiving a SIGCHLD
   17326 signal.
   17327 
   17328 Linux version of ACPI CA now uses the system C library for string
   17329 manipulation routines instead of a local implementation.
   17330 
   17331 Cleaned up comments and removed TBDs.
   17332 
   17333  ASL Compiler, version X2017:
   17334 
   17335 Enhanced error detection and reporting for all file I/O
   17336 operations.
   17337 
   17338  Documentation:
   17339 
   17340 Programmer Reference updated to version 1.06.
   17341 
   17342 
   17343 
   17344 ------------------------------------------
   17345 Summary of changes for this label: 04_13_01
   17346 
   17347  ACPI CA Core Subsystem:
   17348 
   17349 Restructured support for BufferFields and RegionFields.
   17350 BankFields support is now fully operational.  All known 32-bit
   17351 limitations on field sizes have been removed.  Both BufferFields
   17352 and (Operation) RegionFields are now supported by the same field
   17353 management code.
   17354 
   17355 Resource support now supports QWORD address and IO resources. The
   17356 16/32/64 bit address structures and the Extended IRQ structure
   17357 have been changed to properly handle Source Resource strings.
   17358 
   17359 A ThreadId of -1 is now used to indicate a "mutex not acquired"
   17360 condition internally and must never be returned by AcpiOsThreadId.
   17361 This reserved value was changed from 0 since Unix systems allow a
   17362 thread ID of 0.
   17363 
   17364 Linux:
   17365 
   17366 Driver code reorganized to enhance portability
   17367 
   17368 Added a kernel configuration option to control ACPI_DEBUG
   17369 
   17370 Fixed the EC driver to honor _GLK.
   17371 
   17372 ASL Compiler, version X2016:
   17373 
   17374 Fixed support for the "FixedHw" keyword.  Previously, the FixedHw
   17375 address space was set to 0, not 0x7f as it should be.
   17376 
   17377  ------------------------------------------
   17378 Summary of changes for this label: 03_13_01
   17379 
   17380  ACPI CA Core Subsystem:
   17381 
   17382 During ACPI initialization, the _SB_._INI method is now run if
   17383 present.
   17384 
   17385 Notify handler fix - notifies are deferred until the parent method
   17386 completes execution.  This fixes the "mutex already acquired"
   17387 issue seen occasionally.
   17388 
   17389 Part of the "implicit conversion" rules in ACPI 2.0 have been
   17390 found to cause compatibility problems with existing ASL/AML.  The
   17391 convert "result-to-target-type" implementation has been removed
   17392 for stores to method Args and Locals.  Source operand conversion
   17393 is still fully implemented.  Possible changes to ACPI 2.0
   17394 specification pending.
   17395 
   17396 Fix to AcpiRsCalculatePciRoutingTableLength to return correct
   17397 length.
   17398 
   17399 Fix for compiler warnings for 64-bit compiles.
   17400 
   17401  Linux:
   17402 
   17403 /proc output aligned for easier parsing.
   17404 
   17405 Release-version compile problem fixed.
   17406 
   17407 New kernel configuration options documented in Configure.help.
   17408 
   17409 IBM 600E - Fixed Sleep button may generate "Invalid <NULL>
   17410 context" message.
   17411 
   17412  OSPM:
   17413 
   17414 Power resource driver integrated with bus manager.
   17415 
   17416 Fixed kernel fault during active cooling for thermal zones.
   17417 
   17418 Source Code:
   17419 
   17420 The source code tree has been restructured.
   17421 
   17422 
   17423 
   17424 ------------------------------------------
   17425 Summary of changes for this label: 03_02_01
   17426 
   17427  Linux OS Services Layer (OSL):
   17428 
   17429 Major revision of all Linux-specific code.
   17430 
   17431 Modularized all ACPI-specific drivers.
   17432 
   17433 Added new thermal zone and power resource drivers.
   17434 
   17435 Revamped /proc interface (new functionality is under /proc/acpi).
   17436 
   17437 New kernel configuration options.
   17438 
   17439  Linux known issues:
   17440 
   17441 New kernel configuration options not documented in Configure.help
   17442 yet.
   17443 
   17444 
   17445 Module dependencies not currently implemented. If used, they
   17446 should be loaded in this order: busmgr, power, ec, system,
   17447 processor, battery, ac_adapter, button, thermal.
   17448 
   17449 Modules will not load if CONFIG_MODVERSION is set.
   17450 
   17451 IBM 600E - entering S5 may reboot instead of shutting down.
   17452 
   17453 IBM 600E - Sleep button may generate "Invalid <NULL> context"
   17454 message.
   17455 
   17456 Some systems may fail with "execution mutex already acquired"
   17457 message.
   17458 
   17459  ACPI CA Core Subsystem:
   17460 
   17461 Added a new OSL Interface, AcpiOsGetThreadId.  This was required
   17462 for the  deadlock detection code. Defined to return a non-zero, 32-
   17463 bit thread ID for the currently executing thread.  May be a non-
   17464 zero constant integer on single-thread systems.
   17465 
   17466 Implemented deadlock detection for internal subsystem mutexes.  We
   17467 may add conditional compilation for this code (debug only) later.
   17468 
   17469 ASL/AML Mutex object semantics are now fully supported.  This
   17470 includes multiple acquires/releases by owner and support for the
   17471 
   17472 Mutex SyncLevel parameter.
   17473 
   17474 A new "Force Release" mechanism automatically frees all ASL
   17475 Mutexes that have been acquired but not released when a thread
   17476 exits the interpreter.  This forces conformance to the ACPI spec
   17477 ("All mutexes must be released when an invocation exits") and
   17478 prevents deadlocked ASL threads.  This mechanism can be expanded
   17479 (later) to monitor other resource acquisitions if OEM ASL code
   17480 continues to misbehave (which it will).
   17481 
   17482 Several new ACPI exception codes have been added for the Mutex
   17483 support.
   17484 
   17485 Recursive method calls are now allowed and supported (the ACPI
   17486 spec does in fact allow recursive method calls.)  The number of
   17487 recursive calls is subject to the restrictions imposed by the
   17488 SERIALIZED method keyword and SyncLevel (ACPI 2.0) method
   17489 parameter.
   17490 
   17491 Implemented support for the SyncLevel parameter for control
   17492 methods (ACPI 2.0 feature)
   17493 
   17494 Fixed a deadlock problem when multiple threads attempted to use
   17495 the interpreter.
   17496 
   17497 Fixed a problem where the string length of a String package
   17498 element was not always set in a package returned from
   17499 AcpiEvaluateObject.
   17500 
   17501 Fixed a problem where the length of a String package element was
   17502 not always included in the length of the overall package returned
   17503 from AcpiEvaluateObject.
   17504 
   17505 Added external interfaces (Acpi*) to the ACPI debug memory
   17506 manager.  This manager keeps a list of all outstanding
   17507 allocations, and can therefore detect memory leaks and attempts to
   17508 free memory blocks more than once. Useful for code such as the
   17509 power manager, etc.  May not be appropriate for device drivers.
   17510 Performance with the debug code enabled is slow.
   17511 
   17512 The ACPI Global Lock is now an optional hardware element.
   17513 
   17514  ASL Compiler Version X2015:
   17515 
   17516 Integrated changes to allow the compiler to be generated on
   17517 multiple platforms.
   17518 
   17519 Linux makefile added to generate the compiler on Linux
   17520 
   17521  Source Code:
   17522 
   17523 All platform-specific headers have been moved to their own
   17524 subdirectory, Include/Platform.
   17525 
   17526 New source file added, Interpreter/ammutex.c
   17527 
   17528 New header file, Include/acstruct.h
   17529 
   17530  Documentation:
   17531 
   17532 The programmer reference has been updated for the following new
   17533 interfaces: AcpiOsGetThreadId AcpiAllocate AcpiCallocate AcpiFree
   17534 
   17535  ------------------------------------------
   17536 Summary of changes for this label: 02_08_01
   17537 
   17538 Core ACPI CA Subsystem: Fixed a problem where an error was
   17539 incorrectly returned if the return resource buffer was larger than
   17540 the actual data (in the resource interfaces).
   17541 
   17542 References to named objects within packages are resolved to the
   17543 
   17544 full pathname string before packages are returned directly (via
   17545 the AcpiEvaluateObject interface) or indirectly via the resource
   17546 interfaces.
   17547 
   17548 Linux OS Services Layer (OSL):
   17549 
   17550 Improved /proc battery interface.
   17551 
   17552 
   17553 Added C-state debugging output and other miscellaneous fixes.
   17554 
   17555 ASL Compiler Version X2014:
   17556 
   17557 All defined method arguments can now be used as local variables,
   17558 including the ones that are not actually passed in as parameters.
   17559 The compiler tracks initialization of the arguments and issues an
   17560 exception if they are used without prior assignment (just like
   17561 locals).
   17562 
   17563 The -o option now specifies a filename prefix that is used for all
   17564 output files, including the AML output file.  Otherwise, the
   17565 default behavior is as follows:  1) the AML goes to the file
   17566 specified in the DSDT.  2) all other output files use the input
   17567 source filename as the base.
   17568 
   17569  ------------------------------------------
   17570 Summary of changes for this label: 01_25_01
   17571 
   17572 Core ACPI CA Subsystem: Restructured the implementation of object
   17573 store support within the  interpreter.  This includes support for
   17574 the Store operator as well  as any ASL operators that include a
   17575 target operand.
   17576 
   17577 Partially implemented support for Implicit Result-to-Target
   17578 conversion. This is when a result object is converted on the fly
   17579 to the type of  an existing target object.  Completion of this
   17580 support is pending  further analysis of the ACPI specification
   17581 concerning this matter.
   17582 
   17583 CPU-specific code has been removed from the subsystem (hardware
   17584 directory).
   17585 
   17586 New Power Management Timer functions added
   17587 
   17588 Linux OS Services Layer (OSL): Moved system state transition code
   17589 to the core, fixed it, and modified  Linux OSL accordingly.
   17590 
   17591 Fixed C2 and C3 latency calculations.
   17592 
   17593 
   17594 We no longer use the compilation date for the version message on
   17595 initialization, but retrieve the version from AcpiGetSystemInfo().
   17596 
   17597 Incorporated for fix Sony VAIO machines.
   17598 
   17599 Documentation:  The Programmer Reference has been updated and
   17600 reformatted.
   17601 
   17602 
   17603 ASL Compiler:  Version X2013: Fixed a problem where the line
   17604 numbering and error reporting could get out  of sync in the
   17605 presence of multiple include files.
   17606 
   17607  ------------------------------------------
   17608 Summary of changes for this label: 01_15_01
   17609 
   17610 Core ACPI CA Subsystem:
   17611 
   17612 Implemented support for type conversions in the execution of the
   17613 ASL  Concatenate operator (The second operand is converted to
   17614 match the type  of the first operand before concatenation.)
   17615 
   17616 Support for implicit source operand conversion is partially
   17617 implemented.   The ASL source operand types Integer, Buffer, and
   17618 String are freely  interchangeable for most ASL operators and are
   17619 converted by the interpreter  on the fly as required.  Implicit
   17620 Target operand conversion (where the  result is converted to the
   17621 target type before storing) is not yet implemented.
   17622 
   17623 Support for 32-bit and 64-bit BCD integers is implemented.
   17624 
   17625 Problem fixed where a field read on an aligned field could cause a
   17626 read  past the end of the field.
   17627 
   17628 New exception, AE_AML_NO_RETURN_VALUE, is returned when a method
   17629 does not return a value, but the caller expects one.  (The ASL
   17630 compiler flags this as a warning.)
   17631 
   17632 ASL Compiler:
   17633 
   17634 Version X2011:
   17635 1. Static typechecking of all operands is implemented. This
   17636 prevents the use of invalid objects (such as using a Package where
   17637 an Integer is required) at compile time instead of at interpreter
   17638 run-time.
   17639 2. The ASL source line is printed with ALL errors and warnings.
   17640 3. Bug fix for source EOF without final linefeed.
   17641 4. Debug option is split into a parse trace and a namespace trace.
   17642 5. Namespace output option (-n) includes initial values for
   17643 integers and strings.
   17644 6. Parse-only option added for quick syntax checking.
   17645 7. Compiler checks for duplicate ACPI name declarations
   17646 
   17647 Version X2012:
   17648 1. Relaxed typechecking to allow interchangeability between
   17649 strings, integers, and buffers.  These types are now converted by
   17650 the interpreter at runtime.
   17651 2. Compiler reports time taken by each internal subsystem in the
   17652 debug         output file.
   17653 
   17654 
   17655  ------------------------------------------
   17656 Summary of changes for this label: 12_14_00
   17657 
   17658 ASL Compiler:
   17659 
   17660 This is the first official release of the compiler. Since the
   17661 compiler requires elements of the Core Subsystem, this label
   17662 synchronizes everything.
   17663 
   17664 ------------------------------------------
   17665 Summary of changes for this label: 12_08_00
   17666 
   17667 
   17668 Fixed a problem where named references within the ASL definition
   17669 of both OperationRegions and CreateXXXFields did not work
   17670 properly.  The symptom was an AE_AML_OPERAND_TYPE during
   17671 initialization of the region/field. This is similar (but not
   17672 related internally) to the problem that was fixed in the last
   17673 label.
   17674 
   17675 Implemented both 32-bit and 64-bit support for the BCD ASL
   17676 functions ToBCD and FromBCD.
   17677 
   17678 Updated all legal headers to include "2000" in the copyright
   17679 years.
   17680 
   17681  ------------------------------------------
   17682 Summary of changes for this label: 12_01_00
   17683 
   17684 Fixed a problem where method invocations within the ASL definition
   17685 of both OperationRegions and CreateXXXFields did not work
   17686 properly.  The symptom was an AE_AML_OPERAND_TYPE during
   17687 initialization of the region/field:
   17688 
   17689   nsinit-0209: AE_AML_OPERAND_TYPE while getting region arguments
   17690 [DEBG]   ammonad-0284: Exec_monadic2_r/Not: bad operand(s)
   17691 (0x3005)
   17692 
   17693 Fixed a problem where operators with more than one nested
   17694 subexpression would fail.  The symptoms were varied, by mostly
   17695 AE_AML_OPERAND_TYPE errors.  This was actually a rather serious
   17696 problem that has gone unnoticed until now.
   17697 
   17698   Subtract (Add (1,2), Multiply (3,4))
   17699 
   17700 Fixed a problem where AcpiGetHandle didn't quite get fixed in the
   17701 previous build (The prefix part of a relative path was handled
   17702 incorrectly).
   17703 
   17704 Fixed a problem where Operation Region initialization failed if
   17705 the operation region name was a "namepath" instead of a simple
   17706 "nameseg". Symptom was an AE_NO_OPERAND error.
   17707 
   17708 Fixed a problem where an assignment to a local variable via the
   17709 indirect RefOf mechanism only worked for the first such
   17710 assignment.  Subsequent assignments were ignored.
   17711 
   17712  ------------------------------------------
   17713 Summary of changes for this label: 11_15_00
   17714 
   17715 ACPI 2.0 table support with backwards support for ACPI 1.0 and the
   17716 0.71 extensions.  Note: although we can read ACPI 2.0 BIOS tables,
   17717 the AML  interpreter does NOT have support for the new 2.0 ASL
   17718 grammar terms at this time.
   17719 
   17720 All ACPI hardware access is via the GAS structures in the ACPI 2.0
   17721 FADT.
   17722 
   17723 All physical memory addresses across all platforms are now 64 bits
   17724 wide. Logical address width remains dependent on the platform
   17725 (i.e., "void *").
   17726 
   17727 AcpiOsMapMemory interface changed to a 64-bit physical address.
   17728 
   17729 The AML interpreter integer size is now 64 bits, as per the ACPI
   17730 2.0 specification.
   17731 
   17732 For backwards compatibility with ACPI 1.0, ACPI tables with a
   17733 revision number less than 2 use 32-bit integers only.
   17734 
   17735 Fixed a problem where the evaluation of OpRegion operands did not
   17736 always resolve them to numbers properly.
   17737 
   17738 ------------------------------------------
   17739 Summary of changes for this label: 10_20_00
   17740 
   17741 Fix for CBN_._STA issue.  This fix will allow correct access to
   17742 CBN_ OpRegions when the _STA returns 0x8.
   17743 
   17744 Support to convert ACPI constants (Ones, Zeros, One) to actual
   17745 values before a package object is returned
   17746 
   17747 Fix for method call as predicate to if/while construct causing
   17748 incorrect if/while behavior
   17749 
   17750 Fix for Else block package lengths sometimes calculated wrong (if
   17751 block > 63 bytes)
   17752 
   17753 Fix for Processor object length field, was always zero
   17754 
   17755 Table load abort if FACP sanity check fails
   17756 
   17757 Fix for problem with Scope(name) if name already exists
   17758 
   17759 Warning emitted if a named object referenced cannot be found
   17760 (resolved) during method execution.
   17761 
   17762 
   17763 
   17764 
   17765 
   17766 ------------------------------------------
   17767 Summary of changes for this label: 9_29_00
   17768 
   17769 New table initialization interfaces: AcpiInitializeSubsystem no
   17770 longer has any parameters AcpiFindRootPointer - Find the RSDP (if
   17771 necessary) AcpiLoadTables (RSDP) - load all tables found at RSDP-
   17772 >RSDT Obsolete Interfaces AcpiLoadFirmwareTables - replaced by
   17773 AcpiLoadTables
   17774 
   17775 Note: These interface changes require changes to all existing OSDs
   17776 
   17777 The PCI_Config default address space handler is always installed
   17778 at the root namespace object.
   17779 
   17780 -------------------------------------------
   17781 Summary of changes for this label: 09_15_00
   17782 
   17783 The new initialization architecture is implemented.  New
   17784 interfaces are: AcpiInitializeSubsystem (replaces AcpiInitialize)
   17785 AcpiEnableSubsystem Obsolete Interfaces: AcpiLoadNamespace
   17786 
   17787 (Namespace is automatically loaded when a table is loaded)
   17788 
   17789 The ACPI_OPERAND_OBJECT has been optimized to shrink its size from
   17790 52 bytes to 32 bytes.  There is usually one of these for every
   17791 namespace object, so the memory savings is significant.
   17792 
   17793 Implemented just-in-time evaluation of the CreateField operators.
   17794 
   17795 Bug fixes for IA-64 support have been integrated.
   17796 
   17797 Additional code review comments have been implemented
   17798 
   17799 The so-called "third pass parse" has been replaced by a final walk
   17800 through the namespace to initialize all operation regions (address
   17801 spaces) and fields that have not yet been initialized during the
   17802 execution of the various _INI and REG methods.
   17803 
   17804 New file - namespace/nsinit.c
   17805 
   17806 -------------------------------------------
   17807 Summary of changes for this label: 09_01_00
   17808 
   17809 Namespace manager data structures have been reworked to change the
   17810 primary  object from a table to a single object.  This has
   17811 resulted in dynamic memory  savings of 3X within the namespace and
   17812 2X overall in the ACPI CA subsystem.
   17813 
   17814 Fixed problem where the call to AcpiEvFindPciRootBuses was
   17815 inadvertently left  commented out.
   17816 
   17817 Reduced the warning count when generating the source with the GCC
   17818 compiler.
   17819 
   17820 Revision numbers added to each module header showing the
   17821 SourceSafe version of the file.  Please refer to this version
   17822 number when giving us feedback or comments on individual modules.
   17823 
   17824 The main object types within the subsystem have been renamed to
   17825 clarify their  purpose:
   17826 
   17827 ACPI_INTERNAL_OBJECT -> ACPI_OPERAND_OBJECT
   17828 ACPI_GENERIC_OP -> ACPI_PARSE_OBJECT
   17829 ACPI_NAME_TABLE_ENTRY -> ACPI_NAMESPACE_NODE
   17830 
   17831 NOTE: no changes to the initialization sequence are included in
   17832 this label.
   17833 
   17834 -------------------------------------------
   17835 Summary of changes for this label: 08_23_00
   17836 
   17837 Fixed problem where TerminateControlMethod was being called
   17838 multiple times per  method
   17839 
   17840 Fixed debugger problem where single stepping caused a semaphore to
   17841 be  oversignalled
   17842 
   17843 Improved performance through additional parse object caching -
   17844 added  ACPI_EXTENDED_OP type
   17845 
   17846 -------------------------------------------
   17847 Summary of changes for this label: 08_10_00
   17848 
   17849 Parser/Interpreter integration:  Eliminated the creation of
   17850 complete parse trees  for ACPI tables and control methods.
   17851 Instead, parse subtrees are created and  then deleted as soon as
   17852 they are processed (Either entered into the namespace or  executed
   17853 by the interpreter).  This reduces the use of dynamic kernel
   17854 memory  significantly. (about 10X)
   17855 
   17856 Exception codes broken into classes and renumbered.  Be sure to
   17857 recompile all  code that includes acexcep.h.  Hopefully we won't
   17858 have to renumber the codes  again now that they are split into
   17859 classes (environment, programmer, AML code,  ACPI table, and
   17860 internal).
   17861 
   17862 Fixed some additional alignment issues in the Resource Manager
   17863 subcomponent
   17864 
   17865 Implemented semaphore tracking in the AcpiExec utility, and fixed
   17866 several places  where mutexes/semaphores were being unlocked
   17867 without a corresponding lock  operation.  There are no known
   17868 semaphore or mutex "leaks" at this time.
   17869 
   17870 Fixed the case where an ASL Return operator is used to return an
   17871 unnamed  package.
   17872 
   17873 -------------------------------------------
   17874 Summary of changes for this label: 07_28_00
   17875 
   17876 Fixed a problem with the way addresses were calculated in
   17877 AcpiAmlReadFieldData()  and AcpiAmlWriteFieldData(). This problem
   17878 manifested itself when a Field was  created with WordAccess or
   17879 DwordAccess, but the field unit defined within the  Field was less
   17880 
   17881 than a Word or Dword.
   17882 
   17883 Fixed a problem in AmlDumpOperands() module's loop to pull
   17884 operands off of the  operand stack to display information. The
   17885 problem manifested itself as a TLB  error on 64-bit systems when
   17886 accessing an operand stack with two or more  operands.
   17887 
   17888 Fixed a problem with the PCI configuration space handlers where
   17889 context was  getting confused between accesses. This required a
   17890 change to the generic address  space handler and address space
   17891 setup definitions. Handlers now get both a  global handler context
   17892 (this is the one passed in by the user when executing
   17893 AcpiInstallAddressSpaceHandler() and a specific region context
   17894 that is unique to  each region (For example, the _ADR, _SEG and
   17895 _BBN values associated with a  specific region). The generic
   17896 function definitions have changed to the  following:
   17897 
   17898 typedef ACPI_STATUS (*ADDRESS_SPACE_HANDLER) ( UINT32 Function,
   17899 UINT32 Address, UINT32 BitWidth, UINT32 *Value, void
   17900 *HandlerContext, // This used to be void *Context void
   17901 *RegionContext); // This is an additional parameter
   17902 
   17903 typedef ACPI_STATUS (*ADDRESS_SPACE_SETUP) ( ACPI_HANDLE
   17904 RegionHandle, UINT32 Function, void *HandlerContext,  void
   17905 **RegionContext); // This used to be **ReturnContext
   17906 
   17907 -------------------------------------------
   17908 Summary of changes for this label: 07_21_00
   17909 
   17910 Major file consolidation and rename.  All files within the
   17911 interpreter have been  renamed as well as most header files.  This
   17912 was done to prevent collisions with  existing files in the host
   17913 OSs -- filenames such as "config.h" and "global.h"  seem to be
   17914 quite common.  The VC project files have been updated.  All
   17915 makefiles  will require modification.
   17916 
   17917 The parser/interpreter integration continues in Phase 5 with the
   17918 implementation  of a complete 2-pass parse (the AML is parsed
   17919 twice) for each table;  This  avoids the construction of a huge
   17920 parse tree and therefore reduces the amount of  dynamic memory
   17921 required by the subsystem.  Greater use of the parse object cache
   17922 means that performance is unaffected.
   17923 
   17924 Many comments from the two code reviews have been rolled in.
   17925 
   17926 The 64-bit alignment support is complete.
   17927 
   17928 -------------------------------------------
   17929 Summary of changes for this label: 06_30_00
   17930 
   17931 With a nod and a tip of the hat to the technology of yesteryear,
   17932 we've added  support in the source code for 80 column output
   17933 devices.  The code is now mostly  constrained to 80 columns or
   17934 less to support environments and editors that 1)  cannot display
   17935 or print more than 80 characters on a single line, and 2) cannot
   17936 disable line wrapping.
   17937 
   17938 A major restructuring of the namespace data structure has been
   17939 completed.  The  result is 1) cleaner and more
   17940 understandable/maintainable code, and 2) a  significant reduction
   17941 in the dynamic memory requirement for each named ACPI  object
   17942 (almost half).
   17943 
   17944 -------------------------------------------
   17945 Summary of changes for this label: 06_23_00
   17946 
   17947 Linux support has been added.  In order to obtain approval to get
   17948 the ACPI CA  subsystem into the Linux kernel, we've had to make
   17949 quite a few changes to the  base subsystem that will affect all
   17950 users (all the changes are generic and OS- independent).  The
   17951 effects of these global changes have been somewhat far  reaching.
   17952 Files have been merged and/or renamed and interfaces have been
   17953 renamed.   The major changes are described below.
   17954 
   17955 Osd* interfaces renamed to AcpiOs* to eliminate namespace
   17956 pollution/confusion  within our target kernels.  All OSD
   17957 interfaces must be modified to match the new  naming convention.
   17958 
   17959 Files merged across the subsystem.  A number of the smaller source
   17960 and header  files have been merged to reduce the file count and
   17961 increase the density of the  existing files.  There are too many
   17962 to list here.  In general, makefiles that  call out individual
   17963 files will require rebuilding.
   17964 
   17965 Interpreter files renamed.  All interpreter files now have the
   17966 prefix am*  instead of ie* and is*.
   17967 
   17968 Header files renamed:  The acapi.h file is now acpixf.h.  The
   17969 acpiosd.h file is  now acpiosxf.h.  We are removing references to
   17970 the acronym "API" since it is  somewhat windowsy. The new name is
   17971 "external interface" or xface or xf in the  filenames.j
   17972 
   17973 
   17974 All manifest constants have been forced to upper case (some were
   17975 mixed case.)   Also, the string "ACPI_" has been prepended to many
   17976 (not all) of the constants,  typedefs, and structs.
   17977 
   17978 The globals "DebugLevel" and "DebugLayer" have been renamed
   17979 "AcpiDbgLevel" and  "AcpiDbgLayer" respectively.
   17980 
   17981 All other globals within the subsystem are now prefixed with
   17982 "AcpiGbl_" Internal procedures within the subsystem are now
   17983 prefixed with "Acpi" (with only  a few exceptions).  The original
   17984 two-letter abbreviation for the subcomponent  remains after "Acpi"
   17985 - for example, CmCallocate became AcpiCmCallocate.
   17986 
   17987 Added a source code translation/conversion utility.  Used to
   17988 generate the Linux  source code, it can be modified to generate
   17989 other types of source as well. Can  also be used to cleanup
   17990 existing source by removing extraneous spaces and blank  lines.
   17991 Found in tools/acpisrc/*
   17992 
   17993 OsdUnMapMemory was renamed to OsdUnmapMemory and then
   17994 AcpiOsUnmapMemory.  (UnMap  became Unmap).
   17995 
   17996 A "MaxUnits" parameter has been added to AcpiOsCreateSemaphore.
   17997 When set to  one, this indicates that the caller wants to use the
   17998 
   17999 semaphore as a mutex, not a  counting semaphore.  ACPI CA uses
   18000 both types.  However, implementers of this  call may want to use
   18001 different OS primitives depending on the type of semaphore
   18002 requested.  For example, some operating systems provide separate
   18003 
   18004 "mutex" and  "semaphore" interfaces - where the mutex interface is
   18005 much faster because it  doesn't have all the overhead of a full
   18006 semaphore implementation.
   18007 
   18008 Fixed a deadlock problem where a method that accesses the PCI
   18009 address space can  block forever if it is the first access to the
   18010 space.
   18011 
   18012 -------------------------------------------
   18013 Summary of changes for this label: 06_02_00
   18014 
   18015 Support for environments that cannot handle unaligned data
   18016 accesses (e.g.  firmware and OS environments devoid of alignment
   18017 handler technology namely  SAL/EFI and the IA-64 Linux kernel) has
   18018 been added (via configurable macros) in  these three areas: -
   18019 Transfer of data from the raw AML byte stream is done via byte
   18020 moves instead of    word/dword/qword moves. - External objects are
   18021 aligned within the user buffer, including package   elements (sub-
   18022 objects). - Conversion of name strings to UINT32 Acpi Names is now
   18023 done byte-wise.
   18024 
   18025 The Store operator was modified to mimic Microsoft's
   18026 implementation when storing  to a Buffer Field.
   18027 
   18028 Added a check of the BM_STS bit before entering C3.
   18029 
   18030 The methods subdirectory has been obsoleted and removed.  A new
   18031 file, cmeval.c  subsumes the functionality.
   18032 
   18033 A 16-bit (DOS) version of AcpiExec has been developed.  The
   18034 makefile is under  the acpiexec directory.
   18035