1---------------------------------------- 28 May 2018. Summary of changes for version 20180508: 3 4 51) ACPICA kernel-resident subsystem: 6 7Completed the new (recently deployed) package resolution mechanism for 8the Load and LoadTable ASL/AML operators. This fixes a regression that 9was introduced in version 20180209 that could result in an 10AE_AML_INTERNAL exception during the loading of a dynamic ACPI/AML table 11(SSDT) that contains package objects. 12 13 142) iASL Compiler/Disassembler and Tools: 15 16AcpiDump and AcpiXtract: Implemented support for ACPI tables larger than 171 MB. This change allows for table offsets within the acpidump file to be 18up to 8 characters. These changes are backwards compatible with existing 19acpidump files. 20 21 22---------------------------------------- 2327 April 2018. Summary of changes for version 20180427: 24 25 261) ACPICA kernel-resident subsystem: 27 28Debugger: Added support for Package objects in the "Test Objects" 29command. This command walks the entire namespace and evaluates all named 30data objects (Integers, Strings, Buffers, and now Packages). 31 32Improved error messages for the namespace root node. Originally, the root 33was referred to by the confusing string "\___". This has been replaced by 34"Namespace Root" for clarification. 35 36Fixed a potential infinite loop in the AcpiRsDumpByteList function. Colin 37Ian King <colin.king@canonical.com>. 38 39 402) iASL Compiler/Disassembler and Tools: 41 42iASL: Implemented support to detect and flag illegal forward references. 43For compatibility with other ACPI implementations, these references are 44now illegal at the root level of the DSDT or SSDTs. Forward references 45have always been illegal within control methods. This change should not 46affect existing ASL/AML code because of the fact that these references 47have always been illegal in the other ACPI implementation. 48 49iASL: Added error messages for the case where a table OEM ID and OEM 50TABLE ID strings are longer than the ACPI-defined length. Previously, 51these strings were simply silently truncated. 52 53iASL: Enhanced the -tc option (which creates an AML hex file in C, 54suitable for import into a firmware project): 55 1) Create a unique name for the table, to simplify use of multiple 56SSDTs. 57 2) Add a protection #ifdef in the file, similar to a .h header file. 58With assistance from Sami Mujawar, sami.mujawar@arm.com and Evan Lloyd, 59evan.lloyd@arm.com 60 61AcpiExec: Added a new option, -df, to disable the local fault handler. 62This is useful during debugging, where it may be desired to drop into a 63debugger on a fault. 64 65---------------------------------------- 6613 March 2018. Summary of changes for version 20180313: 67 68 691) ACPICA kernel-resident subsystem: 70 71Implemented various improvements to the GPE support: 72 731) Dispatch all active GPEs at initialization time so that no GPEs are 74lost. 752) Enable runtime GPEs earlier. Some systems expect GPEs to be enabled 76before devices are enumerated. 773) Don't unconditionally clear ACPI IRQs during suspend/resume, so that 78IRQs are not lost. 794) Add parallel GPE handling to eliminate the possibility of dispatching 80the same GPE twice. 815) Dispatch any pending GPEs after enabling for the first time. 82 83AcpiGetObjectInfo - removed support for the _STA method. This was causing 84problems on some platforms. 85 86Added a new _OSI string, "Windows 2017.2". 87 88Cleaned up and simplified the module-level code support. These changes 89are in preparation for the eventual removal of the legacy MLC support 90(deferred execution), replaced by the new MLC architecture which executes 91the MLC as a table is loaded (DSDT/SSDTs). 92 93Changed a compile-time option to a runtime option. Changes the option to 94ignore ACPI table load-time package resolution errors into a runtime 95option. Used only for platforms that generate many AE_NOT_FOUND errors 96during boot. AcpiGbl_IgnorePackageResolutionErrors. 97 98Fixed the ACPI_ERROR_NAMESPACE macro. This change involves putting some 99ACPI_ERROR_NAMESPACE parameters inside macros. By doing so, we avoid 100compilation errors from unused variables (seen with some compilers). 101 102 1032) iASL Compiler/Disassembler and Tools: 104 105ASLTS: parallelized execution in order to achieve an (approximately) 2X 106performance increase. 107 108ASLTS: Updated to use the iASL __LINE__ and __METHOD__ macros. Improves 109error reporting. 110 111---------------------------------------- 11209 February 2018. Summary of changes for version 20180209: 113 114 1151) ACPICA kernel-resident subsystem: 116 117Completed the final integration of the recent changes to Package Object 118handling and the module-level AML code support. This allows forward 119references from individual package elements when the package object is 120declared from within module-level code blocks. Provides compatibility 121with other ACPI implementations. 122 123The new architecture for the AML module-level code has been completed and 124is now the default for the ACPICA code. This new architecture executes 125the module-level code in-line as the ACPI table is loaded/parsed instead 126of the previous architecture which deferred this code until after the 127table was fully loaded. This solves some ASL code ordering issues and 128provides compatibility with other ACPI implementations. At this time, 129there is an option to fallback to the earlier architecture, but this 130support is deprecated and is planned to be completely removed later this 131year. 132 133Added a compile-time option to ignore AE_NOT_FOUND exceptions during 134resolution of named reference elements within Package objects. Although 135this is potentially a serious problem, it can generate a lot of 136noise/errors on platforms whose firmware carries around a bunch of unused 137Package objects. To disable these errors, define 138ACPI_IGNORE_PACKAGE_RESOLUTION_ERRORS in the OS-specific header. All 139errors are always reported for ACPICA applications such as AcpiExec. 140 141Fixed a regression related to the explicit type-conversion AML operators 142(ToXXXX). The regression was introduced early in 2017 but was not seen 143until recently because these operators are not fully supported by other 144ACPI implementations and are thus rarely used by firmware developers. The 145operators are defined by the ACPI specification to not implement the 146"implicit result object conversion". The regression incorrectly 147introduced this object conversion for the following explicit conversion 148operators: 149 ToInteger 150 ToString 151 ToBuffer 152 ToDecimalString 153 ToHexString 154 ToBCD 155 FromBCD 156 157 1582) iASL Compiler/Disassembler and Tools: 159 160iASL: Fixed a problem with the compiler constant folding feature as 161related to the ToXXXX explicit conversion operators. These operators do 162not support the "implicit result object conversion" by definition. Thus, 163ASL expressions that use these operators cannot be folded to a simple 164Store operator because Store implements the implicit conversion. This 165change uses the CopyObject operator for the ToXXXX operator folding 166instead. CopyObject is defined to not implement implicit result 167conversions and is thus appropriate for folding the ToXXXX operators. 168 169iASL: Changed the severity of an error condition to a simple warning for 170the case where a symbol is declared both locally and as an external 171symbol. This accommodates existing ASL code. 172 173AcpiExec: The -ep option to enable the new architecture for module-level 174code has been removed. It is replaced by the -dp option which instead has 175the opposite effect: it disables the new architecture (the default) and 176enables the legacy architecture. When the legacy code is removed in the 177future, the -dp option will be removed also. 178 179---------------------------------------- 18005 January 2018. Summary of changes for version 20180105: 181 182 1831) ACPICA kernel-resident subsystem: 184 185Updated all copyrights to 2018. This affects all source code modules. 186 187Fixed a possible build error caused by an unresolved reference to the 188AcpiUtSafeStrncpy function. 189 190Removed NULL pointer arithmetic in the various pointer manipulation 191macros. All "(void *) NULL" constructs are converted to "(void *) 0". 192This eliminates warnings/errors in newer C compilers. Jung-uk Kim. 193 194Added support for A32 ABI compilation, which uses the ILP32 model. Anuj 195Mittal. 196 197 1982) iASL Compiler/Disassembler and Tools: 199 200ASLTS: Updated all copyrights to 2018. 201 202Tools: Updated all signon copyrights to 2018. 203 204AcpiXtract: Fixed a regression related to ACPI table signatures where the 205signature was truncated to 3 characters (instead of 4). 206 207AcpiExec: Restore the original terminal mode after the use of the -v and 208-vd options. 209 210ASLTS: Deployed the iASL __METHOD__ macro across the test suite. 211 212---------------------------------------- 21314 December 2017. Summary of changes for version 20171214: 214 215 2161) ACPICA kernel-resident subsystem: 217 218Fixed a regression in the external (public) AcpiEvaluateObjectTyped 219interface where the optional "pathname" argument had inadvertently become 220a required argument returning an error if omitted (NULL pointer 221argument). 222 223Fixed two possible memory leaks related to the recently developed "late 224resolution" of reference objects within ASL Package Object definitions. 225 226Added two recently defined _OSI strings: "Windows 2016" and "Windows 2272017". Mario Limonciello. 228 229Implemented and deployed a safer version of the C library function 230strncpy: AcpiUtSafeStrncpy. The intent is to at least prevent the 231creation of unterminated strings as a possible result of a standard 232strncpy. 233 234Cleaned up and restructured the global variable file (acglobal.h). There 235are many changes, but no functional changes. 236 237 2382) iASL Compiler/Disassembler and Tools: 239 240iASL Table Compiler: Fixed a problem with the DBG2 ACPI table where the 241optional OemData field at the end of the table was incorrectly required 242for proper compilation. It is now correctly an optional field. 243 244ASLTS: The entire suite was converted from standard ASL to the ASL+ 245language, using the ASL-to-ASL+ converter which is integrated into the 246iASL compiler. A binary compare of all output files has verified the 247correctness of the conversion. 248 249iASL: Fixed the source code build for platforms where "char" is unsigned. 250This affected the iASL lexer only. Jung-uk Kim. 251 252---------------------------------------- 25310 November 2017. Summary of changes for version 20171110: 254 255 2561) ACPICA kernel-resident subsystem: 257 258This release implements full support for ACPI 6.2A: 259 NFIT - Added a new subtable, "Platform Capabilities Structure" 260No other changes to ACPICA were required, since ACPI 6.2A is primarily an 261errata release of the specification. 262 263Other ACPI table changes: 264 IORT: Added the SMMUv3 Device ID mapping index. Hanjun Guo 265 PPTT: Added cache attribute flag definitions to actbl1.h. Jeremy 266Linton 267 268Utilities: Modified the string/integer conversion functions to use 269internal 64-bit divide support instead of a native divide. On 32-bit 270platforms, a 64-bit divide typically requires a library function which 271may not be present in the build (kernel or otherwise). 272 273Implemented a targeted error message for timeouts returned from the 274Embedded Controller device driver. This is seen frequently enough to 275special-case an AE_TIME returned from an EC operation region access: 276 "Timeout from EC hardware or EC device driver" 277 278Changed the "ACPI Exception" message prefix to "ACPI Error" so that all 279runtime error messages have the identical prefix. 280 281 2822) iASL Compiler/Disassembler and Tools: 283 284AcpiXtract: Fixed a problem with table header detection within the 285acpidump file. Processing a table could be ended early if a 0x40 (@) 286appears in the original binary table, resulting in the @ symbol appearing 287in the decoded ASCII field at the end of the acpidump text line. The 288symbol caused acpixtract to incorrectly think it had reached the end of 289the current table and the beginning of a new table. 290 291AcpiXtract: Added an option (-f) to ignore some errors during table 292extraction. This initial implementation ignores non-ASCII and non- 293printable characters found in the acpidump text file. 294 295TestSuite(ASLTS)/AcpiExec: Fixed and restored the memory usage statistics 296for ASLTS. This feature is used to track memory allocations from 297different memory caches within the ACPICA code. At the end of an ASLTS 298run, these memory statistics are recorded and stored in a log file. 299 300Debugger (user-space version): Implemented a simple "Background" command. 301Creates a new thread to execute a control method in the background, while 302control returns to the debugger prompt to allow additional commands. 303 Syntax: Background <Namepath> [Arguments] 304 305---------------------------------------- 30629 September 2017. Summary of changes for version 20170929: 307 308 3091) ACPICA kernel-resident subsystem: 310 311Redesigned and implemented an improved ASL While() loop timeout 312mechanism. This mechanism is used to prevent infinite loops in the kernel 313AML interpreter caused by either non-responsive hardware or incorrect AML 314code. The new implementation uses AcpiOsGetTimer instead of a simple 315maximum loop count, and is thus more accurate and constant across 316different machines. The default timeout is currently 30 seconds, but this 317may be adjusted later. 318 319Renamed the ACPI_AML_INFINITE_LOOP exception to AE_AML_LOOP_TIMEOUT to 320better reflect the new implementation of the loop timeout mechanism. 321 322Updated the AcpiGetTimerDuration interface to cleanup the 64-bit support 323and to fix an off-by-one error. Jung-uk Kim. 324 325Fixed an EFI build problem by updating the makefiles to for a new file 326that was added, utstrsuppt.c 327 328 3292) iASL Compiler/Disassembler and Tools: 330 331Implemented full support for the PDTT, SDEV, and TPM2 ACPI tables. This 332includes support in the table disassembler, compiler, and template 333generator. 334 335iASL: Added an exception for an illegal type of recursive method 336invocation. If a method creates named objects, the first recursive call 337will fail at runtime. This change adds an error detection at compile time 338to catch the problem up front. Note: Marking such a method as 339"serialized" will not help with this problem, because the same thread can 340acquire the method mutex more than once. Example compiler and runtime 341output: 342 343 Method (MTH1) 344 { 345 Name (INT1, 1) 346 MTH1 () 347 } 348 349 dsdt.asl 22: MTH1 () 350 Error 6152 - ^ Illegal recursive call to method 351 that creates named objects (MTH1) 352 353Previous runtime exception: 354 ACPI Error: [INT1] Namespace lookup failure, 355 AE_ALREADY_EXISTS (20170831/dswload2-465) 356 357iASL: Updated support for External() opcodes to improve namespace 358management and error detection. These changes are related to issues seen 359with multiple-segment namespace pathnames within External declarations, 360such as below: 361 362 External(\_SB.PCI0.GFX0, DeviceObj) 363 External(\_SB.PCI0.GFX0.ALSI) 364 365iASL: Implemented support for multi-line error/warning messages. This 366enables more detailed and helpful error messages as below, from the 367initial deployment for the duplicate names error: 368 369 DSDT.iiii 1692: Device(PEG2) { 370 Error 6074 - ^ Name already exists in scope 371(PEG2) 372 373 Original name creation/declaration below: 374 DSDT.iiii 93: External(\_SB.PCI0.PEG2, DeviceObj) 375 376AcpiXtract: Added additional flexibility to support differing input hex 377dump formats. Specifically, hex dumps that contain partial disassembly 378and/or comments within the ACPI table data definition. There exist some 379dump utilities seen in the field that create this type of hex dump (such 380as Simics). For example: 381 382 DSDT @ 0xdfffd0c0 (10999 bytes) 383 Signature DSDT 384 Length 10999 385 Revision 1 386 Checksum 0xf3 (Ok) 387 OEM_ID BXPC 388 OEM_table_id BXDSDT 389 OEM_revision 1 390 Creator_id 1280593481 391 Creator_revision 537399345 392 0000: 44 53 44 54 f7 2a 00 00 01 f3 42 58 50 43 00 00 393 ... 394 2af0: 5f 4c 30 46 00 a4 01 395 396Test suite: Miscellaneous changes/fixes: 397 More cleanup and simplification of makefiles 398 Continue compilation of test cases after a compile failure 399 Do not perform binary compare unless both files actually exist 400 401iASL: Performed some code/module restructuring. Moved all memory 402allocation functions to new modules. Two new files, aslallocate.c and 403aslcache.c 404 405---------------------------------------- 40631 August 2017. Summary of changes for version 20170831: 407 408 4091) ACPICA kernel-resident subsystem: 410 411Implemented internal support for full 64-bit addresses that appear in all 412Generic Address Structure (GAS) structures. Previously, only the lower 32 413bits were used. Affects the use of GAS structures in the FADT and other 414tables, as well as the GAS structures passed to the AcpiRead and 415AcpiWrite public external interfaces that are used by drivers. Lv Zheng. 416 417Added header support for the PDTT ACPI table (Processor Debug Trigger 418Table). Full support in the iASL Data Table Compiler and disassembler is 419forthcoming. 420 421 4222) iASL Compiler/Disassembler and Tools: 423 424iASL/Disassembler: Fixed a problem with the PPTT ACPI table (Processor 425Properties Topology Table) where a flag bit was specified in the wrong 426bit position ("Line Size Valid", bit 6). 427 428iASL: Implemented support for Octal integer constants as defined by the 429ASL language grammar, per the ACPI specification. Any integer constant 430that starts with a zero is an octal constant. For example, 431 Store (037777, Local0) /* Octal constant */ 432 Store (0x3FFF, Local0) /* Hex equivalent */ 433 Store (16383, Local0) /* Decimal equivalent */ 434 435iASL: Improved overflow detection for 64-bit string conversions during 436compilation of integer constants. "Overflow" in this case means a string 437that represents an integer that is too large to fit into a 64-bit value. 438Any 64-bit constants within a 32-bit DSDT or SSDT are still truncated to 439the low-order 32 bits with a warning, as previously implemented. Several 440new exceptions are defined that indicate a 64-bit overflow, as well as 441the base (radix) that was used during the attempted conversion. Examples: 442 Local0 = 0xAAAABBBBCCCCDDDDEEEEFFFF // AE_HEX_OVERFLOW 443 Local0 = 01111222233334444555566667777 // AE_OCTAL_OVERFLOW 444 Local0 = 11112222333344445555666677778888 // AE_DECIMAL_OVERFLOW 445 446iASL: Added a warning for the case where a ResourceTemplate is declared 447with no ResourceDescriptor entries (coded as "ResourceTemplate(){}"). In 448this case, the resulting template is created with a single END_TAG 449descriptor, which is essentially useless. 450 451iASL: Expanded the -vw option (ignore specific warnings/remarks) to 452include compilation error codes as well. 453 454---------------------------------------- 45528 July 2017. Summary of changes for version 20170728: 456 457 4581) ACPICA kernel-resident subsystem: 459 460Fixed a regression seen with small resource descriptors that could cause 461an inadvertent AE_AML_NO_RESOURCE_END_TAG exception. 462 463AML interpreter: Implemented a new feature that allows forward references 464from individual named references within package objects that are 465contained within blocks of "module-level code". This provides 466compatibility with other ACPI implementations and supports existing 467firmware that depends on this feature. Example: 468 469 Name (ABCD, 1) 470 If (ABCD) /* An If() at module-level */ 471 { 472 Name (PKG1, Package() 473 { 474 INT1 /* Forward reference to object INT1 475*/ 476 }) 477 Name (INT1, 0x1234) 478 } 479 480AML Interpreter: Fixed a problem with the Alias() operator where aliases 481to some ASL objects were not handled properly. Objects affected are: 482Mutex, Event, and OperationRegion. 483 484AML Debugger: Enhanced to properly handle AML Alias objects. These 485objects have one level of indirection which was not fully supported by 486the debugger. 487 488Table Manager: Added support to detect and ignore duplicate SSDTs within 489the XSDT/RSDT. This error in the XSDT has been seen in the field. 490 491EFI and EDK2 support: 492 Enabled /WX flag for MSVC builds 493 Added support for AcpiOsStall, AcpiOsSleep, and AcpiOsGetTimer 494 Added local support for 64-bit multiply and shift operations 495 Added support to compile acpidump.efi on Windows 496 Added OSL function stubs for interfaces not used under EFI 497 498Added additional support for the _DMA predefined name. _DMA returns a 499buffer containing a resource template. This change add support within the 500resource manager (AcpiWalkResourceBuffer) to walk and parse this list of 501resource descriptors. Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> 502 503 5042) iASL Compiler/Disassembler and Tools: 505 506iASL: Fixed a problem where the internal input line buffer(s) could 507overflow if there are very long lines in the input ASL source code file. 508Implemented buffer management that automatically increases the size of 509the buffers as necessary. 510 511iASL: Added an option (-vx) to "expect" particular remarks, warnings and 512errors. If the specified exception is not raised during compilation, the 513compiler emits an error. This is intended to support the ASL test suite, 514but may be useful in other contexts. 515 516iASL: Implemented a new predefined macro, __METHOD__, which returns a 517string containing the name of the current control method that is being 518compiled. 519 520iASL: Implemented debugger and table compiler support for the SDEI ACPI 521table (Software Delegated Exception Interface). James Morse 522<james.morse@arm.com> 523 524Unix/Linux makefiles: Added an option to disable compile optimizations. 525The disable occurs when the NOOPT flag is set to TRUE. 526theracermaster@gmail.com 527 528Acpidump: Added support for multiple DSDT and FACS tables. This can occur 529when there are different tables for 32-bit versus 64-bit. 530 531Enhanced error reporting for the ASL test suite (ASLTS) by removing 532unnecessary/verbose text, and emit the actual line number where an error 533has occurred. These changes are intended to improve the usefulness of the 534test suite. 535 536---------------------------------------- 53729 June 2017. Summary of changes for version 20170629: 538 539 5401) ACPICA kernel-resident subsystem: 541 542Tables: Implemented a deferred ACPI table verification. This is useful 543for operating systems where the tables cannot be verified in the early 544initialization stage due to early memory mapping limitations on some 545architectures. Lv Zheng. 546 547Tables: Removed the signature validation for dynamically loaded tables. 548Provides compatibility with other ACPI implementations. Previously, only 549SSDT tables were allowed, as per the ACPI specification. Now, any table 550signature can be used via the Load() operator. Lv Zheng. 551 552Tables: Fixed several mutex issues that could cause errors during table 553acquisition. Lv Zheng. 554 555Tables: Fixed a problem where an ACPI warning could be generated if a 556null pointer was passed to the AcpiPutTable interface. Lv Zheng. 557 558Tables: Added a mechanism to handle imbalances for the AcpiGetTable and 559AcpiPutTable interfaces. This applies to the "late stage" table loading 560when the use of AcpiPutTable is no longer required (since the system 561memory manager is fully running and available). Lv Zheng. 562 563Fixed/Reverted a regression during processing of resource descriptors 564that contain only a single EndTag. Fixes an AE_AML_NO_RESOURCE_END_TAG 565exception in this case. 566 567Headers: IORT/SMMU support: Updated the SMMU models for Revision C of the 568I/O Remapping specification. Robin Murphy <robin.murphy@arm.com> 569 570Interpreter: Fixed a possible fault if an Alias operator with an invalid 571or duplicate target is encountered during Alias creation in 572AcpiExCreateAlias. Alex James <theracermaster@gmail.com> 573 574Added an option to use designated initializers for function pointers. 575Kees Cook <keescook@google.com> 576 577 5782) iASL Compiler/Disassembler and Tools: 579 580iASL: Allow compilation of External declarations with target pathnames 581that refer to existing named objects within the table. Erik Schmauss. 582 583iASL: Fixed a regression when compiling FieldUnits. Fixes an error if a 584FieldUnit name also is declared via External in the same table. Erik 585Schmauss. 586 587iASL: Allow existing scope names within pathnames used in External 588statements. For example: 589 External (ABCD.EFGH) // ABCD exists, but EFGH is truly external 590 Device (ABCD) 591 592iASL: IORT ACPI table: Implemented changes required to decode the new 593Proximity Domain for the SMMUv3 IORT. Disassembler and Data Table 594compiler. Ganapatrao Kulkarni <ganapatrao.kulkarni@cavium.com> 595 596Disassembler: Don't abort disassembly on errors from External() 597statements. Erik Schmauss. 598 599Disassembler: fixed a possible fault when one of the Create*Field 600operators references a Resource Template. ACPICA Bugzilla 1396. 601 602iASL: In the source code, resolved some naming inconsistences across the 603parsing support. Fixes confusion between "Parse Op" and "Parse Node". 604Adds a new file, aslparseop.c 605 606---------------------------------------- 60731 May 2017. Summary of changes for version 20170531: 608 609 6100) ACPI 6.2 support: 611 612The ACPI specification version 6.2 has been released and is available at 613http://uefi.org/specifications 614 615This version of ACPICA fully supports the ACPI 6.2 specification. Changes 616are summarized below. 617 618New ACPI tables (Table Compiler/Disassembler/Templates): 619 HMAT (Heterogeneous Memory Attributes Table) 620 WSMT (Windows SMM Security Mitigation Table) 621 PPTT (Processor Properties Topology Table) 622 623New subtables for existing ACPI tables: 624 HEST (New subtable, Arch-deferred machine check) 625 SRAT (New subtable, Arch-specific affinity structure) 626 PCCT (New subtables, Extended PCC subspaces (types 3 and 4)) 627 628Simple updates for existing ACPI tables: 629 BGRT (two new flag bits) 630 HEST (New bit defined for several subtables, GHES_ASSIST) 631 632New Resource Descriptors and Resource macros (Compiler/Disassembler): 633 PinConfig() 634 PinFunction() 635 PinGroup() 636 PinGroupConfig() 637 PinGroupFunction() 638 New type for hardware error notification (section 18.3.2.9) 639 640New predefined names/methods (Compiler/Interpreter): 641 _HMA (Heterogeneous Memory Attributes) 642 _LSI (Label Storage Information) 643 _LSR (Label Storage Read) 644 _LSW (Label Storage Write) 645 646ASL grammar/macro changes (Compiler): 647 For() ASL macro, implemented with the AML while operator 648 Extensions to Concatenate operator 649 Support for multiple definition blocks in same ASL file 650 Clarification for Buffer operator 651 Allow executable AML code underneath all scopes (Devices, etc.) 652 Clarification/change for the _OSI return value 653 ASL grammar update for reference operators 654 Allow a zero-length string for AML filename in DefinitionBlock 655 656Miscellaneous: 657 New device object notification value 658 Remove a notify value (0x0C) for graceful shutdown 659 New UUIDs for processor/cache properties and 660 physical package property 661 New _HID, ACPI0014 (Wireless Power Calibration Device) 662 663 6641) ACPICA kernel-resident subsystem: 665 666Added support to disable ACPI events on hardware-reduced platforms. 667Eliminates error messages of the form "Could not enable fixed event". Lv 668Zheng 669 670Fixed a problem using Device/Thermal objects with the ObjectType and 671DerefOf ASL operators. This support had not been fully/properly 672implemented. 673 674Fixed a problem where if a Buffer object containing a resource template 675was longer than the actual resource template, an error was generated -- 676even though the AML is legal. This case has been seen in the field. 677 678Fixed a problem with the header definition of the MADT PCAT_COMPAT flag. 679The values for DUAL_PIC and MULTIPLE_APIC were reversed. 680 681Added header file changes for the TPM2 ACPI table. Update to new version 682of the TCG specification. Adds a new TPM2 subtable for ARM SMC. 683 684Exported the external interfaces AcpiAcquireMutex and AcpiReleaseMutex. 685These interfaces are intended to be used only in conjunction with the 686predefined _DLM method (Device Lock Method). "This object appears in a 687device scope when AML access to the device must be synchronized with the 688OS environment". 689 690Example Code and Data Size: These are the sizes for the OS-independent 691acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 692debug version of the code includes the debug output trace mechanism and 693has a much larger code and data size. 694 695 Current Release: 696 Non-Debug Version: 143.1K Code, 60.0K Data, 203.1K Total 697 Debug Version: 204.0K Code, 84.3K Data, 288.3K Total 698 Previous Release: 699 Non-Debug Version: 141.7K Code, 58.5K Data, 200.2K Total 700 Debug Version: 207.5K Code, 82.7K Data, 290.2K Total 701 702 7032) iASL Compiler/Disassembler and Tools: 704 705iASL: Fixed a problem where an External() declaration could not refer to 706a Field Unit. Erik Schmauss. 707 708Disassembler: Improved support for the Switch/Case operators. This 709feature will disassemble AML code back to the original Switch operators 710when possible, instead of an If..Else sequence. David Box 711 712iASL and disassembler: Improved the handling of multiple extraneous 713parentheses for both ASL input and disassembled ASL output. 714 715Improved the behavior of the iASL compiler and disassembler to detect 716improper use of external declarations 717 718Disassembler: Now aborts immediately upon detection of an unknown AML 719opcode. The AML parser has no real way to recover from this, and can 720result in the creation of an ill-formed parse tree that causes errors 721later during the disassembly. 722 723All tools: Fixed a problem where the Unix application OSL did not handle 724control-c correctly. For example, a control-c could incorrectly wake the 725debugger. 726 727AcpiExec: Improved the Control-C handling and added a handler for 728segmentation faults (SIGSEGV). Supports both Windows and Unix-like 729environments. 730 731Reduced the verbosity of the generic unix makefiles. Previously, each 732compilation displayed the full set of compiler options. This has been 733eliminated as the options are easily inspected within the makefiles. Each 734compilation now results in a single line of output. 735 736---------------------------------------- 73703 March 2017. Summary of changes for version 20170303: 738 739 7400) ACPICA licensing: 741 742The licensing information at the start of each source code module has 743been updated. In addition to the Intel license, the dual GPLv2/BSD 744license has been added for completeness. Now, a single version of the 745source code should be suitable for all ACPICA customers. This is the 746major change for this release since it affects all source code modules. 747 748 7491) ACPICA kernel-resident subsystem: 750 751Fixed two issues with the common asltypes.h header that could cause 752problems in some environments: (Kim Jung-uk) 753 Removed typedef for YY_BUFFER_STATE ? 754 Fixes an error with earlier versions of Flex. 755 Removed use of FILE typedef (which is only defined in stdio.h) 756 757 7582) iASL Compiler/Disassembler and Tools: 759 760Disassembler: fixed a regression introduced in 20170224. A fix for a 761memory leak related to resource descriptor tags (names) could fault when 762the disassembler was generated with 64-bit compilers. 763 764The ASLTS test suite has been updated to implement a new testing 765architecture. During generation of the suite from ASL source, both the 766ASL and ASL+ compilers are now validated, as well as the disassembler 767itself (Erik Schmauss). The architecture executes as follows: 768 769 For every ASL source module: 770 Compile (legacy ASL compilation) 771 Disassemble the resulting AML to ASL+ source code 772 Compile the new ASL+ module 773 Perform a binary compare on the legacy AML and the new ASL+ AML 774 The ASLTS suite then executes normally using the AML binaries. 775 776---------------------------------------- 77724 February 2017. Summary of changes for version 20170224: 778 779 7801) ACPICA kernel-resident subsystem: 781 782Interpreter: Fixed two issues with the control method return value auto- 783repair feature, where an attempt to double-delete an internal object 784could result in an ACPICA warning (for _CID repair and others). No fault 785occurs, however, because the attempted deletion (actually a release to an 786internal cache) is detected and ignored via object poisoning. 787 788Debugger: Fixed an AML interpreter mutex issue during the single stepping 789of control methods. If certain debugger commands are executed during 790stepping, a mutex aquire/release error could occur. Lv Zheng. 791 792Fixed some issues generating ACPICA with the Intel C compiler by 793restoring the original behavior and compiler-specific include file in 794acenv.h. Lv Zheng. 795 796Example Code and Data Size: These are the sizes for the OS-independent 797acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 798debug version of the code includes the debug output trace mechanism and 799has a much larger code and data size. 800 801 Current Release: 802 Non-Debug Version: 141.7K Code, 58.5K Data, 200.2K Total 803 Debug Version: 207.5K Code, 82.7K Data, 290.2K Total 804 Previous Release: 805 Non-Debug Version: 137.4K Code, 52.6K Data, 190.0K Total 806 Debug Version: 201.5K Code, 82.2K Data, 283.7K Total 807 808 8092) iASL Compiler/Disassembler and Tools: 810 811iASL/Disassembler: A preliminary version of a new ASL-to-ASL+ conversion 812tool has been designed, implemented, and included in this release. The 813key feature of this utility is that the original comments within the 814input ASL file are preserved during the conversion process, and included 815within the converted ASL+ file -- thus creating a transparent conversion 816of existing ASL files to ASL+ (ASL 2.0). Erik Schmauss. 817 818 Usage: iasl -ca <ASL-filename> // Output is a .dsl file with 819converted code 820 821iASL/Disassembler: Improved the detection and correct disassembly of 822Switch/Case operators. This feature detects sequences of if/elseif/else 823operators that originated from ASL Switch/Case/Default operators and 824emits the original operators. David Box. 825 826iASL: Improved the IORT ACPI table support in the following areas. Lv 827Zheng: 828 Clear MappingOffset if the MappingCount is zero. 829 Fix the disassembly of the SMMU GSU interrupt offset. 830 Update the template file for the IORT table. 831 832Disassembler: Enhanced the detection and disassembly of resource 833template/descriptor within a Buffer object. An EndTag descriptor is now 834required to have a zero second byte, since all known ASL compilers emit 835this. This helps eliminate incorrect decisions when a buffer is 836disassembled (false positives on resource templates). 837 838---------------------------------------- 83919 January 2017. Summary of changes for version 20170119: 840 841 8421) General ACPICA software: 843 844Entire source code base: Added the 2017 copyright to all source code 845legal/licensing module headers and utility/tool signons. This includes 846the standard Linux dual-license header. This affects virtually every file 847in the ACPICA core subsystem, iASL compiler, all ACPICA utilities, and 848the ACPICA test suite. 849 850 8512) iASL Compiler/Disassembler and Tools: 852 853iASL: Removed/fixed an inadvertent remark when a method argument 854containing a reference is used as a target operand within the method (and 855never used as a simple argument), as in the example below. Jeffrey Hugo. 856 857 dsdt.asl 1507: Store(0x1, Arg0) 858 Remark 2146 - ^ Method Argument is never used (Arg0) 859 860All tools: Removed the bit width of the compiler that generated the tool 861from the common signon for all user space tools. This proved to be 862confusing and unnecessary. This includes similar removal of HARDWARE_NAME 863from the generic makefiles (Thomas Petazzoni). Example below. 864 865 Old: 866 ASL+ Optimizing Compiler version 20170119-32 867 ASL+ Optimizing Compiler version 20170119-64 868 869 New: 870 ASL+ Optimizing Compiler version 20170119 871 872---------------------------------------- 87322 December 2016. Summary of changes for version 20161222: 874 875 8761) ACPICA kernel-resident subsystem: 877 878AML Debugger: Implemented a new mechanism to simplify and enhance 879debugger integration into all environments, including kernel debuggers 880and user-space utilities, as well as remote debug services. This 881mechanism essentially consists of new OSL interfaces to support debugger 882initialization/termination, as well as wait/notify interfaces to perform 883the debugger handshake with the host. Lv Zheng. 884 885 New OSL interfaces: 886 AcpiOsInitializeDebugger (void) 887 AcpiOsTerminateDebugger (void) 888 AcpiOsWaitCommandReady (void) 889 AcpiOsNotifyCommandComplete (void) 890 891 New OS services layer: 892 osgendbg.c -- Example implementation, and used for AcpiExec 893 894Update for Generic Address Space (GAS) support: Although the AccessWidth 895and/or BitOffset fields of the GAS are not often used, this change now 896fully supports these fields. This affects the internal support for FADT 897registers, registers in other ACPI data tables, and the AcpiRead and 898AcpiWrite public interfaces. Lv Zheng. 899 900Sleep support: In order to simplify integration of ACPI sleep for the 901various host operating systems, a new OSL interface has been introduced. 902AcpiOsEnterSleep allows the host to perform any required operations 903before the final write to the sleep control register(s) is performed by 904ACPICA. Lv Zheng. 905 906 New OSL interface: 907 AcpiOsEnterSleep(SleepState, RegisterAValue, RegisterBValue) 908 909 Called from these internal interfaces: 910 AcpiHwLegacySleep 911 AcpiHwExtendedSleep 912 913EFI support: Added a very small EFI/ACPICA example application. Provides 914a simple demo for EFI integration, as well as assisting with resolution 915of issues related to customer ACPICA/EFI integration. Lv Zheng. See: 916 917 source/tools/efihello/efihello.c 918 919Local C library: Implemented several new functions to enhance ACPICA 920portability, for environments where these clib functions are not 921available (such as EFI). Lv Zheng: 922 putchar 923 getchar 924 strpbrk 925 strtok 926 memmove 927 928Fixed a regression where occasionally a valid resource descriptor was 929incorrectly detected as invalid at runtime, and a 930AE_AML_NO_RESOURCE_END_TAG was returned. 931 932Fixed a problem with the recently implemented support that enables 933control method invocations as Target operands to many ASL operators. 934Warnings of this form: "Needed type [Reference], found [Processor]" were 935seen at runtime for some method invocations. 936 937Example Code and Data Size: These are the sizes for the OS-independent 938acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 939debug version of the code includes the debug output trace mechanism and 940has a much larger code and data size. 941 942 Current Release: 943 Non-Debug Version: 141.5K Code, 58.5K Data, 200.0K Total 944 Debug Version: 201.7K Code, 82.7K Data, 284.4K Total 945 Previous Release: 946 Non-Debug Version: 140.5K Code, 58.5K Data, 198.9K Total 947 Debug Version: 201.3K Code, 82.7K Data, 284.0K Total 948 949 9502) iASL Compiler/Disassembler and Tools: 951 952Disassembler: Enhanced output by adding the capability to detect and 953disassemble ASL Switch/Case statements back to the original ASL source 954code instead of if/else blocks. David Box. 955 956AcpiHelp: Split a large file into separate files based upon 957functionality/purpose. New files are: 958 ahaml.c 959 ahasl.c 960 961---------------------------------------- 96217 November 2016. Summary of changes for version 20161117: 963 964 9651) ACPICA kernel-resident subsystem: 966 967Table Manager: Fixed a regression introduced in 20160729, "FADT support 968cleanup". This was an attempt to remove all references in the source to 969the FADT version 2, which never was a legal version number. It was 970skipped because it was an early version of 64-bit support that was 971eventually abandoned for the current 64-bit support. 972 973Interpreter: Fixed a problem where runtime implicit conversion was 974incorrectly disabled for the ASL operators below. This brings the 975behavior into compliance with the ACPI specification: 976 FromBCD 977 ToBCD 978 ToDecimalString 979 ToHexString 980 ToInteger 981 ToBuffer 982 983Table Manager: Added a new public interface, AcpiPutTable, used to 984release and free an ACPI table returned by AcpiGetTable and related 985interfaces. Lv Zheng. 986 987Example Code and Data Size: These are the sizes for the OS-independent 988acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 989debug version of the code includes the debug output trace mechanism and 990has a much larger code and data size. 991 992 Current Release: 993 Non-Debug Version: 140.5K Code, 58.5K Data, 198.9K Total 994 Debug Version: 201.3K Code, 82.7K Data, 284.0K Total 995 Previous Release: 996 Non-Debug Version: 140.4K Code, 58.1K Data, 198.5K Total 997 Debug Version: 200.7K Code, 82.1K Data, 282.8K Total 998 999 10002) iASL Compiler/Disassembler and Tools: 1001 1002Disassembler: Fixed a regression for disassembly of Resource Template. 1003Detection of templates in the AML stream missed some types of templates. 1004 1005iASL: Fixed a problem where an Access Size error was returned for the PCC 1006address space when the AccessSize of the GAS register is greater than a 1007DWORD. Hoan Tran. 1008 1009iASL: Implemented several grammar changes for the operators below. These 1010changes are slated for the next version of the ACPI specification: 1011 RefOf - Disallow method invocation as an operand 1012 CondRefOf - Disallow method invocation as an operand 1013 DerefOf - Disallow operands that use the result from operators 1014that 1015 do not return a reference (Changed TermArg to 1016SuperName). 1017 1018iASL: Control method invocations are now allowed for Target operands, as 1019per the ACPI specification. Removed error for using a control method 1020invocation as a Target operand. 1021 1022Disassembler: Improved detection of Resource Templates, Unicode, and 1023Strings within Buffer objects. These subtypes do not contain a specific 1024opcode to indicate the originating ASL code, and they must be detected by 1025other means within the disassembler. 1026 1027iASL: Implemented an optimization improvement for 32-bit ACPI tables 1028(DSDT/SSDT). For the 32-bit case only, compute the optimum integer opcode 1029only after 64-bit to 32-bit truncation. A truncation warning message is 1030still emitted, however. 1031 1032AcpiXtract: Implemented handling for both types of line terminators (LF 1033or CR/LF) so that it can accept AcpiDump output files from any system. 1034Peter Wu. 1035 1036AcpiBin: Added two new options for comparing AML files: 1037 -a: compare and display ALL mismatches 1038 -o: start compare at this offset into the second file 1039 1040---------------------------------------- 104130 September 2016. Summary of changes for version 20160930: 1042 1043 10441) ACPICA kernel-resident subsystem: 1045 1046Fixed a regression in the internal AcpiTbFindTable function where a non 1047AE_OK exception could inadvertently be returned even if the function did 1048not fail. This problem affects the following operators: 1049 DataTableRegion 1050 LoadTable 1051 1052Fixed a regression in the LoadTable operator where a load to any 1053namespace location other than the root no longer worked properly. 1054 1055Increased the maximum loop count value that will result in the 1056AE_AML_INFINITE_LOOP exception. This is a mechanism that is intended to 1057prevent infinite loops within the AML interpreter and thus the host OS 1058kernel. The value is increased from 0xFFFF to 0xFFFFF loops (65,535 to 10591,048,575). 1060 1061Moved the AcpiGbl_MaxLoopIterations configuration variable to the public 1062acpixf.h file. This allows hosts to easily configure the maximum loop 1063count at runtime. 1064 1065Removed an illegal character in the strtoul64.c file. This character 1066caused errors with some C compilers. 1067 1068Example Code and Data Size: These are the sizes for the OS-independent 1069acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 1070debug version of the code includes the debug output trace mechanism and 1071has a much larger code and data size. 1072 1073 Current Release: 1074 Non-Debug Version: 140.4K Code, 58.1K Data, 198.5K Total 1075 Debug Version: 200.7K Code, 82.1K Data, 282.8K Total 1076 Previous Release: 1077 Non-Debug Version: 140.0K Code, 58.1K Data, 198.1K Total 1078 Debug Version: 200.3K Code, 82.1K Data, 282.4K Total 1079 1080 10812) iASL Compiler/Disassembler and Tools: 1082 1083Disassembler: Fixed a problem with the conversion of Else{If{ blocks into 1084the simpler ASL ElseIf keyword. During the conversion, a trailing If 1085block could be lost and missing from the disassembled output. 1086 1087iASL: Fixed a missing parser rule for the ObjectType operator. For ASL+, 1088the missing rule caused a parse error when using the Index operator as an 1089operand to ObjectType. This construct now compiles properly. Example: 1090 ObjectType(PKG1[4]). 1091 1092iASL: Correctly handle unresolved symbols in the hardware map file (-lm 1093option). Previously, unresolved symbols could cause a protection fault. 1094Such symbols are now marked as unresolved in the map file. 1095 1096iASL: Implemented support to allow control method invocations as an 1097operand to the ASL DeRefOf operator. Example: 1098 DeRefOf(MTH1(Local0)) 1099 1100Disassembler: Improved support for the ToPLD ASL macro. Detection of a 1101possible _PLD buffer now includes examination of both the normal buffer 1102length (16 or 20) as well as the surrounding AML package length. 1103 1104Disassembler: Fixed a problem with the decoding of complex expressions 1105within the Divide operator for ASL+. For the case where both the quotient 1106and remainder targets are specified, the entire statement cannot be 1107disassembled. Previously, the output incorrectly contained a mix of ASL- 1108and ASL+ operators. This mixed statement causes a syntax error when 1109compiled. Example: 1110 Divide (Add (INT1, 6), 128, RSLT, QUOT) // was incorrectly 1111disassembled to: 1112 Divide (INT1 + 6, 128, RSLT, QUOT) 1113 1114iASL/Tools: Added support to process AML and non-AML ACPI tables 1115consistently. For the disassembler and AcpiExec, allow all types of ACPI 1116tables (AML and data tables). For the iASL -e option, allow only AML 1117tables (DSDT/SSDT). 1118 1119---------------------------------------- 112031 August 2016. Summary of changes for version 20160831: 1121 1122 11231) ACPICA kernel-resident subsystem: 1124 1125Improve support for the so-called "module-level code", which is defined 1126to be math, logical and control AML opcodes that appear outside of any 1127control method. This change improves the support by adding more opcodes 1128that can be executed in the manner. Some other issues have been solved, 1129and the ASL grammar changes to support such code under all scope 1130operators (Device, etc.) are complete. Lv Zheng. 1131 1132UEFI support: these OSL functions have been implemented. This is an 1133additional step toward supporting the AcpiExec utility natively (with 1134full hardware access) under UEFI. Marcelo Ferreira. 1135 AcpiOsReadPciConfiguration 1136 AcpiOsWritePciConfiguration 1137 1138Fixed a possible mutex error during control method auto-serialization. Lv 1139Zheng. 1140 1141Updated support for the Generic Address Structure by fully implementing 1142all GAS fields when a 32-bit address is expanded to a 64-bit GAS. Lv 1143Zheng. 1144 1145Updated the return value for the internal _OSI method. Instead of 11460xFFFFFFFF, the "Ones" value is now returned, which is 0xFFFFFFFFFFFFFFFF 1147for 64-bit ACPI tables. This fixes an incompatibility with other ACPI 1148implementations, and will be reflected and clarified in the next version 1149of the ACPI specification. 1150 1151Implemented two new table events that can be passed to an ACPICA table 1152handler. These events are used to indicate a table installation or 1153uninstallation. These events are used in addition to existed table load 1154and unload events. Lv Zheng. 1155 1156Implemented a cleanup for all internal string-to-integer conversions. 1157Consolidate multiple versions of this functionality and limit possible 1158bases to either 10 or 16 to simplify the code. Adds a new file, 1159utstrtoul64. 1160 1161Cleanup the inclusion order of the various compiler-specific headers. 1162This simplifies build configuration management. The compiler-specific 1163headers are now split out from the host-specific headers. Lv Zheng. 1164 1165Example Code and Data Size: These are the sizes for the OS-independent 1166acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 1167debug version of the code includes the debug output trace mechanism and 1168has a much larger code and data size. 1169 1170 Current Release: 1171 Non-Debug Version: 140.1K Code, 58.1K Data, 198.1K Total 1172 Debug Version: 200.3K Code, 82.1K Data, 282.4K Total 1173 1174 11752) iASL Compiler/Disassembler and Tools: 1176 1177iASL/AcpiExec: Added a command line option to display the build date/time 1178of the tool (-vd). This can be useful to verify that the correct version 1179of the tools are being used. 1180 1181AML Debugger: Implemented a new subcommand ("execute predef") to execute 1182all predefined control methods and names within the current namespace. 1183This can be useful for debugging problems with ACPI tables and the ACPI 1184namespace. 1185 1186---------------------------------------- 118729 July 2016. Summary of changes for version 20160729: 1188 1189 11901) ACPICA kernel-resident subsystem: 1191 1192Implemented basic UEFI support for the various ACPICA tools. This 1193includes: 11941) An OSL to implement the various AcpiOs* interfaces on UEFI. 11952) Support to obtain the ACPI tables on UEFI. 11963) Local implementation of required C library functions not available on 1197UEFI. 11984) A front-end (main) function for the tools for UEFI-related 1199initialization. 1200 1201The initial deployment of this support is the AcpiDump utility executing 1202as an UEFI application via EDK2 (EDKII, "UEFI Firmware Development Kit"). 1203Current environments supported are Linux/Unix. MSVC generation is not 1204supported at this time. See the generate/efi/README file for build 1205instructions. Lv Zheng. 1206 1207Future plans include porting the AcpiExec utility to execute natively on 1208the platform with I/O and memory access. This will allow viewing/dump of 1209the platform namespace and native execution of ACPI control methods that 1210access the actual hardware. To fully implement this support, the OSL 1211functions below must be implemented with UEFI interfaces. Any community 1212help in the implementation of these functions would be appreciated: 1213 AcpiOsReadPort 1214 AcpiOsWritePort 1215 AcpiOsReadMemory 1216 AcpiOsWriteMemory 1217 AcpiOsReadPciConfiguration 1218 AcpiOsWritePciConfiguration 1219 1220Restructured and standardized the C library configuration for ACPICA, 1221resulting in the various configuration options below. This includes a 1222global restructuring of the compiler-dependent and platform-dependent 1223include files. These changes may affect the existing platform-dependent 1224configuration files on some hosts. Lv Zheng. 1225 1226The current C library configuration options appear below. For any issues, 1227it may be helpful to examine the existing compiler-dependent and 1228platform-dependent files as examples. Lv Zheng. 1229 12301) Linux kernel: 1231 ACPI_USE_STANDARD_HEADERS=n in order not to use system-provided C 1232library. 1233 ACPI_USE_SYSTEM_CLIBRARY=y in order not to use ACPICA mini C library. 12342) Unix/Windows/BSD applications: 1235 ACPI_USE_STANDARD_HEADERS=y in order to use system-provided C 1236library. 1237 ACPI_USE_SYSTEM_CLIBRARY=y in order not to use ACPICA mini C library. 12383) UEFI applications: 1239 ACPI_USE_STANDARD_HEADERS=n in order not to use system-provided C 1240library. 1241 ACPI_USE_SYSTEM_CLIBRARY=n in order to use ACPICA mini C library. 12424) UEFI applications (EDK2/StdLib): 1243 ACPI_USE_STANDARD_HEADERS=y in order to use EDK2 StdLib C library. 1244 ACPI_USE_SYSTEM_CLIBRARY=y in order to use EDK2 StdLib C library. 1245 1246 1247AML interpreter: "module-level code" support. Allows for execution of so- 1248called "executable" AML code (math/logical operations, etc.) outside of 1249control methods not just at the module level (top level) but also within 1250any scope declared outside of a control method - Scope{}, Device{}, 1251Processor{}, PowerResource{}, and ThermalZone{}. Lv Zheng. 1252 1253Simplified the configuration of the "maximum AML loops" global option by 1254adding a global public variable, "AcpiGbl_MaxLoopIterations" which can be 1255modified at runtime. 1256 1257 1258Example Code and Data Size: These are the sizes for the OS-independent 1259acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 1260debug version of the code includes the debug output trace mechanism and 1261has a much larger code and data size. 1262 1263 Current Release: 1264 Non-Debug Version: 139.1K Code, 22.9K Data, 162.0K Total 1265 Debug Version: 199.0K Code, 81.8K Data, 280.8K Total 1266 1267 12682) iASL Compiler/Disassembler and Tools: 1269 1270iASL: Add full support for the RASF ACPI table (RAS Features Table). 1271Includes disassembler, data table compiler, and header support. 1272 1273iASL Expand "module-level code" support. Allows for 1274compilation/disassembly of so-called "executable" AML code (math/logical 1275operations, etc.) outside of control methods not just at the module level 1276(top level) but also within any scope declared outside of a control 1277method - Scope{}, Device{}, Processor{}, PowerResource{}, and 1278ThermalZone{}. 1279 1280AcpiDump: Added support for dumping all SSDTs on newer versions of 1281Windows. These tables are now easily available -- SSDTs are not available 1282through the registry on older versions. 1283 1284---------------------------------------- 128527 May 2016. Summary of changes for version 20160527: 1286 1287 12881) ACPICA kernel-resident subsystem: 1289 1290Temporarily reverted the new arbitrary bit length/alignment support in 1291AcpiHwRead/AcpiHwWrite for the Generic Address Structure. There have been 1292a number of regressions with the new code that need to be fully resolved 1293and tested before this support can be finally integrated into ACPICA. 1294Apologies for any inconveniences these issues may have caused. 1295 1296The ACPI message macros are not configurable (ACPI_MSG_ERROR, 1297ACPI_MSG_EXCEPTION, ACPI_MSG_WARNING, ACPI_MSG_INFO, ACPI_MSG_BIOS_ERROR, 1298and ACPI_MSG_BIOS_WARNING). Lv Zheng. 1299 1300Fixed a couple of GCC warnings associated with the use of the -Wcast-qual 1301option. Adds a new return macro, return_STR. Junk-uk Kim. 1302 1303Example Code and Data Size: These are the sizes for the OS-independent 1304acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 1305debug version of the code includes the debug output trace mechanism and 1306has a much larger code and data size. 1307 1308 Current Release: 1309 Non-Debug Version: 136.8K Code, 51.6K Data, 188.4K Total 1310 Debug Version: 201.5K Code, 82.2K Data, 283.7K Total 1311 Previous Release: 1312 Non-Debug Version: 137.4K Code, 52.6K Data, 190.0K Total 1313 Debug Version: 200.9K Code, 82.2K Data, 283.1K Total 1314 1315---------------------------------------- 131622 April 2016. Summary of changes for version 20160422: 1317 13181) ACPICA kernel-resident subsystem: 1319 1320Fixed a regression in the GAS (generic address structure) arbitrary bit 1321support in AcpiHwRead/AcpiHwWrite. Problem could cause incorrect behavior 1322and incorrect return values. Lv Zheng. ACPICA BZ 1270. 1323 1324ACPI 6.0: Added support for new/renamed resource macros. One new argument 1325was added to each of these macros, and the original name has been 1326deprecated. The AML disassembler will always disassemble to the new 1327names. Support for the new macros was added to iASL, disassembler, 1328resource manager, and the acpihelp utility. ACPICA BZ 1274. 1329 1330 I2cSerialBus -> I2cSerialBusV2 1331 SpiSerialBus -> SpiSerialBusV2 1332 UartSerialBus -> UartSerialBusV2 1333 1334ACPI 6.0: Added support for a new integer field that was appended to the 1335package object returned by the _BIX method. This adds iASL compile-time 1336and AML runtime error checking. ACPICA BZ 1273. 1337 1338ACPI 6.1: Added support for a new PCCT subtable, "HW-Reduced Comm 1339Subspace Type2" (Headers, Disassembler, and data table compiler). 1340 1341Example Code and Data Size: These are the sizes for the OS-independent 1342acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 1343debug version of the code includes the debug output trace mechanism and 1344has a much larger code and data size. 1345 1346 Current Release: 1347 Non-Debug Version: 137.4K Code, 52.6K Data, 190.0K Total 1348 Debug Version: 201.5K Code, 82.2K Data, 283.7K Total 1349 Previous Release: 1350 Non-Debug Version: 137.1K Code, 51.5K Data, 188.6K Total 1351 Debug Version: 201.0K Code, 82.0K Data, 283.0K Total 1352 1353 13542) iASL Compiler/Disassembler and Tools: 1355 1356iASL: Implemented an ASL grammar extension to allow/enable executable 1357"module-level code" to be created and executed under the various 1358operators that create new scopes. This type of AML code is already 1359supported in all known AML interpreters, and the grammar change will 1360appear in the next version of the ACPI specification. Simplifies the 1361conditional runtime creation of named objects under these object types: 1362 1363 Device 1364 PowerResource 1365 Processor 1366 Scope 1367 ThermalZone 1368 1369iASL: Implemented a new ASL extension, a "For" loop macro to add greater 1370ease-of-use to the ASL language. The syntax is similar to the 1371corresponding C operator, and is implemented with the existing AML While 1372opcode -- thus requiring no changes to existing AML interpreters. 1373 1374 For (Initialize, Predicate, Update) {TermList} 1375 1376Grammar: 1377 ForTerm := 1378 For ( 1379 Initializer // Nothing | TermArg => ComputationalData 1380 Predicate // Nothing | TermArg => ComputationalData 1381 Update // Nothing | TermArg => ComputationalData 1382 ) {TermList} 1383 1384 1385iASL: The _HID/_ADR detection and validation has been enhanced to search 1386under conditionals in order to allow these objects to be conditionally 1387created at runtime. 1388 1389iASL: Fixed several issues with the constant folding feature. The 1390improvement allows better detection and resolution of statements that can 1391be folded at compile time. ACPICA BZ 1266. 1392 1393iASL/Disassembler: Fixed a couple issues with the Else{If{}...} 1394conversion to the ASL ElseIf operator where incorrect ASL code could be 1395generated. 1396 1397iASL/Disassembler: Fixed a problem with the ASL+ code disassembly where 1398sometimes an extra (and extraneous) set of parentheses were emitted for 1399some combinations of operators. Although this did not cause any problems 1400with recompilation of the disassembled code, it made the code more 1401difficult to read. David Box. ACPICA BZ 1231. 1402 1403iASL: Changed to ignore the unreferenced detection for predefined names 1404of resource descriptor elements, when the resource descriptor is 1405created/defined within a control method. 1406 1407iASL: Disassembler: Fix a possible fault with externally declared Buffer 1408objects. 1409 1410---------------------------------------- 141118 March 2016. Summary of changes for version 20160318: 1412 14131) ACPICA kernel-resident subsystem: 1414 1415Added support for arbitrary bit lengths and bit offsets for registers 1416defined by the Generic Address Structure. Previously, only aligned bit 1417lengths of 8/16/32/64 were supported. This was sufficient for many years, 1418but recently some machines have been seen that require arbitrary bit- 1419level support. ACPICA BZ 1240. Lv Zheng. 1420 1421Fixed an issue where the \_SB._INI method sometimes must be evaluated 1422before any _REG methods are evaluated. Lv Zheng. 1423 1424Implemented several changes related to ACPI table support 1425(Headers/Disassembler/TableCompiler): 1426NFIT: For ACPI 6.1, updated to add some additional new fields and 1427constants. 1428FADT: Updated a warning message and set compliance to ACPI 6.1 (Version 14296). 1430DMAR: Added new constants per the 10/2014 DMAR spec. 1431IORT: Added new subtable per the 10/2015 IORT spec. 1432HEST: For ACPI 6.1, added new constants and new subtable. 1433DBG2: Added new constants per the 12/2015 DBG2 spec. 1434FPDT: Fixed several incorrect fields, add the FPDT boot record structure. 1435ACPICA BZ 1249. 1436ERST/EINJ: Updated disassembler with new "Execute Timings" actions. 1437 1438Updated header support for the DMAR table to match the current version of 1439the related spec. 1440 1441Added extensions to the ASL Concatenate operator to allow any ACPI object 1442to be passed as an operand. Any object other than Integer/String/Buffer 1443simply returns a string containing the object type. This extends the 1444usefulness of the Printf macros. Previously, Concatenate would abort the 1445control method if a non-data object was encountered. 1446 1447ACPICA source code: Deployed the C "const" keyword across the source code 1448where appropriate. ACPICA BZ 732. Joerg Sonnenberger (NetBSD). 1449 1450Example Code and Data Size: These are the sizes for the OS-independent 1451acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 1452debug version of the code includes the debug output trace mechanism and 1453has a much larger code and data size. 1454 1455 Current Release: 1456 Non-Debug Version: 137.1K Code, 51.5K Data, 188.6K Total 1457 Debug Version: 201.0K Code, 82.0K Data, 283.0K Total 1458 Previous Release: 1459 Non-Debug Version: 136.2K Code, 51.5K Data, 187.7K Total 1460 Debug Version: 200.4K Code, 82.0K Data, 282.4K Total 1461 1462 14632) iASL Compiler/Disassembler and Tools: 1464 1465iASL/Disassembler: Improved the heuristic used to determine the number of 1466arguments for an externally defined control method (a method in another 1467table). Although this is an improvement, there is no deterministic way to 1468"guess" the number of method arguments. Only the ACPI 6.0 External opcode 1469will completely solve this problem as it is deployed (automatically) in 1470newer BIOS code. 1471 1472iASL/Disassembler: Fixed an ordering issue for emitted External() ASL 1473statements that could cause errors when the disassembled file is 1474compiled. ACPICA BZ 1243. David Box. 1475 1476iASL: Fixed a regression caused by the merger of the two versions of the 1477local strtoul64. Because of a dependency on a global variable, strtoul64 1478could return an error for integers greater than a 32-bit value. ACPICA BZ 14791260. 1480 1481iASL: Fixed a regression where a fault could occur for an ASL Return 1482statement if it invokes a control method that is not resolved. ACPICA BZ 14831264. 1484 1485AcpiXtract: Improved input file validation: detection of binary files and 1486non-acpidump text files. 1487 1488---------------------------------------- 148912 February 2016. Summary of changes for version 20160212: 1490 14911) ACPICA kernel-resident subsystem: 1492 1493Implemented full support for the ACPI 6.1 specification (released in 1494January). This version of the specification is available at: 1495http://www.uefi.org/specifications 1496 1497Only a relatively small number of changes were required in ACPICA to 1498support ACPI 6.1, in these areas: 1499- New predefined names 1500- New _HID values 1501- A new subtable for HEST 1502- A few other header changes for new values 1503 1504Ensure \_SB_._INI is executed before any _REG methods are executed. There 1505appears to be existing BIOS code that relies on this behavior. Lv Zheng. 1506 1507Reverted a change made in version 20151218 which enabled method 1508invocations to be targets of various ASL operators (SuperName and Target 1509grammar elements). While the new behavior is supported by the ACPI 1510specification, other AML interpreters do not support this behavior and 1511never will. The ACPI specification will be updated for ACPI 6.2 to remove 1512this support. Therefore, the change was reverted to the original ACPICA 1513behavior. 1514 1515ACPICA now supports the GCC 6 compiler. 1516 1517Current Release: (Note: build changes increased sizes) 1518 Non-Debug Version: 136.2K Code, 51.5K Data, 187.7K Total 1519 Debug Version: 200.4K Code, 82.0K Data, 282.4K Total 1520Previous Release: 1521 Non-Debug Version: 102.7K Code, 28.4K Data, 131.1K Total 1522 Debug Version: 200.4K Code, 81.9K Data, 282.3K Total 1523 1524 15252) iASL Compiler/Disassembler and Tools: 1526 1527Completed full support for the ACPI 6.0 External() AML opcode. The 1528compiler emits an external AML opcode for each ASL External statement. 1529This opcode is used by the disassembler to assist with the disassembly of 1530external control methods by specifying the required number of arguments 1531for the method. AML interpreters do not use this opcode. To ensure that 1532interpreters do not even see the opcode, a block of one or more external 1533opcodes is surrounded by an "If(0)" construct. As this feature becomes 1534commonly deployed in BIOS code, the ability of disassemblers to correctly 1535disassemble AML code will be greatly improved. David Box. 1536 1537iASL: Implemented support for an optional cross-reference output file. 1538The -lx option will create a the cross-reference file with the suffix 1539"xrf". Three different types of cross-reference are created in this file: 1540- List of object references made from within each control method 1541- Invocation (caller) list for each user-defined control method 1542- List of references to each non-method object in the namespace 1543 1544iASL: Method invocations as ASL Target operands are now disallowed and 1545flagged as errors in preparation for ACPI 6.2 (see the description of the 1546problem above). 1547 1548---------------------------------------- 15498 January 2016. Summary of changes for version 20160108: 1550 15511) ACPICA kernel-resident subsystem: 1552 1553Updated all ACPICA copyrights and signons to 2016: Added the 2016 1554copyright to all source code module headers and utility/tool signons. 1555This includes the standard Linux dual-license header. This affects 1556virtually every file in the ACPICA core subsystem, iASL compiler, all 1557ACPICA utilities, and the ACPICA test suite. 1558 1559Fixed a regression introduced in version 20151218 concerning the 1560execution of so-called module-level ASL/AML code. Namespace objects 1561created under a module-level If() construct were not properly/fully 1562entered into the namespace and could cause an interpreter fault when 1563accessed. 1564 1565Example Code and Data Size: These are the sizes for the OS-independent 1566acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 1567debug version of the code includes the debug output trace mechanism and 1568has a much larger code and data size. 1569 1570Current Release: 1571 Non-Debug Version: 102.7K Code, 28.4K Data, 131.1K Total 1572 Debug Version: 200.4K Code, 81.9K Data, 282.4K Total 1573 Previous Release: 1574 Non-Debug Version: 102.6K Code, 28.4K Data, 131.0K Total 1575 Debug Version: 200.3K Code, 81.9K Data, 282.3K Total 1576 1577 15782) iASL Compiler/Disassembler and Tools: 1579 1580Fixed a problem with the compilation of the GpioIo and GpioInt resource 1581descriptors. The _PIN field name was incorrectly defined to be an array 1582of 32-bit values, but the _PIN values are in fact 16 bits each. This 1583would cause incorrect bit width warnings when using Word (16-bit) fields 1584to access the descriptors. 1585 1586 1587---------------------------------------- 158818 December 2015. Summary of changes for version 20151218: 1589 15901) ACPICA kernel-resident subsystem: 1591 1592Implemented per-AML-table execution of "module-level code" as individual 1593ACPI tables are loaded into the namespace during ACPICA initialization. 1594In other words, any module-level code within an AML table is executed 1595immediately after the table is loaded, instead of batched and executed 1596after all of the tables have been loaded. This provides compatibility 1597with other ACPI implementations. ACPICA BZ 1219. Bob Moore, Lv Zheng, 1598David Box. 1599 1600To fully support the feature above, the default operation region handlers 1601for the SystemMemory, SystemIO, and PCI_Config address spaces are now 1602installed before any ACPI tables are loaded. This enables module-level 1603code to access these address spaces during the table load and module- 1604level code execution phase. ACPICA BZ 1220. Bob Moore, Lv Zheng, David 1605Box. 1606 1607Implemented several changes to the internal _REG support in conjunction 1608with the changes above. Also, changes to the AcpiExec/AcpiNames/Examples 1609utilities for the changes above. Although these tools were changed, host 1610operating systems that simply use the default handlers for SystemMemory, 1611SystemIO, and PCI_Config spaces should not require any update. Lv Zheng. 1612 1613For example, in the code below, DEV1 is conditionally added to the 1614namespace by the DSDT via module-level code that accesses an operation 1615region. The SSDT references DEV1 via the Scope operator. DEV1 must be 1616created immediately after the DSDT is loaded in order for the SSDT to 1617successfully reference DEV1. Previously, this code would cause an 1618AE_NOT_EXIST exception during the load of the SSDT. Now, this code is 1619fully supported by ACPICA. 1620 1621 DefinitionBlock ("", "DSDT", 2, "Intel", "DSDT1", 1) 1622 { 1623 OperationRegion (OPR1, SystemMemory, 0x400, 32) 1624 Field (OPR1, AnyAcc, NoLock, Preserve) 1625 { 1626 FLD1, 1 1627 } 1628 If (FLD1) 1629 { 1630 Device (\DEV1) 1631 { 1632 } 1633 } 1634 } 1635 DefinitionBlock ("", "SSDT", 2, "Intel", "SSDT1", 1) 1636 { 1637 External (\DEV1, DeviceObj) 1638 Scope (\DEV1) 1639 { 1640 } 1641 } 1642 1643Fixed an AML interpreter problem where control method invocations were 1644not handled correctly when the invocation was itself a SuperName argument 1645to another ASL operator. In these cases, the method was not invoked. 1646ACPICA BZ 1002. Affects the following ASL operators that have a SuperName 1647argument: 1648 Store 1649 Acquire, Wait 1650 CondRefOf, RefOf 1651 Decrement, Increment 1652 Load, Unload 1653 Notify 1654 Signal, Release, Reset 1655 SizeOf 1656 1657Implemented automatic String-to-ObjectReference conversion support for 1658packages returned by predefined names (such as _DEP). A common BIOS error 1659is to add double quotes around an ObjectReference namepath, which turns 1660the reference into an unexpected string object. This support detects the 1661problem and corrects it before the package is returned to the caller that 1662invoked the method. Lv Zheng. 1663 1664Implemented extensions to the Concatenate operator. Concatenate now 1665accepts any type of object, it is not restricted to simply 1666Integer/String/Buffer. For objects other than these 3 basic data types, 1667the argument is treated as a string containing the name of the object 1668type. This expands the utility of Concatenate and the Printf/Fprintf 1669macros. ACPICA BZ 1222. 1670 1671Cleaned up the output of the ASL Debug object. The timer() value is now 1672optional and no longer emitted by default. Also, the basic data types of 1673Integer/String/Buffer are simply emitted as their values, without a data 1674type string -- since the data type is obvious from the output. ACPICA BZ 16751221. 1676 1677Example Code and Data Size: These are the sizes for the OS-independent 1678acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 1679debug version of the code includes the debug output trace mechanism and 1680has a much larger code and data size. 1681 1682 Current Release: 1683 Non-Debug Version: 102.6K Code, 28.4K Data, 131.0K Total 1684 Debug Version: 200.3K Code, 81.9K Data, 282.3K Total 1685 Previous Release: 1686 Non-Debug Version: 102.0K Code, 28.3K Data, 130.3K Total 1687 Debug Version: 199.6K Code, 81.8K Data, 281.4K Total 1688 1689 16902) iASL Compiler/Disassembler and Tools: 1691 1692iASL: Fixed some issues with the ASL Include() operator. This operator 1693was incorrectly defined in the iASL parser rules, causing a new scope to 1694be opened for the code within the include file. This could lead to 1695several issues, including allowing ASL code that is technically illegal 1696and not supported by AML interpreters. Note, this does not affect the 1697related #include preprocessor operator. ACPICA BZ 1212. 1698 1699iASL/Disassembler: Implemented support for the ASL ElseIf operator. This 1700operator is essentially an ASL macro since there is no AML opcode 1701associated with it. The code emitted by the iASL compiler for ElseIf is 1702an Else opcode followed immediately by an If opcode. The disassembler 1703will now emit an ElseIf if it finds an Else immediately followed by an 1704If. This simplifies the decoded ASL, especially for deeply nested 1705If..Else and large Switch constructs. Thus, the disassembled code more 1706closely follows the original source ASL. ACPICA BZ 1211. Example: 1707 1708 Old disassembly: 1709 Else 1710 { 1711 If (Arg0 == 0x02) 1712 { 1713 Local0 = 0x05 1714 } 1715 } 1716 1717 New disassembly: 1718 ElseIf (Arg0 == 0x02) 1719 { 1720 Local0 = 0x05 1721 } 1722 1723AcpiExec: Added support for the new module level code behavior and the 1724early region installation. This required a small change to the 1725initialization, since AcpiExec must install its own operation region 1726handlers. 1727 1728AcpiExec: Added support to make the debug object timer optional. Default 1729is timer disabled. This cleans up the debug object output -- the timer 1730data is rarely used. 1731 1732AcpiExec: Multiple ACPI tables are now loaded in the order that they 1733appear on the command line. This can be important when there are 1734interdependencies/references between the tables. 1735 1736iASL/Templates. Add support to generate template files with multiple 1737SSDTs within a single output file. Also added ommand line support to 1738specify the number of SSDTs (in addition to a single DSDT). ACPICA BZ 17391223, 1225. 1740 1741 1742---------------------------------------- 174324 November 2015. Summary of changes for version 20151124: 1744 17451) ACPICA kernel-resident subsystem: 1746 1747Fixed a possible regression for a previous update to FADT handling. The 1748FADT no longer has a fixed table ID, causing some issues with code that 1749was hardwired to a specific ID. Lv Zheng. 1750 1751Fixed a problem where the method auto-serialization could interfere with 1752the current SyncLevel. This change makes the auto-serialization support 1753transparent to the SyncLevel support and management. 1754 1755Removed support for the _SUB predefined name in AcpiGetObjectInfo. This 1756interface is intended for early access to the namespace during the 1757initial namespace device discovery walk. The _SUB method has been seen to 1758access operation regions in some cases, causing errors because the 1759operation regions are not fully initialized. 1760 1761AML Debugger: Fixed some issues with the terminate/quit/exit commands 1762that can cause faults. Lv Zheng. 1763 1764AML Debugger: Add thread ID support so that single-step mode only applies 1765to the AML Debugger thread. This prevents runtime errors within some 1766kernels. Lv Zheng. 1767 1768Eliminated extraneous warnings from AcpiGetSleepTypeData. Since the _Sx 1769methods that are invoked by this interface are optional, removed warnings 1770emitted for the case where one or more of these methods do not exist. 1771ACPICA BZ 1208, original change by Prarit Bhargava. 1772 1773Made a major pass through the entire ACPICA source code base to 1774standardize formatting that has diverged a bit over time. There are no 1775functional changes, but this will of course cause quite a few code 1776differences from the previous ACPICA release. 1777 1778Example Code and Data Size: These are the sizes for the OS-independent 1779acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 1780debug version of the code includes the debug output trace mechanism and 1781has a much larger code and data size. 1782 1783 Current Release: 1784 Non-Debug Version: 102.0K Code, 28.3K Data, 130.3K Total 1785 Debug Version: 199.6K Code, 81.8K Data, 281.4K Total 1786 Previous Release: 1787 Non-Debug Version: 101.7K Code, 27.9K Data, 129.6K Total 1788 Debug Version: 199.3K Code, 81.4K Data, 280.7K Total 1789 1790 17912) iASL Compiler/Disassembler and Tools: 1792 1793iASL/acpiexec/acpixtract/disassembler: Added support to allow multiple 1794definition blocks within a single ASL file and the resulting AML file. 1795Support for this type of file was also added to the various tools that 1796use binary AML files: acpiexec, acpixtract, and the AML disassembler. The 1797example code below shows two definition blocks within the same file: 1798 1799 DefinitionBlock ("dsdt.aml", "DSDT", 2, "Intel", "Template", 18000x12345678) 1801 { 1802 } 1803 DefinitionBlock ("", "SSDT", 2, "Intel", "Template", 0xABCDEF01) 1804 { 1805 } 1806 1807iASL: Enhanced typechecking for the Name() operator. All expressions for 1808the value of the named object must be reduced/folded to a single constant 1809at compile time, as per the ACPI specification (the AML definition of 1810Name()). 1811 1812iASL: Fixed some code indentation issues for the -ic and -ia options (C 1813and assembly headers). Now all emitted code correctly begins in column 1. 1814 1815iASL: Added an error message for an attempt to open a Scope() on an 1816object defined in an SSDT. The DSDT is always loaded into the namespace 1817first, so any attempt to open a Scope on an SSDT object will fail at 1818runtime. 1819 1820 1821---------------------------------------- 182230 September 2015. Summary of changes for version 20150930: 1823 18241) ACPICA kernel-resident subsystem: 1825 1826Debugger: Implemented several changes and bug fixes to assist support for 1827the in-kernel version of the AML debugger. Lv Zheng. 1828- Fix the "predefined" command for in-kernel debugger. 1829- Do not enter debug command loop for the help and version commands. 1830- Disallow "execute" command during execution/single-step of a method. 1831 1832Interpreter: Updated runtime typechecking for all operators that have 1833target operands. The operand is resolved and validated that it is legal. 1834For example, the target cannot be a non-data object such as a Device, 1835Mutex, ThermalZone, etc., as per the ACPI specification. 1836 1837Debugger: Fixed the double-mutex user I/O handshake to work when local 1838deadlock detection is enabled. 1839 1840Debugger: limited display of method locals and arguments (LocalX and 1841ArgX) to only those that have actually been initialized. This prevents 1842lines of extraneous output. 1843 1844Updated the definition of the NFIT table to correct the bit polarity of 1845one flag: ACPI_NFIT_MEM_ARMED --> ACPI_NFIT_MEM_NOT_ARMED 1846 1847Example Code and Data Size: These are the sizes for the OS-independent 1848acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 1849debug version of the code includes the debug output trace mechanism and 1850has a much larger code and data size. 1851 1852 Current Release: 1853 Non-Debug Version: 101.7K Code, 27.9K Data, 129.6K Total 1854 Debug Version: 199.3K Code, 81.4K Data, 280.7K Total 1855 Previous Release: 1856 Non-Debug Version: 101.3K Code, 27.7K Data, 129.0K Total 1857 Debug Version: 198.6K Code, 80.9K Data, 279.5K Total 1858 1859 18602) iASL Compiler/Disassembler and Tools: 1861 1862iASL: Improved the compile-time typechecking for operands of many of the 1863ASL operators: 1864 1865-- Added an option to disable compiler operand/operator typechecking (- 1866ot). 1867 1868-- For the following operators, the TermArg operands are now validated 1869when possible to be Integer data objects: BankField, OperationRegion, 1870DataTableRegion, Buffer, and Package. 1871 1872-- Store (Source, Target): Both the source and target operands are 1873resolved and checked that the operands are both legal. For example, 1874neither operand can be a non-data object such as a Device, Mutex, 1875ThermalZone, etc. Note, as per the ACPI specification, the CopyObject 1876operator can be used to store an object to any type of target object. 1877 1878-- Store (Source, Target): If the source is a Package object, the target 1879must be a Package object, LocalX, ArgX, or Debug. Likewise, if the target 1880is a Package, the source must also be a Package. 1881 1882-- Store (Source, Target): A warning is issued if the source and target 1883resolve to the identical named object. 1884 1885-- Store (Source, <method invocation>): An error is generated for the 1886target method invocation, as this construct is not supported by the AML 1887interpreter. 1888 1889-- For all ASL math and logic operators, the target operand must be a 1890data object (Integer, String, Buffer, LocalX, ArgX, or Debug). This 1891includes the function return value also. 1892 1893-- External declarations are also included in the typechecking where 1894possible. External objects defined using the UnknownObj keyword cannot be 1895typechecked, however. 1896 1897iASL and Disassembler: Added symbolic (ASL+) support for the ASL Index 1898operator: 1899- Legacy code: Index(PKG1, 3) 1900- New ASL+ code: PKG1[3] 1901This completes the ACPI 6.0 ASL+ support as it was the only operator not 1902supported. 1903 1904iASL: Fixed the file suffix for the preprocessor output file (.i). Two 1905spaces were inadvertently appended to the filename, causing file access 1906and deletion problems on some systems. 1907 1908ASL Test Suite (ASLTS): Updated the master makefile to generate all 1909possible compiler output files when building the test suite -- thus 1910exercising these features of the compiler. These files are automatically 1911deleted when the test suite exits. 1912 1913 1914---------------------------------------- 191518 August 2015. Summary of changes for version 20150818: 1916 19171) ACPICA kernel-resident subsystem: 1918 1919Fix a regression for AcpiGetTableByIndex interface causing it to fail. Lv 1920Zheng. ACPICA BZ 1186. 1921 1922Completed development to ensure that the ACPICA Disassembler and Debugger 1923are fully standalone components of ACPICA. Removed cross-component 1924dependences. Lv Zheng. 1925 1926The max-number-of-AML-loops is now runtime configurable (previously was 1927compile-time only). This is essentially a loop timeout to force-abort 1928infinite AML loops. ACPCIA BZ 1192. 1929 1930Debugger: Cleanup output to dump ACPI names and namepaths without any 1931trailing underscores. Lv Zheng. ACPICA BZ 1135. 1932 1933Removed unnecessary conditional compilations across the Debugger and 1934Disassembler components where entire modules could be left uncompiled. 1935 1936The aapits test is deprecated and has been removed from the ACPICA git 1937tree. The test has never been completed and has not been maintained, thus 1938becoming rather useless. ACPICA BZ 1015, 794. 1939 1940A batch of small changes to close bugzilla and other reports: 1941- Remove duplicate code for _PLD processing. ACPICA BZ 1176. 1942- Correctly cleanup after a ACPI table load failure. ACPICA BZ 1185. 1943- iASL: Support POSIX yacc again in makefile. Jung-uk Kim. 1944- ACPI table support: general cleanup and simplification. Lv Zheng, Bob 1945Moore. 1946- ACPI table support: fix for a buffer read overrun in AcpiTbFindTable. 1947ACPICA BZ 1184. 1948- Enhance parameter validation for DataTableRegion and LoadTable ASL/AML 1949operators. 1950- Debugger: Split debugger initialization/termination interfaces. Lv 1951Zheng. 1952- AcpiExec: Emit OemTableId for SSDTs during the load phase for table 1953identification. 1954- AcpiExec: Add debug message during _REG method phase during table 1955load/init. 1956- AcpiNames: Fix a regression where some output was missing and no longer 1957emitted. 1958- Debugger: General cleanup and simplification. Lv Zheng. 1959- Disassembler: Cleanup use of several global option variables. Lv Zheng. 1960 1961Example Code and Data Size: These are the sizes for the OS-independent 1962acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 1963debug version of the code includes the debug output trace mechanism and 1964has a much larger code and data size. 1965 1966 Current Release: 1967 Non-Debug Version: 101.3K Code, 27.7K Data, 129.0K Total 1968 Debug Version: 198.6K Code, 80.9K Data, 279.5K Total 1969 Previous Release: 1970 Non-Debug Version: 100.9K Code, 24.5K Data, 125.4K Total 1971 Debug Version: 197.8K Code, 81.5K Data, 279.3K Total 1972 1973 19742) iASL Compiler/Disassembler and Tools: 1975 1976AcpiExec: Fixed a problem where any more than 32 ACPI tables in the XSDT 1977were not handled properly and caused load errors. Now, properly invoke 1978and use the ACPICA auto-reallocate mechanism for ACPI table data 1979structures. ACPICA BZ 1188 1980 1981AcpiNames: Add command-line wildcard support for ACPI table files. ACPICA 1982BZ 1190. 1983 1984AcpiExec and AcpiNames: Add -l option to load ACPI tables only. For 1985AcpiExec, this means that no control methods (like _REG/_INI/_STA) are 1986executed during initialization. ACPICA BZ 1187, 1189. 1987 1988iASL/Disassembler: Implemented a prototype "listing" mode that emits AML 1989that corresponds to each disassembled ASL statement, to simplify 1990debugging. ACPICA BZ 1191. 1991 1992Debugger: Add option to the "objects" command to display a summary of the 1993current namespace objects (Object type and count). This is displayed if 1994the command is entered with no arguments. 1995 1996AcpiNames: Add -x option to specify debug level, similar to AcpiExec. 1997 1998 1999---------------------------------------- 200017 July 2015. Summary of changes for version 20150717: 2001 20021) ACPICA kernel-resident subsystem: 2003 2004Improved the partitioning between the Debugger and Disassembler 2005components. This allows the Debugger to be used standalone within kernel 2006code without the Disassembler (which is used for single stepping also). 2007This renames and moves one file, dmobject.c to dbobject.c. Lv Zheng. 2008 2009Debugger: Implemented a new command to trace the execution of control 2010methods (Trace). This is especially useful for the in-kernel version of 2011the debugger when file I/O may not be available for method trace output. 2012See the ACPICA reference for more information. Lv Zheng. 2013 2014Moved all C library prototypes (used for the local versions of these 2015functions when requested) to a new header, acclib.h 2016Cleaned up the use of non-ANSI C library functions. These functions are 2017implemented locally in ACPICA. Moved all such functions to a common 2018source file, utnonansi.c 2019 2020Debugger: Fixed a problem with the "!!" command (get last command 2021executed) where the debugger could enter an infinite loop and eventually 2022crash. 2023 2024Removed the use of local macros that were used for some of the standard C 2025library functions to automatically cast input parameters. This mostly 2026affected the is* functions where the input parameter is defined to be an 2027int. This required a few modifications to the main ACPICA source code to 2028provide casting for these functions and eliminate possible compiler 2029warnings for these parameters. 2030 2031Across the source code, added additional status/error checking to resolve 2032issues discovered by static source code analysis tools such as Coverity. 2033 2034Example Code and Data Size: These are the sizes for the OS-independent 2035acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 2036debug version of the code includes the debug output trace mechanism and 2037has a much larger code and data size. 2038 2039 Current Release: 2040 Non-Debug Version: 100.9K Code, 24.5K Data, 125.4K Total 2041 Debug Version: 197.8K Code, 81.5K Data, 279.3K Total 2042 Previous Release: 2043 Non-Debug Version: 100.6K Code, 27.6K Data, 128.2K Total 2044 Debug Version: 196.2K Code, 81.0K Data, 277.2K Total 2045 2046 20472) iASL Compiler/Disassembler and Tools: 2048 2049iASL: Fixed a regression where the device map file feature no longer 2050worked properly when used in conjunction with the disassembler. It only 2051worked properly with the compiler itself. 2052 2053iASL: Implemented a new warning for method LocalX variables that are set 2054but never used (similar to a C compiler such as gcc). This also applies 2055to ArgX variables that are not defined by the parent method, and are 2056instead (legally) used as local variables. 2057 2058iASL/Preprocessor: Finished the pass-through of line numbers from the 2059preprocessor to the compiler. This ensures that compiler errors/warnings 2060have the correct original line numbers and filenames, regardless of any 2061#include files. 2062 2063iASL/Preprocessor: Fixed a couple of issues with comment handling and the 2064pass-through of comments to the preprocessor output file (which becomes 2065the compiler input file). Also fixed a problem with // comments that 2066appear after a math expression. 2067 2068iASL: Added support for the TCPA server table to the table compiler and 2069template generator. (The client table was already previously supported) 2070 2071iASL/Preprocessor: Added a permanent #define of the symbol "__IASL__" to 2072identify the iASL compiler. 2073 2074Cleaned up the use of the macros NEGATIVE and POSITIVE which were defined 2075multiple times. The new names are ACPI_SIGN_NEGATIVE and 2076ACPI_SIGN_POSITIVE. 2077 2078AcpiHelp: Update to expand help messages for the iASL preprocessor 2079directives. 2080 2081 2082---------------------------------------- 208319 June 2015. Summary of changes for version 20150619: 2084 2085Two regressions in version 20150616 have been addressed: 2086 2087Fixes some problems/issues with the C library macro removal (ACPI_STRLEN, 2088etc.) This update changes ACPICA to only use the standard headers for 2089functions, or the prototypes for the local versions of the C library 2090functions. Across the source code, this required some additional casts 2091for some Clib invocations for portability. Moved all local prototypes to 2092a new file, acclib.h 2093 2094Fixes several problems with recent changes to the handling of the FACS 2095table that could cause some systems not to boot. 2096 2097 2098---------------------------------------- 209916 June 2015. Summary of changes for version 20150616: 2100 2101 21021) ACPICA kernel-resident subsystem: 2103 2104Across the entire ACPICA source code base, the various macros for the C 2105library functions (such as ACPI_STRLEN, etc.) have been removed and 2106replaced by the standard C library names (strlen, etc.) The original 2107purpose for these macros is no longer applicable. This simplification 2108reduces the number of macros used in the ACPICA source code 2109significantly, improving readability and maintainability. 2110 2111Implemented support for a new ACPI table, the OSDT. This table, the 2112"override" SDT, can be loaded directly by the host OS at boot time. It 2113enables the replacement of existing namespace objects that were installed 2114via the DSDT and/or SSDTs. The primary purpose for this is to replace 2115buggy or incorrect ASL/AML code obtained via the BIOS. The OSDT is slated 2116for inclusion in a future version of the ACPI Specification. Lv Zheng/Bob 2117Moore. 2118 2119Added support for systems with (improperly) two FACS tables -- a "32-bit" 2120table (via FADT 32-bit legacy field) and a "64-bit" table (via the 64-bit 2121X field). This change will support both automatically. There continues to 2122be systems found with this issue. This support requires a change to the 2123AcpiSetFirmwareWakingVector interface. Also, a public global variable has 2124been added to allow the host to select which FACS is desired 2125(AcpiGbl_Use32BitFacsAddresses). See the ACPICA reference for more 2126details Lv Zheng. 2127 2128Added a new feature to allow for systems that do not contain an FACS. 2129Although this is already supported on hardware-reduced platforms, the 2130feature has been extended for all platforms. The reasoning is that we do 2131not want to abort the entire ACPICA initialization just because the 2132system is seriously buggy and has no FACS. 2133 2134Fixed a problem where the GUID strings for NFIT tables (in acuuid.h) were 2135not correctly transcribed from the ACPI specification in ACPICA version 213620150515. 2137 2138Implemented support for the _CLS object in the AcpiGetObjectInfo external 2139interface. 2140 2141Updated the definitions of the TCPA and TPM2 ACPI tables to the more 2142recent TCG ACPI Specification, December 14, 2014. Table disassembler and 2143compiler also updated. Note: The TCPA "server" table is not supported by 2144the disassembler/table-compiler at this time. 2145 2146ACPI 6.0: Added definitions for the new GIC version field in the MADT. 2147 2148Example Code and Data Size: These are the sizes for the OS-independent 2149acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 2150debug version of the code includes the debug output trace mechanism and 2151has a much larger code and data size. 2152 2153 Current Release: 2154 Non-Debug Version: 100.6K Code, 27.6K Data, 128.2K Total 2155 Debug Version: 196.2K Code, 81.0K Data, 277.2K Total 2156 Previous Release: 2157 Non-Debug Version: 99.9K Code, 27.5K Data, 127.4K Total 2158 Debug Version: 195.2K Code, 80.8K Data, 276.0K Total 2159 2160 21612) iASL Compiler/Disassembler and Tools: 2162 2163Disassembler: Fixed a problem with the new symbolic operator disassembler 2164where incorrect ASL code could be emitted in some cases for the "non- 2165commutative" operators -- Subtract, Divide, Modulo, ShiftLeft, and 2166ShiftRight. The actual problem cases seem to be rather unusual in common 2167ASL code, however. David Box. 2168 2169Modified the linux version of acpidump to obtain ACPI tables from not 2170just /dev/mem (which may not exist) and /sys/firmware/acpi/tables. Lv 2171Zheng. 2172 2173iASL: Fixed a problem where the user preprocessor output file (.i) 2174contained extra data that was not expected. The compiler was using this 2175file as a temporary file and passed through #line directives in order to 2176keep compiler error messages in sync with the input file and line number 2177across multiple include files. The (.i) is no longer a temporary file as 2178the compiler uses a new, different file for the original purpose. 2179 2180iASL: Fixed a problem where comments within the original ASL source code 2181file were not passed through to the preprocessor output file, nor any 2182listing files. 2183 2184iASL: Fixed some issues for the handling of the "#include" preprocessor 2185directive and the similar (but not the same) "Include" ASL operator. 2186 2187iASL: Add support for the new OSDT in both the disassembler and compiler. 2188 2189iASL: Fixed a problem with the constant folding support where a Buffer 2190object could be incorrectly generated (incorrectly formed) during a 2191conversion to a Store() operator. 2192 2193AcpiHelp: Updated for new NFIT GUIDs, "External" AML opcode, and new 2194description text for the _REV predefined name. _REV now permanently 2195returns 2, as per the ACPI 6.0 specification. 2196 2197Debugger: Enhanced the output of the Debug ASL object for references 2198produced by the Index operator. For Buffers and strings, only output the 2199actual byte pointed to by the index. For packages, only print the single 2200package element decoded by the index. Previously, the entire 2201buffer/string/package was emitted. 2202 2203iASL/Table-compiler: Fixed a regression where the "generic" data types 2204were no longer recognized, causing errors. 2205 2206 2207---------------------------------------- 220815 May 2015. Summary of changes for version 20150515: 2209 2210This release implements most of ACPI 6.0 as described below. 2211 22121) ACPICA kernel-resident subsystem: 2213 2214Implemented runtime argument checking and return value checking for all 2215new ACPI 6.0 predefined names. This includes: _BTH, _CR3, _DSD, _LPI, 2216_MTL, _PRR, _RDI, _RST, _TFP, _TSN. 2217 2218Example Code and Data Size: These are the sizes for the OS-independent 2219acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 2220debug version of the code includes the debug output trace mechanism and 2221has a much larger code and data size. 2222 2223 Current Release: 2224 Non-Debug Version: 99.9K Code, 27.5K Data, 127.4K Total 2225 Debug Version: 195.2K Code, 80.8K Data, 276.0K Total 2226 Previous Release: 2227 Non-Debug Version: 99.1K Code, 27.3K Data, 126.4K Total 2228 Debug Version: 192.8K Code, 79.9K Data, 272.7K Total 2229 2230 22312) iASL Compiler/Disassembler and Tools: 2232 2233iASL compiler: Added compile-time support for all new ACPI 6.0 predefined 2234names (argument count validation and return value typechecking.) 2235 2236iASL disassembler and table compiler: implemented support for all new 2237ACPI 6.0 tables. This includes: DRTM, IORT, LPIT, NFIT, STAO, WPBT, XENV. 2238 2239iASL disassembler and table compiler: Added ACPI 6.0 changes to existing 2240tables: FADT, MADT. 2241 2242iASL preprocessor: Added a new directive to enable inclusion of binary 2243blobs into ASL code. The new directive is #includebuffer. It takes a 2244binary file as input and emits a named ascii buffer object into the ASL 2245code. 2246 2247AcpiHelp: Added support for all new ACPI 6.0 predefined names. 2248 2249AcpiHelp: Added a new option, -d, to display all iASL preprocessor 2250directives. 2251 2252AcpiHelp: Added a new option, -t, to display all known/supported ACPI 2253tables. 2254 2255 2256---------------------------------------- 225710 April 2015. Summary of changes for version 20150410: 2258 2259Reverted a change introduced in version 20150408 that caused 2260a regression in the disassembler where incorrect operator 2261symbols could be emitted. 2262 2263 2264---------------------------------------- 226508 April 2015. Summary of changes for version 20150408: 2266 2267 22681) ACPICA kernel-resident subsystem: 2269 2270Permanently set the return value for the _REV predefined name. It now 2271returns 2 (was 5). This matches other ACPI implementations. _REV will be 2272deprecated in the future, and is now defined to be 1 for ACPI 1.0, and 2 2273for ACPI 2.0 and later. It should never be used to differentiate or 2274identify operating systems. 2275 2276Added the "Windows 2015" string to the _OSI support. ACPICA will now 2277return TRUE to a query with this string. 2278 2279Fixed several issues with the local version of the printf function. 2280 2281Added the C99 compiler option (-std=c99) to the Unix makefiles. 2282 2283 Current Release: 2284 Non-Debug Version: 99.9K Code, 27.4K Data, 127.3K Total 2285 Debug Version: 195.2K Code, 80.7K Data, 275.9K Total 2286 Previous Release: 2287 Non-Debug Version: 98.8K Code, 27.3K Data, 126.1K Total 2288 Debug Version: 192.1K Code, 79.8K Data, 271.9K Total 2289 2290 22912) iASL Compiler/Disassembler and Tools: 2292 2293iASL: Implemented an enhancement to the constant folding feature to 2294transform the parse tree to a simple Store operation whenever possible: 2295 Add (2, 3, X) ==> is converted to: Store (5, X) 2296 X = 2 + 3 ==> is converted to: Store (5, X) 2297 2298Updated support for the SLIC table (Software Licensing Description Table) 2299in both the Data Table compiler and the disassembler. The SLIC table 2300support now conforms to "Microsoft Software Licensing Tables (SLIC and 2301MSDM). November 29, 2011. Copyright 2011 Microsoft". Note: Any SLIC data 2302following the ACPI header is now defined to be "Proprietary Data", and as 2303such, can only be entered or displayed as a hex data block. 2304 2305Implemented full support for the MSDM table as described in the document 2306above. Note: The format of MSDM is similar to SLIC. Any MSDM data 2307following the ACPI header is defined to be "Proprietary Data", and can 2308only be entered or displayed as a hex data block. 2309 2310Implemented the -Pn option for the iASL Table Compiler (was only 2311implemented for the ASL compiler). This option disables the iASL 2312preprocessor. 2313 2314Disassembler: For disassembly of Data Tables, added a comment field 2315around the Ascii equivalent data that is emitted as part of the "Raw 2316Table Data" block. This prevents the iASL Preprocessor from possible 2317confusion if/when the table is compiled. 2318 2319Disassembler: Added an option (-df) to force the disassembler to assume 2320that the table being disassembled contains valid AML. This feature is 2321useful for disassembling AML files that contain ACPI signatures other 2322than DSDT or SSDT (such as OEMx or other signatures). 2323 2324Changes for the EFI version of the tools: 23251) Fixed a build error/issue 23262) Fixed a cast warning 2327 2328iASL: Fixed a path issue with the __FILE__ operator by making the 2329directory prefix optional within the internal SplitInputFilename 2330function. 2331 2332Debugger: Removed some unused global variables. 2333 2334Tests: Updated the makefile for proper generation of the AAPITS suite. 2335 2336 2337---------------------------------------- 233804 February 2015. Summary of changes for version 20150204: 2339 2340ACPICA kernel-resident subsystem: 2341 2342Updated all ACPICA copyrights and signons to 2014. Added the 2014 2343copyright to all module headers and signons, including the standard Linux 2344header. This affects virtually every file in the ACPICA core subsystem, 2345iASL compiler, all ACPICA utilities, and the test suites. 2346 2347Events: Introduce ACPI_GPE_DISPATCH_RAW_HANDLER to fix GPE storm issues. 2348A raw gpe handling mechanism was created to allow better handling of GPE 2349storms that aren't easily managed by the normal handler. The raw handler 2350allows disabling/renabling of the the GPE so that interrupt storms can be 2351avoided in cases where events cannot be timely serviced. In this 2352scenario, handlers should use the AcpiSetGpe() API to disable/enable the 2353GPE. This API will leave the reference counts undisturbed, thereby 2354preventing unintentional clearing of the GPE when the intent in only to 2355temporarily disable it. Raw handlers allow enabling and disabling of a 2356GPE by removing GPE register locking. As such, raw handlers much provide 2357their own locks while using GPE API's to protect access to GPE data 2358structures. 2359Lv Zheng 2360 2361Events: Always modify GPE registers under the GPE lock. 2362Applies GPE lock around AcpiFinishGpe() to protect access to GPE register 2363values. Reported as bug by joe.liu@apple.com. 2364 2365Unix makefiles: Separate option to disable optimizations and 2366_FORTIFY_SOURCE. This change removes the _FORTIFY_SOURCE flag from the 2367NOOPT disable option and creates a separate flag (NOFORTIFY) for this 2368purpose. Some toolchains may define _FORTIFY_SOURCE which leads redefined 2369errors when building ACPICA. This allows disabling the option without 2370also having to disable optimazations. 2371David Box 2372 2373 Current Release: 2374 Non-Debug Version: 101.7K Code, 27.9K Data, 129.6K Total 2375 Debug Version: 199.2K Code, 82.4K Data, 281.6K Total 2376 2377-- 2378-------------------------------------- 237907 November 2014. Summary of changes for version 20141107: 2380 2381This release is available at https://acpica.org/downloads 2382 2383This release introduces and implements language extensions to ASL that 2384provide support for symbolic ("C-style") operators and expressions. These 2385language extensions are known collectively as ASL+. 2386 2387 23881) iASL Compiler/Disassembler and Tools: 2389 2390Disassembler: Fixed a problem with disassembly of the UartSerialBus 2391macro. Changed "StopBitsNone" to the correct "StopBitsZero". David E. 2392Box. 2393 2394Disassembler: Fixed the Unicode macro support to add escape sequences. 2395All non-printable ASCII values are emitted as escape sequences, as well 2396as the standard escapes for quote and backslash. Ensures that the 2397disassembled macro can be correctly recompiled. 2398 2399iASL: Added Printf/Fprintf macros for formatted output. These macros are 2400translated to existing AML Concatenate and Store operations. Printf 2401writes to the ASL Debug object. Fprintf allows the specification of an 2402ASL name as the target. Only a single format specifier is required, %o, 2403since the AML interpreter dynamically converts objects to the required 2404type. David E. Box. 2405 2406 (old) Store (Concatenate (Concatenate (Concatenate (Concatenate 2407 (Concatenate (Concatenate (Concatenate ("", Arg0), 2408 ": Unexpected value for "), Arg1), ", "), Arg2), 2409 " at line "), Arg3), Debug) 2410 2411 (new) Printf ("%o: Unexpected value for %o, %o at line %o", 2412 Arg0, Arg1, Arg2, Arg3) 2413 2414 (old) Store (Concatenate (Concatenate (Concatenate (Concatenate 2415 ("", Arg1), ": "), Arg0), " Successful"), STR1) 2416 2417 (new) Fprintf (STR1, "%o: %o Successful", Arg1, Arg0) 2418 2419iASL: Added debug options (-bp, -bt) to dynamically prune levels of the 2420ASL parse tree before the AML code is generated. This allows blocks of 2421ASL code to be removed in order to help locate and identify problem 2422devices and/or code. David E. Box. 2423 2424AcpiExec: Added support (-fi) for an optional namespace object 2425initialization file. This file specifies initial values for namespace 2426objects as necessary for debugging and testing different ASL code paths 2427that may be taken as a result of BIOS options. 2428 2429 24302) Overview of symbolic operator support for ASL (ASL+) 2431------------------------------------------------------- 2432 2433As an extension to the ASL language, iASL implements support for symbolic 2434(C-style) operators for math and logical expressions. This can greatly 2435simplify ASL code as well as improve both readability and 2436maintainability. These language extensions can exist concurrently with 2437all legacy ASL code and expressions. 2438 2439The symbolic extensions are 100% compatible with existing AML 2440interpreters, since no new AML opcodes are created. To implement the 2441extensions, the iASL compiler transforms the symbolic expressions into 2442the legacy ASL/AML equivalents at compile time. 2443 2444Full symbolic expressions are supported, along with the standard C 2445precedence and associativity rules. 2446 2447Full disassembler support for the symbolic expressions is provided, and 2448creates an automatic migration path for existing ASL code to ASL+ code 2449via the disassembly process. By default, the disassembler now emits ASL+ 2450code with symbolic expressions. An option (-dl) is provided to force the 2451disassembler to emit legacy ASL code if desired. 2452 2453Below is the complete list of the currently supported symbolic operators 2454with examples. See the iASL User Guide for additional information. 2455 2456 2457ASL+ Syntax Legacy ASL Equivalent 2458----------- --------------------- 2459 2460 // Math operators 2461 2462Z = X + Y Add (X, Y, Z) 2463Z = X - Y Subtract (X, Y, Z) 2464Z = X * Y Multiply (X, Y, Z) 2465Z = X / Y Divide (X, Y, , Z) 2466Z = X % Y Mod (X, Y, Z) 2467Z = X << Y ShiftLeft (X, Y, Z) 2468Z = X >> Y ShiftRight (X, Y, Z) 2469Z = X & Y And (X, Y, Z) 2470Z = X | Y Or (X, Y, Z) 2471Z = X ^ Y Xor (X, Y, Z) 2472Z = ~X Not (X, Z) 2473X++ Increment (X) 2474X-- Decrement (X) 2475 2476 // Logical operators 2477 2478(X == Y) LEqual (X, Y) 2479(X != Y) LNotEqual (X, Y) 2480(X < Y) LLess (X, Y) 2481(X > Y) LGreater (X, Y) 2482(X <= Y) LLessEqual (X, Y) 2483(X >= Y) LGreaterEqual (X, Y) 2484(X && Y) LAnd (X, Y) 2485(X || Y) LOr (X, Y) 2486(!X) LNot (X) 2487 2488 // Assignment and compound assignment operations 2489 2490X = Y Store (Y, X) 2491X += Y Add (X, Y, X) 2492X -= Y Subtract (X, Y, X) 2493X *= Y Multiply (X, Y, X) 2494X /= Y Divide (X, Y, , X) 2495X %= Y Mod (X, Y, X) 2496X <<= Y ShiftLeft (X, Y, X) 2497X >>= Y ShiftRight (X, Y, X) 2498X &= Y And (X, Y, X) 2499X |= Y Or (X, Y, X) 2500X ^= Y Xor (X, Y, X) 2501 2502 25033) ASL+ Examples: 2504----------------- 2505 2506Legacy ASL: 2507 If (LOr (LOr (LEqual (And (R510, 0x03FB), 0x02E0), LEqual ( 2508 And (R520, 0x03FB), 0x02E0)), LOr (LEqual (And (R530, 25090x03FB), 2510 0x02E0), LEqual (And (R540, 0x03FB), 0x02E0)))) 2511 { 2512 And (MEMB, 0xFFFFFFF0, SRMB) 2513 Store (MEMB, Local2) 2514 Store (PDBM, Local1) 2515 And (PDBM, 0xFFFFFFFFFFFFFFF9, PDBM) 2516 Store (SRMB, MEMB) 2517 Or (PDBM, 0x02, PDBM) 2518 } 2519 2520ASL+ version: 2521 If (((R510 & 0x03FB) == 0x02E0) || 2522 ((R520 & 0x03FB) == 0x02E0) || 2523 ((R530 & 0x03FB) == 0x02E0) || 2524 ((R540 & 0x03FB) == 0x02E0)) 2525 { 2526 SRMB = (MEMB & 0xFFFFFFF0) 2527 Local2 = MEMB 2528 Local1 = PDBM 2529 PDBM &= 0xFFFFFFFFFFFFFFF9 2530 MEMB = SRMB 2531 PDBM |= 0x02 2532 } 2533 2534Legacy ASL: 2535 Store (0x1234, Local1) 2536 Multiply (Add (Add (Local1, TEST), 0x20), Local2, Local3) 2537 Multiply (Local2, Add (Add (Local1, TEST), 0x20), Local3) 2538 Add (Local1, Add (TEST, Multiply (0x20, Local2)), Local3) 2539 Store (Index (PKG1, 0x03), Local6) 2540 Store (Add (Local3, Local2), Debug) 2541 Add (Local1, 0x0F, Local2) 2542 Add (Local1, Multiply (Local2, Local3), Local2) 2543 Multiply (Add (Add (Local1, TEST), 0x20), ToBCD (Local1), Local3) 2544 2545ASL+ version: 2546 Local1 = 0x1234 2547 Local3 = (((Local1 + TEST) + 0x20) * Local2) 2548 Local3 = (Local2 * ((Local1 + TEST) + 0x20)) 2549 Local3 = (Local1 + (TEST + (0x20 * Local2))) 2550 Local6 = Index (PKG1, 0x03) 2551 Debug = (Local3 + Local2) 2552 Local2 = (Local1 + 0x0F) 2553 Local2 = (Local1 + (Local2 * Local3)) 2554 Local3 = (((Local1 + TEST) + 0x20) * ToBCD (Local1)) 2555 2556 2557---------------------------------------- 255826 September 2014. Summary of changes for version 20140926: 2559 25601) ACPICA kernel-resident subsystem: 2561 2562Updated the GPIO operation region handler interface (GeneralPurposeIo). 2563In order to support GPIO Connection objects with multiple pins, along 2564with the related Field objects, the following changes to the interface 2565have been made: The Address is now defined to be the offset in bits of 2566the field unit from the previous invocation of a Connection. It can be 2567viewed as a "Pin Number Index" into the connection resource descriptor. 2568The BitWidth is the exact bit width of the field. It is usually one bit, 2569but not always. See the ACPICA reference guide (section 8.8.6.2.1) for 2570additional information and examples. 2571 2572GPE support: During ACPICA/GPE initialization, ensure that all GPEs with 2573corresponding _Lxx/_Exx methods are disabled (they may have been enabled 2574by the firmware), so that they cannot fire until they are enabled via 2575AcpiUpdateAllGpes. Rafael J. Wysocki. 2576 2577Added a new return flag for the Event/GPE status interfaces -- 2578AcpiGetEventStatus and AcpiGetGpeStatus. The new 2579ACPI_EVENT_FLAGS_HAS_HANDLER flag is used to indicate that the event or 2580GPE currently has a handler associated with it, and can thus actually 2581affect the system. Lv Zheng. 2582 2583Example Code and Data Size: These are the sizes for the OS-independent 2584acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 2585debug version of the code includes the debug output trace mechanism and 2586has a much larger code and data size. 2587 2588 Current Release: 2589 Non-Debug Version: 99.1K Code, 27.3K Data, 126.4K Total 2590 Debug Version: 192.8K Code, 79.9K Data, 272.7K Total 2591 Previous Release: 2592 Non-Debug Version: 98.8K Code, 27.3K Data, 126.1K Total 2593 Debug Version: 192.1K Code, 79.8K Data, 271.9K Total 2594 25952) iASL Compiler/Disassembler and Tools: 2596 2597iASL: Fixed a memory allocation/free regression introduced in 20140828 2598that could cause the compiler to crash. This was introduced inadvertently 2599during the effort to eliminate compiler memory leaks. ACPICA BZ 1111, 26001113. 2601 2602iASL: Removed two error messages that have been found to create false 2603positives, until they can be fixed and fully validated (ACPICA BZ 1112): 26041) Illegal forward reference within a method 26052) Illegal reference across two methods 2606 2607iASL: Implemented a new option (-lm) to create a hardware mapping file 2608that summarizes all GPIO, I2C, SPI, and UART connections. This option 2609works for both the compiler and disassembler. See the iASL compiler user 2610guide for additional information and examples (section 6.4.6). 2611 2612AcpiDump: Added support for the version 1 (ACPI 1.0) RSDP in addition to 2613version 2. This corrects the AE_BAD_HEADER exception seen on systems with 2614a version 1 RSDP. Lv Zheng ACPICA BZ 1097. 2615 2616AcpiExec: For Unix versions, don't attempt to put STDIN into raw mode 2617unless STDIN is actually a terminal. Assists with batch-mode processing. 2618ACPICA BZ 1114. 2619 2620Disassembler/AcpiHelp: Added another large group of recognized _HID 2621values. 2622 2623 2624---------------------------------------- 262528 August 2014. Summary of changes for version 20140828: 2626 26271) ACPICA kernel-resident subsystem: 2628 2629Fixed a problem related to the internal use of the Timer() operator where 2630a 64-bit divide could cause an attempted link to a double-precision math 2631library. This divide is not actually necessary, so the code was 2632restructured to eliminate it. Lv Zheng. 2633 2634ACPI 5.1: Added support for the runtime validation of the _DSD package 2635(similar to the iASL support). 2636 2637ACPI 5.1/Headers: Added support for the GICC affinity subtable to the 2638SRAT table. Hanjun Guo <hanjun.guo@linaro.org>. 2639 2640Example Code and Data Size: These are the sizes for the OS-independent 2641acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 2642debug version of the code includes the debug output trace mechanism and 2643has a much larger code and data size. 2644 2645 Current Release: 2646 Non-Debug Version: 98.8K Code, 27.3K Data, 126.1K Total 2647 Debug Version: 192.1K Code, 79.8K Data, 271.9K Total 2648 Previous Release: 2649 Non-Debug Version: 98.7K Code, 27.3K Data, 126.0K Total1 2650 Debug Version: 192.0K Code, 79.7K Data, 271.7K Total 2651 26522) iASL Compiler/Disassembler and Tools: 2653 2654AcpiExec: Fixed a problem on unix systems where the original terminal 2655state was not always properly restored upon exit. Seen when using the -v 2656option. ACPICA BZ 1104. 2657 2658iASL: Fixed a problem with the validation of the ranges/length within the 2659Memory24 resource descriptor. There was a boundary condition when the 2660range was equal to the (length -1) caused by the fact that these values 2661are defined in 256-byte blocks, not bytes. ACPICA BZ 1098 2662 2663Disassembler: Fixed a problem with the GpioInt descriptor interrupt 2664polarity 2665flags. The flags are actually 2 bits, not 1, and the "ActiveBoth" keyword 2666is 2667now supported properly. 2668 2669ACPI 5.1: Added the GICC affinity subtable to the SRAT table. Supported 2670in the disassembler, data table compiler, and table template generator. 2671 2672iASL: Added a requirement for Device() objects that one of either a _HID 2673or _ADR must exist within the scope of a Device, as per the ACPI 2674specification. Remove a similar requirement that was incorrectly in place 2675for the _DSD object. 2676 2677iASL: Added error detection for illegal named references within control 2678methods that would cause runtime failures. Now trapped as errors are: 1) 2679References to objects within a non-parent control method. 2) Forward 2680references (within a method) -- for control methods, AML interpreters use 2681a one-pass parse of control methods. ACPICA BZ 1008. 2682 2683iASL: Added error checking for dependencies related to the _PSx power 2684methods. ACPICA BZ 1029. 26851) For _PS0, one of these must exist within the same scope: _PS1, _PS2, 2686_PS3. 26872) For _PS1, _PS2, and PS3: A _PS0 object must exist within the same 2688scope. 2689 2690iASL and table compiler: Cleanup miscellaneous memory leaks by fully 2691deploying the existing object and string caches and adding new caches for 2692the table compiler. 2693 2694iASL: Split the huge parser source file into multiple subfiles to improve 2695manageability. Generation now requires the M4 macro preprocessor, which 2696is part of the Bison distribution on both unix and windows platforms. 2697 2698AcpiSrc: Fixed and removed all extraneous warnings generated during 2699entire ACPICA source code scan and/or conversion. 2700 2701 2702---------------------------------------- 2703 270424 July 2014. Summary of changes for version 20140724: 2705 2706The ACPI 5.1 specification has been released and is available at: 2707http://uefi.org/specs/access 2708 2709 27100) ACPI 5.1 support in ACPICA: 2711 2712ACPI 5.1 is fully supported in ACPICA as of this release. 2713 2714New predefined names. Support includes iASL and runtime ACPICA 2715validation. 2716 _CCA (Cache Coherency Attribute). 2717 _DSD (Device-Specific Data). David Box. 2718 2719Modifications to existing ACPI tables. Support includes headers, iASL 2720Data Table compiler, disassembler, and the template generator. 2721 FADT - New fields and flags. Graeme Gregory. 2722 GTDT - One new subtable and new fields. Tomasz Nowicki. 2723 MADT - Two new subtables. Tomasz Nowicki. 2724 PCCT - One new subtable. 2725 2726Miscellaneous. 2727 New notification type for System Resource Affinity change events. 2728 2729 27301) ACPICA kernel-resident subsystem: 2731 2732Fixed a regression introduced in 20140627 where a fault can happen during 2733the deletion of Alias AML namespace objects. The problem affected both 2734the core ACPICA and the ACPICA tools including iASL and AcpiExec. 2735 2736Implemented a new GPE public interface, AcpiMarkGpeForWake. Provides a 2737simple mechanism to enable wake GPEs that have no associated handler or 2738control method. Rafael Wysocki. 2739 2740Updated the AcpiEnableGpe interface to disallow the enable if there is no 2741handler or control method associated with the particular GPE. This will 2742help avoid meaningless GPEs and even GPE floods. Rafael Wysocki. 2743 2744Updated GPE handling and dispatch by disabling the GPE before clearing 2745the status bit for edge-triggered GPEs. Lv Zheng. 2746 2747Added Timer() support to the AML Debug object. The current timer value is 2748now displayed with each invocation of (Store to) the debug object to 2749enable simple generation of execution times for AML code (method 2750execution for example.) ACPICA BZ 1093. 2751 2752Example Code and Data Size: These are the sizes for the OS-independent 2753acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 2754debug version of the code includes the debug output trace mechanism and 2755has a much larger code and data size. 2756 2757 Current Release: 2758 Non-Debug Version: 98.7K Code, 27.3K Data, 126.0K Total 2759 Debug Version: 192.0K Code, 79.7K Data, 271.7K Total 2760 Previous Release: 2761 Non-Debug Version: 98.7K Code, 27.2K Data, 125.9K Total 2762 Debug Version: 191.7K Code, 79.6K Data, 271.3K Total 2763 2764 27652) iASL Compiler/Disassembler and Tools: 2766 2767Fixed an issue with the recently added local printf implementation, 2768concerning width/precision specifiers that could cause incorrect output. 2769Lv Zheng. ACPICA BZ 1094. 2770 2771Disassembler: Added support to detect buffers that contain UUIDs and 2772disassemble them to an invocation of the ToUUID operator. Also emit 2773commented descriptions of known ACPI-related UUIDs. 2774 2775AcpiHelp: Added support to display known ACPI-related UUIDs. New option, 2776-u. Adds three new files. 2777 2778iASL: Update table compiler and disassembler for DMAR table changes that 2779were introduced in September 2013. With assistance by David Woodhouse. 2780 2781---------------------------------------- 278227 June 2014. Summary of changes for version 20140627: 2783 27841) ACPICA kernel-resident subsystem: 2785 2786Formatted Output: Implemented local versions of standard formatted output 2787utilities such as printf, etc. Over time, it has been discovered that 2788there are in fact many portability issues with printf, and the addition 2789of this feature will fix/prevent these issues once and for all. Some 2790known issues are summarized below: 2791 27921) Output of 64-bit values is not portable. For example, UINT64 is %ull 2793for the Linux kernel and is %uI64 for some MSVC versions. 27942) Invoking printf consistently in a manner that is portable across both 279532-bit and 64-bit platforms is difficult at best in many situations. 27963) The output format for pointers varies from system to system (leading 2797zeros especially), and leads to inconsistent output from ACPICA across 2798platforms. 27994) Certain platform-specific printf formats may conflict with ACPICA use. 28005) If there is no local C library available, ACPICA now has local support 2801for printf. 2802 2803-- To address these printf issues in a complete manner, ACPICA now 2804directly implements a small subset of printf format specifiers, only 2805those that it requires. Adds a new file, utilities/utprint.c. Lv Zheng. 2806 2807Implemented support for ACPICA generation within the EFI environment. 2808Initially, the AcpiDump utility is supported in the UEFI shell 2809environment. Lv Zheng. 2810 2811Added a new external interface, AcpiLogError, to improve ACPICA 2812portability. This allows the host to redirect error messages from the 2813ACPICA utilities. Lv Zheng. 2814 2815Added and deployed new OSL file I/O interfaces to improve ACPICA 2816portability: 2817 AcpiOsOpenFile 2818 AcpiOsCloseFile 2819 AcpiOsReadFile 2820 AcpiOsWriteFile 2821 AcpiOsGetFileOffset 2822 AcpiOsSetFileOffset 2823There are C library implementations of these functions in the new file 2824service_layers/oslibcfs.c -- however, the functions can be implemented by 2825the local host in any way necessary. Lv Zheng. 2826 2827Implemented a mechanism to disable/enable ACPI table checksum validation 2828at runtime. This can be useful when loading tables very early during OS 2829initialization when it may not be possible to map the entire table in 2830order to compute the checksum. Lv Zheng. 2831 2832Fixed a buffer allocation issue for the Generic Serial Bus support. 2833Originally, a fixed buffer length was used. This change allows for 2834variable-length buffers based upon the protocol indicated by the field 2835access attributes. Reported by Lan Tianyu. Lv Zheng. 2836 2837Fixed a problem where an object detached from a namespace node was not 2838properly terminated/cleared and could cause a circular list problem if 2839reattached. ACPICA BZ 1063. David Box. 2840 2841Fixed a possible recursive lock acquisition in hwregs.c. Rakib Mullick. 2842 2843Fixed a possible memory leak in an error return path within the function 2844AcpiUtCopyIobjectToIobject. ACPICA BZ 1087. Colin Ian King. 2845 2846Example Code and Data Size: These are the sizes for the OS-independent 2847acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 2848debug version of the code includes the debug output trace mechanism and 2849has a much larger code and data size. 2850 2851 Current Release: 2852 Non-Debug Version: 98.7K Code, 27.2K Data, 125.9K Total 2853 Debug Version: 191.7K Code, 79.6K Data, 271.3K Total 2854 Previous Release: 2855 Non-Debug Version: 96.8K Code, 27.2K Data, 124.0K Total 2856 Debug Version: 189.5K Code, 79.7K Data, 269.2K Total 2857 2858 28592) iASL Compiler/Disassembler and Tools: 2860 2861Disassembler: Add dump of ASCII equivalent text within a comment at the 2862end of each line of the output for the Buffer() ASL operator. 2863 2864AcpiDump: Miscellaneous changes: 2865 Fixed repetitive table dump in -n mode. 2866 For older EFI platforms, use the ACPI 1.0 GUID during RSDP search if 2867the ACPI 2.0 GUID fails. 2868 2869iASL: Fixed a problem where the compiler could fault if incorrectly given 2870an acpidump output file as input. ACPICA BZ 1088. David Box. 2871 2872AcpiExec/AcpiNames: Fixed a problem where these utilities could fault if 2873they are invoked without any arguments. 2874 2875Debugger: Fixed a possible memory leak in an error return path. ACPICA BZ 28761086. Colin Ian King. 2877 2878Disassembler: Cleaned up a block of code that extracts a parent Op 2879object. Added a comment that explains that the parent is guaranteed to be 2880valid in this case. ACPICA BZ 1069. 2881 2882 2883---------------------------------------- 288424 April 2014. Summary of changes for version 20140424: 2885 28861) ACPICA kernel-resident subsystem: 2887 2888Implemented support to skip/ignore NULL address entries in the RSDT/XSDT. 2889Some of these tables are known to contain a trailing NULL entry. Lv 2890Zheng. 2891 2892Removed an extraneous error message for the case where there are a large 2893number of system GPEs (> 124). This was the "32-bit FADT register is too 2894long to convert to GAS struct" message, which is irrelevant for GPEs 2895since the GPEx_BLK_LEN fields of the FADT are always used instead of the 2896(limited capacity) GAS bit length. Also, several changes to ensure proper 2897support for GPE numbers > 255, where some "GPE number" fields were 8-bits 2898internally. 2899 2900Implemented and deployed additional configuration support for the public 2901ACPICA external interfaces. Entire classes of interfaces can now be 2902easily modified or configured out, replaced by stubbed inline functions 2903by default. Lv Zheng. 2904 2905Moved all public ACPICA runtime configuration globals to the public 2906ACPICA external interface file for convenience. Also, removed some 2907obsolete/unused globals. See the file acpixf.h. Lv Zheng. 2908 2909Documentation: Added a new section to the ACPICA reference describing the 2910maximum number of GPEs that can be supported by the FADT-defined GPEs in 2911block zero and one. About 1200 total. See section 4.4.1 of the ACPICA 2912reference. 2913 2914Example Code and Data Size: These are the sizes for the OS-independent 2915acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 2916debug version of the code includes the debug output trace mechanism and 2917has a much larger code and data size. 2918 2919 Current Release: 2920 Non-Debug Version: 96.8K Code, 27.2K Data, 124.0K Total 2921 Debug Version: 189.5K Code, 79.7K Data, 269.2K Total 2922 Previous Release: 2923 Non-Debug Version: 97.0K Code, 27.2K Data, 124.2K Total 2924 Debug Version: 189.7K Code, 79.5K Data, 269.2K Total 2925 2926 29272) iASL Compiler/Disassembler and Tools: 2928 2929iASL and disassembler: Add full support for the LPIT table (Low Power 2930Idle Table). Includes support in the disassembler, data table compiler, 2931and template generator. 2932 2933AcpiDump utility: 29341) Add option to force the use of the RSDT (over the XSDT). 29352) Improve validation of the RSDP signature (use 8 chars instead of 4). 2936 2937iASL: Add check for predefined packages that are too large. For 2938predefined names that contain subpackages, check if each subpackage is 2939too large. (Check for too small already exists.) 2940 2941Debugger: Updated the GPE command (which simulates a GPE by executing the 2942GPE code paths in ACPICA). The GPE device is now optional, and defaults 2943to the GPE 0/1 FADT-defined blocks. 2944 2945Unix application OSL: Update line-editing support. Add additional error 2946checking and take care not to reset terminal attributes on exit if they 2947were never set. This should help guarantee that the terminal is always 2948left in the previous state on program exit. 2949 2950 2951---------------------------------------- 295225 March 2014. Summary of changes for version 20140325: 2953 29541) ACPICA kernel-resident subsystem: 2955 2956Updated the auto-serialize feature for control methods. This feature 2957automatically serializes all methods that create named objects in order 2958to prevent runtime errors. The update adds support to ignore the 2959currently executing AML SyncLevel when invoking such a method, in order 2960to prevent disruption of any existing SyncLevel priorities that may exist 2961in the AML code. Although the use of SyncLevels is relatively rare, this 2962change fixes a regression where an AE_AML_MUTEX_ORDER exception can 2963appear on some machines starting with the 20140214 release. 2964 2965Added a new external interface to allow the host to install ACPI tables 2966very early, before the namespace is even created. AcpiInstallTable gives 2967the host additional flexibility for ACPI table management. Tables can be 2968installed directly by the host as if they had originally appeared in the 2969XSDT/RSDT. Installed tables can be SSDTs or other ACPI data tables 2970(anything except the DSDT and FACS). Adds a new file, tbdata.c, along 2971with additional internal restructuring and cleanup. See the ACPICA 2972Reference for interface details. Lv Zheng. 2973 2974Added validation of the checksum for all incoming dynamically loaded 2975tables (via external interfaces or via AML Load/LoadTable operators). Lv 2976Zheng. 2977 2978Updated the use of the AcpiOsWaitEventsComplete interface during Notify 2979and GPE handler removal. Restructured calls to eliminate possible race 2980conditions. Lv Zheng. 2981 2982Added a warning for the use/execution of the ASL/AML Unload (table) 2983operator. This will help detect and identify machines that use this 2984operator if and when it is ever used. This operator has never been seen 2985in the field and the usage model and possible side-effects of the drastic 2986runtime action of a full table removal are unknown. 2987 2988Reverted the use of #pragma push/pop which was introduced in the 20140214 2989release. It appears that push and pop are not implemented by enough 2990compilers to make the use of this feature feasible for ACPICA at this 2991time. However, these operators may be deployed in a future ACPICA 2992release. 2993 2994Added the missing EXPORT_SYMBOL macros for the install and remove SCI 2995handler interfaces. 2996 2997Source code generation: 29981) Disabled the use of the "strchr" macro for the gcc-specific 2999generation. For some versions of gcc, this macro can periodically expose 3000a compiler bug which in turn causes compile-time error(s). 30012) Added support for PPC64 compilation. Colin Ian King. 3002 3003Example Code and Data Size: These are the sizes for the OS-independent 3004acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 3005debug version of the code includes the debug output trace mechanism and 3006has a much larger code and data size. 3007 3008 Current Release: 3009 Non-Debug Version: 97.0K Code, 27.2K Data, 124.2K Total 3010 Debug Version: 189.7K Code, 79.5K Data, 269.2K Total 3011 Previous Release: 3012 Non-Debug Version: 96.5K Code, 27.2K Data, 123.7K Total 3013 Debug Version: 188.6K Code, 79.0K Data, 267.6K Total 3014 3015 30162) iASL Compiler/Disassembler and Tools: 3017 3018Disassembler: Added several new features to improve the readability of 3019the resulting ASL code. Extra information is emitted within comment 3020fields in the ASL code: 30211) Known _HID/_CID values are decoded to descriptive text. 30222) Standard values for the Notify() operator are decoded to descriptive 3023text. 30243) Target operands are expanded to full pathnames (in a comment) when 3025possible. 3026 3027Disassembler: Miscellaneous updates for extern() handling: 30281) Abort compiler if file specified by -fe option does not exist. 30292) Silence unnecessary warnings about argument count mismatches. 30303) Update warning messages concerning unresolved method externals. 30314) Emit "UnknownObj" keyword for externals whose type cannot be 3032determined. 3033 3034AcpiHelp utility: 30351) Added the -a option to display both the ASL syntax and the AML 3036encoding for an input ASL operator. This effectively displays all known 3037information about an ASL operator with one AcpiHelp invocation. 30382) Added substring match support (similar to a wildcard) for the -i 3039(_HID/PNP IDs) option. 3040 3041iASL/Disassembler: Since this tool does not yet support execution on big- 3042endian machines, added detection of endianness and an error message if 3043execution is attempted on big-endian. Support for big-endian within iASL 3044is a feature that is on the ACPICA to-be-done list. 3045 3046AcpiBin utility: 30471) Remove option to extract binary files from an acpidump; this function 3048is made obsolete by the AcpiXtract utility. 30492) General cleanup of open files and allocated buffers. 3050 3051 3052---------------------------------------- 305314 February 2014. Summary of changes for version 20140214: 3054 30551) ACPICA kernel-resident subsystem: 3056 3057Implemented a new mechanism to proactively prevent problems with ill- 3058behaved reentrant control methods that create named ACPI objects. This 3059behavior is illegal as per the ACPI specification, but is nonetheless 3060frequently seen in the field. Previously, this could lead to an 3061AE_ALREADY_EXISTS exception if the method was actually entered by more 3062than one thread. This new mechanism detects such methods at table load 3063time and marks them "serialized" to prevent reentrancy. A new global 3064option, AcpiGbl_AutoSerializeMethods, has been added to disable this 3065feature if desired. This mechanism and global option obsoletes and 3066supersedes the previous AcpiGbl_SerializeAllMethods option. 3067 3068Added the "Windows 2013" string to the _OSI support. ACPICA will now 3069respond TRUE to _OSI queries with this string. It is the stated policy of 3070ACPICA to add new strings to the _OSI support as soon as possible after 3071they are defined. See the full ACPICA _OSI policy which has been added to 3072the utilities/utosi.c file. 3073 3074Hardened/updated the _PRT return value auto-repair code: 30751) Do not abort the repair on a single subpackage failure, continue to 3076check all subpackages. 30772) Add check for the minimum subpackage length (4). 30783) Properly handle extraneous NULL package elements. 3079 3080Added support to avoid the possibility of infinite loops when traversing 3081object linked lists. Never allow an infinite loop, even in the face of 3082corrupted object lists. 3083 3084ACPICA headers: Deployed the use of #pragma pack(push) and #pragma 3085pack(pop) directives to ensure that the ACPICA headers are independent of 3086compiler settings or other host headers. 3087 3088Example Code and Data Size: These are the sizes for the OS-independent 3089acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 3090debug version of the code includes the debug output trace mechanism and 3091has a much larger code and data size. 3092 3093 Current Release: 3094 Non-Debug Version: 96.5K Code, 27.2K Data, 123.7K Total 3095 Debug Version: 188.6K Code, 79.0K Data, 267.6K Total 3096 Previous Release: 3097 Non-Debug Version: 96.2K Code, 27.0K Data, 123.2K Total 3098 Debug Version: 187.5K Code, 78.3K Data, 265.8K Total 3099 3100 31012) iASL Compiler/Disassembler and Tools: 3102 3103iASL/Table-compiler: Fixed a problem with support for the SPMI table. The 3104first reserved field was incorrectly forced to have a value of zero. This 3105change correctly forces the field to have a value of one. ACPICA BZ 1081. 3106 3107Debugger: Added missing support for the "Extra" and "Data" subobjects 3108when displaying object data. 3109 3110Debugger: Added support to display entire object linked lists when 3111displaying object data. 3112 3113iASL: Removed the obsolete -g option to obtain ACPI tables from the 3114Windows registry. This feature has been superseded by the acpidump 3115utility. 3116 3117 3118---------------------------------------- 311914 January 2014. Summary of changes for version 20140114: 3120 31211) ACPICA kernel-resident subsystem: 3122 3123Updated all ACPICA copyrights and signons to 2014. Added the 2014 3124copyright to all module headers and signons, including the standard Linux 3125header. This affects virtually every file in the ACPICA core subsystem, 3126iASL compiler, all ACPICA utilities, and the test suites. 3127 3128Improved parameter validation for AcpiInstallGpeBlock. Added the 3129following checks: 31301) The incoming device handle refers to type ACPI_TYPE_DEVICE. 31312) There is not already a GPE block attached to the device. 3132Likewise, with AcpiRemoveGpeBlock, ensure that the incoming object is a 3133device. 3134 3135Correctly support "references" in the ACPI_OBJECT. This change fixes the 3136support to allow references (namespace nodes) to be passed as arguments 3137to control methods via the evaluate object interface. This is probably 3138most useful for testing purposes, however. 3139 3140Improved support for 32/64 bit physical addresses in printf()-like 3141output. This change improves the support for physical addresses in printf 3142debug statements and other output on both 32-bit and 64-bit hosts. It 3143consistently outputs the appropriate number of bytes for each host. The 3144%p specifier is unsatisfactory since it does not emit uniform output on 3145all hosts/clib implementations (on some, leading zeros are not supported, 3146leading to difficult-to-read output). 3147 3148Example Code and Data Size: These are the sizes for the OS-independent 3149acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 3150debug version of the code includes the debug output trace mechanism and 3151has a much larger code and data size. 3152 3153 Current Release: 3154 Non-Debug Version: 96.2K Code, 27.0K Data, 123.2K Total 3155 Debug Version: 187.5K Code, 78.3K Data, 265.8K Total 3156 Previous Release: 3157 Non-Debug Version: 96.1K Code, 27.0K Data, 123.1K Total 3158 Debug Version: 185.6K Code, 77.3K Data, 262.9K Total 3159 3160 31612) iASL Compiler/Disassembler and Tools: 3162 3163iASL: Fix a possible fault when using the Connection() operator. Fixes a 3164problem if the parent Field definition for the Connection operator refers 3165to an operation region that does not exist. ACPICA BZ 1064. 3166 3167AcpiExec: Load of local test tables is now optional. The utility has the 3168capability to load some various tables to test features of ACPICA. 3169However, there are enough of them that the output of the utility became 3170confusing. With this change, only the required local tables are displayed 3171(RSDP, XSDT, etc.) along with the actual tables loaded via the command 3172line specification. This makes the default output simler and easier to 3173understand. The -el command line option restores the original behavior 3174for testing purposes. 3175 3176AcpiExec: Added support for overlapping operation regions. This change 3177expands the simulation of operation regions by supporting regions that 3178overlap within the given address space. Supports SystemMemory and 3179SystemIO. ASLTS test suite updated also. David Box. ACPICA BZ 1031. 3180 3181AcpiExec: Added region handler support for PCI_Config and EC spaces. This 3182allows AcpiExec to simulate these address spaces, similar to the current 3183support for SystemMemory and SystemIO. 3184 3185Debugger: Added new command to read/write/compare all namespace objects. 3186The command "test objects" will exercise the entire namespace by writing 3187new values to each data object, and ensuring that the write was 3188successful. The original value is then restored and verified. 3189 3190Debugger: Added the "test predefined" command. This change makes this 3191test public and puts it under the new "test" command. The test executes 3192each and every predefined name within the current namespace. 3193 3194 3195---------------------------------------- 319618 December 2013. Summary of changes for version 20131218: 3197 3198Global note: The ACPI 5.0A specification was released this month. There 3199are no changes needed for ACPICA since this release of ACPI is an 3200errata/clarification release. The specification is available at 3201acpi.info. 3202 3203 32041) ACPICA kernel-resident subsystem: 3205 3206Added validation of the XSDT root table if it is present. Some older 3207platforms contain an XSDT that is ill-formed or otherwise invalid (such 3208as containing some or all entries that are NULL pointers). This change 3209adds a new function to validate the XSDT before actually using it. If the 3210XSDT is found to be invalid, ACPICA will now automatically fall back to 3211using the RSDT instead. Original implementation by Zhao Yakui. Ported to 3212ACPICA and enhanced by Lv Zheng and Bob Moore. 3213 3214Added a runtime option to ignore the XSDT and force the use of the RSDT. 3215This change adds a runtime option that will force ACPICA to use the RSDT 3216instead of the XSDT (AcpiGbl_DoNotUseXsdt). Although the ACPI spec 3217requires that an XSDT be used instead of the RSDT, the XSDT has been 3218found to be corrupt or ill-formed on some machines. Lv Zheng. 3219 3220Added a runtime option to favor 32-bit FADT register addresses over the 322164-bit addresses. This change adds an option to favor 32-bit FADT 3222addresses when there is a conflict between the 32-bit and 64-bit versions 3223of the same register. The default behavior is to use the 64-bit version 3224in accordance with the ACPI specification. This can now be overridden via 3225the AcpiGbl_Use32BitFadtAddresses flag. ACPICA BZ 885. Lv Zheng. 3226 3227During the change above, the internal "Convert FADT" and "Verify FADT" 3228functions have been merged to simplify the code, making it easier to 3229understand and maintain. ACPICA BZ 933. 3230 3231Improve exception reporting and handling for GPE block installation. 3232Return an actual status from AcpiEvGetGpeXruptBlock and don't clobber the 3233status when exiting AcpiEvInstallGpeBlock. ACPICA BZ 1019. 3234 3235Added helper macros to extract bus/segment numbers from the HEST table. 3236This change adds two macros to extract the encoded bus and segment 3237numbers from the HEST Bus field - ACPI_HEST_BUS and ACPI_HEST_SEGMENT. 3238Betty Dall <betty.dall@hp.com> 3239 3240Removed the unused ACPI_FREE_BUFFER macro. This macro is no longer used 3241by ACPICA. It is not a public macro, so it should have no effect on 3242existing OSV code. Lv Zheng. 3243 3244Example Code and Data Size: These are the sizes for the OS-independent 3245acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 3246debug version of the code includes the debug output trace mechanism and 3247has a much larger code and data size. 3248 3249 Current Release: 3250 Non-Debug Version: 96.1K Code, 27.0K Data, 123.1K Total 3251 Debug Version: 185.6K Code, 77.3K Data, 262.9K Total 3252 Previous Release: 3253 Non-Debug Version: 95.9K Code, 27.0K Data, 122.9K Total 3254 Debug Version: 185.1K Code, 77.2K Data, 262.3K Total 3255 3256 32572) iASL Compiler/Disassembler and Tools: 3258 3259Disassembler: Improved pathname support for emitted External() 3260statements. This change adds full pathname support for external names 3261that have been resolved internally by the inclusion of additional ACPI 3262tables (via the iASL -e option). Without this change, the disassembler 3263can emit multiple externals for the same object, or it become confused 3264when the Scope() operator is used on an external object. Overall, greatly 3265improves the ability to actually recompile the emitted ASL code when 3266objects a referenced across multiple ACPI tables. Reported by Michael 3267Tsirkin (mst@redhat.com). 3268 3269Tests/ASLTS: Updated functional control suite to execute with no errors. 3270David Box. Fixed several errors related to the testing of the interpreter 3271slack mode. Lv Zheng. 3272 3273iASL: Added support to detect names that are declared within a control 3274method, but are unused (these are temporary names that are only valid 3275during the time the method is executing). A remark is issued for these 3276cases. ACPICA BZ 1022. 3277 3278iASL: Added full support for the DBG2 table. Adds full disassembler, 3279table compiler, and template generator support for the DBG2 table (Debug 3280Port 2 table). 3281 3282iASL: Added full support for the PCCT table, update the table definition. 3283Updates the PCCT table definition in the actbl3.h header and adds table 3284compiler and template generator support. 3285 3286iASL: Added an option to emit only error messages (no warnings/remarks). 3287The -ve option will enable only error messages, warnings and remarks are 3288suppressed. This can simplify debugging when only the errors are 3289important, such as when an ACPI table is disassembled and there are many 3290warnings and remarks -- but only the actual errors are of real interest. 3291 3292Example ACPICA code (source/tools/examples): Updated the example code so 3293that it builds to an actual working program, not just example code. Added 3294ACPI tables and execution of an example control method in the DSDT. Added 3295makefile support for Unix generation. 3296 3297 3298---------------------------------------- 329915 November 2013. Summary of changes for version 20131115: 3300 3301This release is available at https://acpica.org/downloads 3302 3303 33041) ACPICA kernel-resident subsystem: 3305 3306Resource Manager: Fixed loop termination for the "get AML length" 3307function. The loop previously had an error termination on a NULL resource 3308pointer, which can never happen since the loop simply increments a valid 3309resource pointer. This fix changes the loop to terminate with an error on 3310an invalid end-of-buffer condition. The problem can be seen as an 3311infinite loop by callers to AcpiSetCurrentResources with an invalid or 3312corrupted resource descriptor, or a resource descriptor that is missing 3313an END_TAG descriptor. Reported by Dan Carpenter 3314<dan.carpenter@oracle.com>. Lv Zheng, Bob Moore. 3315 3316Table unload and ACPICA termination: Delete all attached data objects 3317during namespace node deletion. This fix updates namespace node deletion 3318to delete the entire list of attached objects (attached via 3319AcpiAttachObject) instead of just one of the attached items. ACPICA BZ 33201024. Tomasz Nowicki (tomasz.nowicki@linaro.org). 3321 3322ACPICA termination: Added support to delete all objects attached to the 3323root namespace node. This fix deletes any and all objects that have been 3324attached to the root node via AcpiAttachData. Previously, none of these 3325objects were deleted. Reported by Tomasz Nowicki. ACPICA BZ 1026. 3326 3327Debug output: Do not emit the function nesting level for the in-kernel 3328build. The nesting level is really only useful during a single-thread 3329execution. Therefore, only enable this output for the AcpiExec utility. 3330Also, only emit the thread ID when executing under AcpiExec (Context 3331switches are still always detected and a message is emitted). ACPICA BZ 3332972. 3333 3334Example Code and Data Size: These are the sizes for the OS-independent 3335acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 3336debug version of the code includes the debug output trace mechanism and 3337has a much larger code and data size. 3338 3339 Current Release: 3340 Non-Debug Version: 95.9K Code, 27.0K Data, 122.9K Total 3341 Debug Version: 185.1K Code, 77.2K Data, 262.3K Total 3342 Previous Release: 3343 Non-Debug Version: 95.8K Code, 27.0K Data, 122.8K Total 3344 Debug Version: 185.2K Code, 77.2K Data, 262.4K Total 3345 3346 33472) iASL Compiler/Disassembler and Tools: 3348 3349AcpiExec/Unix-OSL: Use <termios.h> instead of <termio.h>. This is the 3350correct portable POSIX header for terminal control functions. 3351 3352Disassembler: Fixed control method invocation issues related to the use 3353of the CondRefOf() operator. The problem is seen in the disassembly where 3354control method invocations may not be disassembled properly if the 3355control method name has been used previously as an argument to CondRefOf. 3356The solution is to not attempt to emit an external declaration for the 3357CondRefOf target (it is not necessary in the first place). This prevents 3358disassembler object type confusion. ACPICA BZ 988. 3359 3360Unix Makefiles: Added an option to disable compiler optimizations and the 3361_FORTIFY_SOURCE flag. Some older compilers have problems compiling ACPICA 3362with optimizations (reportedly, gcc 4.4 for example). This change adds a 3363command line option for make (NOOPT) that disables all compiler 3364optimizations and the _FORTIFY_SOURCE compiler flag. The default 3365optimization is -O2 with the _FORTIFY_SOURCE flag specified. ACPICA BZ 33661034. Lv Zheng, Bob Moore. 3367 3368Tests/ASLTS: Added options to specify individual test cases and modes. 3369This allows testers running aslts.sh to optionally specify individual 3370test modes and test cases. Also added an option to disable the forced 3371generation of the ACPICA tools from source if desired. Lv Zheng. 3372 3373---------------------------------------- 337427 September 2013. Summary of changes for version 20130927: 3375 3376This release is available at https://acpica.org/downloads 3377 3378 33791) ACPICA kernel-resident subsystem: 3380 3381Fixed a problem with store operations to reference objects. This change 3382fixes a problem where a Store operation to an ArgX object that contained 3383a 3384reference to a field object did not complete the automatic dereference 3385and 3386then write to the actual field object. Instead, the object type of the 3387field object was inadvertently changed to match the type of the source 3388operand. The new behavior will actually write to the field object (buffer 3389field or field unit), thus matching the correct ACPI-defined behavior. 3390 3391Implemented support to allow the host to redefine individual OSL 3392prototypes. This change enables the host to redefine OSL prototypes found 3393in the acpiosxf.h file. This allows the host to implement OSL interfaces 3394with a macro or inlined function. Further, it allows the host to add any 3395additional required modifiers such as __iomem, __init, __exit, etc., as 3396necessary on a per-interface basis. Enables maximum flexibility for the 3397OSL interfaces. Lv Zheng. 3398 3399Hardcoded the access width for the FADT-defined reset register. The ACPI 3400specification requires the reset register width to be 8 bits. ACPICA now 3401hardcodes the width to 8 and ignores the FADT width value. This provides 3402compatibility with other ACPI implementations that have allowed BIOS code 3403with bad register width values to go unnoticed. Matthew Garett, Bob 3404Moore, 3405Lv Zheng. 3406 3407Changed the position/use of the ACPI_PRINTF_LIKE macro. This macro is 3408used 3409in the OSL header (acpiosxf). The change modifies the position of this 3410macro in each instance where it is used (AcpiDebugPrint, etc.) to avoid 3411build issues if the OSL defines the implementation of the interface to be 3412an inline stub function. Lv Zheng. 3413 3414Deployed a new macro ACPI_EXPORT_SYMBOL_INIT for the main ACPICA 3415initialization interfaces. This change adds a new macro for the main init 3416and terminate external interfaces in order to support hosts that require 3417additional or different processing for these functions. Changed from 3418ACPI_EXPORT_SYMBOL to ACPI_EXPORT_SYMBOL_INIT for these functions. Lv 3419Zheng, Bob Moore. 3420 3421Cleaned up the memory allocation macros for configurability. In the 3422common 3423case, the ACPI_ALLOCATE and related macros now resolve directly to their 3424respective AcpiOs* OSL interfaces. Two options: 34251) The ACPI_ALLOCATE_ZEROED macro uses a simple local implementation by 3426default, unless overridden by the USE_NATIVE_ALLOCATE_ZEROED define. 34272) For AcpiExec (and for debugging), the macros can optionally be 3428resolved 3429to the local ACPICA interfaces that track each allocation (local tracking 3430is used to immediately detect memory leaks). 3431Lv Zheng. 3432 3433Simplified the configuration for ACPI_REDUCED_HARDWARE. Allows the kernel 3434to predefine this macro to either TRUE or FALSE during the system build. 3435 3436Replaced __FUNCTION_ with __func__ in the gcc-specific header. 3437 3438Example Code and Data Size: These are the sizes for the OS-independent 3439acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 3440debug version of the code includes the debug output trace mechanism and 3441has a much larger code and data size. 3442 3443 Current Release: 3444 Non-Debug Version: 95.8K Code, 27.0K Data, 122.8K Total 3445 Debug Version: 185.2K Code, 77.2K Data, 262.4K Total 3446 Previous Release: 3447 Non-Debug Version: 96.7K Code, 27.1K Data, 123.9K Total 3448 Debug Version: 184.4K Code, 76.8K Data, 261.2K Total 3449 3450 34512) iASL Compiler/Disassembler and Tools: 3452 3453iASL: Implemented wildcard support for the -e option. This simplifies use 3454when there are many SSDTs that must be included to resolve external 3455method 3456declarations. ACPICA BZ 1041. Example: 3457 iasl -e ssdt*.dat -d dsdt.dat 3458 3459AcpiExec: Add history/line-editing for Unix/Linux systems. This change 3460adds a portable module that implements full history and limited line 3461editing for Unix and Linux systems. It does not use readline() due to 3462portability issues. Instead it uses the POSIX termio interface to put the 3463terminal in raw input mode so that the various special keys can be 3464trapped 3465(such as up/down-arrow for history support and left/right-arrow for line 3466editing). Uses the existing debugger history mechanism. ACPICA BZ 1036. 3467 3468AcpiXtract: Add support to handle (ignore) "empty" lines containing only 3469one or more spaces. This provides compatible with early or different 3470versions of the AcpiDump utility. ACPICA BZ 1044. 3471 3472AcpiDump: Do not ignore tables that contain only an ACPI table header. 3473Apparently, some BIOSs create SSDTs that contain an ACPI table header but 3474no other data. This change adds support to dump these tables. Any tables 3475shorter than the length of an ACPI table header remain in error (an error 3476message is emitted). Reported by Yi Li. 3477 3478Debugger: Echo actual command along with the "unknown command" message. 3479 3480---------------------------------------- 348123 August 2013. Summary of changes for version 20130823: 3482 34831) ACPICA kernel-resident subsystem: 3484 3485Implemented support for host-installed System Control Interrupt (SCI) 3486handlers. Certain ACPI functionality requires the host to handle raw 3487SCIs. For example, the "SCI Doorbell" that is defined for memory power 3488state support requires the host device driver to handle SCIs to examine 3489if the doorbell has been activated. Multiple SCI handlers can be 3490installed to allow for future expansion. New external interfaces are 3491AcpiInstallSciHandler, AcpiRemoveSciHandler; see the ACPICA reference for 3492details. Lv Zheng, Bob Moore. ACPICA BZ 1032. 3493 3494Operation region support: Never locally free the handler "context" 3495pointer. This change removes some dangerous code that attempts to free 3496the handler context pointer in some (rare) circumstances. The owner of 3497the handler owns this pointer and the ACPICA code should never touch it. 3498Although not seen to be an issue in any kernel, it did show up as a 3499problem (fault) under AcpiExec. Also, set the internal storage field for 3500the context pointer to zero when the region is deactivated, simply for 3501sanity. David Box. ACPICA BZ 1039. 3502 3503AcpiRead: On error, do not modify the return value target location. If an 3504error happens in the middle of a split 32/32 64-bit I/O operation, do not 3505modify the target of the return value pointer. Makes the code consistent 3506with the rest of ACPICA. Bjorn Helgaas. 3507 3508Example Code and Data Size: These are the sizes for the OS-independent 3509acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 3510debug version of the code includes the debug output trace mechanism and 3511has a much larger code and data size. 3512 3513 Current Release: 3514 Non-Debug Version: 96.7K Code, 27.1K Data, 123.9K Total 3515 Debug Version: 184.4K Code, 76.8K Data, 261.2K Total 3516 Previous Release: 3517 Non-Debug Version: 96.2K Code, 27.1K Data, 123.3K Total 3518 Debug Version: 185.4K Code, 77.1K Data, 262.5K Total 3519 3520 35212) iASL Compiler/Disassembler and Tools: 3522 3523AcpiDump: Implemented several new features and fixed some problems: 35241) Added support to dump the RSDP, RSDT, and XSDT tables. 35252) Added support for multiple table instances (SSDT, UEFI). 35263) Added option to dump "customized" (overridden) tables (-c). 35274) Fixed a problem where some table filenames were improperly 3528constructed. 35295) Improved some error messages, removed some unnecessary messages. 3530 3531iASL: Implemented additional support for disassembly of ACPI tables that 3532contain invocations of external control methods. The -fe<file> option 3533allows the import of a file that specifies the external methods along 3534with the required number of arguments for each -- allowing for the 3535correct disassembly of the table. This is a workaround for a limitation 3536of AML code where the disassembler often cannot determine the number of 3537arguments required for an external control method and generates incorrect 3538ASL code. See the iASL reference for details. ACPICA BZ 1030. 3539 3540Debugger: Implemented a new command (paths) that displays the full 3541pathnames (namepaths) and object types of all objects in the namespace. 3542This is an alternative to the namespace command. 3543 3544Debugger: Implemented a new command (sci) that invokes the SCI dispatch 3545mechanism and any installed handlers. 3546 3547iASL: Fixed a possible segfault for "too many parent prefixes" condition. 3548This can occur if there are too many parent prefixes in a namepath (for 3549example, ^^^^^^PCI0.ECRD). ACPICA BZ 1035. 3550 3551Application OSLs: Set the return value for the PCI read functions. These 3552functions simply return AE_OK, but should set the return value to zero 3553also. This change implements this. ACPICA BZ 1038. 3554 3555Debugger: Prevent possible command line buffer overflow. Increase the 3556size of a couple of the debugger line buffers, and ensure that overflow 3557cannot happen. ACPICA BZ 1037. 3558 3559iASL: Changed to abort immediately on serious errors during the parsing 3560phase. Due to the nature of ASL, there is no point in attempting to 3561compile these types of errors, and they typically end up causing a 3562cascade of hundreds of errors which obscure the original problem. 3563 3564---------------------------------------- 356525 July 2013. Summary of changes for version 20130725: 3566 35671) ACPICA kernel-resident subsystem: 3568 3569Fixed a problem with the DerefOf operator where references to FieldUnits 3570and BufferFields incorrectly returned the parent object, not the actual 3571value of the object. After this change, a dereference of a FieldUnit 3572reference results in a read operation on the field to get the value, and 3573likewise, the appropriate BufferField value is extracted from the target 3574buffer. 3575 3576Fixed a problem where the _WAK method could cause a fault under these 3577circumstances: 1) Interpreter slack mode was not enabled, and 2) the _WAK 3578method returned no value. The problem is rarely seen because most kernels 3579run ACPICA in slack mode. 3580 3581For the DerefOf operator, a fatal error now results if an attempt is made 3582to dereference a reference (created by the Index operator) to a NULL 3583package element. Provides compatibility with other ACPI implementations, 3584and this behavior will be added to a future version of the ACPI 3585specification. 3586 3587The ACPI Power Management Timer (defined in the FADT) is now optional. 3588This provides compatibility with other ACPI implementations and will 3589appear in the next version of the ACPI specification. If there is no PM 3590Timer on the platform, AcpiGetTimer returns AE_SUPPORT. An address of 3591zero in the FADT indicates no PM timer. 3592 3593Implemented a new interface for _OSI support, AcpiUpdateInterfaces. This 3594allows the host to globally enable/disable all vendor strings, all 3595feature strings, or both. Intended to be primarily used for debugging 3596purposes only. Lv Zheng. 3597 3598Expose the collected _OSI data to the host via a global variable. This 3599data tracks the highest level vendor ID that has been invoked by the BIOS 3600so that the host (and potentially ACPICA itself) can change behaviors 3601based upon the age of the BIOS. 3602 3603Example Code and Data Size: These are the sizes for the OS-independent 3604acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 3605debug version of the code includes the debug output trace mechanism and 3606has a much larger code and data size. 3607 3608 Current Release: 3609 Non-Debug Version: 96.2K Code, 27.1K Data, 123.3K Total 3610 Debug Version: 184.4K Code, 76.8K Data, 261.2K Total 3611 Previous Release: 3612 Non-Debug Version: 95.9K Code, 26.9K Data, 122.8K Total 3613 Debug Version: 184.1K Code, 76.7K Data, 260.8K Total 3614 3615 36162) iASL Compiler/Disassembler and Tools: 3617 3618iASL: Created the following enhancements for the -so option (create 3619offset table): 36201)Add offsets for the last nameseg in each namepath for every supported 3621object type 36222)Add support for Processor, Device, Thermal Zone, and Scope objects 36233)Add the actual AML opcode for the parent object of every supported 3624object type 36254)Add support for the ZERO/ONE/ONES AML opcodes for integer objects 3626 3627Disassembler: Emit all unresolved external symbols in a single block. 3628These are external references to control methods that could not be 3629resolved, and thus, the disassembler had to make a guess at the number of 3630arguments to parse. 3631 3632iASL: The argument to the -T option (create table template) is now 3633optional. If not specified, the default table is a DSDT, typically the 3634most common case. 3635 3636---------------------------------------- 363726 June 2013. Summary of changes for version 20130626: 3638 36391) ACPICA kernel-resident subsystem: 3640 3641Fixed an issue with runtime repair of the _CST object. Null or invalid 3642elements were not always removed properly. Lv Zheng. 3643 3644Removed an arbitrary restriction of 256 GPEs per GPE block (such as the 3645FADT-defined GPE0 and GPE1). For GPE0, GPE1, and each GPE Block Device, 3646the maximum number of GPEs is 1016. Use of multiple GPE block devices 3647makes the system-wide number of GPEs essentially unlimited. 3648 3649Example Code and Data Size: These are the sizes for the OS-independent 3650acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 3651debug version of the code includes the debug output trace mechanism and 3652has a much larger code and data size. 3653 3654 Current Release: 3655 Non-Debug Version: 95.9K Code, 26.9K Data, 122.8K Total 3656 Debug Version: 184.1K Code, 76.7K Data, 260.8K Total 3657 Previous Release: 3658 Non-Debug Version: 96.0K Code, 27.0K Data, 123.0K Total 3659 Debug Version: 184.1K Code, 76.8K Data, 260.9K Total 3660 3661 36622) iASL Compiler/Disassembler and Tools: 3663 3664Portable AcpiDump: Implemented full support for the Linux and FreeBSD 3665hosts. Now supports Linux, FreeBSD, and Windows. 3666 3667Disassembler: Added some missing types for the HEST and EINJ tables: "Set 3668Error Type With Address", "CMCI", "MCE", and "Flush Cacheline". 3669 3670iASL/Preprocessor: Implemented full support for nested 3671#if/#else/#elif/#endif blocks. Allows arbitrary depth of nested blocks. 3672 3673Disassembler: Expanded maximum output string length to 64K. Was 256 bytes 3674max. The original purpose of this constraint was to limit the amount of 3675debug output. However, the string function in question (UtPrintString) is 3676now used for the disassembler also, where 256 bytes is insufficient. 3677Reported by RehabMan@GitHub. 3678 3679iASL/DataTables: Fixed some problems and issues with compilation of DMAR 3680tables. ACPICA BZ 999. Lv Zheng. 3681 3682iASL: Fixed a couple of error exit issues that could result in a "Could 3683not delete <file>" message during ASL compilation. 3684 3685AcpiDump: Allow "FADT" and "MADT" as valid table signatures, even though 3686the actual signatures for these tables are "FACP" and "APIC", 3687respectively. 3688 3689AcpiDump: Added support for multiple UEFI tables. Only SSDT and UEFI 3690tables are allowed to have multiple instances. 3691 3692---------------------------------------- 369317 May 2013. Summary of changes for version 20130517: 3694 36951) ACPICA kernel-resident subsystem: 3696 3697Fixed a regression introduced in version 20130328 for _INI methods. This 3698change fixes a problem introduced in 20130328 where _INI methods are no 3699longer executed properly because of a memory block that was not 3700initialized correctly. ACPICA BZ 1016. Tomasz Nowicki 3701<tomasz.nowicki@linaro.org>. 3702 3703Fixed a possible problem with the new extended sleep registers in the 3704ACPI 37055.0 FADT. Do not use these registers (even if populated) unless the HW- 3706reduced bit is set in the FADT (as per the ACPI specification). ACPICA BZ 37071020. Lv Zheng. 3708 3709Implemented return value repair code for _CST predefined objects: Sort 3710the 3711list and detect/remove invalid entries. ACPICA BZ 890. Lv Zheng. 3712 3713Implemented a debug-only option to disable loading of SSDTs from the 3714RSDT/XSDT during ACPICA initialization. This can be useful for debugging 3715ACPI problems on some machines. Set AcpiGbl_DisableSsdtTableLoad in 3716acglobal.h - ACPICA BZ 1005. Lv Zheng. 3717 3718Fixed some issues in the ACPICA initialization and termination code: 3719Tomasz Nowicki <tomasz.nowicki@linaro.org> 37201) Clear events initialized flag upon event component termination. ACPICA 3721BZ 1013. 37222) Fixed a possible memory leak in GPE init error path. ACPICA BZ 1018. 37233) Delete global lock pending lock during termination. ACPICA BZ 1012. 37244) Clear debug buffer global on termination to prevent possible multiple 3725delete. ACPICA BZ 1010. 3726 3727Standardized all switch() blocks across the entire source base. After 3728many 3729years, different formatting for switch() had crept in. This change makes 3730the formatting of every switch block identical. ACPICA BZ 997. Chao Guan. 3731 3732Split some files to enhance ACPICA modularity and configurability: 37331) Split buffer dump routines into utilities/utbuffer.c 37342) Split internal error message routines into utilities/uterror.c 37353) Split table print utilities into tables/tbprint.c 37364) Split iASL command-line option processing into asloptions.c 3737 3738Makefile enhancements: 37391) Support for all new files above. 37402) Abort make on errors from any subcomponent. Chao Guan. 37413) Add build support for Apple Mac OS X. Liang Qi. 3742 3743Example Code and Data Size: These are the sizes for the OS-independent 3744acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 3745debug version of the code includes the debug output trace mechanism and 3746has a much larger code and data size. 3747 3748 Current Release: 3749 Non-Debug Version: 96.0K Code, 27.0K Data, 123.0K Total 3750 Debug Version: 184.1K Code, 76.8K Data, 260.9K Total 3751 Previous Release: 3752 Non-Debug Version: 95.6K Code, 26.8K Data, 122.4K Total 3753 Debug Version: 183.5K Code, 76.6K Data, 260.1K Total 3754 3755 37562) iASL Compiler/Disassembler and Tools: 3757 3758New utility: Implemented an easily portable version of the acpidump 3759utility to extract ACPI tables from the system (or a file) in an ASCII 3760hex 3761dump format. The top-level code implements the various command line 3762options, file I/O, and table dump routines. To port to a new host, only 3763three functions need to be implemented to get tables -- since this 3764functionality is OS-dependent. See the tools/acpidump/apmain.c module and 3765the ACPICA reference for porting instructions. ACPICA BZ 859. Notes: 37661) The Windows version obtains the ACPI tables from the Registry. 37672) The Linux version is under development. 37683) Other hosts - If an OS-dependent module is submitted, it will be 3769distributed with ACPICA. 3770 3771iASL: Fixed a regression for -D preprocessor option (define symbol). A 3772restructuring/change to the initialization sequence caused this option to 3773no longer work properly. 3774 3775iASL: Implemented a mechanism to disable specific warnings and remarks. 3776Adds a new command line option, "-vw <messageid> as well as "#pragma 3777disable <messageid>". ACPICA BZ 989. Chao Guan, Bob Moore. 3778 3779iASL: Fix for too-strict package object validation. The package object 3780validation for return values from the predefined names is a bit too 3781strict, it does not allow names references within the package (which will 3782be resolved at runtime.) These types of references cannot be validated at 3783compile time. This change ignores named references within package objects 3784for names that return or define static packages. 3785 3786Debugger: Fixed the 80-character command line limitation for the History 3787command. Now allows lines of arbitrary length. ACPICA BZ 1000. Chao Guan. 3788 3789iASL: Added control method and package support for the -so option 3790(generates AML offset table for BIOS support.) 3791 3792iASL: issue a remark if a non-serialized method creates named objects. If 3793a thread blocks within the method for any reason, and another thread 3794enters the method, the method will fail because an attempt will be made 3795to 3796create the same (named) object twice. In this case, issue a remark that 3797the method should be marked serialized. NOTE: may become a warning later. 3798ACPICA BZ 909. 3799 3800---------------------------------------- 380118 April 2013. Summary of changes for version 20130418: 3802 38031) ACPICA kernel-resident subsystem: 3804 3805Fixed a possible buffer overrun during some rare but specific field unit 3806read operations. This overrun can only happen if the DSDT version is 1 -- 3807meaning that all AML integers are 32 bits -- and the field length is 3808between 33 and 55 bits long. During the read, an internal buffer object 3809is 3810created for the field unit because the field is larger than an integer 3811(32 3812bits). However, in this case, the buffer will be incorrectly written 3813beyond the end because the buffer length is less than the internal 3814minimum 3815of 64 bits (8 bytes) long. The buffer will be either 5, 6, or 7 bytes 3816long, but a full 8 bytes will be written. 3817 3818Updated the Embedded Controller "orphan" _REG method support. This refers 3819to _REG methods under the EC device that have no corresponding operation 3820region. This is allowed by the ACPI specification. This update removes a 3821dependency on the existence an ECDT table. It will execute an orphan _REG 3822method as long as the operation region handler for the EC is installed at 3823the EC device node and not the namespace root. Rui Zhang (original 3824update), Bob Moore (update/integrate). 3825 3826Implemented run-time argument typechecking for all predefined ACPI names 3827(_STA, _BIF, etc.) This change performs object typechecking on all 3828incoming arguments for all predefined names executed via 3829AcpiEvaluateObject. This ensures that ACPI-related device drivers are 3830passing correct object types as well as the correct number of arguments 3831(therefore identifying any issues immediately). Also, the ASL/namespace 3832definition of the predefined name is checked against the ACPI 3833specification for the proper argument count. Adds one new file, 3834nsarguments.c 3835 3836Changed an exception code for the ASL UnLoad() operator. Changed the 3837exception code for the case where the input DdbHandle is invalid, from 3838AE_BAD_PARAMETER to the more appropriate AE_AML_OPERAND_TYPE. 3839 3840Unix/Linux makefiles: Removed the use of the -O2 optimization flag in the 3841global makefile. The use of this flag causes compiler errors on earlier 3842versions of GCC, so it has been removed for compatibility. 3843 3844Miscellaneous cleanup: 38451) Removed some unused/obsolete macros 38462) Fixed a possible memory leak in the _OSI support 38473) Removed an unused variable in the predefined name support 38484) Windows OSL: remove obsolete reference to a memory list field 3849 3850Example Code and Data Size: These are the sizes for the OS-independent 3851acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 3852debug version of the code includes the debug output trace mechanism and 3853has a much larger code and data size. 3854 3855 Current Release: 3856 Non-Debug Version: 95.2K Code, 26.4K Data, 121.6K Total 3857 Debug Version: 183.0K Code, 76.0K Data, 259.0K Total 3858 Previous Release: 3859 Non-Debug Version: 95.6K Code, 26.8K Data, 122.4K Total 3860 Debug Version: 183.5K Code, 76.6K Data, 260.1K Total 3861 3862 38632) iASL Compiler/Disassembler and Tools: 3864 3865AcpiExec: Added installation of a handler for the SystemCMOS address 3866space. This prevents control method abort if a method accesses this 3867space. 3868 3869AcpiExec: Added support for multiple EC devices, and now install EC 3870operation region handler(s) at the actual EC device instead of the 3871namespace root. This reflects the typical behavior of host operating 3872systems. 3873 3874AcpiExec: Updated to ensure that all operation region handlers are 3875installed before the _REG methods are executed. This prevents a _REG 3876method from aborting if it accesses an address space has no handler. 3877AcpiExec installs a handler for every possible address space. 3878 3879Debugger: Enhanced the "handlers" command to display non-root handlers. 3880This change enhances the handlers command to display handlers associated 3881with individual devices throughout the namespace, in addition to the 3882currently supported display of handlers associated with the root 3883namespace 3884node. 3885 3886ASL Test Suite: Several test suite errors have been identified and 3887resolved, reducing the total error count during execution. Chao Guan. 3888 3889---------------------------------------- 389028 March 2013. Summary of changes for version 20130328: 3891 38921) ACPICA kernel-resident subsystem: 3893 3894Fixed several possible race conditions with the internal object reference 3895counting mechanism. Some of the external ACPICA interfaces update object 3896reference counts without holding the interpreter or namespace lock. This 3897change adds a spinlock to protect reference count updates on the internal 3898ACPICA objects. Reported by and with assistance from Andriy Gapon 3899(avg@FreeBSD.org). 3900 3901FADT support: Removed an extraneous warning for very large GPE register 3902sets. This change removes a size mismatch warning if the legacy length 3903field for a GPE register set is larger than the 64-bit GAS structure can 3904accommodate. GPE register sets can be larger than the 255-bit width 3905limitation of the GAS structure. Linn Crosetto (linn@hp.com). 3906 3907_OSI Support: handle any errors from AcpiOsAcquireMutex. Check for error 3908return from this interface. Handles a possible timeout case if 3909ACPI_WAIT_FOREVER is modified by the host to be a value less than 3910"forever". Jung-uk Kim. 3911 3912Predefined name support: Add allowed/required argument type information 3913to 3914the master predefined info table. This change adds the infrastructure to 3915enable typechecking on incoming arguments for all predefined 3916methods/objects. It does not actually contain the code that will fully 3917utilize this information, this is still under development. Also condenses 3918some duplicate code for the predefined names into a new module, 3919utilities/utpredef.c 3920 3921Example Code and Data Size: These are the sizes for the OS-independent 3922acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 3923debug version of the code includes the debug output trace mechanism and 3924has a much larger code and data size. 3925 3926 Previous Release: 3927 Non-Debug Version: 95.0K Code, 25.9K Data, 120.9K Total 3928 Debug Version: 182.9K Code, 75.6K Data, 258.5K Total 3929 Current Release: 3930 Non-Debug Version: 95.2K Code, 26.4K Data, 121.6K Total 3931 Debug Version: 183.0K Code, 76.0K Data, 259.0K Total 3932 3933 39342) iASL Compiler/Disassembler and Tools: 3935 3936iASL: Implemented a new option to simplify the development of ACPI- 3937related 3938BIOS code. Adds support for a new "offset table" output file. The -so 3939option will create a C table containing the AML table offsets of various 3940named objects in the namespace so that BIOS code can modify them easily 3941at 3942boot time. This can simplify BIOS runtime code by eliminating expensive 3943searches for "magic values", enhancing boot times and adding greater 3944reliability. With assistance from Lee Hamel. 3945 3946iASL: Allow additional predefined names to return zero-length packages. 3947Now, all predefined names that are defined by the ACPI specification to 3948return a "variable-length package of packages" are allowed to return a 3949zero length top-level package. This allows the BIOS to tell the host that 3950the requested feature is not supported, and supports existing BIOS/ASL 3951code and practices. 3952 3953iASL: Changed the "result not used" warning to an error. This is the case 3954where an ASL operator is effectively a NOOP because the result of the 3955operation is not stored anywhere. For example: 3956 Add (4, Local0) 3957There is no target (missing 3rd argument), nor is the function return 3958value used. This is potentially a very serious problem -- since the code 3959was probably intended to do something, but for whatever reason, the value 3960was not stored. Therefore, this issue has been upgraded from a warning to 3961an error. 3962 3963AcpiHelp: Added allowable/required argument types to the predefined names 3964info display. This feature utilizes the recent update to the predefined 3965names table (above). 3966 3967---------------------------------------- 396814 February 2013. Summary of changes for version 20130214: 3969 39701) ACPICA Kernel-resident Subsystem: 3971 3972Fixed a possible regression on some hosts: Reinstated the safe return 3973macros (return_ACPI_STATUS, etc.) that ensure that the argument is 3974evaluated only once. Although these macros are not needed for the ACPICA 3975code itself, they are often used by ACPI-related host device drivers 3976where 3977the safe feature may be necessary. 3978 3979Fixed several issues related to the ACPI 5.0 reduced hardware support 3980(SOC): Now ensure that if the platform declares itself as hardware- 3981reduced 3982via the FADT, the following functions become NOOPs (and always return 3983AE_OK) because ACPI is always enabled by definition on these machines: 3984 AcpiEnable 3985 AcpiDisable 3986 AcpiHwGetMode 3987 AcpiHwSetMode 3988 3989Dynamic Object Repair: Implemented additional runtime repairs for 3990predefined name return values. Both of these repairs can simplify code in 3991the related device drivers that invoke these methods: 39921) For the _STR and _MLS names, automatically repair/convert an ASCII 3993string to a Unicode buffer. 39942) For the _CRS, _PRS, and _DMA names, return a resource descriptor with 3995a 3996lone end tag descriptor in the following cases: A Return(0) was executed, 3997a null buffer was returned, or no object at all was returned (non-slack 3998mode only). Adds a new file, nsconvert.c 3999ACPICA BZ 998. Bob Moore, Lv Zheng. 4000 4001Resource Manager: Added additional code to prevent possible infinite 4002loops 4003while traversing corrupted or ill-formed resource template buffers. Check 4004for zero-length resource descriptors in all code that loops through 4005resource templates (the length field is used to index through the 4006template). This change also hardens the external AcpiWalkResources and 4007AcpiWalkResourceBuffer interfaces. 4008 4009Local Cache Manager: Enhanced the main data structure to eliminate an 4010unnecessary mechanism to access the next object in the list. Actually 4011provides a small performance enhancement for hosts that use the local 4012ACPICA cache manager. Jung-uk Kim. 4013 4014Example Code and Data Size: These are the sizes for the OS-independent 4015acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 4016debug version of the code includes the debug output trace mechanism and 4017has a much larger code and data size. 4018 4019 Previous Release: 4020 Non-Debug Version: 94.5K Code, 25.4K Data, 119.9K Total 4021 Debug Version: 182.3K Code, 75.0K Data, 257.3K Total 4022 Current Release: 4023 Non-Debug Version: 95.0K Code, 25.9K Data, 120.9K Total 4024 Debug Version: 182.9K Code, 75.6K Data, 258.5K Total 4025 4026 40272) iASL Compiler/Disassembler and Tools: 4028 4029iASL/Disassembler: Fixed several issues with the definition of the ACPI 40305.0 RASF table (RAS Feature Table). This change incorporates late changes 4031that were made to the ACPI 5.0 specification. 4032 4033iASL/Disassembler: Added full support for the following new ACPI tables: 4034 1) The MTMR table (MID Timer Table) 4035 2) The VRTC table (Virtual Real Time Clock Table). 4036Includes header file, disassembler, table compiler, and template support 4037for both tables. 4038 4039iASL: Implemented compile-time validation of package objects returned by 4040predefined names. This new feature validates static package objects 4041returned by the various predefined names defined to return packages. Both 4042object types and package lengths are validated, for both parent packages 4043and sub-packages, if any. The code is similar in structure and behavior 4044to 4045the runtime repair mechanism within the AML interpreter and uses the 4046existing predefined name information table. Adds a new file, aslprepkg.c. 4047ACPICA BZ 938. 4048 4049iASL: Implemented auto-detection of binary ACPI tables for disassembly. 4050This feature detects a binary file with a valid ACPI table header and 4051invokes the disassembler automatically. Eliminates the need to 4052specifically invoke the disassembler with the -d option. ACPICA BZ 862. 4053 4054iASL/Disassembler: Added several warnings for the case where there are 4055unresolved control methods during the disassembly. This can potentially 4056cause errors when the output file is compiled, because the disassembler 4057assumes zero method arguments in these cases (it cannot determine the 4058actual number of arguments without resolution/definition of the method). 4059 4060Debugger: Added support to display all resources with a single command. 4061Invocation of the resources command with no arguments will now display 4062all 4063resources within the current namespace. 4064 4065AcpiHelp: Added descriptive text for each ACPICA exception code displayed 4066via the -e option. 4067 4068---------------------------------------- 406917 January 2013. Summary of changes for version 20130117: 4070 40711) ACPICA Kernel-resident Subsystem: 4072 4073Updated the AcpiGetSleepTypeData interface: Allow the \_Sx methods to 4074return either 1 or 2 integers. Although the ACPI spec defines the \_Sx 4075objects to return a package containing one integer, most BIOS code 4076returns 4077two integers and the previous code reflects that. However, we also need 4078to 4079support BIOS code that actually implements to the ACPI spec, and this 4080change reflects this. 4081 4082Fixed two issues with the ACPI_DEBUG_PRINT macros: 40831) Added the ACPI_DO_WHILE macro to the main DEBUG_PRINT helper macro for 4084C compilers that require this support. 40852) Renamed the internal ACPI_DEBUG macro to ACPI_DO_DEBUG_PRINT since 4086ACPI_DEBUG is already used by many of the various hosts. 4087 4088Updated all ACPICA copyrights and signons to 2013. Added the 2013 4089copyright to all module headers and signons, including the standard Linux 4090header. This affects virtually every file in the ACPICA core subsystem, 4091iASL compiler, all ACPICA utilities, and the test suites. 4092 4093Example Code and Data Size: These are the sizes for the OS-independent 4094acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 4095debug version of the code includes the debug output trace mechanism and 4096has a much larger code and data size. 4097 4098 Previous Release: 4099 Non-Debug Version: 94.5K Code, 25.5K Data, 120.0K Total 4100 Debug Version: 182.2K Code, 74.9K Data, 257.1K Total 4101 Current Release: 4102 Non-Debug Version: 94.5K Code, 25.4K Data, 119.9K Total 4103 Debug Version: 182.3K Code, 75.0K Data, 257.3K Total 4104 4105 41062) iASL Compiler/Disassembler and Tools: 4107 4108Generic Unix OSL: Use a buffer to eliminate multiple vfprintf()s and 4109prevent a possible fault on some hosts. Some C libraries modify the arg 4110pointer parameter to vfprintf making it difficult to call it twice in the 4111AcpiOsVprintf function. Use a local buffer to workaround this issue. This 4112does not affect the Windows OSL since the Win C library does not modify 4113the arg pointer. Chao Guan, Bob Moore. 4114 4115iASL: Fixed a possible infinite loop when the maximum error count is 4116reached. If an output file other than the .AML file is specified (such as 4117a listing file), and the maximum number of errors is reached, do not 4118attempt to flush data to the output file(s) as the compiler is aborting. 4119This can cause an infinite loop as the max error count code essentially 4120keeps calling itself. 4121 4122iASL/Disassembler: Added an option (-in) to ignore NOOP 4123opcodes/operators. 4124Implemented for both the compiler and the disassembler. Often, the NOOP 4125opcode is used as padding for packages that are changed dynamically by 4126the 4127BIOS. When disassembled and recompiled, these NOOPs will cause syntax 4128errors. This option causes the disassembler to ignore all NOOP opcodes 4129(0xA3), and it also causes the compiler to ignore all ASL source code 4130NOOP 4131statements as well. 4132 4133Debugger: Enhanced the Sleep command to execute all sleep states. This 4134change allows Sleep to be invoked with no arguments and causes the 4135debugger to execute all of the sleep states, 0-5, automatically. 4136 4137---------------------------------------- 413820 December 2012. Summary of changes for version 20121220: 4139 41401) ACPICA Kernel-resident Subsystem: 4141 4142Implemented a new interface, AcpiWalkResourceBuffer. This interface is an 4143alternate entry point for AcpiWalkResources and improves the usability of 4144the resource manager by accepting as input a buffer containing the output 4145of either a _CRS, _PRS, or _AEI method. The key functionality is that the 4146input buffer is not deleted by this interface so that it can be used by 4147the host later. See the ACPICA reference for details. 4148 4149Interpreter: Add a warning if a 64-bit constant appears in a 32-bit table 4150(DSDT version < 2). The constant will be truncated and this warning 4151reflects that behavior. 4152 4153Resource Manager: Add support for the new ACPI 5.0 wake bit in the IRQ, 4154ExtendedInterrupt, and GpioInt descriptors. This change adds support to 4155both get and set the new wake bit in these descriptors, separately from 4156the existing share bit. Reported by Aaron Lu. 4157 4158Interpreter: Fix Store() when an implicit conversion is not possible. For 4159example, in the cases such as a store of a string to an existing package 4160object, implement the store as a CopyObject(). This is a small departure 4161from the ACPI specification which states that the control method should 4162be 4163aborted in this case. However, the ASLTS suite depends on this behavior. 4164 4165Performance improvement for the various FUNCTION_TRACE and DEBUG_PRINT 4166macros: check if debug output is currently enabled as soon as possible to 4167minimize performance impact if debug is in fact not enabled. 4168 4169Source code restructuring: Cleanup to improve modularity. The following 4170new files have been added: dbconvert.c, evhandler.c, nsprepkg.c, 4171psopinfo.c, psobject.c, rsdumpinfo.c, utstring.c, and utownerid.c. 4172Associated makefiles and project files have been updated. 4173 4174Changed an exception code for LoadTable operator. For the case where one 4175of the input strings is too long, change the returned exception code from 4176AE_BAD_PARAMETER to AE_AML_STRING_LIMIT. 4177 4178Fixed a possible memory leak in dispatcher error path. On error, delete 4179the mutex object created during method mutex creation. Reported by 4180tim.gardner@canonical.com. 4181 4182Example Code and Data Size: These are the sizes for the OS-independent 4183acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 4184debug version of the code includes the debug output trace mechanism and 4185has a much larger code and data size. 4186 4187 Previous Release: 4188 Non-Debug Version: 94.3K Code, 25.3K Data, 119.6K Total 4189 Debug Version: 175.5K Code, 74.5K Data, 250.0K Total 4190 Current Release: 4191 Non-Debug Version: 94.5K Code, 25.5K Data, 120.0K Total 4192 Debug Version: 182.2K Code, 74.9K Data, 257.1K Total 4193 4194 41952) iASL Compiler/Disassembler and Tools: 4196 4197iASL: Disallow a method call as argument to the ObjectType ASL operator. 4198This change tracks an errata to the ACPI 5.0 document. The AML grammar 4199will not allow the interpreter to differentiate between a method and a 4200method invocation when these are used as an argument to the ObjectType 4201operator. The ACPI specification change is to disallow a method 4202invocation 4203(UserTerm) for the ObjectType operator. 4204 4205Finish support for the TPM2 and CSRT tables in the headers, table 4206compiler, and disassembler. 4207 4208Unix user-space OSL: Fix a problem with WaitSemaphore where the timeout 4209always expires immediately if the semaphore is not available. The 4210original 4211code was using a relative-time timeout, but sem_timedwait requires the 4212use 4213of an absolute time. 4214 4215iASL: Added a remark if the Timer() operator is used within a 32-bit 4216table. This operator returns a 64-bit time value that will be truncated 4217within a 32-bit table. 4218 4219iASL Source code restructuring: Cleanup to improve modularity. The 4220following new files have been added: aslhex.c, aslxref.c, aslnamesp.c, 4221aslmethod.c, and aslfileio.c. Associated makefiles and project files have 4222been updated. 4223 4224 4225---------------------------------------- 422614 November 2012. Summary of changes for version 20121114: 4227 42281) ACPICA Kernel-resident Subsystem: 4229 4230Implemented a performance enhancement for ACPI/AML Package objects. This 4231change greatly increases the performance of Package objects within the 4232interpreter. It changes the processing of reference counts for packages 4233by 4234optimizing for the most common case where the package sub-objects are 4235either Integers, Strings, or Buffers. Increases the overall performance 4236of 4237the ASLTS test suite by 1.5X (Increases the Slack Mode performance by 42382X.) 4239Chao Guan. ACPICA BZ 943. 4240 4241Implemented and deployed common macros to extract flag bits from resource 4242descriptors. Improves readability and maintainability of the code. Fixes 4243a 4244problem with the UART serial bus descriptor for the number of data bits 4245flags (was incorrectly 2 bits, should be 3). 4246 4247Enhanced the ACPI_GETx and ACPI_SETx macros. Improved the implementation 4248of the macros and changed the SETx macros to the style of (destination, 4249source). Also added ACPI_CASTx companion macros. Lv Zheng. 4250 4251Example Code and Data Size: These are the sizes for the OS-independent 4252acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 4253debug version of the code includes the debug output trace mechanism and 4254has a much larger code and data size. 4255 4256 Previous Release: 4257 Non-Debug Version: 93.9K Code, 25.2K Data, 119.1K Total 4258 Debug Version: 175.5K Code, 74.5K Data, 250.0K Total 4259 Current Release: 4260 Non-Debug Version: 94.3K Code, 25.3K Data, 119.6K Total 4261 Debug Version: 175.5K Code, 74.5K Data, 250.0K Total 4262 4263 42642) iASL Compiler/Disassembler and Tools: 4265 4266Disassembler: Added the new ACPI 5.0 interrupt sharing flags. This change 4267adds the ShareAndWake and ExclusiveAndWake flags which were added to the 4268Irq, Interrupt, and Gpio resource descriptors in ACPI 5.0. ACPICA BZ 986. 4269 4270Disassembler: Fixed a problem with external declaration generation. Fixes 4271a problem where an incorrect pathname could be generated for an external 4272declaration if the original reference to the object includes leading 4273carats (^). ACPICA BZ 984. 4274 4275Debugger: Completed a major update for the Disassemble<method> command. 4276This command was out-of-date and did not properly disassemble control 4277methods that had any reasonable complexity. This fix brings the command 4278up 4279to the same level as the rest of the disassembler. Adds one new file, 4280dmdeferred.c, which is existing code that is now common with the main 4281disassembler and the debugger disassemble command. ACPICA MZ 978. 4282 4283iASL: Moved the parser entry prototype to avoid a duplicate declaration. 4284Newer versions of Bison emit this prototype, so moved the prototype out 4285of 4286the iASL header to where it is actually used in order to avoid a 4287duplicate 4288declaration. 4289 4290iASL/Tools: Standardized use of the stream I/O functions: 4291 1) Ensure check for I/O error after every fopen/fread/fwrite 4292 2) Ensure proper order of size/count arguments for fread/fwrite 4293 3) Use test of (Actual != Requested) after all fwrite, and most fread 4294 4) Standardize I/O error messages 4295Improves reliability and maintainability of the code. Bob Moore, Lv 4296Zheng. 4297ACPICA BZ 981. 4298 4299Disassembler: Prevent duplicate External() statements. During generation 4300of external statements, detect similar pathnames that are actually 4301duplicates such as these: 4302 External (\ABCD) 4303 External (ABCD) 4304Remove all leading '\' characters from pathnames during the external 4305statement generation so that duplicates will be detected and tossed. 4306ACPICA BZ 985. 4307 4308Tools: Replace low-level I/O with stream I/O functions. Replace 4309open/read/write/close with the stream I/O equivalents 4310fopen/fread/fwrite/fclose for portability and performance. Lv Zheng, Bob 4311Moore. 4312 4313AcpiBin: Fix for the dump-to-hex function. Now correctly output the table 4314name header so that AcpiXtract recognizes the output file/table. 4315 4316iASL: Remove obsolete -2 option flag. Originally intended to force the 4317compiler/disassembler into an ACPI 2.0 mode, this was never implemented 4318and the entire concept is now obsolete. 4319 4320---------------------------------------- 432118 October 2012. Summary of changes for version 20121018: 4322 4323 43241) ACPICA Kernel-resident Subsystem: 4325 4326Updated support for the ACPI 5.0 MPST table. Fixes some problems 4327introduced by late changes to the table as it was added to the ACPI 5.0 4328specification. Includes header, disassembler, and data table compiler 4329support as well as a new version of the MPST template. 4330 4331AcpiGetObjectInfo: Enhanced the device object support to include the ACPI 43325.0 _SUB method. Now calls _SUB in addition to the other PNP-related ID 4333methods: _HID, _CID, and _UID. 4334 4335Changed ACPI_DEVICE_ID to ACPI_PNP_DEVICE_ID. Also changed 4336ACPI_DEVICE_ID_LIST to ACPI_PNP_DEVICE_ID_LIST. These changes prevent 4337name collisions on hosts that reserve the *_DEVICE_ID (or *DeviceId) 4338names for their various drivers. Affects the AcpiGetObjectInfo external 4339interface, and other internal interfaces as well. 4340 4341Added and deployed a new macro for ACPI_NAME management: ACPI_MOVE_NAME. 4342This macro resolves to a simple 32-bit move of the 4-character ACPI_NAME 4343on machines that support non-aligned transfers. Optimizes for this case 4344rather than using a strncpy. With assistance from Zheng Lv. 4345 4346Resource Manager: Small fix for buffer size calculation. Fixed a one byte 4347error in the output buffer calculation. Feng Tang. ACPICA BZ 849. 4348 4349Added a new debug print message for AML mutex objects that are force- 4350released. At control method termination, any currently acquired mutex 4351objects are force-released. Adds a new debug-only message for each one 4352that is released. 4353 4354Audited/updated all ACPICA return macros and the function debug depth 4355counter: 1) Ensure that all functions that use the various TRACE macros 4356also use the appropriate ACPICA return macros. 2) Ensure that all normal 4357return statements surround the return expression (value) with parens to 4358ensure consistency across the ACPICA code base. Guan Chao, Tang Feng, 4359Zheng Lv, Bob Moore. ACPICA Bugzilla 972. 4360 4361Global source code changes/maintenance: All extra lines at the start and 4362end of each source file have been removed for consistency. Also, within 4363comments, all new sentences start with a single space instead of a double 4364space, again for consistency across the code base. 4365 4366Example Code and Data Size: These are the sizes for the OS-independent 4367acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 4368debug version of the code includes the debug output trace mechanism and 4369has a much larger code and data size. 4370 4371 Previous Release: 4372 Non-Debug Version: 93.7K Code, 25.3K Data, 119.0K Total 4373 Debug Version: 175.0K Code, 74.4K Data, 249.4K Total 4374 Current Release: 4375 Non-Debug Version: 93.9K Code, 25.2K Data, 119.1K Total 4376 Debug Version: 175.5K Code, 74.5K Data, 250.0K Total 4377 4378 43792) iASL Compiler/Disassembler and Tools: 4380 4381AcpiExec: Improved the algorithm used for memory leak/corruption 4382detection. Added some intelligence to the code that maintains the global 4383list of allocated memory. The list is now ordered by allocated memory 4384address, significantly improving performance. When running AcpiExec on 4385the ASLTS test suite, speed improvements of 3X to 5X are seen, depending 4386on the platform and/or the environment. Note, this performance 4387enhancement affects the AcpiExec utility only, not the kernel-resident 4388ACPICA code. 4389 4390Enhanced error reporting for invalid AML opcodes and bad ACPI_NAMEs. For 4391the disassembler, dump the 48 bytes surrounding the invalid opcode. Fix 4392incorrect table offset reported for invalid opcodes. Report the original 439332-bit value for bad ACPI_NAMEs (as well as the repaired name.) 4394 4395Disassembler: Enhanced the -vt option to emit the binary table data in 4396hex format to assist with debugging. 4397 4398Fixed a potential filename buffer overflow in osunixdir.c. Increased the 4399size of file structure. Colin Ian King. 4400 4401---------------------------------------- 440213 September 2012. Summary of changes for version 20120913: 4403 4404 44051) ACPICA Kernel-resident Subsystem: 4406 4407ACPI 5.0: Added two new notify types for the Hardware Error Notification 4408Structure within the Hardware Error Source Table (HEST) table -- CMCI(5) 4409and 4410MCE(6). 4411 4412Table Manager: Merged/removed duplicate code in the root table resize 4413functions. One function is external, the other is internal. Lv Zheng, 4414ACPICA 4415BZ 846. 4416 4417Makefiles: Completely removed the obsolete "Linux" makefiles under 4418acpica/generate/linux. These makefiles are obsolete and have been 4419replaced 4420by 4421the generic unix makefiles under acpica/generate/unix. 4422 4423Makefiles: Ensure that binary files always copied properly. Minor rule 4424change 4425to ensure that the final binary output files are always copied up to the 4426appropriate binary directory (bin32 or bin64.) 4427 4428Example Code and Data Size: These are the sizes for the OS-independent 4429acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 4430debug 4431version of the code includes the debug output trace mechanism and has a 4432much 4433larger code and data size. 4434 4435 Previous Release: 4436 Non-Debug Version: 93.8K Code, 25.3K Data, 119.1K Total 4437 Debug Version: 175.7K Code, 74.8K Data, 250.5K Total 4438 Current Release: 4439 Non-Debug Version: 93.7K Code, 25.3K Data, 119.0K Total 4440 Debug Version: 175.0K Code, 74.4K Data, 249.4K Total 4441 4442 44432) iASL Compiler/Disassembler and Tools: 4444 4445Disassembler: Fixed a possible fault during the disassembly of resource 4446descriptors when a second parse is required because of the invocation of 4447external control methods within the table. With assistance from 4448adq@lidskialf.net. ACPICA BZ 976. 4449 4450iASL: Fixed a namepath optimization problem. An error can occur if the 4451parse 4452node that contains the namepath to be optimized does not have a parent 4453node 4454that is a named object. This change fixes the problem. 4455 4456iASL: Fixed a regression where the AML file is not deleted on errors. The 4457AML 4458output file should be deleted if there are any errors during the 4459compiler. 4460The 4461only exception is if the -f (force output) option is used. ACPICA BZ 974. 4462 4463iASL: Added a feature to automatically increase internal line buffer 4464sizes. 4465Via realloc(), automatically increase the internal line buffer sizes as 4466necessary to support very long source code lines. The current version of 4467the 4468preprocessor requires a buffer long enough to contain full source code 4469lines. 4470This change increases the line buffer(s) if the input lines go beyond the 4471current buffer size. This eliminates errors that occurred when a source 4472code 4473line was longer than the buffer. 4474 4475iASL: Fixed a problem with constant folding in method declarations. The 4476SyncLevel term is a ByteConstExpr, and incorrect code would be generated 4477if a 4478Type3 opcode was used. 4479 4480Debugger: Improved command help support. For incorrect argument count, 4481display 4482full help for the command. For help command itself, allow an argument to 4483specify a command. 4484 4485Test Suites: Several bug fixes for the ASLTS suite reduces the number of 4486errors during execution of the suite. Guan Chao. 4487 4488---------------------------------------- 448916 August 2012. Summary of changes for version 20120816: 4490 4491 44921) ACPICA Kernel-resident Subsystem: 4493 4494Removed all use of the deprecated _GTS and _BFS predefined methods. The 4495_GTS 4496(Going To Sleep) and _BFS (Back From Sleep) methods are essentially 4497deprecated and will probably be removed from the ACPI specification. 4498Windows 4499does not invoke them, and reportedly never will. The final nail in the 4500coffin 4501is that the ACPI specification states that these methods must be run with 4502interrupts off, which is not going to happen in a kernel interpreter. 4503Note: 4504Linux has removed all use of the methods also. It was discovered that 4505invoking these functions caused failures on some machines, probably 4506because 4507they were never tested since Windows does not call them. Affects two 4508external 4509interfaces, AcpiEnterSleepState and AcpiLeaveSleepStatePrep. Tang Feng. 4510ACPICA BZ 969. 4511 4512Implemented support for complex bit-packed buffers returned from the _PLD 4513(Physical Location of Device) predefined method. Adds a new external 4514interface, AcpiDecodePldBuffer that parses the buffer into a more usable 4515C 4516structure. Note: C Bitfields cannot be used for this type of predefined 4517structure since the memory layout of individual bitfields is not defined 4518by 4519the C language. In addition, there are endian concerns where a compiler 4520will 4521change the bitfield ordering based on the machine type. The new ACPICA 4522interface eliminates these issues, and should be called after _PLD is 4523executed. ACPICA BZ 954. 4524 4525Implemented a change to allow a scope change to root (via "Scope (\)") 4526during 4527execution of module-level ASL code (code that is executed at table load 4528time.) Lin Ming. 4529 4530Added the Windows8/Server2012 string for the _OSI method. This change 4531adds 4532a 4533new _OSI string, "Windows 2012" for both Windows 8 and Windows Server 45342012. 4535 4536Added header support for the new ACPI tables DBG2 (Debug Port Table Type 45372) 4538and CSRT (Core System Resource Table). 4539 4540Added struct header support for the _FDE, _GRT, _GTM, and _SRT predefined 4541names. This simplifies access to the buffers returned by these predefined 4542names. Adds a new file, include/acbuffer.h. ACPICA BZ 956. 4543 4544GPE support: Removed an extraneous parameter from the various low-level 4545internal GPE functions. Tang Feng. 4546 4547Removed the linux makefiles from the unix packages. The generate/linux 4548makefiles are obsolete and have been removed from the unix tarball 4549release 4550packages. The replacement makefiles are under generate/unix, and there is 4551a 4552top-level makefile under the main acpica directory. ACPICA BZ 967, 912. 4553 4554Updates for Unix makefiles: 45551) Add -D_FORTIFY_SOURCE=2 for gcc generation. Arjan van de Ven. 45562) Update linker flags (move to end of command line) for AcpiExec 4557utility. 4558Guan Chao. 4559 4560Split ACPICA initialization functions to new file, utxfinit.c. Split from 4561utxface.c to improve modularity and reduce file size. 4562 4563Example Code and Data Size: These are the sizes for the OS-independent 4564acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 4565debug version of the code includes the debug output trace mechanism and 4566has a 4567much larger code and data size. 4568 4569 Previous Release: 4570 Non-Debug Version: 93.5K Code, 25.3K Data, 118.8K Total 4571 Debug Version: 173.7K Code, 74.0K Data, 247.7K Total 4572 Current Release: 4573 Non-Debug Version: 93.8K Code, 25.3K Data, 119.1K Total 4574 Debug Version: 175.7K Code, 74.8K Data, 250.5K Total 4575 4576 45772) iASL Compiler/Disassembler and Tools: 4578 4579iASL: Fixed a problem with constant folding for fixed-length constant 4580expressions. The constant-folding code was not being invoked for constant 4581expressions that allow the use of type 3/4/5 opcodes to generate 4582constants 4583for expressions such as ByteConstExpr, WordConstExpr, etc. This could 4584result 4585in the generation of invalid AML bytecode. ACPICA BZ 970. 4586 4587iASL: Fixed a generation issue on newer versions of Bison. Newer versions 4588apparently automatically emit some of the necessary externals. This 4589change 4590handles these versions in order to eliminate generation warnings. 4591 4592Disassembler: Added support to decode the DBG2 and CSRT ACPI tables. 4593 4594Disassembler: Add support to decode _PLD buffers. The decoded buffer 4595appears 4596within comments in the output file. 4597 4598Debugger: Fixed a regression with the "Threads" command where 4599AE_BAD_PARAMETER was always returned. 4600 4601---------------------------------------- 460211 July 2012. Summary of changes for version 20120711: 4603 46041) ACPICA Kernel-resident Subsystem: 4605 4606Fixed a possible fault in the return package object repair code. Fixes a 4607problem that can occur when a lone package object is wrapped with an 4608outer 4609package object in order to force conformance to the ACPI specification. 4610Can 4611affect these predefined names: _ALR, _MLS, _PSS, _TRT, _TSS, _PRT, _HPX, 4612_DLM, 4613_CSD, _PSD, _TSD. 4614 4615Removed code to disable/enable bus master arbitration (ARB_DIS bit in the 4616PM2_CNT register) in the ACPICA sleep/wake interfaces. Management of the 4617ARB_DIS bit must be implemented in the host-dependent C3 processor power 4618state 4619support. Note, ARB_DIS is obsolete and only applies to older chipsets, 4620both 4621Intel and other vendors. (for Intel: ICH4-M and earlier) 4622 4623This change removes the code to disable/enable bus master arbitration 4624during 4625suspend/resume. Use of the ARB_DIS bit in the optional PM2_CNT register 4626causes 4627resume problems on some machines. The change has been in use for over 4628seven 4629years within Linux. 4630 4631Implemented two new external interfaces to support host-directed dynamic 4632ACPI 4633table load and unload. They are intended to simplify the host 4634implementation 4635of hot-plug support: 4636 AcpiLoadTable: Load an SSDT from a buffer into the namespace. 4637 AcpiUnloadParentTable: Unload an SSDT via a named object owned by the 4638table. 4639See the ACPICA reference for additional details. Adds one new file, 4640components/tables/tbxfload.c 4641 4642Implemented and deployed two new interfaces for errors and warnings that 4643are 4644known to be caused by BIOS/firmware issues: 4645 AcpiBiosError: Prints "ACPI Firmware Error" message. 4646 AcpiBiosWarning: Prints "ACPI Firmware Warning" message. 4647Deployed these new interfaces in the ACPICA Table Manager code for ACPI 4648table 4649and FADT errors. Additional deployment to be completed as appropriate in 4650the 4651future. The associated conditional macros are ACPI_BIOS_ERROR and 4652ACPI_BIOS_WARNING. See the ACPICA reference for additional details. 4653ACPICA 4654BZ 4655843. 4656 4657Implicit notify support: ensure that no memory allocation occurs within a 4658critical region. This fix moves a memory allocation outside of the time 4659that a 4660spinlock is held. Fixes issues on systems that do not allow this 4661behavior. 4662Jung-uk Kim. 4663 4664Split exception code utilities and tables into a new file, 4665utilities/utexcep.c 4666 4667Example Code and Data Size: These are the sizes for the OS-independent 4668acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 4669debug 4670version of the code includes the debug output trace mechanism and has a 4671much 4672larger code and data size. 4673 4674 Previous Release: 4675 Non-Debug Version: 93.1K Code, 25.1K Data, 118.2K Total 4676 Debug Version: 172.9K Code, 73.6K Data, 246.5K Total 4677 Current Release: 4678 Non-Debug Version: 93.5K Code, 25.3K Data, 118.8K Total 4679 Debug Version: 173.7K Code, 74.0K Data, 247.7K Total 4680 4681 46822) iASL Compiler/Disassembler and Tools: 4683 4684iASL: Fixed a parser problem for hosts where EOF is defined as -1 instead 4685of 46860. Jung-uk Kim. 4687 4688Debugger: Enhanced the "tables" command to emit additional information 4689about 4690the current set of ACPI tables, including the owner ID and flags decode. 4691 4692Debugger: Reimplemented the "unload" command to use the new 4693AcpiUnloadParentTable external interface. This command was disable 4694previously 4695due to need for an unload interface. 4696 4697AcpiHelp: Added a new option to decode ACPICA exception codes. The -e 4698option 4699will decode 16-bit hex status codes (ACPI_STATUS) to name strings. 4700 4701---------------------------------------- 470220 June 2012. Summary of changes for version 20120620: 4703 4704 47051) ACPICA Kernel-resident Subsystem: 4706 4707Implemented support to expand the "implicit notify" feature to allow 4708multiple 4709devices to be notified by a single GPE. This feature automatically 4710generates a 4711runtime device notification in the absence of a BIOS-provided GPE control 4712method (_Lxx/_Exx) or a host-installed handler for the GPE. Implicit 4713notify is 4714provided by ACPICA for Windows compatibility, and is a workaround for 4715BIOS 4716AML 4717code errors. See the description of the AcpiSetupGpeForWake interface in 4718the 4719APCICA reference. Bob Moore, Rafael Wysocki. ACPICA BZ 918. 4720 4721Changed some comments and internal function names to simplify and ensure 4722correctness of the Linux code translation. No functional changes. 4723 4724Example Code and Data Size: These are the sizes for the OS-independent 4725acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 4726debug 4727version of the code includes the debug output trace mechanism and has a 4728much 4729larger code and data size. 4730 4731 Previous Release: 4732 Non-Debug Version: 93.0K Code, 25.1K Data, 118.1K Total 4733 Debug Version: 172.7K Code, 73.6K Data, 246.3K Total 4734 Current Release: 4735 Non-Debug Version: 93.1K Code, 25.1K Data, 118.2K Total 4736 Debug Version: 172.9K Code, 73.6K Data, 246.5K Total 4737 4738 47392) iASL Compiler/Disassembler and Tools: 4740 4741Disassembler: Added support to emit short, commented descriptions for the 4742ACPI 4743predefined names in order to improve the readability of the disassembled 4744output. ACPICA BZ 959. Changes include: 4745 1) Emit descriptions for all standard predefined names (_INI, _STA, 4746_PRW, 4747etc.) 4748 2) Emit generic descriptions for the special names (_Exx, _Qxx, etc.) 4749 3) Emit descriptions for the resource descriptor names (_MIN, _LEN, 4750etc.) 4751 4752AcpiSrc: Fixed several long-standing Linux code translation issues. 4753Argument 4754descriptions in function headers are now translated properly to lower 4755case 4756and 4757underscores. ACPICA BZ 961. Also fixes translation problems such as 4758these: 4759(old -> new) 4760 i_aSL -> iASL 4761 00-7_f -> 00-7F 4762 16_k -> 16K 4763 local_fADT -> local_FADT 4764 execute_oSI -> execute_OSI 4765 4766iASL: Fixed a problem where null bytes were inadvertently emitted into 4767some 4768listing files. 4769 4770iASL: Added the existing debug options to the standard help screen. There 4771are 4772no longer two different help screens. ACPICA BZ 957. 4773 4774AcpiHelp: Fixed some typos in the various predefined name descriptions. 4775Also 4776expand some of the descriptions where appropriate. 4777 4778iASL: Fixed the -ot option (display compile times/statistics). Was not 4779working 4780properly for standard output; only worked for the debug file case. 4781 4782---------------------------------------- 478318 May 2012. Summary of changes for version 20120518: 4784 4785 47861) ACPICA Core Subsystem: 4787 4788Added a new OSL interface, AcpiOsWaitEventsComplete. This interface is 4789defined 4790to block until asynchronous events such as notifies and GPEs have 4791completed. 4792Within ACPICA, it is only called before a notify or GPE handler is 4793removed/uninstalled. It also may be useful for the host OS within related 4794drivers such as the Embedded Controller driver. See the ACPICA reference 4795for 4796additional information. ACPICA BZ 868. 4797 4798ACPI Tables: Added a new error message for a possible overflow failure 4799during 4800the conversion of FADT 32-bit legacy register addresses to internal 4801common 480264- 4803bit GAS structure representation. The GAS has a one-byte "bit length" 4804field, 4805thus limiting the register length to 255 bits. ACPICA BZ 953. 4806 4807Example Code and Data Size: These are the sizes for the OS-independent 4808acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 4809debug 4810version of the code includes the debug output trace mechanism and has a 4811much 4812larger code and data size. 4813 4814 Previous Release: 4815 Non-Debug Version: 92.9K Code, 25.0K Data, 117.9K Total 4816 Debug Version: 172.6K Code, 73.4K Data, 246.0K Total 4817 Current Release: 4818 Non-Debug Version: 93.0K Code, 25.1K Data, 118.1K Total 4819 Debug Version: 172.7K Code, 73.6K Data, 246.3K Total 4820 4821 48222) iASL Compiler/Disassembler and Tools: 4823 4824iASL: Added the ACPI 5.0 "PCC" keyword for use in the Register() ASL 4825macro. 4826This keyword was added late in the ACPI 5.0 release cycle and was not 4827implemented until now. 4828 4829Disassembler: Added support for Operation Region externals. Adds missing 4830support for operation regions that are defined in another table, and 4831referenced locally via a Field or BankField ASL operator. Now generates 4832the 4833correct External statement. 4834 4835Disassembler: Several additional fixes for the External() statement 4836generation 4837related to some ASL operators. Also, order the External() statements 4838alphabetically in the disassembler output. Fixes the External() 4839generation 4840for 4841the Create* field, Alias, and Scope operators: 4842 1) Create* buffer field operators - fix type mismatch warning on 4843disassembly 4844 2) Alias - implement missing External support 4845 3) Scope - fix to make sure all necessary externals are emitted. 4846 4847iASL: Improved pathname support. For include files, merge the prefix 4848pathname 4849with the file pathname and eliminate unnecessary components. Convert 4850backslashes in all pathnames to forward slashes, for readability. Include 4851file 4852pathname changes affect both #include and Include() type operators. 4853 4854iASL/DTC/Preprocessor: Gracefully handle early EOF. Handle an EOF at the 4855end 4856of a valid line by inserting a newline and then returning the EOF during 4857the 4858next call to GetNextLine. Prevents the line from being ignored due to EOF 4859condition. 4860 4861iASL: Implemented some changes to enhance the IDE support (-vi option.) 4862Error 4863and Warning messages are now correctly recognized for both the source 4864code 4865browser and the global error and warning counts. 4866 4867---------------------------------------- 486820 April 2012. Summary of changes for version 20120420: 4869 4870 48711) ACPICA Core Subsystem: 4872 4873Implemented support for multiple notify handlers. This change adds 4874support 4875to 4876allow multiple system and device notify handlers on Device, Thermal Zone, 4877and 4878Processor objects. This can simplify the host OS notification 4879implementation. 4880Also re-worked and restructured the entire notify support code to 4881simplify 4882handler installation, handler removal, notify event queuing, and notify 4883dispatch to handler(s). Note: there can still only be two global notify 4884handlers - one for system notifies and one for device notifies. There are 4885no 4886changes to the existing handler install/remove interfaces. Lin Ming, Bob 4887Moore, Rafael Wysocki. 4888 4889Fixed a regression in the package repair code where the object reference 4890count was calculated incorrectly. Regression was introduced in the commit 4891"Support to add Package wrappers". 4892 4893Fixed a couple possible memory leaks in the AML parser, in the error 4894recovery 4895path. Jesper Juhl, Lin Ming. 4896 4897Example Code and Data Size: These are the sizes for the OS-independent 4898acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 4899debug version of the code includes the debug output trace mechanism and 4900has a 4901much larger code and data size. 4902 4903 Previous Release: 4904 Non-Debug Version: 92.9K Code, 25.0K Data, 117.9K Total 4905 Debug Version: 172.5K Code, 73.2K Data, 245.7K Total 4906 Current Release: 4907 Non-Debug Version: 92.9K Code, 25.0K Data, 117.9K Total 4908 Debug Version: 172.6K Code, 73.4K Data, 246.0K Total 4909 4910 49112) iASL Compiler/Disassembler and Tools: 4912 4913iASL: Fixed a problem with the resource descriptor support where the 4914length 4915of the StartDependentFn and StartDependentFnNoPrio descriptors were not 4916included in cumulative descriptor offset, resulting in incorrect values 4917for 4918resource tags within resource descriptors appearing after a 4919StartDependent* 4920descriptor. Reported by Petr Vandrovec. ACPICA BZ 949. 4921 4922iASL and Preprocessor: Implemented full support for the #line directive 4923to 4924correctly track original source file line numbers through the .i 4925preprocessor 4926output file - for error and warning messages. 4927 4928iASL: Expand the allowable byte constants for address space IDs. 4929Previously, 4930the allowable range was 0x80-0xFF (user-defined spaces), now the range is 49310x0A-0xFF to allow for custom and new IDs without changing the compiler. 4932 4933iASL: Add option to treat all warnings as errors (-we). ACPICA BZ 948. 4934 4935iASL: Add option to completely disable the preprocessor (-Pn). 4936 4937iASL: Now emit all error/warning messages to standard error (stderr) by 4938default (instead of the previous stdout). 4939 4940ASL Test Suite (ASLTS): Reduce iASL warnings due to use of Switch(). 4941Update 4942for resource descriptor offset fix above. Update/cleanup error output 4943routines. Enable and send iASL errors/warnings to an error logfile 4944(error.txt). Send all other iASL output to a logfile (compiler.txt). 4945Fixed 4946several extraneous "unrecognized operator" messages. 4947 4948---------------------------------------- 494920 March 2012. Summary of changes for version 20120320: 4950 4951 49521) ACPICA Core Subsystem: 4953 4954Enhanced the sleep/wake interfaces to optionally execute the _GTS method 4955(Going To Sleep) and the _BFS method (Back From Sleep). Windows 4956apparently 4957does not execute these methods, and therefore these methods are often 4958untested. It has been seen on some systems where the execution of these 4959methods causes errors and also prevents the machine from entering S5. It 4960is 4961therefore suggested that host operating systems do not execute these 4962methods 4963by default. In the future, perhaps these methods can be optionally 4964executed 4965based on the age of the system and/or what is the newest version of 4966Windows 4967that the BIOS asks for via _OSI. Changed interfaces: AcpiEnterSleepState 4968and 4969AcpileaveSleepStatePrep. See the ACPICA reference and Linux BZ 13041. Lin 4970Ming. 4971 4972Fixed a problem where the length of the local/common FADT was set too 4973early. 4974The local FADT table length cannot be set to the common length until the 4975original length has been examined. There is code that checks the table 4976length 4977and sets various fields appropriately. This can affect older machines 4978with 4979early FADT versions. For example, this can cause inadvertent writes to 4980the 4981CST_CNT register. Julian Anastasov. 4982 4983Fixed a mapping issue related to a physical table override. Use the 4984deferred 4985mapping mechanism for tables loaded via the physical override OSL 4986interface. 4987This allows for early mapping before the virtual memory manager is 4988available. 4989Thomas Renninger, Bob Moore. 4990 4991Enhanced the automatic return-object repair code: Repair a common problem 4992with 4993predefined methods that are defined to return a variable-length Package 4994of 4995sub-objects. If there is only one sub-object, some BIOS ASL code 4996mistakenly 4997simply returns the single object instead of a Package with one sub- 4998object. 4999This new support will repair this error by wrapping a Package object 5000around 5001the original object, creating the correct and expected Package with one 5002sub- 5003object. Names that can be repaired in this manner include: _ALR, _CSD, 5004_HPX, 5005_MLS, _PLD, _PRT, _PSS, _TRT, _TSS, _BCL, _DOD, _FIX, and _Sx. ACPICA BZ 5006939. 5007 5008Changed the exception code returned for invalid ACPI paths passed as 5009parameters to external interfaces such as AcpiEvaluateObject. Was 5010AE_BAD_PARAMETER, now is the more sensible AE_BAD_PATHNAME. 5011 5012Example Code and Data Size: These are the sizes for the OS-independent 5013acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 5014debug 5015version of the code includes the debug output trace mechanism and has a 5016much 5017larger code and data size. 5018 5019 Previous Release: 5020 Non-Debug Version: 93.0K Code, 25.0K Data, 118.0K Total 5021 Debug Version: 172.5K Code, 73.2K Data, 245.7K Total 5022 Current Release: 5023 Non-Debug Version: 92.9K Code, 25.0K Data, 117.9K Total 5024 Debug Version: 172.5K Code, 73.2K Data, 245.7K Total 5025 5026 50272) iASL Compiler/Disassembler and Tools: 5028 5029iASL: Added the infrastructure and initial implementation of a integrated 5030C- 5031like preprocessor. This will simplify BIOS development process by 5032eliminating 5033the need for a separate preprocessing step during builds. On Windows, it 5034also 5035eliminates the need to install a separate C compiler. ACPICA BZ 761. Some 5036features including full #define() macro support are still under 5037development. 5038These preprocessor directives are supported: 5039 #define 5040 #elif 5041 #else 5042 #endif 5043 #error 5044 #if 5045 #ifdef 5046 #ifndef 5047 #include 5048 #pragma message 5049 #undef 5050 #warning 5051In addition, these new command line options are supported: 5052 -D <symbol> Define symbol for preprocessor use 5053 -li Create preprocessed output file (*.i) 5054 -P Preprocess only and create preprocessor output file (*.i) 5055 5056Table Compiler: Fixed a problem where the equals operator within an 5057expression 5058did not work properly. 5059 5060Updated iASL to use the current versions of Bison/Flex. Updated the 5061Windows 5062project file to invoke these tools from the standard location. ACPICA BZ 5063904. 5064Versions supported: 5065 Flex for Windows: V2.5.4 5066 Bison for Windows: V2.4.1 5067 5068---------------------------------------- 506915 February 2012. Summary of changes for version 20120215: 5070 5071 50721) ACPICA Core Subsystem: 5073 5074There have been some major changes to the sleep/wake support code, as 5075described below (a - e). 5076 5077a) The AcpiLeaveSleepState has been split into two interfaces, similar to 5078AcpiEnterSleepStatePrep and AcpiEnterSleepState. The new interface is 5079AcpiLeaveSleepStatePrep. This allows the host to perform actions between 5080the 5081time the _BFS method is called and the _WAK method is called. NOTE: all 5082hosts 5083must update their wake/resume code or else sleep/wake will not work 5084properly. 5085Rafael Wysocki. 5086 5087b) In AcpiLeaveSleepState, now enable all runtime GPEs before calling the 5088_WAK 5089method. Some machines require that the GPEs are enabled before the _WAK 5090method 5091is executed. Thomas Renninger. 5092 5093c) In AcpiLeaveSleepState, now always clear the WAK_STS (wake status) 5094bit. 5095Some BIOS code assumes that WAK_STS will be cleared on resume and use it 5096to 5097determine whether the system is rebooting or resuming. Matthew Garrett. 5098 5099d) Move the invocations of _GTS (Going To Sleep) and _BFS (Back From 5100Sleep) to 5101match the ACPI specification requirement. Rafael Wysocki. 5102 5103e) Implemented full support for the ACPI 5.0 SleepStatus and SleepControl 5104registers within the V5 FADT. This support adds two new files: 5105hardware/hwesleep.c implements the support for the new registers. Moved 5106all 5107sleep/wake external interfaces to hardware/hwxfsleep.c. 5108 5109 5110Added a new OSL interface for ACPI table overrides, 5111AcpiOsPhysicalTableOverride. This interface allows the host to override a 5112table via a physical address, instead of the logical address required by 5113AcpiOsTableOverride. This simplifies the host implementation. Initial 5114implementation by Thomas Renninger. The ACPICA implementation creates a 5115single 5116shared function for table overrides that attempts both a logical and a 5117physical override. 5118 5119Expanded the OSL memory read/write interfaces to 64-bit data 5120(AcpiOsReadMemory, AcpiOsWriteMemory.) This enables full 64-bit memory 5121transfer support for GAS register structures passed to AcpiRead and 5122AcpiWrite. 5123 5124Implemented the ACPI_REDUCED_HARDWARE option to allow the creation of a 5125custom 5126build of ACPICA that supports only the ACPI 5.0 reduced hardware (SoC) 5127model. 5128See the ACPICA reference for details. ACPICA BZ 942. This option removes 5129about 513010% of the code and 5% of the static data, and the following hardware 5131ACPI 5132features become unavailable: 5133 PM Event and Control registers 5134 SCI interrupt (and handler) 5135 Fixed Events 5136 General Purpose Events (GPEs) 5137 Global Lock 5138 ACPI PM timer 5139 FACS table (Waking vectors and Global Lock) 5140 5141Updated the unix tarball directory structure to match the ACPICA git 5142source 5143tree. This ensures that the generic unix makefiles work properly (in 5144generate/unix). Also updated the Linux makefiles to match. ACPICA BZ 5145867. 5146 5147Updated the return value of the _REV predefined method to integer value 5 5148to 5149reflect ACPI 5.0 support. 5150 5151Moved the external ACPI PM timer interface prototypes to the public 5152acpixf.h 5153file where they belong. 5154 5155Example Code and Data Size: These are the sizes for the OS-independent 5156acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 5157debug 5158version of the code includes the debug output trace mechanism and has a 5159much 5160larger code and data size. 5161 5162 Previous Release: 5163 Non-Debug Version: 92.8K Code, 24.9K Data, 117.7K Total 5164 Debug Version: 171.7K Code, 72.9K Data, 244.5K Total 5165 Current Release: 5166 Non-Debug Version: 93.0K Code, 25.0K Data, 118.0K Total 5167 Debug Version: 172.5K Code, 73.2K Data, 245.7K Total 5168 5169 51702) iASL Compiler/Disassembler and Tools: 5171 5172Disassembler: Fixed a problem with the new ACPI 5.0 serial resource 5173descriptors (I2C, SPI, UART) where the resource produce/consumer bit was 5174incorrectly displayed. 5175 5176AcpiHelp: Add display of ACPI/PNP device IDs that are defined in the ACPI 5177specification. 5178 5179---------------------------------------- 518011 January 2012. Summary of changes for version 20120111: 5181 5182 51831) ACPICA Core Subsystem: 5184 5185Implemented a new mechanism to allow host device drivers to check for 5186address 5187range conflicts with ACPI Operation Regions. Both SystemMemory and 5188SystemIO 5189address spaces are supported. A new external interface, 5190AcpiCheckAddressRange, 5191allows drivers to check an address range against the ACPI namespace. See 5192the 5193ACPICA reference for additional details. Adds one new file, 5194utilities/utaddress.c. Lin Ming, Bob Moore. 5195 5196Fixed several issues with the ACPI 5.0 FADT support: Add the sleep 5197Control 5198and 5199Status registers, update the ACPI 5.0 flags, and update internal data 5200structures to handle an FADT larger than 256 bytes. The size of the ACPI 52015.0 5202FADT is 268 bytes. 5203 5204Updated all ACPICA copyrights and signons to 2012. Added the 2012 5205copyright to 5206all module headers and signons, including the standard Linux header. This 5207affects virtually every file in the ACPICA core subsystem, iASL compiler, 5208and 5209all ACPICA utilities. 5210 5211Example Code and Data Size: These are the sizes for the OS-independent 5212acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 5213debug 5214version of the code includes the debug output trace mechanism and has a 5215much 5216larger code and data size. 5217 5218 Previous Release: 5219 Non-Debug Version: 92.3K Code, 24.9K Data, 117.2K Total 5220 Debug Version: 170.8K Code, 72.6K Data, 243.4K Total 5221 Current Release: 5222 Non-Debug Version: 92.8K Code, 24.9K Data, 117.7K Total 5223 Debug Version: 171.7K Code, 72.9K Data, 244.5K Total 5224 5225 52262) iASL Compiler/Disassembler and Tools: 5227 5228Disassembler: fixed a problem with the automatic resource tag generation 5229support. Fixes a problem where the resource tags are inadvertently not 5230constructed if the table being disassembled contains external references 5231to 5232control methods. Moved the actual construction of the tags to after the 5233final 5234namespace is constructed (after 2nd parse is invoked due to external 5235control 5236method references.) ACPICA BZ 941. 5237 5238Table Compiler: Make all "generic" operators caseless. These are the 5239operators 5240like UINT8, String, etc. Making these caseless improves ease-of-use. 5241ACPICA BZ 5242934. 5243 5244---------------------------------------- 524523 November 2011. Summary of changes for version 20111123: 5246 52470) ACPI 5.0 Support: 5248 5249This release contains full support for the ACPI 5.0 specification, as 5250summarized below. 5251 5252Reduced Hardware Support: 5253------------------------- 5254 5255This support allows for ACPI systems without the usual ACPI hardware. 5256This 5257support is enabled by a flag in the revision 5 FADT. If it is set, ACPICA 5258will 5259not attempt to initialize or use any of the usual ACPI hardware. Note, 5260when 5261this flag is set, all of the following ACPI hardware is assumed to be not 5262present and is not initialized or accessed: 5263 5264 General Purpose Events (GPEs) 5265 Fixed Events (PM1a/PM1b and PM Control) 5266 Power Management Timer and Console Buttons (power/sleep) 5267 Real-time Clock Alarm 5268 Global Lock 5269 System Control Interrupt (SCI) 5270 The FACS is assumed to be non-existent 5271 5272ACPI Tables: 5273------------ 5274 5275All new tables and updates to existing tables are fully supported in the 5276ACPICA headers (for use by device drivers), the disassembler, and the 5277iASL 5278Data Table Compiler. ACPI 5.0 defines these new tables: 5279 5280 BGRT /* Boot Graphics Resource Table */ 5281 DRTM /* Dynamic Root of Trust for Measurement table */ 5282 FPDT /* Firmware Performance Data Table */ 5283 GTDT /* Generic Timer Description Table */ 5284 MPST /* Memory Power State Table */ 5285 PCCT /* Platform Communications Channel Table */ 5286 PMTT /* Platform Memory Topology Table */ 5287 RASF /* RAS Feature table */ 5288 5289Operation Regions/SpaceIDs: 5290--------------------------- 5291 5292All new operation regions are fully supported by the iASL compiler, the 5293disassembler, and the ACPICA runtime code (for dispatch to region 5294handlers.) 5295The new operation region Space IDs are: 5296 5297 GeneralPurposeIo 5298 GenericSerialBus 5299 5300Resource Descriptors: 5301--------------------- 5302 5303All new ASL resource descriptors are fully supported by the iASL 5304compiler, 5305the 5306ASL/AML disassembler, and the ACPICA runtime Resource Manager code 5307(including 5308all new predefined resource tags). New descriptors are: 5309 5310 FixedDma 5311 GpioIo 5312 GpioInt 5313 I2cSerialBus 5314 SpiSerialBus 5315 UartSerialBus 5316 5317ASL/AML Operators, New and Modified: 5318------------------------------------ 5319 5320One new operator is added, the Connection operator, which is used to 5321associate 5322a GeneralPurposeIo or GenericSerialBus resource descriptor with 5323individual 5324field objects within an operation region. Several new protocols are 5325associated 5326with the AccessAs operator. All are fully supported by the iASL compiler, 5327disassembler, and runtime ACPICA AML interpreter: 5328 5329 Connection // Declare Field Connection 5330attributes 5331 AccessAs: AttribBytes (n) // Read/Write N-Bytes Protocol 5332 AccessAs: AttribRawBytes (n) // Raw Read/Write N-Bytes 5333Protocol 5334 AccessAs: AttribRawProcessBytes (n) // Raw Process Call Protocol 5335 RawDataBuffer // Data type for Vendor Data 5336fields 5337 5338Predefined ASL/AML Objects: 5339--------------------------- 5340 5341All new predefined objects/control-methods are supported by the iASL 5342compiler 5343and the ACPICA runtime validation/repair (arguments and return values.) 5344New 5345predefined names include the following: 5346 5347Standard Predefined Names (Objects or Control Methods): 5348 _AEI, _CLS, _CPC, _CWS, _DEP, 5349 _DLM, _EVT, _GCP, _CRT, _GWS, 5350 _HRV, _PRE, _PSE, _SRT, _SUB. 5351 5352Resource Tags (Names used to access individual fields within resource 5353descriptors): 5354 _DBT, _DPL, _DRS, _END, _FLC, 5355 _IOR, _LIN, _MOD, _PAR, _PHA, 5356 _PIN, _PPI, _POL, _RXL, _SLV, 5357 _SPE, _STB, _TXL, _VEN. 5358 5359ACPICA External Interfaces: 5360--------------------------- 5361 5362Several new interfaces have been defined for use by ACPI-related device 5363drivers and other host OS services: 5364 5365AcpiAcquireMutex and AcpiReleaseMutex: These interfaces allow the host OS 5366to 5367acquire and release AML mutexes that are defined in the DSDT/SSDT tables 5368provided by the BIOS. They are intended to be used in conjunction with 5369the 5370ACPI 5.0 _DLM (Device Lock Method) in order to provide transaction-level 5371mutual exclusion with the AML code/interpreter. 5372 5373AcpiGetEventResources: Returns the (formatted) resource descriptors as 5374defined 5375by the ACPI 5.0 _AEI object (ACPI Event Information). This object 5376provides 5377resource descriptors associated with hardware-reduced platform events, 5378similar 5379to the AcpiGetCurrentResources interface. 5380 5381Operation Region Handlers: For General Purpose IO and Generic Serial Bus 5382operation regions, information about the Connection() object and any 5383optional 5384length information is passed to the region handler within the Context 5385parameter. 5386 5387AcpiBufferToResource: This interface converts a raw AML buffer containing 5388a 5389resource template or resource descriptor to the ACPI_RESOURCE internal 5390format 5391suitable for use by device drivers. Can be used by an operation region 5392handler 5393to convert the Connection() buffer object into a ACPI_RESOURCE. 5394 5395Miscellaneous/Tools/TestSuites: 5396------------------------------- 5397 5398Support for extended _HID names (Four alpha characters instead of three). 5399Support for ACPI 5.0 features in the AcpiExec and AcpiHelp utilities. 5400Support for ACPI 5.0 features in the ASLTS test suite. 5401Fully updated documentation (ACPICA and iASL reference documents.) 5402 5403ACPI Table Definition Language: 5404------------------------------- 5405 5406Support for this language was implemented and released as a subsystem of 5407the 5408iASL compiler in 2010. (See the iASL compiler User Guide.) 5409 5410 5411Non-ACPI 5.0 changes for this release: 5412-------------------------------------- 5413 54141) ACPICA Core Subsystem: 5415 5416Fix a problem with operation region declarations where a failure can 5417occur 5418if 5419the region name and an argument that evaluates to an object (such as the 5420region address) are in different namespace scopes. Lin Ming, ACPICA BZ 5421937. 5422 5423Do not abort an ACPI table load if an invalid space ID is found within. 5424This 5425will be caught later if the offending method is executed. ACPICA BZ 925. 5426 5427Fixed an issue with the FFixedHW space ID where the ID was not always 5428recognized properly (Both ACPICA and iASL). ACPICA BZ 926. 5429 5430Fixed a problem with the 32-bit generation of the unix-specific OSL 5431(osunixxf.c). Lin Ming, ACPICA BZ 936. 5432 5433Several changes made to enable generation with the GCC 4.6 compiler. 5434ACPICA BZ 5435935. 5436 5437New error messages: Unsupported I/O requests (not 8/16/32 bit), and 5438Index/Bank 5439field registers out-of-range. 5440 54412) iASL Compiler/Disassembler and Tools: 5442 5443iASL: Implemented the __PATH__ operator, which returns the full pathname 5444of 5445the current source file. 5446 5447AcpiHelp: Automatically display expanded keyword information for all ASL 5448operators. 5449 5450Debugger: Add "Template" command to disassemble/dump resource template 5451buffers. 5452 5453Added a new master script to generate and execute the ASLTS test suite. 5454Automatically handles 32- and 64-bit generation. See tests/aslts.sh 5455 5456iASL: Fix problem with listing generation during processing of the 5457Switch() 5458operator where AML listing was disabled until the entire Switch block was 5459completed. 5460 5461iASL: Improve support for semicolon statement terminators. Fix "invalid 5462character" message for some cases when the semicolon is used. Semicolons 5463are 5464now allowed after every <Term> grammar element. ACPICA BZ 927. 5465 5466iASL: Fixed some possible aliasing warnings during generation. ACPICA BZ 5467923. 5468 5469Disassembler: Fix problem with disassembly of the DataTableRegion 5470operator 5471where an inadvertent "Unhandled deferred opcode" message could be 5472generated. 5473 54743) Example Code and Data Size 5475 5476These are the sizes for the OS-independent acpica.lib produced by the 5477Microsoft Visual C++ 9.0 32-bit compiler. The debug version of the code 5478includes the debug output trace mechanism and has a much larger code and 5479data 5480size. 5481 5482 Previous Release: 5483 Non-Debug Version: 90.2K Code, 23.9K Data, 114.1K Total 5484 Debug Version: 165.6K Code, 68.4K Data, 234.0K Total 5485 Current Release: 5486 Non-Debug Version: 92.3K Code, 24.9K Data, 117.2K Total 5487 Debug Version: 170.8K Code, 72.6K Data, 243.4K Total 5488 5489---------------------------------------- 549022 September 2011. Summary of changes for version 20110922: 5491 54920) ACPI 5.0 News: 5493 5494Support for ACPI 5.0 in ACPICA has been underway for several months and 5495will 5496be released at the same time that ACPI 5.0 is officially released. 5497 5498The ACPI 5.0 specification is on track for release in the next few 5499months. 5500 55011) ACPICA Core Subsystem: 5502 5503Fixed a problem where the maximum sleep time for the Sleep() operator was 5504intended to be limited to two seconds, but was inadvertently limited to 550520 5506seconds instead. 5507 5508Linux and Unix makefiles: Added header file dependencies to ensure 5509correct 5510generation of ACPICA core code and utilities. Also simplified the 5511makefiles 5512considerably through the use of the vpath variable to specify search 5513paths. 5514ACPICA BZ 924. 5515 55162) iASL Compiler/Disassembler and Tools: 5517 5518iASL: Implemented support to check the access length for all fields 5519created to 5520access named Resource Descriptor fields. For example, if a resource field 5521is 5522defined to be two bits, a warning is issued if a CreateXxxxField() is 5523used 5524with an incorrect bit length. This is implemented for all current 5525resource 5526descriptor names. ACPICA BZ 930. 5527 5528Disassembler: Fixed a byte ordering problem with the output of 24-bit and 552956- 5530bit integers. 5531 5532iASL: Fixed a couple of issues associated with variable-length package 5533objects. 1) properly handle constants like One, Ones, Zero -- do not make 5534a 5535VAR_PACKAGE when these are used as a package length. 2) Allow the 5536VAR_PACKAGE 5537opcode (in addition to PACKAGE) when validating object types for 5538predefined 5539names. 5540 5541iASL: Emit statistics for all output files (instead of just the ASL input 5542and 5543AML output). Includes listings, hex files, etc. 5544 5545iASL: Added -G option to the table compiler to allow the compilation of 5546custom 5547ACPI tables. The only part of a table that is required is the standard 554836- 5549byte 5550ACPI header. 5551 5552AcpiXtract: Ported to the standard ACPICA environment (with ACPICA 5553headers), 5554which also adds correct 64-bit support. Also, now all output filenames 5555are 5556completely lower case. 5557 5558AcpiExec: Ignore any non-AML tables (tables other than DSDT or SSDT) when 5559loading table files. A warning is issued for any such tables. The only 5560exception is an FADT. This also fixes a possible fault when attempting to 5561load 5562non-AML tables. ACPICA BZ 932. 5563 5564AcpiHelp: Added the AccessAs and Offset operators. Fixed a problem where 5565a 5566missing table terminator could cause a fault when using the -p option. 5567 5568AcpiSrc: Fixed a possible divide-by-zero fault when generating file 5569statistics. 5570 55713) Example Code and Data Size 5572 5573These are the sizes for the OS-independent acpica.lib produced by the 5574Microsoft Visual C++ 9.0 32-bit compiler. The debug version of the code 5575includes the debug output trace mechanism and has a much larger code and 5576data 5577size. 5578 5579 Previous Release (VC 9.0): 5580 Non-Debug Version: 90.2K Code, 23.9K Data, 114.1K Total 5581 Debug Version: 165.6K Code, 68.4K Data, 234.0K Total 5582 Current Release (VC 9.0): 5583 Non-Debug Version: 90.2K Code, 23.9K Data, 114.1K Total 5584 Debug Version: 165.6K Code, 68.4K Data, 234.0K Total 5585 5586 5587---------------------------------------- 558823 June 2011. Summary of changes for version 20110623: 5589 55901) ACPI CA Core Subsystem: 5591 5592Updated the predefined name repair mechanism to not attempt repair of a 5593_TSS 5594return object if a _PSS object is present. We can only sort the _TSS 5595return 5596package if there is no _PSS within the same scope. This is because if 5597_PSS 5598is 5599present, the ACPI specification dictates that the _TSS Power Dissipation 5600field 5601is to be ignored, and therefore some BIOSs leave garbage values in the 5602_TSS 5603Power field(s). In this case, it is best to just return the _TSS package 5604as- 5605is. Reported by, and fixed with assistance from Fenghua Yu. 5606 5607Added an option to globally disable the control method return value 5608validation 5609and repair. This runtime option can be used to disable return value 5610repair 5611if 5612this is causing a problem on a particular machine. Also added an option 5613to 5614AcpiExec (-dr) to set this disable flag. 5615 5616All makefiles and project files: Major changes to improve generation of 5617ACPICA 5618tools. ACPICA BZ 912: 5619 Reduce default optimization levels to improve compatibility 5620 For Linux, add strict-aliasing=0 for gcc 4 5621 Cleanup and simplify use of command line defines 5622 Cleanup multithread library support 5623 Improve usage messages 5624 5625Linux-specific header: update handling of THREAD_ID and pthread. For the 562632- 5627bit case, improve casting to eliminate possible warnings, especially with 5628the 5629acpica tools. 5630 5631Example Code and Data Size: These are the sizes for the OS-independent 5632acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 5633debug 5634version of the code includes the debug output trace mechanism and has a 5635much 5636larger code and data size. 5637 5638 Previous Release (VC 9.0): 5639 Non-Debug Version: 90.1K Code, 23.9K Data, 114.0K Total 5640 Debug Version: 165.6K Code, 68.4K Data, 234.0K Total 5641 Current Release (VC 9.0): 5642 Non-Debug Version: 90.2K Code, 23.9K Data, 114.1K Total 5643 Debug Version: 165.6K Code, 68.4K Data, 234.0K Total 5644 56452) iASL Compiler/Disassembler and Tools: 5646 5647With this release, a new utility named "acpihelp" has been added to the 5648ACPICA 5649package. This utility summarizes the ACPI specification chapters for the 5650ASL 5651and AML languages. It generates under Linux/Unix as well as Windows, and 5652provides the following functionality: 5653 Find/display ASL operator(s) -- with description and syntax. 5654 Find/display ASL keyword(s) -- with exact spelling and descriptions. 5655 Find/display ACPI predefined name(s) -- with description, number 5656 of arguments, and the return value data type. 5657 Find/display AML opcode name(s) -- with opcode, arguments, and 5658grammar. 5659 Decode/display AML opcode -- with opcode name, arguments, and 5660grammar. 5661 5662Service Layers: Make multi-thread support configurable. Conditionally 5663compile 5664the multi-thread support so that threading libraries will not be linked 5665if 5666not 5667necessary. The only tool that requires multi-thread support is AcpiExec. 5668 5669iASL: Update yyerrror/AslCompilerError for "const" errors. Newer versions 5670of 5671Bison appear to want the interface to yyerror to be a const char * (or at 5672least this is a problem when generating iASL on some systems.) ACPICA BZ 5673923 5674Pierre Lejeune. 5675 5676Tools: Fix for systems where O_BINARY is not defined. Only used for 5677Windows 5678versions of the tools. 5679 5680---------------------------------------- 568127 May 2011. Summary of changes for version 20110527: 5682 56831) ACPI CA Core Subsystem: 5684 5685ASL Load() operator: Reinstate most restrictions on the incoming ACPI 5686table 5687signature. Now, only allow SSDT, OEMx, and a null signature. History: 5688 1) Originally, we checked the table signature for "SSDT" or "PSDT". 5689 (PSDT is now obsolete.) 5690 2) We added support for OEMx tables, signature "OEM" plus a fourth 5691 "don't care" character. 5692 3) Valid tables were encountered with a null signature, so we just 5693 gave up on validating the signature, (05/2008). 5694 4) We encountered non-AML tables such as the MADT, which caused 5695 interpreter errors and kernel faults. So now, we once again allow 5696 only SSDT, OEMx, and now, also a null signature. (05/2011). 5697 5698Added the missing _TDL predefined name to the global name list in order 5699to 5700enable validation. Affects both the core ACPICA code and the iASL 5701compiler. 5702 5703Example Code and Data Size: These are the sizes for the OS-independent 5704acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 5705debug 5706version of the code includes the debug output trace mechanism and has a 5707much 5708larger code and data size. 5709 5710 Previous Release (VC 9.0): 5711 Non-Debug Version: 90.0K Code, 23.8K Data, 113.8K Total 5712 Debug Version: 164.5K Code, 68.0K Data, 232.5K Total 5713 Current Release (VC 9.0): 5714 Non-Debug Version: 90.1K Code, 23.9K Data, 114.0K Total 5715 Debug Version: 165.6K Code, 68.4K Data, 234.0K Total 5716 57172) iASL Compiler/Disassembler and Tools: 5718 5719Debugger/AcpiExec: Implemented support for "complex" method arguments on 5720the 5721debugger command line. This adds support beyond simple integers -- 5722including 5723Strings, Buffers, and Packages. Includes support for nested packages. 5724Increased the default command line buffer size to accommodate these 5725arguments. 5726See the ACPICA reference for details and syntax. ACPICA BZ 917. 5727 5728Debugger/AcpiExec: Implemented support for "default" method arguments for 5729the 5730Execute/Debug command. Now, the debugger will always invoke a control 5731method 5732with the required number of arguments -- even if the command line 5733specifies 5734none or insufficient arguments. It uses default integer values for any 5735missing 5736arguments. Also fixes a bug where only six method arguments maximum were 5737supported instead of the required seven. 5738 5739Debugger/AcpiExec: Add a maximum buffer length parameter to AcpiOsGetLine 5740and 5741also return status in order to prevent buffer overruns. See the ACPICA 5742reference for details and syntax. ACPICA BZ 921 5743 5744iASL: Cleaned up support for Berkeley yacc. A general cleanup of code and 5745makefiles to simplify support for the two different but similar parser 5746generators, bison and yacc. 5747 5748Updated the generic unix makefile for gcc 4. The default gcc version is 5749now 5750expected to be 4 or greater, since options specific to gcc 4 are used. 5751 5752---------------------------------------- 575313 April 2011. Summary of changes for version 20110413: 5754 57551) ACPI CA Core Subsystem: 5756 5757Implemented support to execute a so-called "orphan" _REG method under the 5758EC 5759device. This change will force the execution of a _REG method underneath 5760the 5761EC 5762device even if there is no corresponding operation region of type 5763EmbeddedControl. Fixes a problem seen on some machines and apparently is 5764compatible with Windows behavior. ACPICA BZ 875. 5765 5766Added more predefined methods that are eligible for automatic NULL 5767package 5768element removal. This change adds another group of predefined names to 5769the 5770list 5771of names that can be repaired by having NULL package elements dynamically 5772removed. This group are those methods that return a single variable- 5773length 5774package containing simple data types such as integers, buffers, strings. 5775This 5776includes: _ALx, _BCL, _CID,_ DOD, _EDL, _FIX, _PCL, _PLD, _PMD, _PRx, 5777_PSL, 5778_Sx, 5779and _TZD. ACPICA BZ 914. 5780 5781Split and segregated all internal global lock functions to a new file, 5782evglock.c. 5783 5784Updated internal address SpaceID for DataTable regions. Moved this 5785internal 5786space 5787id in preparation for ACPI 5.0 changes that will include some new space 5788IDs. 5789This 5790change should not affect user/host code. 5791 5792Example Code and Data Size: These are the sizes for the OS-independent 5793acpica.lib 5794produced by the Microsoft Visual C++ 9.0 32-bit compiler. The debug 5795version of 5796the code includes the debug output trace mechanism and has a much larger 5797code 5798and 5799data size. 5800 5801 Previous Release (VC 9.0): 5802 Non-Debug Version: 89.8K Code, 23.8K Data, 113.6K Total 5803 Debug Version: 164.2K Code, 67.9K Data, 232.1K Total 5804 Current Release (VC 9.0): 5805 Non-Debug Version: 90.0K Code, 23.8K Data, 113.8K Total 5806 Debug Version: 164.5K Code, 68.0K Data, 232.5K Total 5807 58082) iASL Compiler/Disassembler and Tools: 5809 5810iASL/DTC: Major update for new grammar features. Allow generic data types 5811in 5812custom ACPI tables. Field names are now optional. Any line can be split 5813to 5814multiple lines using the continuation char (\). Large buffers now use 5815line- 5816continuation character(s) and no colon on the continuation lines. See the 5817grammar 5818update in the iASL compiler reference. ACPI BZ 910,911. Lin Ming, Bob 5819Moore. 5820 5821iASL: Mark ASL "Return()" and the simple "Return" as "Null" return 5822statements. 5823Since the parser stuffs a "zero" as the return value for these statements 5824(due 5825to 5826the underlying AML grammar), they were seen as "return with value" by the 5827iASL 5828semantic checking. They are now seen correctly as "null" return 5829statements. 5830 5831iASL: Check if a_REG declaration has a corresponding Operation Region. 5832Adds a 5833check for each _REG to ensure that there is in fact a corresponding 5834operation 5835region declaration in the same scope. If not, the _REG method is not very 5836useful 5837since it probably won't be executed. ACPICA BZ 915. 5838 5839iASL/DTC: Finish support for expression evaluation. Added a new 5840expression 5841parser 5842that implements c-style operator precedence and parenthesization. ACPICA 5843bugzilla 5844908. 5845 5846Disassembler/DTC: Remove support for () and <> style comments in data 5847tables. 5848Now 5849that DTC has full expression support, we don't want to have comment 5850strings 5851that 5852start with a parentheses or a less-than symbol. Now, only the standard /* 5853and 5854// 5855comments are supported, as well as the bracket [] comments. 5856 5857AcpiXtract: Fix for RSDP and dynamic SSDT extraction. These tables have 5858"unusual" 5859headers in the acpidump file. Update the header validation to support 5860these 5861tables. Problem introduced in previous AcpiXtract version in the change 5862to 5863support "wrong checksum" error messages emitted by acpidump utility. 5864 5865iASL: Add a * option to generate all template files (as a synonym for 5866ALL) 5867as 5868in 5869"iasl -T *" or "iasl -T ALL". 5870 5871iASL/DTC: Do not abort compiler on fatal errors. We do not want to 5872completely 5873abort the compiler on "fatal" errors, simply should abort the current 5874compile. 5875This allows multiple compiles with a single (possibly wildcard) compiler 5876invocation. 5877 5878---------------------------------------- 587916 March 2011. Summary of changes for version 20110316: 5880 58811) ACPI CA Core Subsystem: 5882 5883Fixed a problem caused by a _PRW method appearing at the namespace root 5884scope 5885during the setup of wake GPEs. A fault could occur if a _PRW directly 5886under 5887the 5888root object was passed to the AcpiSetupGpeForWake interface. Lin Ming. 5889 5890Implemented support for "spurious" Global Lock interrupts. On some 5891systems, a 5892global lock interrupt can occur without the pending flag being set. Upon 5893a 5894GL 5895interrupt, we now ensure that a thread is actually waiting for the lock 5896before 5897signaling GL availability. Rafael Wysocki, Bob Moore. 5898 5899Example Code and Data Size: These are the sizes for the OS-independent 5900acpica.lib 5901produced by the Microsoft Visual C++ 9.0 32-bit compiler. The debug 5902version of 5903the code includes the debug output trace mechanism and has a much larger 5904code 5905and 5906data size. 5907 5908 Previous Release (VC 9.0): 5909 Non-Debug Version: 89.7K Code, 23.7K Data, 113.4K Total 5910 Debug Version: 163.9K Code, 67.5K Data, 231.4K Total 5911 Current Release (VC 9.0): 5912 Non-Debug Version: 89.8K Code, 23.8K Data, 113.6K Total 5913 Debug Version: 164.2K Code, 67.9K Data, 232.1K Total 5914 59152) iASL Compiler/Disassembler and Tools: 5916 5917Implemented full support for the "SLIC" ACPI table. Includes support in 5918the 5919header files, disassembler, table compiler, and template generator. Bob 5920Moore, 5921Lin Ming. 5922 5923AcpiXtract: Correctly handle embedded comments and messages from 5924AcpiDump. 5925Apparently some or all versions of acpidump will occasionally emit a 5926comment 5927like 5928"Wrong checksum", etc., into the dump file. This was causing problems for 5929AcpiXtract. ACPICA BZ 905. 5930 5931iASL: Fix the Linux makefile by removing an inadvertent double file 5932inclusion. 5933ACPICA BZ 913. 5934 5935AcpiExec: Update installation of operation region handlers. Install one 5936handler 5937for a user-defined address space. This is used by the ASL test suite 5938(ASLTS). 5939 5940---------------------------------------- 594111 February 2011. Summary of changes for version 20110211: 5942 59431) ACPI CA Core Subsystem: 5944 5945Added a mechanism to defer _REG methods for some early-installed 5946handlers. 5947Most user handlers should be installed before call to 5948AcpiEnableSubsystem. 5949However, Event handlers and region handlers should be installed after 5950AcpiInitializeObjects. Override handlers for the "default" regions should 5951be 5952installed early, however. This change executes all _REG methods for the 5953default regions (Memory/IO/PCI/DataTable) simultaneously to prevent any 5954chicken/egg issues between them. ACPICA BZ 848. 5955 5956Implemented an optimization for GPE detection. This optimization will 5957simply 5958ignore GPE registers that contain no enabled GPEs -- there is no need to 5959read the register since this information is available internally. This 5960becomes more important on machines with a large GPE space. ACPICA 5961bugzilla 5962884. Lin Ming. Suggestion from Joe Liu. 5963 5964Removed all use of the highly unreliable FADT revision field. The 5965revision 5966number in the FADT has been found to be completely unreliable and cannot 5967be 5968trusted. Only the actual table length can be used to infer the version. 5969This 5970change updates the ACPICA core and the disassembler so that both no 5971longer 5972even look at the FADT version and instead depend solely upon the FADT 5973length. 5974 5975Fix an unresolved name issue for the no-debug and no-error-message source 5976generation cases. The _AcpiModuleName was left undefined in these cases, 5977but 5978it is actually needed as a parameter to some interfaces. Define 5979_AcpiModuleName as a null string in these cases. ACPICA Bugzilla 888. 5980 5981Split several large files (makefiles and project files updated) 5982 utglobal.c -> utdecode.c 5983 dbcomds.c -> dbmethod.c dbnames.c 5984 dsopcode.c -> dsargs.c dscontrol.c 5985 dsload.c -> dsload2.c 5986 aslanalyze.c -> aslbtypes.c aslwalks.c 5987 5988Example Code and Data Size: These are the sizes for the OS-independent 5989acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 5990debug version of the code includes the debug output trace mechanism and 5991has 5992a much larger code and data size. 5993 5994 Previous Release (VC 9.0): 5995 Non-Debug Version: 89.7K Code, 23.7K Data, 113.4K Total 5996 Debug Version: 163.9K Code, 67.5K Data, 231.4K Total 5997 Current Release (VC 9.0): 5998 Non-Debug Version: 89.7K Code, 23.7K Data, 113.4K Total 5999 Debug Version: 163.9K Code, 67.5K Data, 231.4K Total 6000 60012) iASL Compiler/Disassembler and Tools: 6002 6003iASL: Implemented the predefined macros __LINE__, __FILE__, and __DATE__. 6004These are useful C-style macros with the standard definitions. ACPICA 6005bugzilla 898. 6006 6007iASL/DTC: Added support for integer expressions and labels. Support for 6008full 6009expressions for all integer fields in all ACPI tables. Support for labels 6010in 6011"generic" portions of tables such as UEFI. See the iASL reference manual. 6012 6013Debugger: Added a command to display the status of global handlers. The 6014"handlers" command will display op region, fixed event, and miscellaneous 6015global handlers. installation status -- and for op regions, whether 6016default 6017or user-installed handler will be used. 6018 6019iASL: Warn if reserved method incorrectly returns a value. Many 6020predefined 6021names are defined such that they do not return a value. If implemented as 6022a 6023method, issue a warning if such a name explicitly returns a value. ACPICA 6024Bugzilla 855. 6025 6026iASL: Added detection of GPE method name conflicts. Detects a conflict 6027where 6028there are two GPE methods of the form _Lxy and _Exy in the same scope. 6029(For 6030example, _L1D and _E1D in the same scope.) ACPICA bugzilla 848. 6031 6032iASL/DTC: Fixed a couple input scanner issues with comments and line 6033numbers. Comment remover could get confused and miss a comment ending. 6034Fixed 6035a problem with line counter maintenance. 6036 6037iASL/DTC: Reduced the severity of some errors from fatal to error. There 6038is 6039no need to abort on simple errors within a field definition. 6040 6041Debugger: Simplified the output of the help command. All help output now 6042in 6043a single screen, instead of help subcommands. ACPICA Bugzilla 897. 6044 6045---------------------------------------- 604612 January 2011. Summary of changes for version 20110112: 6047 60481) ACPI CA Core Subsystem: 6049 6050Fixed a race condition between method execution and namespace walks that 6051can 6052possibly cause a fault. The problem was apparently introduced in version 605320100528 as a result of a performance optimization that reduces the 6054number 6055of 6056namespace walks upon method exit by using the delete_namespace_subtree 6057function instead of the delete_namespace_by_owner function used 6058previously. 6059Bug is a missing namespace lock in the delete_namespace_subtree function. 6060dana.myers@oracle.com 6061 6062Fixed several issues and a possible fault with the automatic "serialized" 6063method support. History: This support changes a method to "serialized" on 6064the 6065fly if the method generates an AE_ALREADY_EXISTS error, indicating the 6066possibility that it cannot handle reentrancy. This fix repairs a couple 6067of 6068issues seen in the field, especially on machines with many cores: 6069 6070 1) Delete method children only upon the exit of the last thread, 6071 so as to not delete objects out from under other running threads 6072 (and possibly causing a fault.) 6073 2) Set the "serialized" bit for the method only upon the exit of the 6074 Last thread, so as to not cause deadlock when running threads 6075 attempt to exit. 6076 3) Cleanup the use of the AML "MethodFlags" and internal method flags 6077 so that there is no longer any confusion between the two. 6078 6079 Lin Ming, Bob Moore. Reported by dana.myers@oracle.com. 6080 6081Debugger: Now lock the namespace for duration of a namespace dump. 6082Prevents 6083issues if the namespace is changing dynamically underneath the debugger. 6084Especially affects temporary namespace nodes, since the debugger displays 6085these also. 6086 6087Updated the ordering of include files. The ACPICA headers should appear 6088before any compiler-specific headers (stdio.h, etc.) so that acenv.h can 6089set 6090any necessary compiler-specific defines, etc. Affects the ACPI-related 6091tools 6092and utilities. 6093 6094Updated all ACPICA copyrights and signons to 2011. Added the 2011 6095copyright 6096to all module headers and signons, including the Linux header. This 6097affects 6098virtually every file in the ACPICA core subsystem, iASL compiler, and all 6099utilities. 6100 6101Added project files for MS Visual Studio 2008 (VC++ 9.0). The original 6102project files for VC++ 6.0 are now obsolete. New project files can be 6103found 6104under acpica/generate/msvc9. See acpica/generate/msvc9/readme.txt for 6105details. 6106 6107Example Code and Data Size: These are the sizes for the OS-independent 6108acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 6109debug version of the code includes the debug output trace mechanism and 6110has a 6111much larger code and data size. 6112 6113 Previous Release (VC 6.0): 6114 Non-Debug Version: 89.8K Code, 18.9K Data, 108.7K Total 6115 Debug Version: 166.6K Code, 52.1K Data, 218.7K Total 6116 Current Release (VC 9.0): 6117 Non-Debug Version: 89.7K Code, 23.7K Data, 113.4K Total 6118 Debug Version: 163.9K Code, 67.5K Data, 231.4K Total 6119 61202) iASL Compiler/Disassembler and Tools: 6121 6122iASL: Added generic data types to the Data Table compiler. Add "generic" 6123data 6124types such as UINT32, String, Unicode, etc., to simplify the generation 6125of 6126platform-defined tables such as UEFI. Lin Ming. 6127 6128iASL: Added listing support for the Data Table Compiler. Adds listing 6129support 6130(-l) to display actual binary output for each line of input code. 6131 6132---------------------------------------- 613309 December 2010. Summary of changes for version 20101209: 6134 61351) ACPI CA Core Subsystem: 6136 6137Completed the major overhaul of the GPE support code that was begun in 6138July 61392010. Major features include: removal of _PRW execution in ACPICA (host 6140executes _PRWs anyway), cleanup of "wake" GPE interfaces and processing, 6141changes to existing interfaces, simplification of GPE handler operation, 6142and 6143a handful of new interfaces: 6144 6145 AcpiUpdateAllGpes 6146 AcpiFinishGpe 6147 AcpiSetupGpeForWake 6148 AcpiSetGpeWakeMask 6149 One new file, evxfgpe.c to consolidate all external GPE interfaces. 6150 6151See the ACPICA Programmer Reference for full details and programming 6152information. See the new section 4.4 "General Purpose Event (GPE) 6153Support" 6154for a full overview, and section 8.7 "ACPI General Purpose Event 6155Management" 6156for programming details. ACPICA BZ 858,870,877. Matthew Garrett, Lin 6157Ming, 6158Bob Moore, Rafael Wysocki. 6159 6160Implemented a new GPE feature for Windows compatibility, the "Implicit 6161Wake 6162GPE Notify". This feature will automatically issue a Notify(2) on a 6163device 6164when a Wake GPE is received if there is no corresponding GPE method or 6165handler. ACPICA BZ 870. 6166 6167Fixed a problem with the Scope() operator during table parse and load 6168phase. 6169During load phase (table load or method execution), the scope operator 6170should 6171not enter the target into the namespace. Instead, it should open a new 6172scope 6173at the target location. Linux BZ 19462, ACPICA BZ 882. 6174 6175Example Code and Data Size: These are the sizes for the OS-independent 6176acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 6177debug version of the code includes the debug output trace mechanism and 6178has a 6179much larger code and data size. 6180 6181 Previous Release: 6182 Non-Debug Version: 89.8K Code, 18.9K Data, 108.7K Total 6183 Debug Version: 166.6K Code, 52.1K Data, 218.7K Total 6184 Current Release: 6185 Non-Debug Version: 89.9K Code, 19.0K Data, 108.9K Total 6186 Debug Version: 166.3K Code, 52.1K Data, 218.4K Total 6187 61882) iASL Compiler/Disassembler and Tools: 6189 6190iASL: Relax the alphanumeric restriction on _CID strings. These strings 6191are 6192"bus-specific" per the ACPI specification, and therefore any characters 6193are 6194acceptable. The only checks that can be performed are for a null string 6195and 6196perhaps for a leading asterisk. ACPICA BZ 886. 6197 6198iASL: Fixed a problem where a syntax error that caused a premature EOF 6199condition on the source file emitted a very confusing error message. The 6200premature EOF is now detected correctly. ACPICA BZ 891. 6201 6202Disassembler: Decode the AccessSize within a Generic Address Structure 6203(byte 6204access, word access, etc.) Note, this field does not allow arbitrary bit 6205access, the size is encoded as 1=byte, 2=word, 3=dword, and 4=qword. 6206 6207New: AcpiNames utility - Example namespace dump utility. Shows an example 6208of 6209ACPICA configuration for a minimal namespace dump utility. Uses table and 6210namespace managers, but no AML interpreter. Does not add any 6211functionality 6212over AcpiExec, it is a subset of AcpiExec. The purpose is to show how to 6213partition and configure ACPICA. ACPICA BZ 883. 6214 6215AML Debugger: Increased the debugger buffer size for method return 6216objects. 6217Was 4K, increased to 16K. Also enhanced error messages for debugger 6218method 6219execution, including the buffer overflow case. 6220 6221---------------------------------------- 622213 October 2010. Summary of changes for version 20101013: 6223 62241) ACPI CA Core Subsystem: 6225 6226Added support to clear the PCIEXP_WAKE event. When clearing ACPI events, 6227now 6228clear the PCIEXP_WAKE_STS bit in the ACPI PM1 Status Register, via 6229HwClearAcpiStatus. Original change from Colin King. ACPICA BZ 880. 6230 6231Changed the type of the predefined namespace object _TZ from ThermalZone 6232to 6233Device. This was found to be confusing to the host software that 6234processes 6235the various thermal zones, since _TZ is not really a ThermalZone. 6236However, 6237a 6238Notify() can still be performed on it. ACPICA BZ 876. Suggestion from Rui 6239Zhang. 6240 6241Added Windows Vista SP2 to the list of supported _OSI strings. The actual 6242string is "Windows 2006 SP2". 6243 6244Eliminated duplicate code in AcpiUtExecute* functions. Now that the 6245nsrepair 6246code automatically repairs _HID-related strings, this type of code is no 6247longer needed in Execute_HID, Execute_CID, and Execute_UID. ACPICA BZ 6248878. 6249 6250Example Code and Data Size: These are the sizes for the OS-independent 6251acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 6252debug version of the code includes the debug output trace mechanism and 6253has a 6254much larger code and data size. 6255 6256 Previous Release: 6257 Non-Debug Version: 89.9K Code, 19.0K Data, 108.9K Total 6258 Debug Version: 166.3K Code, 52.1K Data, 218.4K Total 6259 Current Release: 6260 Non-Debug Version: 89.9K Code, 19.0K Data, 108.9K Total 6261 Debug Version: 166.3K Code, 52.1K Data, 218.4K Total 6262 62632) iASL Compiler/Disassembler and Tools: 6264 6265iASL: Implemented additional compile-time validation for _HID strings. 6266The 6267non-hex prefix (such as "PNP" or "ACPI") must be uppercase, and the 6268length 6269of 6270the string must be exactly seven or eight characters. For both _HID and 6271_CID 6272strings, all characters must be alphanumeric. ACPICA BZ 874. 6273 6274iASL: Allow certain "null" resource descriptors. Some BIOS code creates 6275descriptors that are mostly or all zeros, with the expectation that they 6276will 6277be filled in at runtime. iASL now allows this as long as there is a 6278"resource 6279tag" (name) associated with the descriptor, which gives the ASL a handle 6280needed to modify the descriptor. ACPICA BZ 873. 6281 6282Added single-thread support to the generic Unix application OSL. 6283Primarily 6284for iASL support, this change removes the use of semaphores in the 6285single- 6286threaded ACPICA tools/applications - increasing performance. The 6287_MULTI_THREADED option was replaced by the (reverse) ACPI_SINGLE_THREADED 6288option. ACPICA BZ 879. 6289 6290AcpiExec: several fixes for the 64-bit version. Adds XSDT support and 6291support 6292for 64-bit DSDT/FACS addresses in the FADT. Lin Ming. 6293 6294iASL: Moved all compiler messages to a new file, aslmessages.h. 6295 6296---------------------------------------- 629715 September 2010. Summary of changes for version 20100915: 6298 62991) ACPI CA Core Subsystem: 6300 6301Removed the AcpiOsDerivePciId OSL interface. The various host 6302implementations 6303of this function were not OS-dependent and are now obsolete and can be 6304removed from all host OSLs. This function has been replaced by 6305AcpiHwDerivePciId, which is now part of the ACPICA core code. 6306AcpiHwDerivePciId has been implemented without recursion. Adds one new 6307module, hwpci.c. ACPICA BZ 857. 6308 6309Implemented a dynamic repair for _HID and _CID strings. The following 6310problems are now repaired at runtime: 1) Remove a leading asterisk in the 6311string, and 2) the entire string is uppercased. Both repairs are in 6312accordance with the ACPI specification and will simplify host driver 6313code. 6314ACPICA BZ 871. 6315 6316The ACPI_THREAD_ID type is no longer configurable, internally it is now 6317always UINT64. This simplifies the ACPICA code, especially any printf 6318output. 6319UINT64 is the only common data type for all thread_id types across all 6320operating systems. It is now up to the host OSL to cast the native 6321thread_id 6322type to UINT64 before returning the value to ACPICA (via 6323AcpiOsGetThreadId). 6324Lin Ming, Bob Moore. 6325 6326Added the ACPI_INLINE type to enhance the ACPICA configuration. The 6327"inline" 6328keyword is not standard across compilers, and this type allows inline to 6329be 6330configured on a per-compiler basis. Lin Ming. 6331 6332Made the system global AcpiGbl_SystemAwakeAndRunning publically 6333available. 6334Added an extern for this boolean in acpixf.h. Some hosts utilize this 6335value 6336during suspend/restore operations. ACPICA BZ 869. 6337 6338All code that implements error/warning messages with the "ACPI:" prefix 6339has 6340been moved to a new module, utxferror.c. 6341 6342The UINT64_OVERLAY was moved to utmath.c, which is the only module where 6343it 6344is used. ACPICA BZ 829. Lin Ming, Bob Moore. 6345 6346Example Code and Data Size: These are the sizes for the OS-independent 6347acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 6348debug version of the code includes the debug output trace mechanism and 6349has a 6350much larger code and data size. 6351 6352 Previous Release: 6353 Non-Debug Version: 89.1K Code, 19.0K Data, 108.1K Total 6354 Debug Version: 165.1K Code, 51.9K Data, 217.0K Total 6355 Current Release: 6356 Non-Debug Version: 89.9K Code, 19.0K Data, 108.9K Total 6357 Debug Version: 166.3K Code, 52.1K Data, 218.4K Total 6358 63592) iASL Compiler/Disassembler and Tools: 6360 6361iASL/Disassembler: Write ACPI errors to stderr instead of the output 6362file. 6363This keeps the output files free of random error messages that may 6364originate 6365from within the namespace/interpreter code. Used this opportunity to 6366merge 6367all ACPI:-style messages into a single new module, utxferror.c. ACPICA BZ 6368866. Lin Ming, Bob Moore. 6369 6370Tools: update some printfs for ansi warnings on size_t. Handle width 6371change 6372of size_t on 32-bit versus 64-bit generations. Lin Ming. 6373 6374---------------------------------------- 637506 August 2010. Summary of changes for version 20100806: 6376 63771) ACPI CA Core Subsystem: 6378 6379Designed and implemented a new host interface to the _OSI support code. 6380This 6381will allow the host to dynamically add or remove multiple _OSI strings, 6382as 6383well as install an optional handler that is called for each _OSI 6384invocation. 6385Also added a new AML debugger command, 'osi' to display and modify the 6386global 6387_OSI string table, and test support in the AcpiExec utility. See the 6388ACPICA 6389reference manual for full details. Lin Ming, Bob Moore. ACPICA BZ 836. 6390New Functions: 6391 AcpiInstallInterface - Add an _OSI string. 6392 AcpiRemoveInterface - Delete an _OSI string. 6393 AcpiInstallInterfaceHandler - Install optional _OSI handler. 6394Obsolete Functions: 6395 AcpiOsValidateInterface - no longer used. 6396New Files: 6397 source/components/utilities/utosi.c 6398 6399Re-introduced the support to enable multi-byte transfers for Embedded 6400Controller (EC) operation regions. A reported problem was found to be a 6401bug 6402in the host OS, not in the multi-byte support. Previously, the maximum 6403data 6404size passed to the EC operation region handler was a single byte. There 6405are 6406often EC Fields larger than one byte that need to be transferred, and it 6407is 6408useful for the EC driver to lock these as a single transaction. This 6409change 6410enables single transfers larger than 8 bits. This effectively changes the 6411access to the EC space from ByteAcc to AnyAcc, and will probably require 6412changes to the host OS Embedded Controller driver to enable 16/32/64/256- 6413bit 6414transfers in addition to 8-bit transfers. Alexey Starikovskiy, Lin Ming. 6415 6416Fixed a problem with the prototype for AcpiOsReadPciConfiguration. The 6417prototype in acpiosxf.h had the output value pointer as a (void *). 6418It should be a (UINT64 *). This may affect some host OSL code. 6419 6420Fixed a couple problems with the recently modified Linux makefiles for 6421iASL 6422and AcpiExec. These new makefiles place the generated object files in the 6423local directory so that there can be no collisions between the files that 6424are 6425shared between them that are compiled with different options. 6426 6427Example Code and Data Size: These are the sizes for the OS-independent 6428acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 6429debug version of the code includes the debug output trace mechanism and 6430has a 6431much larger code and data size. 6432 6433 Previous Release: 6434 Non-Debug Version: 88.3K Code, 18.8K Data, 107.1K Total 6435 Debug Version: 164.0K Code, 51.5K Data, 215.5K Total 6436 Current Release: 6437 Non-Debug Version: 89.1K Code, 19.0K Data, 108.1K Total 6438 Debug Version: 165.1K Code, 51.9K Data, 217.0K Total 6439 64402) iASL Compiler/Disassembler and Tools: 6441 6442iASL/Disassembler: Added a new option (-da, "disassemble all") to load 6443the 6444namespace from and disassemble an entire group of AML files. Useful for 6445loading all of the AML tables for a given machine (DSDT, SSDT1...SSDTn) 6446and 6447disassembling with one simple command. ACPICA BZ 865. Lin Ming. 6448 6449iASL: Allow multiple invocations of -e option. This change allows 6450multiple 6451uses of -e on the command line: "-e ssdt1.dat -e ssdt2.dat". ACPICA BZ 6452834. 6453Lin Ming. 6454 6455---------------------------------------- 645602 July 2010. Summary of changes for version 20100702: 6457 64581) ACPI CA Core Subsystem: 6459 6460Implemented several updates to the recently added GPE reference count 6461support. The model for "wake" GPEs is changing to give the host OS 6462complete 6463control of these GPEs. Eventually, the ACPICA core will not execute any 6464_PRW 6465methods, since the host already must execute them. Also, additional 6466changes 6467were made to help ensure that the reference counts are kept in proper 6468synchronization with reality. Rafael J. Wysocki. 6469 64701) Ensure that GPEs are not enabled twice during initialization. 64712) Ensure that GPE enable masks stay in sync with the reference count. 64723) Do not inadvertently enable GPEs when writing GPE registers. 64734) Remove the internal wake reference counter and add new AcpiGpeWakeup 6474interface. This interface will set or clear individual GPEs for wakeup. 64755) Remove GpeType argument from AcpiEnable and AcpiDisable. These 6476interfaces 6477are now used for "runtime" GPEs only. 6478 6479Changed the behavior of the GPE install/remove handler interfaces. The 6480GPE 6481is 6482no longer disabled during this process, as it was found to cause problems 6483on 6484some machines. Rafael J. Wysocki. 6485 6486Reverted a change introduced in version 20100528 to enable Embedded 6487Controller multi-byte transfers. This change was found to cause problems 6488with 6489Index Fields and possibly Bank Fields. It will be reintroduced when these 6490problems have been resolved. 6491 6492Fixed a problem with references to Alias objects within Package Objects. 6493A 6494reference to an Alias within the definition of a Package was not always 6495resolved properly. Aliases to objects like Processors, Thermal zones, 6496etc. 6497were resolved to the actual object instead of a reference to the object 6498as 6499it 6500should be. Package objects are only allowed to contain integer, string, 6501buffer, package, and reference objects. Redhat bugzilla 608648. 6502 6503Example Code and Data Size: These are the sizes for the OS-independent 6504acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 6505debug version of the code includes the debug output trace mechanism and 6506has a 6507much larger code and data size. 6508 6509 Previous Release: 6510 Non-Debug Version: 88.3K Code, 18.8K Data, 107.1K Total 6511 Debug Version: 164.1K Code, 51.5K Data, 215.6K Total 6512 Current Release: 6513 Non-Debug Version: 88.3K Code, 18.8K Data, 107.1K Total 6514 Debug Version: 164.0K Code, 51.5K Data, 215.5K Total 6515 65162) iASL Compiler/Disassembler and Tools: 6517 6518iASL: Implemented a new compiler subsystem to allow definition and 6519compilation of the non-AML ACPI tables such as FADT, MADT, SRAT, etc. 6520These 6521are called "ACPI Data Tables", and the new compiler is the "Data Table 6522Compiler". This compiler is intended to simplify the existing error-prone 6523process of creating these tables for the BIOS, as well as allowing the 6524disassembly, modification, recompilation, and override of existing ACPI 6525data 6526tables. See the iASL User Guide for detailed information. 6527 6528iASL: Implemented a new Template Generator option in support of the new 6529Data 6530Table Compiler. This option will create examples of all known ACPI tables 6531that can be used as the basis for table development. See the iASL 6532documentation and the -T option. 6533 6534Disassembler and headers: Added support for the WDDT ACPI table (Watchdog 6535Descriptor Table). 6536 6537Updated the Linux makefiles for iASL and AcpiExec to place the generated 6538object files in the local directory so that there can be no collisions 6539between the shared files between them that are generated with different 6540options. 6541 6542Added support for Mac OS X in the Unix OSL used for iASL and AcpiExec. 6543Use 6544the #define __APPLE__ to enable this support. 6545 6546---------------------------------------- 654728 May 2010. Summary of changes for version 20100528: 6548 6549Note: The ACPI 4.0a specification was released on April 5, 2010 and is 6550available at www.acpi.info. This is primarily an errata release. 6551 65521) ACPI CA Core Subsystem: 6553 6554Undefined ACPI tables: We are looking for the definitions for the 6555following 6556ACPI tables that have been seen in the field: ATKG, IEIT, GSCI. 6557 6558Implemented support to enable multi-byte transfers for Embedded 6559Controller 6560(EC) operation regions. Previously, the maximum data size passed to the 6561EC 6562operation region handler was a single byte. There are often EC Fields 6563larger 6564than one byte that need to be transferred, and it is useful for the EC 6565driver 6566to lock these as a single transaction. This change enables single 6567transfers 6568larger than 8 bits. This effectively changes the access to the EC space 6569from 6570ByteAcc to AnyAcc, and will probably require changes to the host OS 6571Embedded 6572Controller driver to enable 16/32/64/256-bit transfers in addition to 8- 6573bit 6574transfers. Alexey Starikovskiy, Lin Ming 6575 6576Implemented a performance enhancement for namespace search and access. 6577This 6578change enhances the performance of namespace searches and walks by adding 6579a 6580backpointer to the parent in each namespace node. On large namespaces, 6581this 6582change can improve overall ACPI performance by up to 9X. Adding a pointer 6583to 6584each namespace node increases the overall size of the internal namespace 6585by 6586about 5%, since each namespace entry usually consists of both a namespace 6587node and an ACPI operand object. However, this is the first growth of the 6588namespace in ten years. ACPICA bugzilla 817. Alexey Starikovskiy. 6589 6590Implemented a performance optimization that reduces the number of 6591namespace 6592walks. On control method exit, only walk the namespace if the method is 6593known 6594to have created namespace objects outside of its local scope. Previously, 6595the 6596entire namespace was traversed on each control method exit. This change 6597can 6598improve overall ACPI performance by up to 3X. Alexey Starikovskiy, Bob 6599Moore. 6600 6601Added support to truncate I/O addresses to 16 bits for Windows 6602compatibility. 6603Some ASL code has been seen in the field that inadvertently has bits set 6604above bit 15. This feature is optional and is enabled if the BIOS 6605requests 6606any Windows OSI strings. It can also be enabled by the host OS. Matthew 6607Garrett, Bob Moore. 6608 6609Added support to limit the maximum time for the ASL Sleep() operator. To 6610prevent accidental deep sleeps, limit the maximum time that Sleep() will 6611actually sleep. Configurable, the default maximum is two seconds. ACPICA 6612bugzilla 854. 6613 6614Added run-time validation support for the _WDG and_WED Microsoft 6615predefined 6616methods. These objects are defined by "Windows Instrumentation", and are 6617not 6618part of the ACPI spec. ACPICA BZ 860. 6619 6620Expanded all statistic counters used during namespace and device 6621initialization from 16 to 32 bits in order to support very large 6622namespaces. 6623 6624Replaced all instances of %d in printf format specifiers with %u since 6625nearly 6626all integers in ACPICA are unsigned. 6627 6628Fixed the exception namestring for AE_WAKE_ONLY_GPE. Was incorrectly 6629returned 6630as AE_NO_HANDLER. 6631 6632Example Code and Data Size: These are the sizes for the OS-independent 6633acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 6634debug version of the code includes the debug output trace mechanism and 6635has a 6636much larger code and data size. 6637 6638 Previous Release: 6639 Non-Debug Version: 88.4K Code, 18.8K Data, 107.2K Total 6640 Debug Version: 164.2K Code, 51.5K Data, 215.7K Total 6641 Current Release: 6642 Non-Debug Version: 88.3K Code, 18.8K Data, 107.1K Total 6643 Debug Version: 164.1K Code, 51.5K Data, 215.6K Total 6644 66452) iASL Compiler/Disassembler and Tools: 6646 6647iASL: Added compiler support for the _WDG and_WED Microsoft predefined 6648methods. These objects are defined by "Windows Instrumentation", and are 6649not 6650part of the ACPI spec. ACPICA BZ 860. 6651 6652AcpiExec: added option to disable the memory tracking mechanism. The -dt 6653option will disable the tracking mechanism, which improves performance 6654considerably. 6655 6656AcpiExec: Restructured the command line options into -d (disable) and -e 6657(enable) options. 6658 6659---------------------------------------- 666028 April 2010. Summary of changes for version 20100428: 6661 66621) ACPI CA Core Subsystem: 6663 6664Implemented GPE support for dynamically loaded ACPI tables. For all GPEs, 6665including FADT-based and GPE Block Devices, execute any _PRW methods in 6666the 6667new table, and process any _Lxx/_Exx GPE methods in the new table. Any 6668runtime GPE that is referenced by an _Lxx/_Exx method in the new table is 6669immediately enabled. Handles the FADT-defined GPEs as well as GPE Block 6670Devices. Provides compatibility with other ACPI implementations. Two new 6671files added, evgpeinit.c and evgpeutil.c. ACPICA BZ 833. Lin Ming, Bob 6672Moore. 6673 6674Fixed a regression introduced in version 20100331 within the table 6675manager 6676where initial table loading could fail. This was introduced in the fix 6677for 6678AcpiReallocateRootTable. Also, renamed some of fields in the table 6679manager 6680data structures to clarify their meaning and use. 6681 6682Fixed a possible allocation overrun during internal object copy in 6683AcpiUtCopySimpleObject. The original code did not correctly handle the 6684case 6685where the object to be copied was a namespace node. Lin Ming. ACPICA BZ 6686847. 6687 6688Updated the allocation dump routine, AcpiUtDumpAllocation and fixed a 6689possible access beyond end-of-allocation. Also, now fully validate 6690descriptor 6691(size and type) before output. Lin Ming, Bob Moore. ACPICA BZ 847 6692 6693Example Code and Data Size: These are the sizes for the OS-independent 6694acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 6695debug version of the code includes the debug output trace mechanism and 6696has a 6697much larger code and data size. 6698 6699 Previous Release: 6700 Non-Debug Version: 87.9K Code, 18.6K Data, 106.5K Total 6701 Debug Version: 163.5K Code, 51.3K Data, 214.8K Total 6702 Current Release: 6703 Non-Debug Version: 88.4K Code, 18.8K Data, 107.2K Total 6704 Debug Version: 164.2K Code, 51.5K Data, 215.7K Total 6705 67062) iASL Compiler/Disassembler and Tools: 6707 6708iASL: Implemented Min/Max/Len/Gran validation for address resource 6709descriptors. This change implements validation for the address fields 6710that 6711are common to all address-type resource descriptors. These checks are 6712implemented: Checks for valid Min/Max, length within the Min/Max window, 6713valid granularity, Min/Max a multiple of granularity, and _MIF/_MAF as 6714per 6715table 6-40 in the ACPI 4.0a specification. Also split the large 6716aslrestype1.c 6717and aslrestype2.c files into five new files. ACPICA BZ 840. 6718 6719iASL: Added support for the _Wxx predefined names. This support was 6720missing 6721and these names were not recognized by the compiler as valid predefined 6722names. ACPICA BZ 851. 6723 6724iASL: Added an error for all predefined names that are defined to return 6725no 6726value and thus must be implemented as Control Methods. These include all 6727of 6728the _Lxx, _Exx, _Wxx, and _Qxx names, as well as some other miscellaneous 6729names such as _DIS, _INI, _IRC, _OFF, _ON, and _PSx. ACPICA BZ 850, 856. 6730 6731iASL: Implemented the -ts option to emit hex AML data in ASL format, as 6732an 6733ASL Buffer. Allows ACPI tables to be easily included within ASL files, to 6734be 6735dynamically loaded via the Load() operator. Also cleaned up output for 6736the 6737- 6738ta and -tc options. ACPICA BZ 853. 6739 6740Tests: Added a new file with examples of extended iASL error checking. 6741Demonstrates the advanced error checking ability of the iASL compiler. 6742Available at tests/misc/badcode.asl. 6743 6744---------------------------------------- 674531 March 2010. Summary of changes for version 20100331: 6746 67471) ACPI CA Core Subsystem: 6748 6749Completed a major update for the GPE support in order to improve support 6750for 6751shared GPEs and to simplify both host OS and ACPICA code. Added a 6752reference 6753count mechanism to support shared GPEs that require multiple device 6754drivers. 6755Several external interfaces have changed. One external interface has been 6756removed. One new external interface was added. Most of the GPE external 6757interfaces now use the GPE spinlock instead of the events mutex (and the 6758Flags parameter for many GPE interfaces has been removed.) See the 6759updated 6760ACPICA Programmer Reference for details. Matthew Garrett, Bob Moore, 6761Rafael 6762Wysocki. ACPICA BZ 831. 6763 6764Changed: 6765 AcpiEnableGpe, AcpiDisableGpe, AcpiClearGpe, AcpiGetGpeStatus 6766Removed: 6767 AcpiSetGpeType 6768New: 6769 AcpiSetGpe 6770 6771Implemented write support for DataTable operation regions. These regions 6772are 6773defined via the DataTableRegion() operator. Previously, only read support 6774was 6775implemented. The ACPI specification allows DataTableRegions to be 6776read/write, 6777however. 6778 6779Implemented a new subsystem option to force a copy of the DSDT to local 6780memory. Optionally copy the entire DSDT to local memory (instead of 6781simply 6782mapping it.) There are some (albeit very rare) BIOSs that corrupt or 6783replace 6784the original DSDT, creating the need for this option. Default is FALSE, 6785do 6786not copy the DSDT. 6787 6788Implemented detection of a corrupted or replaced DSDT. This change adds 6789support to detect a DSDT that has been corrupted and/or replaced from 6790outside 6791the OS (by firmware). This is typically catastrophic for the system, but 6792has 6793been seen on some machines. Once this problem has been detected, the DSDT 6794copy option can be enabled via system configuration. Lin Ming, Bob Moore. 6795 6796Fixed two problems with AcpiReallocateRootTable during the root table 6797copy. 6798When copying the root table to the new allocation, the length used was 6799incorrect. The new size was used instead of the current table size, 6800meaning 6801too much data was copied. Also, the count of available slots for ACPI 6802tables 6803was not set correctly. Alexey Starikovskiy, Bob Moore. 6804 6805Example Code and Data Size: These are the sizes for the OS-independent 6806acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 6807debug version of the code includes the debug output trace mechanism and 6808has a 6809much larger code and data size. 6810 6811 Previous Release: 6812 Non-Debug Version: 87.5K Code, 18.4K Data, 105.9K Total 6813 Debug Version: 163.4K Code, 51.1K Data, 214.5K Total 6814 Current Release: 6815 Non-Debug Version: 87.9K Code, 18.6K Data, 106.5K Total 6816 Debug Version: 163.5K Code, 51.3K Data, 214.8K Total 6817 68182) iASL Compiler/Disassembler and Tools: 6819 6820iASL: Implement limited typechecking for values returned from predefined 6821control methods. The type of any returned static (unnamed) object is now 6822validated. For example, Return(1). ACPICA BZ 786. 6823 6824iASL: Fixed a predefined name object verification regression. Fixes a 6825problem 6826introduced in version 20100304. An error is incorrectly generated if a 6827predefined name is declared as a static named object with a value defined 6828using the keywords "Zero", "One", or "Ones". Lin Ming. 6829 6830iASL: Added Windows 7 support for the -g option (get local ACPI tables) 6831by 6832reducing the requested registry access rights. ACPICA BZ 842. 6833 6834Disassembler: fixed a possible fault when generating External() 6835statements. 6836Introduced in commit ae7d6fd: Properly handle externals with parent- 6837prefix 6838(carat). Fixes a string length allocation calculation. Lin Ming. 6839 6840---------------------------------------- 684104 March 2010. Summary of changes for version 20100304: 6842 68431) ACPI CA Core Subsystem: 6844 6845Fixed a possible problem with the AML Mutex handling function 6846AcpiExReleaseMutex where the function could fault under the very rare 6847condition when the interpreter has blocked, the interpreter lock is 6848released, 6849the interpreter is then reentered via the same thread, and attempts to 6850acquire an AML mutex that was previously acquired. FreeBSD report 140979. 6851Lin 6852Ming. 6853 6854Implemented additional configuration support for the AML "Debug Object". 6855Output from the debug object can now be enabled via a global variable, 6856AcpiGbl_EnableAmlDebugObject. This will assist with remote machine 6857debugging. 6858This debug output is now available in the release version of ACPICA 6859instead 6860of just the debug version. Also, the entire debug output module can now 6861be 6862configured out of the ACPICA build if desired. One new file added, 6863executer/exdebug.c. Lin Ming, Bob Moore. 6864 6865Added header support for the ACPI MCHI table (Management Controller Host 6866Interface Table). This table was added in ACPI 4.0, but the defining 6867document 6868has only recently become available. 6869 6870Standardized output of integer values for ACPICA warnings/errors. Always 6871use 68720x prefix for hex output, always use %u for unsigned integer decimal 6873output. 6874Affects ACPI_INFO, ACPI_ERROR, ACPI_EXCEPTION, and ACPI_WARNING (about 6875400 6876invocations.) These invocations were converted from the original 6877ACPI_DEBUG_PRINT invocations and were not consistent. ACPICA BZ 835. 6878 6879Example Code and Data Size: These are the sizes for the OS-independent 6880acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 6881debug version of the code includes the debug output trace mechanism and 6882has a 6883much larger code and data size. 6884 6885 Previous Release: 6886 Non-Debug Version: 87.1K Code, 18.0K Data, 105.1K Total 6887 Debug Version: 163.5K Code, 50.9K Data, 214.4K Total 6888 Current Release: 6889 Non-Debug Version: 87.5K Code, 18.4K Data, 105.9K Total 6890 Debug Version: 163.4K Code, 51.1K Data, 214.5K Total 6891 68922) iASL Compiler/Disassembler and Tools: 6893 6894iASL: Implemented typechecking support for static (non-control method) 6895predefined named objects that are declared with the Name() operator. For 6896example, the type of this object is now validated to be of type Integer: 6897Name(_BBN, 1). This change migrates the compiler to using the core 6898predefined 6899name table instead of maintaining a local version. Added a new file, 6900aslpredef.c. ACPICA BZ 832. 6901 6902Disassembler: Added support for the ACPI 4.0 MCHI table. 6903 6904---------------------------------------- 690521 January 2010. Summary of changes for version 20100121: 6906 69071) ACPI CA Core Subsystem: 6908 6909Added the 2010 copyright to all module headers and signons. This affects 6910virtually every file in the ACPICA core subsystem, the iASL compiler, the 6911tools/utilities, and the test suites. 6912 6913Implemented a change to the AcpiGetDevices interface to eliminate 6914unnecessary 6915invocations of the _STA method. In the case where a specific _HID is 6916requested, do not run _STA until a _HID match is found. This eliminates 6917potentially dozens of _STA calls during a search for a particular 6918device/HID, 6919which in turn can improve boot times. ACPICA BZ 828. Lin Ming. 6920 6921Implemented an additional repair for predefined method return values. 6922Attempt 6923to repair unexpected NULL elements within returned Package objects. 6924Create 6925an 6926Integer of value zero, a NULL String, or a zero-length Buffer as 6927appropriate. 6928ACPICA BZ 818. Lin Ming, Bob Moore. 6929 6930Removed the obsolete ACPI_INTEGER data type. This type was introduced as 6931the 6932code was migrated from ACPI 1.0 (with 32-bit AML integers) to ACPI 2.0 6933(with 693464-bit AML integers). It is now obsolete and this change removes it from 6935the 6936ACPICA code base, replaced by UINT64. The original typedef has been 6937retained 6938for now for compatibility with existing device driver code. ACPICA BZ 6939824. 6940 6941Removed the unused UINT32_STRUCT type, and the obsolete Integer64 field 6942in 6943the parse tree object. 6944 6945Added additional warning options for the gcc-4 generation. Updated the 6946source 6947accordingly. This includes some code restructuring to eliminate 6948unreachable 6949code, elimination of some gotos, elimination of unused return values, 6950some 6951additional casting, and removal of redundant declarations. 6952 6953Example Code and Data Size: These are the sizes for the OS-independent 6954acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 6955debug version of the code includes the debug output trace mechanism and 6956has a 6957much larger code and data size. 6958 6959 Previous Release: 6960 Non-Debug Version: 87.0K Code, 18.0K Data, 105.0K Total 6961 Debug Version: 163.4K Code, 50.8K Data, 214.2K Total 6962 Current Release: 6963 Non-Debug Version: 87.1K Code, 18.0K Data, 105.1K Total 6964 Debug Version: 163.5K Code, 50.9K Data, 214.4K Total 6965 69662) iASL Compiler/Disassembler and Tools: 6967 6968No functional changes for this release. 6969 6970---------------------------------------- 697114 December 2009. Summary of changes for version 20091214: 6972 69731) ACPI CA Core Subsystem: 6974 6975Enhanced automatic data type conversions for predefined name repairs. 6976This 6977change expands the automatic repairs/conversions for predefined name 6978return 6979values to make Integers, Strings, and Buffers fully interchangeable. 6980Also, 6981a 6982Buffer can be converted to a Package of Integers if necessary. The 6983nsrepair.c 6984module was completely restructured. Lin Ming, Bob Moore. 6985 6986Implemented automatic removal of null package elements during predefined 6987name 6988repairs. This change will automatically remove embedded and trailing NULL 6989package elements from returned package objects that are defined to 6990contain 6991a 6992variable number of sub-packages. The driver is then presented with a 6993package 6994with no null elements to deal with. ACPICA BZ 819. 6995 6996Implemented a repair for the predefined _FDE and _GTM names. The expected 6997return value for both names is a Buffer of 5 DWORDs. This repair fixes 6998two 6999possible problems (both seen in the field), where a package of integers 7000is 7001returned, or a buffer of BYTEs is returned. With assistance from Jung-uk 7002Kim. 7003 7004Implemented additional module-level code support. This change will 7005properly 7006execute module-level code that is not at the root of the namespace (under 7007a 7008Device object, etc.). Now executes the code within the current scope 7009instead 7010of the root. ACPICA BZ 762. Lin Ming. 7011 7012Fixed possible mutex acquisition errors when running _REG methods. Fixes 7013a 7014problem where mutex errors can occur when running a _REG method that is 7015in 7016the same scope as a method-defined operation region or an operation 7017region 7018under a module-level IF block. This type of code is rare, so the problem 7019has 7020not been seen before. ACPICA BZ 826. Lin Ming, Bob Moore. 7021 7022Fixed a possible memory leak during module-level code execution. An 7023object 7024could be leaked for each block of executed module-level code if the 7025interpreter slack mode is enabled This change deletes any implicitly 7026returned 7027object from the module-level code block. Lin Ming. 7028 7029Removed messages for successful predefined repair(s). The repair 7030mechanism 7031was considered too wordy. Now, messages are only unconditionally emitted 7032if 7033the return object cannot be repaired. Existing messages for successful 7034repairs were converted to ACPI_DEBUG_PRINT messages for now. ACPICA BZ 7035827. 7036 7037Example Code and Data Size: These are the sizes for the OS-independent 7038acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 7039debug version of the code includes the debug output trace mechanism and 7040has a 7041much larger code and data size. 7042 7043 Previous Release: 7044 Non-Debug Version: 86.6K Code, 18.2K Data, 104.8K Total 7045 Debug Version: 162.7K Code, 50.8K Data, 213.5K Total 7046 Current Release: 7047 Non-Debug Version: 87.0K Code, 18.0K Data, 105.0K Total 7048 Debug Version: 163.4K Code, 50.8K Data, 214.2K Total 7049 70502) iASL Compiler/Disassembler and Tools: 7051 7052iASL: Fixed a regression introduced in 20091112 where intermediate .SRC 7053files 7054were no longer automatically removed at the termination of the compile. 7055 7056acpiexec: Implemented the -f option to specify default region fill value. 7057This option specifies the value used to initialize buffers that simulate 7058operation regions. Default value is zero. Useful for debugging problems 7059that 7060depend on a specific initial value for a region or field. 7061 7062---------------------------------------- 706312 November 2009. Summary of changes for version 20091112: 7064 70651) ACPI CA Core Subsystem: 7066 7067Implemented a post-order callback to AcpiWalkNamespace. The existing 7068interface only has a pre-order callback. This change adds an additional 7069parameter for a post-order callback which will be more useful for bus 7070scans. 7071ACPICA BZ 779. Lin Ming. Updated the ACPICA Programmer Reference. 7072 7073Modified the behavior of the operation region memory mapping cache for 7074SystemMemory. Ensure that the memory mappings created for operation 7075regions 7076do not cross 4K page boundaries. Crossing a page boundary while mapping 7077regions can cause kernel warnings on some hosts if the pages have 7078different 7079attributes. Such regions are probably BIOS bugs, and this is the 7080workaround. 7081Linux BZ 14445. Lin Ming. 7082 7083Implemented an automatic repair for predefined methods that must return 7084sorted lists. This change will repair (by sorting) packages returned by 7085_ALR, 7086_PSS, and _TSS. Drivers can now assume that the packages are correctly 7087sorted 7088and do not contain NULL package elements. Adds one new file, 7089namespace/nsrepair2.c. ACPICA BZ 784. Lin Ming, Bob Moore. 7090 7091Fixed a possible fault during predefined name validation if a return 7092Package 7093object contains NULL elements. Also adds a warning if a NULL element is 7094followed by any non-null elements. ACPICA BZ 813, 814. Future enhancement 7095may 7096include repair or removal of all such NULL elements where possible. 7097 7098Implemented additional module-level executable AML code support. This 7099change 7100will execute module-level code that is not at the root of the namespace 7101(under a Device object, etc.) at table load time. Module-level executable 7102AML 7103code has been illegal since ACPI 2.0. ACPICA BZ 762. Lin Ming. 7104 7105Implemented a new internal function to create Integer objects. This 7106function 7107simplifies miscellaneous object creation code. ACPICA BZ 823. 7108 7109Reduced the severity of predefined repair messages, Warning to Info. 7110Since 7111the object was successfully repaired, a warning is too severe. Reduced to 7112an 7113info message for now. These messages may eventually be changed to debug- 7114only. 7115ACPICA BZ 812. 7116 7117Example Code and Data Size: These are the sizes for the OS-independent 7118acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 7119debug version of the code includes the debug output trace mechanism and 7120has a 7121much larger code and data size. 7122 7123 Previous Release: 7124 Non-Debug Version: 85.8K Code, 18.0K Data, 103.8K Total 7125 Debug Version: 161.8K Code, 50.6K Data, 212.4K Total 7126 Current Release: 7127 Non-Debug Version: 86.6K Code, 18.2K Data, 104.8K Total 7128 Debug Version: 162.7K Code, 50.8K Data, 213.5K Total 7129 71302) iASL Compiler/Disassembler and Tools: 7131 7132iASL: Implemented Switch() with While(1) so that Break works correctly. 7133This 7134change correctly implements the Switch operator with a surrounding 7135While(1) 7136so that the Break operator works as expected. ACPICA BZ 461. Lin Ming. 7137 7138iASL: Added a message if a package initializer list is shorter than 7139package 7140length. Adds a new remark for a Package() declaration if an initializer 7141list 7142exists, but is shorter than the declared length of the package. Although 7143technically legal, this is probably a coding error and it is seen in the 7144field. ACPICA BZ 815. Lin Ming, Bob Moore. 7145 7146iASL: Fixed a problem where the compiler could fault after the maximum 7147number 7148of errors was reached (200). 7149 7150acpixtract: Fixed a possible warning for pointer cast if the compiler 7151warning 7152level set very high. 7153 7154---------------------------------------- 715513 October 2009. Summary of changes for version 20091013: 7156 71571) ACPI CA Core Subsystem: 7158 7159Fixed a problem where an Operation Region _REG method could be executed 7160more 7161than once. If a custom address space handler is installed by the host 7162before 7163the "initialize operation regions" phase of the ACPICA initialization, 7164any 7165_REG methods for that address space could be executed twice. This change 7166fixes the problem. ACPICA BZ 427. Lin Ming. 7167 7168Fixed a possible memory leak for the Scope() ASL operator. When the exact 7169invocation of "Scope(\)" is executed (change scope to root), one internal 7170operand object was leaked. Lin Ming. 7171 7172Implemented a run-time repair for the _MAT predefined method. If the _MAT 7173return value is defined as a Field object in the AML, and the field 7174size is less than or equal to the default width of an integer (32 or 717564),_MAT 7176can incorrectly return an Integer instead of a Buffer. ACPICA now 7177automatically repairs this problem. ACPICA BZ 810. 7178 7179Implemented a run-time repair for the _BIF and _BIX predefined methods. 7180The 7181"OEM Information" field is often incorrectly returned as an Integer with 7182value zero if the field is not supported by the platform. This is due to 7183an 7184ambiguity in the ACPI specification. The field should always be a string. 7185ACPICA now automatically repairs this problem by returning a NULL string 7186within the returned Package. ACPICA BZ 807. 7187 7188Example Code and Data Size: These are the sizes for the OS-independent 7189acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 7190debug version of the code includes the debug output trace mechanism and 7191has a 7192much larger code and data size. 7193 7194 Previous Release: 7195 Non-Debug Version: 85.6K Code, 18.0K Data, 103.6K Total 7196 Debug Version: 161.7K Code, 50.9K Data, 212.6K Total 7197 Current Release: 7198 Non-Debug Version: 85.8K Code, 18.0K Data, 103.8K Total 7199 Debug Version: 161.8K Code, 50.6K Data, 212.4K Total 7200 72012) iASL Compiler/Disassembler and Tools: 7202 7203Disassembler: Fixed a problem where references to external symbols that 7204contained one or more parent-prefixes (carats) were not handled 7205correctly, 7206possibly causing a fault. ACPICA BZ 806. Lin Ming. 7207 7208Disassembler: Restructured the code so that all functions that handle 7209external symbols are in a single module. One new file is added, 7210common/dmextern.c. 7211 7212AML Debugger: Added a max count argument for the Batch command (which 7213executes multiple predefined methods within the namespace.) 7214 7215iASL: Updated the compiler documentation (User Reference.) Available at 7216http://www.acpica.org/documentation/. ACPICA BZ 750. 7217 7218AcpiXtract: Updated for Lint and other formatting changes. Close all open 7219files. 7220 7221---------------------------------------- 722203 September 2009. Summary of changes for version 20090903: 7223 72241) ACPI CA Core Subsystem: 7225 7226For Windows Vista compatibility, added the automatic execution of an _INI 7227method located at the namespace root (\_INI). This method is executed at 7228table load time. This support is in addition to the automatic execution 7229of 7230\_SB._INI. Lin Ming. 7231 7232Fixed a possible memory leak in the interpreter for AML package objects 7233if 7234the package initializer list is longer than the defined size of the 7235package. 7236This apparently can only happen if the BIOS changes the package size on 7237the 7238fly (seen in a _PSS object), as ASL compilers do not allow this. The 7239interpreter will truncate the package to the defined size (and issue an 7240error 7241message), but previously could leave the extra objects undeleted if they 7242were 7243pre-created during the argument processing (such is the case if the 7244package 7245consists of a number of sub-packages as in the _PSS.) ACPICA BZ 805. 7246 7247Fixed a problem seen when a Buffer or String is stored to itself via ASL. 7248This has been reported in the field. Previously, ACPICA would zero out 7249the 7250buffer/string. Now, the operation is treated as a noop. Provides Windows 7251compatibility. ACPICA BZ 803. Lin Ming. 7252 7253Removed an extraneous error message for ASL constructs of the form 7254Store(LocalX,LocalX) when LocalX is uninitialized. These curious 7255statements 7256are seen in many BIOSs and are once again treated as NOOPs and no error 7257is 7258emitted when they are encountered. ACPICA BZ 785. 7259 7260Fixed an extraneous warning message if a _DSM reserved method returns a 7261Package object. _DSM can return any type of object, so validation on the 7262return type cannot be performed. ACPICA BZ 802. 7263 7264Example Code and Data Size: These are the sizes for the OS-independent 7265acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 7266debug version of the code includes the debug output trace mechanism and 7267has a 7268much larger code and data size. 7269 7270 Previous Release: 7271 Non-Debug Version: 85.5K Code, 18.0K Data, 103.5K Total 7272 Debug Version: 161.6K Code, 50.9K Data, 212.5K Total 7273 Current Release: 7274 Non-Debug Version: 85.6K Code, 18.0K Data, 103.6K Total 7275 Debug Version: 161.7K Code, 50.9K Data, 212.6K Total 7276 72772) iASL Compiler/Disassembler and Tools: 7278 7279iASL: Fixed a problem with the use of the Alias operator and Resource 7280Templates. The correct alias is now constructed and no error is emitted. 7281ACPICA BZ 738. 7282 7283iASL: Implemented the -I option to specify additional search directories 7284for 7285include files. Allows multiple additional search paths for include files. 7286Directories are searched in the order specified on the command line 7287(after 7288the local directory is searched.) ACPICA BZ 800. 7289 7290iASL: Fixed a problem where the full pathname for include files was not 7291emitted for warnings/errors. This caused the IDE support to not work 7292properly. ACPICA BZ 765. 7293 7294iASL: Implemented the -@ option to specify a Windows-style response file 7295containing additional command line options. ACPICA BZ 801. 7296 7297AcpiExec: Added support to load multiple AML files simultaneously (such 7298as 7299a 7300DSDT and multiple SSDTs). Also added support for wildcards within the AML 7301pathname. These features allow all machine tables to be easily loaded and 7302debugged together. ACPICA BZ 804. 7303 7304Disassembler: Added missing support for disassembly of HEST table Error 7305Bank 7306subtables. 7307 7308---------------------------------------- 730930 July 2009. Summary of changes for version 20090730: 7310 7311The ACPI 4.0 implementation for ACPICA is complete with this release. 7312 73131) ACPI CA Core Subsystem: 7314 7315ACPI 4.0: Added header file support for all new and changed ACPI tables. 7316Completely new tables are: IBFT, IVRS, MSCT, and WAET. Tables that are 7317new 7318for ACPI 4.0, but have previously been supported in ACPICA are: CPEP, 7319BERT, 7320EINJ, ERST, and HEST. Other newly supported tables are: UEFI and WDAT. 7321There 7322have been some ACPI 4.0 changes to other existing tables. Split the large 7323actbl1.h header into the existing actbl2.h header. ACPICA BZ 774. 7324 7325ACPI 4.0: Implemented predefined name validation for all new names. There 7326are 732731 new names in ACPI 4.0. The predefined validation module was split into 7328two 7329files. The new file is namespace/nsrepair.c. ACPICA BZ 770. 7330 7331Implemented support for so-called "module-level executable code". This is 7332executable AML code that exists outside of any control method and is 7333intended 7334to be executed at table load time. Although illegal since ACPI 2.0, this 7335type 7336of code still exists and is apparently still being created. Blocks of 7337this 7338code are now detected and executed as intended. Currently, the code 7339blocks 7340must exist under either an If, Else, or While construct; these are the 7341typical cases seen in the field. ACPICA BZ 762. Lin Ming. 7342 7343Implemented an automatic dynamic repair for predefined names that return 7344nested Package objects. This applies to predefined names that are defined 7345to 7346return a variable-length Package of sub-packages. If the number of sub- 7347packages is one, BIOS code is occasionally seen that creates a simple 7348single 7349package with no sub-packages. This code attempts to fix the problem by 7350wrapping a new package object around the existing package. These methods 7351can 7352be repaired: _ALR, _CSD, _HPX, _MLS, _PRT, _PSS, _TRT, and _TSS. ACPICA 7353BZ 7354790. 7355 7356Fixed a regression introduced in 20090625 for the AcpiGetDevices 7357interface. 7358The _HID/_CID matching was broken and no longer matched IDs correctly. 7359ACPICA 7360BZ 793. 7361 7362Fixed a problem with AcpiReset where the reset would silently fail if the 7363register was one of the protected I/O ports. AcpiReset now bypasses the 7364port 7365validation mechanism. This may eventually be driven into the 7366AcpiRead/Write 7367interfaces. 7368 7369Fixed a regression related to the recent update of the AcpiRead/Write 7370interfaces. A sleep/suspend could fail if the optional PM2 Control 7371register 7372does not exist during an attempt to write the Bus Master Arbitration bit. 7373(However, some hosts already delete the code that writes this bit, and 7374the 7375code may in fact be obsolete at this date.) ACPICA BZ 799. 7376 7377Fixed a problem where AcpiTerminate could fault if inadvertently called 7378twice 7379in succession. ACPICA BZ 795. 7380 7381Example Code and Data Size: These are the sizes for the OS-independent 7382acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 7383debug version of the code includes the debug output trace mechanism and 7384has a 7385much larger code and data size. 7386 7387 Previous Release: 7388 Non-Debug Version: 84.7K Code, 17.8K Data, 102.5K Total 7389 Debug Version: 160.5K Code, 50.6K Data, 211.1K Total 7390 Current Release: 7391 Non-Debug Version: 85.5K Code, 18.0K Data, 103.5K Total 7392 Debug Version: 161.6K Code, 50.9K Data, 212.5K Total 7393 73942) iASL Compiler/Disassembler and Tools: 7395 7396ACPI 4.0: Implemented disassembler support for all new ACPI tables and 7397changes to existing tables. ACPICA BZ 775. 7398 7399---------------------------------------- 740025 June 2009. Summary of changes for version 20090625: 7401 7402The ACPI 4.0 Specification was released on June 16 and is available at 7403www.acpi.info. ACPICA implementation of ACPI 4.0 is underway and will 7404continue for the next few releases. 7405 74061) ACPI CA Core Subsystem: 7407 7408ACPI 4.0: Implemented interpreter support for the IPMI operation region 7409address space. Includes support for bi-directional data buffers and an 7410IPMI 7411address space handler (to be installed by an IPMI device driver.) ACPICA 7412BZ 7413773. Lin Ming. 7414 7415ACPI 4.0: Added changes for existing ACPI tables - FACS and SRAT. 7416Includes 7417support in both the header files and the disassembler. 7418 7419Completed a major update for the AcpiGetObjectInfo external interface. 7420Changes include: 7421 - Support for variable, unlimited length HID, UID, and CID strings. 7422 - Support Processor objects the same as Devices (HID,UID,CID,ADR,STA, 7423etc.) 7424 - Call the _SxW power methods on behalf of a device object. 7425 - Determine if a device is a PCI root bridge. 7426 - Change the ACPI_BUFFER parameter to ACPI_DEVICE_INFO. 7427These changes will require an update to all callers of this interface. 7428See 7429the updated ACPICA Programmer Reference for details. One new source file 7430has 7431been added - utilities/utids.c. ACPICA BZ 368, 780. 7432 7433Updated the AcpiRead and AcpiWrite external interfaces to support 64-bit 7434transfers. The Value parameter has been extended from 32 bits to 64 bits 7435in 7436order to support new ACPI 4.0 tables. These changes will require an 7437update 7438to 7439all callers of these interfaces. See the ACPICA Programmer Reference for 7440details. ACPICA BZ 768. 7441 7442Fixed several problems with AcpiAttachData. The handler was not invoked 7443when 7444the host node was deleted. The data sub-object was not automatically 7445deleted 7446when the host node was deleted. The interface to the handler had an 7447unused 7448parameter, this was removed. ACPICA BZ 778. 7449 7450Enhanced the function that dumps ACPI table headers. All non-printable 7451characters in the string fields are now replaced with '?' (Signature, 7452OemId, 7453OemTableId, and CompilerId.) ACPI tables with non-printable characters in 7454these fields are occasionally seen in the field. ACPICA BZ 788. 7455 7456Fixed a problem with predefined method repair code where the code that 7457attempts to repair/convert an object of incorrect type is only executed 7458on 7459the first time the predefined method is called. The mechanism that 7460disables 7461warnings on subsequent calls was interfering with the repair mechanism. 7462ACPICA BZ 781. 7463 7464Fixed a possible memory leak in the predefined validation/repair code 7465when 7466a 7467buffer is automatically converted to an expected string object. 7468 7469Removed obsolete 16-bit files from the distribution and from the current 7470git 7471tree head. ACPICA BZ 776. 7472 7473Example Code and Data Size: These are the sizes for the OS-independent 7474acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 7475debug version of the code includes the debug output trace mechanism and 7476has a 7477much larger code and data size. 7478 7479 Previous Release: 7480 Non-Debug Version: 83.4K Code, 17.5K Data, 100.9K Total 7481 Debug Version: 158.9K Code, 50.0K Data, 208.9K Total 7482 Current Release: 7483 Non-Debug Version: 84.7K Code, 17.8K Data, 102.5K Total 7484 Debug Version: 160.5K Code, 50.6K Data, 211.1K Total 7485 74862) iASL Compiler/Disassembler and Tools: 7487 7488ACPI 4.0: iASL and Disassembler - implemented support for the new IPMI 7489operation region keyword. ACPICA BZ 771, 772. Lin Ming. 7490 7491ACPI 4.0: iASL - implemented compile-time validation support for all new 7492predefined names and control methods (31 total). ACPICA BZ 769. 7493 7494---------------------------------------- 749521 May 2009. Summary of changes for version 20090521: 7496 74971) ACPI CA Core Subsystem: 7498 7499Disabled the preservation of the SCI enable bit in the PM1 control 7500register. 7501The SCI enable bit (bit 0, SCI_EN) is defined by the ACPI specification 7502to 7503be 7504a "preserved" bit - "OSPM always preserves this bit position", section 75054.7.3.2.1. However, some machines fail if this bit is in fact preserved 7506because the bit needs to be explicitly set by the OS as a workaround. No 7507machines fail if the bit is not preserved. Therefore, ACPICA no longer 7508attempts to preserve this bit. 7509 7510Fixed a problem in AcpiRsGetPciRoutingTableLength where an invalid or 7511incorrectly formed _PRT package could cause a fault. Added validation to 7512ensure that each package element is actually a sub-package. 7513 7514Implemented a new interface to install or override a single control 7515method, 7516AcpiInstallMethod. This interface is useful when debugging in order to 7517repair 7518an existing method or to install a missing method without having to 7519override 7520the entire ACPI table. See the ACPICA Programmer Reference for use and 7521examples. Lin Ming, Bob Moore. 7522 7523Fixed several reference count issues with the DdbHandle object that is 7524created from a Load or LoadTable operator. Prevent premature deletion of 7525the 7526object. Also, mark the object as invalid once the table has been 7527unloaded. 7528This is needed because the handle itself may not be deleted after the 7529table 7530unload, depending on whether it has been stored in a named object by the 7531caller. Lin Ming. 7532 7533Fixed a problem with Mutex Sync Levels. Fixed a problem where if multiple 7534mutexes of the same sync level are acquired but then not released in 7535strict 7536opposite order, the internally maintained Current Sync Level becomes 7537confused 7538and can cause subsequent execution errors. ACPICA BZ 471. 7539 7540Changed the allowable release order for ASL mutex objects. The ACPI 4.0 7541specification has been changed to make the SyncLevel for mutex objects 7542more 7543useful. When releasing a mutex, the SyncLevel of the mutex must now be 7544the 7545same as the current sync level. This makes more sense than the previous 7546rule 7547(SyncLevel less than or equal). This change updates the code to match the 7548specification. 7549 7550Fixed a problem with the local version of the AcpiOsPurgeCache function. 7551The 7552(local) cache must be locked during all cache object deletions. Andrew 7553Baumann. 7554 7555Updated the Load operator to use operation region interfaces. This 7556replaces 7557direct memory mapping with region access calls. Now, all region accesses 7558go 7559through the installed region handler as they should. 7560 7561Simplified and optimized the NsGetNextNode function. Reduced parameter 7562count 7563and reduced code for this frequently used function. 7564 7565Example Code and Data Size: These are the sizes for the OS-independent 7566acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 7567debug version of the code includes the debug output trace mechanism and 7568has a 7569much larger code and data size. 7570 7571 Previous Release: 7572 Non-Debug Version: 82.8K Code, 17.5K Data, 100.3K Total 7573 Debug Version: 158.0K Code, 49.9K Data, 207.9K Total 7574 Current Release: 7575 Non-Debug Version: 83.4K Code, 17.5K Data, 100.9K Total 7576 Debug Version: 158.9K Code, 50.0K Data, 208.9K Total 7577 75782) iASL Compiler/Disassembler and Tools: 7579 7580Disassembler: Fixed some issues with DMAR, HEST, MADT tables. Some 7581problems 7582with sub-table disassembly and handling invalid sub-tables. Attempt 7583recovery 7584after an invalid sub-table ID. 7585 7586---------------------------------------- 758722 April 2009. Summary of changes for version 20090422: 7588 75891) ACPI CA Core Subsystem: 7590 7591Fixed a compatibility issue with the recently released I/O port 7592protection 7593mechanism. For windows compatibility, 1) On a port protection violation, 7594simply ignore the request and do not return an exception (allow the 7595control 7596method to continue execution.) 2) If only part of the request overlaps a 7597protected port, read/write the individual ports that are not protected. 7598Linux 7599BZ 13036. Lin Ming 7600 7601Enhanced the execution of the ASL/AML BreakPoint operator so that it 7602actually 7603breaks into the AML debugger if the debugger is present. This matches the 7604ACPI-defined behavior. 7605 7606Fixed several possible warnings related to the use of the configurable 7607ACPI_THREAD_ID. This type can now be configured as either an integer or a 7608pointer with no warnings. Also fixes several warnings in printf-like 7609statements for the 64-bit build when the type is configured as a pointer. 7610ACPICA BZ 766, 767. 7611 7612Fixed a number of possible warnings when compiling with gcc 4+ (depending 7613on 7614warning options.) Examples include printf formats, aliasing, unused 7615globals, 7616missing prototypes, missing switch default statements, use of non-ANSI 7617library functions, use of non-ANSI constructs. See generate/unix/Makefile 7618for 7619a list of warning options used with gcc 3 and 4. ACPICA BZ 735. 7620 7621Example Code and Data Size: These are the sizes for the OS-independent 7622acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 7623debug version of the code includes the debug output trace mechanism and 7624has a 7625much larger code and data size. 7626 7627 Previous Release: 7628 Non-Debug Version: 82.6K Code, 17.6K Data, 100.2K Total 7629 Debug Version: 157.7K Code, 49.9K Data, 207.6K Total 7630 Current Release: 7631 Non-Debug Version: 82.8K Code, 17.5K Data, 100.3K Total 7632 Debug Version: 158.0K Code, 49.9K Data, 207.9K Total 7633 76342) iASL Compiler/Disassembler and Tools: 7635 7636iASL: Fixed a generation warning from Bison 2.3 and fixed several 7637warnings 7638on 7639the 64-bit build. 7640 7641iASL: Fixed a problem where the Unix/Linux versions of the compiler could 7642not 7643correctly digest Windows/DOS formatted files (with CR/LF). 7644 7645iASL: Added a new option for "quiet mode" (-va) that produces only the 7646compilation summary, not individual errors and warnings. Useful for large 7647batch compilations. 7648 7649AcpiExec: Implemented a new option (-z) to enable a forced 7650semaphore/mutex 7651timeout that can be used to detect hang conditions during execution of 7652AML 7653code (includes both internal semaphores and AML-defined mutexes and 7654events.) 7655 7656Added new makefiles for the generation of acpica in a generic unix-like 7657environment. These makefiles are intended to generate the acpica tools 7658and 7659utilities from the original acpica git source tree structure. 7660 7661Test Suites: Updated and cleaned up the documentation files. Updated the 7662copyrights to 2009, affecting all source files. Use the new version of 7663iASL 7664with quiet mode. Increased the number of available semaphores in the 7665Windows 7666OSL, allowing the aslts to execute fully on Windows. For the Unix OSL, 7667added 7668an alternate implementation of the semaphore timeout to allow aslts to 7669execute fully on Cygwin. 7670 7671---------------------------------------- 767220 March 2009. Summary of changes for version 20090320: 7673 76741) ACPI CA Core Subsystem: 7675 7676Fixed a possible race condition between AcpiWalkNamespace and dynamic 7677table 7678unloads. Added a reader/writer locking mechanism to allow multiple 7679concurrent 7680namespace walks (readers), but block a dynamic table unload until it can 7681gain 7682exclusive write access to the namespace. This fixes a problem where a 7683table 7684unload could (possibly catastrophically) delete the portion of the 7685namespace 7686that is currently being examined by a walk. Adds a new file, utlock.c, 7687that 7688implements the reader/writer lock mechanism. ACPICA BZ 749. 7689 7690Fixed a regression introduced in version 20090220 where a change to the 7691FADT 7692handling could cause the ACPICA subsystem to access non-existent I/O 7693ports. 7694 7695Modified the handling of FADT register and table (FACS/DSDT) addresses. 7696The 7697FADT can contain both 32-bit and 64-bit versions of these addresses. 7698Previously, the 64-bit versions were favored, meaning that if both 32 and 769964 7700versions were valid, but not equal, the 64-bit version was used. This was 7701found to cause some machines to fail. Now, in this case, the 32-bit 7702version 7703is used instead. This now matches the Windows behavior. 7704 7705Implemented a new mechanism to protect certain I/O ports. Provides 7706Microsoft 7707compatibility and protects the standard PC I/O ports from access via AML 7708code. Adds a new file, hwvalid.c 7709 7710Fixed a possible extraneous warning message from the FADT support. The 7711message warns of a 32/64 length mismatch between the legacy and GAS 7712definitions for a register. 7713 7714Removed the obsolete AcpiOsValidateAddress OSL interface. This interface 7715is 7716made obsolete by the port protection mechanism above. It was previously 7717used 7718to validate the entire address range of an operation region, which could 7719be 7720incorrect if the range included illegal ports, but fields within the 7721operation region did not actually access those ports. Validation is now 7722performed on a per-field basis instead of the entire region. 7723 7724Modified the handling of the PM1 Status Register ignored bit (bit 11.) 7725Ignored bits must be "preserved" according to the ACPI spec. Usually, 7726this 7727means a read/modify/write when writing to the register. However, for 7728status 7729registers, writing a one means clear the event. Writing a zero means 7730preserve 7731the event (do not clear.) This behavior is clarified in the ACPI 4.0 7732spec, 7733and the ACPICA code now simply always writes a zero to the ignored bit. 7734 7735Modified the handling of ignored bits for the PM1 A/B Control Registers. 7736As 7737per the ACPI specification, for the control registers, preserve 7738(read/modify/write) all bits that are defined as either reserved or 7739ignored. 7740 7741Updated the handling of write-only bits in the PM1 A/B Control Registers. 7742When reading the register, zero the write-only bits as per the ACPI spec. 7743ACPICA BZ 443. Lin Ming. 7744 7745Removed "Linux" from the list of supported _OSI strings. Linux no longer 7746wants to reply true to this request. The Windows strings are the only 7747paths 7748through the AML that are tested and known to work properly. 7749 7750 Previous Release: 7751 Non-Debug Version: 82.0K Code, 17.5K Data, 99.5K Total 7752 Debug Version: 156.9K Code, 49.8K Data, 206.7K Total 7753 Current Release: 7754 Non-Debug Version: 82.6K Code, 17.6K Data, 100.2K Total 7755 Debug Version: 157.7K Code, 49.9K Data, 207.6K Total 7756 77572) iASL Compiler/Disassembler and Tools: 7758 7759Acpiexec: Split the large aeexec.c file into two new files, aehandlers.c 7760and 7761aetables.c 7762 7763---------------------------------------- 776420 February 2009. Summary of changes for version 20090220: 7765 77661) ACPI CA Core Subsystem: 7767 7768Optimized the ACPI register locking. Removed locking for reads from the 7769ACPI 7770bit registers in PM1 Status, Enable, Control, and PM2 Control. The lock 7771is 7772not required when reading the single-bit registers. The 7773AcpiGetRegisterUnlocked function is no longer needed and has been 7774removed. 7775This will improve performance for reads on these registers. ACPICA BZ 7776760. 7777 7778Fixed the parameter validation for AcpiRead/Write. Now return 7779AE_BAD_PARAMETER if the input register pointer is null, and 7780AE_BAD_ADDRESS 7781if 7782the register has an address of zero. Previously, these cases simply 7783returned 7784AE_OK. For optional registers such as PM1B status/enable/control, the 7785caller 7786should check for a valid register address before calling. ACPICA BZ 748. 7787 7788Renamed the external ACPI bit register access functions. Renamed 7789AcpiGetRegister and AcpiSetRegister to clarify the purpose of these 7790functions. The new names are AcpiReadBitRegister and 7791AcpiWriteBitRegister. 7792Also, restructured the code for these functions by simplifying the code 7793path 7794and condensing duplicate code to reduce code size. 7795 7796Added new functions to transparently handle the possibly split PM1 A/B 7797registers. AcpiHwReadMultiple and AcpiHwWriteMultiple. These two 7798functions 7799now handle the split registers for PM1 Status, Enable, and Control. 7800ACPICA 7801BZ 7802746. 7803 7804Added a function to handle the PM1 control registers, 7805AcpiHwWritePm1Control. 7806This function writes both of the PM1 control registers (A/B). These 7807registers 7808are different than the PM1 A/B status and enable registers in that 7809different 7810values can be written to the A/B registers. Most notably, the SLP_TYP 7811bits 7812can be different, as per the values returned from the _Sx predefined 7813methods. 7814 7815Removed an extra register write within AcpiHwClearAcpiStatus. This 7816function 7817was writing an optional PM1B status register twice. The existing call to 7818the 7819low-level AcpiHwRegisterWrite automatically handles a possibly split PM1 7820A/B 7821register. ACPICA BZ 751. 7822 7823Split out the PM1 Status registers from the FADT. Added new globals for 7824these 7825registers (A/B), similar to the way the PM1 Enable registers are handled. 7826Instead of overloading the FADT Event Register blocks. This makes the 7827code 7828clearer and less prone to error. 7829 7830Fixed the warning message for when the platform contains too many ACPI 7831tables 7832for the default size of the global root table data structure. The 7833calculation 7834for the truncation value was incorrect. 7835 7836Removed the ACPI_GET_OBJECT_TYPE macro. Removed all instances of this 7837obsolete macro, since it is now a simple reference to ->common.type. 7838There 7839were about 150 invocations of the macro across 41 files. ACPICA BZ 755. 7840 7841Removed the redundant ACPI_BITREG_SLEEP_TYPE_B. This type is the same as 7842TYPE_A. Removed this and all related instances. Renamed SLEEP_TYPE_A to 7843simply SLEEP_TYPE. ACPICA BZ 754. 7844 7845Conditionally compile the AcpiSetFirmwareWakingVector64 function. This 7846function is only needed on 64-bit host operating systems and is thus not 7847included for 32-bit hosts. 7848 7849Debug output: print the input and result for invocations of the _OSI 7850reserved 7851control method via the ACPI_LV_INFO debug level. Also, reduced some of 7852the 7853verbosity of this debug level. Len Brown. 7854 7855Example Code and Data Size: These are the sizes for the OS-independent 7856acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 7857debug version of the code includes the debug output trace mechanism and 7858has a 7859much larger code and data size. 7860 7861 Previous Release: 7862 Non-Debug Version: 82.3K Code, 17.5K Data, 99.8K Total 7863 Debug Version: 157.3K Code, 49.8K Data, 207.1K Total 7864 Current Release: 7865 Non-Debug Version: 82.0K Code, 17.5K Data, 99.5K Total 7866 Debug Version: 156.9K Code, 49.8K Data, 206.7K Total 7867 78682) iASL Compiler/Disassembler and Tools: 7869 7870Disassembler: Decode the FADT PM_Profile field. Emit ascii names for the 7871various legal performance profiles. 7872 7873---------------------------------------- 787423 January 2009. Summary of changes for version 20090123: 7875 78761) ACPI CA Core Subsystem: 7877 7878Added the 2009 copyright to all module headers and signons. This affects 7879virtually every file in the ACPICA core subsystem, the iASL compiler, and 7880the tools/utilities. 7881 7882Implemented a change to allow the host to override any ACPI table, 7883including 7884dynamically loaded tables. Previously, only the DSDT could be replaced by 7885the 7886host. With this change, the AcpiOsTableOverride interface is called for 7887each 7888table found in the RSDT/XSDT during ACPICA initialization, and also 7889whenever 7890a table is dynamically loaded via the AML Load operator. 7891 7892Updated FADT flag definitions, especially the Boot Architecture flags. 7893 7894Debugger: For the Find command, automatically pad the input ACPI name 7895with 7896underscores if the name is shorter than 4 characters. This enables a 7897match 7898with the actual namespace entry which is itself padded with underscores. 7899 7900Example Code and Data Size: These are the sizes for the OS-independent 7901acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 7902debug version of the code includes the debug output trace mechanism and 7903has a 7904much larger code and data size. 7905 7906 Previous Release: 7907 Non-Debug Version: 82.3K Code, 17.4K Data, 99.7K Total 7908 Debug Version: 157.1K Code, 49.7K Data, 206.8K Total 7909 Current Release: 7910 Non-Debug Version: 82.3K Code, 17.5K Data, 99.8K Total 7911 Debug Version: 157.3K Code, 49.8K Data, 207.1K Total 7912 79132) iASL Compiler/Disassembler and Tools: 7914 7915Fix build error under Bison-2.4. 7916 7917Dissasembler: Enhanced FADT support. Added decoding of the Boot 7918Architecture 7919flags. Now decode all flags, regardless of the FADT version. Flag output 7920includes the FADT version which first defined each flag. 7921 7922The iASL -g option now dumps the RSDT to a file (in addition to the FADT 7923and 7924DSDT). Windows only. 7925 7926---------------------------------------- 792704 December 2008. Summary of changes for version 20081204: 7928 79291) ACPI CA Core Subsystem: 7930 7931The ACPICA Programmer Reference has been completely updated and revamped 7932for 7933this release. This includes updates to the external interfaces, OSL 7934interfaces, the overview sections, and the debugger reference. 7935 7936Several new ACPICA interfaces have been implemented and documented in the 7937programmer reference: 7938AcpiReset - Writes the reset value to the FADT-defined reset register. 7939AcpiDisableAllGpes - Disable all available GPEs. 7940AcpiEnableAllRuntimeGpes - Enable all available runtime GPEs. 7941AcpiGetGpeDevice - Get the GPE block device associated with a GPE. 7942AcpiGbl_CurrentGpeCount - Tracks the current number of available GPEs. 7943AcpiRead - Low-level read ACPI register (was HwLowLevelRead.) 7944AcpiWrite - Low-level write ACPI register (was HwLowLevelWrite.) 7945 7946Most of the public ACPI hardware-related interfaces have been moved to a 7947new 7948file, components/hardware/hwxface.c 7949 7950Enhanced the FADT parsing and low-level ACPI register access: The ACPI 7951register lengths within the FADT are now used, and the low level ACPI 7952register access no longer hardcodes the ACPI register lengths. Given that 7953there may be some risk in actually trusting the FADT register lengths, a 7954run- 7955time option was added to fall back to the default hardcoded lengths if 7956the 7957FADT proves to contain incorrect values - UseDefaultRegisterWidths. This 7958option is set to true for now, and a warning is issued if a suspicious 7959FADT 7960register length is overridden with the default value. 7961 7962Fixed a reference count issue in NsRepairObject. This problem was 7963introduced 7964in version 20081031 as part of a fix to repair Buffer objects within 7965Packages. Lin Ming. 7966 7967Added semaphore support to the Linux/Unix application OS-services layer 7968(OSL). ACPICA BZ 448. Lin Ming. 7969 7970Added the ACPI_MUTEX_TYPE configuration option to select whether mutexes 7971will 7972be implemented in the OSL, or will binary semaphores be used instead. 7973 7974Example Code and Data Size: These are the sizes for the OS-independent 7975acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 7976debug version of the code includes the debug output trace mechanism and 7977has a 7978much larger code and data size. 7979 7980 Previous Release: 7981 Non-Debug Version: 81.7K Code, 17.3K Data, 99.0K Total 7982 Debug Version: 156.4K Code, 49.4K Data, 205.8K Total 7983 Current Release: 7984 Non-Debug Version: 82.3K Code, 17.4K Data, 99.7K Total 7985 Debug Version: 157.1K Code, 49.7K Data, 206.8K Total 7986 79872) iASL Compiler/Disassembler and Tools: 7988 7989iASL: Completed the '-e' option to include additional ACPI tables in 7990order 7991to 7992aid with disassembly and External statement generation. ACPICA BZ 742. 7993Lin 7994Ming. 7995 7996iASL: Removed the "named object in while loop" error. The compiler cannot 7997determine how many times a loop will execute. ACPICA BZ 730. 7998 7999Disassembler: Implemented support for FADT revision 2 (MS extension). 8000ACPICA 8001BZ 743. 8002 8003Disassembler: Updates for several ACPI data tables (HEST, EINJ, and 8004MCFG). 8005 8006---------------------------------------- 800731 October 2008. Summary of changes for version 20081031: 8008 80091) ACPI CA Core Subsystem: 8010 8011Restructured the ACPICA header files into public/private. acpi.h now 8012includes 8013only the "public" acpica headers. All other acpica headers are "private" 8014and 8015should not be included by acpica users. One new file, accommon.h is used 8016to 8017include the commonly used private headers for acpica code generation. 8018Future 8019plans include moving all private headers to a new subdirectory. 8020 8021Implemented an automatic Buffer->String return value conversion for 8022predefined ACPI methods. For these methods (such as _BIF), added 8023automatic 8024conversion for return objects that are required to be a String, but a 8025Buffer 8026was found instead. This can happen when reading string battery data from 8027an 8028operation region, because it used to be difficult to convert the data 8029from 8030buffer to string from within the ASL. Ensures that the host OS is 8031provided 8032with a valid null-terminated string. Linux BZ 11822. 8033 8034Updated the FACS waking vector interfaces. Split 8035AcpiSetFirmwareWakingVector 8036into two: one for the 32-bit vector, another for the 64-bit vector. This 8037is 8038required because the host OS must setup the wake much differently for 8039each 8040vector (real vs. protected mode, etc.) and the interface itself should 8041not 8042be 8043deciding which vector to use. Also, eliminated the 8044GetFirmwareWakingVector 8045interface, as it served no purpose (only the firmware reads the vector, 8046OS 8047only writes the vector.) ACPICA BZ 731. 8048 8049Implemented a mechanism to escape infinite AML While() loops. Added a 8050loop 8051counter to force exit from AML While loops if the count becomes too 8052large. 8053This can occur in poorly written AML when the hardware does not respond 8054within a while loop and the loop does not implement a timeout. The 8055maximum 8056loop count is configurable. A new exception code is returned when a loop 8057is 8058broken, AE_AML_INFINITE_LOOP. Alexey Starikovskiy, Bob Moore. 8059 8060Optimized the execution of AML While loops. Previously, a control state 8061object was allocated and freed for each execution of the loop. The 8062optimization is to simply reuse the control state for each iteration. 8063This 8064speeds up the raw loop execution time by about 5%. 8065 8066Enhanced the implicit return mechanism. For Windows compatibility, return 8067an 8068implicit integer of value zero for methods that contain no executable 8069code. 8070Such methods are seen in the field as stubs (presumably), and can cause 8071drivers to fail if they expect a return value. Lin Ming. 8072 8073Allow multiple backslashes as root prefixes in namepaths. In a fully 8074qualified namepath, allow multiple backslash prefixes. This can happen 8075(and 8076is seen in the field) because of the use of a double-backslash in strings 8077(since backslash is the escape character) causing confusion. ACPICA BZ 8078739 8079Lin Ming. 8080 8081Emit a warning if two different FACS or DSDT tables are discovered in the 8082FADT. Checks if there are two valid but different addresses for the FACS 8083and 8084DSDT within the FADT (mismatch between the 32-bit and 64-bit fields.) 8085 8086Consolidated the method argument count validation code. Merged the code 8087that 8088validates control method argument counts into the predefined validation 8089module. Eliminates possible multiple warnings for incorrect argument 8090counts. 8091 8092Implemented ACPICA example code. Includes code for ACPICA initialization, 8093handler installation, and calling a control method. Available at 8094source/tools/examples. 8095 8096Added a global pointer for FACS table to simplify internal FACS access. 8097Use 8098the global pointer instead of using AcpiGetTableByIndex for each FACS 8099access. 8100This simplifies the code for the Global Lock and the Firmware Waking 8101Vector(s). 8102 8103Example Code and Data Size: These are the sizes for the OS-independent 8104acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 8105debug version of the code includes the debug output trace mechanism and 8106has a 8107much larger code and data size. 8108 8109 Previous Release: 8110 Non-Debug Version: 81.2K Code, 17.0K Data, 98.2K Total 8111 Debug Version: 155.8K Code, 49.1K Data, 204.9K Total 8112 Current Release: 8113 Non-Debug Version: 81.7K Code, 17.3K Data, 99.0K Total 8114 Debug Version: 156.4K Code, 49.4K Data, 205.8K Total 8115 81162) iASL Compiler/Disassembler and Tools: 8117 8118iASL: Improved disassembly of external method calls. Added the -e option 8119to 8120allow the inclusion of additional ACPI tables to help with the 8121disassembly 8122of 8123method invocations and the generation of external declarations during the 8124disassembly. Certain external method invocations cannot be disassembled 8125properly without the actual declaration of the method. Use the -e option 8126to 8127include the table where the external method(s) are actually declared. 8128Most 8129useful for disassembling SSDTs that make method calls back to the master 8130DSDT. Lin Ming. Example: To disassemble an SSDT with calls to DSDT: iasl 8131-d 8132-e dsdt.aml ssdt1.aml 8133 8134iASL: Fix to allow references to aliases within ASL namepaths. Fixes a 8135problem where the use of an alias within a namepath would result in a not 8136found error or cause the compiler to fault. Also now allows forward 8137references from the Alias operator itself. ACPICA BZ 738. 8138 8139---------------------------------------- 814026 September 2008. Summary of changes for version 20080926: 8141 81421) ACPI CA Core Subsystem: 8143 8144Designed and implemented a mechanism to validate predefined ACPI methods 8145and 8146objects. This code validates the predefined ACPI objects (objects whose 8147names 8148start with underscore) that appear in the namespace, at the time they are 8149evaluated. The argument count and the type of the returned object are 8150validated against the ACPI specification. The purpose of this validation 8151is 8152to detect problems with the BIOS-implemented predefined ACPI objects 8153before 8154the results are returned to the ACPI-related drivers. Future enhancements 8155may 8156include actual repair of incorrect return objects where possible. Two new 8157files are nspredef.c and acpredef.h. 8158 8159Fixed a fault in the AML parser if a memory allocation fails during the 8160Op 8161completion routine AcpiPsCompleteThisOp. Lin Ming. ACPICA BZ 492. 8162 8163Fixed an issue with implicit return compatibility. This change improves 8164the 8165implicit return mechanism to be more compatible with the MS interpreter. 8166Lin 8167Ming, ACPICA BZ 349. 8168 8169Implemented support for zero-length buffer-to-string conversions. Allow 8170zero 8171length strings during interpreter buffer-to-string conversions. For 8172example, 8173during the ToDecimalString and ToHexString operators, as well as implicit 8174conversions. Fiodor Suietov, ACPICA BZ 585. 8175 8176Fixed two possible memory leaks in the error exit paths of 8177AcpiUtUpdateObjectReference and AcpiUtWalkPackageTree. These functions 8178are 8179similar in that they use a stack of state objects in order to eliminate 8180recursion. The stack must be fully unwound and deallocated if an error 8181occurs. Lin Ming. ACPICA BZ 383. 8182 8183Removed the unused ACPI_BITREG_WAKE_ENABLE definition and entry in the 8184global 8185ACPI register table. This bit does not exist and is unused. Lin Ming, Bob 8186Moore ACPICA BZ 442. 8187 8188Removed the obsolete version number in module headers. Removed the 8189"$Revision" number that appeared in each module header. This version 8190number 8191was useful under SourceSafe and CVS, but has no meaning under git. It is 8192not 8193only incorrect, it could also be misleading. 8194 8195Example Code and Data Size: These are the sizes for the OS-independent 8196acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 8197debug version of the code includes the debug output trace mechanism and 8198has a 8199much larger code and data size. 8200 8201 Previous Release: 8202 Non-Debug Version: 79.7K Code, 16.4K Data, 96.1K Total 8203 Debug Version: 153.7K Code, 48.2K Data, 201.9K Total 8204 Current Release: 8205 Non-Debug Version: 81.2K Code, 17.0K Data, 98.2K Total 8206 Debug Version: 155.8K Code, 49.1K Data, 204.9K Total 8207 8208---------------------------------------- 820929 August 2008. Summary of changes for version 20080829: 8210 82111) ACPI CA Core Subsystem: 8212 8213Completed a major cleanup of the internal ACPI_OPERAND_OBJECT of type 8214Reference. Changes include the elimination of cheating on the Object 8215field 8216for the DdbHandle subtype, addition of a reference class field to 8217differentiate the various reference types (instead of an AML opcode), and 8218the 8219cleanup of debug output for this object. Lin Ming, Bob Moore. BZ 723 8220 8221Reduce an error to a warning for an incorrect method argument count. 8222Previously aborted with an error if too few arguments were passed to a 8223control method via the external ACPICA interface. Now issue a warning 8224instead 8225and continue. Handles the case where the method inadvertently declares 8226too 8227many arguments, but does not actually use the extra ones. Applies mainly 8228to 8229the predefined methods. Lin Ming. Linux BZ 11032. 8230 8231Disallow the evaluation of named object types with no intrinsic value. 8232Return 8233AE_TYPE for objects that have no value and therefore evaluation is 8234undefined: 8235Device, Event, Mutex, Region, Thermal, and Scope. Previously, evaluation 8236of 8237these types were allowed, but an exception would be generated at some 8238point 8239during the evaluation. Now, the error is generated up front. 8240 8241Fixed a possible memory leak in the AcpiNsGetExternalPathname function 8242(nsnames.c). Fixes a leak in the error exit path. 8243 8244Removed the obsolete debug levels ACPI_DB_WARN and ACPI_DB_ERROR. These 8245debug 8246levels were made obsolete by the ACPI_WARNING, ACPI_ERROR, and 8247ACPI_EXCEPTION 8248interfaces. Also added ACPI_DB_EVENTS to correspond with the existing 8249ACPI_LV_EVENTS. 8250 8251Removed obsolete and/or unused exception codes from the acexcep.h header. 8252There is the possibility that certain device drivers may be affected if 8253they 8254use any of these exceptions. 8255 8256The ACPICA documentation has been added to the public git source tree, 8257under 8258acpica/documents. Included are the ACPICA programmer reference, the iASL 8259compiler reference, and the changes.txt release logfile. 8260 8261Example Code and Data Size: These are the sizes for the OS-independent 8262acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 8263debug version of the code includes the debug output trace mechanism and 8264has a 8265much larger code and data size. 8266 8267 Previous Release: 8268 Non-Debug Version: 79.7K Code, 16.4K Data, 96.1K Total 8269 Debug Version: 153.9K Code, 48.4K Data, 202.3K Total 8270 Current Release: 8271 Non-Debug Version: 79.7K Code, 16.4K Data, 96.1K Total 8272 Debug Version: 153.7K Code, 48.2K Data, 201.9K Total 8273 82742) iASL Compiler/Disassembler and Tools: 8275 8276Allow multiple argument counts for the predefined _SCP method. ACPI 3.0 8277defines _SCP with 3 arguments. Previous versions defined it with only 1 8278argument. iASL now allows both definitions. 8279 8280iASL/disassembler: avoid infinite loop on bad ACPI tables. Check for 8281zero- 8282length subtables when disassembling ACPI tables. Also fixed a couple of 8283errors where a full 16-bit table type field was not extracted from the 8284input 8285properly. 8286 8287acpisrc: Improve comment counting mechanism for generating source code 8288statistics. Count first and last lines of multi-line comments as 8289whitespace, 8290not comment lines. Handle Linux legal header in addition to standard 8291acpica 8292header. 8293 8294---------------------------------------- 8295 829629 July 2008. Summary of changes for version 20080729: 8297 82981) ACPI CA Core Subsystem: 8299 8300Fix a possible deadlock in the GPE dispatch. Remove call to 8301AcpiHwDisableAllGpes during wake in AcpiEvGpeDispatch. This call will 8302attempt 8303to acquire the GPE lock but can deadlock since the GPE lock is already 8304held 8305at dispatch time. This code was introduced in version 20060831 as a 8306response 8307to Linux BZ 6881 and has since been removed from Linux. 8308 8309Add a function to dereference returned reference objects. Examines the 8310return 8311object from a call to AcpiEvaluateObject. Any Index or RefOf references 8312are 8313automatically dereferenced in an attempt to return something useful 8314(these 8315reference types cannot be converted into an external ACPI_OBJECT.) 8316Provides 8317MS compatibility. Lin Ming, Bob Moore. Linux BZ 11105 8318 8319x2APIC support: changes for MADT and SRAT ACPI tables. There are 2 new 8320subtables for the MADT and one new subtable for the SRAT. Includes 8321disassembler and AcpiSrc support. Data from the Intel 64 Architecture 8322x2APIC 8323Specification, June 2008. 8324 8325Additional error checking for pathname utilities. Add error check after 8326all 8327calls to AcpiNsGetPathnameLength. Add status return from 8328AcpiNsBuildExternalPath and check after all calls. Add parameter 8329validation 8330to AcpiUtInitializeBuffer. Reported by and initial patch by Ingo Molnar. 8331 8332Return status from the global init function AcpiUtGlobalInitialize. This 8333is 8334used by both the kernel subsystem and the utilities such as iASL 8335compiler. 8336The function could possibly fail when the caches are initialized. Yang 8337Yi. 8338 8339Add a function to decode reference object types to strings. Created for 8340improved error messages. 8341 8342Improve object conversion error messages. Better error messages during 8343object 8344conversion from internal to the external ACPI_OBJECT. Used for external 8345calls 8346to AcpiEvaluateObject. 8347 8348Example Code and Data Size: These are the sizes for the OS-independent 8349acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 8350debug version of the code includes the debug output trace mechanism and 8351has a 8352much larger code and data size. 8353 8354 Previous Release: 8355 Non-Debug Version: 79.6K Code, 16.2K Data, 95.8K Total 8356 Debug Version: 153.5K Code, 48.2K Data, 201.7K Total 8357 Current Release: 8358 Non-Debug Version: 79.7K Code, 16.4K Data, 96.1K Total 8359 Debug Version: 153.9K Code, 48.4K Data, 202.3K Total 8360 83612) iASL Compiler/Disassembler and Tools: 8362 8363Debugger: fix a possible hang when evaluating non-methods. Fixes a 8364problem 8365introduced in version 20080701. If the object being evaluated (via 8366execute 8367command) is not a method, the debugger can hang while trying to obtain 8368non- 8369existent parameters. 8370 8371iASL: relax error for using reserved "_T_x" identifiers. These names can 8372appear in a disassembled ASL file if they were emitted by the original 8373compiler. Instead of issuing an error or warning and forcing the user to 8374manually change these names, issue a remark instead. 8375 8376iASL: error if named object created in while loop. Emit an error if any 8377named 8378object is created within a While loop. If allowed, this code will 8379generate 8380a 8381run-time error on the second iteration of the loop when an attempt is 8382made 8383to 8384create the same named object twice. ACPICA bugzilla 730. 8385 8386iASL: Support absolute pathnames for include files. Add support for 8387absolute 8388pathnames within the Include operator. previously, only relative 8389pathnames 8390were supported. 8391 8392iASL: Enforce minimum 1 interrupt in interrupt macro and Resource 8393Descriptor. 8394The ACPI spec requires one interrupt minimum. BZ 423 8395 8396iASL: Handle a missing ResourceSource arg, with a present SourceIndex. 8397Handles the case for the Interrupt Resource Descriptor where 8398the ResourceSource argument is omitted but ResourceSourceIndex 8399is present. Now leave room for the Index. BZ 426 8400 8401iASL: Prevent error message if CondRefOf target does not exist. Fixes 8402cases 8403where an error message is emitted if the target does not exist. BZ 516 8404 8405iASL: Fix broken -g option (get Windows ACPI tables). Fixes the -g option 8406(get ACPI tables on Windows). This was apparently broken in version 840720070919. 8408 8409AcpiXtract: Handle EOF while extracting data. Correctly handle the case 8410where 8411the EOF happens immediately after the last table in the input file. Print 8412completion message. Previously, no message was displayed in this case. 8413 8414---------------------------------------- 841501 July 2008. Summary of changes for version 20080701: 8416 84170) Git source tree / acpica.org 8418 8419Fixed a problem where a git-clone from http would not transfer the entire 8420source tree. 8421 84221) ACPI CA Core Subsystem: 8423 8424Implemented a "careful" GPE disable in AcpiEvDisableGpe, only modify one 8425enable bit. Now performs a read-change-write of the enable register 8426instead 8427of simply writing out the cached enable mask. This will prevent 8428inadvertent 8429enabling of GPEs if a rogue GPE is received during initialization (before 8430GPE 8431handlers are installed.) 8432 8433Implemented a copy for dynamically loaded tables. Previously, dynamically 8434loaded tables were simply mapped - but on some machines this memory is 8435corrupted after suspend. Now copy the table to a local buffer. For the 8436OpRegion case, added checksum verify. Use the table length from the table 8437header, not the region length. For the Buffer case, use the table length 8438also. Dennis Noordsij, Bob Moore. BZ 10734 8439 8440Fixed a problem where the same ACPI table could not be dynamically loaded 8441and 8442unloaded more than once. Without this change, a table cannot be loaded 8443again 8444once it has been loaded/unloaded one time. The current mechanism does not 8445unregister a table upon an unload. During a load, if the same table is 8446found, 8447this no longer returns an exception. BZ 722 8448 8449Fixed a problem where the wrong descriptor length was calculated for the 8450EndTag descriptor in 64-bit mode. The "minimal" descriptors such as 8451EndTag 8452are calculated as 12 bytes long, but the actual length in the internal 8453descriptor is 16 because of the round-up to 8 on the 64-bit build. 8454Reported 8455by Linn Crosetto. BZ 728 8456 8457Fixed a possible memory leak in the Unload operator. The DdbHandle 8458returned 8459by Load() did not have its reference count decremented during unload, 8460leading 8461to a memory leak. Lin Ming. BZ 727 8462 8463Fixed a possible memory leak when deleting thermal/processor objects. Any 8464associated notify handlers (and objects) were not being deleted. Fiodor 8465Suietov. BZ 506 8466 8467Fixed the ordering of the ASCII names in the global mutex table to match 8468the 8469actual mutex IDs. Used by AcpiUtGetMutexName, a function used for debug 8470only. 8471Vegard Nossum. BZ 726 8472 8473Enhanced the AcpiGetObjectInfo interface to return the number of required 8474arguments if the object is a control method. Added this call to the 8475debugger 8476so the proper number of default arguments are passed to a method. This 8477prevents a warning when executing methods from AcpiExec. 8478 8479Added a check for an invalid handle in AcpiGetObjectInfo. Return 8480AE_BAD_PARAMETER if input handle is invalid. BZ 474 8481 8482Fixed an extraneous warning from exconfig.c on the 64-bit build. 8483 8484Example Code and Data Size: These are the sizes for the OS-independent 8485acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 8486debug version of the code includes the debug output trace mechanism and 8487has a 8488much larger code and data size. 8489 8490 Previous Release: 8491 Non-Debug Version: 79.3K Code, 16.2K Data, 95.5K Total 8492 Debug Version: 153.0K Code, 48.2K Data, 201.2K Total 8493 Current Release: 8494 Non-Debug Version: 79.6K Code, 16.2K Data, 95.8K Total 8495 Debug Version: 153.5K Code, 48.2K Data, 201.7K Total 8496 84972) iASL Compiler/Disassembler and Tools: 8498 8499iASL: Added two missing ACPI reserved names. Added _MTP and _ASZ, both 8500resource descriptor names. 8501 8502iASL: Detect invalid ASCII characters in input (windows version). Removed 8503the 8504"-CF" flag from the flex compile, enables correct detection of non-ASCII 8505characters in the input. BZ 441 8506 8507iASL: Eliminate warning when result of LoadTable is not used. Eliminate 8508the 8509"result of operation not used" warning when the DDB handle returned from 8510LoadTable is not used. The warning is not needed. BZ 590 8511 8512AcpiExec: Add support for dynamic table load/unload. Now calls _CFG 8513method 8514to 8515pass address of table to the AML. Added option to disable OpRegion 8516simulation 8517to allow creation of an OpRegion with a real address that was passed to 8518_CFG. 8519All of this allows testing of the Load and Unload operators from 8520AcpiExec. 8521 8522Debugger: update tables command for unloaded tables. Handle unloaded 8523tables 8524and use the standard table header output routine. 8525 8526---------------------------------------- 852709 June 2008. Summary of changes for version 20080609: 8528 85291) ACPI CA Core Subsystem: 8530 8531Implemented a workaround for reversed _PRT entries. A significant number 8532of 8533BIOSs erroneously reverse the _PRT SourceName and the SourceIndex. This 8534change dynamically detects and repairs this problem. Provides 8535compatibility 8536with MS ACPI. BZ 6859 8537 8538Simplified the internal ACPI hardware interfaces to eliminate the locking 8539flag parameter from Register Read/Write. Added a new external interface, 8540AcpiGetRegisterUnlocked. 8541 8542Fixed a problem where the invocation of a GPE control method could hang. 8543This 8544was a regression introduced in 20080514. The new method argument count 8545validation mechanism can enter an infinite loop when a GPE method is 8546dispatched. Problem fixed by removing the obsolete code that passed GPE 8547block 8548information to the notify handler via the control method parameter 8549pointer. 8550 8551Fixed a problem where the _SST execution status was incorrectly returned 8552to 8553the caller of AcpiEnterSleepStatePrep. This was a regression introduced 8554in 855520080514. _SST is optional and a NOT_FOUND exception should never be 8556returned. BZ 716 8557 8558Fixed a problem where a deleted object could be accessed from within the 8559AML 8560parser. This was a regression introduced in version 20080123 as a fix for 8561the 8562Unload operator. Lin Ming. BZ 10669 8563 8564Cleaned up the debug operand dump mechanism. Eliminated unnecessary 8565operands 8566and eliminated the use of a negative index in a loop. Operands are now 8567displayed in the correct order, not backwards. This also fixes a 8568regression 8569introduced in 20080514 on 64-bit systems where the elimination of 8570ACPI_NATIVE_UINT caused the negative index to go large and positive. BZ 8571715 8572 8573Fixed a possible memory leak in EvPciConfigRegionSetup where the error 8574exit 8575path did not delete a locally allocated structure. 8576 8577Updated definitions for the DMAR and SRAT tables to synchronize with the 8578current specifications. Includes disassembler support. 8579 8580Fixed a problem in the mutex debug code (in utmutex.c) where an incorrect 8581loop termination value was used. Loop terminated on iteration early, 8582missing 8583one mutex. Linn Crosetto 8584 8585Example Code and Data Size: These are the sizes for the OS-independent 8586acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 8587debug version of the code includes the debug output trace mechanism and 8588has a 8589much larger code and data size. 8590 8591 Previous Release: 8592 Non-Debug Version: 79.5K Code, 16.2K Data, 95.7K Total 8593 Debug Version: 153.3K Code, 48.3K Data, 201.6K Total 8594 Current Release: 8595 Non-Debug Version: 79.3K Code, 16.2K Data, 95.5K Total 8596 Debug Version: 153.0K Code, 48.2K Data, 201.2K Total 8597 85982) iASL Compiler/Disassembler and Tools: 8599 8600Disassembler: Implemented support for EisaId() within _CID objects. Now 8601disassemble integer _CID objects back to EisaId invocations, including 8602multiple integers within _CID packages. Includes single-step support for 8603debugger also. 8604 8605Disassembler: Added support for DMAR and SRAT table definition changes. 8606 8607---------------------------------------- 860814 May 2008. Summary of changes for version 20080514: 8609 86101) ACPI CA Core Subsystem: 8611 8612Fixed a problem where GPEs were enabled too early during the ACPICA 8613initialization. This could lead to "handler not installed" errors on some 8614machines. Moved GPE enable until after _REG/_STA/_INI methods are run. 8615This 8616ensures that all operation regions and devices throughout the namespace 8617have 8618been initialized before GPEs are enabled. Alexey Starikovskiy, BZ 9916. 8619 8620Implemented a change to the enter sleep code. Moved execution of the _GTS 8621method to just before setting sleep enable bit. The execution was moved 8622from 8623AcpiEnterSleepStatePrep to AcpiEnterSleepState. _GTS is now executed 8624immediately before the SLP_EN bit is set, as per the ACPI specification. 8625Luming Yu, BZ 1653. 8626 8627Implemented a fix to disable unknown GPEs (2nd version). Now always 8628disable 8629the GPE, even if ACPICA thinks that that it is already disabled. It is 8630possible that the AML or some other code has enabled the GPE unbeknownst 8631to 8632the ACPICA code. 8633 8634Fixed a problem with the Field operator where zero-length fields would 8635return 8636an AE_AML_NO_OPERAND exception during table load. Fix enables zero-length 8637ASL 8638field declarations in Field(), BankField(), and IndexField(). BZ 10606. 8639 8640Implemented a fix for the Load operator, now load the table at the 8641namespace 8642root. This reverts a change introduced in version 20071019. The table is 8643now 8644loaded at the namespace root even though this goes against the ACPI 8645specification. This provides compatibility with other ACPI 8646implementations. 8647The ACPI specification will be updated to reflect this in ACPI 4.0. Lin 8648Ming. 8649 8650Fixed a problem where ACPICA would not Load() tables with unusual 8651signatures. 8652Now ignore ACPI table signature for Load() operator. Only "SSDT" is 8653acceptable to the ACPI spec, but tables are seen with OEMx and null sigs. 8654Therefore, signature validation is worthless. Apparently MS ACPI accepts 8655such 8656signatures, ACPICA must be compatible. BZ 10454. 8657 8658Fixed a possible negative array index in AcpiUtValidateException. Added 8659NULL 8660fields to the exception string arrays to eliminate a -1 subtraction on 8661the 8662SubStatus field. 8663 8664Updated the debug tracking macros to reduce overall code and data size. 8665Changed ACPI_MODULE_NAME and ACPI_FUNCTION_NAME to use arrays of strings 8666instead of pointers to static strings. Jan Beulich and Bob Moore. 8667 8668Implemented argument count checking in control method invocation via 8669AcpiEvaluateObject. Now emit an error if too few arguments, warning if 8670too 8671many. This applies only to extern programmatic control method execution, 8672not 8673method-to-method calls within the AML. Lin Ming. 8674 8675Eliminated the ACPI_NATIVE_UINT type across all ACPICA code. This type is 8676no 8677longer needed, especially with the removal of 16-bit support. It was 8678replaced 8679mostly with UINT32, but also ACPI_SIZE where a type that changes 32/64 8680bit 8681on 868232/64-bit platforms is required. 8683 8684Added the C const qualifier for appropriate string constants -- mostly 8685MODULE_NAME and printf format strings. Jan Beulich. 8686 8687Example Code and Data Size: These are the sizes for the OS-independent 8688acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 8689debug version of the code includes the debug output trace mechanism and 8690has a 8691much larger code and data size. 8692 8693 Previous Release: 8694 Non-Debug Version: 80.0K Code, 17.4K Data, 97.4K Total 8695 Debug Version: 159.4K Code, 64.4K Data, 223.8K Total 8696 Current Release: 8697 Non-Debug Version: 79.5K Code, 16.2K Data, 95.7K Total 8698 Debug Version: 153.3K Code, 48.3K Data, 201.6K Total 8699 87002) iASL Compiler/Disassembler and Tools: 8701 8702Implemented ACPI table revision ID validation in the disassembler. Zero 8703is 8704always invalid. For DSDTs, the ID controls the interpreter integer width. 87051 8706means 32-bit and this is unusual. 2 or greater is 64-bit. 8707 8708---------------------------------------- 870921 March 2008. Summary of changes for version 20080321: 8710 87111) ACPI CA Core Subsystem: 8712 8713Implemented an additional change to the GPE support in order to suppress 8714spurious or stray GPEs. The AcpiEvDisableGpe function will now 8715permanently 8716disable incoming GPEs that are neither enabled nor disabled -- meaning 8717that 8718the GPE is unknown to the system. This should prevent future interrupt 8719floods 8720from that GPE. BZ 6217 (Zhang Rui) 8721 8722Fixed a problem where NULL package elements were not returned to the 8723AcpiEvaluateObject interface correctly. The element was simply ignored 8724instead of returning a NULL ACPI_OBJECT package element, potentially 8725causing 8726a buffer overflow and/or confusing the caller who expected a fixed number 8727of 8728elements. BZ 10132 (Lin Ming, Bob Moore) 8729 8730Fixed a problem with the CreateField, CreateXXXField (Bit, Byte, Word, 8731Dword, 8732Qword), Field, BankField, and IndexField operators when invoked from 8733inside 8734an executing control method. In this case, these operators created 8735namespace 8736nodes that were incorrectly left marked as permanent nodes instead of 8737temporary nodes. This could cause a problem if there is race condition 8738between an exiting control method and a running namespace walk. (Reported 8739by 8740Linn Crosetto) 8741 8742Fixed a problem where the CreateField and CreateXXXField operators would 8743incorrectly allow duplicate names (the name of the field) with no 8744exception 8745generated. 8746 8747Implemented several changes for Notify handling. Added support for new 8748Notify 8749values (ACPI 2.0+) and improved the Notify debug output. Notify on 8750PowerResource objects is no longer allowed, as per the ACPI 8751specification. 8752(Bob Moore, Zhang Rui) 8753 8754All Reference Objects returned via the AcpiEvaluateObject interface are 8755now 8756marked as type "REFERENCE" instead of "ANY". The type ANY is now reserved 8757for 8758NULL objects - either NULL package elements or unresolved named 8759references. 8760 8761Fixed a problem where an extraneous debug message was produced for 8762package 8763objects (when debugging enabled). The message "Package List length larger 8764than NumElements count" is now produced in the correct case, and is now 8765an 8766error message rather than a debug message. Added a debug message for the 8767opposite case, where NumElements is larger than the Package List (the 8768package 8769will be padded out with NULL elements as per the ACPI spec.) 8770 8771Implemented several improvements for the output of the ASL "Debug" object 8772to 8773clarify and keep all data for a given object on one output line. 8774 8775Fixed two size calculation issues with the variable-length Start 8776Dependent 8777resource descriptor. 8778 8779Example Code and Data Size: These are the sizes for the OS-independent 8780acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 8781debug version of the code includes the debug output trace mechanism and 8782has 8783a much larger code and data size. 8784 8785 Previous Release: 8786 Non-Debug Version: 79.7K Code, 17.3K Data, 97.0K Total 8787 Debug Version: 158.9K Code, 64.0K Data, 222.9K Total 8788 Current Release: 8789 Non-Debug Version: 80.0K Code, 17.4K Data, 97.4K Total 8790 Debug Version: 159.4K Code, 64.4K Data, 223.8K Total 8791 87922) iASL Compiler/Disassembler and Tools: 8793 8794Fixed a problem with the use of the Switch operator where execution of 8795the 8796containing method by multiple concurrent threads could cause an 8797AE_ALREADY_EXISTS exception. This is caused by the fact that there is no 8798actual Switch opcode, it must be simulated with local named temporary 8799variables and if/else pairs. The solution chosen was to mark any method 8800that 8801uses Switch as Serialized, thus preventing multiple thread entries. BZ 8802469. 8803 8804---------------------------------------- 880513 February 2008. Summary of changes for version 20080213: 8806 88071) ACPI CA Core Subsystem: 8808 8809Implemented another MS compatibility design change for GPE/Notify 8810handling. 8811GPEs are now cleared/enabled asynchronously to allow all pending notifies 8812to 8813complete first. It is expected that the OSL will queue the enable request 8814behind all pending notify requests (may require changes to the local host 8815OSL 8816in AcpiOsExecute). Alexey Starikovskiy. 8817 8818Fixed a problem where buffer and package objects passed as arguments to a 8819control method via the external AcpiEvaluateObject interface could cause 8820an 8821AE_AML_INTERNAL exception depending on the order and type of operators 8822executed by the target control method. 8823 8824Fixed a problem where resource descriptor size optimization could cause a 8825problem when a _CRS resource template is passed to a _SRS method. The 8826_SRS 8827resource template must use the same descriptors (with the same size) as 8828returned from _CRS. This change affects the following resource 8829descriptors: 8830IRQ / IRQNoFlags and StartDependendentFn / StartDependentFnNoPri. (BZ 88319487) 8832 8833Fixed a problem where a CopyObject to RegionField, BankField, and 8834IndexField 8835objects did not perform an implicit conversion as it should. These types 8836must 8837retain their initial type permanently as per the ACPI specification. 8838However, 8839a CopyObject to all other object types should not perform an implicit 8840conversion, as per the ACPI specification. (Lin Ming, Bob Moore) BZ 388 8841 8842Fixed a problem with the AcpiGetDevices interface where the mechanism to 8843match device CIDs did not examine the entire list of available CIDs, but 8844instead aborted on the first non-matching CID. Andrew Patterson. 8845 8846Fixed a regression introduced in version 20071114. The ACPI_HIDWORD macro 8847was 8848inadvertently changed to return a 16-bit value instead of a 32-bit value, 8849truncating the upper dword of a 64-bit value. This macro is only used to 8850display debug output, so no incorrect calculations were made. Also, 8851reimplemented the macro so that a 64-bit shift is not performed by 8852inefficient compilers. 8853 8854Added missing va_end statements that should correspond with each va_start 8855statement. 8856 8857Example Code and Data Size: These are the sizes for the OS-independent 8858acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 8859debug version of the code includes the debug output trace mechanism and 8860has 8861a much larger code and data size. 8862 8863 Previous Release: 8864 Non-Debug Version: 79.5K Code, 17.2K Data, 96.7K Total 8865 Debug Version: 159.0K Code, 63.8K Data, 222.8K Total 8866 Current Release: 8867 Non-Debug Version: 79.7K Code, 17.3K Data, 97.0K Total 8868 Debug Version: 158.9K Code, 64.0K Data, 222.9K Total 8869 88702) iASL Compiler/Disassembler and Tools: 8871 8872Implemented full disassembler support for the following new ACPI tables: 8873BERT, EINJ, and ERST. Implemented partial disassembler support for the 8874complicated HEST table. These tables support the Windows Hardware Error 8875Architecture (WHEA). 8876 8877---------------------------------------- 887823 January 2008. Summary of changes for version 20080123: 8879 88801) ACPI CA Core Subsystem: 8881 8882Added the 2008 copyright to all module headers and signons. This affects 8883virtually every file in the ACPICA core subsystem, the iASL compiler, and 8884the tools/utilities. 8885 8886Fixed a problem with the SizeOf operator when used with Package and 8887Buffer 8888objects. These objects have deferred execution for some arguments, and 8889the 8890execution is now completed before the SizeOf is executed. This problem 8891caused 8892unexpected AE_PACKAGE_LIMIT errors on some systems (Lin Ming, Bob Moore) 8893BZ 88949558 8895 8896Implemented an enhancement to the interpreter "slack mode". In the 8897absence 8898of 8899an explicit return or an implicitly returned object from the last 8900executed 8901opcode, a control method will now implicitly return an integer of value 0 8902for 8903Microsoft compatibility. (Lin Ming) BZ 392 8904 8905Fixed a problem with the Load operator where an exception was not 8906returned 8907in 8908the case where the table is already loaded. (Lin Ming) BZ 463 8909 8910Implemented support for the use of DDBHandles as an Indexed Reference, as 8911per 8912the ACPI spec. (Lin Ming) BZ 486 8913 8914Implemented support for UserTerm (Method invocation) for the Unload 8915operator 8916as per the ACPI spec. (Lin Ming) BZ 580 8917 8918Fixed a problem with the LoadTable operator where the OemId and 8919OemTableId 8920input strings could cause unexpected failures if they were shorter than 8921the 8922maximum lengths allowed. (Lin Ming, Bob Moore) BZ 576 8923 8924Implemented support for UserTerm (Method invocation) for the Unload 8925operator 8926as per the ACPI spec. (Lin Ming) BZ 580 8927 8928Implemented header file support for new ACPI tables - BERT, ERST, EINJ, 8929HEST, 8930IBFT, UEFI, WDAT. Disassembler support is forthcoming. 8931 8932Example Code and Data Size: These are the sizes for the OS-independent 8933acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 8934debug version of the code includes the debug output trace mechanism and 8935has 8936a much larger code and data size. 8937 8938 Previous Release: 8939 Non-Debug Version: 79.3K Code, 17.2K Data, 96.5K Total 8940 Debug Version: 158.6K Code, 63.8K Data, 222.4K Total 8941 Current Release: 8942 Non-Debug Version: 79.5K Code, 17.2K Data, 96.7K Total 8943 Debug Version: 159.0K Code, 63.8K Data, 222.8K Total 8944 89452) iASL Compiler/Disassembler and Tools: 8946 8947Implemented support in the disassembler for checksum validation on 8948incoming 8949binary DSDTs and SSDTs. If incorrect, a message is displayed within the 8950table 8951header dump at the start of the disassembly. 8952 8953Implemented additional debugging information in the namespace listing 8954file 8955created during compilation. In addition to the namespace hierarchy, the 8956full 8957pathname to each namespace object is displayed. 8958 8959Fixed a problem with the disassembler where invalid ACPI tables could 8960cause 8961faults or infinite loops. 8962 8963Fixed an unexpected parse error when using the optional "parameter types" 8964list in a control method declaration. (Lin Ming) BZ 397 8965 8966Fixed a problem where two External declarations with the same name did 8967not 8968cause an error (Lin Ming) BZ 509 8969 8970Implemented support for full TermArgs (adding Argx, Localx and method 8971invocation) for the ParameterData parameter to the LoadTable operator. 8972(Lin 8973Ming) BZ 583,587 8974 8975---------------------------------------- 897619 December 2007. Summary of changes for version 20071219: 8977 89781) ACPI CA Core Subsystem: 8979 8980Implemented full support for deferred execution for the TermArg string 8981arguments for DataTableRegion. This enables forward references and full 8982operand resolution for the three string arguments. Similar to 8983OperationRegion 8984deferred argument execution.) Lin Ming. BZ 430 8985 8986Implemented full argument resolution support for the BankValue argument 8987to 8988BankField. Previously, only constants were supported, now any TermArg may 8989be 8990used. Lin Ming BZ 387, 393 8991 8992Fixed a problem with AcpiGetDevices where the search of a branch of the 8993device tree could be terminated prematurely. In accordance with the ACPI 8994specification, the search down the current branch is terminated if a 8995device 8996is both not present and not functional (instead of just not present.) 8997Yakui 8998Zhao. 8999 9000Fixed a problem where "unknown" GPEs could be allowed to fire repeatedly 9001if 9002the underlying AML code changed the GPE enable registers. Now, any 9003unknown 9004incoming GPE (no _Lxx/_Exx method and not the EC GPE) is immediately 9005disabled 9006instead of simply ignored. Rui Zhang. 9007 9008Fixed a problem with Index Fields where the Index register was 9009incorrectly 9010limited to a maximum of 32 bits. Now any size may be used. 9011 9012Fixed a couple memory leaks associated with "implicit return" objects 9013when 9014the AML Interpreter slack mode is enabled. Lin Ming BZ 349 9015 9016Example Code and Data Size: These are the sizes for the OS-independent 9017acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 9018debug version of the code includes the debug output trace mechanism and 9019has 9020a much larger code and data size. 9021 9022 Previous Release: 9023 Non-Debug Version: 79.0K Code, 17.2K Data, 96.2K Total 9024 Debug Version: 157.9K Code, 63.6K Data, 221.5K Total 9025 Current Release: 9026 Non-Debug Version: 79.3K Code, 17.2K Data, 96.5K Total 9027 Debug Version: 158.6K Code, 63.8K Data, 222.4K Total 9028 9029---------------------------------------- 903014 November 2007. Summary of changes for version 20071114: 9031 90321) ACPI CA Core Subsystem: 9033 9034Implemented event counters for each of the Fixed Events, the ACPI SCI 9035(interrupt) itself, and control methods executed. Named 9036AcpiFixedEventCount[], AcpiSciCount, and AcpiMethodCount respectively. 9037These 9038should be useful for debugging and statistics. 9039 9040Implemented a new external interface, AcpiGetStatistics, to retrieve the 9041contents of the various event counters. Returns the current values for 9042AcpiSciCount, AcpiGpeCount, the AcpiFixedEventCount array, and 9043AcpiMethodCount. The interface can be expanded in the future if new 9044counters 9045are added. Device drivers should use this interface rather than access 9046the 9047counters directly. 9048 9049Fixed a problem with the FromBCD and ToBCD operators. With some 9050compilers, 9051the ShortDivide function worked incorrectly, causing problems with the 9052BCD 9053functions with large input values. A truncation from 64-bit to 32-bit 9054inadvertently occurred. Internal BZ 435. Lin Ming 9055 9056Fixed a problem with Index references passed as method arguments. 9057References 9058passed as arguments to control methods were dereferenced immediately 9059(before 9060control was passed to the called method). The references are now 9061correctly 9062passed directly to the called method. BZ 5389. Lin Ming 9063 9064Fixed a problem with CopyObject used in conjunction with the Index 9065operator. 9066The reference was incorrectly dereferenced before the copy. The reference 9067is 9068now correctly copied. BZ 5391. Lin Ming 9069 9070Fixed a problem with Control Method references within Package objects. 9071These 9072references are now correctly generated. This completes the package 9073construction overhaul that began in version 20071019. 9074 9075Example Code and Data Size: These are the sizes for the OS-independent 9076acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 9077debug version of the code includes the debug output trace mechanism and 9078has 9079a much larger code and data size. 9080 9081 Previous Release: 9082 Non-Debug Version: 78.8K Code, 17.2K Data, 96.0K Total 9083 Debug Version: 157.2K Code, 63.4K Data, 220.6K Total 9084 Current Release: 9085 Non-Debug Version: 79.0K Code, 17.2K Data, 96.2K Total 9086 Debug Version: 157.9K Code, 63.6K Data, 221.5K Total 9087 9088 90892) iASL Compiler/Disassembler and Tools: 9090 9091The AcpiExec utility now installs handlers for all of the predefined 9092Operation Region types. New types supported are: PCI_Config, CMOS, and 9093PCIBARTarget. 9094 9095Fixed a problem with the 64-bit version of AcpiExec where the extended 9096(64- 9097bit) address fields for the DSDT and FACS within the FADT were not being 9098used, causing truncation of the upper 32-bits of these addresses. Lin 9099Ming 9100and Bob Moore 9101 9102---------------------------------------- 910319 October 2007. Summary of changes for version 20071019: 9104 91051) ACPI CA Core Subsystem: 9106 9107Fixed a problem with the Alias operator when the target of the alias is a 9108named ASL operator that opens a new scope -- Scope, Device, 9109PowerResource, 9110Processor, and ThermalZone. In these cases, any children of the original 9111operator could not be accessed via the alias, potentially causing 9112unexpected 9113AE_NOT_FOUND exceptions. (BZ 9067) 9114 9115Fixed a problem with the Package operator where all named references were 9116created as object references and left otherwise unresolved. According to 9117the 9118ACPI specification, a Package can only contain Data Objects or references 9119to 9120control methods. The implication is that named references to Data Objects 9121(Integer, Buffer, String, Package, BufferField, Field) should be resolved 9122immediately upon package creation. This is the approach taken with this 9123change. References to all other named objects (Methods, Devices, Scopes, 9124etc.) are all now properly created as reference objects. (BZ 5328) 9125 9126Reverted a change to Notify handling that was introduced in version 912720070508. This version changed the Notify handling from asynchronous to 9128fully synchronous (Device driver Notify handling with respect to the 9129Notify 9130ASL operator). It was found that this change caused more problems than it 9131solved and was removed by most users. 9132 9133Fixed a problem with the Increment and Decrement operators where the type 9134of 9135the target object could be unexpectedly and incorrectly changed. (BZ 353) 9136Lin Ming. 9137 9138Fixed a problem with the Load and LoadTable operators where the table 9139location within the namespace was ignored. Instead, the table was always 9140loaded into the root or current scope. Lin Ming. 9141 9142Fixed a problem with the Load operator when loading a table from a buffer 9143object. The input buffer was prematurely zeroed and/or deleted. (BZ 577) 9144 9145Fixed a problem with the Debug object where a store of a DdbHandle 9146reference 9147object to the Debug object could cause a fault. 9148 9149Added a table checksum verification for the Load operator, in the case 9150where 9151the load is from a buffer. (BZ 578). 9152 9153Implemented additional parameter validation for the LoadTable operator. 9154The 9155length of the input strings SignatureString, OemIdString, and OemTableId 9156are 9157now checked for maximum lengths. (BZ 582) Lin Ming. 9158 9159Example Code and Data Size: These are the sizes for the OS-independent 9160acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 9161debug version of the code includes the debug output trace mechanism and 9162has 9163a much larger code and data size. 9164 9165 Previous Release: 9166 Non-Debug Version: 78.5K Code, 17.1K Data, 95.6K Total 9167 Debug Version: 156.7K Code, 63.2K Data, 219.9K Total 9168 Current Release: 9169 Non-Debug Version: 78.8K Code, 17.2K Data, 96.0K Total 9170 Debug Version: 157.2K Code, 63.4K Data, 220.6K Total 9171 9172 91732) iASL Compiler/Disassembler: 9174 9175Fixed a problem where if a single file was specified and the file did not 9176exist, no error message was emitted. (Introduced with wildcard support in 9177version 20070917.) 9178 9179---------------------------------------- 918019 September 2007. Summary of changes for version 20070919: 9181 91821) ACPI CA Core Subsystem: 9183 9184Designed and implemented new external interfaces to install and remove 9185handlers for ACPI table-related events. Current events that are defined 9186are 9187LOAD and UNLOAD. These interfaces allow the host to track ACPI tables as 9188they are dynamically loaded and unloaded. See AcpiInstallTableHandler and 9189AcpiRemoveTableHandler. (Lin Ming and Bob Moore) 9190 9191Fixed a problem where the use of the AcpiGbl_AllMethodsSerialized flag 9192(acpi_serialized option on Linux) could cause some systems to hang during 9193initialization. (Bob Moore) BZ 8171 9194 9195Fixed a problem where objects of certain types (Device, ThermalZone, 9196Processor, PowerResource) can be not found if they are declared and 9197referenced from within the same control method (Lin Ming) BZ 341 9198 9199Example Code and Data Size: These are the sizes for the OS-independent 9200acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 9201debug version of the code includes the debug output trace mechanism and 9202has 9203a much larger code and data size. 9204 9205 Previous Release: 9206 Non-Debug Version: 78.3K Code, 17.0K Data, 95.3K Total 9207 Debug Version: 156.3K Code, 63.1K Data, 219.4K Total 9208 Current Release: 9209 Non-Debug Version: 78.5K Code, 17.1K Data, 95.6K Total 9210 Debug Version: 156.7K Code, 63.2K Data, 219.9K Total 9211 9212 92132) iASL Compiler/Disassembler: 9214 9215Implemented support to allow multiple files to be compiled/disassembled 9216in 9217a 9218single invocation. This includes command line wildcard support for both 9219the 9220Windows and Unix versions of the compiler. This feature simplifies the 9221disassembly and compilation of multiple ACPI tables in a single 9222directory. 9223 9224---------------------------------------- 922508 May 2007. Summary of changes for version 20070508: 9226 92271) ACPI CA Core Subsystem: 9228 9229Implemented a Microsoft compatibility design change for the handling of 9230the 9231Notify AML operator. Previously, notify handlers were dispatched and 9232executed completely asynchronously in a deferred thread. The new design 9233still executes the notify handlers in a different thread, but the 9234original 9235thread that executed the Notify() now waits at a synchronization point 9236for 9237the notify handler to complete. Some machines depend on a synchronous 9238Notify 9239operator in order to operate correctly. 9240 9241Implemented support to allow Package objects to be passed as method 9242arguments to the external AcpiEvaluateObject interface. Previously, this 9243would return the AE_NOT_IMPLEMENTED exception. This feature had not been 9244implemented since there were no reserved control methods that required it 9245until recently. 9246 9247Fixed a problem with the internal FADT conversion where ACPI 1.0 FADTs 9248that 9249contained invalid non-zero values in reserved fields could cause later 9250failures because these fields have meaning in later revisions of the 9251FADT. 9252For incoming ACPI 1.0 FADTs, these fields are now always zeroed. (The 9253fields 9254are: Preferred_PM_Profile, PSTATE_CNT, CST_CNT, and IAPC_BOOT_FLAGS.) 9255 9256Fixed a problem where the Global Lock handle was not properly updated if 9257a 9258thread that acquired the Global Lock via executing AML code then 9259attempted 9260to acquire the lock via the AcpiAcquireGlobalLock interface. Reported by 9261Joe 9262Liu. 9263 9264Fixed a problem in AcpiEvDeleteGpeXrupt where the global interrupt list 9265could be corrupted if the interrupt being removed was at the head of the 9266list. Reported by Linn Crosetto. 9267 9268Example Code and Data Size: These are the sizes for the OS-independent 9269acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 9270debug version of the code includes the debug output trace mechanism and 9271has 9272a much larger code and data size. 9273 9274 Previous Release: 9275 Non-Debug Version: 78.0K Code, 17.1K Data, 95.1K Total 9276 Debug Version: 155.9K Code, 63.1K Data, 219.0K Total 9277 Current Release: 9278 Non-Debug Version: 78.3K Code, 17.0K Data, 95.3K Total 9279 Debug Version: 156.3K Code, 63.1K Data, 219.4K Total 9280 9281---------------------------------------- 928220 March 2007. Summary of changes for version 20070320: 9283 92841) ACPI CA Core Subsystem: 9285 9286Implemented a change to the order of interpretation and evaluation of AML 9287operand objects within the AML interpreter. The interpreter now evaluates 9288operands in the order that they appear in the AML stream (and the 9289corresponding ASL code), instead of in the reverse order (after the 9290entire 9291operand list has been parsed). The previous behavior caused several 9292subtle 9293incompatibilities with the Microsoft AML interpreter as well as being 9294somewhat non-intuitive. BZ 7871, local BZ 263. Valery Podrezov. 9295 9296Implemented a change to the ACPI Global Lock support. All interfaces to 9297the 9298global lock now allow the same thread to acquire the lock multiple times. 9299This affects the AcpiAcquireGlobalLock external interface to the global 9300lock 9301as well as the internal use of the global lock to support AML fields -- a 9302control method that is holding the global lock can now simultaneously 9303access 9304AML fields that require global lock protection. Previously, in both 9305cases, 9306this would have resulted in an AE_ALREADY_ACQUIRED exception. The change 9307to 9308AcpiAcquireGlobalLock is of special interest to drivers for the Embedded 9309Controller. There is no change to the behavior of the AML Acquire 9310operator, 9311as this can already be used to acquire a mutex multiple times by the same 9312thread. BZ 8066. With assistance from Alexey Starikovskiy. 9313 9314Fixed a problem where invalid objects could be referenced in the AML 9315Interpreter after error conditions. During operand evaluation, ensure 9316that 9317the internal "Return Object" field is cleared on error and only valid 9318pointers are stored there. Caused occasional access to deleted objects 9319that 9320resulted in "large reference count" warning messages. Valery Podrezov. 9321 9322Fixed a problem where an AE_STACK_OVERFLOW internal exception could occur 9323on 9324deeply nested control method invocations. BZ 7873, local BZ 487. Valery 9325Podrezov. 9326 9327Fixed an internal problem with the handling of result objects on the 9328interpreter result stack. BZ 7872. Valery Podrezov. 9329 9330Removed obsolete code that handled the case where AML_NAME_OP is the 9331target 9332of a reference (Reference.Opcode). This code was no longer necessary. BZ 93337874. Valery Podrezov. 9334 9335Removed obsolete ACPI_NO_INTEGER64_SUPPORT from two header files. This 9336was 9337a 9338remnant from the previously discontinued 16-bit support. 9339 9340Example Code and Data Size: These are the sizes for the OS-independent 9341acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 9342debug version of the code includes the debug output trace mechanism and 9343has 9344a much larger code and data size. 9345 9346 Previous Release: 9347 Non-Debug Version: 78.0K Code, 17.1K Data, 95.1K Total 9348 Debug Version: 155.8K Code, 63.3K Data, 219.1K Total 9349 Current Release: 9350 Non-Debug Version: 78.0K Code, 17.1K Data, 95.1K Total 9351 Debug Version: 155.9K Code, 63.1K Data, 219.0K Total 9352 9353---------------------------------------- 935426 January 2007. Summary of changes for version 20070126: 9355 93561) ACPI CA Core Subsystem: 9357 9358Added the 2007 copyright to all module headers and signons. This affects 9359virtually every file in the ACPICA core subsystem, the iASL compiler, and 9360the utilities. 9361 9362Implemented a fix for an incorrect parameter passed to AcpiTbDeleteTable 9363during a table load. A bad pointer was passed in the case where the DSDT 9364is 9365overridden, causing a fault in this case. 9366 9367Example Code and Data Size: These are the sizes for the OS-independent 9368acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 9369debug version of the code includes the debug output trace mechanism and 9370has 9371a much larger code and data size. 9372 9373 Previous Release: 9374 Non-Debug Version: 78.0K Code, 17.1K Data, 95.1K Total 9375 Debug Version: 155.8K Code, 63.3K Data, 219.1K Total 9376 Current Release: 9377 Non-Debug Version: 78.0K Code, 17.1K Data, 95.1K Total 9378 Debug Version: 155.8K Code, 63.3K Data, 219.1K Total 9379 9380---------------------------------------- 938115 December 2006. Summary of changes for version 20061215: 9382 93831) ACPI CA Core Subsystem: 9384 9385Support for 16-bit ACPICA has been completely removed since it is no 9386longer 9387necessary and it clutters the code. All 16-bit macros, types, and 9388conditional compiles have been removed, cleaning up and simplifying the 9389code 9390across the entire subsystem. DOS support is no longer needed since the 9391bootable Linux firmware kit is now available. 9392 9393The handler for the Global Lock is now removed during AcpiTerminate to 9394enable a clean subsystem restart, via the implementation of the 9395AcpiEvRemoveGlobalLockHandler function. (With assistance from Joel Bretz, 9396HP) 9397 9398Implemented enhancements to the multithreading support within the 9399debugger 9400to enable improved multithreading debugging and evaluation of the 9401subsystem. 9402(Valery Podrezov) 9403 9404Debugger: Enhanced the Statistics/Memory command to emit the total 9405(maximum) 9406memory used during the execution, as well as the maximum memory consumed 9407by 9408each of the various object types. (Valery Podrezov) 9409 9410Example Code and Data Size: These are the sizes for the OS-independent 9411acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 9412debug version of the code includes the debug output trace mechanism and 9413has 9414a much larger code and data size. 9415 9416 Previous Release: 9417 Non-Debug Version: 77.9K Code, 17.0K Data, 94.9K Total 9418 Debug Version: 155.2K Code, 63.1K Data, 218.3K Total 9419 Current Release: 9420 Non-Debug Version: 78.0K Code, 17.1K Data, 95.1K Total 9421 Debug Version: 155.8K Code, 63.3K Data, 219.1K Total 9422 9423 94242) iASL Compiler/Disassembler and Tools: 9425 9426AcpiExec: Implemented a new option (-m) to display full memory use 9427statistics upon subsystem/program termination. (Valery Podrezov) 9428 9429---------------------------------------- 943009 November 2006. Summary of changes for version 20061109: 9431 94321) ACPI CA Core Subsystem: 9433 9434Optimized the Load ASL operator in the case where the source operand is 9435an 9436operation region. Simply map the operation region memory, instead of 9437performing a bytewise read. (Region must be of type SystemMemory, see 9438below.) 9439 9440Fixed the Load ASL operator for the case where the source operand is a 9441region field. A buffer object is also allowed as the source operand. BZ 9442480 9443 9444Fixed a problem where the Load ASL operator allowed the source operand to 9445be 9446an operation region of any type. It is now restricted to regions of type 9447SystemMemory, as per the ACPI specification. BZ 481 9448 9449Additional cleanup and optimizations for the new Table Manager code. 9450 9451AcpiEnable will now fail if all of the required ACPI tables are not 9452loaded 9453(FADT, FACS, DSDT). BZ 477 9454 9455Added #pragma pack(8/4) to acobject.h to ensure that the structures in 9456this 9457header are always compiled as aligned. The ACPI_OPERAND_OBJECT has been 9458manually optimized to be aligned and will not work if it is byte-packed. 9459 9460Example Code and Data Size: These are the sizes for the OS-independent 9461acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 9462debug version of the code includes the debug output trace mechanism and 9463has 9464a much larger code and data size. 9465 9466 Previous Release: 9467 Non-Debug Version: 78.1K Code, 17.1K Data, 95.2K Total 9468 Debug Version: 155.4K Code, 63.1K Data, 218.5K Total 9469 Current Release: 9470 Non-Debug Version: 77.9K Code, 17.0K Data, 94.9K Total 9471 Debug Version: 155.2K Code, 63.1K Data, 218.3K Total 9472 9473 94742) iASL Compiler/Disassembler and Tools: 9475 9476Fixed a problem where the presence of the _OSI predefined control method 9477within complex expressions could cause an internal compiler error. 9478 9479AcpiExec: Implemented full region support for multiple address spaces. 9480SpaceId is now part of the REGION object. BZ 429 9481 9482---------------------------------------- 948311 October 2006. Summary of changes for version 20061011: 9484 94851) ACPI CA Core Subsystem: 9486 9487Completed an AML interpreter performance enhancement for control method 9488execution. Previously a 2-pass parse/execution, control methods are now 9489completely parsed and executed in a single pass. This improves overall 9490interpreter performance by ~25%, reduces code size, and reduces CPU stack 9491use. (Valery Podrezov + interpreter changes in version 20051202 that 9492eliminated namespace loading during the pass one parse.) 9493 9494Implemented _CID support for PCI Root Bridge detection. If the _HID does 9495not 9496match the predefined PCI Root Bridge IDs, the _CID list (if present) is 9497now 9498obtained and also checked for an ID match. 9499 9500Implemented additional support for the PCI _ADR execution: upsearch until 9501a 9502device scope is found before executing _ADR. This allows PCI_Config 9503operation regions to be declared locally within control methods 9504underneath 9505PCI device objects. 9506 9507Fixed a problem with a possible race condition between threads executing 9508AcpiWalkNamespace and the AML interpreter. This condition was removed by 9509modifying AcpiWalkNamespace to (by default) ignore all temporary 9510namespace 9511entries created during any concurrent control method execution. An 9512additional namespace race condition is known to exist between 9513AcpiWalkNamespace and the Load/Unload ASL operators and is still under 9514investigation. 9515 9516Restructured the AML ParseLoop function, breaking it into several 9517subfunctions in order to reduce CPU stack use and improve 9518maintainability. 9519(Mikhail Kouzmich) 9520 9521AcpiGetHandle: Fix for parameter validation to detect invalid 9522combinations 9523of prefix handle and pathname. BZ 478 9524 9525Example Code and Data Size: These are the sizes for the OS-independent 9526acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 9527debug version of the code includes the debug output trace mechanism and 9528has 9529a much larger code and data size. 9530 9531 Previous Release: 9532 Non-Debug Version: 77.9K Code, 17.1K Data, 95.0K Total 9533 Debug Version: 154.6K Code, 63.0K Data, 217.6K Total 9534 Current Release: 9535 Non-Debug Version: 78.1K Code, 17.1K Data, 95.2K Total 9536 Debug Version: 155.4K Code, 63.1K Data, 218.5K Total 9537 95382) iASL Compiler/Disassembler and Tools: 9539 9540Ported the -g option (get local ACPI tables) to the new ACPICA Table 9541Manager 9542to restore original behavior. 9543 9544---------------------------------------- 954527 September 2006. Summary of changes for version 20060927: 9546 95471) ACPI CA Core Subsystem: 9548 9549Removed the "Flags" parameter from AcpiGetRegister and AcpiSetRegister. 9550These functions now use a spinlock for mutual exclusion and the interrupt 9551level indication flag is not needed. 9552 9553Fixed a problem with the Global Lock where the lock could appear to be 9554obtained before it is actually obtained. The global lock semaphore was 9555inadvertently created with one unit instead of zero units. (BZ 464) 9556Fiodor 9557Suietov. 9558 9559Fixed a possible memory leak and fault in AcpiExResolveObjectToValue 9560during 9561a read from a buffer or region field. (BZ 458) Fiodor Suietov. 9562 9563Example Code and Data Size: These are the sizes for the OS-independent 9564acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 9565debug version of the code includes the debug output trace mechanism and 9566has 9567a much larger code and data size. 9568 9569 Previous Release: 9570 Non-Debug Version: 77.9K Code, 17.1K Data, 95.0K Total 9571 Debug Version: 154.7K Code, 63.0K Data, 217.7K Total 9572 Current Release: 9573 Non-Debug Version: 77.9K Code, 17.1K Data, 95.0K Total 9574 Debug Version: 154.6K Code, 63.0K Data, 217.6K Total 9575 9576 95772) iASL Compiler/Disassembler and Tools: 9578 9579Fixed a compilation problem with the pre-defined Resource Descriptor 9580field 9581names where an "object does not exist" error could be incorrectly 9582generated 9583if the parent ResourceTemplate pathname places the template within a 9584different namespace scope than the current scope. (BZ 7212) 9585 9586Fixed a problem where the compiler could hang after syntax errors 9587detected 9588in an ElseIf construct. (BZ 453) 9589 9590Fixed a problem with the AmlFilename parameter to the DefinitionBlock() 9591operator. An incorrect output filename was produced when this parameter 9592was 9593a null string (""). Now, the original input filename is used as the AML 9594output filename, with an ".aml" extension. 9595 9596Implemented a generic batch command mode for the AcpiExec utility 9597(execute 9598any AML debugger command) (Valery Podrezov). 9599 9600---------------------------------------- 960112 September 2006. Summary of changes for version 20060912: 9602 96031) ACPI CA Core Subsystem: 9604 9605Enhanced the implementation of the "serialized mode" of the interpreter 9606(enabled via the AcpiGbl_AllMethodsSerialized flag.) When this mode is 9607specified, instead of creating a serialization semaphore per control 9608method, 9609the interpreter lock is simply no longer released before a blocking 9610operation during control method execution. This effectively makes the AML 9611Interpreter single-threaded. The overhead of a semaphore per-method is 9612eliminated. 9613 9614Fixed a regression where an error was no longer emitted if a control 9615method 9616attempts to create 2 objects of the same name. This once again returns 9617AE_ALREADY_EXISTS. When this exception occurs, it invokes the mechanism 9618that 9619will dynamically serialize the control method to possible prevent future 9620errors. (BZ 440) 9621 9622Integrated a fix for a problem with PCI Express HID detection in the PCI 9623Config Space setup procedure. (BZ 7145) 9624 9625Moved all FADT-related functions to a new file, tbfadt.c. Eliminated the 9626AcpiHwInitialize function - the FADT registers are now validated when the 9627table is loaded. 9628 9629Added two new warnings during FADT verification - 1) if the FADT is 9630larger 9631than the largest known FADT version, and 2) if there is a mismatch 9632between 9633a 963432-bit block address and the 64-bit X counterpart (when both are non- 9635zero.) 9636 9637Example Code and Data Size: These are the sizes for the OS-independent 9638acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 9639debug version of the code includes the debug output trace mechanism and 9640has 9641a much larger code and data size. 9642 9643 Previous Release: 9644 Non-Debug Version: 77.9K Code, 16.7K Data, 94.6K Total 9645 Debug Version: 154.9K Code, 62.6K Data, 217.5K Total 9646 Current Release: 9647 Non-Debug Version: 77.9K Code, 17.1K Data, 95.0K Total 9648 Debug Version: 154.7K Code, 63.0K Data, 217.7K Total 9649 9650 96512) iASL Compiler/Disassembler and Tools: 9652 9653Fixed a problem with the implementation of the Switch() operator where 9654the 9655temporary variable was declared too close to the actual Switch, instead 9656of 9657at method level. This could cause a problem if the Switch() operator is 9658within a while loop, causing an error on the second iteration. (BZ 460) 9659 9660Disassembler - fix for error emitted for unknown type for target of scope 9661operator. Now, ignore it and continue. 9662 9663Disassembly of an FADT now verifies the input FADT and reports any errors 9664found. Fix for proper disassembly of full-sized (ACPI 2.0) FADTs. 9665 9666Disassembly of raw data buffers with byte initialization data now 9667prefixes 9668each output line with the current buffer offset. 9669 9670Disassembly of ASF! table now includes all variable-length data fields at 9671the end of some of the subtables. 9672 9673The disassembler now emits a comment if a buffer appears to be a 9674ResourceTemplate, but cannot be disassembled as such because the EndTag 9675does 9676not appear at the very end of the buffer. 9677 9678AcpiExec - Added the "-t" command line option to enable the serialized 9679mode 9680of the AML interpreter. 9681 9682---------------------------------------- 968331 August 2006. Summary of changes for version 20060831: 9684 96851) ACPI CA Core Subsystem: 9686 9687Miscellaneous fixes for the Table Manager: 9688- Correctly initialize internal common FADT for all 64-bit "X" fields 9689- Fixed a couple table mapping issues during table load 9690- Fixed a couple alignment issues for IA64 9691- Initialize input array to zero in AcpiInitializeTables 9692- Additional parameter validation for AcpiGetTable, AcpiGetTableHeader, 9693AcpiGetTableByIndex 9694 9695Change for GPE support: when a "wake" GPE is received, all wake GPEs are 9696now 9697immediately disabled to prevent the waking GPE from firing again and to 9698prevent other wake GPEs from interrupting the wake process. 9699 9700Added the AcpiGpeCount global that tracks the number of processed GPEs, 9701to 9702be used for debugging systems with a large number of ACPI interrupts. 9703 9704Implemented support for the "DMAR" ACPI table (DMA Redirection Table) in 9705both the ACPICA headers and the disassembler. 9706 9707Example Code and Data Size: These are the sizes for the OS-independent 9708acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 9709debug version of the code includes the debug output trace mechanism and 9710has 9711a much larger code and data size. 9712 9713 Previous Release: 9714 Non-Debug Version: 77.8K Code, 16.5K Data, 94.3K Total 9715 Debug Version: 154.6K Code, 62.3K Data, 216.9K Total 9716 Current Release: 9717 Non-Debug Version: 77.9K Code, 16.7K Data, 94.6K Total 9718 Debug Version: 154.9K Code, 62.6K Data, 217.5K Total 9719 9720 97212) iASL Compiler/Disassembler and Tools: 9722 9723Disassembler support for the DMAR ACPI table. 9724 9725---------------------------------------- 972623 August 2006. Summary of changes for version 20060823: 9727 97281) ACPI CA Core Subsystem: 9729 9730The Table Manager component has been completely redesigned and 9731reimplemented. The new design is much simpler, and reduces the overall 9732code 9733and data size of the kernel-resident ACPICA by approximately 5%. Also, it 9734is 9735now possible to obtain the ACPI tables very early during kernel 9736initialization, even before dynamic memory management is initialized. 9737(Alexey Starikovskiy, Fiodor Suietov, Bob Moore) 9738 9739Obsolete ACPICA interfaces: 9740 9741- AcpiGetFirmwareTable: Use AcpiGetTable instead (works at early kernel 9742init 9743time). 9744- AcpiLoadTable: Not needed. 9745- AcpiUnloadTable: Not needed. 9746 9747New ACPICA interfaces: 9748 9749- AcpiInitializeTables: Must be called before the table manager can be 9750used. 9751- AcpiReallocateRootTable: Used to transfer the root table to dynamically 9752allocated memory after it becomes available. 9753- AcpiGetTableByIndex: Allows the host to easily enumerate all ACPI 9754tables 9755in the RSDT/XSDT. 9756 9757Other ACPICA changes: 9758 9759- AcpiGetTableHeader returns the actual mapped table header, not a copy. 9760Use 9761AcpiOsUnmapMemory to free this mapping. 9762- AcpiGetTable returns the actual mapped table. The mapping is managed 9763internally and must not be deleted by the caller. Use of this interface 9764causes no additional dynamic memory allocation. 9765- AcpiFindRootPointer: Support for physical addressing has been 9766eliminated, 9767it appeared to be unused. 9768- The interface to AcpiOsMapMemory has changed to be consistent with the 9769other allocation interfaces. 9770- The interface to AcpiOsGetRootPointer has changed to eliminate 9771unnecessary 9772parameters. 9773- ACPI_PHYSICAL_ADDRESS is now 32 bits on 32-bit platforms, 64 bits on 977464- 9775bit platforms. Was previously 64 bits on all platforms. 9776- The interface to the ACPI Global Lock acquire/release macros have 9777changed 9778slightly since ACPICA no longer keeps a local copy of the FACS with a 9779constructed pointer to the actual global lock. 9780 9781Porting to the new table manager: 9782 9783- AcpiInitializeTables: Must be called once, and can be called anytime 9784during the OS initialization process. It allows the host to specify an 9785area 9786of memory to be used to store the internal version of the RSDT/XSDT (root 9787table). This allows the host to access ACPI tables before memory 9788management 9789is initialized and running. 9790- AcpiReallocateRootTable: Can be called after memory management is 9791running 9792to copy the root table to a dynamically allocated array, freeing up the 9793scratch memory specified in the call to AcpiInitializeTables. 9794- AcpiSubsystemInitialize: This existing interface is independent of the 9795Table Manager, and does not have to be called before the Table Manager 9796can 9797be used, it only must be called before the rest of ACPICA can be used. 9798- ACPI Tables: Some changes have been made to the names and structure of 9799the 9800actbl.h and actbl1.h header files and may require changes to existing 9801code. 9802For example, bitfields have been completely removed because of their lack 9803of 9804portability across C compilers. 9805- Update interfaces to the Global Lock acquire/release macros if local 9806versions are used. (see acwin.h) 9807 9808Obsolete files: tbconvrt.c, tbget.c, tbgetall.c, tbrsdt.c 9809 9810New files: tbfind.c 9811 9812Example Code and Data Size: These are the sizes for the OS-independent 9813acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 9814debug version of the code includes the debug output trace mechanism and 9815has 9816a much larger code and data size. 9817 9818 Previous Release: 9819 Non-Debug Version: 80.7K Code, 17.9K Data, 98.6K Total 9820 Debug Version: 161.0K Code, 65.1K Data, 226.1K Total 9821 Current Release: 9822 Non-Debug Version: 77.8K Code, 16.5K Data, 94.3K Total 9823 Debug Version: 154.6K Code, 62.3K Data, 216.9K Total 9824 9825 98262) iASL Compiler/Disassembler and Tools: 9827 9828No changes for this release. 9829 9830---------------------------------------- 983121 July 2006. Summary of changes for version 20060721: 9832 98331) ACPI CA Core Subsystem: 9834 9835The full source code for the ASL test suite used to validate the iASL 9836compiler and the ACPICA core subsystem is being released with the ACPICA 9837source for the first time. The source is contained in a separate package 9838and 9839consists of over 1100 files that exercise all ASL/AML operators. The 9840package 9841should appear on the Intel/ACPI web site shortly. (Valery Podrezov, 9842Fiodor 9843Suietov) 9844 9845Completed a new design and implementation for support of the ACPI Global 9846Lock. On the OS side, the global lock is now treated as a standard AML 9847mutex. Previously, multiple OS threads could "acquire" the global lock 9848simultaneously. However, this could cause the BIOS to be starved out of 9849the 9850lock - especially in cases such as the Embedded Controller driver where 9851there is a tight coupling between the OS and the BIOS. 9852 9853Implemented an optimization for the ACPI Global Lock interrupt mechanism. 9854The Global Lock interrupt handler no longer queues the execution of a 9855separate thread to signal the global lock semaphore. Instead, the 9856semaphore 9857is signaled directly from the interrupt handler. 9858 9859Implemented support within the AML interpreter for package objects that 9860contain a larger AML length (package list length) than the package 9861element 9862count. In this case, the length of the package is truncated to match the 9863package element count. Some BIOS code apparently modifies the package 9864length 9865on the fly, and this change supports this behavior. Provides 9866compatibility 9867with the MS AML interpreter. (With assistance from Fiodor Suietov) 9868 9869Implemented a temporary fix for the BankValue parameter of a Bank Field 9870to 9871support all constant values, now including the Zero and One opcodes. 9872Evaluation of this parameter must eventually be converted to a full 9873TermArg 9874evaluation. A not-implemented error is now returned (temporarily) for 9875non- 9876constant values for this parameter. 9877 9878Fixed problem reports (Fiodor Suietov) integrated: 9879- Fix for premature object deletion after CopyObject on Operation Region 9880(BZ 9881350) 9882 9883Example Code and Data Size: These are the sizes for the OS-independent 9884acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 9885debug version of the code includes the debug output trace mechanism and 9886has 9887a much larger code and data size. 9888 9889 Previous Release: 9890 Non-Debug Version: 80.7K Code, 18.0K Data, 98.7K Total 9891 Debug Version: 160.9K Code, 65.1K Data, 226.0K Total 9892 Current Release: 9893 Non-Debug Version: 80.7K Code, 17.9K Data, 98.6K Total 9894 Debug Version: 161.0K Code, 65.1K Data, 226.1K Total 9895 9896 98972) iASL Compiler/Disassembler and Tools: 9898 9899No changes for this release. 9900 9901---------------------------------------- 990207 July 2006. Summary of changes for version 20060707: 9903 99041) ACPI CA Core Subsystem: 9905 9906Added the ACPI_PACKED_POINTERS_NOT_SUPPORTED macro to support C compilers 9907that do not allow the initialization of address pointers within packed 9908structures - even though the hardware itself may support misaligned 9909transfers. Some of the debug data structures are packed by default to 9910minimize size. 9911 9912Added an error message for the case where AcpiOsGetThreadId() returns 9913zero. 9914A non-zero value is required by the core ACPICA code to ensure the proper 9915operation of AML mutexes and recursive control methods. 9916 9917The DSDT is now the only ACPI table that determines whether the AML 9918interpreter is in 32-bit or 64-bit mode. Not really a functional change, 9919but 9920the hooks for per-table 32/64 switching have been removed from the code. 9921A 9922clarification to the ACPI specification is forthcoming in ACPI 3.0B. 9923 9924Fixed a possible leak of an OwnerID in the error path of 9925AcpiTbInitTableDescriptor (tbinstal.c), and migrated all table OwnerID 9926deletion to a single place in AcpiTbUninstallTable to correct possible 9927leaks 9928when using the AcpiTbDeleteTablesByType interface (with assistance from 9929Lance Ortiz.) 9930 9931Fixed a problem with Serialized control methods where the semaphore 9932associated with the method could be over-signaled after multiple method 9933invocations. 9934 9935Fixed two issues with the locking of the internal namespace data 9936structure. 9937Both the Unload() operator and AcpiUnloadTable interface now lock the 9938namespace during the namespace deletion associated with the table unload 9939(with assistance from Linn Crosetto.) 9940 9941Fixed problem reports (Valery Podrezov) integrated: 9942- Eliminate unnecessary memory allocation for CreateXxxxField (BZ 5426) 9943 9944Fixed problem reports (Fiodor Suietov) integrated: 9945- Incomplete cleanup branches in AcpiTbGetTableRsdt (BZ 369) 9946- On Address Space handler deletion, needless deactivation call (BZ 374) 9947- AcpiRemoveAddressSpaceHandler: validate Device handle parameter (BZ 9948375) 9949- Possible memory leak, Notify sub-objects of Processor, Power, 9950ThermalZone 9951(BZ 376) 9952- AcpiRemoveAddressSpaceHandler: validate Handler parameter (BZ 378) 9953- Minimum Length of RSDT should be validated (BZ 379) 9954- AcpiRemoveNotifyHandler: return AE_NOT_EXIST if Processor Obj has no 9955Handler (BZ (380) 9956- AcpiUnloadTable: return AE_NOT_EXIST if no table of specified type 9957loaded 9958(BZ 381) 9959 9960Example Code and Data Size: These are the sizes for the OS-independent 9961acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 9962debug version of the code includes the debug output trace mechanism and 9963has 9964a much larger code and data size. 9965 9966 Previous Release: 9967 Non-Debug Version: 80.5K Code, 17.8K Data, 98.3K Total 9968 Debug Version: 160.8K Code, 64.8K Data, 225.6K Total 9969 Current Release: 9970 Non-Debug Version: 80.7K Code, 17.9K Data, 98.6K Total 9971 Debug Version: 161.0K Code, 65.1K Data, 226.1K Total 9972 9973 99742) iASL Compiler/Disassembler and Tools: 9975 9976Fixed problem reports: 9977Compiler segfault when ASL contains a long (>1024) String declaration (BZ 9978436) 9979 9980---------------------------------------- 998123 June 2006. Summary of changes for version 20060623: 9982 99831) ACPI CA Core Subsystem: 9984 9985Implemented a new ACPI_SPINLOCK type for the OSL lock interfaces. This 9986allows the type to be customized to the host OS for improved efficiency 9987(since a spinlock is usually a very small object.) 9988 9989Implemented support for "ignored" bits in the ACPI registers. According 9990to 9991the ACPI specification, these bits should be preserved when writing the 9992registers via a read/modify/write cycle. There are 3 bits preserved in 9993this 9994manner: PM1_CONTROL[0] (SCI_EN), PM1_CONTROL[9], and PM1_STATUS[11]. 9995 9996Implemented the initial deployment of new OSL mutex interfaces. Since 9997some 9998host operating systems have separate mutex and semaphore objects, this 9999feature was requested. The base code now uses mutexes (and the new mutex 10000interfaces) wherever a binary semaphore was used previously. However, for 10001the current release, the mutex interfaces are defined as macros to map 10002them 10003to the existing semaphore interfaces. Therefore, no OSL changes are 10004required 10005at this time. (See acpiosxf.h) 10006 10007Fixed several problems with the support for the control method SyncLevel 10008parameter. The SyncLevel now works according to the ACPI specification 10009and 10010in concert with the Mutex SyncLevel parameter, since the current 10011SyncLevel 10012is a property of the executing thread. Mutual exclusion for control 10013methods 10014is now implemented with a mutex instead of a semaphore. 10015 10016Fixed three instances of the use of the C shift operator in the bitfield 10017support code (exfldio.c) to avoid the use of a shift value larger than 10018the 10019target data width. The behavior of C compilers is undefined in this case 10020and 10021can cause unpredictable results, and therefore the case must be detected 10022and 10023avoided. (Fiodor Suietov) 10024 10025Added an info message whenever an SSDT or OEM table is loaded dynamically 10026via the Load() or LoadTable() ASL operators. This should improve 10027debugging 10028capability since it will show exactly what tables have been loaded 10029(beyond 10030the tables present in the RSDT/XSDT.) 10031 10032Example Code and Data Size: These are the sizes for the OS-independent 10033acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 10034debug version of the code includes the debug output trace mechanism and 10035has 10036a much larger code and data size. 10037 10038 Previous Release: 10039 Non-Debug Version: 80.0K Code, 17.6K Data, 97.6K Total 10040 Debug Version: 160.2K Code, 64.7K Data, 224.9K Total 10041 Current Release: 10042 Non-Debug Version: 80.5K Code, 17.8K Data, 98.3K Total 10043 Debug Version: 160.8K Code, 64.8K Data, 225.6K Total 10044 10045 100462) iASL Compiler/Disassembler and Tools: 10047 10048No changes for this release. 10049 10050---------------------------------------- 1005108 June 2006. Summary of changes for version 20060608: 10052 100531) ACPI CA Core Subsystem: 10054 10055Converted the locking mutex used for the ACPI hardware to a spinlock. 10056This 10057change should eliminate all problems caused by attempting to acquire a 10058semaphore at interrupt level, and it means that all ACPICA external 10059interfaces that directly access the ACPI hardware can be safely called 10060from 10061interrupt level. OSL code that implements the semaphore interfaces should 10062be 10063able to eliminate any workarounds for being called at interrupt level. 10064 10065Fixed a regression introduced in 20060526 where the ACPI device 10066initialization could be prematurely aborted with an AE_NOT_FOUND if a 10067device 10068did not have an optional _INI method. 10069 10070Fixed an IndexField issue where a write to the Data Register should be 10071limited in size to the AccessSize (width) of the IndexField itself. (BZ 10072433, 10073Fiodor Suietov) 10074 10075Fixed problem reports (Valery Podrezov) integrated: 10076- Allow store of ThermalZone objects to Debug object (BZ 5369/5370) 10077 10078Fixed problem reports (Fiodor Suietov) integrated: 10079- AcpiGetTableHeader doesn't handle multiple instances correctly (BZ 364) 10080 10081Removed four global mutexes that were obsolete and were no longer being 10082used. 10083 10084Example Code and Data Size: These are the sizes for the OS-independent 10085acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 10086debug version of the code includes the debug output trace mechanism and 10087has 10088a much larger code and data size. 10089 10090 Previous Release: 10091 Non-Debug Version: 80.0K Code, 17.7K Data, 97.7K Total 10092 Debug Version: 160.3K Code, 64.9K Data, 225.2K Total 10093 Current Release: 10094 Non-Debug Version: 80.0K Code, 17.6K Data, 97.6K Total 10095 Debug Version: 160.2K Code, 64.7K Data, 224.9K Total 10096 10097 100982) iASL Compiler/Disassembler and Tools: 10099 10100Fixed a fault when using -g option (get tables from registry) on Windows 10101machines. 10102 10103Fixed problem reports integrated: 10104- Generate error if CreateField NumBits parameter is zero. (BZ 405) 10105- Fault if Offset/Length in Field unit is very large (BZ 432, Fiodor 10106Suietov) 10107- Global table revision override (-r) is ignored (BZ 413) 10108 10109---------------------------------------- 1011026 May 2006. Summary of changes for version 20060526: 10111 101121) ACPI CA Core Subsystem: 10113 10114Restructured, flattened, and simplified the internal interfaces for 10115namespace object evaluation - resulting in smaller code, less CPU stack 10116use, 10117and fewer interfaces. (With assistance from Mikhail Kouzmich) 10118 10119Fixed a problem with the CopyObject operator where the first parameter 10120was 10121not typed correctly for the parser, interpreter, compiler, and 10122disassembler. 10123Caused various errors and unexpected behavior. 10124 10125Fixed a problem where a ShiftLeft or ShiftRight of more than 64 bits 10126produced incorrect results with some C compilers. Since the behavior of C 10127compilers when the shift value is larger than the datatype width is 10128apparently not well defined, the interpreter now detects this condition 10129and 10130simply returns zero as expected in all such cases. (BZ 395) 10131 10132Fixed problem reports (Valery Podrezov) integrated: 10133- Update String-to-Integer conversion to match ACPI 3.0A spec (BZ 5329) 10134- Allow interpreter to handle nested method declarations (BZ 5361) 10135 10136Fixed problem reports (Fiodor Suietov) integrated: 10137- AcpiTerminate doesn't free debug memory allocation list objects (BZ 10138355) 10139- After Core Subsystem shutdown, AcpiSubsystemStatus returns AE_OK (BZ 10140356) 10141- AcpiOsUnmapMemory for RSDP can be invoked inconsistently (BZ 357) 10142- Resource Manager should return AE_TYPE for non-device objects (BZ 358) 10143- Incomplete cleanup branch in AcpiNsEvaluateRelative (BZ 359) 10144- Use AcpiOsFree instead of ACPI_FREE in AcpiRsSetSrsMethodData (BZ 360) 10145- Incomplete cleanup branch in AcpiPsParseAml (BZ 361) 10146- Incomplete cleanup branch in AcpiDsDeleteWalkState (BZ 362) 10147- AcpiGetTableHeader returns AE_NO_ACPI_TABLES until DSDT is loaded (BZ 10148365) 10149- Status of the Global Initialization Handler call not used (BZ 366) 10150- Incorrect object parameter to Global Initialization Handler (BZ 367) 10151 10152Example Code and Data Size: These are the sizes for the OS-independent 10153acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 10154debug version of the code includes the debug output trace mechanism and 10155has 10156a much larger code and data size. 10157 10158 Previous Release: 10159 Non-Debug Version: 79.8K Code, 17.7K Data, 97.5K Total 10160 Debug Version: 160.5K Code, 65.1K Data, 225.6K Total 10161 Current Release: 10162 Non-Debug Version: 80.0K Code, 17.7K Data, 97.7K Total 10163 Debug Version: 160.3K Code, 64.9K Data, 225.2K Total 10164 10165 101662) iASL Compiler/Disassembler and Tools: 10167 10168Modified the parser to allow the names IO, DMA, and IRQ to be used as 10169namespace identifiers with no collision with existing resource descriptor 10170macro names. This provides compatibility with other ASL compilers and is 10171most useful for disassembly/recompilation of existing tables without 10172parse 10173errors. (With assistance from Thomas Renninger) 10174 10175Disassembler: fixed an incorrect disassembly problem with the 10176DataTableRegion and CopyObject operators. Fixed a possible fault during 10177disassembly of some Alias operators. 10178 10179---------------------------------------- 1018012 May 2006. Summary of changes for version 20060512: 10181 101821) ACPI CA Core Subsystem: 10183 10184Replaced the AcpiOsQueueForExecution interface with a new interface named 10185AcpiOsExecute. The major difference is that the new interface does not 10186have 10187a Priority parameter, this appeared to be useless and has been replaced 10188by 10189a 10190Type parameter. The Type tells the host what type of execution is being 10191requested, such as global lock handler, notify handler, GPE handler, etc. 10192This allows the host to queue and execute the request as appropriate for 10193the 10194request type, possibly using different work queues and different 10195priorities 10196for the various request types. This enables fixes for multithreading 10197deadlock problems such as BZ #5534, and will require changes to all 10198existing 10199OS interface layers. (Alexey Starikovskiy and Bob Moore) 10200 10201Fixed a possible memory leak associated with the support for the so- 10202called 10203"implicit return" ACPI extension. Reported by FreeBSD, BZ #6514. (Fiodor 10204Suietov) 10205 10206Fixed a problem with the Load() operator where a table load from an 10207operation region could overwrite an internal table buffer by up to 7 10208bytes 10209and cause alignment faults on IPF systems. (With assistance from Luming 10210Yu) 10211 10212Example Code and Data Size: These are the sizes for the OS-independent 10213acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 10214debug version of the code includes the debug output trace mechanism and 10215has 10216a much larger code and data size. 10217 10218 Previous Release: 10219 Non-Debug Version: 79.7K Code, 17.7K Data, 97.4K Total 10220 Debug Version: 160.1K Code, 65.2K Data, 225.3K Total 10221 Current Release: 10222 Non-Debug Version: 79.8K Code, 17.7K Data, 97.5K Total 10223 Debug Version: 160.5K Code, 65.1K Data, 225.6K Total 10224 10225 10226 102272) iASL Compiler/Disassembler and Tools: 10228 10229Disassembler: Implemented support to cross reference the internal 10230namespace 10231and automatically generate ASL External() statements for symbols not 10232defined 10233within the current table being disassembled. This will simplify the 10234disassembly and recompilation of interdependent tables such as SSDTs 10235since 10236these statements will no longer have to be added manually. 10237 10238Disassembler: Implemented experimental support to automatically detect 10239invocations of external control methods and generate appropriate 10240External() 10241statements. This is problematic because the AML cannot be correctly 10242parsed 10243until the number of arguments for each control method is known. 10244Currently, 10245standalone method invocations and invocations as the source operand of a 10246Store() statement are supported. 10247 10248Disassembler: Implemented support for the ASL pseudo-operators LNotEqual, 10249LLessEqual, and LGreaterEqual. Previously disassembled as LNot(LEqual()), 10250LNot(LGreater()), and LNot(LLess()), this makes the disassembled ASL code 10251more readable and likely closer to the original ASL source. 10252 10253---------------------------------------- 1025421 April 2006. Summary of changes for version 20060421: 10255 102561) ACPI CA Core Subsystem: 10257 10258Removed a device initialization optimization introduced in 20051216 where 10259the _STA method was not run unless an _INI was also present for the same 10260device. This optimization could cause problems because it could allow 10261_INI 10262methods to be run within a not-present device subtree. (If a not-present 10263device had no _INI, _STA would not be run, the not-present status would 10264not 10265be discovered, and the children of the device would be incorrectly 10266traversed.) 10267 10268Implemented a new _STA optimization where namespace subtrees that do not 10269contain _INI are identified and ignored during device initialization. 10270Selectively running _STA can significantly improve boot time on large 10271machines (with assistance from Len Brown.) 10272 10273Implemented support for the device initialization case where the returned 10274_STA flags indicate a device not-present but functioning. In this case, 10275_INI 10276is not run, but the device children are examined for presence, as per the 10277ACPI specification. 10278 10279Implemented an additional change to the IndexField support in order to 10280conform to MS behavior. The value written to the Index Register is not 10281simply a byte offset, it is a byte offset in units of the access width of 10282the parent Index Field. (Fiodor Suietov) 10283 10284Defined and deployed a new OSL interface, AcpiOsValidateAddress. This 10285interface is called during the creation of all AML operation regions, and 10286allows the host OS to exert control over what addresses it will allow the 10287AML code to access. Operation Regions whose addresses are disallowed will 10288cause a runtime exception when they are actually accessed (will not 10289affect 10290or abort table loading.) See oswinxf or osunixxf for an example 10291implementation. 10292 10293Defined and deployed a new OSL interface, AcpiOsValidateInterface. This 10294interface allows the host OS to match the various "optional" 10295interface/behavior strings for the _OSI predefined control method as 10296appropriate (with assistance from Bjorn Helgaas.) See oswinxf or osunixxf 10297for an example implementation. 10298 10299Restructured and corrected various problems in the exception handling 10300code 10301paths within DsCallControlMethod and DsTerminateControlMethod in dsmethod 10302(with assistance from Takayoshi Kochi.) 10303 10304Modified the Linux source converter to ignore quoted string literals 10305while 10306converting identifiers from mixed to lower case. This will correct 10307problems 10308with the disassembler and other areas where such strings must not be 10309modified. 10310 10311The ACPI_FUNCTION_* macros no longer require quotes around the function 10312name. This allows the Linux source converter to convert the names, now 10313that 10314the converter ignores quoted strings. 10315 10316Example Code and Data Size: These are the sizes for the OS-independent 10317acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 10318debug version of the code includes the debug output trace mechanism and 10319has 10320a much larger code and data size. 10321 10322 Previous Release: 10323 10324 Non-Debug Version: 81.1K Code, 17.7K Data, 98.8K Total 10325 Debug Version: 158.9K Code, 64.9K Data, 223.8K Total 10326 Current Release: 10327 Non-Debug Version: 79.7K Code, 17.7K Data, 97.4K Total 10328 Debug Version: 160.1K Code, 65.2K Data, 225.3K Total 10329 10330 103312) iASL Compiler/Disassembler and Tools: 10332 10333Implemented 3 new warnings for iASL, and implemented multiple warning 10334levels 10335(w2 flag). 10336 103371) Ignored timeouts: If the TimeoutValue parameter to Wait or Acquire is 10338not 10339WAIT_FOREVER (0xFFFF) and the code does not examine the return value to 10340check for the possible timeout, a warning is issued. 10341 103422) Useless operators: If an ASL operator does not specify an optional 10343target 10344operand and it also does not use the function return value from the 10345operator, a warning is issued since the operator effectively does 10346nothing. 10347 103483) Unreferenced objects: If a namespace object is created, but never 10349referenced, a warning is issued. This is a warning level 2 since there 10350are 10351cases where this is ok, such as when a secondary table is loaded that 10352uses 10353the unreferenced objects. Even so, care is taken to only flag objects 10354that 10355don't look like they will ever be used. For example, the reserved methods 10356(starting with an underscore) are usually not referenced because it is 10357expected that the OS will invoke them. 10358 10359---------------------------------------- 1036031 March 2006. Summary of changes for version 20060331: 10361 103621) ACPI CA Core Subsystem: 10363 10364Implemented header file support for the following additional ACPI tables: 10365ASF!, BOOT, CPEP, DBGP, MCFG, SPCR, SPMI, TCPA, and WDRT. With this 10366support, 10367all current and known ACPI tables are now defined in the ACPICA headers 10368and 10369are available for use by device drivers and other software. 10370 10371Implemented support to allow tables that contain ACPI names with invalid 10372characters to be loaded. Previously, this would cause the table load to 10373fail, but since there are several known cases of such tables on existing 10374machines, this change was made to enable ACPI support for them. Also, 10375this 10376matches the behavior of the Microsoft ACPI implementation. 10377 10378Fixed a couple regressions introduced during the memory optimization in 10379the 1038020060317 release. The namespace node definition required additional 10381reorganization and an internal datatype that had been changed to 8-bit 10382was 10383restored to 32-bit. (Valery Podrezov) 10384 10385Fixed a problem where a null pointer passed to AcpiUtDeleteGenericState 10386could be passed through to AcpiOsReleaseObject which is unexpected. Such 10387null pointers are now trapped and ignored, matching the behavior of the 10388previous implementation before the deployment of AcpiOsReleaseObject. 10389(Valery Podrezov, Fiodor Suietov) 10390 10391Fixed a memory mapping leak during the deletion of a SystemMemory 10392operation 10393region where a cached memory mapping was not deleted. This became a 10394noticeable problem for operation regions that are defined within 10395frequently 10396used control methods. (Dana Meyers) 10397 10398Reorganized the ACPI table header files into two main files: one for the 10399ACPI tables consumed by the ACPICA core, and another for the 10400miscellaneous 10401ACPI tables that are consumed by the drivers and other software. The 10402various 10403FADT definitions were merged into one common section and three different 10404tables (ACPI 1.0, 1.0+, and 2.0) 10405 10406Example Code and Data Size: These are the sizes for the OS-independent 10407acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 10408debug version of the code includes the debug output trace mechanism and 10409has 10410a much larger code and data size. 10411 10412 Previous Release: 10413 Non-Debug Version: 80.9K Code, 17.7K Data, 98.6K Total 10414 Debug Version: 158.7K Code, 64.8K Data, 223.5K Total 10415 Current Release: 10416 Non-Debug Version: 81.1K Code, 17.7K Data, 98.8K Total 10417 Debug Version: 158.9K Code, 64.9K Data, 223.8K Total 10418 10419 104202) iASL Compiler/Disassembler and Tools: 10421 10422Disassembler: Implemented support to decode and format all non-AML ACPI 10423tables (tables other than DSDTs and SSDTs.) This includes the new tables 10424added to the ACPICA headers, therefore all current and known ACPI tables 10425are 10426supported. 10427 10428Disassembler: The change to allow ACPI names with invalid characters also 10429enables the disassembly of such tables. Invalid characters within names 10430are 10431changed to '*' to make the name printable; the iASL compiler will still 10432generate an error for such names, however, since this is an invalid ACPI 10433character. 10434 10435Implemented an option for AcpiXtract (-a) to extract all tables found in 10436the 10437input file. The default invocation extracts only the DSDTs and SSDTs. 10438 10439Fixed a couple of gcc generation issues for iASL and AcpiExec and added a 10440makefile for the AcpiXtract utility. 10441 10442---------------------------------------- 1044317 March 2006. Summary of changes for version 20060317: 10444 104451) ACPI CA Core Subsystem: 10446 10447Implemented the use of a cache object for all internal namespace nodes. 10448Since there are about 1000 static nodes in a typical system, this will 10449decrease memory use for cache implementations that minimize per- 10450allocation 10451overhead (such as a slab allocator.) 10452 10453Removed the reference count mechanism for internal namespace nodes, since 10454it 10455was deemed unnecessary. This reduces the size of each namespace node by 10456about 5%-10% on all platforms. Nodes are now 20 bytes for the 32-bit 10457case, 10458and 32 bytes for the 64-bit case. 10459 10460Optimized several internal data structures to reduce object size on 64- 10461bit 10462platforms by packing data within the 64-bit alignment. This includes the 10463frequently used ACPI_OPERAND_OBJECT, of which there can be ~1000 static 10464instances corresponding to the namespace objects. 10465 10466Added two new strings for the predefined _OSI method: "Windows 2001.1 10467SP1" 10468and "Windows 2006". 10469 10470Split the allocation tracking mechanism out to a separate file, from 10471utalloc.c to uttrack.c. This mechanism appears to be only useful for 10472application-level code. Kernels may wish to not include uttrack.c in 10473distributions. 10474 10475Removed all remnants of the obsolete ACPI_REPORT_* macros and the 10476associated 10477code. (These macros have been replaced by the ACPI_ERROR and ACPI_WARNING 10478macros.) 10479 10480Code and Data Size: These are the sizes for the acpica.lib produced by 10481the 10482Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any 10483ACPI 10484driver or OSPM code. The debug version of the code includes the debug 10485output 10486trace mechanism and has a much larger code and data size. Note that these 10487values will vary depending on the efficiency of the compiler and the 10488compiler options used during generation. 10489 10490 Previous Release: 10491 Non-Debug Version: 81.1K Code, 17.8K Data, 98.9K Total 10492 Debug Version: 161.6K Code, 65.7K Data, 227.3K Total 10493 Current Release: 10494 Non-Debug Version: 80.9K Code, 17.7K Data, 98.6K Total 10495 Debug Version: 158.7K Code, 64.8K Data, 223.5K Total 10496 10497 104982) iASL Compiler/Disassembler and Tools: 10499 10500Implemented an ANSI C version of the acpixtract utility. This version 10501will 10502automatically extract the DSDT and all SSDTs from the input acpidump text 10503file and dump the binary output to separate files. It can also display a 10504summary of the input file including the headers for each table found and 10505will extract any single ACPI table, with any signature. (See 10506source/tools/acpixtract) 10507 10508---------------------------------------- 1050910 March 2006. Summary of changes for version 20060310: 10510 105111) ACPI CA Core Subsystem: 10512 10513Tagged all external interfaces to the subsystem with the new 10514ACPI_EXPORT_SYMBOL macro. This macro can be defined as necessary to 10515assist 10516kernel integration. For Linux, the macro resolves to the EXPORT_SYMBOL 10517macro. The default definition is NULL. 10518 10519Added the ACPI_THREAD_ID type for the return value from 10520AcpiOsGetThreadId. 10521This allows the host to define this as necessary to simplify kernel 10522integration. The default definition is ACPI_NATIVE_UINT. 10523 10524Fixed two interpreter problems related to error processing, the deletion 10525of 10526objects, and placing invalid pointers onto the internal operator result 10527stack. BZ 6028, 6151 (Valery Podrezov) 10528 10529Increased the reference count threshold where a warning is emitted for 10530large 10531reference counts in order to eliminate unnecessary warnings on systems 10532with 10533large namespaces (especially 64-bit.) Increased the value from 0x400 to 105340x800. 10535 10536Due to universal disagreement as to the meaning of the 'c' in the 10537calloc() 10538function, the ACPI_MEM_CALLOCATE macro has been renamed to 10539ACPI_ALLOCATE_ZEROED so that the purpose of the interface is 'clear'. 10540ACPI_MEM_ALLOCATE and ACPI_MEM_FREE are renamed to ACPI_ALLOCATE and 10541ACPI_FREE. 10542 10543Code and Data Size: These are the sizes for the acpica.lib produced by 10544the 10545Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any 10546ACPI 10547driver or OSPM code. The debug version of the code includes the debug 10548output 10549trace mechanism and has a much larger code and data size. Note that these 10550values will vary depending on the efficiency of the compiler and the 10551compiler options used during generation. 10552 10553 Previous Release: 10554 Non-Debug Version: 81.0K Code, 17.8K Data, 98.8K Total 10555 Debug Version: 161.4K Code, 65.7K Data, 227.1K Total 10556 Current Release: 10557 Non-Debug Version: 81.1K Code, 17.8K Data, 98.9K Total 10558 Debug Version: 161.6K Code, 65.7K Data, 227.3K Total 10559 10560 105612) iASL Compiler/Disassembler: 10562 10563Disassembler: implemented support for symbolic resource descriptor 10564references. If a CreateXxxxField operator references a fixed offset 10565within 10566a 10567resource descriptor, a name is assigned to the descriptor and the offset 10568is 10569translated to the appropriate resource tag and pathname. The addition of 10570this support brings the disassembled code very close to the original ASL 10571source code and helps eliminate run-time errors when the disassembled 10572code 10573is modified (and recompiled) in such a way as to invalidate the original 10574fixed offsets. 10575 10576Implemented support for a Descriptor Name as the last parameter to the 10577ASL 10578Register() macro. This parameter was inadvertently left out of the ACPI 10579specification, and will be added for ACPI 3.0b. 10580 10581Fixed a problem where the use of the "_OSI" string (versus the full path 10582"\_OSI") caused an internal compiler error. ("No back ptr to op") 10583 10584Fixed a problem with the error message that occurs when an invalid string 10585is 10586used for a _HID object (such as one with an embedded asterisk: 10587"*PNP010A".) 10588The correct message is now displayed. 10589 10590---------------------------------------- 1059117 February 2006. Summary of changes for version 20060217: 10592 105931) ACPI CA Core Subsystem: 10594 10595Implemented a change to the IndexField support to match the behavior of 10596the 10597Microsoft AML interpreter. The value written to the Index register is now 10598a 10599byte offset, no longer an index based upon the width of the Data 10600register. 10601This should fix IndexField problems seen on some machines where the Data 10602register is not exactly one byte wide. The ACPI specification will be 10603clarified on this point. 10604 10605Fixed a problem where several resource descriptor types could overrun the 10606internal descriptor buffer due to size miscalculation: VendorShort, 10607VendorLong, and Interrupt. This was noticed on IA64 machines, but could 10608affect all platforms. 10609 10610Fixed a problem where individual resource descriptors were misaligned 10611within 10612the internal buffer, causing alignment faults on IA64 platforms. 10613 10614Code and Data Size: These are the sizes for the acpica.lib produced by 10615the 10616Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any 10617ACPI 10618driver or OSPM code. The debug version of the code includes the debug 10619output 10620trace mechanism and has a much larger code and data size. Note that these 10621values will vary depending on the efficiency of the compiler and the 10622compiler options used during generation. 10623 10624 Previous Release: 10625 Non-Debug Version: 81.1K Code, 17.8K Data, 98.9K Total 10626 Debug Version: 161.3K Code, 65.6K Data, 226.9K Total 10627 Current Release: 10628 Non-Debug Version: 81.0K Code, 17.8K Data, 98.8K Total 10629 Debug Version: 161.4K Code, 65.7K Data, 227.1K Total 10630 10631 106322) iASL Compiler/Disassembler: 10633 10634Implemented support for new reserved names: _WDG and _WED are Microsoft 10635extensions for Windows Instrumentation Management, _TDL is a new ACPI- 10636defined method (Throttling Depth Limit.) 10637 10638Fixed a problem where a zero-length VendorShort or VendorLong resource 10639descriptor was incorrectly emitted as a descriptor of length one. 10640 10641---------------------------------------- 1064210 February 2006. Summary of changes for version 20060210: 10643 106441) ACPI CA Core Subsystem: 10645 10646Removed a couple of extraneous ACPI_ERROR messages that appeared during 10647normal execution. These became apparent after the conversion from 10648ACPI_DEBUG_PRINT. 10649 10650Fixed a problem where the CreateField operator could hang if the BitIndex 10651or 10652NumBits parameter referred to a named object. (Valery Podrezov, BZ 5359) 10653 10654Fixed a problem where a DeRefOf operation on a buffer object incorrectly 10655failed with an exception. This also fixes a couple of related RefOf and 10656DeRefOf issues. (Valery Podrezov, BZ 5360/5392/5387) 10657 10658Fixed a problem where the AE_BUFFER_LIMIT exception was returned instead 10659of 10660AE_STRING_LIMIT on an out-of-bounds Index() operation. (Valery Podrezov, 10661BZ 106625480) 10663 10664Implemented a memory cleanup at the end of the execution of each 10665iteration 10666of an AML While() loop, preventing the accumulation of outstanding 10667objects. 10668(Valery Podrezov, BZ 5427) 10669 10670Eliminated a chunk of duplicate code in the object resolution code. 10671(Valery 10672Podrezov, BZ 5336) 10673 10674Fixed several warnings during the 64-bit code generation. 10675 10676The AcpiSrc source code conversion tool now inserts one line of 10677whitespace 10678after an if() statement that is followed immediately by a comment, 10679improving 10680readability of the Linux code. 10681 10682Code and Data Size: The current and previous library sizes for the core 10683subsystem are shown below. These are the code and data sizes for the 10684acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 10685These 10686values do not include any ACPI driver or OSPM code. The debug version of 10687the 10688code includes the debug output trace mechanism and has a much larger code 10689and data size. Note that these values will vary depending on the 10690efficiency 10691of the compiler and the compiler options used during generation. 10692 10693 Previous Release: 10694 Non-Debug Version: 81.0K Code, 17.9K Data, 98.9K Total 10695 Debug Version: 161.3K Code, 65.7K Data, 227.0K Total 10696 Current Release: 10697 Non-Debug Version: 81.1K Code, 17.8K Data, 98.9K Total 10698 Debug Version: 161.3K Code, 65.6K Data, 226.9K Total 10699 10700 107012) iASL Compiler/Disassembler: 10702 10703Fixed a problem with the disassembly of a BankField operator with a 10704complex 10705expression for the BankValue parameter. 10706 10707---------------------------------------- 1070827 January 2006. Summary of changes for version 20060127: 10709 107101) ACPI CA Core Subsystem: 10711 10712Implemented support in the Resource Manager to allow unresolved 10713namestring 10714references within resource package objects for the _PRT method. This 10715support 10716is in addition to the previously implemented unresolved reference support 10717within the AML parser. If the interpreter slack mode is enabled, these 10718unresolved references will be passed through to the caller as a NULL 10719package 10720entry. 10721 10722Implemented and deployed new macros and functions for error and warning 10723messages across the subsystem. These macros are simpler and generate less 10724code than their predecessors. The new macros ACPI_ERROR, ACPI_EXCEPTION, 10725ACPI_WARNING, and ACPI_INFO replace the ACPI_REPORT_* macros. The older 10726macros remain defined to allow ACPI drivers time to migrate to the new 10727macros. 10728 10729Implemented the ACPI_CPU_FLAGS type to simplify host OS integration of 10730the 10731Acquire/Release Lock OSL interfaces. 10732 10733Fixed a problem where Alias ASL operators are sometimes not correctly 10734resolved, in both the interpreter and the iASL compiler. 10735 10736Fixed several problems with the implementation of the 10737ConcatenateResTemplate 10738ASL operator. As per the ACPI specification, zero length buffers are now 10739treated as a single EndTag. One-length buffers always cause a fatal 10740exception. Non-zero length buffers that do not end with a full 2-byte 10741EndTag 10742cause a fatal exception. 10743 10744Fixed a possible structure overwrite in the AcpiGetObjectInfo external 10745interface. (With assistance from Thomas Renninger) 10746 10747Code and Data Size: The current and previous library sizes for the core 10748subsystem are shown below. These are the code and data sizes for the 10749acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 10750These 10751values do not include any ACPI driver or OSPM code. The debug version of 10752the 10753code includes the debug output trace mechanism and has a much larger code 10754and data size. Note that these values will vary depending on the 10755efficiency 10756of the compiler and the compiler options used during generation. 10757 10758 Previous Release: 10759 Non-Debug Version: 83.1K Code, 18.4K Data, 101.5K Total 10760 Debug Version: 163.2K Code, 66.2K Data, 229.4K Total 10761 Current Release: 10762 Non-Debug Version: 81.0K Code, 17.9K Data, 98.9K Total 10763 Debug Version: 161.3K Code, 65.7K Data, 227.0K Total 10764 10765 107662) iASL Compiler/Disassembler: 10767 10768Fixed an internal error that was generated for any forward references to 10769ASL 10770Alias objects. 10771 10772---------------------------------------- 1077313 January 2006. Summary of changes for version 20060113: 10774 107751) ACPI CA Core Subsystem: 10776 10777Added 2006 copyright to all module headers and signons. This affects 10778virtually every file in the ACPICA core subsystem, iASL compiler, and the 10779utilities. 10780 10781Enhanced the ACPICA error reporting in order to simplify user migration 10782to 10783the non-debug version of ACPICA. Replaced all instances of the 10784ACPI_DEBUG_PRINT macro invoked at the ACPI_DB_ERROR and ACPI_DB_WARN 10785debug 10786levels with the ACPI_REPORT_ERROR and ACPI_REPORT_WARNING macros, 10787respectively. This preserves all error and warning messages in the non- 10788debug 10789version of the ACPICA code (this has been referred to as the "debug lite" 10790option.) Over 200 cases were converted to create a total of over 380 10791error/warning messages across the ACPICA code. This increases the code 10792and 10793data size of the default non-debug version of the code somewhat (about 1079413K), 10795but all error/warning reporting may be disabled if desired (and code 10796eliminated) by specifying the ACPI_NO_ERROR_MESSAGES compile-time 10797configuration option. The size of the debug version of ACPICA remains 10798about 10799the same. 10800 10801Fixed a memory leak within the AML Debugger "Set" command. One object was 10802not properly deleted for every successful invocation of the command. 10803 10804Code and Data Size: The current and previous library sizes for the core 10805subsystem are shown below. These are the code and data sizes for the 10806acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 10807These 10808values do not include any ACPI driver or OSPM code. The debug version of 10809the 10810code includes the debug output trace mechanism and has a much larger code 10811and data size. Note that these values will vary depending on the 10812efficiency 10813of the compiler and the compiler options used during generation. 10814 10815 Previous Release: 10816 Non-Debug Version: 76.6K Code, 12.3K Data, 88.9K Total 10817 Debug Version: 163.7K Code, 67.5K Data, 231.2K Total 10818 Current Release: 10819 Non-Debug Version: 83.1K Code, 18.4K Data, 101.5K Total 10820 Debug Version: 163.2K Code, 66.2K Data, 229.4K Total 10821 10822 108232) iASL Compiler/Disassembler: 10824 10825The compiler now officially supports the ACPI 3.0a specification that was 10826released on December 30, 2005. (Specification is available at 10827www.acpi.info) 10828 10829---------------------------------------- 1083016 December 2005. Summary of changes for version 20051216: 10831 108321) ACPI CA Core Subsystem: 10833 10834Implemented optional support to allow unresolved names within ASL Package 10835objects. A null object is inserted in the package when a named reference 10836cannot be located in the current namespace. Enabled via the interpreter 10837slack flag, this should eliminate AE_NOT_FOUND exceptions seen on 10838machines 10839that contain such code. 10840 10841Implemented an optimization to the initialization sequence that can 10842improve 10843boot time. During ACPI device initialization, the _STA method is now run 10844if 10845and only if the _INI method exists. The _STA method is used to determine 10846if 10847the device is present; An _INI can only be run if _STA returns present, 10848but 10849it is a waste of time to run the _STA method if the _INI does not exist. 10850(Prototype and assistance from Dong Wei) 10851 10852Implemented use of the C99 uintptr_t for the pointer casting macros if it 10853is 10854available in the current compiler. Otherwise, the default (void *) cast 10855is 10856used as before. 10857 10858Fixed some possible memory leaks found within the execution path of the 10859Break, Continue, If, and CreateField operators. (Valery Podrezov) 10860 10861Fixed a problem introduced in the 20051202 release where an exception is 10862generated during method execution if a control method attempts to declare 10863another method. 10864 10865Moved resource descriptor string constants that are used by both the AML 10866disassembler and AML debugger to the common utilities directory so that 10867these components are independent. 10868 10869Implemented support in the AcpiExec utility (-e switch) to globally 10870ignore 10871exceptions during control method execution (method is not aborted.) 10872 10873Added the rsinfo.c source file to the AcpiExec makefile for Linux/Unix 10874generation. 10875 10876Code and Data Size: The current and previous library sizes for the core 10877subsystem are shown below. These are the code and data sizes for the 10878acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 10879These 10880values do not include any ACPI driver or OSPM code. The debug version of 10881the 10882code includes the debug output trace mechanism and has a much larger code 10883and data size. Note that these values will vary depending on the 10884efficiency 10885of the compiler and the compiler options used during generation. 10886 10887 Previous Release: 10888 Non-Debug Version: 76.3K Code, 12.3K Data, 88.6K Total 10889 Debug Version: 163.2K Code, 67.4K Data, 230.6K Total 10890 Current Release: 10891 Non-Debug Version: 76.6K Code, 12.3K Data, 88.9K Total 10892 Debug Version: 163.7K Code, 67.5K Data, 231.2K Total 10893 10894 108952) iASL Compiler/Disassembler: 10896 10897Fixed a problem where a CPU stack overflow fault could occur if a 10898recursive 10899method call was made from within a Return statement. 10900 10901---------------------------------------- 1090202 December 2005. Summary of changes for version 20051202: 10903 109041) ACPI CA Core Subsystem: 10905 10906Modified the parsing of control methods to no longer create namespace 10907objects during the first pass of the parse. Objects are now created only 10908during the execute phase, at the moment the namespace creation operator 10909is 10910encountered in the AML (Name, OperationRegion, CreateByteField, etc.) 10911This 10912should eliminate ALREADY_EXISTS exceptions seen on some machines where 10913reentrant control methods are protected by an AML mutex. The mutex will 10914now 10915correctly block multiple threads from attempting to create the same 10916object 10917more than once. 10918 10919Increased the number of available Owner Ids for namespace object tracking 10920from 32 to 255. This should eliminate the OWNER_ID_LIMIT exceptions seen 10921on 10922some machines with a large number of ACPI tables (either static or 10923dynamic). 10924 10925Fixed a problem with the AcpiExec utility where a fault could occur when 10926the 10927-b switch (batch mode) is used. 10928 10929Enhanced the namespace dump routine to output the owner ID for each 10930namespace object. 10931 10932Code and Data Size: The current and previous library sizes for the core 10933subsystem are shown below. These are the code and data sizes for the 10934acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 10935These 10936values do not include any ACPI driver or OSPM code. The debug version of 10937the 10938code includes the debug output trace mechanism and has a much larger code 10939and data size. Note that these values will vary depending on the 10940efficiency 10941of the compiler and the compiler options used during generation. 10942 10943 Previous Release: 10944 Non-Debug Version: 76.3K Code, 12.3K Data, 88.6K Total 10945 Debug Version: 163.0K Code, 67.4K Data, 230.4K Total 10946 Current Release: 10947 Non-Debug Version: 76.3K Code, 12.3K Data, 88.6K Total 10948 Debug Version: 163.2K Code, 67.4K Data, 230.6K Total 10949 10950 109512) iASL Compiler/Disassembler: 10952 10953Fixed a parse error during compilation of certain Switch/Case constructs. 10954To 10955simplify the parse, the grammar now allows for multiple Default 10956statements 10957and this error is now detected and flagged during the analysis phase. 10958 10959Disassembler: The disassembly now includes the contents of the original 10960table header within a comment at the start of the file. This includes the 10961name and version of the original ASL compiler. 10962 10963---------------------------------------- 1096417 November 2005. Summary of changes for version 20051117: 10965 109661) ACPI CA Core Subsystem: 10967 10968Fixed a problem in the AML parser where the method thread count could be 10969decremented below zero if any errors occurred during the method parse 10970phase. 10971This should eliminate AE_AML_METHOD_LIMIT exceptions seen on some 10972machines. 10973This also fixed a related regression with the mechanism that detects and 10974corrects methods that cannot properly handle reentrancy (related to the 10975deployment of the new OwnerId mechanism.) 10976 10977Eliminated the pre-parsing of control methods (to detect errors) during 10978table load. Related to the problem above, this was causing unwind issues 10979if 10980any errors occurred during the parse, and it seemed to be overkill. A 10981table 10982load should not be aborted if there are problems with any single control 10983method, thus rendering this feature rather pointless. 10984 10985Fixed a problem with the new table-driven resource manager where an 10986internal 10987buffer overflow could occur for small resource templates. 10988 10989Implemented a new external interface, AcpiGetVendorResource. This 10990interface 10991will find and return a vendor-defined resource descriptor within a _CRS 10992or 10993_PRS method via an ACPI 3.0 UUID match. With assistance from Bjorn 10994Helgaas. 10995 10996Removed the length limit (200) on string objects as per the upcoming ACPI 109973.0A specification. This affects the following areas of the interpreter: 109981) 10999any implicit conversion of a Buffer to a String, 2) a String object 11000result 11001of the ASL Concatentate operator, 3) the String object result of the ASL 11002ToString operator. 11003 11004Fixed a problem in the Windows OS interface layer (OSL) where a 11005WAIT_FOREVER 11006on a semaphore object would incorrectly timeout. This allows the 11007multithreading features of the AcpiExec utility to work properly under 11008Windows. 11009 11010Updated the Linux makefiles for the iASL compiler and AcpiExec to include 11011the recently added file named "utresrc.c". 11012 11013Code and Data Size: The current and previous library sizes for the core 11014subsystem are shown below. These are the code and data sizes for the 11015acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 11016These 11017values do not include any ACPI driver or OSPM code. The debug version of 11018the 11019code includes the debug output trace mechanism and has a much larger code 11020and data size. Note that these values will vary depending on the 11021efficiency 11022of the compiler and the compiler options used during generation. 11023 11024 Previous Release: 11025 Non-Debug Version: 76.2K Code, 12.3K Data, 88.5K Total 11026 Debug Version: 163.0K Code, 67.4K Data, 230.4K Total 11027 Current Release: 11028 Non-Debug Version: 76.3K Code, 12.3K Data, 88.6K Total 11029 Debug Version: 163.0K Code, 67.4K Data, 230.4K Total 11030 11031 110322) iASL Compiler/Disassembler: 11033 11034Removed the limit (200) on string objects as per the upcoming ACPI 3.0A 11035specification. For the iASL compiler, this means that string literals 11036within 11037the source ASL can be of any length. 11038 11039Enhanced the listing output to dump the AML code for resource descriptors 11040immediately after the ASL code for each descriptor, instead of in a block 11041at 11042the end of the entire resource template. 11043 11044Enhanced the compiler debug output to dump the entire original parse tree 11045constructed during the parse phase, before any transforms are applied to 11046the 11047tree. The transformed tree is dumped also. 11048 11049---------------------------------------- 1105002 November 2005. Summary of changes for version 20051102: 11051 110521) ACPI CA Core Subsystem: 11053 11054Modified the subsystem initialization sequence to improve GPE support. 11055The 11056GPE initialization has been split into two parts in order to defer 11057execution 11058of the _PRW methods (Power Resources for Wake) until after the hardware 11059is 11060fully initialized and the SCI handler is installed. This allows the _PRW 11061methods to access fields protected by the Global Lock. This will fix 11062systems 11063where a NO_GLOBAL_LOCK exception has been seen during initialization. 11064 11065Converted the ACPI internal object disassemble and display code within 11066the 11067AML debugger to fully table-driven operation, reducing code size and 11068increasing maintainability. 11069 11070Fixed a regression with the ConcatenateResTemplate() ASL operator 11071introduced 11072in the 20051021 release. 11073 11074Implemented support for "local" internal ACPI object types within the 11075debugger "Object" command and the AcpiWalkNamespace external interfaces. 11076These local types include RegionFields, BankFields, IndexFields, Alias, 11077and 11078reference objects. 11079 11080Moved common AML resource handling code into a new file, "utresrc.c". 11081This 11082code is shared by both the Resource Manager and the AML Debugger. 11083 11084Code and Data Size: The current and previous library sizes for the core 11085subsystem are shown below. These are the code and data sizes for the 11086acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 11087These 11088values do not include any ACPI driver or OSPM code. The debug version of 11089the 11090code includes the debug output trace mechanism and has a much larger code 11091and data size. Note that these values will vary depending on the 11092efficiency 11093of the compiler and the compiler options used during generation. 11094 11095 Previous Release: 11096 Non-Debug Version: 76.1K Code, 12.2K Data, 88.3K Total 11097 Debug Version: 163.5K Code, 67.0K Data, 230.5K Total 11098 Current Release: 11099 Non-Debug Version: 76.2K Code, 12.3K Data, 88.5K Total 11100 Debug Version: 163.0K Code, 67.4K Data, 230.4K Total 11101 11102 111032) iASL Compiler/Disassembler: 11104 11105Fixed a problem with very large initializer lists (more than 4000 11106elements) 11107for both Buffer and Package objects where the parse stack could overflow. 11108 11109Enhanced the pre-compile source code scan for non-ASCII characters to 11110ignore 11111characters within comment fields. The scan is now always performed and is 11112no 11113longer optional, detecting invalid characters within a source file 11114immediately rather than during the parse phase or later. 11115 11116Enhanced the ASL grammar definition to force early reductions on all 11117list- 11118style grammar elements so that the overall parse stack usage is greatly 11119reduced. This should improve performance and reduce the possibility of 11120parse 11121stack overflow. 11122 11123Eliminated all reduce/reduce conflicts in the iASL parser generation. 11124Also, 11125with the addition of a %expected statement, the compiler generates from 11126source with no warnings. 11127 11128Fixed a possible segment fault in the disassembler if the input filename 11129does not contain a "dot" extension (Thomas Renninger). 11130 11131---------------------------------------- 1113221 October 2005. Summary of changes for version 20051021: 11133 111341) ACPI CA Core Subsystem: 11135 11136Implemented support for the EM64T and other x86-64 processors. This 11137essentially entails recognizing that these processors support non-aligned 11138memory transfers. Previously, all 64-bit processors were assumed to lack 11139hardware support for non-aligned transfers. 11140 11141Completed conversion of the Resource Manager to nearly full table-driven 11142operation. Specifically, the resource conversion code (convert AML to 11143internal format and the reverse) and the debug code to dump internal 11144resource descriptors are fully table-driven, reducing code and data size 11145and 11146improving maintainability. 11147 11148The OSL interfaces for Acquire and Release Lock now use a 64-bit flag 11149word 11150on 64-bit processors instead of a fixed 32-bit word. (With assistance 11151from 11152Alexey Starikovskiy) 11153 11154Implemented support within the resource conversion code for the Type- 11155Specific byte within the various ACPI 3.0 *WordSpace macros. 11156 11157Fixed some issues within the resource conversion code for the type- 11158specific 11159flags for both Memory and I/O address resource descriptors. For Memory, 11160implemented support for the MTP and TTP flags. For I/O, split the TRS and 11161TTP flags into two separate fields. 11162 11163Code and Data Size: The current and previous library sizes for the core 11164subsystem are shown below. These are the code and data sizes for the 11165acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 11166These 11167values do not include any ACPI driver or OSPM code. The debug version of 11168the 11169code includes the debug output trace mechanism and has a much larger code 11170and data size. Note that these values will vary depending on the 11171efficiency 11172of the compiler and the compiler options used during generation. 11173 11174 Previous Release: 11175 Non-Debug Version: 77.1K Code, 12.1K Data, 89.2K Total 11176 Debug Version: 168.0K Code, 68.3K Data, 236.3K Total 11177 Current Release: 11178 Non-Debug Version: 76.1K Code, 12.2K Data, 88.3K Total 11179 Debug Version: 163.5K Code, 67.0K Data, 230.5K Total 11180 11181 11182 111832) iASL Compiler/Disassembler: 11184 11185Relaxed a compiler restriction that disallowed a ResourceIndex byte if 11186the 11187corresponding ResourceSource string was not also present in a resource 11188descriptor declaration. This restriction caused problems with existing 11189AML/ASL code that includes the Index byte without the string. When such 11190AML 11191was disassembled, it could not be compiled without modification. Further, 11192the modified code created a resource template with a different size than 11193the 11194original, breaking code that used fixed offsets into the resource 11195template 11196buffer. 11197 11198Removed a recent feature of the disassembler to ignore a lone 11199ResourceIndex 11200byte. This byte is now emitted if present so that the exact AML can be 11201reproduced when the disassembled code is recompiled. 11202 11203Improved comments and text alignment for the resource descriptor code 11204emitted by the disassembler. 11205 11206Implemented disassembler support for the ACPI 3.0 AccessSize field within 11207a 11208Register() resource descriptor. 11209 11210---------------------------------------- 1121130 September 2005. Summary of changes for version 20050930: 11212 112131) ACPI CA Core Subsystem: 11214 11215Completed a major overhaul of the Resource Manager code - specifically, 11216optimizations in the area of the AML/internal resource conversion code. 11217The 11218code has been optimized to simplify and eliminate duplicated code, CPU 11219stack 11220use has been decreased by optimizing function parameters and local 11221variables, and naming conventions across the manager have been 11222standardized 11223for clarity and ease of maintenance (this includes function, parameter, 11224variable, and struct/typedef names.) The update may force changes in some 11225driver code, depending on how resources are handled by the host OS. 11226 11227All Resource Manager dispatch and information tables have been moved to a 11228single location for clarity and ease of maintenance. One new file was 11229created, named "rsinfo.c". 11230 11231The ACPI return macros (return_ACPI_STATUS, etc.) have been modified to 11232guarantee that the argument is not evaluated twice, making them less 11233prone 11234to macro side-effects. However, since there exists the possibility of 11235additional stack use if a particular compiler cannot optimize them (such 11236as 11237in the debug generation case), the original macros are optionally 11238available. 11239Note that some invocations of the return_VALUE macro may now cause size 11240mismatch warnings; the return_UINT8 and return_UINT32 macros are provided 11241to 11242eliminate these. (From Randy Dunlap) 11243 11244Implemented a new mechanism to enable debug tracing for individual 11245control 11246methods. A new external interface, AcpiDebugTrace, is provided to enable 11247this mechanism. The intent is to allow the host OS to easily enable and 11248disable tracing for problematic control methods. This interface can be 11249easily exposed to a user or debugger interface if desired. See the file 11250psxface.c for details. 11251 11252AcpiUtCallocate will now return a valid pointer if a length of zero is 11253specified - a length of one is used and a warning is issued. This matches 11254the behavior of AcpiUtAllocate. 11255 11256Code and Data Size: The current and previous library sizes for the core 11257subsystem are shown below. These are the code and data sizes for the 11258acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 11259These 11260values do not include any ACPI driver or OSPM code. The debug version of 11261the 11262code includes the debug output trace mechanism and has a much larger code 11263and data size. Note that these values will vary depending on the 11264efficiency 11265of the compiler and the compiler options used during generation. 11266 11267 Previous Release: 11268 Non-Debug Version: 77.5K Code, 12.0K Data, 89.5K Total 11269 Debug Version: 168.1K Code, 68.4K Data, 236.5K Total 11270 Current Release: 11271 Non-Debug Version: 77.1K Code, 12.1K Data, 89.2K Total 11272 Debug Version: 168.0K Code, 68.3K Data, 236.3K Total 11273 11274 112752) iASL Compiler/Disassembler: 11276 11277A remark is issued if the effective compile-time length of a package or 11278buffer is zero. Previously, this was a warning. 11279 11280---------------------------------------- 1128116 September 2005. Summary of changes for version 20050916: 11282 112831) ACPI CA Core Subsystem: 11284 11285Fixed a problem within the Resource Manager where support for the Generic 11286Register descriptor was not fully implemented. This descriptor is now 11287fully 11288recognized, parsed, disassembled, and displayed. 11289 11290Completely restructured the Resource Manager code to utilize table-driven 11291dispatch and lookup, eliminating many of the large switch() statements. 11292This 11293reduces overall subsystem code size and code complexity. Affects the 11294resource parsing and construction, disassembly, and debug dump output. 11295 11296Cleaned up and restructured the debug dump output for all resource 11297descriptors. Improved readability of the output and reduced code size. 11298 11299Fixed a problem where changes to internal data structures caused the 11300optional ACPI_MUTEX_DEBUG code to fail compilation if specified. 11301 11302Code and Data Size: The current and previous library sizes for the core 11303subsystem are shown below. These are the code and data sizes for the 11304acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 11305These 11306values do not include any ACPI driver or OSPM code. The debug version of 11307the 11308code includes the debug output trace mechanism and has a much larger code 11309and data size. Note that these values will vary depending on the 11310efficiency 11311of the compiler and the compiler options used during generation. 11312 11313 Previous Release: 11314 Non-Debug Version: 78.4K Code, 11.8K Data, 90.2K Total 11315 Debug Version: 169.6K Code, 69.9K Data, 239.5K Total 11316 Current Release: 11317 Non-Debug Version: 77.5K Code, 12.0K Data, 89.5K Total 11318 Debug Version: 168.1K Code, 68.4K Data, 236.5K Total 11319 11320 113212) iASL Compiler/Disassembler: 11322 11323Updated the disassembler to automatically insert an EndDependentFn() 11324macro 11325into the ASL stream if this macro is missing in the original AML code, 11326simplifying compilation of the resulting ASL module. 11327 11328Fixed a problem in the disassembler where a disassembled ResourceSource 11329string (within a large resource descriptor) was not surrounded by quotes 11330and 11331not followed by a comma, causing errors when the resulting ASL module was 11332compiled. Also, escape sequences within a ResourceSource string are now 11333handled correctly (especially "\\") 11334 11335---------------------------------------- 1133602 September 2005. Summary of changes for version 20050902: 11337 113381) ACPI CA Core Subsystem: 11339 11340Fixed a problem with the internal Owner ID allocation and deallocation 11341mechanisms for control method execution and recursive method invocation. 11342This should eliminate the OWNER_ID_LIMIT exceptions and "Invalid OwnerId" 11343messages seen on some systems. Recursive method invocation depth is 11344currently limited to 255. (Alexey Starikovskiy) 11345 11346Completely eliminated all vestiges of support for the "module-level 11347executable code" until this support is fully implemented and debugged. 11348This 11349should eliminate the NO_RETURN_VALUE exceptions seen during table load on 11350some systems that invoke this support. 11351 11352Fixed a problem within the resource manager code where the transaction 11353flags 11354for a 64-bit address descriptor were handled incorrectly in the type- 11355specific flag byte. 11356 11357Consolidated duplicate code within the address descriptor resource 11358manager 11359code, reducing overall subsystem code size. 11360 11361Fixed a fault when using the AML debugger "disassemble" command to 11362disassemble individual control methods. 11363 11364Removed references to the "release_current" directory within the Unix 11365release package. 11366 11367Code and Data Size: The current and previous core subsystem library sizes 11368are shown below. These are the code and data sizes for the acpica.lib 11369produced by the Microsoft Visual C++ 6.0 compiler. These values do not 11370include any ACPI driver or OSPM code. The debug version of the code 11371includes 11372the debug output trace mechanism and has a much larger code and data 11373size. 11374Note that these values will vary depending on the efficiency of the 11375compiler 11376and the compiler options used during generation. 11377 11378 Previous Release: 11379 Non-Debug Version: 78.6K Code, 11.7K Data, 90.3K Total 11380 Debug Version: 170.0K Code, 69.9K Data, 239.9K Total 11381 Current Release: 11382 Non-Debug Version: 78.4K Code, 11.8K Data, 90.2K Total 11383 Debug Version: 169.6K Code, 69.9K Data, 239.5K Total 11384 11385 113862) iASL Compiler/Disassembler: 11387 11388Implemented an error check for illegal duplicate values in the interrupt 11389and 11390dma lists for the following ASL macros: Dma(), Irq(), IrqNoFlags(), and 11391Interrupt(). 11392 11393Implemented error checking for the Irq() and IrqNoFlags() macros to 11394detect 11395too many values in the interrupt list (16 max) and invalid values in the 11396list (range 0 - 15) 11397 11398The maximum length string literal within an ASL file is now restricted to 11399200 characters as per the ACPI specification. 11400 11401Fixed a fault when using the -ln option (generate namespace listing). 11402 11403Implemented an error check to determine if a DescriptorName within a 11404resource descriptor has already been used within the current scope. 11405 11406---------------------------------------- 1140715 August 2005. Summary of changes for version 20050815: 11408 114091) ACPI CA Core Subsystem: 11410 11411Implemented a full bytewise compare to determine if a table load request 11412is 11413attempting to load a duplicate table. The compare is performed if the 11414table 11415signatures and table lengths match. This will allow different tables with 11416the same OEM Table ID and revision to be loaded - probably against the 11417ACPI 11418specification, but discovered in the field nonetheless. 11419 11420Added the changes.txt logfile to each of the zipped release packages. 11421 11422Code and Data Size: Current and previous core subsystem library sizes are 11423shown below. These are the code and data sizes for the acpica.lib 11424produced 11425by the Microsoft Visual C++ 6.0 compiler, and these values do not include 11426any ACPI driver or OSPM code. The debug version of the code includes the 11427debug output trace mechanism and has a much larger code and data size. 11428Note 11429that these values will vary depending on the efficiency of the compiler 11430and 11431the compiler options used during generation. 11432 11433 Previous Release: 11434 Non-Debug Version: 78.6K Code, 11.7K Data, 90.3K Total 11435 Debug Version: 167.0K Code, 69.9K Data, 236.9K Total 11436 Current Release: 11437 Non-Debug Version: 78.6K Code, 11.7K Data, 90.3K Total 11438 Debug Version: 170.0K Code, 69.9K Data, 239.9K Total 11439 11440 114412) iASL Compiler/Disassembler: 11442 11443Fixed a problem where incorrect AML code could be generated for Package 11444objects if optimization is disabled (via the -oa switch). 11445 11446Fixed a problem with where incorrect AML code is generated for variable- 11447length packages when the package length is not specified and the number 11448of 11449initializer values is greater than 255. 11450 11451 11452---------------------------------------- 1145329 July 2005. Summary of changes for version 20050729: 11454 114551) ACPI CA Core Subsystem: 11456 11457Implemented support to ignore an attempt to install/load a particular 11458ACPI 11459table more than once. Apparently there exists BIOS code that repeatedly 11460attempts to load the same SSDT upon certain events. With assistance from 11461Venkatesh Pallipadi. 11462 11463Restructured the main interface to the AML parser in order to correctly 11464handle all exceptional conditions. This will prevent leakage of the 11465OwnerId 11466resource and should eliminate the AE_OWNER_ID_LIMIT exceptions seen on 11467some 11468machines. With assistance from Alexey Starikovskiy. 11469 11470Support for "module level code" has been disabled in this version due to 11471a 11472number of issues that have appeared on various machines. The support can 11473be 11474enabled by defining ACPI_ENABLE_MODULE_LEVEL_CODE during subsystem 11475compilation. When the issues are fully resolved, the code will be enabled 11476by 11477default again. 11478 11479Modified the internal functions for debug print support to define the 11480FunctionName parameter as a (const char *) for compatibility with 11481compiler 11482built-in macros such as __FUNCTION__, etc. 11483 11484Linted the entire ACPICA source tree for both 32-bit and 64-bit. 11485 11486Implemented support to display an object count summary for the AML 11487Debugger 11488commands Object and Methods. 11489 11490Code and Data Size: Current and previous core subsystem library sizes are 11491shown below. These are the code and data sizes for the acpica.lib 11492produced 11493by the Microsoft Visual C++ 6.0 compiler, and these values do not include 11494any ACPI driver or OSPM code. The debug version of the code includes the 11495debug output trace mechanism and has a much larger code and data size. 11496Note 11497that these values will vary depending on the efficiency of the compiler 11498and 11499the compiler options used during generation. 11500 11501 Previous Release: 11502 Non-Debug Version: 78.6K Code, 11.6K Data, 90.2K Total 11503 Debug Version: 170.0K Code, 69.7K Data, 239.7K Total 11504 Current Release: 11505 Non-Debug Version: 78.6K Code, 11.7K Data, 90.3K Total 11506 Debug Version: 167.0K Code, 69.9K Data, 236.9K Total 11507 11508 115092) iASL Compiler/Disassembler: 11510 11511Fixed a regression that appeared in the 20050708 version of the compiler 11512where an error message was inadvertently emitted for invocations of the 11513_OSI 11514reserved control method. 11515 11516---------------------------------------- 1151708 July 2005. Summary of changes for version 20050708: 11518 115191) ACPI CA Core Subsystem: 11520 11521The use of the CPU stack in the debug version of the subsystem has been 11522considerably reduced. Previously, a debug structure was declared in every 11523function that used the debug macros. This structure has been removed in 11524favor of declaring the individual elements as parameters to the debug 11525functions. This reduces the cumulative stack use during nested execution 11526of 11527ACPI function calls at the cost of a small increase in the code size of 11528the 11529debug version of the subsystem. With assistance from Alexey Starikovskiy 11530and 11531Len Brown. 11532 11533Added the ACPI_GET_FUNCTION_NAME macro to enable the compiler-dependent 11534headers to define a macro that will return the current function name at 11535runtime (such as __FUNCTION__ or _func_, etc.) The function name is used 11536by 11537the debug trace output. If ACPI_GET_FUNCTION_NAME is not defined in the 11538compiler-dependent header, the function name is saved on the CPU stack 11539(one 11540pointer per function.) This mechanism is used because apparently there 11541exists no standard ANSI-C defined macro that that returns the function 11542name. 11543 11544Redesigned and reimplemented the "Owner ID" mechanism used to track 11545namespace objects created/deleted by ACPI tables and control method 11546execution. A bitmap is now used to allocate and free the IDs, thus 11547solving 11548the wraparound problem present in the previous implementation. The size 11549of 11550the namespace node descriptor was reduced by 2 bytes as a result (Alexey 11551Starikovskiy). 11552 11553Removed the UINT32_BIT and UINT16_BIT types that were used for the 11554bitfield 11555flag definitions within the headers for the predefined ACPI tables. These 11556have been replaced by UINT8_BIT in order to increase the code portability 11557of 11558the subsystem. If the use of UINT8 remains a problem, we may be forced to 11559eliminate bitfields entirely because of a lack of portability. 11560 11561Enhanced the performance of the AcpiUtUpdateObjectReference procedure. 11562This 11563is a frequently used function and this improvement increases the 11564performance 11565of the entire subsystem (Alexey Starikovskiy). 11566 11567Fixed several possible memory leaks and the inverse - premature object 11568deletion (Alexey Starikovskiy). 11569 11570Code and Data Size: Current and previous core subsystem library sizes are 11571shown below. These are the code and data sizes for the acpica.lib 11572produced 11573by the Microsoft Visual C++ 6.0 compiler, and these values do not include 11574any ACPI driver or OSPM code. The debug version of the code includes the 11575debug output trace mechanism and has a much larger code and data size. 11576Note 11577that these values will vary depending on the efficiency of the compiler 11578and 11579the compiler options used during generation. 11580 11581 Previous Release: 11582 Non-Debug Version: 78.6K Code, 11.5K Data, 90.1K Total 11583 Debug Version: 165.2K Code, 69.6K Data, 234.8K Total 11584 Current Release: 11585 Non-Debug Version: 78.6K Code, 11.6K Data, 90.2K Total 11586 Debug Version: 170.0K Code, 69.7K Data, 239.7K Total 11587 11588---------------------------------------- 1158924 June 2005. Summary of changes for version 20050624: 11590 115911) ACPI CA Core Subsystem: 11592 11593Modified the new OSL cache interfaces to use ACPI_CACHE_T as the type for 11594the host-defined cache object. This allows the OSL implementation to 11595define 11596and type this object in any manner desired, simplifying the OSL 11597implementation. For example, ACPI_CACHE_T is defined as kmem_cache_t for 11598Linux, and should be defined in the OS-specific header file for other 11599operating systems as required. 11600 11601Changed the interface to AcpiOsAcquireObject to directly return the 11602requested object as the function return (instead of ACPI_STATUS.) This 11603change was made for performance reasons, since this is the purpose of the 11604interface in the first place. AcpiOsAcquireObject is now similar to the 11605AcpiOsAllocate interface. 11606 11607Implemented a new AML debugger command named Businfo. This command 11608displays 11609information about all devices that have an associate _PRT object. The 11610_ADR, 11611_HID, _UID, and _CID are displayed for these devices. 11612 11613Modified the initialization sequence in AcpiInitializeSubsystem to call 11614the 11615OSL interface AcpiOslInitialize first, before any local initialization. 11616This 11617change was required because the global initialization now calls OSL 11618interfaces. 11619 11620Enhanced the Dump command to display the entire contents of Package 11621objects 11622(including all sub-objects and their values.) 11623 11624Restructured the code base to split some files because of size and/or 11625because the code logically belonged in a separate file. New files are 11626listed 11627below. All makefiles and project files included in the ACPI CA release 11628have 11629been updated. 11630 utilities/utcache.c /* Local cache interfaces */ 11631 utilities/utmutex.c /* Local mutex support */ 11632 utilities/utstate.c /* State object support */ 11633 interpreter/parser/psloop.c /* Main AML parse loop */ 11634 11635Code and Data Size: Current and previous core subsystem library sizes are 11636shown below. These are the code and data sizes for the acpica.lib 11637produced 11638by the Microsoft Visual C++ 6.0 compiler, and these values do not include 11639any ACPI driver or OSPM code. The debug version of the code includes the 11640debug output trace mechanism and has a much larger code and data size. 11641Note 11642that these values will vary depending on the efficiency of the compiler 11643and 11644the compiler options used during generation. 11645 11646 Previous Release: 11647 Non-Debug Version: 78.3K Code, 11.6K Data, 89.9K Total 11648 Debug Version: 164.0K Code, 69.1K Data, 233.1K Total 11649 Current Release: 11650 Non-Debug Version: 78.6K Code, 11.5K Data, 90.1K Total 11651 Debug Version: 165.2K Code, 69.6K Data, 234.8K Total 11652 11653 116542) iASL Compiler/Disassembler: 11655 11656Fixed a regression introduced in version 20050513 where the use of a 11657Package 11658object within a Case() statement caused a compile time exception. The 11659original behavior has been restored (a Match() operator is emitted.) 11660 11661---------------------------------------- 1166217 June 2005. Summary of changes for version 20050617: 11663 116641) ACPI CA Core Subsystem: 11665 11666Moved the object cache operations into the OS interface layer (OSL) to 11667allow 11668the host OS to handle these operations if desired (for example, the Linux 11669OSL will invoke the slab allocator). This support is optional; the 11670compile 11671time define ACPI_USE_LOCAL_CACHE may be used to utilize the original 11672cache 11673code in the ACPI CA core. The new OSL interfaces are shown below. See 11674utalloc.c for an example implementation, and acpiosxf.h for the exact 11675interface definitions. With assistance from Alexey Starikovskiy. 11676 AcpiOsCreateCache 11677 AcpiOsDeleteCache 11678 AcpiOsPurgeCache 11679 AcpiOsAcquireObject 11680 AcpiOsReleaseObject 11681 11682Modified the interfaces to AcpiOsAcquireLock and AcpiOsReleaseLock to 11683return 11684and restore a flags parameter. This fits better with many OS lock models. 11685Note: the current execution state (interrupt handler or not) is no longer 11686passed to these interfaces. If necessary, the OSL must determine this 11687state 11688by itself, a simple and fast operation. With assistance from Alexey 11689Starikovskiy. 11690 11691Fixed a problem in the ACPI table handling where a valid XSDT was assumed 11692present if the revision of the RSDP was 2 or greater. According to the 11693ACPI 11694specification, the XSDT is optional in all cases, and the table manager 11695therefore now checks for both an RSDP >=2 and a valid XSDT pointer. 11696Otherwise, the RSDT pointer is used. Some ACPI 2.0 compliant BIOSs 11697contain 11698only the RSDT. 11699 11700Fixed an interpreter problem with the Mid() operator in the case of an 11701input 11702string where the resulting output string is of zero length. It now 11703correctly 11704returns a valid, null terminated string object instead of a string object 11705with a null pointer. 11706 11707Fixed a problem with the control method argument handling to allow a 11708store 11709to an Arg object that already contains an object of type Device. The 11710Device 11711object is now correctly overwritten. Previously, an error was returned. 11712 11713 11714Enhanced the debugger Find command to emit object values in addition to 11715the 11716found object pathnames. The output format is the same as the dump 11717namespace 11718command. 11719 11720Enhanced the debugger Set command. It now has the ability to set the 11721value 11722of any Named integer object in the namespace (Previously, only method 11723locals 11724and args could be set.) 11725 11726Code and Data Size: Current and previous core subsystem library sizes are 11727shown below. These are the code and data sizes for the acpica.lib 11728produced 11729by the Microsoft Visual C++ 6.0 compiler, and these values do not include 11730any ACPI driver or OSPM code. The debug version of the code includes the 11731debug output trace mechanism and has a much larger code and data size. 11732Note 11733that these values will vary depending on the efficiency of the compiler 11734and 11735the compiler options used during generation. 11736 11737 Previous Release: 11738 Non-Debug Version: 78.1K Code, 11.6K Data, 89.7K Total 11739 Debug Version: 164.0K Code, 69.3K Data, 233.3K Total 11740 Current Release: 11741 Non-Debug Version: 78.3K Code, 11.6K Data, 89.9K Total 11742 Debug Version: 164.0K Code, 69.1K Data, 233.1K Total 11743 11744 117452) iASL Compiler/Disassembler: 11746 11747Fixed a regression in the disassembler where if/else/while constructs 11748were 11749output incorrectly. This problem was introduced in the previous release 11750(20050526). This problem also affected the single-step disassembly in the 11751debugger. 11752 11753Fixed a problem where compiling the reserved _OSI method would randomly 11754(but 11755rarely) produce compile errors. 11756 11757Enhanced the disassembler to emit compilable code in the face of 11758incorrect 11759AML resource descriptors. If the optional ResourceSourceIndex is present, 11760but the ResourceSource is not, do not emit the ResourceSourceIndex in the 11761disassembly. Otherwise, the resulting code cannot be compiled without 11762errors. 11763 11764---------------------------------------- 1176526 May 2005. Summary of changes for version 20050526: 11766 117671) ACPI CA Core Subsystem: 11768 11769Implemented support to execute Type 1 and Type 2 AML opcodes appearing at 11770the module level (not within a control method.) These opcodes are 11771executed 11772exactly once at the time the table is loaded. This type of code was legal 11773up 11774until the release of ACPI 2.0B (2002) and is now supported within ACPI CA 11775in 11776order to provide backwards compatibility with earlier BIOS 11777implementations. 11778This eliminates the "Encountered executable code at module level" warning 11779that was previously generated upon detection of such code. 11780 11781Fixed a problem in the interpreter where an AE_NOT_FOUND exception could 11782inadvertently be generated during the lookup of namespace objects in the 11783second pass parse of ACPI tables and control methods. It appears that 11784this 11785problem could occur during the resolution of forward references to 11786namespace 11787objects. 11788 11789Added the ACPI_MUTEX_DEBUG #ifdef to the AcpiUtReleaseMutex function, 11790corresponding to the same #ifdef in the AcpiUtAcquireMutex function. This 11791allows the deadlock detection debug code to be compiled out in the normal 11792case, improving mutex performance (and overall subsystem performance) 11793considerably. 11794 11795Implemented a handful of miscellaneous fixes for possible memory leaks on 11796error conditions and error handling control paths. These fixes were 11797suggested by FreeBSD and the Coverity Prevent source code analysis tool. 11798 11799Added a check for a null RSDT pointer in AcpiGetFirmwareTable 11800(tbxfroot.c) 11801to prevent a fault in this error case. 11802 11803Code and Data Size: Current and previous core subsystem library sizes are 11804shown below. These are the code and data sizes for the acpica.lib 11805produced 11806by the Microsoft Visual C++ 6.0 compiler, and these values do not include 11807any ACPI driver or OSPM code. The debug version of the code includes the 11808debug output trace mechanism and has a much larger code and data size. 11809Note 11810that these values will vary depending on the efficiency of the compiler 11811and 11812the compiler options used during generation. 11813 11814 Previous Release: 11815 Non-Debug Version: 78.2K Code, 11.6K Data, 89.8K Total 11816 Debug Version: 163.7K Code, 69.3K Data, 233.0K Total 11817 Current Release: 11818 Non-Debug Version: 78.1K Code, 11.6K Data, 89.7K Total 11819 Debug Version: 164.0K Code, 69.3K Data, 233.3K Total 11820 11821 118222) iASL Compiler/Disassembler: 11823 11824Implemented support to allow Type 1 and Type 2 ASL operators to appear at 11825the module level (not within a control method.) These operators will be 11826executed once at the time the table is loaded. This type of code was 11827legal 11828up until the release of ACPI 2.0B (2002) and is now supported by the iASL 11829compiler in order to provide backwards compatibility with earlier BIOS 11830ASL 11831code. 11832 11833The ACPI integer width (specified via the table revision ID or the -r 11834override, 32 or 64 bits) is now used internally during compile-time 11835constant 11836folding to ensure that constants are truncated to 32 bits if necessary. 11837Previously, the revision ID value was only emitted in the AML table 11838header. 11839 11840An error message is now generated for the Mutex and Method operators if 11841the 11842SyncLevel parameter is outside the legal range of 0 through 15. 11843 11844Fixed a problem with the Method operator ParameterTypes list handling 11845(ACPI 118463.0). Previously, more than 2 types or 2 arguments generated a syntax 11847error. 11848The actual underlying implementation of method argument typechecking is 11849still under development, however. 11850 11851---------------------------------------- 1185213 May 2005. Summary of changes for version 20050513: 11853 118541) ACPI CA Core Subsystem: 11855 11856Implemented support for PCI Express root bridges -- added support for 11857device 11858PNP0A08 in the root bridge search within AcpiEvPciConfigRegionSetup. 11859 11860The interpreter now automatically truncates incoming 64-bit constants to 1186132 11862bits if currently executing out of a 32-bit ACPI table (Revision < 2). 11863This 11864also affects the iASL compiler constant folding. (Note: as per below, the 11865iASL compiler no longer allows 64-bit constants within 32-bit tables.) 11866 11867Fixed a problem where string and buffer objects with "static" pointers 11868(pointers to initialization data within an ACPI table) were not handled 11869consistently. The internal object copy operation now always copies the 11870data 11871to a newly allocated buffer, regardless of whether the source object is 11872static or not. 11873 11874Fixed a problem with the FromBCD operator where an implicit result 11875conversion was improperly performed while storing the result to the 11876target 11877operand. Since this is an "explicit conversion" operator, the implicit 11878conversion should never be performed on the output. 11879 11880Fixed a problem with the CopyObject operator where a copy to an existing 11881named object did not always completely overwrite the existing object 11882stored 11883at name. Specifically, a buffer-to-buffer copy did not delete the 11884existing 11885buffer. 11886 11887Replaced "InterruptLevel" with "InterruptNumber" in all GPE interfaces 11888and 11889structs for consistency. 11890 11891Code and Data Size: Current and previous core subsystem library sizes are 11892shown below. These are the code and data sizes for the acpica.lib 11893produced 11894by the Microsoft Visual C++ 6.0 compiler, and these values do not include 11895any ACPI driver or OSPM code. The debug version of the code includes the 11896debug output trace mechanism and has a much larger code and data size. 11897Note 11898that these values will vary depending on the efficiency of the compiler 11899and 11900the compiler options used during generation. 11901 11902 Previous Release: 11903 Non-Debug Version: 78.2K Code, 11.6K Data, 89.8K Total 11904 Debug Version: 163.7K Code, 69.3K Data, 233.0K Total 11905 Current Release: (Same sizes) 11906 Non-Debug Version: 78.2K Code, 11.6K Data, 89.8K Total 11907 Debug Version: 163.7K Code, 69.3K Data, 233.0K Total 11908 11909 119102) iASL Compiler/Disassembler: 11911 11912The compiler now emits a warning if an attempt is made to generate a 64- 11913bit 11914integer constant from within a 32-bit ACPI table (Revision < 2). The 11915integer 11916is truncated to 32 bits. 11917 11918Fixed a problem with large package objects: if the static length of the 11919package is greater than 255, the "variable length package" opcode is 11920emitted. Previously, this caused an error. This requires an update to the 11921ACPI spec, since it currently (incorrectly) states that packages larger 11922than 11923255 elements are not allowed. 11924 11925The disassembler now correctly handles variable length packages and 11926packages 11927larger than 255 elements. 11928 11929---------------------------------------- 1193008 April 2005. Summary of changes for version 20050408: 11931 119321) ACPI CA Core Subsystem: 11933 11934Fixed three cases in the interpreter where an "index" argument to an ASL 11935function was still (internally) 32 bits instead of the required 64 bits. 11936This was the Index argument to the Index, Mid, and Match operators. 11937 11938The "strupr" function is now permanently local (AcpiUtStrupr), since this 11939is 11940not a POSIX-defined function and not present in most kernel-level C 11941libraries. All references to the C library strupr function have been 11942removed 11943from the headers. 11944 11945Completed the deployment of static functions/prototypes. All prototypes 11946with 11947the static attribute have been moved from the headers to the owning C 11948file. 11949 11950Implemented an extract option (-e) for the AcpiBin utility (AML binary 11951utility). This option allows the utility to extract individual ACPI 11952tables 11953from the output of AcpiDmp. It provides the same functionality of the 11954acpixtract.pl perl script without the worry of setting the correct perl 11955options. AcpiBin runs on Windows and has not yet been generated/validated 11956in 11957the Linux/Unix environment (but should be soon). 11958 11959Updated and fixed the table dump option for AcpiBin (-d). This option 11960converts a single ACPI table to a hex/ascii file, similar to the output 11961of 11962AcpiDmp. 11963 11964Code and Data Size: Current and previous core subsystem library sizes are 11965shown below. These are the code and data sizes for the acpica.lib 11966produced 11967by the Microsoft Visual C++ 6.0 compiler, and these values do not include 11968any ACPI driver or OSPM code. The debug version of the code includes the 11969debug output trace mechanism and has a much larger code and data size. 11970Note 11971that these values will vary depending on the efficiency of the compiler 11972and 11973the compiler options used during generation. 11974 11975 Previous Release: 11976 Non-Debug Version: 78.0K Code, 11.6K Data, 89.6K Total 11977 Debug Version: 163.5K Code, 69.3K Data, 232.8K Total 11978 Current Release: 11979 Non-Debug Version: 78.2K Code, 11.6K Data, 89.8K Total 11980 Debug Version: 163.7K Code, 69.3K Data, 233.0K Total 11981 11982 119832) iASL Compiler/Disassembler: 11984 11985Disassembler fix: Added a check to ensure that the table length found in 11986the 11987ACPI table header within the input file is not longer than the actual 11988input 11989file size. This indicates some kind of file or table corruption. 11990 11991---------------------------------------- 1199229 March 2005. Summary of changes for version 20050329: 11993 119941) ACPI CA Core Subsystem: 11995 11996An error is now generated if an attempt is made to create a Buffer Field 11997of 11998length zero (A CreateField with a length operand of zero.) 11999 12000The interpreter now issues a warning whenever executable code at the 12001module 12002level is detected during ACPI table load. This will give some idea of the 12003prevalence of this type of code. 12004 12005Implemented support for references to named objects (other than control 12006methods) within package objects. 12007 12008Enhanced package object output for the debug object. Package objects are 12009now 12010completely dumped, showing all elements. 12011 12012Enhanced miscellaneous object output for the debug object. Any object can 12013now be written to the debug object (for example, a device object can be 12014written, and the type of the object will be displayed.) 12015 12016The "static" qualifier has been added to all local functions across both 12017the 12018core subsystem and the iASL compiler. 12019 12020The number of "long" lines (> 80 chars) within the source has been 12021significantly reduced, by about 1/3. 12022 12023Cleaned up all header files to ensure that all CA/iASL functions are 12024prototyped (even static functions) and the formatting is consistent. 12025 12026Two new header files have been added, acopcode.h and acnames.h. 12027 12028Removed several obsolete functions that were no longer used. 12029 12030Code and Data Size: Current and previous core subsystem library sizes are 12031shown below. These are the code and data sizes for the acpica.lib 12032produced 12033by the Microsoft Visual C++ 6.0 compiler, and these values do not include 12034any ACPI driver or OSPM code. The debug version of the code includes the 12035debug output trace mechanism and has a much larger code and data size. 12036Note 12037that these values will vary depending on the efficiency of the compiler 12038and 12039the compiler options used during generation. 12040 12041 Previous Release: 12042 Non-Debug Version: 78.3K Code, 11.5K Data, 89.8K Total 12043 Debug Version: 165.4K Code, 69.7K Data, 236.1K Total 12044 Current Release: 12045 Non-Debug Version: 78.0K Code, 11.6K Data, 89.6K Total 12046 Debug Version: 163.5K Code, 69.3K Data, 232.8K Total 12047 12048 12049 120502) iASL Compiler/Disassembler: 12051 12052Fixed a problem with the resource descriptor generation/support. For the 12053ResourceSourceIndex and the ResourceSource fields, both must be present, 12054or 12055both must be not present - can't have one without the other. 12056 12057The compiler now returns non-zero from the main procedure if any errors 12058have 12059occurred during the compilation. 12060 12061 12062---------------------------------------- 1206309 March 2005. Summary of changes for version 20050309: 12064 120651) ACPI CA Core Subsystem: 12066 12067The string-to-buffer implicit conversion code has been modified again 12068after 12069a change to the ACPI specification. In order to match the behavior of 12070the 12071other major ACPI implementation, the target buffer is no longer truncated 12072if 12073the source string is smaller than an existing target buffer. This change 12074requires an update to the ACPI spec, and should eliminate the recent 12075AE_AML_BUFFER_LIMIT issues. 12076 12077The "implicit return" support was rewritten to a new algorithm that 12078solves 12079the general case. Rather than attempt to determine when a method is about 12080to 12081exit, the result of every ASL operator is saved momentarily until the 12082very 12083next ASL operator is executed. Therefore, no matter how the method exits, 12084there will always be a saved implicit return value. This feature is only 12085enabled with the AcpiGbl_EnableInterpreterSlack flag, and should 12086eliminate 12087AE_AML_NO_RETURN_VALUE errors when enabled. 12088 12089Implemented implicit conversion support for the predicate (operand) of 12090the 12091If, Else, and While operators. String and Buffer arguments are 12092automatically 12093converted to Integers. 12094 12095Changed the string-to-integer conversion behavior to match the new ACPI 12096errata: "If no integer object exists, a new integer is created. The ASCII 12097string is interpreted as a hexadecimal constant. Each string character is 12098interpreted as a hexadecimal value ('0'-'9', 'A'-'F', 'a', 'f'), starting 12099with the first character as the most significant digit, and ending with 12100the 12101first non-hexadecimal character or end-of-string." This means that the 12102first 12103non-hex character terminates the conversion and this is the code that was 12104changed. 12105 12106Fixed a problem where the ObjectType operator would fail (fault) when 12107used 12108on an Index of a Package which pointed to a null package element. The 12109operator now properly returns zero (Uninitialized) in this case. 12110 12111Fixed a problem where the While operator used excessive memory by not 12112properly popping the result stack during execution. There was no memory 12113leak 12114after execution, however. (Code provided by Valery Podrezov.) 12115 12116Fixed a problem where references to control methods within Package 12117objects 12118caused the method to be invoked, instead of producing a reference object 12119pointing to the method. 12120 12121Restructured and simplified the pswalk.c module (AcpiPsDeleteParseTree) 12122to 12123improve performance and reduce code size. (Code provided by Alexey 12124Starikovskiy.) 12125 12126Code and Data Size: Current and previous core subsystem library sizes are 12127shown below. These are the code and data sizes for the acpica.lib 12128produced 12129by the Microsoft Visual C++ 6.0 compiler, and these values do not include 12130any ACPI driver or OSPM code. The debug version of the code includes the 12131debug output trace mechanism and has a much larger code and data size. 12132Note 12133that these values will vary depending on the efficiency of the compiler 12134and 12135the compiler options used during generation. 12136 12137 Previous Release: 12138 Non-Debug Version: 78.3K Code, 11.5K Data, 89.8K Total 12139 Debug Version: 165.4K Code, 69.6K Data, 236.0K Total 12140 Current Release: 12141 Non-Debug Version: 78.3K Code, 11.5K Data, 89.8K Total 12142 Debug Version: 165.4K Code, 69.7K Data, 236.1K Total 12143 12144 121452) iASL Compiler/Disassembler: 12146 12147Fixed a problem with the Return operator with no arguments. Since the AML 12148grammar for the byte encoding requires an operand for the Return opcode, 12149the 12150compiler now emits a Return(Zero) for this case. An ACPI specification 12151update has been written for this case. 12152 12153For tables other than the DSDT, namepath optimization is automatically 12154disabled. This is because SSDTs can be loaded anywhere in the namespace, 12155the 12156compiler has no knowledge of where, and thus cannot optimize namepaths. 12157 12158Added "ProcessorObj" to the ObjectTypeKeyword list. This object type was 12159inadvertently omitted from the ACPI specification, and will require an 12160update to the spec. 12161 12162The source file scan for ASCII characters is now optional (-a). This 12163change 12164was made because some vendors place non-ascii characters within comments. 12165However, the scan is simply a brute-force byte compare to ensure all 12166characters in the file are in the range 0x00 to 0x7F. 12167 12168Fixed a problem with the CondRefOf operator where the compiler was 12169inappropriately checking for the existence of the target. Since the point 12170of 12171the operator is to check for the existence of the target at run-time, the 12172compiler no longer checks for the target existence. 12173 12174Fixed a problem where errors generated from the internal AML interpreter 12175during constant folding were not handled properly, causing a fault. 12176 12177Fixed a problem with overly aggressive range checking for the Stall 12178operator. The valid range (max 255) is now only checked if the operand is 12179of 12180type Integer. All other operand types cannot be statically checked. 12181 12182Fixed a problem where control method references within the RefOf, 12183DeRefOf, 12184and ObjectType operators were not treated properly. They are now treated 12185as 12186actual references, not method invocations. 12187 12188Fixed and enhanced the "list namespace" option (-ln). This option was 12189broken 12190a number of releases ago. 12191 12192Improved error handling for the Field, IndexField, and BankField 12193operators. 12194The compiler now cleanly reports and recovers from errors in the field 12195component (FieldUnit) list. 12196 12197Fixed a disassembler problem where the optional ResourceDescriptor fields 12198TRS and TTP were not always handled correctly. 12199 12200Disassembler - Comments in output now use "//" instead of "/*" 12201 12202---------------------------------------- 1220328 February 2005. Summary of changes for version 20050228: 12204 122051) ACPI CA Core Subsystem: 12206 12207Fixed a problem where the result of an Index() operator (an object 12208reference) must increment the reference count on the target object for 12209the 12210life of the object reference. 12211 12212Implemented AML Interpreter and Debugger support for the new ACPI 3.0 12213Extended Address (IO, Memory, Space), QwordSpace, DwordSpace, and 12214WordSpace 12215resource descriptors. 12216 12217Implemented support in the _OSI method for the ACPI 3.0 "Extended Address 12218Space Descriptor" string, indicating interpreter support for the 12219descriptors 12220above. 12221 12222Implemented header support for the new ACPI 3.0 FADT flag bits. 12223 12224Implemented header support for the new ACPI 3.0 PCI Express bits for the 12225PM1 12226status/enable registers. 12227 12228Updated header support for the MADT processor local Apic struct and MADT 12229platform interrupt source struct for new ACPI 3.0 fields. 12230 12231Implemented header support for the SRAT and SLIT ACPI tables. 12232 12233Implemented the -s switch in AcpiExec to enable the "InterpreterSlack" 12234flag 12235at runtime. 12236 12237Code and Data Size: Current and previous core subsystem library sizes are 12238shown below. These are the code and data sizes for the acpica.lib 12239produced 12240by the Microsoft Visual C++ 6.0 compiler, and these values do not include 12241any ACPI driver or OSPM code. The debug version of the code includes the 12242debug output trace mechanism and has a much larger code and data size. 12243Note 12244that these values will vary depending on the efficiency of the compiler 12245and 12246the compiler options used during generation. 12247 12248 Previous Release: 12249 Non-Debug Version: 78.2K Code, 11.5K Data, 89.7K Total 12250 Debug Version: 164.9K Code, 69.2K Data, 234.1K Total 12251 Current Release: 12252 Non-Debug Version: 78.3K Code, 11.5K Data, 89.8K Total 12253 Debug Version: 165.4K Code, 69.6K Data, 236.0K Total 12254 12255 122562) iASL Compiler/Disassembler: 12257 12258Fixed a problem with the internal 64-bit String-to-integer conversion 12259with 12260strings less than two characters long. 12261 12262Fixed a problem with constant folding where the result of the Index() 12263operator can not be considered a constant. This means that Index() cannot 12264be 12265a type3 opcode and this will require an update to the ACPI specification. 12266 12267Disassembler: Implemented support for the TTP, MTP, and TRS resource 12268descriptor fields. These fields were inadvertently ignored and not output 12269in 12270the disassembly of the resource descriptor. 12271 12272 12273 ---------------------------------------- 1227411 February 2005. Summary of changes for version 20050211: 12275 122761) ACPI CA Core Subsystem: 12277 12278Implemented ACPI 3.0 support for implicit conversion within the Match() 12279operator. MatchObjects can now be of type integer, buffer, or string 12280instead 12281of just type integer. Package elements are implicitly converted to the 12282type 12283of the MatchObject. This change aligns the behavior of Match() with the 12284behavior of the other logical operators (LLess(), etc.) It also requires 12285an 12286errata change to the ACPI specification as this support was intended for 12287ACPI 3.0, but was inadvertently omitted. 12288 12289Fixed a problem with the internal implicit "to buffer" conversion. 12290Strings 12291that are converted to buffers will cause buffer truncation if the string 12292is 12293smaller than the target buffer. Integers that are converted to buffers 12294will 12295not cause buffer truncation, only zero extension (both as per the ACPI 12296spec.) The problem was introduced when code was added to truncate the 12297buffer, but this should not be performed in all cases, only the string 12298case. 12299 12300Fixed a problem with the Buffer and Package operators where the 12301interpreter 12302would get confused if two such operators were used as operands to an ASL 12303operator (such as LLess(Buffer(1){0},Buffer(1){1}). The internal result 12304stack was not being popped after the execution of these operators, 12305resulting 12306in an AE_NO_RETURN_VALUE exception. 12307 12308Fixed a problem with constructs of the form Store(Index(...),...). The 12309reference object returned from Index was inadvertently resolved to an 12310actual 12311value. This problem was introduced in version 20050114 when the behavior 12312of 12313Store() was modified to restrict the object types that can be used as the 12314source operand (to match the ACPI specification.) 12315 12316Reduced excessive stack use within the AcpiGetObjectInfo procedure. 12317 12318Added a fix to aclinux.h to allow generation of AcpiExec on Linux. 12319 12320Updated the AcpiSrc utility to add the FADT_DESCRIPTOR_REV2_MINUS struct. 12321 12322Code and Data Size: Current and previous core subsystem library sizes are 12323shown below. These are the code and data sizes for the acpica.lib 12324produced 12325by the Microsoft Visual C++ 6.0 compiler, and these values do not include 12326any ACPI driver or OSPM code. The debug version of the code includes the 12327debug output trace mechanism and has a much larger code and data size. 12328Note 12329that these values will vary depending on the efficiency of the compiler 12330and 12331the compiler options used during generation. 12332 12333 Previous Release: 12334 Non-Debug Version: 78.1K Code, 11.5K Data, 89.6K Total 12335 Debug Version: 164.8K Code, 69.2K Data, 234.0K Total 12336 Current Release: 12337 Non-Debug Version: 78.2K Code, 11.5K Data, 89.7K Total 12338 Debug Version: 164.9K Code, 69.2K Data, 234.1K Total 12339 12340 123412) iASL Compiler/Disassembler: 12342 12343Fixed a code generation problem in the constant folding optimization code 12344where incorrect code was generated if a constant was reduced to a buffer 12345object (i.e., a reduced type 5 opcode.) 12346 12347Fixed a typechecking problem for the ToBuffer operator. Caused by an 12348incorrect return type in the internal opcode information table. 12349 12350---------------------------------------- 1235125 January 2005. Summary of changes for version 20050125: 12352 123531) ACPI CA Core Subsystem: 12354 12355Fixed a recently introduced problem with the Global Lock where the 12356underlying semaphore was not created. This problem was introduced in 12357version 20050114, and caused an AE_AML_NO_OPERAND exception during an 12358Acquire() operation on _GL. 12359 12360The local object cache is now optional, and is disabled by default. Both 12361AcpiExec and the iASL compiler enable the cache because they run in user 12362mode and this enhances their performance. #define 12363ACPI_ENABLE_OBJECT_CACHE 12364to enable the local cache. 12365 12366Fixed an issue in the internal function AcpiUtEvaluateObject concerning 12367the 12368optional "implicit return" support where an error was returned if no 12369return 12370object was expected, but one was implicitly returned. AE_OK is now 12371returned 12372in this case and the implicitly returned object is deleted. 12373AcpiUtEvaluateObject is only occasionally used, and only to execute 12374reserved 12375methods such as _STA and _INI where the return type is known up front. 12376 12377Fixed a few issues with the internal convert-to-integer code. It now 12378returns 12379an error if an attempt is made to convert a null string, a string of only 12380blanks/tabs, or a zero-length buffer. This affects both implicit 12381conversion 12382and explicit conversion via the ToInteger() operator. 12383 12384The internal debug code in AcpiUtAcquireMutex has been commented out. It 12385is 12386not needed for normal operation and should increase the performance of 12387the 12388entire subsystem. The code remains in case it is needed for debug 12389purposes 12390again. 12391 12392The AcpiExec source and makefile are included in the Unix/Linux package 12393for 12394the first time. 12395 12396Code and Data Size: Current and previous core subsystem library sizes are 12397shown below. These are the code and data sizes for the acpica.lib 12398produced 12399by the Microsoft Visual C++ 6.0 compiler, and these values do not include 12400any ACPI driver or OSPM code. The debug version of the code includes the 12401debug output trace mechanism and has a much larger code and data size. 12402Note 12403that these values will vary depending on the efficiency of the compiler 12404and 12405the compiler options used during generation. 12406 12407 Previous Release: 12408 Non-Debug Version: 78.4K Code, 11.5K Data, 89.9K Total 12409 Debug Version: 165.4K Code, 69.4K Data, 234.8K Total 12410 Current Release: 12411 Non-Debug Version: 78.1K Code, 11.5K Data, 89.6K Total 12412 Debug Version: 164.8K Code, 69.2K Data, 234.0K Total 12413 124142) iASL Compiler/Disassembler: 12415 12416Switch/Case support: A warning is now issued if the type of the Switch 12417value 12418cannot be determined at compile time. For example, Switch(Arg0) will 12419generate the warning, and the type is assumed to be an integer. As per 12420the 12421ACPI spec, use a construct such as Switch(ToInteger(Arg0)) to eliminate 12422the 12423warning. 12424 12425Switch/Case support: Implemented support for buffer and string objects as 12426the switch value. This is an ACPI 3.0 feature, now that LEqual supports 12427buffers and strings. 12428 12429Switch/Case support: The emitted code for the LEqual() comparisons now 12430uses 12431the switch value as the first operand, not the second. The case value is 12432now 12433the second operand, and this allows the case value to be implicitly 12434converted to the type of the switch value, not the other way around. 12435 12436Switch/Case support: Temporary variables are now emitted immediately 12437within 12438the control method, not at the global level. This means that there are 12439now 1244036 temps available per-method, not 36 temps per-module as was the case 12441with 12442the earlier implementation (_T_0 through _T_9 and _T_A through _T_Z.) 12443 12444---------------------------------------- 1244514 January 2005. Summary of changes for version 20050114: 12446 12447Added 2005 copyright to all module headers. This affects every module in 12448the core subsystem, iASL compiler, and the utilities. 12449 124501) ACPI CA Core Subsystem: 12451 12452Fixed an issue with the String-to-Buffer conversion code where the string 12453null terminator was not included in the buffer after conversion, but 12454there 12455is existing ASL that assumes the string null terminator is included. This 12456is 12457the root of the ACPI_AML_BUFFER_LIMIT regression. This problem was 12458introduced in the previous version when the code was updated to correctly 12459set the converted buffer size as per the ACPI specification. The ACPI 12460spec 12461is ambiguous and will be updated to specify that the null terminator must 12462be 12463included in the converted buffer. This also affects the ToBuffer() ASL 12464operator. 12465 12466Fixed a problem with the Mid() ASL/AML operator where it did not work 12467correctly on Buffer objects. Newly created sub-buffers were not being 12468marked 12469as initialized. 12470 12471 12472Fixed a problem in AcpiTbFindTable where incorrect string compares were 12473performed on the OemId and OemTableId table header fields. These fields 12474are 12475not null terminated, so strncmp is now used instead of strcmp. 12476 12477Implemented a restriction on the Store() ASL/AML operator to align the 12478behavior with the ACPI specification. Previously, any object could be 12479used 12480as the source operand. Now, the only objects that may be used are 12481Integers, 12482Buffers, Strings, Packages, Object References, and DDB Handles. If 12483necessary, the original behavior can be restored by enabling the 12484EnableInterpreterSlack flag. 12485 12486Enhanced the optional "implicit return" support to allow an implicit 12487return 12488value from methods that are invoked externally via the AcpiEvaluateObject 12489interface. This enables implicit returns from the _STA and _INI methods, 12490for example. 12491 12492Changed the Revision() ASL/AML operator to return the current version of 12493the 12494AML interpreter, in the YYYYMMDD format. Previously, it incorrectly 12495returned 12496the supported ACPI version (This is the function of the _REV method). 12497 12498Updated the _REV predefined method to return the currently supported 12499version 12500of ACPI, now 3. 12501 12502Implemented batch mode option for the AcpiExec utility (-b). 12503 12504Code and Data Size: Current and previous core subsystem library sizes are 12505shown below. These are the code and data sizes for the acpica.lib 12506produced 12507by the Microsoft Visual C++ 6.0 compiler, and these values do not include 12508any ACPI driver or OSPM code. The debug version of the code includes the 12509debug output trace mechanism and has a much larger code and data size. 12510Note 12511that these values will vary depending on the efficiency of the compiler 12512and 12513the compiler options used during generation. 12514 12515 Previous Release: 12516 Non-Debug Version: 78.3K Code, 11.5K Data, 89.8K Total 12517 Debug Version: 165.3K Code, 69.4K Data, 234.7K Total 12518 Current Release: 12519 Non-Debug Version: 78.4K Code, 11.5K Data, 89.9K Total 12520 Debug Version: 165.4K Code, 69.4K Data, 234.8K Total 12521 12522---------------------------------------- 1252310 December 2004. Summary of changes for version 20041210: 12524 12525ACPI 3.0 support is nearing completion in both the iASL compiler and the 12526ACPI CA core subsystem. 12527 125281) ACPI CA Core Subsystem: 12529 12530Fixed a problem in the ToDecimalString operator where the resulting 12531string 12532length was incorrectly calculated. The length is now calculated exactly, 12533eliminating incorrect AE_STRING_LIMIT exceptions. 12534 12535Fixed a problem in the ToHexString operator to allow a maximum 200 12536character 12537string to be produced. 12538 12539Fixed a problem in the internal string-to-buffer and buffer-to-buffer 12540copy 12541routine where the length of the resulting buffer was not truncated to the 12542new size (if the target buffer already existed). 12543 12544Code and Data Size: Current and previous core subsystem library sizes are 12545shown below. These are the code and data sizes for the acpica.lib 12546produced 12547by the Microsoft Visual C++ 6.0 compiler, and these values do not include 12548any ACPI driver or OSPM code. The debug version of the code includes the 12549debug output trace mechanism and has a much larger code and data size. 12550Note 12551that these values will vary depending on the efficiency of the compiler 12552and 12553the compiler options used during generation. 12554 12555 Previous Release: 12556 Non-Debug Version: 78.3K Code, 11.5K Data, 89.8K Total 12557 Debug Version: 164.7K Code, 68.5K Data, 233.2K Total 12558 Current Release: 12559 Non-Debug Version: 78.3K Code, 11.5K Data, 89.8K Total 12560 Debug Version: 165.3K Code, 69.4K Data, 234.7K Total 12561 12562 125632) iASL Compiler/Disassembler: 12564 12565Implemented the new ACPI 3.0 resource template macros - DWordSpace, 12566ExtendedIO, ExtendedMemory, ExtendedSpace, QWordSpace, and WordSpace. 12567Includes support in the disassembler. 12568 12569Implemented support for the new (ACPI 3.0) parameter to the Register 12570macro, 12571AccessSize. 12572 12573Fixed a problem where the _HE resource name for the Interrupt macro was 12574referencing bit 0 instead of bit 1. 12575 12576Implemented check for maximum 255 interrupts in the Interrupt macro. 12577 12578Fixed a problem with the predefined resource descriptor names where 12579incorrect AML code was generated if the offset within the resource buffer 12580was 0 or 1. The optimizer shortened the AML code to a single byte opcode 12581but did not update the surrounding package lengths. 12582 12583Changes to the Dma macro: All channels within the channel list must be 12584in 12585the range 0-7. Maximum 8 channels can be specified. BusMaster operand is 12586optional (default is BusMaster). 12587 12588Implemented check for maximum 7 data bytes for the VendorShort macro. 12589 12590The ReadWrite parameter is now optional for the Memory32 and similar 12591macros. 12592 12593---------------------------------------- 1259403 December 2004. Summary of changes for version 20041203: 12595 125961) ACPI CA Core Subsystem: 12597 12598The low-level field insertion/extraction code (exfldio) has been 12599completely 12600rewritten to eliminate unnecessary complexity, bugs, and boundary 12601conditions. 12602 12603Fixed a problem in the ToInteger, ToBuffer, ToHexString, and 12604ToDecimalString 12605operators where the input operand could be inadvertently deleted if no 12606conversion was necessary (e.g., if the input to ToInteger was an Integer 12607object.) 12608 12609Fixed a problem with the ToDecimalString and ToHexString where an 12610incorrect 12611exception code was returned if the resulting string would be > 200 chars. 12612AE_STRING_LIMIT is now returned. 12613 12614Fixed a problem with the Concatenate operator where AE_OK was always 12615returned, even if the operation failed. 12616 12617Fixed a problem in oswinxf (used by AcpiExec and iASL) to allow > 128 12618semaphores to be allocated. 12619 12620Code and Data Size: Current and previous core subsystem library sizes are 12621shown below. These are the code and data sizes for the acpica.lib 12622produced 12623by the Microsoft Visual C++ 6.0 compiler, and these values do not include 12624any ACPI driver or OSPM code. The debug version of the code includes the 12625debug output trace mechanism and has a much larger code and data size. 12626Note 12627that these values will vary depending on the efficiency of the compiler 12628and 12629the compiler options used during generation. 12630 12631 Previous Release: 12632 Non-Debug Version: 78.5K Code, 11.5K Data, 90.0K Total 12633 Debug Version: 165.2K Code, 68.6K Data, 233.8K Total 12634 Current Release: 12635 Non-Debug Version: 78.3K Code, 11.5K Data, 89.8K Total 12636 Debug Version: 164.7K Code, 68.5K Data, 233.2K Total 12637 12638 126392) iASL Compiler/Disassembler: 12640 12641Fixed typechecking for the ObjectType and SizeOf operators. Problem was 12642recently introduced in 20041119. 12643 12644Fixed a problem with the ToUUID macro where the upper nybble of each 12645buffer 12646byte was inadvertently set to zero. 12647 12648---------------------------------------- 1264919 November 2004. Summary of changes for version 20041119: 12650 126511) ACPI CA Core Subsystem: 12652 12653Fixed a problem in the internal ConvertToInteger routine where new 12654integers 12655were not truncated to 32 bits for 32-bit ACPI tables. This routine 12656converts 12657buffers and strings to integers. 12658 12659Implemented support to store a value to an Index() on a String object. 12660This 12661is an ACPI 2.0 feature that had not yet been implemented. 12662 12663Implemented new behavior for storing objects to individual package 12664elements 12665(via the Index() operator). The previous behavior was to invoke the 12666implicit 12667conversion rules if an object was already present at the index. The new 12668behavior is to simply delete any existing object and directly store the 12669new 12670object. Although the ACPI specification seems unclear on this subject, 12671other 12672ACPI implementations behave in this manner. (This is the root of the 12673AE_BAD_HEX_CONSTANT issue.) 12674 12675Modified the RSDP memory scan mechanism to support the extended checksum 12676for 12677ACPI 2.0 (and above) RSDPs. Note that the search continues until a valid 12678RSDP signature is found with a valid checksum. 12679 12680Code and Data Size: Current and previous core subsystem library sizes are 12681shown below. These are the code and data sizes for the acpica.lib 12682produced 12683by the Microsoft Visual C++ 6.0 compiler, and these values do not include 12684any ACPI driver or OSPM code. The debug version of the code includes the 12685debug output trace mechanism and has a much larger code and data size. 12686Note 12687that these values will vary depending on the efficiency of the compiler 12688and 12689the compiler options used during generation. 12690 12691 Previous Release: 12692 Non-Debug Version: 78.5K Code, 11.5K Data, 90.0K Total 12693 Debug Version: 165.2K Code, 68.6K Data, 233.8K Total 12694 Current Release: 12695 Non-Debug Version: 78.5K Code, 11.5K Data, 90.0K Total 12696 Debug Version: 165.2K Code, 68.6K Data, 233.8K Total 12697 12698 126992) iASL Compiler/Disassembler: 12700 12701Fixed a missing semicolon in the aslcompiler.y file. 12702 12703---------------------------------------- 1270405 November 2004. Summary of changes for version 20041105: 12705 127061) ACPI CA Core Subsystem: 12707 12708Implemented support for FADT revision 2. This was an interim table 12709(between 12710ACPI 1.0 and ACPI 2.0) that adds support for the FADT reset register. 12711 12712Implemented optional support to allow uninitialized LocalX and ArgX 12713variables in a control method. The variables are initialized to an 12714Integer 12715object with a value of zero. This support is enabled by setting the 12716AcpiGbl_EnableInterpreterSlack flag to TRUE. 12717 12718Implemented support for Integer objects for the SizeOf operator. Either 127194 12720or 8 is returned, depending on the current integer size (32-bit or 64- 12721bit, 12722depending on the parent table revision). 12723 12724Fixed a problem in the implementation of the SizeOf and ObjectType 12725operators 12726where the operand was resolved to a value too early, causing incorrect 12727return values for some objects. 12728 12729Fixed some possible memory leaks during exceptional conditions. 12730 12731Code and Data Size: Current and previous core subsystem library sizes are 12732shown below. These are the code and data sizes for the acpica.lib 12733produced 12734by the Microsoft Visual C++ 6.0 compiler, and these values do not include 12735any ACPI driver or OSPM code. The debug version of the code includes the 12736debug output trace mechanism and has a much larger code and data size. 12737Note 12738that these values will vary depending on the efficiency of the compiler 12739and 12740the compiler options used during generation. 12741 12742 Previous Release: 12743 Non-Debug Version: 78.0K Code, 11.5K Data, 89.5K Total 12744 Debug Version: 164.8K Code, 68.6K Data, 233.4K Total 12745 Current Release: 12746 Non-Debug Version: 78.5K Code, 11.5K Data, 90.0K Total 12747 Debug Version: 165.2K Code, 68.6K Data, 233.8K Total 12748 12749 127502) iASL Compiler/Disassembler: 12751 12752Implemented support for all ACPI 3.0 reserved names and methods. 12753 12754Implemented all ACPI 3.0 grammar elements in the front-end, including 12755support for semicolons. 12756 12757Implemented the ACPI 3.0 Function() and ToUUID() macros 12758 12759Fixed a problem in the disassembler where a Scope() operator would not be 12760emitted properly if the target of the scope was in another table. 12761 12762---------------------------------------- 1276315 October 2004. Summary of changes for version 20041015: 12764 12765Note: ACPI CA is currently undergoing an in-depth and complete formal 12766evaluation to test/verify the following areas. Other suggestions are 12767welcome. This will result in an increase in the frequency of releases and 12768the number of bug fixes in the next few months. 12769 - Functional tests for all ASL/AML operators 12770 - All implicit/explicit type conversions 12771 - Bit fields and operation regions 12772 - 64-bit math support and 32-bit-only "truncated" math support 12773 - Exceptional conditions, both compiler and interpreter 12774 - Dynamic object deletion and memory leaks 12775 - ACPI 3.0 support when implemented 12776 - External interfaces to the ACPI subsystem 12777 12778 127791) ACPI CA Core Subsystem: 12780 12781Fixed two alignment issues on 64-bit platforms - within debug statements 12782in 12783AcpiEvGpeDetect and AcpiEvCreateGpeBlock. Removed references to the 12784Address 12785field within the non-aligned ACPI generic address structure. 12786 12787Fixed a problem in the Increment and Decrement operators where incorrect 12788operand resolution could result in the inadvertent modification of the 12789original integer when the integer is passed into another method as an 12790argument and the arg is then incremented/decremented. 12791 12792Fixed a problem in the FromBCD operator where the upper 32-bits of a 64- 12793bit 12794BCD number were truncated during conversion. 12795 12796Fixed a problem in the ToDecimal operator where the length of the 12797resulting 12798string could be set incorrectly too long if the input operand was a 12799Buffer 12800object. 12801 12802Fixed a problem in the Logical operators (LLess, etc.) where a NULL byte 12803(0) 12804within a buffer would prematurely terminate a compare between buffer 12805objects. 12806 12807Added a check for string overflow (>200 characters as per the ACPI 12808specification) during the Concatenate operator with two string operands. 12809 12810Code and Data Size: Current and previous core subsystem library sizes are 12811shown below. These are the code and data sizes for the acpica.lib 12812produced 12813by the Microsoft Visual C++ 6.0 compiler, and these values do not include 12814any ACPI driver or OSPM code. The debug version of the code includes the 12815debug output trace mechanism and has a much larger code and data size. 12816Note 12817that these values will vary depending on the efficiency of the compiler 12818and 12819the compiler options used during generation. 12820 12821 Previous Release: 12822 Non-Debug Version: 77.8K Code, 11.5K Data, 89.3K Total 12823 Debug Version: 164.6K Code, 68.5K Data, 233.1K Total 12824 Current Release: 12825 Non-Debug Version: 78.0K Code, 11.5K Data, 89.5K Total 12826 Debug Version: 164.8K Code, 68.6K Data, 233.4K Total 12827 12828 12829 128302) iASL Compiler/Disassembler: 12831 12832Allow the use of the ObjectType operator on uninitialized Locals and Args 12833(returns 0 as per the ACPI specification). 12834 12835Fixed a problem where the compiler would fault if there was a syntax 12836error 12837in the FieldName of all of the various CreateXXXField operators. 12838 12839Disallow the use of lower case letters within the EISAID macro, as per 12840the 12841ACPI specification. All EISAID strings must be of the form "UUUNNNN" 12842Where 12843U is an uppercase letter and N is a hex digit. 12844 12845 12846---------------------------------------- 1284706 October 2004. Summary of changes for version 20041006: 12848 128491) ACPI CA Core Subsystem: 12850 12851Implemented support for the ACPI 3.0 Timer operator. This ASL function 12852implements a 64-bit timer with 100 nanosecond granularity. 12853 12854Defined a new OSL interface, AcpiOsGetTimer. This interface is used to 12855implement the ACPI 3.0 Timer operator. This allows the host OS to 12856implement 12857the timer with the best clock available. Also, it keeps the core 12858subsystem 12859out of the clock handling business, since the host OS (usually) performs 12860this function. 12861 12862Fixed an alignment issue on 64-bit platforms. The HwLowLevelRead(Write) 12863functions use a 64-bit address which is part of the packed ACPI Generic 12864Address Structure. Since the structure is non-aligned, the alignment 12865macros 12866are now used to extract the address to a local variable before use. 12867 12868Fixed a problem where the ToInteger operator assumed all input strings 12869were 12870hexadecimal. The operator now handles both decimal strings and hex 12871strings 12872(prefixed with "0x"). 12873 12874Fixed a problem where the string length in the string object created as a 12875result of the internal ConvertToString procedure could be incorrect. This 12876potentially affected all implicit conversions and also the 12877ToDecimalString 12878and ToHexString operators. 12879 12880Fixed two problems in the ToString operator. If the length parameter was 12881zero, an incorrect string object was created and the value of the input 12882length parameter was inadvertently changed from zero to Ones. 12883 12884Fixed a problem where the optional ResourceSource string in the 12885ExtendedIRQ 12886resource macro was ignored. 12887 12888Simplified the interfaces to the internal division functions, reducing 12889code 12890size and complexity. 12891 12892Code and Data Size: Current and previous core subsystem library sizes are 12893shown below. These are the code and data sizes for the acpica.lib 12894produced 12895by the Microsoft Visual C++ 6.0 compiler, and these values do not include 12896any ACPI driver or OSPM code. The debug version of the code includes the 12897debug output trace mechanism and has a much larger code and data size. 12898Note 12899that these values will vary depending on the efficiency of the compiler 12900and 12901the compiler options used during generation. 12902 12903 Previous Release: 12904 Non-Debug Version: 77.9K Code, 11.4K Data, 89.3K Total 12905 Debug Version: 164.5K Code, 68.3K Data, 232.8K Total 12906 Current Release: 12907 Non-Debug Version: 77.8K Code, 11.5K Data, 89.3K Total 12908 Debug Version: 164.6K Code, 68.5K Data, 233.1K Total 12909 12910 129112) iASL Compiler/Disassembler: 12912 12913Implemented support for the ACPI 3.0 Timer operator. 12914 12915Fixed a problem where the Default() operator was inadvertently ignored in 12916a 12917Switch/Case block. This was a problem in the translation of the Switch 12918statement to If...Else pairs. 12919 12920Added support to allow a standalone Return operator, with no parentheses 12921(or 12922operands). 12923 12924Fixed a problem with code generation for the ElseIf operator where the 12925translated Else...If parse tree was improperly constructed leading to the 12926loss of some code. 12927 12928---------------------------------------- 1292922 September 2004. Summary of changes for version 20040922: 12930 129311) ACPI CA Core Subsystem: 12932 12933Fixed a problem with the implementation of the LNot() operator where 12934"Ones" 12935was not returned for the TRUE case. Changed the code to return Ones 12936instead 12937of (!Arg) which was usually 1. This change affects iASL constant folding 12938for 12939this operator also. 12940 12941Fixed a problem in AcpiUtInitializeBuffer where an existing buffer was 12942not 12943initialized properly -- Now zero the entire buffer in this case where the 12944buffer already exists. 12945 12946Changed the interface to AcpiOsSleep from (UINT32 Seconds, UINT32 12947Milliseconds) to simply (ACPI_INTEGER Milliseconds). This simplifies all 12948related code considerably. This will require changes/updates to all OS 12949interface layers (OSLs.) 12950 12951Implemented a new external interface, AcpiInstallExceptionHandler, to 12952allow 12953a system exception handler to be installed. This handler is invoked upon 12954any 12955run-time exception that occurs during control method execution. 12956 12957Added support for the DSDT in AcpiTbFindTable. This allows the 12958DataTableRegion() operator to access the local copy of the DSDT. 12959 12960Code and Data Size: Current and previous core subsystem library sizes are 12961shown below. These are the code and data sizes for the acpica.lib 12962produced 12963by the Microsoft Visual C++ 6.0 compiler, and these values do not include 12964any ACPI driver or OSPM code. The debug version of the code includes the 12965debug output trace mechanism and has a much larger code and data size. 12966Note 12967that these values will vary depending on the efficiency of the compiler 12968and 12969the compiler options used during generation. 12970 12971 Previous Release: 12972 Non-Debug Version: 77.8K Code, 11.4K Data, 89.2K Total 12973 Debug Version: 164.2K Code, 68.2K Data, 232.4K Total 12974 Current Release: 12975 Non-Debug Version: 77.9K Code, 11.4K Data, 89.3K Total 12976 Debug Version: 164.5K Code, 68.3K Data, 232.8K Total 12977 12978 129792) iASL Compiler/Disassembler: 12980 12981Fixed a problem with constant folding and the LNot operator. LNot was 12982returning 1 in the TRUE case, not Ones as per the ACPI specification. 12983This 12984could result in the generation of an incorrect folded/reduced constant. 12985 12986End-Of-File is now allowed within a "//"-style comment. A parse error no 12987longer occurs if such a comment is at the very end of the input ASL 12988source 12989file. 12990 12991Implemented the "-r" option to override the Revision in the table header. 12992The initial use of this option will be to simplify the evaluation of the 12993AML 12994interpreter by allowing a single ASL source module to be compiled for 12995either 1299632-bit or 64-bit integers. 12997 12998 12999---------------------------------------- 1300027 August 2004. Summary of changes for version 20040827: 13001 130021) ACPI CA Core Subsystem: 13003 13004- Implemented support for implicit object conversion in the non-numeric 13005logical operators (LEqual, LGreater, LGreaterEqual, LLess, LLessEqual, 13006and 13007LNotEqual.) Any combination of Integers/Strings/Buffers may now be used; 13008the second operand is implicitly converted on the fly to match the type 13009of 13010the first operand. For example: 13011 13012 LEqual (Source1, Source2) 13013 13014Source1 and Source2 must each evaluate to an integer, a string, or a 13015buffer. 13016The data type of Source1 dictates the required type of Source2. Source2 13017is 13018implicitly converted if necessary to match the type of Source1. 13019 13020- Updated and corrected the behavior of the string conversion support. 13021The 13022rules concerning conversion of buffers to strings (according to the ACPI 13023specification) are as follows: 13024 13025ToDecimalString - explicit byte-wise conversion of buffer to string of 13026decimal values (0-255) separated by commas. ToHexString - explicit byte- 13027wise 13028conversion of buffer to string of hex values (0-FF) separated by commas. 13029ToString - explicit byte-wise conversion of buffer to string. Byte-by- 13030byte 13031copy with no transform except NULL terminated. Any other implicit buffer- 13032to- 13033string conversion - byte-wise conversion of buffer to string of hex 13034values 13035(0-FF) separated by spaces. 13036 13037- Fixed typo in definition of AcpiGbl_EnableInterpreterSlack. 13038 13039- Fixed a problem in AcpiNsGetPathnameLength where the returned length 13040was 13041one byte too short in the case of a node in the root scope. This could 13042cause a fault during debug output. 13043 13044- Code and Data Size: Current and previous core subsystem library sizes 13045are 13046shown below. These are the code and data sizes for the acpica.lib 13047produced 13048by the Microsoft Visual C++ 6.0 compiler, and these values do not include 13049any ACPI driver or OSPM code. The debug version of the code includes the 13050debug output trace mechanism and has a much larger code and data size. 13051Note 13052that these values will vary depending on the efficiency of the compiler 13053and 13054the compiler options used during generation. 13055 13056 Previous Release: 13057 Non-Debug Version: 77.9K Code, 11.5K Data, 89.4K Total 13058 Debug Version: 164.1K Code, 68.3K Data, 232.4K Total 13059 Current Release: 13060 Non-Debug Version: 77.8K Code, 11.4K Data, 89.2K Total 13061 Debug Version: 164.2K Code, 68.2K Data, 232.4K Total 13062 13063 130642) iASL Compiler/Disassembler: 13065 13066- Fixed a Linux generation error. 13067 13068 13069---------------------------------------- 1307016 August 2004. Summary of changes for version 20040816: 13071 130721) ACPI CA Core Subsystem: 13073 13074Designed and implemented support within the AML interpreter for the so- 13075called "implicit return". This support returns the result of the last 13076ASL 13077operation within a control method, in the absence of an explicit Return() 13078operator. A few machines depend on this behavior, even though it is not 13079explicitly supported by the ASL language. It is optional support that 13080can 13081be enabled at runtime via the AcpiGbl_EnableInterpreterSlack flag. 13082 13083Removed support for the PCI_Config address space from the internal low 13084level 13085hardware interfaces (AcpiHwLowLevelRead and AcpiHwLowLevelWrite). This 13086support was not used internally, and would not work correctly anyway 13087because 13088the PCI bus number and segment number were not supported. There are 13089separate interfaces for PCI configuration space access because of the 13090unique 13091interface. 13092 13093Code and Data Size: Current and previous core subsystem library sizes are 13094shown below. These are the code and data sizes for the acpica.lib 13095produced 13096by the Microsoft Visual C++ 6.0 compiler, and these values do not include 13097any ACPI driver or OSPM code. The debug version of the code includes the 13098debug output trace mechanism and has a much larger code and data size. 13099Note 13100that these values will vary depending on the efficiency of the compiler 13101and 13102the compiler options used during generation. 13103 13104 Previous Release: 13105 Non-Debug Version: 78.0K Code, 11.5K Data, 89.5K Total 13106 Debug Version: 164.1K Code, 68.2K Data, 232.3K Total 13107 Current Release: 13108 Non-Debug Version: 77.9K Code, 11.5K Data, 89.4K Total 13109 Debug Version: 164.1K Code, 68.3K Data, 232.4K Total 13110 13111 131122) iASL Compiler/Disassembler: 13113 13114Fixed a problem where constants in ASL expressions at the root level (not 13115within a control method) could be inadvertently truncated during code 13116generation. This problem was introduced in the 20040715 release. 13117 13118 13119---------------------------------------- 1312015 July 2004. Summary of changes for version 20040715: 13121 131221) ACPI CA Core Subsystem: 13123 13124Restructured the internal HW GPE interfaces to pass/track the current 13125state 13126of interrupts (enabled/disabled) in order to avoid possible deadlock and 13127increase flexibility of the interfaces. 13128 13129Implemented a "lexicographical compare" for String and Buffer objects 13130within 13131the logical operators -- LGreater, LLess, LGreaterEqual, and LLessEqual - 13132- 13133as per further clarification to the ACPI specification. Behavior is 13134similar 13135to C library "strcmp". 13136 13137Completed a major reduction in CPU stack use for the AcpiGetFirmwareTable 13138external function. In the 32-bit non-debug case, the stack use has been 13139reduced from 168 bytes to 32 bytes. 13140 13141Deployed a new run-time configuration flag, 13142AcpiGbl_EnableInterpreterSlack, 13143whose purpose is to allow the AML interpreter to forgive certain bad AML 13144constructs. Default setting is FALSE. 13145 13146Implemented the first use of AcpiGbl_EnableInterpreterSlack in the Field 13147IO 13148support code. If enabled, it allows field access to go beyond the end of 13149a 13150region definition if the field is within the region length rounded up to 13151the 13152next access width boundary (a common coding error.) 13153 13154Renamed OSD_HANDLER to ACPI_OSD_HANDLER, and OSD_EXECUTION_CALLBACK to 13155ACPI_OSD_EXEC_CALLBACK for consistency with other ACPI symbols. Also, 13156these 13157symbols are lowercased by the latest version of the AcpiSrc tool. 13158 13159The prototypes for the PCI interfaces in acpiosxf.h have been updated to 13160rename "Register" to simply "Reg" to prevent certain compilers from 13161complaining. 13162 13163Code and Data Size: Current and previous core subsystem library sizes are 13164shown below. These are the code and data sizes for the acpica.lib 13165produced 13166by the Microsoft Visual C++ 6.0 compiler, and these values do not include 13167any ACPI driver or OSPM code. The debug version of the code includes the 13168debug output trace mechanism and has a much larger code and data size. 13169Note 13170that these values will vary depending on the efficiency of the compiler 13171and 13172the compiler options used during generation. 13173 13174 Previous Release: 13175 Non-Debug Version: 77.8K Code, 11.5K Data, 89.3K Total 13176 Debug Version: 163.8K Code, 68.2K Data, 232.0K Total 13177 Current Release: 13178 Non-Debug Version: 78.0K Code, 11.5K Data, 89.5K Total 13179 Debug Version: 164.1K Code, 68.2K Data, 232.3K Total 13180 13181 131822) iASL Compiler/Disassembler: 13183 13184Implemented full support for Package objects within the Case() operator. 13185Note: The Break() operator is currently not supported within Case blocks 13186(TermLists) as there is some question about backward compatibility with 13187ACPI 131881.0 interpreters. 13189 13190 13191Fixed a problem where complex terms were not supported properly within 13192the 13193Switch() operator. 13194 13195Eliminated extraneous warning for compiler-emitted reserved names of the 13196form "_T_x". (Used in Switch/Case operators.) 13197 13198Eliminated optimization messages for "_T_x" objects and small constants 13199within the DefinitionBlock operator. 13200 13201 13202---------------------------------------- 1320315 June 2004. Summary of changes for version 20040615: 13204 132051) ACPI CA Core Subsystem: 13206 13207Implemented support for Buffer and String objects (as per ACPI 2.0) for 13208the 13209following ASL operators: LEqual, LGreater, LLess, LGreaterEqual, and 13210LLessEqual. 13211 13212All directory names in the entire source package are lower case, as they 13213were in earlier releases. 13214 13215Implemented "Disassemble" command in the AML debugger that will 13216disassemble 13217a single control method. 13218 13219Code and Data Size: Current and previous core subsystem library sizes are 13220shown below. These are the code and data sizes for the acpica.lib 13221produced 13222by the Microsoft Visual C++ 6.0 compiler, and these values do not include 13223any ACPI driver or OSPM code. The debug version of the code includes the 13224debug output trace mechanism and has a much larger code and data size. 13225Note 13226that these values will vary depending on the efficiency of the compiler 13227and 13228the compiler options used during generation. 13229 13230 Previous Release: 13231 Non-Debug Version: 77.7K Code, 11.5K Data, 89.2K Total 13232 Debug Version: 163.3K Code, 67.2K Data, 230.5K Total 13233 13234 Current Release: 13235 Non-Debug Version: 77.8K Code, 11.5K Data, 89.3K Total 13236 Debug Version: 163.8K Code, 68.2K Data, 232.0K Total 13237 13238 132392) iASL Compiler/Disassembler: 13240 13241Implemented support for Buffer and String objects (as per ACPI 2.0) for 13242the 13243following ASL operators: LEqual, LGreater, LLess, LGreaterEqual, and 13244LLessEqual. 13245 13246All directory names in the entire source package are lower case, as they 13247were in earlier releases. 13248 13249Fixed a fault when using the -g or -d<nofilename> options if the FADT was 13250not found. 13251 13252Fixed an issue with the Windows version of the compiler where later 13253versions 13254of Windows place the FADT in the registry under the name "FADT" and not 13255"FACP" as earlier versions did. This applies when using the -g or - 13256d<nofilename> options. The compiler now looks for both strings as 13257necessary. 13258 13259Fixed a problem with compiler namepath optimization where a namepath 13260within 13261the Scope() operator could not be optimized if the namepath was a subpath 13262of 13263the current scope path. 13264 13265---------------------------------------- 1326627 May 2004. Summary of changes for version 20040527: 13267 132681) ACPI CA Core Subsystem: 13269 13270Completed a new design and implementation for EBDA (Extended BIOS Data 13271Area) 13272support in the RSDP scan code. The original code improperly scanned for 13273the 13274EBDA by simply scanning from memory location 0 to 0x400. The correct 13275method 13276is to first obtain the EBDA pointer from within the BIOS data area, then 13277scan 1K of memory starting at the EBDA pointer. There appear to be few 13278if 13279any machines that place the RSDP in the EBDA, however. 13280 13281Integrated a fix for a possible fault during evaluation of BufferField 13282arguments. Obsolete code that was causing the problem was removed. 13283 13284Found and fixed a problem in the Field Support Code where data could be 13285corrupted on a bit field read that starts on an aligned boundary but does 13286not end on an aligned boundary. Merged the read/write "datum length" 13287calculation code into a common procedure. 13288 13289Rolled in a couple of changes to the FreeBSD-specific header. 13290 13291 13292Code and Data Size: Current and previous core subsystem library sizes are 13293shown below. These are the code and data sizes for the acpica.lib 13294produced 13295by the Microsoft Visual C++ 6.0 compiler, and these values do not include 13296any ACPI driver or OSPM code. The debug version of the code includes the 13297debug output trace mechanism and has a much larger code and data size. 13298Note 13299that these values will vary depending on the efficiency of the compiler 13300and 13301the compiler options used during generation. 13302 13303 Previous Release: 13304 Non-Debug Version: 77.6K Code, 11.5K Data, 89.1K Total 13305 Debug Version: 163.2K Code, 67.2K Data, 230.4K Total 13306 Current Release: 13307 Non-Debug Version: 77.7K Code, 11.5K Data, 89.2K Total 13308 Debug Version: 163.3K Code, 67.2K Data, 230.5K Total 13309 13310 133112) iASL Compiler/Disassembler: 13312 13313Fixed a generation warning produced by some overly-verbose compilers for 13314a 1331564-bit constant. 13316 13317---------------------------------------- 1331814 May 2004. Summary of changes for version 20040514: 13319 133201) ACPI CA Core Subsystem: 13321 13322Fixed a problem where hardware GPE enable bits sometimes not set properly 13323during and after GPE method execution. Result of 04/27 changes. 13324 13325Removed extra "clear all GPEs" when sleeping/waking. 13326 13327Removed AcpiHwEnableGpe and AcpiHwDisableGpe, replaced by the single 13328AcpiHwWriteGpeEnableReg. Changed a couple of calls to the functions above 13329to 13330the new AcpiEv* calls as appropriate. 13331 13332ACPI_OS_NAME was removed from the OS-specific headers. The default name 13333is 13334now "Microsoft Windows NT" for maximum compatibility. However this can 13335be 13336changed by modifying the acconfig.h file. 13337 13338Allow a single invocation of AcpiInstallNotifyHandler for a handler that 13339traps both types of notifies (System, Device). Use ACPI_ALL_NOTIFY flag. 13340 13341Run _INI methods on ThermalZone objects. This is against the ACPI 13342specification, but there is apparently ASL code in the field that has 13343these 13344_INI methods, and apparently "other" AML interpreters execute them. 13345 13346Performed a full 16/32/64 bit lint that resulted in some small changes. 13347 13348Added a sleep simulation command to the AML debugger to test sleep code. 13349 13350Code and Data Size: Current and previous core subsystem library sizes are 13351shown below. These are the code and data sizes for the acpica.lib 13352produced 13353by the Microsoft Visual C++ 6.0 compiler, and these values do not include 13354any ACPI driver or OSPM code. The debug version of the code includes the 13355debug output trace mechanism and has a much larger code and data size. 13356Note 13357that these values will vary depending on the efficiency of the compiler 13358and 13359the compiler options used during generation. 13360 13361 Previous Release: 13362 Non-Debug Version: 77.6K Code, 11.5K Data, 89.1K Total 13363 Debug Version: 162.9K Code, 67.0K Data, 229.9K Total 13364 Current Release: 13365 Non-Debug Version: 77.6K Code, 11.5K Data, 89.1K Total 13366 Debug Version: 163.2K Code, 67.2K Data, 230.4K Total 13367 13368---------------------------------------- 1336927 April 2004. Summary of changes for version 20040427: 13370 133711) ACPI CA Core Subsystem: 13372 13373Completed a major overhaul of the GPE handling within ACPI CA. There are 13374now three types of GPEs: wake-only, runtime-only, and combination 13375wake/run. 13376The only GPEs allowed to be combination wake/run are for button-style 13377devices such as a control-method power button, control-method sleep 13378button, 13379or a notebook lid switch. GPEs that have an _Lxx or _Exx method and are 13380not 13381referenced by any _PRW methods are marked for "runtime" and hardware 13382enabled. Any GPE that is referenced by a _PRW method is marked for 13383"wake" 13384(and disabled at runtime). However, at sleep time, only those GPEs that 13385have been specifically enabled for wake via the AcpiEnableGpe interface 13386will 13387actually be hardware enabled. 13388 13389A new external interface has been added, AcpiSetGpeType(), that is meant 13390to 13391be used by device drivers to force a GPE to a particular type. It will 13392be 13393especially useful for the drivers for the button devices mentioned above. 13394 13395Completed restructuring of the ACPI CA initialization sequence so that 13396default operation region handlers are installed before GPEs are 13397initialized 13398and the _PRW methods are executed. This will prevent errors when the 13399_PRW 13400methods attempt to access system memory or I/O space. 13401 13402GPE enable/disable no longer reads the GPE enable register. We now keep 13403the 13404enable info for runtime and wake separate and in the GPE_EVENT_INFO. We 13405thus no longer depend on the hardware to maintain these bits. 13406 13407Always clear the wake status and fixed/GPE status bits before sleep, even 13408for state S5. 13409 13410Improved the AML debugger output for displaying the GPE blocks and their 13411current status. 13412 13413Added new strings for the _OSI method, of the form "Windows 2001 SPx" 13414where 13415x = 0,1,2,3,4. 13416 13417Fixed a problem where the physical address was incorrectly calculated 13418when 13419the Load() operator was used to directly load from an Operation Region 13420(vs. 13421loading from a Field object.) Also added check for minimum table length 13422for 13423this case. 13424 13425Fix for multiple mutex acquisition. Restore original thread SyncLevel on 13426mutex release. 13427 13428Added ACPI_VALID_SXDS flag to the AcpiGetObjectInfo interface for 13429consistency with the other fields returned. 13430 13431Shrunk the ACPI_GPE_EVENT_INFO structure by 40%. There is one such 13432structure for each GPE in the system, so the size of this structure is 13433important. 13434 13435CPU stack requirement reduction: Cleaned up the method execution and 13436object 13437evaluation paths so that now a parameter structure is passed, instead of 13438copying the various method parameters over and over again. 13439 13440In evregion.c: Correctly exit and reenter the interpreter region if and 13441only if dispatching an operation region request to a user-installed 13442handler. 13443Do not exit/reenter when dispatching to a default handler (e.g., default 13444system memory or I/O handlers) 13445 13446 13447Notes for updating drivers for the new GPE support. The following 13448changes 13449must be made to ACPI-related device drivers that are attached to one or 13450more 13451GPEs: (This information will be added to the ACPI CA Programmer 13452Reference.) 13453 134541) AcpiInstallGpeHandler no longer automatically enables the GPE, you 13455must 13456explicitly call AcpiEnableGpe. 134572) There is a new interface called AcpiSetGpeType. This should be called 13458before enabling the GPE. Also, this interface will automatically disable 13459the GPE if it is currently enabled. 134603) AcpiEnableGpe no longer supports a GPE type flag. 13461 13462Specific drivers that must be changed: 134631) EC driver: 13464 AcpiInstallGpeHandler (NULL, GpeNum, ACPI_GPE_EDGE_TRIGGERED, 13465AeGpeHandler, NULL); 13466 AcpiSetGpeType (NULL, GpeNum, ACPI_GPE_TYPE_RUNTIME); 13467 AcpiEnableGpe (NULL, GpeNum, ACPI_NOT_ISR); 13468 134692) Button Drivers (Power, Lid, Sleep): 13470Run _PRW method under parent device 13471If _PRW exists: /* This is a control-method button */ 13472 Extract GPE number and possibly GpeDevice 13473 AcpiSetGpeType (GpeDevice, GpeNum, ACPI_GPE_TYPE_WAKE_RUN); 13474 AcpiEnableGpe (GpeDevice, GpeNum, ACPI_NOT_ISR); 13475 13476For all other devices that have _PRWs, we automatically set the GPE type 13477to 13478ACPI_GPE_TYPE_WAKE, but the GPE is NOT automatically (wake) enabled. 13479This 13480must be done on a selective basis, usually requiring some kind of user 13481app 13482to allow the user to pick the wake devices. 13483 13484 13485Code and Data Size: Current and previous core subsystem library sizes are 13486shown below. These are the code and data sizes for the acpica.lib 13487produced 13488by the Microsoft Visual C++ 6.0 compiler, and these values do not include 13489any ACPI driver or OSPM code. The debug version of the code includes the 13490debug output trace mechanism and has a much larger code and data size. 13491Note 13492that these values will vary depending on the efficiency of the compiler 13493and 13494the compiler options used during generation. 13495 13496 Previous Release: 13497 Non-Debug Version: 77.0K Code, 11.4K Data, 88.4K Total 13498 Debug Version: 161.0K Code, 66.3K Data, 227.3K Total 13499 Current Release: 13500 13501 Non-Debug Version: 77.6K Code, 11.5K Data, 89.1K Total 13502 Debug Version: 162.9K Code, 67.0K Data, 229.9K Total 13503 13504 13505 13506---------------------------------------- 1350702 April 2004. Summary of changes for version 20040402: 13508 135091) ACPI CA Core Subsystem: 13510 13511Fixed an interpreter problem where an indirect store through an ArgX 13512parameter was incorrectly applying the "implicit conversion rules" during 13513the store. From the ACPI specification: "If the target is a method local 13514or 13515argument (LocalX or ArgX), no conversion is performed and the result is 13516stored directly to the target". The new behavior is to disable implicit 13517conversion during ALL stores to an ArgX. 13518 13519Changed the behavior of the _PRW method scan to ignore any and all errors 13520returned by a given _PRW. This prevents the scan from aborting from the 13521failure of any single _PRW. 13522 13523Moved the runtime configuration parameters from the global init procedure 13524to 13525static variables in acglobal.h. This will allow the host to override the 13526default values easily. 13527 13528Code and Data Size: Current and previous core subsystem library sizes are 13529shown below. These are the code and data sizes for the acpica.lib 13530produced 13531by the Microsoft Visual C++ 6.0 compiler, and these values do not include 13532any ACPI driver or OSPM code. The debug version of the code includes the 13533debug output trace mechanism and has a much larger code and data size. 13534Note 13535that these values will vary depending on the efficiency of the compiler 13536and 13537the compiler options used during generation. 13538 13539 Previous Release: 13540 Non-Debug Version: 76.9K Code, 11.4K Data, 88.3K Total 13541 Debug Version: 160.8K Code, 66.1K Data, 226.9K Total 13542 Current Release: 13543 Non-Debug Version: 77.0K Code, 11.4K Data, 88.4K Total 13544 Debug Version: 161.0K Code, 66.3K Data, 227.3K Total 13545 13546 135472) iASL Compiler/Disassembler: 13548 13549iASL now fully disassembles SSDTs. However, External() statements are 13550not 13551generated automatically for unresolved symbols at this time. This is a 13552planned feature for future implementation. 13553 13554Fixed a scoping problem in the disassembler that occurs when the type of 13555the 13556target of a Scope() operator is overridden. This problem caused an 13557incorrectly nested internal namespace to be constructed. 13558 13559Any warnings or errors that are emitted during disassembly are now 13560commented 13561out automatically so that the resulting file can be recompiled without 13562any 13563hand editing. 13564 13565---------------------------------------- 1356626 March 2004. Summary of changes for version 20040326: 13567 135681) ACPI CA Core Subsystem: 13569 13570Implemented support for "wake" GPEs via interaction between GPEs and the 13571_PRW methods. Every GPE that is pointed to by one or more _PRWs is 13572identified as a WAKE GPE and by default will no longer be enabled at 13573runtime. Previously, we were blindly enabling all GPEs with a 13574corresponding 13575_Lxx or _Exx method - but most of these turn out to be WAKE GPEs anyway. 13576We 13577believe this has been the cause of thousands of "spurious" GPEs on some 13578systems. 13579 13580This new GPE behavior is can be reverted to the original behavior (enable 13581ALL GPEs at runtime) via a runtime flag. 13582 13583Fixed a problem where aliased control methods could not access objects 13584properly. The proper scope within the namespace was not initialized 13585(transferred to the target of the aliased method) before executing the 13586target method. 13587 13588Fixed a potential race condition on internal object deletion on the 13589return 13590object in AcpiEvaluateObject. 13591 13592Integrated a fix for resource descriptors where both _MEM and _MTP were 13593being extracted instead of just _MEM. (i.e. bitmask was incorrectly too 13594wide, 0x0F instead of 0x03.) 13595 13596Added a special case for ACPI_ROOT_OBJECT in AcpiUtGetNodeName, 13597preventing 13598a 13599fault in some cases. 13600 13601Updated Notify() values for debug statements in evmisc.c 13602 13603Return proper status from AcpiUtMutexInitialize, not just simply AE_OK. 13604 13605Code and Data Size: Current and previous core subsystem library sizes are 13606shown below. These are the code and data sizes for the acpica.lib 13607produced 13608by the Microsoft Visual C++ 6.0 compiler, and these values do not include 13609any ACPI driver or OSPM code. The debug version of the code includes the 13610debug output trace mechanism and has a much larger code and data size. 13611Note 13612that these values will vary depending on the efficiency of the compiler 13613and 13614the compiler options used during generation. 13615 13616 Previous Release: 13617 13618 Non-Debug Version: 76.5K Code, 11.3K Data, 87.8K Total 13619 Debug Version: 160.3K Code, 66.0K Data, 226.3K Total 13620 Current Release: 13621 Non-Debug Version: 76.9K Code, 11.4K Data, 88.3K Total 13622 Debug Version: 160.8K Code, 66.1K Data, 226.9K Total 13623 13624---------------------------------------- 1362511 March 2004. Summary of changes for version 20040311: 13626 136271) ACPI CA Core Subsystem: 13628 13629Fixed a problem where errors occurring during the parse phase of control 13630method execution did not abort cleanly. For example, objects created and 13631installed in the namespace were not deleted. This caused all subsequent 13632invocations of the method to return the AE_ALREADY_EXISTS exception. 13633 13634Implemented a mechanism to force a control method to "Serialized" 13635execution 13636if the method attempts to create namespace objects. (The root of the 13637AE_ALREADY_EXISTS problem.) 13638 13639Implemented support for the predefined _OSI "internal" control method. 13640Initial supported strings are "Linux", "Windows 2000", "Windows 2001", 13641and 13642"Windows 2001.1", and can be easily upgraded for new strings as 13643necessary. 13644This feature will allow "other" operating systems to execute the fully 13645tested, "Windows" code path through the ASL code 13646 13647Global Lock Support: Now allows multiple acquires and releases with any 13648internal thread. Removed concept of "owning thread" for this special 13649mutex. 13650 13651Fixed two functions that were inappropriately declaring large objects on 13652the 13653CPU stack: PsParseLoop, NsEvaluateRelative. Reduces the stack usage 13654during 13655method execution considerably. 13656 13657Fixed a problem in the ACPI 2.0 FACS descriptor (actbl2.h) where the 13658S4Bios_f field was incorrectly defined as UINT32 instead of UINT32_BIT. 13659 13660Fixed a problem where AcpiEvGpeDetect would fault if there were no GPEs 13661defined on the machine. 13662 13663Implemented two runtime options: One to force all control method 13664execution 13665to "Serialized" to mimic Windows behavior, another to disable _OSI 13666support 13667if it causes problems on a given machine. 13668 13669Code and Data Size: Current and previous core subsystem library sizes are 13670shown below. These are the code and data sizes for the acpica.lib 13671produced 13672by the Microsoft Visual C++ 6.0 compiler, and these values do not include 13673any ACPI driver or OSPM code. The debug version of the code includes the 13674debug output trace mechanism and has a much larger code and data size. 13675Note 13676that these values will vary depending on the efficiency of the compiler 13677and 13678the compiler options used during generation. 13679 13680 Previous Release: 13681 Non-Debug Version: 74.8K Code, 10.1K Data, 84.9K Total 13682 Debug Version: 158.7K Code, 65.1K Data, 223.8K Total 13683 Current Release: 13684 Non-Debug Version: 76.5K Code, 11.3K Data, 87.8K Total 13685 Debug Version: 160.3K Code, 66.0K Data, 226.3K Total 13686 136872) iASL Compiler/Disassembler: 13688 13689Fixed an array size problem for FreeBSD that would cause the compiler to 13690fault. 13691 13692---------------------------------------- 1369320 February 2004. Summary of changes for version 20040220: 13694 13695 136961) ACPI CA Core Subsystem: 13697 13698Implemented execution of _SxD methods for Device objects in the 13699GetObjectInfo interface. 13700 13701Fixed calls to _SST method to pass the correct arguments. 13702 13703Added a call to _SST on wake to restore to "working" state. 13704 13705Check for End-Of-Buffer failure case in the WalkResources interface. 13706 13707Integrated fix for 64-bit alignment issue in acglobal.h by moving two 13708structures to the beginning of the file. 13709 13710After wake, clear GPE status register(s) before enabling GPEs. 13711 13712After wake, clear/enable power button. (Perhaps we should clear/enable 13713all 13714fixed events upon wake.) 13715 13716Fixed a couple of possible memory leaks in the Namespace manager. 13717 13718Integrated latest acnetbsd.h file. 13719 13720---------------------------------------- 1372111 February 2004. Summary of changes for version 20040211: 13722 13723 137241) ACPI CA Core Subsystem: 13725 13726Completed investigation and implementation of the call-by-reference 13727mechanism for control method arguments. 13728 13729Fixed a problem where a store of an object into an indexed package could 13730fail if the store occurs within a different method than the method that 13731created the package. 13732 13733Fixed a problem where the ToDecimal operator could return incorrect 13734results. 13735 13736Fixed a problem where the CopyObject operator could fail on some of the 13737more 13738obscure objects (e.g., Reference objects.) 13739 13740Improved the output of the Debug object to display buffer, package, and 13741index objects. 13742 13743Fixed a problem where constructs of the form "RefOf (ArgX)" did not 13744return 13745the expected result. 13746 13747Added permanent ACPI_REPORT_ERROR macros for all instances of the 13748ACPI_AML_INTERNAL exception. 13749 13750Integrated latest version of acfreebsd.h 13751 13752---------------------------------------- 1375316 January 2004. Summary of changes for version 20040116: 13754 13755The purpose of this release is primarily to update the copyright years in 13756each module, thus causing a huge number of diffs. There are a few small 13757functional changes, however. 13758 137591) ACPI CA Core Subsystem: 13760 13761Improved error messages when there is a problem finding one or more of 13762the 13763required base ACPI tables 13764 13765Reintroduced the definition of APIC_HEADER in actbl.h 13766 13767Changed definition of MADT_ADDRESS_OVERRIDE to 64 bits (actbl.h) 13768 13769Removed extraneous reference to NewObj in dsmthdat.c 13770 137712) iASL compiler 13772 13773Fixed a problem introduced in December that disabled the correct 13774disassembly 13775of Resource Templates 13776 13777 13778---------------------------------------- 1377903 December 2003. Summary of changes for version 20031203: 13780 137811) ACPI CA Core Subsystem: 13782 13783Changed the initialization of Operation Regions during subsystem 13784init to perform two entire walks of the ACPI namespace; The first 13785to initialize the regions themselves, the second to execute the 13786_REG methods. This fixed some interdependencies across _REG 13787methods found on some machines. 13788 13789Fixed a problem where a Store(Local0, Local1) could simply update 13790the object reference count, and not create a new copy of the 13791object if the Local1 is uninitialized. 13792 13793Implemented support for the _SST reserved method during sleep 13794transitions. 13795 13796Implemented support to clear the SLP_TYP and SLP_EN bits when 13797waking up, this is apparently required by some machines. 13798 13799When sleeping, clear the wake status only if SleepState is not S5. 13800 13801Fixed a problem in AcpiRsExtendedIrqResource() where an incorrect 13802pointer arithmetic advanced a string pointer too far. 13803 13804Fixed a problem in AcpiTbGetTablePtr() where a garbage pointer 13805could be returned if the requested table has not been loaded. 13806 13807Within the support for IRQ resources, restructured the handling of 13808the active and edge/level bits. 13809 13810Fixed a few problems in AcpiPsxExecute() where memory could be 13811leaked under certain error conditions. 13812 13813Improved error messages for the cases where the ACPI mode could 13814not be entered. 13815 13816Code and Data Size: Current and previous core subsystem library 13817sizes are shown below. These are the code and data sizes for the 13818acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and 13819these values do not include any ACPI driver or OSPM code. The 13820debug version of the code includes the debug output trace 13821mechanism and has a much larger code and data size. Note that 13822these values will vary depending on the efficiency of the compiler 13823and the compiler options used during generation. 13824 13825 Previous Release (20031029): 13826 Non-Debug Version: 74.4K Code, 10.1K Data, 84.5K Total 13827 Debug Version: 158.3K Code, 65.0K Data, 223.3K Total 13828 Current Release: 13829 Non-Debug Version: 74.8K Code, 10.1K Data, 84.9K Total 13830 Debug Version: 158.7K Code, 65.1K Data, 223.8K Total 13831 138322) iASL Compiler/Disassembler: 13833 13834Implemented a fix for the iASL disassembler where a bad index was 13835generated. This was most noticeable on 64-bit platforms 13836 13837 13838---------------------------------------- 1383929 October 2003. Summary of changes for version 20031029: 13840 138411) ACPI CA Core Subsystem: 13842 13843 13844Fixed a problem where a level-triggered GPE with an associated 13845_Lxx control method was incorrectly cleared twice. 13846 13847Fixed a problem with the Field support code where an access can 13848occur beyond the end-of-region if the field is non-aligned but 13849extends to the very end of the parent region (resulted in an 13850AE_AML_REGION_LIMIT exception.) 13851 13852Fixed a problem with ACPI Fixed Events where an RT Clock handler 13853would not get invoked on an RTC event. The RTC event bitmasks for 13854the PM1 registers were not being initialized properly. 13855 13856Implemented support for executing _STA and _INI methods for 13857Processor objects. Although this is currently not part of the 13858ACPI specification, there is existing ASL code that depends on the 13859init-time execution of these methods. 13860 13861Implemented and deployed a GetDescriptorName function to decode 13862the various types of internal descriptors. Guards against null 13863descriptors during debug output also. 13864 13865Implemented and deployed a GetNodeName function to extract the 4- 13866character namespace node name. This function simplifies the debug 13867and error output, as well as guarding against null pointers during 13868output. 13869 13870Implemented and deployed the ACPI_FORMAT_UINT64 helper macro to 13871simplify the debug and error output of 64-bit integers. This 13872macro replaces the HIDWORD and LODWORD macros for dumping these 13873integers. 13874 13875Updated the implementation of the Stall() operator to only call 13876AcpiOsStall(), and also return an error if the operand is larger 13877than 255. This preserves the required behavior of not 13878relinquishing the processor, as would happen if AcpiOsSleep() was 13879called for "long stalls". 13880 13881Constructs of the form "Store(LocalX,LocalX)" where LocalX is not 13882initialized are now treated as NOOPs. 13883 13884Cleaned up a handful of warnings during 64-bit generation. 13885 13886Fixed a reported error where and incorrect GPE number was passed 13887to the GPE dispatch handler. This value is only used for error 13888output, however. Used this opportunity to clean up and streamline 13889the GPE dispatch code. 13890 13891Code and Data Size: Current and previous core subsystem library 13892sizes are shown below. These are the code and data sizes for the 13893acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and 13894these values do not include any ACPI driver or OSPM code. The 13895 13896debug version of the code includes the debug output trace 13897mechanism and has a much larger code and data size. Note that 13898these values will vary depending on the efficiency of the compiler 13899and the compiler options used during generation. 13900 13901 Previous Release (20031002): 13902 Non-Debug Version: 74.1K Code, 9.7K Data, 83.8K Total 13903 Debug Version: 157.9K Code, 64.8K Data, 222.7K Total 13904 Current Release: 13905 Non-Debug Version: 74.4K Code, 10.1K Data, 84.5K Total 13906 Debug Version: 158.3K Code, 65.0K Data, 223.3K Total 13907 13908 139092) iASL Compiler/Disassembler: 13910 13911Updated the iASL compiler to return an error if the operand to the 13912Stall() operator is larger than 255. 13913 13914 13915---------------------------------------- 1391602 October 2003. Summary of changes for version 20031002: 13917 13918 139191) ACPI CA Core Subsystem: 13920 13921Fixed a problem with Index Fields where the index was not 13922incremented for fields that require multiple writes to the 13923index/data registers (Fields that are wider than the data 13924register.) 13925 13926Fixed a problem with all Field objects where a write could go 13927beyond the end-of-field if the field was larger than the access 13928granularity and therefore required multiple writes to complete the 13929request. An extra write beyond the end of the field could happen 13930inadvertently. 13931 13932Fixed a problem with Index Fields where a BUFFER_OVERFLOW error 13933would incorrectly be returned if the width of the Data Register 13934was larger than the specified field access width. 13935 13936Completed fixes for LoadTable() and Unload() and verified their 13937operation. Implemented full support for the "DdbHandle" object 13938throughout the ACPI CA subsystem. 13939 13940Implemented full support for the MADT and ECDT tables in the ACPI 13941CA header files. Even though these tables are not directly 13942consumed by ACPI CA, the header definitions are useful for ACPI 13943device drivers. 13944 13945Integrated resource descriptor fixes posted to the Linux ACPI 13946list. This included checks for minimum descriptor length, and 13947support for trailing NULL strings within descriptors that have 13948optional string elements. 13949 13950Code and Data Size: Current and previous core subsystem library 13951sizes are shown below. These are the code and data sizes for the 13952acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and 13953these values do not include any ACPI driver or OSPM code. The 13954debug version of the code includes the debug output trace 13955mechanism and has a much larger code and data size. Note that 13956these values will vary depending on the efficiency of the compiler 13957and the compiler options used during generation. 13958 13959 Previous Release (20030918): 13960 Non-Debug Version: 73.9K Code, 9.7K Data, 83.6K Total 13961 Debug Version: 157.3K Code, 64.5K Data, 221.8K Total 13962 Current Release: 13963 Non-Debug Version: 74.1K Code, 9.7K Data, 83.8K Total 13964 Debug Version: 157.9K Code, 64.8K Data, 222.7K Total 13965 13966 139672) iASL Compiler: 13968 13969Implemented detection of non-ASCII characters within the input 13970source ASL file. This catches attempts to compile binary (AML) 13971files early in the compile, with an informative error message. 13972 13973Fixed a problem where the disassembler would fault if the output 13974filename could not be generated or if the output file could not be 13975opened. 13976 13977---------------------------------------- 1397818 September 2003. Summary of changes for version 20030918: 13979 13980 139811) ACPI CA Core Subsystem: 13982 13983Found and fixed a longstanding problem with the late execution of 13984the various deferred AML opcodes (such as Operation Regions, 13985Buffer Fields, Buffers, and Packages). If the name string 13986specified for the name of the new object placed the object in a 13987scope other than the current scope, the initialization/execution 13988of the opcode failed. The solution to this problem was to 13989implement a mechanism where the late execution of such opcodes 13990does not attempt to lookup/create the name a second time in an 13991incorrect scope. This fixes the "region size computed 13992incorrectly" problem. 13993 13994Fixed a call to AcpiHwRegisterWrite in hwregs.c that was causing a 13995Global Lock AE_BAD_PARAMETER error. 13996 13997Fixed several 64-bit issues with prototypes, casting and data 13998types. 13999 14000Removed duplicate prototype from acdisasm.h 14001 14002Fixed an issue involving EC Operation Region Detach (Shaohua Li) 14003 14004Code and Data Size: Current and previous core subsystem library 14005sizes are shown below. These are the code and data sizes for the 14006acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and 14007these values do not include any ACPI driver or OSPM code. The 14008debug version of the code includes the debug output trace 14009mechanism and has a much larger code and data size. Note that 14010these values will vary depending on the efficiency of the compiler 14011and the compiler options used during generation. 14012 14013 Previous Release: 14014 14015 Non-Debug Version: 73.7K Code, 9.7K Data, 83.4K Total 14016 Debug Version: 156.9K Code, 64.2K Data, 221.1K Total 14017 Current Release: 14018 Non-Debug Version: 73.9K Code, 9.7K Data, 83.6K Total 14019 Debug Version: 157.3K Code, 64.5K Data, 221.8K Total 14020 14021 140222) Linux: 14023 14024Fixed the AcpiOsSleep implementation in osunixxf.c to pass the 14025correct sleep time in seconds. 14026 14027---------------------------------------- 1402814 July 2003. Summary of changes for version 20030619: 14029 140301) ACPI CA Core Subsystem: 14031 14032Parse SSDTs in order discovered, as opposed to reverse order 14033(Hrvoje Habjanic) 14034 14035Fixes from FreeBSD and NetBSD. (Frank van der Linden, Thomas 14036Klausner, 14037 Nate Lawson) 14038 14039 140402) Linux: 14041 14042Dynamically allocate SDT list (suggested by Andi Kleen) 14043 14044proc function return value cleanups (Andi Kleen) 14045 14046Correctly handle NMI watchdog during long stalls (Andrew Morton) 14047 14048Make it so acpismp=force works (reported by Andrew Morton) 14049 14050 14051---------------------------------------- 1405219 June 2003. Summary of changes for version 20030619: 14053 140541) ACPI CA Core Subsystem: 14055 14056Fix To/FromBCD, eliminating the need for an arch-specific #define. 14057 14058Do not acquire a semaphore in the S5 shutdown path. 14059 14060Fix ex_digits_needed for 0. (Takayoshi Kochi) 14061 14062Fix sleep/stall code reversal. (Andi Kleen) 14063 14064Revert a change having to do with control method calling 14065semantics. 14066 140672) Linux: 14068 14069acpiphp update (Takayoshi Kochi) 14070 14071Export acpi_disabled for sonypi (Stelian Pop) 14072 14073Mention acpismp=force in config help 14074 14075Re-add acpitable.c and acpismp=force. This improves backwards 14076 14077compatibility and also cleans up the code to a significant degree. 14078 14079Add ASUS Value-add driver (Karol Kozimor and Julien Lerouge) 14080 14081---------------------------------------- 1408222 May 2003. Summary of changes for version 20030522: 14083 140841) ACPI CA Core Subsystem: 14085 14086Found and fixed a reported problem where an AE_NOT_FOUND error 14087occurred occasionally during _BST evaluation. This turned out to 14088be an Owner ID allocation issue where a called method did not get 14089a new ID assigned to it. Eventually, (after 64k calls), the Owner 14090ID UINT16 would wraparound so that the ID would be the same as the 14091caller's and the called method would delete the caller's 14092namespace. 14093 14094Implemented extended error reporting for control methods that are 14095aborted due to a run-time exception. Output includes the exact 14096AML instruction that caused the method abort, a dump of the method 14097locals and arguments at the time of the abort, and a trace of all 14098nested control method calls. 14099 14100Modified the interpreter to allow the creation of buffers of zero 14101length from the AML code. Implemented new code to ensure that no 14102attempt is made to actually allocate a memory buffer (of length 14103zero) - instead, a simple buffer object with a NULL buffer pointer 14104and length zero is created. A warning is no longer issued when 14105the AML attempts to create a zero-length buffer. 14106 14107Implemented a workaround for the "leading asterisk issue" in 14108_HIDs, _UIDs, and _CIDs in the AML interpreter. One leading 14109asterisk is automatically removed if present in any HID, UID, or 14110CID strings. The iASL compiler will still flag this asterisk as 14111an error, however. 14112 14113Implemented full support for _CID methods that return a package of 14114multiple CIDs (Compatible IDs). The AcpiGetObjectInfo() interface 14115now additionally returns a device _CID list if present. This 14116required a change to the external interface in order to pass an 14117ACPI_BUFFER object as a parameter since the _CID list is of 14118variable length. 14119 14120Fixed a problem with the new AE_SAME_HANDLER exception where 14121handler initialization code did not know about this exception. 14122 14123Code and Data Size: Current and previous core subsystem library 14124sizes are shown below. These are the code and data sizes for the 14125acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and 14126these values do not include any ACPI driver or OSPM code. The 14127debug version of the code includes the debug output trace 14128mechanism and has a much larger code and data size. Note that 14129these values will vary depending on the efficiency of the compiler 14130and the compiler options used during generation. 14131 14132 Previous Release (20030509): 14133 Non-Debug Version: 73.4K Code, 9.7K Data, 83.1K Total 14134 Debug Version: 156.1K Code, 63.9K Data, 220.0K Total 14135 Current Release: 14136 Non-Debug Version: 73.7K Code, 9.7K Data, 83.4K Total 14137 Debug Version: 156.9K Code, 64.2K Data, 221.1K Total 14138 14139 141402) Linux: 14141 14142Fixed a bug in which we would reinitialize the ACPI interrupt 14143after it was already working, thus disabling all ACPI and the IRQs 14144for any other device sharing the interrupt. (Thanks to Stian 14145Jordet) 14146 14147Toshiba driver update (John Belmonte) 14148 14149Return only 0 or 1 for our interrupt handler status (Andrew 14150Morton) 14151 14152 141533) iASL Compiler: 14154 14155Fixed a reported problem where multiple (nested) ElseIf() 14156statements were not handled correctly by the compiler, resulting 14157in incorrect warnings and incorrect AML code. This was a problem 14158in both the ASL parser and the code generator. 14159 14160 141614) Documentation: 14162 14163Added changes to existing interfaces, new exception codes, and new 14164text concerning reference count object management versus garbage 14165collection. 14166 14167---------------------------------------- 1416809 May 2003. Summary of changes for version 20030509. 14169 14170 141711) ACPI CA Core Subsystem: 14172 14173Changed the subsystem initialization sequence to hold off 14174installation of address space handlers until the hardware has been 14175initialized and the system has entered ACPI mode. This is because 14176the installation of space handlers can cause _REG methods to be 14177run. Previously, the _REG methods could potentially be run before 14178ACPI mode was enabled. 14179 14180Fixed some memory leak issues related to address space handler and 14181notify handler installation. There were some problems with the 14182reference count mechanism caused by the fact that the handler 14183objects are shared across several namespace objects. 14184 14185Fixed a reported problem where reference counts within the 14186namespace were not properly updated when named objects created by 14187method execution were deleted. 14188 14189Fixed a reported problem where multiple SSDTs caused a deletion 14190issue during subsystem termination. Restructured the table data 14191structures to simplify the linked lists and the related code. 14192 14193Fixed a problem where the table ID associated with secondary 14194tables (SSDTs) was not being propagated into the namespace objects 14195created by those tables. This would only present a problem for 14196tables that are unloaded at run-time, however. 14197 14198Updated AcpiOsReadable and AcpiOsWritable to use the ACPI_SIZE 14199type as the length parameter (instead of UINT32). 14200 14201Solved a long-standing problem where an ALREADY_EXISTS error 14202appears on various systems. This problem could happen when there 14203are multiple PCI_Config operation regions under a single PCI root 14204bus. This doesn't happen very frequently, but there are some 14205systems that do this in the ASL. 14206 14207Fixed a reported problem where the internal DeleteNode function 14208was incorrectly handling the case where a namespace node was the 14209first in the parent's child list, and had additional peers (not 14210the only child, but first in the list of children.) 14211 14212Code and Data Size: Current core subsystem library sizes are shown 14213below. These are the code and data sizes for the acpica.lib 14214produced by the Microsoft Visual C++ 6.0 compiler, and these 14215values do not include any ACPI driver or OSPM code. The debug 14216version of the code includes the debug output trace mechanism and 14217has a much larger code and data size. Note that these values will 14218vary depending on the efficiency of the compiler and the compiler 14219options used during generation. 14220 14221 Previous Release 14222 Non-Debug Version: 73.7K Code, 9.5K Data, 83.2K Total 14223 Debug Version: 156.1K Code, 63.6K Data, 219.7K Total 14224 Current Release: 14225 Non-Debug Version: 73.4K Code, 9.7K Data, 83.1K Total 14226 Debug Version: 156.1K Code, 63.9K Data, 220.0K Total 14227 14228 142292) Linux: 14230 14231Allow ":" in OS override string (Ducrot Bruno) 14232 14233Kobject fix (Greg KH) 14234 14235 142363 iASL Compiler/Disassembler: 14237 14238Fixed a problem in the generation of the C source code files (AML 14239is emitted in C source statements for BIOS inclusion) where the 14240Ascii dump that appears within a C comment at the end of each line 14241could cause a compile time error if the AML sequence happens to 14242have an open comment or close comment sequence embedded. 14243 14244 14245---------------------------------------- 1424624 April 2003. Summary of changes for version 20030424. 14247 14248 142491) ACPI CA Core Subsystem: 14250 14251Support for big-endian systems has been implemented. Most of the 14252support has been invisibly added behind big-endian versions of the 14253ACPI_MOVE_* macros. 14254 14255Fixed a problem in AcpiHwDisableGpeBlock() and 14256AcpiHwClearGpeBlock() where an incorrect offset was passed to the 14257low level hardware write routine. The offset parameter was 14258actually eliminated from the low level read/write routines because 14259they had become obsolete. 14260 14261Fixed a problem where a handler object was deleted twice during 14262the removal of a fixed event handler. 14263 14264 142652) Linux: 14266 14267A fix for SMP systems with link devices was contributed by 14268 14269Compaq's Dan Zink. 14270 14271(2.5) Return whether we handled the interrupt in our IRQ handler. 14272(Linux ISRs no longer return void, so we can propagate the handler 14273return value from the ACPI CA core back to the OS.) 14274 14275 14276 142773) Documentation: 14278 14279The ACPI CA Programmer Reference has been updated to reflect new 14280interfaces and changes to existing interfaces. 14281 14282---------------------------------------- 1428328 March 2003. Summary of changes for version 20030328. 14284 142851) ACPI CA Core Subsystem: 14286 14287The GPE Block Device support has been completed. New interfaces 14288are AcpiInstallGpeBlock and AcpiRemoveGpeBlock. The Event 14289interfaces (enable, disable, clear, getstatus) have been split 14290into separate interfaces for Fixed Events and General Purpose 14291Events (GPEs) in order to support GPE Block Devices properly. 14292 14293Fixed a problem where the error message "Failed to acquire 14294semaphore" would appear during operations on the embedded 14295controller (EC). 14296 14297Code and Data Size: Current core subsystem library sizes are shown 14298below. These are the code and data sizes for the acpica.lib 14299produced by the Microsoft Visual C++ 6.0 compiler, and these 14300values do not include any ACPI driver or OSPM code. The debug 14301version of the code includes the debug output trace mechanism and 14302has a much larger code and data size. Note that these values will 14303vary depending on the efficiency of the compiler and the compiler 14304options used during generation. 14305 14306 Previous Release 14307 Non-Debug Version: 72.3K Code, 9.5K Data, 81.8K Total 14308 Debug Version: 154.0K Code, 63.4K Data, 217.4K Total 14309 Current Release: 14310 Non-Debug Version: 73.7K Code, 9.5K Data, 83.2K Total 14311 Debug Version: 156.1K Code, 63.6K Data, 219.7K Total 14312 14313 14314---------------------------------------- 1431528 February 2003. Summary of changes for version 20030228. 14316 14317 143181) ACPI CA Core Subsystem: 14319 14320The GPE handling and dispatch code has been completely overhauled 14321in preparation for support of GPE Block Devices (ID ACPI0006). 14322This affects internal data structures and code only; there should 14323be no differences visible externally. One new file has been 14324added, evgpeblk.c 14325 14326The FADT fields GPE0_BLK_LEN and GPE1_BLK_LEN are now the only 14327fields that are used to determine the GPE block lengths. The 14328REGISTER_BIT_WIDTH field of the X_GPEx_BLK extended address 14329structures are ignored. This is per the ACPI specification but it 14330isn't very clear. The full 256 Block 0/1 GPEs are now supported 14331(the use of REGISTER_BIT_WIDTH limited the number of GPEs to 128). 14332 14333In the SCI interrupt handler, removed the read of the PM1_CONTROL 14334register to look at the SCI_EN bit. On some machines, this read 14335causes an SMI event and greatly slows down SCI events. (This may 14336in fact be the cause of slow battery status response on some 14337systems.) 14338 14339Fixed a problem where a store of a NULL string to a package object 14340could cause the premature deletion of the object. This was seen 14341during execution of the battery _BIF method on some systems, 14342resulting in no battery data being returned. 14343 14344Added AcpiWalkResources interface to simplify parsing of resource 14345lists. 14346 14347Code and Data Size: Current core subsystem library sizes are shown 14348below. These are the code and data sizes for the acpica.lib 14349produced by the Microsoft Visual C++ 6.0 compiler, and these 14350values do not include any ACPI driver or OSPM code. The debug 14351version of the code includes the debug output trace mechanism and 14352has a much larger code and data size. Note that these values will 14353vary depending on the efficiency of the compiler and the compiler 14354options used during generation. 14355 14356 Previous Release 14357 Non-Debug Version: 72.0K Code, 9.5K Data, 81.5K Total 14358 Debug Version: 153.0K Code, 62.9K Data, 215.9K Total 14359 Current Release: 14360 Non-Debug Version: 72.3K Code, 9.5K Data, 81.8K Total 14361 Debug Version: 154.0K Code, 63.4K Data, 217.4K Total 14362 14363 143642) Linux 14365 14366S3 fixes (Ole Rohne) 14367 14368Update ACPI PHP driver with to use new acpi_walk_resource API 14369(Bjorn Helgaas) 14370 14371Add S4BIOS support (Pavel Machek) 14372 14373Map in entire table before performing checksum (John Stultz) 14374 14375Expand the mem= cmdline to allow the specification of reserved and 14376ACPI DATA blocks (Pavel Machek) 14377 14378Never use ACPI on VISWS 14379 14380Fix derive_pci_id (Ducrot Bruno, Alvaro Lopez) 14381 14382Revert a change that allowed P_BLK lengths to be 4 or 5. This is 14383causing us to think that some systems support C2 when they really 14384don't. 14385 14386Do not count processor objects for non-present CPUs (Thanks to 14387Dominik Brodowski) 14388 14389 143903) iASL Compiler: 14391 14392Fixed a problem where ASL include files could not be found and 14393opened. 14394 14395Added support for the _PDC reserved name. 14396 14397 14398---------------------------------------- 1439922 January 2003. Summary of changes for version 20030122. 14400 14401 144021) ACPI CA Core Subsystem: 14403 14404Added a check for constructs of the form: Store (Local0, Local0) 14405where Local0 is not initialized. Apparently, some BIOS 14406programmers believe that this is a NOOP. Since this store doesn't 14407do anything anyway, the new prototype behavior will ignore this 14408error. This is a case where we can relax the strict checking in 14409the interpreter in the name of compatibility. 14410 14411 144122) Linux 14413 14414The AcpiSrc Source Conversion Utility has been released with the 14415Linux package for the first time. This is the utility that is 14416used to convert the ACPI CA base source code to the Linux version. 14417 14418(Both) Handle P_BLK lengths shorter than 6 more gracefully 14419 14420(Both) Move more headers to include/acpi, and delete an unused 14421header. 14422 14423(Both) Move drivers/acpi/include directory to include/acpi 14424 14425(Both) Boot functions don't use cmdline, so don't pass it around 14426 14427(Both) Remove include of unused header (Adrian Bunk) 14428 14429(Both) acpiphp.h includes both linux/acpi.h and acpi_bus.h. Since 14430the 14431former now also includes the latter, acpiphp.h only needs the one, 14432now. 14433 14434(2.5) Make it possible to select method of bios restoring after S3 14435resume. [=> no more ugly ifdefs] (Pavel Machek) 14436 14437(2.5) Make proc write interfaces work (Pavel Machek) 14438 14439(2.5) Properly init/clean up in cpufreq/acpi (Dominik Brodowski) 14440 14441(2.5) Break out ACPI Perf code into its own module, under cpufreq 14442(Dominik Brodowski) 14443 14444(2.4) S4BIOS support (Ducrot Bruno) 14445 14446(2.4) Fix acpiphp_glue.c for latest ACPI struct changes (Sergio 14447Visinoni) 14448 14449 144503) iASL Compiler: 14451 14452Added support to disassemble SSDT and PSDTs. 14453 14454Implemented support to obtain SSDTs from the Windows registry if 14455available. 14456 14457 14458---------------------------------------- 1445909 January 2003. Summary of changes for version 20030109. 14460 144611) ACPI CA Core Subsystem: 14462 14463Changed the behavior of the internal Buffer-to-String conversion 14464function. The current ACPI specification states that the contents 14465of the buffer are "converted to a string of two-character 14466hexadecimal numbers, each separated by a space". Unfortunately, 14467this definition is not backwards compatible with existing ACPI 1.0 14468implementations (although the behavior was not defined in the ACPI 144691.0 specification). The new behavior simply copies data from the 14470buffer to the string until a null character is found or the end of 14471the buffer is reached. The new String object is always null 14472terminated. This problem was seen during the generation of _BIF 14473battery data where incorrect strings were returned for battery 14474type, etc. This will also require an errata to the ACPI 14475specification. 14476 14477Renamed all instances of NATIVE_UINT and NATIVE_INT to 14478ACPI_NATIVE_UINT and ACPI_NATIVE_INT, respectively. 14479 14480Copyright in all module headers (both Linux and non-Linux) has be 14481updated to 2003. 14482 14483Code and Data Size: Current core subsystem library sizes are shown 14484below. These are the code and data sizes for the acpica.lib 14485produced by the Microsoft Visual C++ 6.0 compiler, and these 14486values do not include any ACPI driver or OSPM code. The debug 14487version of the code includes the debug output trace mechanism and 14488has a much larger code and data size. Note that these values will 14489vary depending on the efficiency of the compiler and the compiler 14490options used during generation. 14491 14492 Previous Release 14493 Non-Debug Version: 72.0K Code, 9.5K Data, 81.5K Total 14494 Debug Version: 153.0K Code, 62.9K Data, 215.9K Total 14495 Current Release: 14496 Non-Debug Version: 72.0K Code, 9.5K Data, 81.5K Total 14497 Debug Version: 153.0K Code, 62.9K Data, 215.9K Total 14498 14499 145002) Linux 14501 14502Fixed an oops on module insertion/removal (Matthew Tippett) 14503 14504(2.4) Fix to handle dynamic size of mp_irqs (Joerg Prante) 14505 14506(2.5) Replace pr_debug (Randy Dunlap) 14507 14508(2.5) Remove usage of CPUFREQ_ALL_CPUS (Dominik Brodowski) 14509 14510(Both) Eliminate spawning of thread from timer callback, in favor 14511of schedule_work() 14512 14513(Both) Show Lid status in /proc (Zdenek OGAR Skalak) 14514 14515(Both) Added define for Fixed Function HW region (Matthew Wilcox) 14516 14517(Both) Add missing statics to button.c (Pavel Machek) 14518 14519Several changes have been made to the source code translation 14520utility that generates the Linux Code in order to make the code 14521more "Linux-like": 14522 14523All typedefs on structs and unions have been removed in keeping 14524with the Linux coding style. 14525 14526Removed the non-Linux SourceSafe module revision number from each 14527module header. 14528 14529Completed major overhaul of symbols to be lowercased for linux. 14530Doubled the number of symbols that are lowercased. 14531 14532Fixed a problem where identifiers within procedure headers and 14533within quotes were not fully lower cased (they were left with a 14534starting capital.) 14535 14536Some C macros whose only purpose is to allow the generation of 16- 14537bit code are now completely removed in the Linux code, increasing 14538readability and maintainability. 14539 14540---------------------------------------- 14541 1454212 December 2002. Summary of changes for version 20021212. 14543 14544 145451) ACPI CA Core Subsystem: 14546 14547Fixed a problem where the creation of a zero-length AML Buffer 14548would cause a fault. 14549 14550Fixed a problem where a Buffer object that pointed to a static AML 14551buffer (in an ACPI table) could inadvertently be deleted, causing 14552memory corruption. 14553 14554Fixed a problem where a user buffer (passed in to the external 14555ACPI CA interfaces) could be overwritten if the buffer was too 14556small to complete the operation, causing memory corruption. 14557 14558Fixed a problem in the Buffer-to-String conversion code where a 14559string of length one was always returned, regardless of the size 14560of the input Buffer object. 14561 14562Removed the NATIVE_CHAR data type across the entire source due to 14563lack of need and lack of consistent use. 14564 14565Code and Data Size: Current core subsystem library sizes are shown 14566below. These are the code and data sizes for the acpica.lib 14567produced by the Microsoft Visual C++ 6.0 compiler, and these 14568values do not include any ACPI driver or OSPM code. The debug 14569version of the code includes the debug output trace mechanism and 14570has a much larger code and data size. Note that these values will 14571vary depending on the efficiency of the compiler and the compiler 14572options used during generation. 14573 14574 Previous Release 14575 Non-Debug Version: 72.1K Code, 9.5K Data, 81.6K Total 14576 Debug Version: 152.7K Code, 62.7K Data, 215.4K Total 14577 Current Release: 14578 Non-Debug Version: 72.0K Code, 9.5K Data, 81.5K Total 14579 Debug Version: 153.0K Code, 62.9K Data, 215.9K Total 14580 14581 14582---------------------------------------- 1458305 December 2002. Summary of changes for version 20021205. 14584 145851) ACPI CA Core Subsystem: 14586 14587Fixed a problem where a store to a String or Buffer object could 14588cause corruption of the DSDT if the object type being stored was 14589the same as the target object type and the length of the object 14590being stored was equal to or smaller than the original (existing) 14591target object. This was seen to cause corruption of battery _BIF 14592buffers if the _BIF method modified the buffer on the fly. 14593 14594Fixed a problem where an internal error was generated if a control 14595method invocation was used in an OperationRegion, Buffer, or 14596Package declaration. This was caused by the deferred parsing of 14597the control method and thus the deferred creation of the internal 14598method object. The solution to this problem was to create the 14599internal method object at the moment the method is encountered in 14600the first pass - so that subsequent references to the method will 14601able to obtain the required parameter count and thus properly 14602parse the method invocation. This problem presented itself as an 14603AE_AML_INTERNAL during the pass 1 parse phase during table load. 14604 14605Fixed a problem where the internal String object copy routine did 14606not always allocate sufficient memory for the target String object 14607and caused memory corruption. This problem was seen to cause 14608"Allocation already present in list!" errors as memory allocation 14609became corrupted. 14610 14611Implemented a new function for the evaluation of namespace objects 14612that allows the specification of the allowable return object 14613types. This simplifies a lot of code that checks for a return 14614object of one or more specific objects returned from the 14615evaluation (such as _STA, etc.) This may become and external 14616function if it would be useful to ACPI-related drivers. 14617 14618Completed another round of prefixing #defines with "ACPI_" for 14619clarity. 14620 14621Completed additional code restructuring to allow more modular 14622linking for iASL compiler and AcpiExec. Several files were split 14623creating new files. New files: nsparse.c dsinit.c evgpe.c 14624 14625Implemented an abort mechanism to terminate an executing control 14626method via the AML debugger. This feature is useful for debugging 14627control methods that depend (wait) for specific hardware 14628responses. 14629 14630Code and Data Size: Current core subsystem library sizes are shown 14631below. These are the code and data sizes for the acpica.lib 14632produced by the Microsoft Visual C++ 6.0 compiler, and these 14633values do not include any ACPI driver or OSPM code. The debug 14634version of the code includes the debug output trace mechanism and 14635has a much larger code and data size. Note that these values will 14636vary depending on the efficiency of the compiler and the compiler 14637options used during generation. 14638 14639 Previous Release 14640 Non-Debug Version: 71.4K Code, 9.0K Data, 80.4K Total 14641 Debug Version: 152.9K Code, 63.3K Data, 216.2K Total 14642 Current Release: 14643 Non-Debug Version: 72.1K Code, 9.5K Data, 81.6K Total 14644 Debug Version: 152.7K Code, 62.7K Data, 215.4K Total 14645 14646 146472) iASL Compiler/Disassembler 14648 14649Fixed a compiler code generation problem for "Interrupt" Resource 14650Descriptors. If specified in the ASL, the optional "Resource 14651Source Index" and "Resource Source" fields were not inserted into 14652the correct location within the AML resource descriptor, creating 14653an invalid descriptor. 14654 14655Fixed a disassembler problem for "Interrupt" resource descriptors. 14656The optional "Resource Source Index" and "Resource Source" fields 14657were ignored. 14658 14659 14660---------------------------------------- 1466122 November 2002. Summary of changes for version 20021122. 14662 14663 146641) ACPI CA Core Subsystem: 14665 14666Fixed a reported problem where an object stored to a Method Local 14667or Arg was not copied to a new object during the store - the 14668object pointer was simply copied to the Local/Arg. This caused 14669all subsequent operations on the Local/Arg to also affect the 14670original source of the store operation. 14671 14672Fixed a problem where a store operation to a Method Local or Arg 14673was not completed properly if the Local/Arg contained a reference 14674(from RefOf) to a named field. The general-purpose store-to- 14675namespace-node code is now used so that this case is handled 14676automatically. 14677 14678Fixed a problem where the internal object copy routine would cause 14679a protection fault if the object being copied was a Package and 14680contained either 1) a NULL package element or 2) a nested sub- 14681package. 14682 14683Fixed a problem with the GPE initialization that resulted from an 14684ambiguity in the ACPI specification. One section of the 14685specification states that both the address and length of the GPE 14686block must be zero if the block is not supported. Another section 14687implies that only the address need be zero if the block is not 14688supported. The code has been changed so that both the address and 14689the length must be non-zero to indicate a valid GPE block (i.e., 14690if either the address or the length is zero, the GPE block is 14691invalid.) 14692 14693Code and Data Size: Current core subsystem library sizes are shown 14694below. These are the code and data sizes for the acpica.lib 14695produced by the Microsoft Visual C++ 6.0 compiler, and these 14696values do not include any ACPI driver or OSPM code. The debug 14697version of the code includes the debug output trace mechanism and 14698has a much larger code and data size. Note that these values will 14699vary depending on the efficiency of the compiler and the compiler 14700options used during generation. 14701 14702 Previous Release 14703 Non-Debug Version: 71.3K Code, 9.0K Data, 80.3K Total 14704 Debug Version: 152.7K Code, 63.2K Data, 215.5K Total 14705 Current Release: 14706 Non-Debug Version: 71.4K Code, 9.0K Data, 80.4K Total 14707 Debug Version: 152.9K Code, 63.3K Data, 216.2K Total 14708 14709 147102) Linux 14711 14712Cleaned up EC driver. Exported an external EC read/write 14713interface. By going through this, other drivers (most notably 14714sonypi) will be able to serialize access to the EC. 14715 14716 147173) iASL Compiler/Disassembler 14718 14719Implemented support to optionally generate include files for both 14720ASM and C (the -i switch). This simplifies BIOS development by 14721automatically creating include files that contain external 14722declarations for the symbols that are created within the 14723 14724(optionally generated) ASM and C AML source files. 14725 14726 14727---------------------------------------- 1472815 November 2002. Summary of changes for version 20021115. 14729 147301) ACPI CA Core Subsystem: 14731 14732Fixed a memory leak problem where an error during resolution of 14733 14734method arguments during a method invocation from another method 14735failed to cleanup properly by deleting all successfully resolved 14736argument objects. 14737 14738Fixed a problem where the target of the Index() operator was not 14739correctly constructed if the source object was a package. This 14740problem has not been detected because the use of a target operand 14741with Index() is very rare. 14742 14743Fixed a problem with the Index() operator where an attempt was 14744made to delete the operand objects twice. 14745 14746Fixed a problem where an attempt was made to delete an operand 14747twice during execution of the CondRefOf() operator if the target 14748did not exist. 14749 14750Implemented the first of perhaps several internal create object 14751functions that create and initialize a specific object type. This 14752consolidates duplicated code wherever the object is created, thus 14753shrinking the size of the subsystem. 14754 14755Implemented improved debug/error messages for errors that occur 14756during nested method invocations. All executing method pathnames 14757are displayed (with the error) as the call stack is unwound - thus 14758simplifying debug. 14759 14760Fixed a problem introduced in the 10/02 release that caused 14761premature deletion of a buffer object if a buffer was used as an 14762ASL operand where an integer operand is required (Thus causing an 14763implicit object conversion from Buffer to Integer.) The change in 14764the 10/02 release was attempting to fix a memory leak (albeit 14765incorrectly.) 14766 14767Code and Data Size: Current core subsystem library sizes are shown 14768below. These are the code and data sizes for the acpica.lib 14769produced by the Microsoft Visual C++ 6.0 compiler, and these 14770values do not include any ACPI driver or OSPM code. The debug 14771version of the code includes the debug output trace mechanism and 14772has a much larger code and data size. Note that these values will 14773vary depending on the efficiency of the compiler and the compiler 14774options used during generation. 14775 14776 Previous Release 14777 Non-Debug Version: 71.9K Code, 9.1K Data, 81.0K Total 14778 Debug Version: 153.1K Code, 63.3K Data, 216.4K Total 14779 Current Release: 14780 Non-Debug Version: 71.3K Code, 9.0K Data, 80.3K Total 14781 Debug Version: 152.7K Code, 63.2K Data, 215.5K Total 14782 14783 147842) Linux 14785 14786Changed the implementation of the ACPI semaphores to use down() 14787instead of down_interruptable(). It is important that the 14788execution of ACPI control methods not be interrupted by signals. 14789Methods must run to completion, or the system may be left in an 14790unknown/unstable state. 14791 14792Fixed a compilation error when CONFIG_SOFTWARE_SUSPEND is not set. 14793(Shawn Starr) 14794 14795 147963) iASL Compiler/Disassembler 14797 14798 14799Changed the default location of output files. All output files 14800are now placed in the current directory by default instead of in 14801the directory of the source file. This change may affect some 14802existing makefiles, but it brings the behavior of the compiler in 14803line with other similar tools. The location of the output files 14804can be overridden with the -p command line switch. 14805 14806 14807---------------------------------------- 1480811 November 2002. Summary of changes for version 20021111. 14809 14810 148110) ACPI Specification 2.0B is released and is now available at: 14812http://www.acpi.info/index.html 14813 14814 148151) ACPI CA Core Subsystem: 14816 14817Implemented support for the ACPI 2.0 SMBus Operation Regions. 14818This includes the early detection and handoff of the request to 14819the SMBus region handler (avoiding all of the complex field 14820support code), and support for the bidirectional return packet 14821from an SMBus write operation. This paves the way for the 14822development of SMBus drivers in each host operating system. 14823 14824Fixed a problem where the semaphore WAIT_FOREVER constant was 14825defined as 32 bits, but must be 16 bits according to the ACPI 14826specification. This had the side effect of causing ASL 14827Mutex/Event timeouts even though the ASL code requested a wait 14828forever. Changed all internal references to the ACPI timeout 14829parameter to 16 bits to prevent future problems. Changed the name 14830of WAIT_FOREVER to ACPI_WAIT_FOREVER. 14831 14832Code and Data Size: Current core subsystem library sizes are shown 14833below. These are the code and data sizes for the acpica.lib 14834produced by the Microsoft Visual C++ 6.0 compiler, and these 14835values do not include any ACPI driver or OSPM code. The debug 14836version of the code includes the debug output trace mechanism and 14837has a much larger code and data size. Note that these values will 14838vary depending on the efficiency of the compiler and the compiler 14839options used during generation. 14840 14841 Previous Release 14842 Non-Debug Version: 71.4K Code, 9.0K Data, 80.4K Total 14843 Debug Version: 152.3K Code, 63.0K Data, 215.3K Total 14844 Current Release: 14845 Non-Debug Version: 71.9K Code, 9.1K Data, 81.0K Total 14846 Debug Version: 153.1K Code, 63.3K Data, 216.4K Total 14847 14848 148492) Linux 14850 14851Module loading/unloading fixes (John Cagle) 14852 14853 148543) iASL Compiler/Disassembler 14855 14856Added support for the SMBBlockProcessCall keyword (ACPI 2.0) 14857 14858Implemented support for the disassembly of all SMBus protocol 14859keywords (SMBQuick, SMBWord, etc.) 14860 14861---------------------------------------- 1486201 November 2002. Summary of changes for version 20021101. 14863 14864 148651) ACPI CA Core Subsystem: 14866 14867Fixed a problem where platforms that have a GPE1 block but no GPE0 14868block were not handled correctly. This resulted in a "GPE 14869overlap" error message. GPE0 is no longer required. 14870 14871Removed code added in the previous release that inserted nodes 14872into the namespace in alphabetical order. This caused some side- 14873effects on various machines. The root cause of the problem is 14874still under investigation since in theory, the internal ordering 14875of the namespace nodes should not matter. 14876 14877 14878Enhanced error reporting for the case where a named object is not 14879found during control method execution. The full ACPI namepath 14880(name reference) of the object that was not found is displayed in 14881this case. 14882 14883Note: as a result of the overhaul of the namespace object types in 14884the previous release, the namespace nodes for the predefined 14885scopes (_TZ, _PR, etc.) are now of the type ACPI_TYPE_LOCAL_SCOPE 14886instead of ACPI_TYPE_ANY. This simplifies the namespace 14887management code but may affect code that walks the namespace tree 14888looking for specific object types. 14889 14890Code and Data Size: Current core subsystem library sizes are shown 14891below. These are the code and data sizes for the acpica.lib 14892produced by the Microsoft Visual C++ 6.0 compiler, and these 14893values do not include any ACPI driver or OSPM code. The debug 14894version of the code includes the debug output trace mechanism and 14895has a much larger code and data size. Note that these values will 14896vary depending on the efficiency of the compiler and the compiler 14897options used during generation. 14898 14899 Previous Release 14900 Non-Debug Version: 70.7K Code, 8.6K Data, 79.3K Total 14901 Debug Version: 151.7K Code, 62.4K Data, 214.1K Total 14902 Current Release: 14903 Non-Debug Version: 71.4K Code, 9.0K Data, 80.4K Total 14904 Debug Version: 152.3K Code, 63.0K Data, 215.3K Total 14905 14906 149072) Linux 14908 14909Fixed a problem introduced in the previous release where the 14910Processor and Thermal objects were not recognized and installed in 14911/proc. This was related to the scope type change described above. 14912 14913 149143) iASL Compiler/Disassembler 14915 14916Implemented the -g option to get all of the required ACPI tables 14917from the registry and save them to files (Windows version of the 14918compiler only.) The required tables are the FADT, FACS, and DSDT. 14919 14920Added ACPI table checksum validation during table disassembly in 14921order to catch corrupted tables. 14922 14923 14924---------------------------------------- 1492522 October 2002. Summary of changes for version 20021022. 14926 149271) ACPI CA Core Subsystem: 14928 14929Implemented a restriction on the Scope operator that the target 14930must already exist in the namespace at the time the operator is 14931encountered (during table load or method execution). In other 14932words, forward references are not allowed and Scope() cannot 14933create a new object. This changes the previous behavior where the 14934interpreter would create the name if not found. This new behavior 14935correctly enables the search-to-root algorithm during namespace 14936lookup of the target name. Because of this upsearch, this fixes 14937the known Compaq _SB_.OKEC problem and makes both the AML 14938interpreter and iASL compiler compatible with other ACPI 14939implementations. 14940 14941Completed a major overhaul of the internal ACPI object types for 14942the ACPI Namespace and the associated operand objects. Many of 14943these types had become obsolete with the introduction of the two- 14944pass namespace load. This cleanup simplifies the code and makes 14945the entire namespace load mechanism much clearer and easier to 14946understand. 14947 14948Improved debug output for tracking scope opening/closing to help 14949diagnose scoping issues. The old scope name as well as the new 14950scope name are displayed. Also improved error messages for 14951problems with ASL Mutex objects and error messages for GPE 14952problems. 14953 14954Cleaned up the namespace dump code, removed obsolete code. 14955 14956All string output (for all namespace/object dumps) now uses the 14957common ACPI string output procedure which handles escapes properly 14958and does not emit non-printable characters. 14959 14960Fixed some issues with constants in the 64-bit version of the 14961local C library (utclib.c) 14962 14963 149642) Linux 14965 14966EC Driver: No longer attempts to acquire the Global Lock at 14967interrupt level. 14968 14969 149703) iASL Compiler/Disassembler 14971 14972Implemented ACPI 2.0B grammar change that disallows all Type 1 and 149732 opcodes outside of a control method. This means that the 14974"executable" operators (versus the "namespace" operators) cannot 14975be used at the table level; they can only be used within a control 14976method. 14977 14978Implemented the restriction on the Scope() operator where the 14979target must already exist in the namespace at the time the 14980operator is encountered (during ASL compilation). In other words, 14981forward references are not allowed and Scope() cannot create a new 14982object. This makes the iASL compiler compatible with other ACPI 14983implementations and makes the Scope() implementation adhere to the 14984ACPI specification. 14985 14986Fixed a problem where namepath optimization for the Alias operator 14987was optimizing the wrong path (of the two namepaths.) This caused 14988a "Missing alias link" error message. 14989 14990Fixed a problem where an "unknown reserved name" warning could be 14991incorrectly generated for names like "_SB" when the trailing 14992underscore is not used in the original ASL. 14993 14994Fixed a problem where the reserved name check did not handle 14995NamePaths with multiple NameSegs correctly. The first nameseg of 14996the NamePath was examined instead of the last NameSeg. 14997 14998 14999---------------------------------------- 15000 1500102 October 2002. Summary of changes for this release. 15002 15003 150041) ACPI CA Core Subsystem version 20021002: 15005 15006Fixed a problem where a store/copy of a string to an existing 15007string did not always set the string length properly in the String 15008object. 15009 15010Fixed a reported problem with the ToString operator where the 15011behavior was identical to the ToHexString operator instead of just 15012simply converting a raw buffer to a string data type. 15013 15014Fixed a problem where CopyObject and the other "explicit" 15015conversion operators were not updating the internal namespace node 15016type as part of the store operation. 15017 15018Fixed a memory leak during implicit source operand conversion 15019where the original object was not deleted if it was converted to a 15020new object of a different type. 15021 15022Enhanced error messages for all problems associated with namespace 15023lookups. Common procedure generates and prints the lookup name as 15024well as the formatted status. 15025 15026Completed implementation of a new design for the Alias support 15027within the namespace. The existing design did not handle the case 15028where a new object was assigned to one of the two names due to the 15029use of an explicit conversion operator, resulting in the two names 15030pointing to two different objects. The new design simply points 15031the Alias name to the original name node - not to the object. 15032This results in a level of indirection that must be handled in the 15033name resolution mechanism. 15034 15035Code and Data Size: Current core subsystem library sizes are shown 15036below. These are the code and data sizes for the acpica.lib 15037produced by the Microsoft Visual C++ 6.0 compiler, and these 15038values do not include any ACPI driver or OSPM code. The debug 15039version of the code includes the debug output trace mechanism and 15040has a larger code and data size. Note that these values will vary 15041depending on the efficiency of the compiler and the compiler 15042options used during generation. 15043 15044 Previous Release 15045 Non-Debug Version: 69.6K Code, 8.3K Data, 77.9K Total 15046 Debug Version: 150.0K Code, 61.7K Data, 211.7K Total 15047 Current Release: 15048 Non-Debug Version: 70.7K Code, 8.6K Data, 79.3K Total 15049 Debug Version: 151.7K Code, 62.4K Data, 214.1K Total 15050 15051 150522) Linux 15053 15054Initialize thermal driver's timer before it is used. (Knut 15055Neumann) 15056 15057Allow handling negative celsius values. (Kochi Takayoshi) 15058 15059Fix thermal management and make trip points. R/W (Pavel Machek) 15060 15061Fix /proc/acpi/sleep. (P. Christeas) 15062 15063IA64 fixes. (David Mosberger) 15064 15065Fix reversed logic in blacklist code. (Sergio Monteiro Basto) 15066 15067Replace ACPI_DEBUG define with ACPI_DEBUG_OUTPUT. (Dominik 15068Brodowski) 15069 15070 150713) iASL Compiler/Disassembler 15072 15073Clarified some warning/error messages. 15074 15075 15076---------------------------------------- 1507718 September 2002. Summary of changes for this release. 15078 15079 150801) ACPI CA Core Subsystem version 20020918: 15081 15082Fixed a reported problem with reference chaining (via the Index() 15083and RefOf() operators) in the ObjectType() and SizeOf() operators. 15084The definition of these operators includes the dereferencing of 15085all chained references to return information on the base object. 15086 15087Fixed a problem with stores to indexed package elements - the 15088existing code would not complete the store if an "implicit 15089conversion" was not performed. In other words, if the existing 15090object (package element) was to be replaced completely, the code 15091didn't handle this case. 15092 15093Relaxed typechecking on the ASL "Scope" operator to allow the 15094target name to refer to an object of type Integer, String, or 15095Buffer, in addition to the scoping object types (Device, 15096predefined Scopes, Processor, PowerResource, and ThermalZone.) 15097This allows existing AML code that has workarounds for a bug in 15098Windows to function properly. A warning is issued, however. This 15099affects both the AML interpreter and the iASL compiler. Below is 15100an example of this type of ASL code: 15101 15102 Name(DEB,0x00) 15103 Scope(DEB) 15104 { 15105 15106Fixed some reported problems with 64-bit integer support in the 15107local implementation of C library functions (clib.c) 15108 15109 151102) Linux 15111 15112Use ACPI fix map region instead of IOAPIC region, since it is 15113undefined in non-SMP. 15114 15115Ensure that the SCI has the proper polarity and trigger, even on 15116systems that do not have an interrupt override entry in the MADT. 15117 151182.5 big driver reorganization (Pat Mochel) 15119 15120Use early table mapping code from acpitable.c (Andi Kleen) 15121 15122New blacklist entries (Andi Kleen) 15123 15124Blacklist improvements. Split blacklist code out into a separate 15125file. Move checking the blacklist to very early. Previously, we 15126would use ACPI tables, and then halfway through init, check the 15127blacklist -- too late. Now, it's early enough to completely fall- 15128back to non-ACPI. 15129 15130 151313) iASL Compiler/Disassembler version 20020918: 15132 15133Fixed a problem where the typechecking code didn't know that an 15134alias could point to a method. In other words, aliases were not 15135being dereferenced during typechecking. 15136 15137 15138---------------------------------------- 1513929 August 2002. Summary of changes for this release. 15140 151411) ACPI CA Core Subsystem Version 20020829: 15142 15143If the target of a Scope() operator already exists, it must be an 15144object type that actually opens a scope -- such as a Device, 15145Method, Scope, etc. This is a fatal runtime error. Similar error 15146check has been added to the iASL compiler also. 15147 15148Tightened up the namespace load to disallow multiple names in the 15149same scope. This previously was allowed if both objects were of 15150the same type. (i.e., a lookup was the same as entering a new 15151name). 15152 15153 151542) Linux 15155 15156Ensure that the ACPI interrupt has the proper trigger and 15157polarity. 15158 15159local_irq_disable is extraneous. (Matthew Wilcox) 15160 15161Make "acpi=off" actually do what it says, and not use the ACPI 15162interpreter *or* the tables. 15163 15164Added arch-neutral support for parsing SLIT and SRAT tables (Kochi 15165Takayoshi) 15166 15167 151683) iASL Compiler/Disassembler Version 20020829: 15169 15170Implemented namepath optimization for name declarations. For 15171example, a declaration like "Method (\_SB_.ABCD)" would get 15172optimized to "Method (ABCD)" if the declaration is within the 15173\_SB_ scope. This optimization is in addition to the named 15174reference path optimization first released in the previous 15175version. This would seem to complete all possible optimizations 15176for namepaths within the ASL/AML. 15177 15178If the target of a Scope() operator already exists, it must be an 15179object type that actually opens a scope -- such as a Device, 15180Method, Scope, etc. 15181 15182Implemented a check and warning for unreachable code in the same 15183block below a Return() statement. 15184 15185Fixed a problem where the listing file was not generated if the 15186compiler aborted if the maximum error count was exceeded (200). 15187 15188Fixed a problem where the typechecking of method return values was 15189broken. This includes the check for a return value when the 15190method is invoked as a TermArg (a return value is expected.) 15191 15192Fixed a reported problem where EOF conditions during a quoted 15193string or comment caused a fault. 15194 15195 15196---------------------------------------- 1519715 August 2002. Summary of changes for this release. 15198 151991) ACPI CA Core Subsystem Version 20020815: 15200 15201Fixed a reported problem where a Store to a method argument that 15202contains a reference did not perform the indirect store correctly. 15203This problem was created during the conversion to the new 15204reference object model - the indirect store to a method argument 15205code was not updated to reflect the new model. 15206 15207Reworked the ACPI mode change code to better conform to ACPI 2.0, 15208handle corner cases, and improve code legibility (Kochi Takayoshi) 15209 15210Fixed a problem with the pathname parsing for the carat (^) 15211prefix. The heavy use of the carat operator by the new namepath 15212optimization in the iASL compiler uncovered a problem with the AML 15213interpreter handling of this prefix. In the case where one or 15214more carats precede a single nameseg, the nameseg was treated as 15215standalone and the search rule (to root) was inadvertently 15216applied. This could cause both the iASL compiler and the 15217interpreter to find the wrong object or to miss the error that 15218should occur if the object does not exist at that exact pathname. 15219 15220Found and fixed the problem where the HP Pavilion DSDT would not 15221load. This was a relatively minor tweak to the table loading code 15222(a problem caused by the unexpected encounter with a method 15223invocation not within a control method), but it does not solve the 15224overall issue of the execution of AML code at the table level. 15225This investigation is still ongoing. 15226 15227Code and Data Size: Current core subsystem library sizes are shown 15228below. These are the code and data sizes for the acpica.lib 15229produced by the Microsoft Visual C++ 6.0 compiler, and these 15230values do not include any ACPI driver or OSPM code. The debug 15231version of the code includes the debug output trace mechanism and 15232has a larger code and data size. Note that these values will vary 15233depending on the efficiency of the compiler and the compiler 15234options used during generation. 15235 15236 Previous Release 15237 Non-Debug Version: 69.1K Code, 8.2K Data, 77.3K Total 15238 Debug Version: 149.4K Code, 61.6K Data, 211.0K Total 15239 Current Release: 15240 Non-Debug Version: 69.6K Code, 8.3K Data, 77.9K Total 15241 Debug Version: 150.0K Code, 61.7K Data, 211.7K Total 15242 15243 152442) Linux 15245 15246Remove redundant slab.h include (Brad Hards) 15247 15248Fix several bugs in thermal.c (Herbert Nachtnebel) 15249 15250Make CONFIG_ACPI_BOOT work properly (Pavel Machek) 15251 15252Change acpi_system_suspend to use updated irq functions (Pavel 15253Machek) 15254 15255Export acpi_get_firmware_table (Matthew Wilcox) 15256 15257Use proper root proc entry for ACPI (Kochi Takayoshi) 15258 15259Fix early-boot table parsing (Bjorn Helgaas) 15260 15261 152623) iASL Compiler/Disassembler 15263 15264Reworked the compiler options to make them more consistent and to 15265use two-letter options where appropriate. We were running out of 15266sensible letters. This may break some makefiles, so check the 15267current options list by invoking the compiler with no parameters. 15268 15269Completed the design and implementation of the ASL namepath 15270optimization option for the compiler. This option optimizes all 15271references to named objects to the shortest possible path. The 15272first attempt tries to utilize a single nameseg (4 characters) and 15273the "search-to-root" algorithm used by the interpreter. If that 15274cannot be used (because either the name is not in the search path 15275or there is a conflict with another object with the same name), 15276the pathname is optimized using the carat prefix (usually a 15277shorter string than specifying the entire path from the root.) 15278 15279Implemented support to obtain the DSDT from the Windows registry 15280(when the disassembly option is specified with no input file). 15281Added this code as the implementation for AcpiOsTableOverride in 15282the Windows OSL. Migrated the 16-bit code (used in the AcpiDump 15283utility) to scan memory for the DSDT to the AcpiOsTableOverride 15284function in the DOS OSL to make the disassembler truly OS 15285independent. 15286 15287Implemented a new option to disassemble and compile in one step. 15288When used without an input filename, this option will grab the 15289DSDT from the local machine, disassemble it, and compile it in one 15290step. 15291 15292Added a warning message for invalid escapes (a backslash followed 15293by any character other than the allowable escapes). This catches 15294the quoted string error "\_SB_" (which should be "\\_SB_" ). 15295 15296Also, there are numerous instances in the ACPI specification where 15297this error occurs. 15298 15299Added a compiler option to disable all optimizations. This is 15300basically the "compatibility mode" because by using this option, 15301the AML code will come out exactly the same as other ASL 15302compilers. 15303 15304Added error messages for incorrectly ordered dependent resource 15305functions. This includes: missing EndDependentFn macro at end of 15306dependent resource list, nested dependent function macros (both 15307start and end), and missing StartDependentFn macro. These are 15308common errors that should be caught at compile time. 15309 15310Implemented _OSI support for the disassembler and compiler. _OSI 15311must be included in the namespace for proper disassembly (because 15312the disassembler must know the number of arguments.) 15313 15314Added an "optimization" message type that is optional (off by 15315default). This message is used for all optimizations - including 15316constant folding, integer optimization, and namepath optimization. 15317 15318---------------------------------------- 1531925 July 2002. Summary of changes for this release. 15320 15321 153221) ACPI CA Core Subsystem Version 20020725: 15323 15324The AML Disassembler has been enhanced to produce compilable ASL 15325code and has been integrated into the iASL compiler (see below) as 15326well as the single-step disassembly for the AML debugger and the 15327disassembler for the AcpiDump utility. All ACPI 2.0A opcodes, 15328resource templates and macros are fully supported. The 15329disassembler has been tested on over 30 different AML files, 15330producing identical AML when the resulting disassembled ASL file 15331is recompiled with the same ASL compiler. 15332 15333Modified the Resource Manager to allow zero interrupts and zero 15334dma channels during the GetCurrentResources call. This was 15335causing problems on some platforms. 15336 15337Added the AcpiOsRedirectOutput interface to the OSL to simplify 15338output redirection for the AcpiOsPrintf and AcpiOsVprintf 15339interfaces. 15340 15341Code and Data Size: Current core subsystem library sizes are shown 15342below. These are the code and data sizes for the acpica.lib 15343produced by the Microsoft Visual C++ 6.0 compiler, and these 15344values do not include any ACPI driver or OSPM code. The debug 15345version of the code includes the debug output trace mechanism and 15346has a larger code and data size. Note that these values will vary 15347depending on the efficiency of the compiler and the compiler 15348options used during generation. 15349 15350 Previous Release 15351 Non-Debug Version: 68.7K Code, 7.4K Data, 76.1K Total 15352 Debug Version: 142.9K Code, 58.7K Data, 201.6K Total 15353 Current Release: 15354 Non-Debug Version: 69.1K Code, 8.2K Data, 77.3K Total 15355 Debug Version: 149.4K Code, 61.6K Data, 211.0K Total 15356 15357 153582) Linux 15359 15360Fixed a panic in the EC driver (Dominik Brodowski) 15361 15362Implemented checksum of the R/XSDT itself during Linux table scan 15363(Richard Schaal) 15364 15365 153663) iASL compiler 15367 15368The AML disassembler is integrated into the compiler. The "-d" 15369option invokes the disassembler to completely disassemble an 15370input AML file, producing as output a text ASL file with the 15371extension ".dsl" (to avoid name collisions with existing .asl 15372source files.) A future enhancement will allow the disassembler 15373to obtain the BIOS DSDT from the registry under Windows. 15374 15375Fixed a problem with the VendorShort and VendorLong resource 15376descriptors where an invalid AML sequence was created. 15377 15378Implemented a fix for BufferData term in the ASL parser. It was 15379inadvertently defined twice, allowing invalid syntax to pass and 15380causing reduction conflicts. 15381 15382Fixed a problem where the Ones opcode could get converted to a 15383value of zero if "Ones" was used where a byte, word or dword value 15384was expected. The 64-bit value is now truncated to the correct 15385size with the correct value. 15386 15387 15388 15389---------------------------------------- 1539002 July 2002. Summary of changes for this release. 15391 15392 153931) ACPI CA Core Subsystem Version 20020702: 15394 15395The Table Manager code has been restructured to add several new 15396features. Tables that are not required by the core subsystem 15397(other than the FADT, DSDT, FACS, PSDTs, etc.) are no longer 15398validated in any way and are returned from AcpiGetFirmwareTable if 15399requested. The AcpiOsTableOverride interface is now called for 15400each table that is loaded by the subsystem in order to allow the 15401host to override any table it chooses. Previously, only the DSDT 15402could be overridden. Added one new files, tbrsdt.c and 15403tbgetall.c. 15404 15405Fixed a problem with the conversion of internal package objects to 15406external objects (when a package is returned from a control 15407method.) The return buffer length was set to zero instead of the 15408proper length of the package object. 15409 15410Fixed a reported problem with the use of the RefOf and DeRefOf 15411operators when passing reference arguments to control methods. A 15412new type of Reference object is used internally for references 15413produced by the RefOf operator. 15414 15415Added additional error messages in the Resource Manager to explain 15416AE_BAD_DATA errors when they occur during resource parsing. 15417 15418Split the AcpiEnableSubsystem into two primitives to enable a 15419finer granularity initialization sequence. These two calls should 15420be called in this order: AcpiEnableSubsystem (flags), 15421AcpiInitializeObjects (flags). The flags parameter remains the 15422same. 15423 15424 154252) Linux 15426 15427Updated the ACPI utilities module to understand the new style of 15428fully resolved package objects that are now returned from the core 15429subsystem. This eliminates errors of the form: 15430 15431 ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PPB_._PRT] 15432 acpi_utils-0430 [145] acpi_evaluate_reference: 15433 Invalid element in package (not a device reference) 15434 15435The method evaluation utility uses the new buffer allocation 15436scheme instead of calling AcpiEvaluate Object twice. 15437 15438Added support for ECDT. This allows the use of the Embedded 15439 15440Controller before the namespace has been fully initialized, which 15441is necessary for ACPI 2.0 support, and for some laptops to 15442initialize properly. (Laptops using ECDT are still rare, so only 15443limited testing was performed of the added functionality.) 15444 15445Fixed memory leaks in the EC driver. 15446 15447Eliminated a brittle code structure in acpi_bus_init(). 15448 15449Eliminated the acpi_evaluate() helper function in utils.c. It is 15450no longer needed since acpi_evaluate_object can optionally 15451allocate memory for the return object. 15452 15453Implemented fix for keyboard hang when getting battery readings on 15454some systems (Stephen White) 15455 15456PCI IRQ routing update (Dominik Brodowski) 15457 15458Fix an ifdef to allow compilation on UP with LAPIC but no IOAPIC 15459support 15460 15461---------------------------------------- 1546211 June 2002. Summary of changes for this release. 15463 15464 154651) ACPI CA Core Subsystem Version 20020611: 15466 15467Fixed a reported problem where constants such as Zero and One 15468appearing within _PRT packages were not handled correctly within 15469the resource manager code. Originally reported against the ASL 15470compiler because the code generator now optimizes integers to 15471their minimal AML representation (i.e. AML constants if possible.) 15472The _PRT code now handles all AML constant opcodes correctly 15473(Zero, One, Ones, Revision). 15474 15475Fixed a problem with the Concatenate operator in the AML 15476interpreter where a buffer result object was incorrectly marked as 15477not fully evaluated, causing a run-time error of AE_AML_INTERNAL. 15478 15479All package sub-objects are now fully resolved before they are 15480returned from the external ACPI interfaces. This means that name 15481strings are resolved to object handles, and constant operators 15482(Zero, One, Ones, Revision) are resolved to Integers. 15483 15484Implemented immediate resolution of the AML Constant opcodes 15485(Zero, One, Ones, Revision) to Integer objects upon detection 15486within the AML stream. This has simplified and reduced the 15487generated code size of the subsystem by eliminating about 10 15488switch statements for these constants (which previously were 15489contained in Reference objects.) The complicating issues are that 15490the Zero opcode is used as a "placeholder" for unspecified 15491optional target operands and stores to constants are defined to be 15492no-ops. 15493 15494Code and Data Size: Current core subsystem library sizes are shown 15495below. These are the code and data sizes for the acpica.lib 15496produced by the Microsoft Visual C++ 6.0 compiler, and these 15497values do not include any ACPI driver or OSPM code. The debug 15498version of the code includes the debug output trace mechanism and 15499has a larger code and data size. Note that these values will vary 15500depending on the efficiency of the compiler and the compiler 15501options used during generation. 15502 15503 Previous Release 15504 Non-Debug Version: 69.3K Code, 7.4K Data, 76.7K Total 15505 Debug Version: 143.8K Code, 58.8K Data, 202.6K Total 15506 Current Release: 15507 Non-Debug Version: 68.7K Code, 7.4K Data, 76.1K Total 15508 Debug Version: 142.9K Code, 58.7K Data, 201.6K Total 15509 15510 155112) Linux 15512 15513 15514Added preliminary support for obtaining _TRA data for PCI root 15515bridges (Bjorn Helgaas). 15516 15517 155183) iASL Compiler Version X2046: 15519 15520Fixed a problem where the "_DDN" reserved name was defined to be a 15521control method with one argument. There are no arguments, and 15522_DDN does not have to be a control method. 15523 15524Fixed a problem with the Linux version of the compiler where the 15525source lines printed with error messages were the wrong lines. 15526This turned out to be the "LF versus CR/LF" difference between 15527Windows and Unix. This appears to be the longstanding issue 15528concerning listing output and error messages. 15529 15530Fixed a problem with the Linux version of compiler where opcode 15531names within error messages were wrong. This was caused by a 15532slight difference in the output of the Flex tool on Linux versus 15533Windows. 15534 15535Fixed a problem with the Linux compiler where the hex output files 15536contained some garbage data caused by an internal buffer overrun. 15537 15538 15539---------------------------------------- 1554017 May 2002. Summary of changes for this release. 15541 15542 155431) ACPI CA Core Subsystem Version 20020517: 15544 15545Implemented a workaround to an BIOS bug discovered on the HP 15546OmniBook where the FADT revision number and the table size are 15547inconsistent (ACPI 2.0 revision vs. ACPI 1.0 table size). The new 15548behavior is to fallback to using only the ACPI 1.0 fields of the 15549FADT if the table is too small to be a ACPI 2.0 table as claimed 15550by the revision number. Although this is a BIOS bug, this is a 15551case where the workaround is simple enough and with no side 15552effects, so it seemed prudent to add it. A warning message is 15553issued, however. 15554 15555Implemented minimum size checks for the fixed-length ACPI tables - 15556- the FADT and FACS, as well as consistency checks between the 15557revision number and the table size. 15558 15559Fixed a reported problem in the table override support where the 15560new table pointer was incorrectly treated as a physical address 15561instead of a logical address. 15562 15563Eliminated the use of the AE_AML_ERROR exception and replaced it 15564with more descriptive codes. 15565 15566Fixed a problem where an exception would occur if an ASL Field was 15567defined with no named Field Units underneath it (used by some 15568index fields). 15569 15570Code and Data Size: Current core subsystem library sizes are shown 15571below. These are the code and data sizes for the acpica.lib 15572produced by the Microsoft Visual C++ 6.0 compiler, and these 15573values do not include any ACPI driver or OSPM code. The debug 15574version of the code includes the debug output trace mechanism and 15575has a larger code and data size. Note that these values will vary 15576depending on the efficiency of the compiler and the compiler 15577options used during generation. 15578 15579 Previous Release 15580 Non-Debug Version: 68.8K Code, 7.1K Data, 75.9K Total 15581 Debug Version: 142.9K Code, 58.4K Data, 201.3K Total 15582 Current Release: 15583 Non-Debug Version: 69.3K Code, 7.4K Data, 76.7K Total 15584 Debug Version: 143.8K Code, 58.8K Data, 202.6K Total 15585 15586 15587 155882) Linux 15589 15590Much work done on ACPI init (MADT and PCI IRQ routing support). 15591(Paul D. and Dominik Brodowski) 15592 15593Fix PCI IRQ-related panic on boot (Sam Revitch) 15594 15595Set BM_ARB_DIS when entering a sleep state (Ducrot Bruno) 15596 15597Fix "MHz" typo (Dominik Brodowski) 15598 15599Fix RTC year 2000 issue (Dominik Brodowski) 15600 15601Preclude multiple button proc entries (Eric Brunet) 15602 15603Moved arch-specific code out of include/platform/aclinux.h 15604 156053) iASL Compiler Version X2044: 15606 15607Implemented error checking for the string used in the EISAID macro 15608(Usually used in the definition of the _HID object.) The code now 15609strictly enforces the PnP format - exactly 7 characters, 3 15610uppercase letters and 4 hex digits. 15611 15612If a raw string is used in the definition of the _HID object 15613(instead of the EISAID macro), the string must contain all 15614alphanumeric characters (e.g., "*PNP0011" is not allowed because 15615of the asterisk.) 15616 15617Implemented checking for invalid use of ACPI reserved names for 15618most of the name creation operators (Name, Device, Event, Mutex, 15619OperationRegion, PowerResource, Processor, and ThermalZone.) 15620Previously, this check was only performed for control methods. 15621 15622Implemented an additional check on the Name operator to emit an 15623error if a reserved name that must be implemented in ASL as a 15624control method is used. We know that a reserved name must be a 15625method if it is defined with input arguments. 15626 15627The warning emitted when a namespace object reference is not found 15628during the cross reference phase has been changed into an error. 15629The "External" directive should be used for names defined in other 15630modules. 15631 15632 156334) Tools and Utilities 15634 15635The 16-bit tools (adump16 and aexec16) have been regenerated and 15636tested. 15637 15638Fixed a problem with the output of both acpidump and adump16 where 15639the indentation of closing parentheses and brackets was not 15640 15641aligned properly with the parent block. 15642 15643 15644---------------------------------------- 1564503 May 2002. Summary of changes for this release. 15646 15647 156481) ACPI CA Core Subsystem Version 20020503: 15649 15650Added support a new OSL interface that allows the host operating 15651 15652system software to override the DSDT found in the firmware - 15653AcpiOsTableOverride. With this interface, the OSL can examine the 15654version of the firmware DSDT and replace it with a different one 15655if desired. 15656 15657Added new external interfaces for accessing ACPI registers from 15658device drivers and other system software - AcpiGetRegister and 15659AcpiSetRegister. This was simply an externalization of the 15660existing AcpiHwBitRegister interfaces. 15661 15662Fixed a regression introduced in the previous build where the 15663ASL/AML CreateField operator always returned an error, 15664"destination must be a NS Node". 15665 15666Extended the maximum time (before failure) to successfully enable 15667ACPI mode to 3 seconds. 15668 15669Code and Data Size: Current core subsystem library sizes are shown 15670below. These are the code and data sizes for the acpica.lib 15671produced by the Microsoft Visual C++ 6.0 compiler, and these 15672values do not include any ACPI driver or OSPM code. The debug 15673version of the code includes the debug output trace mechanism and 15674has a larger code and data size. Note that these values will vary 15675depending on the efficiency of the compiler and the compiler 15676options used during generation. 15677 15678 Previous Release 15679 Non-Debug Version: 68.5K Code, 7.0K Data, 75.5K Total 15680 Debug Version: 142.4K Code, 58.3K Data, 200.7K Total 15681 Current Release: 15682 Non-Debug Version: 68.8K Code, 7.1K Data, 75.9K Total 15683 Debug Version: 142.9K Code, 58.4K Data, 201.3K Total 15684 15685 156862) Linux 15687 15688Enhanced ACPI init code for SMP. We are now fully MPS and $PIR- 15689free. While 3 out of 4 of our in-house systems work fine, the last 15690one still hangs when testing the LAPIC timer. 15691 15692Renamed many files in 2.5 kernel release to omit "acpi_" from the 15693name. 15694 15695Added warning on boot for Presario 711FR. 15696 15697Sleep improvements (Pavel Machek) 15698 15699ACPI can now be built without CONFIG_PCI enabled. 15700 15701IA64: Fixed memory map functions (JI Lee) 15702 15703 157043) iASL Compiler Version X2043: 15705 15706Added support to allow the compiler to be integrated into the MS 15707VC++ development environment for one-button compilation of single 15708files or entire projects -- with error-to-source-line mapping. 15709 15710Implemented support for compile-time constant folding for the 15711Type3, Type4, and Type5 opcodes first defined in the ACPI 2.0 15712specification. This allows the ASL writer to use expressions 15713instead of Integer/Buffer/String constants in terms that must 15714evaluate to constants at compile time and will also simplify the 15715emitted AML in any such sub-expressions that can be folded 15716(evaluated at compile-time.) This increases the size of the 15717compiler significantly because a portion of the ACPI CA AML 15718interpreter is included within the compiler in order to pre- 15719evaluate constant expressions. 15720 15721 15722Fixed a problem with the "Unicode" ASL macro that caused the 15723compiler to fault. (This macro is used in conjunction with the 15724_STR reserved name.) 15725 15726Implemented an AML opcode optimization to use the Zero, One, and 15727Ones opcodes where possible to further reduce the size of integer 15728constants and thus reduce the overall size of the generated AML 15729code. 15730 15731Implemented error checking for new reserved terms for ACPI version 157322.0A. 15733 15734Implemented the -qr option to display the current list of ACPI 15735reserved names known to the compiler. 15736 15737Implemented the -qc option to display the current list of ASL 15738operators that are allowed within constant expressions and can 15739therefore be folded at compile time if the operands are constants. 15740 15741 157424) Documentation 15743 15744Updated the Programmer's Reference for new interfaces, data types, 15745and memory allocation model options. 15746 15747Updated the iASL Compiler User Reference to apply new format and 15748add information about new features and options. 15749 15750---------------------------------------- 1575119 April 2002. Summary of changes for this release. 15752 157531) ACPI CA Core Subsystem Version 20020419: 15754 15755The source code base for the Core Subsystem has been completely 15756cleaned with PC-lint (FlexLint) for both 32-bit and 64-bit 15757versions. The Lint option files used are included in the 15758/acpi/generate/lint directory. 15759 15760Implemented enhanced status/error checking across the entire 15761Hardware manager subsystem. Any hardware errors (reported from 15762the OSL) are now bubbled up and will abort a running control 15763method. 15764 15765 15766Fixed a problem where the per-ACPI-table integer width (32 or 64) 15767was stored only with control method nodes, causing a fault when 15768non-control method code was executed during table loading. The 15769solution implemented uses a global variable to indicate table 15770width across the entire ACPI subsystem. Therefore, ACPI CA does 15771not support mixed integer widths across different ACPI tables 15772(DSDT, SSDT). 15773 15774Fixed a problem where NULL extended fields (X fields) in an ACPI 157752.0 ACPI FADT caused the table load to fail. Although the 15776existing ACPI specification is a bit fuzzy on this topic, the new 15777behavior is to fall back on a ACPI 1.0 field if the corresponding 15778ACPI 2.0 X field is zero (even though the table revision indicates 15779a full ACPI 2.0 table.) The ACPI specification will be updated to 15780clarify this issue. 15781 15782Fixed a problem with the SystemMemory operation region handler 15783where memory was always accessed byte-wise even if the AML- 15784specified access width was larger than a byte. This caused 15785problems on systems with memory-mapped I/O. Memory is now 15786accessed with the width specified. On systems that do not support 15787non-aligned transfers, a check is made to guarantee proper address 15788alignment before proceeding in order to avoid an AML-caused 15789alignment fault within the kernel. 15790 15791 15792Fixed a problem with the ExtendedIrq resource where only one byte 15793of the 4-byte Irq field was extracted. 15794 15795Fixed the AcpiExDigitsNeeded() procedure to support _UID. This 15796function was out of date and required a rewrite. 15797 15798Code and Data Size: Current core subsystem library sizes are shown 15799below. These are the code and data sizes for the acpica.lib 15800produced by the Microsoft Visual C++ 6.0 compiler, and these 15801values do not include any ACPI driver or OSPM code. The debug 15802version of the code includes the debug output trace mechanism and 15803has a larger code and data size. Note that these values will vary 15804depending on the efficiency of the compiler and the compiler 15805options used during generation. 15806 15807 Previous Release 15808 Non-Debug Version: 66.6K Code, 6.5K Data, 73.1K Total 15809 Debug Version: 139.8K Code, 57.4K Data, 197.2K Total 15810 Current Release: 15811 Non-Debug Version: 68.5K Code, 7.0K Data, 75.5K Total 15812 Debug Version: 142.4K Code, 58.3K Data, 200.7K Total 15813 15814 158152) Linux 15816 15817PCI IRQ routing fixes (Dominik Brodowski) 15818 15819 158203) iASL Compiler Version X2042: 15821 15822Implemented an additional compile-time error check for a field 15823unit whose size + minimum access width would cause a run-time 15824access beyond the end-of-region. Previously, only the field size 15825itself was checked. 15826 15827The Core subsystem and iASL compiler now share a common parse 15828object in preparation for compile-time evaluation of the type 158293/4/5 ASL operators. 15830 15831 15832---------------------------------------- 15833Summary of changes for this release: 03_29_02 15834 158351) ACPI CA Core Subsystem Version 20020329: 15836 15837Implemented support for late evaluation of TermArg operands to 15838Buffer and Package objects. This allows complex expressions to be 15839used in the declarations of these object types. 15840 15841Fixed an ACPI 1.0 compatibility issue when reading Fields. In ACPI 158421.0, if the field was larger than 32 bits, it was returned as a 15843buffer - otherwise it was returned as an integer. In ACPI 2.0, 15844the field is returned as a buffer only if the field is larger than 1584564 bits. The TableRevision is now considered when making this 15846conversion to avoid incompatibility with existing ASL code. 15847 15848Implemented logical addressing for AcpiOsGetRootPointer. This 15849allows an RSDP with either a logical or physical address. With 15850this support, the host OS can now override all ACPI tables with 15851one logical RSDP. Includes implementation of "typed" pointer 15852support to allow a common data type for both physical and logical 15853pointers internally. This required a change to the 15854AcpiOsGetRootPointer interface. 15855 15856Implemented the use of ACPI 2.0 Generic Address Structures for all 15857GPE, Fixed Event, and PM Timer I/O. This allows the use of memory 15858mapped I/O for these ACPI features. 15859 15860Initialization now ignores not only non-required tables (All 15861tables other than the FADT, FACS, DSDT, and SSDTs), but also does 15862not validate the table headers of unrecognized tables. 15863 15864Fixed a problem where a notify handler could only be 15865installed/removed on an object of type Device. All "notify" 15866 15867objects are now supported -- Devices, Processor, Power, and 15868Thermal. 15869 15870Removed most verbosity from the ACPI_DB_INFO debug level. Only 15871critical information is returned when this debug level is enabled. 15872 15873Code and Data Size: Current core subsystem library sizes are shown 15874below. These are the code and data sizes for the acpica.lib 15875produced by the Microsoft Visual C++ 6.0 compiler, and these 15876values do not include any ACPI driver or OSPM code. The debug 15877version of the code includes the debug output trace mechanism and 15878has a larger code and data size. Note that these values will vary 15879depending on the efficiency of the compiler and the compiler 15880options used during generation. 15881 15882 Previous Release 15883 Non-Debug Version: 65.4K Code, 6.2K Data, 71.6K Total 15884 Debug Version: 138.0K Code, 56.6K Data, 194.6K Total 15885 Current Release: 15886 Non-Debug Version: 66.6K Code, 6.5K Data, 73.1K Total 15887 Debug Version: 139.8K Code, 57.4K Data, 197.2K Total 15888 15889 158902) Linux: 15891 15892The processor driver (acpi_processor.c) now fully supports ACPI 158932.0-based processor performance control (e.g. Intel(R) 15894SpeedStep(TM) technology) Note that older laptops that only have 15895the Intel "applet" interface are not supported through this. The 15896'limit' and 'performance' interface (/proc) are fully functional. 15897[Note that basic policy for controlling performance state 15898transitions will be included in the next version of ospmd.] The 15899idle handler was modified to more aggressively use C2, and PIIX4 15900errata handling underwent a complete overhaul (big thanks to 15901Dominik Brodowski). 15902 15903Added support for ACPI-PCI device binding (acpi_pci_root.c). _ADR- 15904based devices in the ACPI namespace are now dynamically bound 15905(associated) with their PCI counterparts (e.g. PCI1->01:00.0). 15906This allows, among other things, ACPI to resolve bus numbers for 15907subordinate PCI bridges. 15908 15909Enhanced PCI IRQ routing to get the proper bus number for _PRT 15910entries defined underneath PCI bridges. 15911 15912Added IBM 600E to bad bios list due to invalid _ADR value for 15913PIIX4 PCI-ISA bridge, resulting in improper PCI IRQ routing. 15914 15915In the process of adding full MADT support (e.g. IOAPIC) for IA32 15916(acpi.c, mpparse.c) -- stay tuned. 15917 15918Added back visual differentiation between fixed-feature and 15919control-method buttons in dmesg. Buttons are also subtyped (e.g. 15920button/power/PWRF) to simplify button identification. 15921 15922We no longer use -Wno-unused when compiling debug. Please ignore 15923any "_THIS_MODULE defined but not used" messages. 15924 15925Can now shut down the system using "magic sysrq" key. 15926 15927 159283) iASL Compiler version 2041: 15929 15930Fixed a problem where conversion errors for hex/octal/decimal 15931constants were not reported. 15932 15933Implemented a fix for the General Register template Address field. 15934This field was 8 bits when it should be 64. 15935 15936Fixed a problem where errors/warnings were no longer being emitted 15937within the listing output file. 15938 15939Implemented the ACPI 2.0A restriction on ACPI Table Signatures to 15940exactly 4 characters, alphanumeric only. 15941 15942 15943 15944 15945---------------------------------------- 15946Summary of changes for this release: 03_08_02 15947 15948 159491) ACPI CA Core Subsystem Version 20020308: 15950 15951Fixed a problem with AML Fields where the use of the "AccessAny" 15952keyword could cause an interpreter error due to attempting to read 15953or write beyond the end of the parent Operation Region. 15954 15955Fixed a problem in the SystemMemory Operation Region handler where 15956an attempt was made to map memory beyond the end of the region. 15957This was the root cause of the "AE_ERROR" and "AE_NO_MEMORY" 15958errors on some Linux systems. 15959 15960Fixed a problem where the interpreter/namespace "search to root" 15961algorithm was not functioning for some object types. Relaxed the 15962internal restriction on the search to allow upsearches for all 15963external object types as well as most internal types. 15964 15965 159662) Linux: 15967 15968We now use safe_halt() macro versus individual calls to sti | hlt. 15969 15970Writing to the processor limit interface should now work. "echo 1" 15971will increase the limit, 2 will decrease, and 0 will reset to the 15972 15973default. 15974 15975 159763) ASL compiler: 15977 15978Fixed segfault on Linux version. 15979 15980 15981---------------------------------------- 15982Summary of changes for this release: 02_25_02 15983 159841) ACPI CA Core Subsystem: 15985 15986 15987Fixed a problem where the GPE bit masks were not initialized 15988properly, causing erratic GPE behavior. 15989 15990Implemented limited support for multiple calling conventions. The 15991code can be generated with either the VPL (variable parameter 15992list, or "C") convention, or the FPL (fixed parameter list, or 15993"Pascal") convention. The core subsystem is about 3.4% smaller 15994when generated with FPL. 15995 15996 159972) Linux 15998 15999Re-add some /proc/acpi/event functionality that was lost during 16000the rewrite 16001 16002Resolved issue with /proc events for fixed-feature buttons showing 16003up as the system device. 16004 16005Fixed checks on C2/C3 latencies to be inclusive of maximum values. 16006 16007Replaced AE_ERRORs in acpi_osl.c with more specific error codes. 16008 16009Changed ACPI PRT option from "pci=noacpi-routing" to "pci=noacpi" 16010 16011Fixed limit interface & usage to fix bugs with passive cooling 16012hysterisis. 16013 16014Restructured PRT support. 16015 16016 16017---------------------------------------- 16018Summary of changes for this label: 02_14_02 16019 16020 160211) ACPI CA Core Subsystem: 16022 16023Implemented support in AcpiLoadTable to allow loading of FACS and 16024FADT tables. 16025 16026Suport for the now-obsolete interim 0.71 64-bit ACPI tables has 16027been removed. All 64-bit platforms should be migrated to the ACPI 160282.0 tables. The actbl71.h header has been removed from the source 16029tree. 16030 16031All C macros defined within the subsystem have been prefixed with 16032"ACPI_" to avoid collision with other system include files. 16033 16034Removed the return value for the two AcpiOsPrint interfaces, since 16035it is never used and causes lint warnings for ignoring the return 16036value. 16037 16038Added error checking to all internal mutex acquire and release 16039calls. Although a failure from one of these interfaces is 16040probably a fatal system error, these checks will cause the 16041immediate abort of the currently executing method or interface. 16042 16043Fixed a problem where the AcpiSetCurrentResources interface could 16044fault. This was a side effect of the deployment of the new memory 16045allocation model. 16046 16047Fixed a couple of problems with the Global Lock support introduced 16048in the last major build. The "common" (1.0/2.0) internal FACS was 16049being overwritten with the FACS signature and clobbering the 16050Global Lock pointer. Also, the actual firmware FACS was being 16051unmapped after construction of the "common" FACS, preventing 16052access to the actual Global Lock field within it. The "common" 16053internal FACS is no longer installed as an actual ACPI table; it 16054is used simply as a global. 16055 16056Code and Data Size: Current core subsystem library sizes are shown 16057below. These are the code and data sizes for the acpica.lib 16058produced by the Microsoft Visual C++ 6.0 compiler, and these 16059values do not include any ACPI driver or OSPM code. The debug 16060version of the code includes the debug output trace mechanism and 16061has a larger code and data size. Note that these values will vary 16062depending on the efficiency of the compiler and the compiler 16063options used during generation. 16064 16065 Previous Release (02_07_01) 16066 Non-Debug Version: 65.2K Code, 6.2K Data, 71.4K Total 16067 Debug Version: 136.9K Code, 56.4K Data, 193.3K Total 16068 Current Release: 16069 Non-Debug Version: 65.4K Code, 6.2K Data, 71.6K Total 16070 Debug Version: 138.0K Code, 56.6K Data, 194.6K Total 16071 16072 160732) Linux 16074 16075Updated Linux-specific code for core macro and OSL interface 16076changes described above. 16077 16078Improved /proc/acpi/event. It now can be opened only once and has 16079proper poll functionality. 16080 16081Fixed and restructured power management (acpi_bus). 16082 16083Only create /proc "view by type" when devices of that class exist. 16084 16085Fixed "charging/discharging" bug (and others) in acpi_battery. 16086 16087Improved thermal zone code. 16088 16089 160903) ASL Compiler, version X2039: 16091 16092 16093Implemented the new compiler restriction on ASL String hex/octal 16094escapes to non-null, ASCII values. An error results if an invalid 16095value is used. (This will require an ACPI 2.0 specification 16096change.) 16097 16098AML object labels that are output to the optional C and ASM source 16099are now prefixed with both the ACPI table signature and table ID 16100to help guarantee uniqueness within a large BIOS project. 16101 16102 16103---------------------------------------- 16104Summary of changes for this label: 02_01_02 16105 161061) ACPI CA Core Subsystem: 16107 16108ACPI 2.0 support is complete in the entire Core Subsystem and the 16109ASL compiler. All new ACPI 2.0 operators are implemented and all 16110other changes for ACPI 2.0 support are complete. With 16111simultaneous code and data optimizations throughout the subsystem, 16112ACPI 2.0 support has been implemented with almost no additional 16113cost in terms of code and data size. 16114 16115Implemented a new mechanism for allocation of return buffers. If 16116the buffer length is set to ACPI_ALLOCATE_BUFFER, the buffer will 16117be allocated on behalf of the caller. Consolidated all return 16118buffer validation and allocation to a common procedure. Return 16119buffers will be allocated via the primary OSL allocation interface 16120since it appears that a separate pool is not needed by most users. 16121If a separate pool is required for these buffers, the caller can 16122still use the original mechanism and pre-allocate the buffer(s). 16123 16124Implemented support for string operands within the DerefOf 16125operator. 16126 16127Restructured the Hardware and Event managers to be table driven, 16128simplifying the source code and reducing the amount of generated 16129code. 16130 16131Split the common read/write low-level ACPI register bitfield 16132procedure into a separate read and write, simplifying the code 16133considerably. 16134 16135Obsoleted the AcpiOsCallocate OSL interface. This interface was 16136used only a handful of times and didn't have enough critical mass 16137for a separate interface. Replaced with a common calloc procedure 16138in the core. 16139 16140Fixed a reported problem with the GPE number mapping mechanism 16141that allows GPE1 numbers to be non-contiguous with GPE0. 16142Reorganized the GPE information and shrunk a large array that was 16143originally large enough to hold info for all possible GPEs (256) 16144to simply large enough to hold all GPEs up to the largest GPE 16145number on the machine. 16146 16147Fixed a reported problem with resource structure alignment on 64- 16148bit platforms. 16149 16150Changed the AcpiEnableEvent and AcpiDisableEvent external 16151interfaces to not require any flags for the common case of 16152enabling/disabling a GPE. 16153 16154Implemented support to allow a "Notify" on a Processor object. 16155 16156Most TBDs in comments within the source code have been resolved 16157and eliminated. 16158 16159 16160Fixed a problem in the interpreter where a standalone parent 16161prefix (^) was not handled correctly in the interpreter and 16162debugger. 16163 16164Removed obsolete and unnecessary GPE save/restore code. 16165 16166Implemented Field support in the ASL Load operator. This allows a 16167table to be loaded from a named field, in addition to loading a 16168table directly from an Operation Region. 16169 16170Implemented timeout and handle support in the external Global Lock 16171interfaces. 16172 16173Fixed a problem in the AcpiDump utility where pathnames were no 16174longer being generated correctly during the dump of named objects. 16175 16176Modified the AML debugger to give a full display of if/while 16177predicates instead of just one AML opcode at a time. (The 16178predicate can have several nested ASL statements.) The old method 16179was confusing during single stepping. 16180 16181Code and Data Size: Current core subsystem library sizes are shown 16182below. These are the code and data sizes for the acpica.lib 16183produced by the Microsoft Visual C++ 6.0 compiler, and these 16184values do not include any ACPI driver or OSPM code. The debug 16185version of the code includes the debug output trace mechanism and 16186has a larger code and data size. Note that these values will vary 16187depending on the efficiency of the compiler and the compiler 16188options used during generation. 16189 16190 Previous Release (12_18_01) 16191 Non-Debug Version: 66.1K Code, 5.5K Data, 71.6K Total 16192 Debug Version: 138.3K Code, 55.9K Data, 194.2K Total 16193 Current Release: 16194 Non-Debug Version: 65.2K Code, 6.2K Data, 71.4K Total 16195 Debug Version: 136.9K Code, 56.4K Data, 193.3K Total 16196 161972) Linux 16198 16199 Implemented fix for PIIX reverse throttling errata (Processor 16200driver) 16201 16202Added new Limit interface (Processor and Thermal drivers) 16203 16204New thermal policy (Thermal driver) 16205 16206Many updates to /proc 16207 16208Battery "low" event support (Battery driver) 16209 16210Supports ACPI PCI IRQ routing (PCI Link and PCI root drivers) 16211 16212IA32 - IA64 initialization unification, no longer experimental 16213 16214Menuconfig options redesigned 16215 162163) ASL Compiler, version X2037: 16217 16218Implemented several new output features to simplify integration of 16219AML code into firmware: 1) Output the AML in C source code with 16220labels for each named ASL object. The original ASL source code 16221is interleaved as C comments. 2) Output the AML in ASM source code 16222with labels and interleaved ASL source. 3) Output the AML in 16223raw hex table form, in either C or ASM. 16224 16225Implemented support for optional string parameters to the 16226LoadTable operator. 16227 16228Completed support for embedded escape sequences within string 16229literals. The compiler now supports all single character escapes 16230as well as the Octal and Hex escapes. Note: the insertion of a 16231null byte into a string literal (via the hex/octal escape) causes 16232the string to be immediately terminated. A warning is issued. 16233 16234Fixed a problem where incorrect AML was generated for the case 16235where an ASL namepath consists of a single parent prefix ( 16236 16237) with no trailing name segments. 16238 16239The compiler has been successfully generated with a 64-bit C 16240compiler. 16241 16242 16243 16244 16245---------------------------------------- 16246Summary of changes for this label: 12_18_01 16247 162481) Linux 16249 16250Enhanced blacklist with reason and severity fields. Any table's 16251signature may now be used to identify a blacklisted system. 16252 16253Call _PIC control method to inform the firmware which interrupt 16254model the OS is using. Turn on any disabled link devices. 16255 16256Cleaned up busmgr /proc error handling (Andreas Dilger) 16257 16258 2) ACPI CA Core Subsystem: 16259 16260Implemented ACPI 2.0 semantics for the "Break" operator (Exit from 16261while loop) 16262 16263Completed implementation of the ACPI 2.0 "Continue", 16264"ConcatenateResTemplate", "DataTableRegion", and "LoadTable" 16265operators. All new ACPI 2.0 operators are now implemented in both 16266the ASL compiler and the AML interpreter. The only remaining ACPI 162672.0 task is support for the String data type in the DerefOf 16268operator. Fixed a problem with AcquireMutex where the status code 16269was lost if the caller had to actually wait for the mutex. 16270 16271Increased the maximum ASL Field size from 64K bits to 4G bits. 16272 16273Completed implementation of the external Global Lock interfaces -- 16274AcpiAcquireGlobalLock and AcpiReleaseGlobalLock. The Timeout and 16275Handler parameters were added. 16276 16277Completed another pass at removing warnings and issues when 16278compiling with 64-bit compilers. The code now compiles cleanly 16279with the Intel 64-bit C/C++ compiler. Most notably, the pointer 16280add and subtract (diff) macros have changed considerably. 16281 16282 16283Created and deployed a new ACPI_SIZE type that is 64-bits wide on 1628464-bit platforms, 32-bits on all others. This type is used 16285wherever memory allocation and/or the C sizeof() operator is used, 16286and affects the OSL memory allocation interfaces AcpiOsAllocate 16287and AcpiOsCallocate. 16288 16289Implemented sticky user breakpoints in the AML debugger. 16290 16291Code and Data Size: Current core subsystem library sizes are shown 16292below. These are the code and data sizes for the acpica.lib 16293produced by the Microsoft Visual C++ 6.0 compiler, and these 16294values do not include any ACPI driver or OSPM code. The debug 16295version of the code includes the debug output trace mechanism and 16296has a larger code and data size. Note that these values will vary 16297depending on the efficiency of the compiler and the compiler 16298options used during generation. 16299 16300 Previous Release (12_05_01) 16301 Non-Debug Version: 64.7K Code, 5.3K Data, 70.0K Total 16302 Debug Version: 136.2K Code, 55.6K Data, 191.8K Total 16303 Current Release: 16304 Non-Debug Version: 66.1K Code, 5.5K Data, 71.6K Total 16305 Debug Version: 138.3K Code, 55.9K Data, 194.2K Total 16306 16307 3) ASL Compiler, version X2034: 16308 16309Now checks for (and generates an error if detected) the use of a 16310Break or Continue statement without an enclosing While statement. 16311 16312 16313Successfully generated the compiler with the Intel 64-bit C 16314compiler. 16315 16316 ---------------------------------------- 16317Summary of changes for this label: 12_05_01 16318 16319 1) ACPI CA Core Subsystem: 16320 16321The ACPI 2.0 CopyObject operator is fully implemented. This 16322operator creates a new copy of an object (and is also used to 16323bypass the "implicit conversion" mechanism of the Store operator.) 16324 16325The ACPI 2.0 semantics for the SizeOf operator are fully 16326implemented. The change is that performing a SizeOf on a 16327reference object causes an automatic dereference of the object to 16328tha actual value before the size is evaluated. This behavior was 16329undefined in ACPI 1.0. 16330 16331The ACPI 2.0 semantics for the Extended IRQ resource descriptor 16332have been implemented. The interrupt polarity and mode are now 16333independently set. 16334 16335Fixed a problem where ASL Constants (Zero, One, Ones, Revision) 16336appearing in Package objects were not properly converted to 16337integers when the internal Package was converted to an external 16338object (via the AcpiEvaluateObject interface.) 16339 16340Fixed a problem with the namespace object deletion mechanism for 16341objects created by control methods. There were two parts to this 16342problem: 1) Objects created during the initialization phase method 16343parse were not being deleted, and 2) The object owner ID mechanism 16344to track objects was broken. 16345 16346Fixed a problem where the use of the ASL Scope operator within a 16347control method would result in an invalid opcode exception. 16348 16349Fixed a problem introduced in the previous label where the buffer 16350length required for the _PRT structure was not being returned 16351correctly. 16352 16353Code and Data Size: Current core subsystem library sizes are shown 16354below. These are the code and data sizes for the acpica.lib 16355produced by the Microsoft Visual C++ 6.0 compiler, and these 16356values do not include any ACPI driver or OSPM code. The debug 16357version of the code includes the debug output trace mechanism and 16358has a larger code and data size. Note that these values will vary 16359depending on the efficiency of the compiler and the compiler 16360options used during generation. 16361 16362 Previous Release (11_20_01) 16363 Non-Debug Version: 64.1K Code, 5.3K Data, 69.4K Total 16364 Debug Version: 135.1K Code, 55.4K Data, 190.5K Total 16365 16366 Current Release: 16367 Non-Debug Version: 64.7K Code, 5.3K Data, 70.0K Total 16368 Debug Version: 136.2K Code, 55.6K Data, 191.8K Total 16369 16370 2) Linux: 16371 16372Updated all files to apply cleanly against 2.4.16. 16373 16374Added basic PCI Interrupt Routing Table (PRT) support for IA32 16375(acpi_pci.c), and unified the PRT code for IA32 and IA64. This 16376version supports both static and dyanmic PRT entries, but dynamic 16377entries are treated as if they were static (not yet 16378reconfigurable). Architecture- specific code to use this data is 16379absent on IA32 but should be available shortly. 16380 16381Changed the initialization sequence to start the ACPI interpreter 16382(acpi_init) prior to initialization of the PCI driver (pci_init) 16383in init/main.c. This ordering is required to support PRT and 16384facilitate other (future) enhancement. A side effect is that the 16385ACPI bus driver and certain device drivers can no longer be loaded 16386as modules. 16387 16388Modified the 'make menuconfig' options to allow PCI Interrupt 16389Routing support to be included without the ACPI Bus and other 16390device drivers. 16391 16392 3) ASL Compiler, version X2033: 16393 16394Fixed some issues with the use of the new CopyObject and 16395DataTableRegion operators. Both are fully functional. 16396 16397 ---------------------------------------- 16398Summary of changes for this label: 11_20_01 16399 16400 20 November 2001. Summary of changes for this release. 16401 16402 1) ACPI CA Core Subsystem: 16403 16404Updated Index support to match ACPI 2.0 semantics. Storing a 16405Integer, String, or Buffer to an Index of a Buffer will store only 16406the least-significant byte of the source to the Indexed buffer 16407byte. Multiple writes are not performed. 16408 16409Fixed a problem where the access type used in an AccessAs ASL 16410operator was not recorded correctly into the field object. 16411 16412Fixed a problem where ASL Event objects were created in a 16413signalled state. Events are now created in an unsignalled state. 16414 16415The internal object cache is now purged after table loading and 16416initialization to reduce the use of dynamic kernel memory -- on 16417the assumption that object use is greatest during the parse phase 16418of the entire table (versus the run-time use of individual control 16419methods.) 16420 16421ACPI 2.0 variable-length packages are now fully operational. 16422 16423Code and Data Size: Code and Data optimizations have permitted new 16424feature development with an actual reduction in the library size. 16425Current core subsystem library sizes are shown below. These are 16426the code and data sizes for the acpica.lib produced by the 16427Microsoft Visual C++ 6.0 compiler, and these values do not include 16428any ACPI driver or OSPM code. The debug version of the code 16429includes the debug output trace mechanism and has a larger code 16430and data size. Note that these values will vary depending on the 16431efficiency of the compiler and the compiler options used during 16432generation. 16433 16434 Previous Release (11_09_01): 16435 Non-Debug Version: 63.7K Code, 5.2K Data, 68.9K Total 16436 Debug Version: 134.5K Code, 55.4K Data, 189.9K Total 16437 16438 Current Release: 16439 Non-Debug Version: 64.1K Code, 5.3K Data, 69.4K Total 16440 Debug Version: 135.1K Code, 55.4K Data, 190.5K Total 16441 16442 2) Linux: 16443 16444Enhanced the ACPI boot-time initialization code to allow the use 16445of Local APIC tables for processor enumeration on IA-32, and to 16446pave the way for a fully MPS-free boot (on SMP systems) in the 16447near future. This functionality replaces 16448arch/i386/kernel/acpitables.c, which was introduced in an earlier 164492.4.15-preX release. To enable this feature you must add 16450"acpi_boot=on" to the kernel command line -- see the help entry 16451for CONFIG_ACPI_BOOT for more information. An IA-64 release is in 16452the works... 16453 16454Restructured the configuration options to allow boot-time table 16455parsing support without inclusion of the ACPI Interpreter (and 16456other) code. 16457 16458NOTE: This release does not include fixes for the reported events, 16459power-down, and thermal passive cooling issues (coming soon). 16460 16461 3) ASL Compiler: 16462 16463Added additional typechecking for Fields within restricted access 16464Operation Regions. All fields within EC and CMOS regions must be 16465declared with ByteAcc. All fields withing SMBus regions must be 16466declared with the BufferAcc access type. 16467 16468Fixed a problem where the listing file output of control methods 16469no longer interleaved the actual AML code with the ASL source 16470code. 16471 16472 16473 16474 16475---------------------------------------- 16476Summary of changes for this label: 11_09_01 16477 164781) ACPI CA Core Subsystem: 16479 16480Implemented ACPI 2.0-defined support for writes to fields with a 16481Buffer, String, or Integer source operand that is smaller than the 16482target field. In these cases, the source operand is zero-extended 16483to fill the target field. 16484 16485Fixed a problem where a Field starting bit offset (within the 16486parent operation region) was calculated incorrectly if the 16487 16488alignment of the field differed from the access width. This 16489affected CreateWordField, CreateDwordField, CreateQwordField, and 16490possibly other fields that use the "AccessAny" keyword. 16491 16492Fixed a problem introduced in the 11_02_01 release where indirect 16493stores through method arguments did not operate correctly. 16494 164952) Linux: 16496 16497Implemented boot-time ACPI table parsing support 16498(CONFIG_ACPI_BOOT) for IA32 and IA64 UP/SMP systems. This code 16499facilitates the use of ACPI tables (e.g. MADT, SRAT) rather than 16500legacy BIOS interfaces (e.g. MPS) for the configuration of system 16501processors, memory, and interrupts during setup_arch(). Note that 16502this patch does not include the required architecture-specific 16503changes required to apply this information -- subsequent patches 16504will be posted for both IA32 and IA64 to achieve this. 16505 16506Added low-level sleep support for IA32 platforms, courtesy of Pat 16507Mochel. This allows IA32 systems to transition to/from various 16508sleeping states (e.g. S1, S3), although the lack of a centralized 16509driver model and power-manageable drivers will prevent its 16510(successful) use on most systems. 16511 16512Revamped the ACPI 'menuconfig' layout: created new "ACPI Support" 16513submenu, unified IA32 and IA64 options, added new "Boot using ACPI 16514tables" option, etc. 16515 16516Increased the default timeout for the EC driver from 1ms to 10ms 16517(1000 cycles of 10us) to try to address AE_TIME errors during EC 16518transactions. 16519 16520 ---------------------------------------- 16521Summary of changes for this label: 11_02_01 16522 165231) ACPI CA Core Subsystem: 16524 16525ACPI 2.0 Support: Implemented ACPI 2.0 64-bit Field access 16526(QWordAcc keyword). All ACPI 2.0 64-bit support is now 16527implemented. 16528 16529OSL Interfaces: Several of the OSL (AcpiOs*) interfaces required 16530changes to support ACPI 2.0 Qword field access. Read/Write 16531PciConfiguration(), Read/Write Memory(), and Read/Write Port() now 16532accept an ACPI_INTEGER (64 bits) as the value parameter. Also, 16533the value parameter for the address space handler interface is now 16534an ACPI_INTEGER. OSL implementations of these interfaces must now 16535handle the case where the Width parameter is 64. 16536 16537Index Fields: Fixed a problem where unaligned bit assembly and 16538disassembly for IndexFields was not supported correctly. 16539 16540Index and Bank Fields: Nested Index and Bank Fields are now 16541supported. During field access, a check is performed to ensure 16542that the value written to an Index or Bank register is not out of 16543the range of the register. The Index (or Bank) register is 16544written before each access to the field data. Future support will 16545include allowing individual IndexFields to be wider than the 16546DataRegister width. 16547 16548Fields: Fixed a problem where the AML interpreter was incorrectly 16549attempting to write beyond the end of a Field/OpRegion. This was 16550a boundary case that occurred when a DWORD field was written to a 16551BYTE access OpRegion, forcing multiple writes and causing the 16552interpreter to write one datum too many. 16553 16554Fields: Fixed a problem with Field/OpRegion access where the 16555starting bit address of a field was incorrectly calculated if the 16556current access type was wider than a byte (WordAcc, DwordAcc, or 16557QwordAcc). 16558 16559Fields: Fixed a problem where forward references to individual 16560FieldUnits (individual Field names within a Field definition) were 16561not resolved during the AML table load. 16562 16563Fields: Fixed a problem where forward references from a Field 16564definition to the parent Operation Region definition were not 16565resolved during the AML table load. 16566 16567Fields: Duplicate FieldUnit names within a scope are now detected 16568during AML table load. 16569 16570Acpi Interfaces: Fixed a problem where the AcpiGetName() interface 16571returned an incorrect name for the root node. 16572 16573Code and Data Size: Code and Data optimizations have permitted new 16574feature development with an actual reduction in the library size. 16575Current core subsystem library sizes are shown below. These are 16576the code and data sizes for the acpica.lib produced by the 16577Microsoft Visual C++ 6.0 compiler, and these values do not include 16578any ACPI driver or OSPM code. The debug version of the code 16579includes the debug output trace mechanism and has a larger code 16580and data size. Note that these values will vary depending on the 16581efficiency of the compiler and the compiler options used during 16582generation. 16583 16584 Previous Release (10_18_01): 16585 Non-Debug Version: 63.9K Code, 5.1K Data, 69.0K Total 16586 Debug Version: 136.7K Code, 57.4K Data, 194.2K Total 16587 16588 Current Release: 16589 Non-Debug Version: 63.7K Code, 5.2K Data, 68.9K Total 16590 Debug Version: 134.5K Code, 55.4K Data, 189.9K Total 16591 16592 2) Linux: 16593 16594Improved /proc processor output (Pavel Machek) Re-added 16595MODULE_LICENSE("GPL") to all modules. 16596 16597 3) ASL Compiler version X2030: 16598 16599Duplicate FieldUnit names within a scope are now detected and 16600flagged as errors. 16601 16602 4) Documentation: 16603 16604Programmer Reference updated to reflect OSL and address space 16605handler interface changes described above. 16606 16607---------------------------------------- 16608Summary of changes for this label: 10_18_01 16609 16610ACPI CA Core Subsystem: 16611 16612Fixed a problem with the internal object reference count mechanism 16613that occasionally caused premature object deletion. This resolves 16614all of the outstanding problem reports where an object is deleted 16615in the middle of an interpreter evaluation. Although this problem 16616only showed up in rather obscure cases, the solution to the 16617problem involved an adjustment of all reference counts involving 16618objects attached to namespace nodes. 16619 16620Fixed a problem with Field support in the interpreter where 16621writing to an aligned field whose length is an exact multiple (2 16622or greater) of the field access granularity would cause an attempt 16623to write beyond the end of the field. 16624 16625The top level AML opcode execution functions within the 16626interpreter have been renamed with a more meaningful and 16627consistent naming convention. The modules exmonad.c and 16628exdyadic.c were eliminated. New modules are exoparg1.c, 16629exoparg2.c, exoparg3.c, and exoparg6.c. 16630 16631Support for the ACPI 2.0 "Mid" ASL operator has been implemented. 16632 16633Fixed a problem where the AML debugger was causing some internal 16634objects to not be deleted during subsystem termination. 16635 16636Fixed a problem with the external AcpiEvaluateObject interface 16637where the subsystem would fault if the named object to be 16638evaluated refered to a constant such as Zero, Ones, etc. 16639 16640Fixed a problem with IndexFields and BankFields where the 16641subsystem would fault if the index, data, or bank registers were 16642not defined in the same scope as the field itself. 16643 16644Added printf format string checking for compilers that support 16645this feature. Corrected more than 50 instances of issues with 16646format specifiers within invocations of ACPI_DEBUG_PRINT 16647throughout the core subsystem code. 16648 16649The ASL "Revision" operator now returns the ACPI support level 16650implemented in the core - the value "2" since the ACPI 2.0 support 16651is more than 50% implemented. 16652 16653Enhanced the output of the AML debugger "dump namespace" command 16654to output in a more human-readable form. 16655 16656Current core subsystem library code sizes are shown below. These 16657 16658are the code and data sizes for the acpica.lib produced by the 16659Microsoft Visual C++ 6.0 compiler, and these values do not include 16660any ACPI driver or OSPM code. The debug version of the code 16661includes the full debug trace mechanism -- leading to a much 16662 16663larger code and data size. Note that these values will vary 16664depending on the efficiency of the compiler and the compiler 16665options used during generation. 16666 16667 Previous Label (09_20_01): 16668 Non-Debug Version: 65K Code, 5K Data, 70K Total 16669 Debug Version: 138K Code, 58K Data, 196K Total 16670 16671 This Label: 16672 16673 Non-Debug Version: 63.9K Code, 5.1K Data, 69.0K Total 16674 Debug Version: 136.7K Code, 57.4K Data, 194.2K Total 16675 16676Linux: 16677 16678Implemented a "Bad BIOS Blacklist" to track machines that have 16679known ASL/AML problems. 16680 16681Enhanced the /proc interface for the thermal zone driver and added 16682support for _HOT (the critical suspend trip point). The 'info' 16683file now includes threshold/policy information, and allows setting 16684of _SCP (cooling preference) and _TZP (polling frequency) values 16685to the 'info' file. Examples: "echo tzp=5 > info" sets the polling 16686frequency to 5 seconds, and "echo scp=1 > info" sets the cooling 16687preference to the passive/quiet mode (if supported by the ASL). 16688 16689Implemented a workaround for a gcc bug that resuted in an OOPs 16690when loading the control method battery driver. 16691 16692 ---------------------------------------- 16693Summary of changes for this label: 09_20_01 16694 16695 ACPI CA Core Subsystem: 16696 16697The AcpiEnableEvent and AcpiDisableEvent interfaces have been 16698modified to allow individual GPE levels to be flagged as wake- 16699enabled (i.e., these GPEs are to remain enabled when the platform 16700sleeps.) 16701 16702The AcpiEnterSleepState and AcpiLeaveSleepState interfaces now 16703support wake-enabled GPEs. This means that upon entering the 16704sleep state, all GPEs that are not wake-enabled are disabled. 16705When leaving the sleep state, these GPEs are reenabled. 16706 16707A local double-precision divide/modulo module has been added to 16708enhance portability to OS kernels where a 64-bit math library is 16709not available. The new module is "utmath.c". 16710 16711Several optimizations have been made to reduce the use of CPU 16712stack. Originally over 2K, the maximum stack usage is now below 167132K at 1860 bytes (1.82k) 16714 16715Fixed a problem with the AcpiGetFirmwareTable interface where the 16716root table pointer was not mapped into a logical address properly. 16717 16718Fixed a problem where a NULL pointer was being dereferenced in the 16719interpreter code for the ASL Notify operator. 16720 16721Fixed a problem where the use of the ASL Revision operator 16722returned an error. This operator now returns the current version 16723of the ACPI CA core subsystem. 16724 16725Fixed a problem where objects passed as control method parameters 16726to AcpiEvaluateObject were always deleted at method termination. 16727However, these objects may end up being stored into the namespace 16728by the called method. The object reference count mechanism was 16729applied to these objects instead of a force delete. 16730 16731Fixed a problem where static strings or buffers (contained in the 16732AML code) that are declared as package elements within the ASL 16733code could cause a fault because the interpreter would attempt to 16734delete them. These objects are now marked with the "static 16735object" flag to prevent any attempt to delete them. 16736 16737Implemented an interpreter optimization to use operands directly 16738from the state object instead of extracting the operands to local 16739variables. This reduces stack use and code size, and improves 16740performance. 16741 16742The module exxface.c was eliminated as it was an unnecessary extra 16743layer of code. 16744 16745Current core subsystem library code sizes are shown below. These 16746are the code and data sizes for the acpica.lib produced by the 16747Microsoft Visual C++ 6.0 compiler, and these values do not include 16748any ACPI driver or OSPM code. The debug version of the code 16749includes the full debug trace mechanism -- leading to a much 16750larger code and data size. Note that these values will vary 16751depending on the efficiency of the compiler and the compiler 16752options used during generation. 16753 16754 Non-Debug Version: 65K Code, 5K Data, 70K Total 16755(Previously 69K) Debug Version: 138K Code, 58K Data, 196K 16756Total (Previously 195K) 16757 16758Linux: 16759 16760Support for ACPI 2.0 64-bit integers has been added. All ACPI 16761Integer objects are now 64 bits wide 16762 16763All Acpi data types and structures are now in lower case. Only 16764Acpi macros are upper case for differentiation. 16765 16766 Documentation: 16767 16768Changes to the external interfaces as described above. 16769 16770 ---------------------------------------- 16771Summary of changes for this label: 08_31_01 16772 16773 ACPI CA Core Subsystem: 16774 16775A bug with interpreter implementation of the ASL Divide operator 16776was found and fixed. The implicit function return value (not the 16777explicit store operands) was returning the remainder instead of 16778the quotient. This was a longstanding bug and it fixes several 16779known outstanding issues on various platforms. 16780 16781The ACPI_DEBUG_PRINT and function trace entry/exit macros have 16782been further optimized for size. There are 700 invocations of the 16783DEBUG_PRINT macro alone, so each optimization reduces the size of 16784the debug version of the subsystem significantly. 16785 16786A stack trace mechanism has been implemented. The maximum stack 16787usage is about 2K on 32-bit platforms. The debugger command "stat 16788stack" will display the current maximum stack usage. 16789 16790All public symbols and global variables within the subsystem are 16791now prefixed with the string "Acpi". This keeps all of the 16792symbols grouped together in a kernel map, and avoids conflicts 16793with other kernel subsystems. 16794 16795Most of the internal fixed lookup tables have been moved into the 16796code segment via the const operator. 16797 16798Several enhancements have been made to the interpreter to both 16799reduce the code size and improve performance. 16800 16801Current core subsystem library code sizes are shown below. These 16802are the code and data sizes for the acpica.lib produced by the 16803Microsoft Visual C++ 6.0 compiler, and these values do not include 16804any ACPI driver or OSPM code. The debug version of the code 16805includes the full debug trace mechanism which contains over 700 16806invocations of the DEBUG_PRINT macro, 500 function entry macro 16807invocations, and over 900 function exit macro invocations -- 16808leading to a much larger code and data size. Note that these 16809values will vary depending on the efficiency of the compiler and 16810the compiler options used during generation. 16811 16812 Non-Debug Version: 64K Code, 5K Data, 69K Total 16813Debug Version: 137K Code, 58K Data, 195K Total 16814 16815 Linux: 16816 16817Implemented wbinvd() macro, pending a kernel-wide definition. 16818 16819Fixed /proc/acpi/event to handle poll() and short reads. 16820 16821 ASL Compiler, version X2026: 16822 16823Fixed a problem introduced in the previous label where the AML 16824 16825code emitted for package objects produced packages with zero 16826length. 16827 16828 ---------------------------------------- 16829Summary of changes for this label: 08_16_01 16830 16831ACPI CA Core Subsystem: 16832 16833The following ACPI 2.0 ASL operators have been implemented in the 16834AML interpreter (These are already supported by the Intel ASL 16835compiler): ToDecimalString, ToHexString, ToString, ToInteger, and 16836ToBuffer. Support for 64-bit AML constants is implemented in the 16837AML parser, debugger, and disassembler. 16838 16839The internal memory tracking mechanism (leak detection code) has 16840been upgraded to reduce the memory overhead (a separate tracking 16841block is no longer allocated for each memory allocation), and now 16842supports all of the internal object caches. 16843 16844The data structures and code for the internal object caches have 16845been coelesced and optimized so that there is a single cache and 16846memory list data structure and a single group of functions that 16847implement generic cache management. This has reduced the code 16848size in both the debug and release versions of the subsystem. 16849 16850The DEBUG_PRINT macro(s) have been optimized for size and replaced 16851by ACPI_DEBUG_PRINT. The syntax for this macro is slightly 16852different, because it generates a single call to an internal 16853function. This results in a savings of about 90 bytes per 16854invocation, resulting in an overall code and data savings of about 1685516% in the debug version of the subsystem. 16856 16857 Linux: 16858 16859Fixed C3 disk corruption problems and re-enabled C3 on supporting 16860machines. 16861 16862Integrated low-level sleep code by Patrick Mochel. 16863 16864Further tweaked source code Linuxization. 16865 16866Other minor fixes. 16867 16868 ASL Compiler: 16869 16870Support for ACPI 2.0 variable length packages is fixed/completed. 16871 16872Fixed a problem where the optional length parameter for the ACPI 168732.0 ToString operator. 16874 16875Fixed multiple extraneous error messages when a syntax error is 16876detected within the declaration line of a control method. 16877 16878 ---------------------------------------- 16879Summary of changes for this label: 07_17_01 16880 16881ACPI CA Core Subsystem: 16882 16883Added a new interface named AcpiGetFirmwareTable to obtain any 16884ACPI table via the ACPI signature. The interface can be called at 16885any time during kernel initialization, even before the kernel 16886virtual memory manager is initialized and paging is enabled. This 16887allows kernel subsystems to obtain ACPI tables very early, even 16888before the ACPI CA subsystem is initialized. 16889 16890Fixed a problem where Fields defined with the AnyAcc attribute 16891could be resolved to the incorrect address under the following 16892conditions: 1) the field width is larger than 8 bits and 2) the 16893parent operation region is not defined on a DWORD boundary. 16894 16895Fixed a problem where the interpreter is not being locked during 16896namespace initialization (during execution of the _INI control 16897methods), causing an error when an attempt is made to release it 16898later. 16899 16900ACPI 2.0 support in the AML Interpreter has begun and will be 16901ongoing throughout the rest of this year. In this label, The Mod 16902operator is implemented. 16903 16904Added a new data type to contain full PCI addresses named 16905ACPI_PCI_ID. This structure contains the PCI Segment, Bus, Device, 16906and Function values. 16907 16908 Linux: 16909 16910Enhanced the Linux version of the source code to change most 16911capitalized ACPI type names to lowercase. For example, all 16912instances of ACPI_STATUS are changed to acpi_status. This will 16913result in a large diff, but the change is strictly cosmetic and 16914aligns the CA code closer to the Linux coding standard. 16915 16916OSL Interfaces: 16917 16918The interfaces to the PCI configuration space have been changed to 16919add the PCI Segment number and to split the single 32-bit combined 16920DeviceFunction field into two 16-bit fields. This was 16921accomplished by moving the four values that define an address in 16922PCI configuration space (segment, bus, device, and function) to 16923the new ACPI_PCI_ID structure. 16924 16925The changes to the PCI configuration space interfaces led to a 16926reexamination of the complete set of address space access 16927interfaces for PCI, I/O, and Memory. The previously existing 18 16928interfaces have proven difficult to maintain (any small change 16929must be propagated across at least 6 interfaces) and do not easily 16930allow for future expansion to 64 bits if necessary. Also, on some 16931systems, it would not be appropriate to demultiplex the access 16932width (8, 16, 32,or 64) before calling the OSL if the 16933corresponding native OS interfaces contain a similar access width 16934parameter. For these reasons, the 18 address space interfaces 16935have been replaced by these 6 new ones: 16936 16937AcpiOsReadPciConfiguration 16938AcpiOsWritePciConfiguration 16939AcpiOsReadMemory 16940AcpiOsWriteMemory 16941AcpiOsReadPort 16942AcpiOsWritePort 16943 16944Added a new interface named AcpiOsGetRootPointer to allow the OSL 16945to perform the platform and/or OS-specific actions necessary to 16946obtain the ACPI RSDP table pointer. On IA-32 platforms, this 16947interface will simply call down to the CA core to perform the low- 16948memory search for the table. On IA-64, the RSDP is obtained from 16949EFI. Migrating this interface to the OSL allows the CA core to 16950 16951remain OS and platform independent. 16952 16953Added a new interface named AcpiOsSignal to provide a generic 16954"function code and pointer" interface for various miscellaneous 16955signals and notifications that must be made to the host OS. The 16956first such signals are intended to support the ASL Fatal and 16957Breakpoint operators. In the latter case, the AcpiOsBreakpoint 16958interface has been obsoleted. 16959 16960The definition of the AcpiFormatException interface has been 16961changed to simplify its use. The caller no longer must supply a 16962buffer to the call; A pointer to a const string is now returned 16963directly. This allows the call to be easily used in printf 16964statements, etc. since the caller does not have to manage a local 16965buffer. 16966 16967 16968 ASL Compiler, Version X2025: 16969 16970The ACPI 2.0 Switch/Case/Default operators have been implemented 16971and are fully functional. They will work with all ACPI 1.0 16972interpreters, since the operators are simply translated to If/Else 16973pairs. 16974 16975The ACPI 2.0 ElseIf operator is implemented and will also work 16976with 1.0 interpreters, for the same reason. 16977 16978Implemented support for ACPI 2.0 variable-length packages. These 16979packages have a separate opcode, and their size is determined by 16980the interpreter at run-time. 16981 16982Documentation The ACPI CA Programmer Reference has been updated to 16983reflect the new interfaces and changes to existing interfaces. 16984 16985 ------------------------------------------ 16986Summary of changes for this label: 06_15_01 16987 16988 ACPI CA Core Subsystem: 16989 16990Fixed a problem where a DWORD-accessed field within a Buffer 16991object would get its byte address inadvertently rounded down to 16992the nearest DWORD. Buffers are always Byte-accessible. 16993 16994 ASL Compiler, version X2024: 16995 16996Fixed a problem where the Switch() operator would either fault or 16997hang the compiler. Note however, that the AML code for this ACPI 169982.0 operator is not yet implemented. 16999 17000Compiler uses the new AcpiOsGetTimer interface to obtain compile 17001timings. 17002 17003Implementation of the CreateField operator automatically converts 17004a reference to a named field within a resource descriptor from a 17005byte offset to a bit offset if required. 17006 17007Added some missing named fields from the resource descriptor 17008support. These are the names that are automatically created by the 17009compiler to reference fields within a descriptor. They are only 17010valid at compile time and are not passed through to the AML 17011interpreter. 17012 17013Resource descriptor named fields are now typed as Integers and 17014subject to compile-time typechecking when used in expressions. 17015 17016 ------------------------------------------ 17017Summary of changes for this label: 05_18_01 17018 17019 ACPI CA Core Subsystem: 17020 17021Fixed a couple of problems in the Field support code where bits 17022from adjacent fields could be returned along with the proper field 17023bits. Restructured the field support code to improve performance, 17024readability and maintainability. 17025 17026New DEBUG_PRINTP macro automatically inserts the procedure name 17027into the output, saving hundreds of copies of procedure name 17028strings within the source, shrinking the memory footprint of the 17029debug version of the core subsystem. 17030 17031 Source Code Structure: 17032 17033The source code directory tree was restructured to reflect the 17034current organization of the component architecture. Some files 17035and directories have been moved and/or renamed. 17036 17037 Linux: 17038 17039Fixed leaking kacpidpc processes. 17040 17041Fixed queueing event data even when /proc/acpi/event is not 17042opened. 17043 17044 ASL Compiler, version X2020: 17045 17046Memory allocation performance enhancement - over 24X compile time 17047improvement on large ASL files. Parse nodes and namestring 17048buffers are now allocated from a large internal compiler buffer. 17049 17050The temporary .SRC file is deleted unless the "-s" option is 17051specified 17052 17053The "-d" debug output option now sends all output to the .DBG file 17054instead of the console. 17055 17056"External" second parameter is now optional 17057 17058"ElseIf" syntax now properly allows the predicate 17059 17060Last operand to "Load" now recognized as a Target operand 17061 17062Debug object can now be used anywhere as a normal object. 17063 17064ResourceTemplate now returns an object of type BUFFER 17065 17066EISAID now returns an object of type INTEGER 17067 17068"Index" now works with a STRING operand 17069 17070"LoadTable" now accepts optional parameters 17071 17072"ToString" length parameter is now optional 17073 17074"Interrupt (ResourceType," parse error fixed. 17075 17076"Register" with a user-defined region space parse error fixed 17077 17078Escaped backslash at the end of a string ("\\") scan/parse error 17079fixed 17080 17081"Revision" is now an object of type INTEGER. 17082 17083 17084 17085------------------------------------------ 17086Summary of changes for this label: 05_02_01 17087 17088Linux: 17089 17090/proc/acpi/event now blocks properly. 17091 17092Removed /proc/sys/acpi. You can still dump your DSDT from 17093/proc/acpi/dsdt. 17094 17095 ACPI CA Core Subsystem: 17096 17097Fixed a problem introduced in the previous label where some of the 17098"small" resource descriptor types were not recognized. 17099 17100Improved error messages for the case where an ASL Field is outside 17101the range of the parent operation region. 17102 17103 ASL Compiler, version X2018: 17104 17105 17106Added error detection for ASL Fields that extend beyond the length 17107of the parent operation region (only if the length of the region 17108is known at compile time.) This includes fields that have a 17109minimum access width that is smaller than the parent region, and 17110individual field units that are partially or entirely beyond the 17111extent of the parent. 17112 17113 17114 17115------------------------------------------ 17116Summary of changes for this label: 04_27_01 17117 17118 ACPI CA Core Subsystem: 17119 17120Fixed a problem where the namespace mutex could be released at the 17121wrong time during execution of AcpiRemoveAddressSpaceHandler. 17122 17123Added optional thread ID output for debug traces, to simplify 17124debugging of multiple threads. Added context switch notification 17125when the debug code realizes that a different thread is now 17126executing ACPI code. 17127 17128Some additional external data types have been prefixed with the 17129string "ACPI_" for consistency. This may effect existing code. 17130The data types affected are the external callback typedefs - e.g., 17131 17132WALK_CALLBACK becomes ACPI_WALK_CALLBACK. 17133 17134 Linux: 17135 17136Fixed an issue with the OSL semaphore implementation where a 17137thread was waking up with an error from receiving a SIGCHLD 17138signal. 17139 17140Linux version of ACPI CA now uses the system C library for string 17141manipulation routines instead of a local implementation. 17142 17143Cleaned up comments and removed TBDs. 17144 17145 ASL Compiler, version X2017: 17146 17147Enhanced error detection and reporting for all file I/O 17148operations. 17149 17150 Documentation: 17151 17152Programmer Reference updated to version 1.06. 17153 17154 17155 17156------------------------------------------ 17157Summary of changes for this label: 04_13_01 17158 17159 ACPI CA Core Subsystem: 17160 17161Restructured support for BufferFields and RegionFields. 17162BankFields support is now fully operational. All known 32-bit 17163limitations on field sizes have been removed. Both BufferFields 17164and (Operation) RegionFields are now supported by the same field 17165management code. 17166 17167Resource support now supports QWORD address and IO resources. The 1716816/32/64 bit address structures and the Extended IRQ structure 17169have been changed to properly handle Source Resource strings. 17170 17171A ThreadId of -1 is now used to indicate a "mutex not acquired" 17172condition internally and must never be returned by AcpiOsThreadId. 17173This reserved value was changed from 0 since Unix systems allow a 17174thread ID of 0. 17175 17176Linux: 17177 17178Driver code reorganized to enhance portability 17179 17180Added a kernel configuration option to control ACPI_DEBUG 17181 17182Fixed the EC driver to honor _GLK. 17183 17184ASL Compiler, version X2016: 17185 17186Fixed support for the "FixedHw" keyword. Previously, the FixedHw 17187address space was set to 0, not 0x7f as it should be. 17188 17189 ------------------------------------------ 17190Summary of changes for this label: 03_13_01 17191 17192 ACPI CA Core Subsystem: 17193 17194During ACPI initialization, the _SB_._INI method is now run if 17195present. 17196 17197Notify handler fix - notifies are deferred until the parent method 17198completes execution. This fixes the "mutex already acquired" 17199issue seen occasionally. 17200 17201Part of the "implicit conversion" rules in ACPI 2.0 have been 17202found to cause compatibility problems with existing ASL/AML. The 17203convert "result-to-target-type" implementation has been removed 17204for stores to method Args and Locals. Source operand conversion 17205is still fully implemented. Possible changes to ACPI 2.0 17206specification pending. 17207 17208Fix to AcpiRsCalculatePciRoutingTableLength to return correct 17209length. 17210 17211Fix for compiler warnings for 64-bit compiles. 17212 17213 Linux: 17214 17215/proc output aligned for easier parsing. 17216 17217Release-version compile problem fixed. 17218 17219New kernel configuration options documented in Configure.help. 17220 17221IBM 600E - Fixed Sleep button may generate "Invalid <NULL> 17222context" message. 17223 17224 OSPM: 17225 17226Power resource driver integrated with bus manager. 17227 17228Fixed kernel fault during active cooling for thermal zones. 17229 17230Source Code: 17231 17232The source code tree has been restructured. 17233 17234 17235 17236------------------------------------------ 17237Summary of changes for this label: 03_02_01 17238 17239 Linux OS Services Layer (OSL): 17240 17241Major revision of all Linux-specific code. 17242 17243Modularized all ACPI-specific drivers. 17244 17245Added new thermal zone and power resource drivers. 17246 17247Revamped /proc interface (new functionality is under /proc/acpi). 17248 17249New kernel configuration options. 17250 17251 Linux known issues: 17252 17253New kernel configuration options not documented in Configure.help 17254yet. 17255 17256 17257Module dependencies not currently implemented. If used, they 17258should be loaded in this order: busmgr, power, ec, system, 17259processor, battery, ac_adapter, button, thermal. 17260 17261Modules will not load if CONFIG_MODVERSION is set. 17262 17263IBM 600E - entering S5 may reboot instead of shutting down. 17264 17265IBM 600E - Sleep button may generate "Invalid <NULL> context" 17266message. 17267 17268Some systems may fail with "execution mutex already acquired" 17269message. 17270 17271 ACPI CA Core Subsystem: 17272 17273Added a new OSL Interface, AcpiOsGetThreadId. This was required 17274for the deadlock detection code. Defined to return a non-zero, 32- 17275bit thread ID for the currently executing thread. May be a non- 17276zero constant integer on single-thread systems. 17277 17278Implemented deadlock detection for internal subsystem mutexes. We 17279may add conditional compilation for this code (debug only) later. 17280 17281ASL/AML Mutex object semantics are now fully supported. This 17282includes multiple acquires/releases by owner and support for the 17283 17284Mutex SyncLevel parameter. 17285 17286A new "Force Release" mechanism automatically frees all ASL 17287Mutexes that have been acquired but not released when a thread 17288exits the interpreter. This forces conformance to the ACPI spec 17289("All mutexes must be released when an invocation exits") and 17290prevents deadlocked ASL threads. This mechanism can be expanded 17291(later) to monitor other resource acquisitions if OEM ASL code 17292continues to misbehave (which it will). 17293 17294Several new ACPI exception codes have been added for the Mutex 17295support. 17296 17297Recursive method calls are now allowed and supported (the ACPI 17298spec does in fact allow recursive method calls.) The number of 17299recursive calls is subject to the restrictions imposed by the 17300SERIALIZED method keyword and SyncLevel (ACPI 2.0) method 17301parameter. 17302 17303Implemented support for the SyncLevel parameter for control 17304methods (ACPI 2.0 feature) 17305 17306Fixed a deadlock problem when multiple threads attempted to use 17307the interpreter. 17308 17309Fixed a problem where the string length of a String package 17310element was not always set in a package returned from 17311AcpiEvaluateObject. 17312 17313Fixed a problem where the length of a String package element was 17314not always included in the length of the overall package returned 17315from AcpiEvaluateObject. 17316 17317Added external interfaces (Acpi*) to the ACPI debug memory 17318manager. This manager keeps a list of all outstanding 17319allocations, and can therefore detect memory leaks and attempts to 17320free memory blocks more than once. Useful for code such as the 17321power manager, etc. May not be appropriate for device drivers. 17322Performance with the debug code enabled is slow. 17323 17324The ACPI Global Lock is now an optional hardware element. 17325 17326 ASL Compiler Version X2015: 17327 17328Integrated changes to allow the compiler to be generated on 17329multiple platforms. 17330 17331Linux makefile added to generate the compiler on Linux 17332 17333 Source Code: 17334 17335All platform-specific headers have been moved to their own 17336subdirectory, Include/Platform. 17337 17338New source file added, Interpreter/ammutex.c 17339 17340New header file, Include/acstruct.h 17341 17342 Documentation: 17343 17344The programmer reference has been updated for the following new 17345interfaces: AcpiOsGetThreadId AcpiAllocate AcpiCallocate AcpiFree 17346 17347 ------------------------------------------ 17348Summary of changes for this label: 02_08_01 17349 17350Core ACPI CA Subsystem: Fixed a problem where an error was 17351incorrectly returned if the return resource buffer was larger than 17352the actual data (in the resource interfaces). 17353 17354References to named objects within packages are resolved to the 17355 17356full pathname string before packages are returned directly (via 17357the AcpiEvaluateObject interface) or indirectly via the resource 17358interfaces. 17359 17360Linux OS Services Layer (OSL): 17361 17362Improved /proc battery interface. 17363 17364 17365Added C-state debugging output and other miscellaneous fixes. 17366 17367ASL Compiler Version X2014: 17368 17369All defined method arguments can now be used as local variables, 17370including the ones that are not actually passed in as parameters. 17371The compiler tracks initialization of the arguments and issues an 17372exception if they are used without prior assignment (just like 17373locals). 17374 17375The -o option now specifies a filename prefix that is used for all 17376output files, including the AML output file. Otherwise, the 17377default behavior is as follows: 1) the AML goes to the file 17378specified in the DSDT. 2) all other output files use the input 17379source filename as the base. 17380 17381 ------------------------------------------ 17382Summary of changes for this label: 01_25_01 17383 17384Core ACPI CA Subsystem: Restructured the implementation of object 17385store support within the interpreter. This includes support for 17386the Store operator as well as any ASL operators that include a 17387target operand. 17388 17389Partially implemented support for Implicit Result-to-Target 17390conversion. This is when a result object is converted on the fly 17391to the type of an existing target object. Completion of this 17392support is pending further analysis of the ACPI specification 17393concerning this matter. 17394 17395CPU-specific code has been removed from the subsystem (hardware 17396directory). 17397 17398New Power Management Timer functions added 17399 17400Linux OS Services Layer (OSL): Moved system state transition code 17401to the core, fixed it, and modified Linux OSL accordingly. 17402 17403Fixed C2 and C3 latency calculations. 17404 17405 17406We no longer use the compilation date for the version message on 17407initialization, but retrieve the version from AcpiGetSystemInfo(). 17408 17409Incorporated for fix Sony VAIO machines. 17410 17411Documentation: The Programmer Reference has been updated and 17412reformatted. 17413 17414 17415ASL Compiler: Version X2013: Fixed a problem where the line 17416numbering and error reporting could get out of sync in the 17417presence of multiple include files. 17418 17419 ------------------------------------------ 17420Summary of changes for this label: 01_15_01 17421 17422Core ACPI CA Subsystem: 17423 17424Implemented support for type conversions in the execution of the 17425ASL Concatenate operator (The second operand is converted to 17426match the type of the first operand before concatenation.) 17427 17428Support for implicit source operand conversion is partially 17429implemented. The ASL source operand types Integer, Buffer, and 17430String are freely interchangeable for most ASL operators and are 17431converted by the interpreter on the fly as required. Implicit 17432Target operand conversion (where the result is converted to the 17433target type before storing) is not yet implemented. 17434 17435Support for 32-bit and 64-bit BCD integers is implemented. 17436 17437Problem fixed where a field read on an aligned field could cause a 17438read past the end of the field. 17439 17440New exception, AE_AML_NO_RETURN_VALUE, is returned when a method 17441does not return a value, but the caller expects one. (The ASL 17442compiler flags this as a warning.) 17443 17444ASL Compiler: 17445 17446Version X2011: 174471. Static typechecking of all operands is implemented. This 17448prevents the use of invalid objects (such as using a Package where 17449an Integer is required) at compile time instead of at interpreter 17450run-time. 174512. The ASL source line is printed with ALL errors and warnings. 174523. Bug fix for source EOF without final linefeed. 174534. Debug option is split into a parse trace and a namespace trace. 174545. Namespace output option (-n) includes initial values for 17455integers and strings. 174566. Parse-only option added for quick syntax checking. 174577. Compiler checks for duplicate ACPI name declarations 17458 17459Version X2012: 174601. Relaxed typechecking to allow interchangeability between 17461strings, integers, and buffers. These types are now converted by 17462the interpreter at runtime. 174632. Compiler reports time taken by each internal subsystem in the 17464debug output file. 17465 17466 17467 ------------------------------------------ 17468Summary of changes for this label: 12_14_00 17469 17470ASL Compiler: 17471 17472This is the first official release of the compiler. Since the 17473compiler requires elements of the Core Subsystem, this label 17474synchronizes everything. 17475 17476------------------------------------------ 17477Summary of changes for this label: 12_08_00 17478 17479 17480Fixed a problem where named references within the ASL definition 17481of both OperationRegions and CreateXXXFields did not work 17482properly. The symptom was an AE_AML_OPERAND_TYPE during 17483initialization of the region/field. This is similar (but not 17484related internally) to the problem that was fixed in the last 17485label. 17486 17487Implemented both 32-bit and 64-bit support for the BCD ASL 17488functions ToBCD and FromBCD. 17489 17490Updated all legal headers to include "2000" in the copyright 17491years. 17492 17493 ------------------------------------------ 17494Summary of changes for this label: 12_01_00 17495 17496Fixed a problem where method invocations within the ASL definition 17497of both OperationRegions and CreateXXXFields did not work 17498properly. The symptom was an AE_AML_OPERAND_TYPE during 17499initialization of the region/field: 17500 17501 nsinit-0209: AE_AML_OPERAND_TYPE while getting region arguments 17502[DEBG] ammonad-0284: Exec_monadic2_r/Not: bad operand(s) 17503(0x3005) 17504 17505Fixed a problem where operators with more than one nested 17506subexpression would fail. The symptoms were varied, by mostly 17507AE_AML_OPERAND_TYPE errors. This was actually a rather serious 17508problem that has gone unnoticed until now. 17509 17510 Subtract (Add (1,2), Multiply (3,4)) 17511 17512Fixed a problem where AcpiGetHandle didn't quite get fixed in the 17513previous build (The prefix part of a relative path was handled 17514incorrectly). 17515 17516Fixed a problem where Operation Region initialization failed if 17517the operation region name was a "namepath" instead of a simple 17518"nameseg". Symptom was an AE_NO_OPERAND error. 17519 17520Fixed a problem where an assignment to a local variable via the 17521indirect RefOf mechanism only worked for the first such 17522assignment. Subsequent assignments were ignored. 17523 17524 ------------------------------------------ 17525Summary of changes for this label: 11_15_00 17526 17527ACPI 2.0 table support with backwards support for ACPI 1.0 and the 175280.71 extensions. Note: although we can read ACPI 2.0 BIOS tables, 17529the AML interpreter does NOT have support for the new 2.0 ASL 17530grammar terms at this time. 17531 17532All ACPI hardware access is via the GAS structures in the ACPI 2.0 17533FADT. 17534 17535All physical memory addresses across all platforms are now 64 bits 17536wide. Logical address width remains dependent on the platform 17537(i.e., "void *"). 17538 17539AcpiOsMapMemory interface changed to a 64-bit physical address. 17540 17541The AML interpreter integer size is now 64 bits, as per the ACPI 175422.0 specification. 17543 17544For backwards compatibility with ACPI 1.0, ACPI tables with a 17545revision number less than 2 use 32-bit integers only. 17546 17547Fixed a problem where the evaluation of OpRegion operands did not 17548always resolve them to numbers properly. 17549 17550------------------------------------------ 17551Summary of changes for this label: 10_20_00 17552 17553Fix for CBN_._STA issue. This fix will allow correct access to 17554CBN_ OpRegions when the _STA returns 0x8. 17555 17556Support to convert ACPI constants (Ones, Zeros, One) to actual 17557values before a package object is returned 17558 17559Fix for method call as predicate to if/while construct causing 17560incorrect if/while behavior 17561 17562Fix for Else block package lengths sometimes calculated wrong (if 17563block > 63 bytes) 17564 17565Fix for Processor object length field, was always zero 17566 17567Table load abort if FACP sanity check fails 17568 17569Fix for problem with Scope(name) if name already exists 17570 17571Warning emitted if a named object referenced cannot be found 17572(resolved) during method execution. 17573 17574 17575 17576 17577 17578------------------------------------------ 17579Summary of changes for this label: 9_29_00 17580 17581New table initialization interfaces: AcpiInitializeSubsystem no 17582longer has any parameters AcpiFindRootPointer - Find the RSDP (if 17583necessary) AcpiLoadTables (RSDP) - load all tables found at RSDP- 17584>RSDT Obsolete Interfaces AcpiLoadFirmwareTables - replaced by 17585AcpiLoadTables 17586 17587Note: These interface changes require changes to all existing OSDs 17588 17589The PCI_Config default address space handler is always installed 17590at the root namespace object. 17591 17592------------------------------------------- 17593Summary of changes for this label: 09_15_00 17594 17595The new initialization architecture is implemented. New 17596interfaces are: AcpiInitializeSubsystem (replaces AcpiInitialize) 17597AcpiEnableSubsystem Obsolete Interfaces: AcpiLoadNamespace 17598 17599(Namespace is automatically loaded when a table is loaded) 17600 17601The ACPI_OPERAND_OBJECT has been optimized to shrink its size from 1760252 bytes to 32 bytes. There is usually one of these for every 17603namespace object, so the memory savings is significant. 17604 17605Implemented just-in-time evaluation of the CreateField operators. 17606 17607Bug fixes for IA-64 support have been integrated. 17608 17609Additional code review comments have been implemented 17610 17611The so-called "third pass parse" has been replaced by a final walk 17612through the namespace to initialize all operation regions (address 17613spaces) and fields that have not yet been initialized during the 17614execution of the various _INI and REG methods. 17615 17616New file - namespace/nsinit.c 17617 17618------------------------------------------- 17619Summary of changes for this label: 09_01_00 17620 17621Namespace manager data structures have been reworked to change the 17622primary object from a table to a single object. This has 17623resulted in dynamic memory savings of 3X within the namespace and 176242X overall in the ACPI CA subsystem. 17625 17626Fixed problem where the call to AcpiEvFindPciRootBuses was 17627inadvertently left commented out. 17628 17629Reduced the warning count when generating the source with the GCC 17630compiler. 17631 17632Revision numbers added to each module header showing the 17633SourceSafe version of the file. Please refer to this version 17634number when giving us feedback or comments on individual modules. 17635 17636The main object types within the subsystem have been renamed to 17637clarify their purpose: 17638 17639ACPI_INTERNAL_OBJECT -> ACPI_OPERAND_OBJECT 17640ACPI_GENERIC_OP -> ACPI_PARSE_OBJECT 17641ACPI_NAME_TABLE_ENTRY -> ACPI_NAMESPACE_NODE 17642 17643NOTE: no changes to the initialization sequence are included in 17644this label. 17645 17646------------------------------------------- 17647Summary of changes for this label: 08_23_00 17648 17649Fixed problem where TerminateControlMethod was being called 17650multiple times per method 17651 17652Fixed debugger problem where single stepping caused a semaphore to 17653be oversignalled 17654 17655Improved performance through additional parse object caching - 17656added ACPI_EXTENDED_OP type 17657 17658------------------------------------------- 17659Summary of changes for this label: 08_10_00 17660 17661Parser/Interpreter integration: Eliminated the creation of 17662complete parse trees for ACPI tables and control methods. 17663Instead, parse subtrees are created and then deleted as soon as 17664they are processed (Either entered into the namespace or executed 17665by the interpreter). This reduces the use of dynamic kernel 17666memory significantly. (about 10X) 17667 17668Exception codes broken into classes and renumbered. Be sure to 17669recompile all code that includes acexcep.h. Hopefully we won't 17670have to renumber the codes again now that they are split into 17671classes (environment, programmer, AML code, ACPI table, and 17672internal). 17673 17674Fixed some additional alignment issues in the Resource Manager 17675subcomponent 17676 17677Implemented semaphore tracking in the AcpiExec utility, and fixed 17678several places where mutexes/semaphores were being unlocked 17679without a corresponding lock operation. There are no known 17680semaphore or mutex "leaks" at this time. 17681 17682Fixed the case where an ASL Return operator is used to return an 17683unnamed package. 17684 17685------------------------------------------- 17686Summary of changes for this label: 07_28_00 17687 17688Fixed a problem with the way addresses were calculated in 17689AcpiAmlReadFieldData() and AcpiAmlWriteFieldData(). This problem 17690manifested itself when a Field was created with WordAccess or 17691DwordAccess, but the field unit defined within the Field was less 17692 17693than a Word or Dword. 17694 17695Fixed a problem in AmlDumpOperands() module's loop to pull 17696operands off of the operand stack to display information. The 17697problem manifested itself as a TLB error on 64-bit systems when 17698accessing an operand stack with two or more operands. 17699 17700Fixed a problem with the PCI configuration space handlers where 17701context was getting confused between accesses. This required a 17702change to the generic address space handler and address space 17703setup definitions. Handlers now get both a global handler context 17704(this is the one passed in by the user when executing 17705AcpiInstallAddressSpaceHandler() and a specific region context 17706that is unique to each region (For example, the _ADR, _SEG and 17707_BBN values associated with a specific region). The generic 17708function definitions have changed to the following: 17709 17710typedef ACPI_STATUS (*ADDRESS_SPACE_HANDLER) ( UINT32 Function, 17711UINT32 Address, UINT32 BitWidth, UINT32 *Value, void 17712*HandlerContext, // This used to be void *Context void 17713*RegionContext); // This is an additional parameter 17714 17715typedef ACPI_STATUS (*ADDRESS_SPACE_SETUP) ( ACPI_HANDLE 17716RegionHandle, UINT32 Function, void *HandlerContext, void 17717**RegionContext); // This used to be **ReturnContext 17718 17719------------------------------------------- 17720Summary of changes for this label: 07_21_00 17721 17722Major file consolidation and rename. All files within the 17723interpreter have been renamed as well as most header files. This 17724was done to prevent collisions with existing files in the host 17725OSs -- filenames such as "config.h" and "global.h" seem to be 17726quite common. The VC project files have been updated. All 17727makefiles will require modification. 17728 17729The parser/interpreter integration continues in Phase 5 with the 17730implementation of a complete 2-pass parse (the AML is parsed 17731twice) for each table; This avoids the construction of a huge 17732parse tree and therefore reduces the amount of dynamic memory 17733required by the subsystem. Greater use of the parse object cache 17734means that performance is unaffected. 17735 17736Many comments from the two code reviews have been rolled in. 17737 17738The 64-bit alignment support is complete. 17739 17740------------------------------------------- 17741Summary of changes for this label: 06_30_00 17742 17743With a nod and a tip of the hat to the technology of yesteryear, 17744we've added support in the source code for 80 column output 17745devices. The code is now mostly constrained to 80 columns or 17746less to support environments and editors that 1) cannot display 17747or print more than 80 characters on a single line, and 2) cannot 17748disable line wrapping. 17749 17750A major restructuring of the namespace data structure has been 17751completed. The result is 1) cleaner and more 17752understandable/maintainable code, and 2) a significant reduction 17753in the dynamic memory requirement for each named ACPI object 17754(almost half). 17755 17756------------------------------------------- 17757Summary of changes for this label: 06_23_00 17758 17759Linux support has been added. In order to obtain approval to get 17760the ACPI CA subsystem into the Linux kernel, we've had to make 17761quite a few changes to the base subsystem that will affect all 17762users (all the changes are generic and OS- independent). The 17763effects of these global changes have been somewhat far reaching. 17764Files have been merged and/or renamed and interfaces have been 17765renamed. The major changes are described below. 17766 17767Osd* interfaces renamed to AcpiOs* to eliminate namespace 17768pollution/confusion within our target kernels. All OSD 17769interfaces must be modified to match the new naming convention. 17770 17771Files merged across the subsystem. A number of the smaller source 17772and header files have been merged to reduce the file count and 17773increase the density of the existing files. There are too many 17774to list here. In general, makefiles that call out individual 17775files will require rebuilding. 17776 17777Interpreter files renamed. All interpreter files now have the 17778prefix am* instead of ie* and is*. 17779 17780Header files renamed: The acapi.h file is now acpixf.h. The 17781acpiosd.h file is now acpiosxf.h. We are removing references to 17782the acronym "API" since it is somewhat windowsy. The new name is 17783"external interface" or xface or xf in the filenames.j 17784 17785 17786All manifest constants have been forced to upper case (some were 17787mixed case.) Also, the string "ACPI_" has been prepended to many 17788(not all) of the constants, typedefs, and structs. 17789 17790The globals "DebugLevel" and "DebugLayer" have been renamed 17791"AcpiDbgLevel" and "AcpiDbgLayer" respectively. 17792 17793All other globals within the subsystem are now prefixed with 17794"AcpiGbl_" Internal procedures within the subsystem are now 17795prefixed with "Acpi" (with only a few exceptions). The original 17796two-letter abbreviation for the subcomponent remains after "Acpi" 17797- for example, CmCallocate became AcpiCmCallocate. 17798 17799Added a source code translation/conversion utility. Used to 17800generate the Linux source code, it can be modified to generate 17801other types of source as well. Can also be used to cleanup 17802existing source by removing extraneous spaces and blank lines. 17803Found in tools/acpisrc/* 17804 17805OsdUnMapMemory was renamed to OsdUnmapMemory and then 17806AcpiOsUnmapMemory. (UnMap became Unmap). 17807 17808A "MaxUnits" parameter has been added to AcpiOsCreateSemaphore. 17809When set to one, this indicates that the caller wants to use the 17810 17811semaphore as a mutex, not a counting semaphore. ACPI CA uses 17812both types. However, implementers of this call may want to use 17813different OS primitives depending on the type of semaphore 17814requested. For example, some operating systems provide separate 17815 17816"mutex" and "semaphore" interfaces - where the mutex interface is 17817much faster because it doesn't have all the overhead of a full 17818semaphore implementation. 17819 17820Fixed a deadlock problem where a method that accesses the PCI 17821address space can block forever if it is the first access to the 17822space. 17823 17824------------------------------------------- 17825Summary of changes for this label: 06_02_00 17826 17827Support for environments that cannot handle unaligned data 17828accesses (e.g. firmware and OS environments devoid of alignment 17829handler technology namely SAL/EFI and the IA-64 Linux kernel) has 17830been added (via configurable macros) in these three areas: - 17831Transfer of data from the raw AML byte stream is done via byte 17832moves instead of word/dword/qword moves. - External objects are 17833aligned within the user buffer, including package elements (sub- 17834objects). - Conversion of name strings to UINT32 Acpi Names is now 17835done byte-wise. 17836 17837The Store operator was modified to mimic Microsoft's 17838implementation when storing to a Buffer Field. 17839 17840Added a check of the BM_STS bit before entering C3. 17841 17842The methods subdirectory has been obsoleted and removed. A new 17843file, cmeval.c subsumes the functionality. 17844 17845A 16-bit (DOS) version of AcpiExec has been developed. The 17846makefile is under the acpiexec directory. 17847