changes.txt revision 241973
1----------------------------------------
218 October 2012. Summary of changes for version 20121018:
3
4
51) ACPICA Kernel-resident Subsystem:
6
7Updated support for the ACPI 5.0 MPST table. Fixes some problems 
8introduced by late changes to the table as it was added to the ACPI 5.0 
9specification. Includes header, disassembler, and data table compiler 
10support as well as a new version of the MPST template.
11
12AcpiGetObjectInfo: Enhanced the device object support to include the ACPI 
135.0 _SUB method. Now calls _SUB in addition to the other PNP-related ID 
14methods: _HID, _CID, and _UID.
15
16Changed ACPI_DEVICE_ID to ACPI_PNP_DEVICE_ID. Also changed 
17ACPI_DEVICE_ID_LIST to ACPI_PNP_DEVICE_ID_LIST. These changes prevent 
18name collisions on hosts that reserve the *_DEVICE_ID (or *DeviceId) 
19names for their various drivers. Affects the AcpiGetObjectInfo external 
20interface, and other internal interfaces as well.
21
22Added and deployed a new macro for ACPI_NAME management: ACPI_MOVE_NAME. 
23This macro resolves to a simple 32-bit move of the 4-character ACPI_NAME 
24on machines that support non-aligned transfers. Optimizes for this case 
25rather than using a strncpy. With assistance from Zheng Lv.
26
27Resource Manager: Small fix for buffer size calculation. Fixed a one byte 
28error in the output buffer calculation. Feng Tang. ACPICA BZ 849.
29
30Added a new debug print message for AML mutex objects that are force-
31released. At control method termination, any currently acquired mutex 
32objects are force-released. Adds a new debug-only message for each one 
33that is released.
34
35Audited/updated all ACPICA return macros and the function debug depth 
36counter: 1) Ensure that all functions that use the various TRACE macros 
37also use the appropriate ACPICA return macros. 2) Ensure that all normal 
38return statements surround the return expression (value) with parens to 
39ensure consistency across the ACPICA code base. Guan Chao, Tang Feng, 
40Zheng Lv, Bob Moore. ACPICA Bugzilla 972.
41
42Global source code changes/maintenance: All extra lines at the start and 
43end of each source file have been removed for consistency. Also, within 
44comments, all new sentences start with a single space instead of a double 
45space, again for consistency across the code base.
46
47Example Code and Data Size: These are the sizes for the OS-independent 
48acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
49debug version of the code includes the debug output trace mechanism and 
50has a much larger code and data size.
51
52  Previous Release:
53    Non-Debug Version:  93.7K Code, 25.3K Data, 119.0K Total
54    Debug Version:     175.0K Code, 74.4K Data, 249.4K Total
55  Current Release:
56    Non-Debug Version:  93.9K Code, 25.2K Data, 119.1K Total
57    Debug Version:     175.5K Code, 74.5K Data, 250.0K Total
58
59
602) iASL Compiler/Disassembler and Tools:
61
62AcpiExec: Improved the algorithm used for memory leak/corruption 
63detection. Added some intelligence to the code that maintains the global 
64list of allocated memory. The list is now ordered by allocated memory 
65address, significantly improving performance. When running AcpiExec on 
66the ASLTS test suite, speed improvements of 3X to 5X are seen, depending 
67on the platform and/or the environment. Note, this performance 
68enhancement affects the AcpiExec utility only, not the kernel-resident 
69ACPICA code.
70
71Enhanced error reporting for invalid AML opcodes and bad ACPI_NAMEs. For 
72the disassembler, dump the 48 bytes surrounding the invalid opcode. Fix 
73incorrect table offset reported for invalid opcodes. Report the original 
7432-bit value for bad ACPI_NAMEs (as well as the repaired name.)
75
76Disassembler: Enhanced the -vt option to emit the binary table data in 
77hex format to assist with debugging.
78
79Fixed a potential filename buffer overflow in osunixdir.c. Increased the 
80size of file structure. Colin Ian King.
81
82----------------------------------------
8313 September 2012. Summary of changes for version 20120913:
84
85
861) ACPICA Kernel-resident Subsystem:
87
88ACPI 5.0: Added two new notify types for the Hardware Error Notification 
89Structure within the Hardware Error Source Table (HEST) table -- CMCI(5) 
90and 
91MCE(6).
92 
93Table Manager: Merged/removed duplicate code in the root table resize 
94functions. One function is external, the other is internal. Lv Zheng, 
95ACPICA 
96BZ 846.
97
98Makefiles: Completely removed the obsolete "Linux" makefiles under 
99acpica/generate/linux. These makefiles are obsolete and have been replaced 
100by 
101the generic unix makefiles under acpica/generate/unix.
102
103Makefiles: Ensure that binary files always copied properly. Minor rule 
104change 
105to ensure that the final binary output files are always copied up to the 
106appropriate binary directory (bin32 or bin64.)
107
108Example Code and Data Size: These are the sizes for the OS-independent 
109acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
110debug 
111version of the code includes the debug output trace mechanism and has a 
112much 
113larger code and data size.
114
115  Previous Release:
116    Non-Debug Version:  93.8K Code, 25.3K Data, 119.1K Total
117    Debug Version:     175.7K Code, 74.8K Data, 250.5K Total
118  Current Release:
119    Non-Debug Version:  93.7K Code, 25.3K Data, 119.0K Total
120    Debug Version:     175.0K Code, 74.4K Data, 249.4K Total
121
122
1232) iASL Compiler/Disassembler and Tools:
124
125Disassembler: Fixed a possible fault during the disassembly of resource 
126descriptors when a second parse is required because of the invocation of 
127external control methods within the table. With assistance from 
128adq@lidskialf.net. ACPICA BZ 976.
129
130iASL: Fixed a namepath optimization problem. An error can occur if the 
131parse 
132node that contains the namepath to be optimized does not have a parent 
133node 
134that is a named object. This change fixes the problem.
135
136iASL: Fixed a regression where the AML file is not deleted on errors. The 
137AML 
138output file should be deleted if there are any errors during the compiler. 
139The 
140only exception is if the -f (force output) option is used. ACPICA BZ 974.
141
142iASL: Added a feature to automatically increase internal line buffer 
143sizes. 
144Via realloc(), automatically increase the internal line buffer sizes as 
145necessary to support very long source code lines. The current version of 
146the 
147preprocessor requires a buffer long enough to contain full source code 
148lines. 
149This change increases the line buffer(s) if the input lines go beyond the 
150current buffer size. This eliminates errors that occurred when a source 
151code 
152line was longer than the buffer.
153
154iASL: Fixed a problem with constant folding in method declarations. The 
155SyncLevel term is a ByteConstExpr, and incorrect code would be generated 
156if a 
157Type3 opcode was used.
158
159Debugger: Improved command help support. For incorrect argument count, 
160display 
161full help for the command. For help command itself, allow an argument to 
162specify a command.
163
164Test Suites: Several bug fixes for the ASLTS suite reduces the number of 
165errors during execution of the suite. Guan Chao.
166
167----------------------------------------
16816 August 2012. Summary of changes for version 20120816:
169
170
1711) ACPICA Kernel-resident Subsystem:
172
173Removed all use of the deprecated _GTS and _BFS predefined methods. The 
174_GTS 
175(Going To Sleep) and _BFS (Back From Sleep) methods are essentially 
176deprecated and will probably be removed from the ACPI specification. 
177Windows 
178does not invoke them, and reportedly never will. The final nail in the 
179coffin 
180is that the ACPI specification states that these methods must be run with 
181interrupts off, which is not going to happen in a kernel interpreter. 
182Note: 
183Linux has removed all use of the methods also. It was discovered that 
184invoking these functions caused failures on some machines, probably 
185because 
186they were never tested since Windows does not call them. Affects two 
187external 
188interfaces, AcpiEnterSleepState and AcpiLeaveSleepStatePrep. Tang Feng. 
189ACPICA BZ 969.
190
191Implemented support for complex bit-packed buffers returned from the _PLD 
192(Physical Location of Device) predefined method. Adds a new external 
193interface, AcpiDecodePldBuffer that parses the buffer into a more usable C 
194structure. Note: C Bitfields cannot be used for this type of predefined 
195structure since the memory layout of individual bitfields is not defined 
196by 
197the C language. In addition, there are endian concerns where a compiler 
198will 
199change the bitfield ordering based on the machine type. The new ACPICA 
200interface eliminates these issues, and should be called after _PLD is 
201executed. ACPICA BZ 954.
202
203Implemented a change to allow a scope change to root (via "Scope (\)") 
204during 
205execution of module-level ASL code (code that is executed at table load 
206time.) Lin Ming.
207
208Added the Windows8/Server2012 string for the _OSI method. This change adds 
209a 
210new _OSI string, "Windows 2012" for both Windows 8 and Windows Server 
2112012.
212
213Added header support for the new ACPI tables DBG2 (Debug Port Table Type 
2142) 
215and CSRT (Core System Resource Table).
216
217Added struct header support for the _FDE, _GRT, _GTM, and _SRT predefined 
218names. This simplifies access to the buffers returned by these predefined 
219names. Adds a new file, include/acbuffer.h. ACPICA BZ 956.
220
221GPE support: Removed an extraneous parameter from the various low-level 
222internal GPE functions. Tang Feng.
223
224Removed the linux makefiles from the unix packages. The generate/linux 
225makefiles are obsolete and have been removed from the unix tarball release 
226packages. The replacement makefiles are under generate/unix, and there is 
227a 
228top-level makefile under the main acpica directory. ACPICA BZ 967, 912.
229
230Updates for Unix makefiles:
2311) Add -D_FORTIFY_SOURCE=2 for gcc generation. Arjan van de Ven.
2322) Update linker flags (move to end of command line) for AcpiExec utility. 
233Guan Chao.
234
235Split ACPICA initialization functions to new file, utxfinit.c. Split from 
236utxface.c to improve modularity and reduce file size.
237
238Example Code and Data Size: These are the sizes for the OS-independent 
239acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
240debug version of the code includes the debug output trace mechanism and 
241has a 
242much larger code and data size.
243
244  Previous Release:
245    Non-Debug Version:  93.5K Code, 25.3K Data, 118.8K Total
246    Debug Version:     173.7K Code, 74.0K Data, 247.7K Total
247  Current Release:
248    Non-Debug Version:  93.8K Code, 25.3K Data, 119.1K Total
249    Debug Version:     175.7K Code, 74.8K Data, 250.5K Total
250
251
2522) iASL Compiler/Disassembler and Tools:
253
254iASL: Fixed a problem with constant folding for fixed-length constant 
255expressions. The constant-folding code was not being invoked for constant 
256expressions that allow the use of type 3/4/5 opcodes to generate constants 
257for expressions such as ByteConstExpr, WordConstExpr, etc. This could 
258result 
259in the generation of invalid AML bytecode. ACPICA BZ 970.
260
261iASL: Fixed a generation issue on newer versions of Bison. Newer versions 
262apparently automatically emit some of the necessary externals. This change 
263handles these versions in order to eliminate generation warnings.
264
265Disassembler: Added support to decode the DBG2 and CSRT ACPI tables.
266
267Disassembler: Add support to decode _PLD buffers. The decoded buffer 
268appears 
269within comments in the output file.
270
271Debugger: Fixed a regression with the "Threads" command where 
272AE_BAD_PARAMETER was always returned.
273
274----------------------------------------
27511 July 2012. Summary of changes for version 20120711:
276
2771) ACPICA Kernel-resident Subsystem:
278
279Fixed a possible fault in the return package object repair code. Fixes a 
280problem that can occur when a lone package object is wrapped with an outer 
281package object in order to force conformance to the ACPI specification. 
282Can 
283affect these predefined names: _ALR, _MLS, _PSS, _TRT, _TSS, _PRT, _HPX, 
284_DLM, 
285_CSD, _PSD, _TSD.
286
287Removed code to disable/enable bus master arbitration (ARB_DIS bit in the 
288PM2_CNT register) in the ACPICA sleep/wake interfaces. Management of the 
289ARB_DIS bit must be implemented in the host-dependent C3 processor power 
290state 
291support. Note, ARB_DIS is obsolete and only applies to older chipsets, 
292both 
293Intel and other vendors. (for Intel: ICH4-M and earlier)
294
295This change removes the code to disable/enable bus master arbitration 
296during 
297suspend/resume. Use of the ARB_DIS bit in the optional PM2_CNT register 
298causes 
299resume problems on some machines. The change has been in use for over 
300seven 
301years within Linux.
302
303Implemented two new external interfaces to support host-directed dynamic 
304ACPI 
305table load and unload. They are intended to simplify the host 
306implementation 
307of hot-plug support:
308  AcpiLoadTable: Load an SSDT from a buffer into the namespace.
309  AcpiUnloadParentTable: Unload an SSDT via a named object owned by the 
310table.
311See the ACPICA reference for additional details. Adds one new file, 
312components/tables/tbxfload.c
313
314Implemented and deployed two new interfaces for errors and warnings that 
315are 
316known to be caused by BIOS/firmware issues:
317  AcpiBiosError: Prints "ACPI Firmware Error" message.
318  AcpiBiosWarning: Prints "ACPI Firmware Warning" message.
319Deployed these new interfaces in the ACPICA Table Manager code for ACPI 
320table 
321and FADT errors. Additional deployment to be completed as appropriate in 
322the 
323future. The associated conditional macros are ACPI_BIOS_ERROR and 
324ACPI_BIOS_WARNING. See the ACPICA reference for additional details. ACPICA 
325BZ 
326843.
327
328Implicit notify support: ensure that no memory allocation occurs within a 
329critical region. This fix moves a memory allocation outside of the time 
330that a 
331spinlock is held. Fixes issues on systems that do not allow this behavior. 
332Jung-uk Kim.
333
334Split exception code utilities and tables into a new file, 
335utilities/utexcep.c
336
337Example Code and Data Size: These are the sizes for the OS-independent 
338acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
339debug 
340version of the code includes the debug output trace mechanism and has a 
341much 
342larger code and data size.
343
344  Previous Release:
345    Non-Debug Version:  93.1K Code, 25.1K Data, 118.2K Total
346    Debug Version:     172.9K Code, 73.6K Data, 246.5K Total
347  Current Release:
348    Non-Debug Version:  93.5K Code, 25.3K Data, 118.8K Total
349    Debug Version:     173.7K Code, 74.0K Data, 247.7K Total
350
351
3522) iASL Compiler/Disassembler and Tools:
353
354iASL: Fixed a parser problem for hosts where EOF is defined as -1 instead 
355of 
3560. Jung-uk Kim.
357
358Debugger: Enhanced the "tables" command to emit additional information 
359about 
360the current set of ACPI tables, including the owner ID and flags decode.
361
362Debugger: Reimplemented the "unload" command to use the new 
363AcpiUnloadParentTable external interface. This command was disable 
364previously 
365due to need for an unload interface.
366
367AcpiHelp: Added a new option to decode ACPICA exception codes. The -e 
368option 
369will decode 16-bit hex status codes (ACPI_STATUS) to name strings.
370
371----------------------------------------
37220 June 2012. Summary of changes for version 20120620:
373
374
3751) ACPICA Kernel-resident Subsystem:
376
377Implemented support to expand the "implicit notify" feature to allow 
378multiple 
379devices to be notified by a single GPE. This feature automatically 
380generates a 
381runtime device notification in the absence of a BIOS-provided GPE control 
382method (_Lxx/_Exx) or a host-installed handler for the GPE. Implicit 
383notify is 
384provided by ACPICA for Windows compatibility, and is a workaround for BIOS 
385AML 
386code errors. See the description of the AcpiSetupGpeForWake interface in 
387the 
388APCICA reference. Bob Moore, Rafael Wysocki. ACPICA BZ 918.
389
390Changed some comments and internal function names to simplify and ensure 
391correctness of the Linux code translation. No functional changes.
392
393Example Code and Data Size: These are the sizes for the OS-independent 
394acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
395debug 
396version of the code includes the debug output trace mechanism and has a 
397much 
398larger code and data size.
399
400  Previous Release:
401    Non-Debug Version:  93.0K Code, 25.1K Data, 118.1K Total
402    Debug Version:     172.7K Code, 73.6K Data, 246.3K Total
403  Current Release:
404    Non-Debug Version:  93.1K Code, 25.1K Data, 118.2K Total
405    Debug Version:     172.9K Code, 73.6K Data, 246.5K Total
406
407
4082) iASL Compiler/Disassembler and Tools:
409
410Disassembler: Added support to emit short, commented descriptions for the 
411ACPI 
412predefined names in order to improve the readability of the disassembled 
413output. ACPICA BZ 959. Changes include:
414  1) Emit descriptions for all standard predefined names (_INI, _STA, 
415_PRW, 
416etc.)
417  2) Emit generic descriptions for the special names (_Exx, _Qxx, etc.)
418  3) Emit descriptions for the resource descriptor names (_MIN, _LEN, 
419etc.)
420
421AcpiSrc: Fixed several long-standing Linux code translation issues. 
422Argument 
423descriptions in function headers are now translated properly to lower case 
424and 
425underscores. ACPICA BZ 961. Also fixes translation problems such as these: 
426(old -> new)
427  i_aSL -> iASL
428  00-7_f -> 00-7F
429  16_k -> 16K
430  local_fADT -> local_FADT
431  execute_oSI -> execute_OSI
432
433iASL: Fixed a problem where null bytes were inadvertently emitted into 
434some 
435listing files.
436
437iASL: Added the existing debug options to the standard help screen. There 
438are 
439no longer two different help screens. ACPICA BZ 957.
440
441AcpiHelp: Fixed some typos in the various predefined name descriptions. 
442Also 
443expand some of the descriptions where appropriate.
444
445iASL: Fixed the -ot option (display compile times/statistics). Was not 
446working 
447properly for standard output; only worked for the debug file case.
448
449----------------------------------------
45018 May 2012. Summary of changes for version 20120518:
451
452
4531) ACPICA Core Subsystem:
454
455Added a new OSL interface, AcpiOsWaitEventsComplete. This interface is 
456defined 
457to block until asynchronous events such as notifies and GPEs have 
458completed. 
459Within ACPICA, it is only called before a notify or GPE handler is 
460removed/uninstalled. It also may be useful for the host OS within related 
461drivers such as the Embedded Controller driver. See the ACPICA reference 
462for 
463additional information. ACPICA BZ 868.
464
465ACPI Tables: Added a new error message for a possible overflow failure 
466during 
467the conversion of FADT 32-bit legacy register addresses to internal common 
46864-
469bit GAS structure representation. The GAS has a one-byte "bit length" 
470field, 
471thus limiting the register length to 255 bits. ACPICA BZ 953.
472
473Example Code and Data Size: These are the sizes for the OS-independent 
474acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
475debug 
476version of the code includes the debug output trace mechanism and has a 
477much 
478larger code and data size.
479
480  Previous Release:
481    Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
482    Debug Version:     172.6K Code, 73.4K Data, 246.0K Total
483  Current Release:
484    Non-Debug Version:  93.0K Code, 25.1K Data, 118.1K Total
485    Debug Version:     172.7K Code, 73.6K Data, 246.3K Total
486
487
4882) iASL Compiler/Disassembler and Tools:
489
490iASL: Added the ACPI 5.0 "PCC" keyword for use in the Register() ASL 
491macro. 
492This keyword was added late in the ACPI 5.0 release cycle and was not 
493implemented until now.
494
495Disassembler: Added support for Operation Region externals. Adds missing 
496support for operation regions that are defined in another table, and 
497referenced locally via a Field or BankField ASL operator. Now generates 
498the 
499correct External statement.
500
501Disassembler: Several additional fixes for the External() statement 
502generation 
503related to some ASL operators. Also, order the External() statements 
504alphabetically in the disassembler output. Fixes the External() generation 
505for 
506the Create* field, Alias, and Scope operators:
507 1) Create* buffer field operators - fix type mismatch warning on 
508disassembly
509 2) Alias - implement missing External support
510 3) Scope - fix to make sure all necessary externals are emitted.
511
512iASL: Improved pathname support. For include files, merge the prefix 
513pathname 
514with the file pathname and eliminate unnecessary components. Convert 
515backslashes in all pathnames to forward slashes, for readability. Include 
516file 
517pathname changes affect both #include and Include() type operators.
518
519iASL/DTC/Preprocessor: Gracefully handle early EOF. Handle an EOF at the 
520end 
521of a valid line by inserting a newline and then returning the EOF during 
522the 
523next call to GetNextLine. Prevents the line from being ignored due to EOF 
524condition.
525
526iASL: Implemented some changes to enhance the IDE support (-vi option.) 
527Error 
528and Warning messages are now correctly recognized for both the source code 
529browser and the global error and warning counts.
530
531----------------------------------------
53220 April 2012. Summary of changes for version 20120420:
533
534
5351) ACPICA Core Subsystem:
536
537Implemented support for multiple notify handlers. This change adds support 
538to 
539allow multiple system and device notify handlers on Device, Thermal Zone, 
540and 
541Processor objects. This can simplify the host OS notification 
542implementation. 
543Also re-worked and restructured the entire notify support code to simplify 
544handler installation, handler removal, notify event queuing, and notify 
545dispatch to handler(s). Note: there can still only be two global notify 
546handlers - one for system notifies and one for device notifies. There are 
547no 
548changes to the existing handler install/remove interfaces. Lin Ming, Bob 
549Moore, Rafael Wysocki.
550
551Fixed a regression in the package repair code where the object reference 
552count was calculated incorrectly. Regression was introduced in the commit 
553"Support to add Package wrappers".
554
555Fixed a couple possible memory leaks in the AML parser, in the error 
556recovery 
557path. Jesper Juhl, Lin Ming.
558
559Example Code and Data Size: These are the sizes for the OS-independent 
560acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
561debug version of the code includes the debug output trace mechanism and 
562has a 
563much larger code and data size.
564
565  Previous Release:
566    Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
567    Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
568  Current Release:
569    Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
570    Debug Version:     172.6K Code, 73.4K Data, 246.0K Total
571
572
5732) iASL Compiler/Disassembler and Tools:
574
575iASL: Fixed a problem with the resource descriptor support where the 
576length 
577of the StartDependentFn and StartDependentFnNoPrio descriptors were not 
578included in cumulative descriptor offset, resulting in incorrect values 
579for 
580resource tags within resource descriptors appearing after a 
581StartDependent* 
582descriptor. Reported by Petr Vandrovec. ACPICA BZ 949.
583
584iASL and Preprocessor: Implemented full support for the #line directive to 
585correctly track original source file line numbers through the .i 
586preprocessor 
587output file - for error and warning messages.
588
589iASL: Expand the allowable byte constants for address space IDs. 
590Previously, 
591the allowable range was 0x80-0xFF (user-defined spaces), now the range is 
5920x0A-0xFF to allow for custom and new IDs without changing the compiler.
593
594iASL: Add option to treat all warnings as errors (-we). ACPICA BZ 948.
595
596iASL: Add option to completely disable the preprocessor (-Pn).
597
598iASL: Now emit all error/warning messages to standard error (stderr) by 
599default (instead of the previous stdout).
600
601ASL Test Suite (ASLTS): Reduce iASL warnings due to use of Switch(). 
602Update 
603for resource descriptor offset fix above. Update/cleanup error output 
604routines. Enable and send iASL errors/warnings to an error logfile 
605(error.txt). Send all other iASL output to a logfile (compiler.txt). Fixed 
606several extraneous "unrecognized operator" messages.
607
608----------------------------------------
60920 March 2012. Summary of changes for version 20120320:
610
611
6121) ACPICA Core Subsystem:
613
614Enhanced the sleep/wake interfaces to optionally execute the _GTS method 
615(Going To Sleep) and the _BFS method (Back From Sleep). Windows apparently 
616does not execute these methods, and therefore these methods are often 
617untested. It has been seen on some systems where the execution of these 
618methods causes errors and also prevents the machine from entering S5. It 
619is 
620therefore suggested that host operating systems do not execute these 
621methods 
622by default. In the future, perhaps these methods can be optionally 
623executed 
624based on the age of the system and/or what is the newest version of 
625Windows 
626that the BIOS asks for via _OSI. Changed interfaces: AcpiEnterSleepState 
627and 
628AcpileaveSleepStatePrep. See the ACPICA reference and Linux BZ 13041. Lin 
629Ming.
630
631Fixed a problem where the length of the local/common FADT was set too 
632early. 
633The local FADT table length cannot be set to the common length until the 
634original length has been examined. There is code that checks the table 
635length 
636and sets various fields appropriately. This can affect older machines with 
637early FADT versions. For example, this can cause inadvertent writes to the 
638CST_CNT register. Julian Anastasov.
639
640Fixed a mapping issue related to a physical table override. Use the 
641deferred 
642mapping mechanism for tables loaded via the physical override OSL 
643interface. 
644This allows for early mapping before the virtual memory manager is 
645available. 
646Thomas Renninger, Bob Moore.
647
648Enhanced the automatic return-object repair code: Repair a common problem 
649with 
650predefined methods that are defined to return a variable-length Package of 
651sub-objects. If there is only one sub-object, some BIOS ASL code 
652mistakenly 
653simply returns the single object instead of a Package with one sub-object. 
654This new support will repair this error by wrapping a Package object 
655around 
656the original object, creating the correct and expected Package with one 
657sub-
658object. Names that can be repaired in this manner include: _ALR, _CSD, 
659_HPX, 
660_MLS, _PLD, _PRT, _PSS, _TRT, _TSS, _BCL, _DOD, _FIX, and _Sx. ACPICA BZ 
661939.
662
663Changed the exception code returned for invalid ACPI paths passed as 
664parameters to external interfaces such as AcpiEvaluateObject. Was 
665AE_BAD_PARAMETER, now is the more sensible AE_BAD_PATHNAME.
666
667Example Code and Data Size: These are the sizes for the OS-independent 
668acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
669debug 
670version of the code includes the debug output trace mechanism and has a 
671much 
672larger code and data size.
673
674  Previous Release:
675    Non-Debug Version:  93.0K Code, 25.0K Data, 118.0K Total
676    Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
677  Current Release:
678    Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
679    Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
680
681
6822) iASL Compiler/Disassembler and Tools:
683
684iASL: Added the infrastructure and initial implementation of a integrated 
685C-
686like preprocessor. This will simplify BIOS development process by 
687eliminating 
688the need for a separate preprocessing step during builds. On Windows, it 
689also 
690eliminates the need to install a separate C compiler. ACPICA BZ 761. Some 
691features including full #define() macro support are still under 
692development. 
693These preprocessor directives are supported:
694    #define
695    #elif
696    #else
697    #endif
698    #error
699    #if
700    #ifdef
701    #ifndef
702    #include
703    #pragma message
704    #undef
705    #warning
706In addition, these new command line options are supported:
707    -D <symbol> Define symbol for preprocessor use
708    -li         Create preprocessed output file (*.i)
709    -P          Preprocess only and create preprocessor output file (*.i)
710
711Table Compiler: Fixed a problem where the equals operator within an 
712expression 
713did not work properly.
714
715Updated iASL to use the current versions of Bison/Flex. Updated the 
716Windows 
717project file to invoke these tools from the standard location. ACPICA BZ 
718904. 
719Versions supported:
720    Flex for Windows:  V2.5.4
721    Bison for Windows: V2.4.1
722
723----------------------------------------
72415 February 2012. Summary of changes for version 20120215:
725
726
7271) ACPICA Core Subsystem:
728
729There have been some major changes to the sleep/wake support code, as 
730described below (a - e).
731
732a) The AcpiLeaveSleepState has been split into two interfaces, similar to 
733AcpiEnterSleepStatePrep and AcpiEnterSleepState. The new interface is 
734AcpiLeaveSleepStatePrep. This allows the host to perform actions between 
735the 
736time the _BFS method is called and the _WAK method is called. NOTE: all 
737hosts 
738must update their wake/resume code or else sleep/wake will not work 
739properly. 
740Rafael Wysocki.
741
742b) In AcpiLeaveSleepState, now enable all runtime GPEs before calling the 
743_WAK 
744method. Some machines require that the GPEs are enabled before the _WAK 
745method 
746is executed. Thomas Renninger.
747
748c) In AcpiLeaveSleepState, now always clear the WAK_STS (wake status) bit. 
749Some BIOS code assumes that WAK_STS will be cleared on resume and use it 
750to 
751determine whether the system is rebooting or resuming. Matthew Garrett.
752
753d) Move the invocations of _GTS (Going To Sleep) and _BFS (Back From 
754Sleep) to 
755match the ACPI specification requirement. Rafael Wysocki.
756
757e) Implemented full support for the ACPI 5.0 SleepStatus and SleepControl 
758registers within the V5 FADT. This support adds two new files: 
759hardware/hwesleep.c implements the support for the new registers. Moved 
760all 
761sleep/wake external interfaces to hardware/hwxfsleep.c.
762
763
764Added a new OSL interface for ACPI table overrides, 
765AcpiOsPhysicalTableOverride. This interface allows the host to override a 
766table via a physical address, instead of the logical address required by 
767AcpiOsTableOverride. This simplifies the host implementation. Initial 
768implementation by Thomas Renninger. The ACPICA implementation creates a 
769single 
770shared function for table overrides that attempts both a logical and a 
771physical override.
772
773Expanded the OSL memory read/write interfaces to 64-bit data 
774(AcpiOsReadMemory, AcpiOsWriteMemory.) This enables full 64-bit memory 
775transfer support for GAS register structures passed to AcpiRead and 
776AcpiWrite.
777
778Implemented the ACPI_REDUCED_HARDWARE option to allow the creation of a 
779custom 
780build of ACPICA that supports only the ACPI 5.0 reduced hardware (SoC) 
781model. 
782See the ACPICA reference for details. ACPICA BZ 942. This option removes 
783about 
78410% of the code and 5% of the static data, and the following hardware ACPI 
785features become unavailable:
786    PM Event and Control registers
787    SCI interrupt (and handler)
788    Fixed Events
789    General Purpose Events (GPEs)
790    Global Lock
791    ACPI PM timer
792    FACS table (Waking vectors and Global Lock)
793
794Updated the unix tarball directory structure to match the ACPICA git 
795source 
796tree. This ensures that the generic unix makefiles work properly (in 
797generate/unix).  Also updated the Linux makefiles to match. ACPICA BZ 867.
798
799Updated the return value of the _REV predefined method to integer value 5 
800to 
801reflect ACPI 5.0 support.
802
803Moved the external ACPI PM timer interface prototypes to the public 
804acpixf.h 
805file where they belong.
806
807Example Code and Data Size: These are the sizes for the OS-independent 
808acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
809debug 
810version of the code includes the debug output trace mechanism and has a 
811much 
812larger code and data size.
813
814  Previous Release:
815    Non-Debug Version:  92.8K Code, 24.9K Data, 117.7K Total
816    Debug Version:     171.7K Code, 72.9K Data, 244.5K Total
817  Current Release:
818    Non-Debug Version:  93.0K Code, 25.0K Data, 118.0K Total
819    Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
820
821
8222) iASL Compiler/Disassembler and Tools:
823
824Disassembler: Fixed a problem with the new ACPI 5.0 serial resource 
825descriptors (I2C, SPI, UART) where the resource produce/consumer bit was 
826incorrectly displayed.
827
828AcpiHelp: Add display of ACPI/PNP device IDs that are defined in the ACPI 
829specification.
830
831----------------------------------------
83211 January 2012. Summary of changes for version 20120111:
833
834
8351) ACPICA Core Subsystem:
836
837Implemented a new mechanism to allow host device drivers to check for 
838address 
839range conflicts with ACPI Operation Regions. Both SystemMemory and 
840SystemIO 
841address spaces are supported. A new external interface, 
842AcpiCheckAddressRange, 
843allows drivers to check an address range against the ACPI namespace. See 
844the 
845ACPICA reference for additional details. Adds one new file, 
846utilities/utaddress.c. Lin Ming, Bob Moore.
847
848Fixed several issues with the ACPI 5.0 FADT support: Add the sleep Control 
849and 
850Status registers, update the ACPI 5.0 flags, and update internal data 
851structures to handle an FADT larger than 256 bytes. The size of the ACPI 
8525.0 
853FADT is 268 bytes.
854
855Updated all ACPICA copyrights and signons to 2012. Added the 2012 
856copyright to 
857all module headers and signons, including the standard Linux header. This 
858affects virtually every file in the ACPICA core subsystem, iASL compiler, 
859and 
860all ACPICA utilities.
861
862Example Code and Data Size: These are the sizes for the OS-independent 
863acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
864debug 
865version of the code includes the debug output trace mechanism and has a 
866much 
867larger code and data size.
868
869  Previous Release:
870    Non-Debug Version:  92.3K Code, 24.9K Data, 117.2K Total
871    Debug Version:     170.8K Code, 72.6K Data, 243.4K Total
872  Current Release:
873    Non-Debug Version:  92.8K Code, 24.9K Data, 117.7K Total
874    Debug Version:     171.7K Code, 72.9K Data, 244.5K Total
875
876
8772) iASL Compiler/Disassembler and Tools:
878
879Disassembler: fixed a problem with the automatic resource tag generation 
880support. Fixes a problem where the resource tags are inadvertently not 
881constructed if the table being disassembled contains external references 
882to 
883control methods. Moved the actual construction of the tags to after the 
884final 
885namespace is constructed (after 2nd parse is invoked due to external 
886control 
887method references.) ACPICA BZ 941.
888
889Table Compiler: Make all "generic" operators caseless. These are the 
890operators 
891like UINT8, String, etc. Making these caseless improves ease-of-use. 
892ACPICA BZ 
893934.
894
895----------------------------------------
89623 November 2011. Summary of changes for version 20111123:
897
8980) ACPI 5.0 Support:
899
900This release contains full support for the ACPI 5.0 specification, as 
901summarized below.
902
903Reduced Hardware Support:
904-------------------------
905
906This support allows for ACPI systems without the usual ACPI hardware. This 
907support is enabled by a flag in the revision 5 FADT. If it is set, ACPICA 
908will 
909not attempt to initialize or use any of the usual ACPI hardware. Note, 
910when 
911this flag is set, all of the following ACPI hardware is assumed to be not 
912present and is not initialized or accessed:
913
914    General Purpose Events (GPEs)
915    Fixed Events (PM1a/PM1b and PM Control)
916    Power Management Timer and Console Buttons (power/sleep)
917    Real-time Clock Alarm
918    Global Lock
919    System Control Interrupt (SCI)
920    The FACS is assumed to be non-existent
921
922ACPI Tables:
923------------
924
925All new tables and updates to existing tables are fully supported in the 
926ACPICA headers (for use by device drivers), the disassembler, and the iASL 
927Data Table Compiler. ACPI 5.0 defines these new tables:
928
929    BGRT        /* Boot Graphics Resource Table */
930    DRTM        /* Dynamic Root of Trust for Measurement table */
931    FPDT        /* Firmware Performance Data Table */
932    GTDT        /* Generic Timer Description Table */
933    MPST        /* Memory Power State Table */
934    PCCT        /* Platform Communications Channel Table */
935    PMTT        /* Platform Memory Topology Table */
936    RASF        /* RAS Feature table */
937
938Operation Regions/SpaceIDs:
939---------------------------
940
941All new operation regions are fully supported by the iASL compiler, the 
942disassembler, and the ACPICA runtime code (for dispatch to region 
943handlers.) 
944The new operation region Space IDs are:
945
946    GeneralPurposeIo
947    GenericSerialBus
948
949Resource Descriptors:
950---------------------
951
952All new ASL resource descriptors are fully supported by the iASL compiler, 
953the 
954ASL/AML disassembler, and the ACPICA runtime Resource Manager code 
955(including 
956all new predefined resource tags). New descriptors are:
957
958    FixedDma
959    GpioIo
960    GpioInt
961    I2cSerialBus
962    SpiSerialBus
963    UartSerialBus
964
965ASL/AML Operators, New and Modified:
966------------------------------------
967
968One new operator is added, the Connection operator, which is used to 
969associate 
970a GeneralPurposeIo or GenericSerialBus resource descriptor with individual 
971field objects within an operation region. Several new protocols are 
972associated 
973with the AccessAs operator. All are fully supported by the iASL compiler, 
974disassembler, and runtime ACPICA AML interpreter:
975
976    Connection                      // Declare Field Connection attributes
977    AccessAs: AttribBytes (n)           // Read/Write N-Bytes Protocol
978    AccessAs: AttribRawBytes (n)        // Raw Read/Write N-Bytes Protocol
979    AccessAs: AttribRawProcessBytes (n) // Raw Process Call Protocol
980    RawDataBuffer                       // Data type for Vendor Data 
981fields
982
983Predefined ASL/AML Objects:
984---------------------------
985
986All new predefined objects/control-methods are supported by the iASL 
987compiler 
988and the ACPICA runtime validation/repair (arguments and return values.) 
989New 
990predefined names include the following:
991
992Standard Predefined Names (Objects or Control Methods):
993    _AEI, _CLS, _CPC, _CWS, _DEP,
994    _DLM, _EVT, _GCP, _CRT, _GWS,
995    _HRV, _PRE, _PSE, _SRT, _SUB.
996
997Resource Tags (Names used to access individual fields within resource 
998descriptors):
999    _DBT, _DPL, _DRS, _END, _FLC,
1000    _IOR, _LIN, _MOD, _PAR, _PHA,
1001    _PIN, _PPI, _POL, _RXL, _SLV,
1002    _SPE, _STB, _TXL, _VEN.
1003
1004ACPICA External Interfaces:
1005---------------------------
1006
1007Several new interfaces have been defined for use by ACPI-related device 
1008drivers and other host OS services:
1009
1010AcpiAcquireMutex and AcpiReleaseMutex: These interfaces allow the host OS 
1011to 
1012acquire and release AML mutexes that are defined in the DSDT/SSDT tables 
1013provided by the BIOS. They are intended to be used in conjunction with the 
1014ACPI 5.0 _DLM (Device Lock Method) in order to provide transaction-level 
1015mutual exclusion with the AML code/interpreter.
1016
1017AcpiGetEventResources: Returns the (formatted) resource descriptors as 
1018defined 
1019by the ACPI 5.0 _AEI object (ACPI Event Information).  This object 
1020provides 
1021resource descriptors associated with hardware-reduced platform events, 
1022similar 
1023to the AcpiGetCurrentResources interface.
1024
1025Operation Region Handlers: For General Purpose IO and Generic Serial Bus 
1026operation regions, information about the Connection() object and any 
1027optional 
1028length information is passed to the region handler within the Context 
1029parameter.
1030
1031AcpiBufferToResource: This interface converts a raw AML buffer containing 
1032a 
1033resource template or resource descriptor to the ACPI_RESOURCE internal 
1034format 
1035suitable for use by device drivers. Can be used by an operation region 
1036handler 
1037to convert the Connection() buffer object into a ACPI_RESOURCE.
1038
1039Miscellaneous/Tools/TestSuites: 
1040-------------------------------
1041
1042Support for extended _HID names (Four alpha characters instead of three).
1043Support for ACPI 5.0 features in the AcpiExec and AcpiHelp utilities.
1044Support for ACPI 5.0 features in the ASLTS test suite.
1045Fully updated documentation (ACPICA and iASL reference documents.)
1046
1047ACPI Table Definition Language:
1048-------------------------------
1049
1050Support for this language was implemented and released as a subsystem of 
1051the 
1052iASL compiler in 2010. (See the iASL compiler User Guide.)
1053
1054
1055Non-ACPI 5.0 changes for this release:
1056--------------------------------------
1057
10581) ACPICA Core Subsystem:
1059
1060Fix a problem with operation region declarations where a failure can occur 
1061if 
1062the region name and an argument that evaluates to an object (such as the 
1063region address) are in different namespace scopes. Lin Ming, ACPICA BZ 
1064937.
1065
1066Do not abort an ACPI table load if an invalid space ID is found within. 
1067This 
1068will be caught later if the offending method is executed. ACPICA BZ 925.
1069
1070Fixed an issue with the FFixedHW space ID where the ID was not always 
1071recognized properly (Both ACPICA and iASL). ACPICA BZ 926.
1072
1073Fixed a problem with the 32-bit generation of the unix-specific OSL 
1074(osunixxf.c). Lin Ming, ACPICA BZ 936.
1075
1076Several changes made to enable generation with the GCC 4.6 compiler. 
1077ACPICA BZ 
1078935.
1079
1080New error messages: Unsupported I/O requests (not 8/16/32 bit), and 
1081Index/Bank 
1082field registers out-of-range.
1083
10842) iASL Compiler/Disassembler and Tools:
1085
1086iASL: Implemented the __PATH__ operator, which returns the full pathname 
1087of 
1088the current source file.
1089
1090AcpiHelp: Automatically display expanded keyword information for all ASL 
1091operators.
1092
1093Debugger: Add "Template" command to disassemble/dump resource template 
1094buffers.
1095
1096Added a new master script to generate and execute the ASLTS test suite. 
1097Automatically handles 32- and 64-bit generation. See tests/aslts.sh
1098
1099iASL: Fix problem with listing generation during processing of the 
1100Switch() 
1101operator where AML listing was disabled until the entire Switch block was 
1102completed.
1103
1104iASL: Improve support for semicolon statement terminators. Fix "invalid 
1105character" message for some cases when the semicolon is used. Semicolons 
1106are 
1107now allowed after every <Term> grammar element. ACPICA BZ 927.
1108
1109iASL: Fixed some possible aliasing warnings during generation. ACPICA BZ 
1110923.
1111
1112Disassembler: Fix problem with disassembly of the DataTableRegion operator 
1113where an inadvertent "Unhandled deferred opcode" message could be 
1114generated.
1115
11163) Example Code and Data Size
1117
1118These are the sizes for the OS-independent acpica.lib produced by the 
1119Microsoft Visual C++ 9.0 32-bit compiler. The debug version of the code 
1120includes the debug output trace mechanism and has a much larger code and 
1121data 
1122size.
1123
1124  Previous Release:
1125    Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
1126    Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
1127  Current Release:
1128    Non-Debug Version:  92.3K Code, 24.9K Data, 117.2K Total
1129    Debug Version:     170.8K Code, 72.6K Data, 243.4K Total
1130
1131----------------------------------------
113222 September 2011. Summary of changes for version 20110922:
1133
11340) ACPI 5.0 News:
1135
1136Support for ACPI 5.0 in ACPICA has been underway for several months and 
1137will 
1138be released at the same time that ACPI 5.0 is officially released.
1139
1140The ACPI 5.0 specification is on track for release in the next few months.
1141 
11421) ACPICA Core Subsystem:
1143
1144Fixed a problem where the maximum sleep time for the Sleep() operator was 
1145intended to be limited to two seconds, but was inadvertently limited to 20 
1146seconds instead.
1147
1148Linux and Unix makefiles: Added header file dependencies to ensure correct 
1149generation of ACPICA core code and utilities. Also simplified the 
1150makefiles 
1151considerably through the use of the vpath variable to specify search 
1152paths. 
1153ACPICA BZ 924.
1154
11552) iASL Compiler/Disassembler and Tools:
1156
1157iASL: Implemented support to check the access length for all fields 
1158created to 
1159access named Resource Descriptor fields. For example, if a resource field 
1160is 
1161defined to be two bits, a warning is issued if a CreateXxxxField() is used 
1162with an incorrect bit length. This is implemented for all current resource 
1163descriptor names. ACPICA BZ 930.
1164  
1165Disassembler: Fixed a byte ordering problem with the output of 24-bit and 
116656-
1167bit integers.
1168
1169iASL: Fixed a couple of issues associated with variable-length package 
1170objects. 1) properly handle constants like One, Ones, Zero -- do not make 
1171a 
1172VAR_PACKAGE when these are used as a package length. 2) Allow the 
1173VAR_PACKAGE 
1174opcode (in addition to PACKAGE) when validating object types for 
1175predefined 
1176names.
1177
1178iASL: Emit statistics for all output files (instead of just the ASL input 
1179and 
1180AML output). Includes listings, hex files, etc.
1181
1182iASL: Added -G option to the table compiler to allow the compilation of 
1183custom 
1184ACPI tables. The only part of a table that is required is the standard 36-
1185byte 
1186ACPI header.
1187
1188AcpiXtract: Ported to the standard ACPICA environment (with ACPICA 
1189headers), 
1190which also adds correct 64-bit support. Also, now all output filenames are 
1191completely lower case.
1192
1193AcpiExec: Ignore any non-AML tables (tables other than DSDT or SSDT) when 
1194loading table files. A warning is issued for any such tables. The only 
1195exception is an FADT. This also fixes a possible fault when attempting to 
1196load 
1197non-AML tables. ACPICA BZ 932.
1198
1199AcpiHelp: Added the AccessAs and Offset operators. Fixed a problem where a 
1200missing table terminator could cause a fault when using the -p option.
1201
1202AcpiSrc: Fixed a possible divide-by-zero fault when generating file 
1203statistics.
1204
12053) Example Code and Data Size
1206
1207These are the sizes for the OS-independent acpica.lib produced by the 
1208Microsoft Visual C++ 9.0 32-bit compiler. The debug version of the code 
1209includes the debug output trace mechanism and has a much larger code and 
1210data 
1211size.
1212
1213  Previous Release (VC 9.0):
1214    Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
1215    Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
1216  Current Release (VC 9.0):
1217    Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
1218    Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
1219
1220
1221----------------------------------------
122223 June 2011. Summary of changes for version 20110623:
1223
12241) ACPI CA Core Subsystem:
1225
1226Updated the predefined name repair mechanism to not attempt repair of a 
1227_TSS 
1228return object if a _PSS object is present. We can only sort the _TSS 
1229return 
1230package if there is no _PSS within the same scope. This is because if _PSS 
1231is 
1232present, the ACPI specification dictates that the _TSS Power Dissipation 
1233field 
1234is to be ignored, and therefore some BIOSs leave garbage values in the 
1235_TSS 
1236Power field(s). In this case, it is best to just return the _TSS package 
1237as-
1238is. Reported by, and fixed with assistance from Fenghua Yu.
1239
1240Added an option to globally disable the control method return value 
1241validation 
1242and repair. This runtime option can be used to disable return value repair 
1243if 
1244this is causing a problem on a particular machine. Also added an option to 
1245AcpiExec (-dr) to set this disable flag.
1246
1247All makefiles and project files: Major changes to improve generation of 
1248ACPICA 
1249tools. ACPICA BZ 912:
1250    Reduce default optimization levels to improve compatibility
1251    For Linux, add strict-aliasing=0 for gcc 4
1252    Cleanup and simplify use of command line defines
1253    Cleanup multithread library support
1254    Improve usage messages
1255
1256Linux-specific header: update handling of THREAD_ID and pthread. For the 
125732-
1258bit case, improve casting to eliminate possible warnings, especially with 
1259the 
1260acpica tools.
1261
1262Example Code and Data Size: These are the sizes for the OS-independent 
1263acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1264debug 
1265version of the code includes the debug output trace mechanism and has a 
1266much 
1267larger code and data size.
1268
1269  Previous Release (VC 9.0):
1270    Non-Debug Version:  90.1K Code, 23.9K Data, 114.0K Total
1271    Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
1272  Current Release (VC 9.0):
1273    Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
1274    Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
1275
12762) iASL Compiler/Disassembler and Tools:
1277
1278With this release, a new utility named "acpihelp" has been added to the 
1279ACPICA 
1280package. This utility summarizes the ACPI specification chapters for the 
1281ASL 
1282and AML languages. It generates under Linux/Unix as well as Windows, and 
1283provides the following functionality:
1284    Find/display ASL operator(s) -- with description and syntax.
1285    Find/display ASL keyword(s) -- with exact spelling and descriptions.
1286    Find/display ACPI predefined name(s) -- with description, number
1287        of arguments, and the return value data type.
1288    Find/display AML opcode name(s) -- with opcode, arguments, and 
1289grammar.
1290    Decode/display AML opcode -- with opcode name, arguments, and grammar.
1291
1292Service Layers: Make multi-thread support configurable. Conditionally 
1293compile 
1294the multi-thread support so that threading libraries will not be linked if 
1295not 
1296necessary. The only tool that requires multi-thread support is AcpiExec.
1297
1298iASL: Update yyerrror/AslCompilerError for "const" errors. Newer versions 
1299of 
1300Bison appear to want the interface to yyerror to be a const char * (or at 
1301least this is a problem when generating iASL on some systems.) ACPICA BZ 
1302923 
1303Pierre Lejeune.
1304
1305Tools: Fix for systems where O_BINARY is not defined. Only used for 
1306Windows 
1307versions of the tools.
1308
1309----------------------------------------
131027 May 2011. Summary of changes for version 20110527:
1311
13121) ACPI CA Core Subsystem:
1313
1314ASL Load() operator: Reinstate most restrictions on the incoming ACPI 
1315table 
1316signature. Now, only allow SSDT, OEMx, and a null signature. History:
1317    1) Originally, we checked the table signature for "SSDT" or "PSDT".
1318       (PSDT is now obsolete.)
1319    2) We added support for OEMx tables, signature "OEM" plus a fourth
1320       "don't care" character.
1321    3) Valid tables were encountered with a null signature, so we just
1322       gave up on validating the signature, (05/2008).
1323    4) We encountered non-AML tables such as the MADT, which caused
1324       interpreter errors and kernel faults. So now, we once again allow
1325       only SSDT, OEMx, and now, also a null signature. (05/2011).
1326
1327Added the missing _TDL predefined name to the global name list in order to 
1328enable validation. Affects both the core ACPICA code and the iASL 
1329compiler.
1330
1331Example Code and Data Size: These are the sizes for the OS-independent 
1332acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1333debug 
1334version of the code includes the debug output trace mechanism and has a 
1335much 
1336larger code and data size.
1337
1338  Previous Release (VC 9.0):
1339    Non-Debug Version:  90.0K Code, 23.8K Data, 113.8K Total
1340    Debug Version:     164.5K Code, 68.0K Data, 232.5K Total
1341  Current Release (VC 9.0):
1342    Non-Debug Version:  90.1K Code, 23.9K Data, 114.0K Total
1343    Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
1344
13452) iASL Compiler/Disassembler and Tools:
1346
1347Debugger/AcpiExec: Implemented support for "complex" method arguments on 
1348the 
1349debugger command line. This adds support beyond simple integers -- 
1350including 
1351Strings, Buffers, and Packages. Includes support for nested packages. 
1352Increased the default command line buffer size to accommodate these 
1353arguments. 
1354See the ACPICA reference for details and syntax. ACPICA BZ 917.
1355 
1356Debugger/AcpiExec: Implemented support for "default" method arguments for 
1357the 
1358Execute/Debug command. Now, the debugger will always invoke a control 
1359method 
1360with the required number of arguments -- even if the command line 
1361specifies 
1362none or insufficient arguments. It uses default integer values for any 
1363missing 
1364arguments. Also fixes a bug where only six method arguments maximum were 
1365supported instead of the required seven.
1366
1367Debugger/AcpiExec: Add a maximum buffer length parameter to AcpiOsGetLine 
1368and 
1369also return status in order to prevent buffer overruns. See the ACPICA 
1370reference for details and syntax. ACPICA BZ 921
1371
1372iASL: Cleaned up support for Berkeley yacc. A general cleanup of code and 
1373makefiles to simplify support for the two different but similar parser 
1374generators, bison and yacc.
1375
1376Updated the generic unix makefile for gcc 4. The default gcc version is 
1377now 
1378expected to be 4 or greater, since options specific to gcc 4 are used.
1379
1380----------------------------------------
138113 April 2011. Summary of changes for version 20110413:
1382
13831) ACPI CA Core Subsystem:
1384
1385Implemented support to execute a so-called "orphan" _REG method under the 
1386EC 
1387device. This change will force the execution of a _REG method underneath 
1388the 
1389EC 
1390device even if there is no corresponding operation region of type 
1391EmbeddedControl. Fixes a problem seen on some machines and apparently is 
1392compatible with Windows behavior. ACPICA BZ 875.
1393
1394Added more predefined methods that are eligible for automatic NULL package 
1395element removal. This change adds another group of predefined names to the 
1396list 
1397of names that can be repaired by having NULL package elements dynamically 
1398removed. This group are those methods that return a single variable-length 
1399package containing simple data types such as integers, buffers, strings. 
1400This 
1401includes: _ALx, _BCL, _CID,_ DOD, _EDL, _FIX, _PCL, _PLD, _PMD, _PRx, 
1402_PSL, 
1403_Sx, 
1404and _TZD. ACPICA BZ 914.
1405
1406Split and segregated all internal global lock functions to a new file, 
1407evglock.c.
1408
1409Updated internal address SpaceID for DataTable regions. Moved this 
1410internal 
1411space 
1412id in preparation for ACPI 5.0 changes that will include some new space 
1413IDs. 
1414This 
1415change should not affect user/host code.
1416
1417Example Code and Data Size: These are the sizes for the OS-independent 
1418acpica.lib 
1419produced by the Microsoft Visual C++ 9.0 32-bit compiler. The debug 
1420version of 
1421the code includes the debug output trace mechanism and has a much larger 
1422code 
1423and 
1424data size.
1425
1426  Previous Release (VC 9.0):
1427    Non-Debug Version:  89.8K Code, 23.8K Data, 113.6K Total
1428    Debug Version:     164.2K Code, 67.9K Data, 232.1K Total
1429  Current Release (VC 9.0):
1430    Non-Debug Version:  90.0K Code, 23.8K Data, 113.8K Total
1431    Debug Version:     164.5K Code, 68.0K Data, 232.5K Total
1432
14332) iASL Compiler/Disassembler and Tools:
1434
1435iASL/DTC: Major update for new grammar features. Allow generic data types 
1436in 
1437custom ACPI tables. Field names are now optional. Any line can be split to 
1438multiple lines using the continuation char (\). Large buffers now use 
1439line-
1440continuation character(s) and no colon on the continuation lines. See the 
1441grammar 
1442update in the iASL compiler reference. ACPI BZ 910,911. Lin Ming, Bob 
1443Moore.
1444
1445iASL: Mark ASL "Return()" and the simple "Return" as "Null" return 
1446statements. 
1447Since the parser stuffs a "zero" as the return value for these statements 
1448(due 
1449to 
1450the underlying AML grammar), they were seen as "return with value" by the 
1451iASL 
1452semantic checking. They are now seen correctly as "null" return 
1453statements.
1454
1455iASL: Check if a_REG declaration has a corresponding Operation Region. 
1456Adds a 
1457check for each _REG to ensure that there is in fact a corresponding 
1458operation 
1459region declaration in the same scope. If not, the _REG method is not very 
1460useful 
1461since it probably won't be executed. ACPICA BZ 915.
1462
1463iASL/DTC: Finish support for expression evaluation. Added a new expression 
1464parser 
1465that implements c-style operator precedence and parenthesization. ACPICA 
1466bugzilla 
1467908.
1468
1469Disassembler/DTC: Remove support for () and <> style comments in data 
1470tables. 
1471Now 
1472that DTC has full expression support, we don't want to have comment 
1473strings 
1474that 
1475start with a parentheses or a less-than symbol. Now, only the standard /* 
1476and 
1477// 
1478comments are supported, as well as the bracket [] comments.
1479
1480AcpiXtract: Fix for RSDP and dynamic SSDT extraction. These tables have 
1481"unusual" 
1482headers in the acpidump file. Update the header validation to support 
1483these 
1484tables. Problem introduced in previous AcpiXtract version in the change to 
1485support "wrong checksum" error messages emitted by acpidump utility.
1486
1487iASL: Add a * option to generate all template files (as a synonym for ALL) 
1488as 
1489in 
1490"iasl -T *" or "iasl -T ALL".
1491
1492iASL/DTC: Do not abort compiler on fatal errors. We do not want to 
1493completely 
1494abort the compiler on "fatal" errors, simply should abort the current 
1495compile. 
1496This allows multiple compiles with a single (possibly wildcard) compiler 
1497invocation.
1498
1499----------------------------------------
150016 March 2011. Summary of changes for version 20110316:
1501
15021) ACPI CA Core Subsystem:
1503
1504Fixed a problem caused by a _PRW method appearing at the namespace root 
1505scope 
1506during the setup of wake GPEs. A fault could occur if a _PRW directly 
1507under 
1508the 
1509root object was passed to the AcpiSetupGpeForWake interface. Lin Ming.
1510
1511Implemented support for "spurious" Global Lock interrupts. On some 
1512systems, a 
1513global lock interrupt can occur without the pending flag being set. Upon a 
1514GL 
1515interrupt, we now ensure that a thread is actually waiting for the lock 
1516before 
1517signaling GL availability. Rafael Wysocki, Bob Moore.
1518
1519Example Code and Data Size: These are the sizes for the OS-independent 
1520acpica.lib 
1521produced by the Microsoft Visual C++ 9.0 32-bit compiler. The debug 
1522version of 
1523the code includes the debug output trace mechanism and has a much larger 
1524code 
1525and 
1526data size.
1527
1528  Previous Release (VC 9.0):
1529    Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
1530    Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
1531  Current Release (VC 9.0):
1532    Non-Debug Version:  89.8K Code, 23.8K Data, 113.6K Total
1533    Debug Version:     164.2K Code, 67.9K Data, 232.1K Total
1534
15352) iASL Compiler/Disassembler and Tools:
1536
1537Implemented full support for the "SLIC" ACPI table. Includes support in 
1538the 
1539header files, disassembler, table compiler, and template generator. Bob 
1540Moore, 
1541Lin Ming.
1542
1543AcpiXtract: Correctly handle embedded comments and messages from AcpiDump. 
1544Apparently some or all versions of acpidump will occasionally emit a 
1545comment 
1546like 
1547"Wrong checksum", etc., into the dump file. This was causing problems for 
1548AcpiXtract. ACPICA BZ 905.
1549
1550iASL: Fix the Linux makefile by removing an inadvertent double file 
1551inclusion. 
1552ACPICA BZ 913.
1553
1554AcpiExec: Update installation of operation region handlers. Install one 
1555handler 
1556for a user-defined address space. This is used by the ASL test suite 
1557(ASLTS).
1558
1559----------------------------------------
156011 February 2011. Summary of changes for version 20110211:
1561
15621) ACPI CA Core Subsystem:
1563
1564Added a mechanism to defer _REG methods for some early-installed handlers. 
1565Most user handlers should be installed before call to AcpiEnableSubsystem. 
1566However, Event handlers and region handlers should be installed after 
1567AcpiInitializeObjects. Override handlers for the "default" regions should 
1568be 
1569installed early, however. This change executes all _REG methods for the 
1570default regions (Memory/IO/PCI/DataTable) simultaneously to prevent any 
1571chicken/egg issues between them. ACPICA BZ 848.
1572
1573Implemented an optimization for GPE detection. This optimization will 
1574simply 
1575ignore GPE registers that contain no enabled GPEs -- there is no need to 
1576read the register since this information is available internally. This 
1577becomes more important on machines with a large GPE space. ACPICA bugzilla 
1578884. Lin Ming. Suggestion from Joe Liu.
1579
1580Removed all use of the highly unreliable FADT revision field. The revision 
1581number in the FADT has been found to be completely unreliable and cannot 
1582be 
1583trusted. Only the actual table length can be used to infer the version. 
1584This 
1585change updates the ACPICA core and the disassembler so that both no longer 
1586even look at the FADT version and instead depend solely upon the FADT 
1587length.
1588
1589Fix an unresolved name issue for the no-debug and no-error-message source 
1590generation cases. The _AcpiModuleName was left undefined in these cases, 
1591but 
1592it is actually needed as a parameter to some interfaces. Define 
1593_AcpiModuleName as a null string in these cases. ACPICA Bugzilla 888.
1594
1595Split several large files (makefiles and project files updated)
1596  utglobal.c   -> utdecode.c
1597  dbcomds.c    -> dbmethod.c dbnames.c
1598  dsopcode.c   -> dsargs.c dscontrol.c
1599  dsload.c     -> dsload2.c
1600  aslanalyze.c -> aslbtypes.c aslwalks.c
1601
1602Example Code and Data Size: These are the sizes for the OS-independent 
1603acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1604debug version of the code includes the debug output trace mechanism and 
1605has 
1606a much larger code and data size.
1607
1608  Previous Release (VC 9.0):
1609    Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
1610    Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
1611  Current Release (VC 9.0):
1612    Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
1613    Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
1614
16152) iASL Compiler/Disassembler and Tools:
1616
1617iASL: Implemented the predefined macros __LINE__, __FILE__, and __DATE__. 
1618These are useful C-style macros with the standard definitions. ACPICA 
1619bugzilla 898.
1620
1621iASL/DTC: Added support for integer expressions and labels. Support for 
1622full 
1623expressions for all integer fields in all ACPI tables. Support for labels 
1624in 
1625"generic" portions of tables such as UEFI. See the iASL reference manual.
1626
1627Debugger: Added a command to display the status of global handlers. The 
1628"handlers" command will display op region, fixed event, and miscellaneous 
1629global handlers. installation status -- and for op regions, whether 
1630default 
1631or user-installed handler will be used.
1632
1633iASL: Warn if reserved method incorrectly returns a value. Many predefined 
1634names are defined such that they do not return a value. If implemented as 
1635a 
1636method, issue a warning if such a name explicitly returns a value. ACPICA 
1637Bugzilla 855.
1638
1639iASL: Added detection of GPE method name conflicts. Detects a conflict 
1640where 
1641there are two GPE methods of the form _Lxy and _Exy in the same scope. 
1642(For 
1643example, _L1D and _E1D in the same scope.) ACPICA bugzilla 848.
1644
1645iASL/DTC: Fixed a couple input scanner issues with comments and line 
1646numbers. Comment remover could get confused and miss a comment ending. 
1647Fixed 
1648a problem with line counter maintenance.
1649
1650iASL/DTC: Reduced the severity of some errors from fatal to error. There 
1651is 
1652no need to abort on simple errors within a field definition.
1653
1654Debugger: Simplified the output of the help command. All help output now 
1655in 
1656a single screen, instead of help subcommands. ACPICA Bugzilla 897.
1657
1658----------------------------------------
165912 January 2011. Summary of changes for version 20110112:
1660
16611) ACPI CA Core Subsystem:
1662
1663Fixed a race condition between method execution and namespace walks that 
1664can 
1665possibly cause a fault. The problem was apparently introduced in version 
166620100528 as a result of a performance optimization that reduces the number 
1667of 
1668namespace walks upon method exit by using the delete_namespace_subtree 
1669function instead of the delete_namespace_by_owner function used 
1670previously. 
1671Bug is a missing namespace lock in the delete_namespace_subtree function. 
1672dana.myers@oracle.com
1673
1674Fixed several issues and a possible fault with the automatic "serialized" 
1675method support. History: This support changes a method to "serialized" on 
1676the 
1677fly if the method generates an AE_ALREADY_EXISTS error, indicating the 
1678possibility that it cannot handle reentrancy. This fix repairs a couple of 
1679issues seen in the field, especially on machines with many cores:
1680
1681    1) Delete method children only upon the exit of the last thread,
1682       so as to not delete objects out from under other running threads
1683      (and possibly causing a fault.)
1684    2) Set the "serialized" bit for the method only upon the exit of the
1685       Last thread, so as to not cause deadlock when running threads
1686       attempt to exit.
1687    3) Cleanup the use of the AML "MethodFlags" and internal method flags
1688       so that there is no longer any confusion between the two.
1689
1690    Lin Ming, Bob Moore. Reported by dana.myers@oracle.com.
1691
1692Debugger: Now lock the namespace for duration of a namespace dump. 
1693Prevents 
1694issues if the namespace is changing dynamically underneath the debugger. 
1695Especially affects temporary namespace nodes, since the debugger displays 
1696these also.
1697
1698Updated the ordering of include files. The ACPICA headers should appear 
1699before any compiler-specific headers (stdio.h, etc.) so that acenv.h can 
1700set 
1701any necessary compiler-specific defines, etc. Affects the ACPI-related 
1702tools 
1703and utilities.
1704
1705Updated all ACPICA copyrights and signons to 2011. Added the 2011 
1706copyright 
1707to all module headers and signons, including the Linux header. This 
1708affects 
1709virtually every file in the ACPICA core subsystem, iASL compiler, and all 
1710utilities.
1711
1712Added project files for MS Visual Studio 2008 (VC++ 9.0). The original 
1713project files for VC++ 6.0 are now obsolete. New project files can be 
1714found 
1715under acpica/generate/msvc9. See acpica/generate/msvc9/readme.txt for 
1716details.
1717
1718Example Code and Data Size: These are the sizes for the OS-independent 
1719acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1720debug version of the code includes the debug output trace mechanism and 
1721has a 
1722much larger code and data size.
1723
1724  Previous Release (VC 6.0):
1725    Non-Debug Version:  89.8K Code, 18.9K Data, 108.7K Total
1726    Debug Version:     166.6K Code, 52.1K Data, 218.7K Total
1727  Current Release (VC 9.0):
1728    Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
1729    Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
1730
17312) iASL Compiler/Disassembler and Tools:
1732
1733iASL: Added generic data types to the Data Table compiler. Add "generic" 
1734data 
1735types such as UINT32, String, Unicode, etc., to simplify the generation of 
1736platform-defined tables such as UEFI. Lin Ming.
1737
1738iASL: Added listing support for the Data Table Compiler. Adds listing 
1739support 
1740(-l) to display actual binary output for each line of input code.
1741
1742----------------------------------------
174309 December 2010. Summary of changes for version 20101209:
1744
17451) ACPI CA Core Subsystem:
1746
1747Completed the major overhaul of the GPE support code that was begun in 
1748July 
17492010. Major features include: removal of _PRW execution in ACPICA (host 
1750executes _PRWs anyway), cleanup of "wake" GPE interfaces and processing, 
1751changes to existing interfaces, simplification of GPE handler operation, 
1752and 
1753a handful of new interfaces:
1754
1755    AcpiUpdateAllGpes
1756    AcpiFinishGpe
1757    AcpiSetupGpeForWake
1758    AcpiSetGpeWakeMask
1759    One new file, evxfgpe.c to consolidate all external GPE interfaces.
1760
1761See the ACPICA Programmer Reference for full details and programming 
1762information. See the new section 4.4 "General Purpose Event (GPE) Support" 
1763for a full overview, and section 8.7 "ACPI General Purpose Event 
1764Management" 
1765for programming details. ACPICA BZ 858,870,877. Matthew Garrett, Lin Ming, 
1766Bob Moore, Rafael Wysocki.
1767
1768Implemented a new GPE feature for Windows compatibility, the "Implicit 
1769Wake 
1770GPE Notify". This feature will automatically issue a Notify(2) on a device 
1771when a Wake GPE is received if there is no corresponding GPE method or 
1772handler. ACPICA BZ 870.
1773
1774Fixed a problem with the Scope() operator during table parse and load 
1775phase. 
1776During load phase (table load or method execution), the scope operator 
1777should 
1778not enter the target into the namespace. Instead, it should open a new 
1779scope 
1780at the target location. Linux BZ 19462, ACPICA BZ 882.
1781
1782Example Code and Data Size: These are the sizes for the OS-independent 
1783acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
1784debug version of the code includes the debug output trace mechanism and 
1785has a 
1786much larger code and data size.
1787
1788  Previous Release:
1789    Non-Debug Version:  89.8K Code, 18.9K Data, 108.7K Total
1790    Debug Version:     166.6K Code, 52.1K Data, 218.7K Total
1791  Current Release:
1792    Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
1793    Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
1794
17952) iASL Compiler/Disassembler and Tools:
1796
1797iASL: Relax the alphanumeric restriction on _CID strings. These strings 
1798are 
1799"bus-specific" per the ACPI specification, and therefore any characters 
1800are 
1801acceptable. The only checks that can be performed are for a null string 
1802and 
1803perhaps for a leading asterisk. ACPICA BZ 886.
1804
1805iASL: Fixed a problem where a syntax error that caused a premature EOF 
1806condition on the source file emitted a very confusing error message. The 
1807premature EOF is now detected correctly. ACPICA BZ 891.
1808
1809Disassembler: Decode the AccessSize within a Generic Address Structure 
1810(byte 
1811access, word access, etc.) Note, this field does not allow arbitrary bit 
1812access, the size is encoded as 1=byte, 2=word, 3=dword, and 4=qword.
1813
1814New: AcpiNames utility - Example namespace dump utility. Shows an example 
1815of 
1816ACPICA configuration for a minimal namespace dump utility. Uses table and 
1817namespace managers, but no AML interpreter. Does not add any functionality 
1818over AcpiExec, it is a subset of AcpiExec. The purpose is to show how to 
1819partition and configure ACPICA. ACPICA BZ 883.
1820
1821AML Debugger: Increased the debugger buffer size for method return 
1822objects. 
1823Was 4K, increased to 16K. Also enhanced error messages for debugger method 
1824execution, including the buffer overflow case.
1825
1826----------------------------------------
182713 October 2010. Summary of changes for version 20101013:
1828
18291) ACPI CA Core Subsystem:
1830
1831Added support to clear the PCIEXP_WAKE event. When clearing ACPI events, 
1832now 
1833clear the PCIEXP_WAKE_STS bit in the ACPI PM1 Status Register, via 
1834HwClearAcpiStatus. Original change from Colin King. ACPICA BZ 880.
1835
1836Changed the type of the predefined namespace object _TZ from ThermalZone 
1837to 
1838Device. This was found to be confusing to the host software that processes 
1839the various thermal zones, since _TZ is not really a ThermalZone. However, 
1840a 
1841Notify() can still be performed on it. ACPICA BZ 876. Suggestion from Rui 
1842Zhang.
1843
1844Added Windows Vista SP2 to the list of supported _OSI strings. The actual 
1845string is "Windows 2006 SP2".
1846
1847Eliminated duplicate code in AcpiUtExecute* functions. Now that the 
1848nsrepair 
1849code automatically repairs _HID-related strings, this type of code is no 
1850longer needed in Execute_HID, Execute_CID, and Execute_UID. ACPICA BZ 878.
1851
1852Example Code and Data Size: These are the sizes for the OS-independent 
1853acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
1854debug version of the code includes the debug output trace mechanism and 
1855has a 
1856much larger code and data size.
1857
1858  Previous Release:
1859    Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
1860    Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
1861  Current Release:
1862    Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
1863    Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
1864
18652) iASL Compiler/Disassembler and Tools:
1866
1867iASL: Implemented additional compile-time validation for _HID strings. The 
1868non-hex prefix (such as "PNP" or "ACPI") must be uppercase, and the length 
1869of 
1870the string must be exactly seven or eight characters. For both _HID and 
1871_CID 
1872strings, all characters must be alphanumeric. ACPICA BZ 874.
1873
1874iASL: Allow certain "null" resource descriptors. Some BIOS code creates 
1875descriptors that are mostly or all zeros, with the expectation that they 
1876will 
1877be filled in at runtime. iASL now allows this as long as there is a 
1878"resource 
1879tag" (name) associated with the descriptor, which gives the ASL a handle 
1880needed to modify the descriptor. ACPICA BZ 873.
1881
1882Added single-thread support to the generic Unix application OSL. Primarily 
1883for iASL support, this change removes the use of semaphores in the single-
1884threaded ACPICA tools/applications - increasing performance. The 
1885_MULTI_THREADED option was replaced by the (reverse) ACPI_SINGLE_THREADED 
1886option. ACPICA BZ 879.
1887
1888AcpiExec: several fixes for the 64-bit version. Adds XSDT support and 
1889support 
1890for 64-bit DSDT/FACS addresses in the FADT. Lin Ming.
1891
1892iASL: Moved all compiler messages to a new file, aslmessages.h.
1893
1894----------------------------------------
189515 September 2010. Summary of changes for version 20100915:
1896
18971) ACPI CA Core Subsystem:
1898
1899Removed the AcpiOsDerivePciId OSL interface. The various host 
1900implementations 
1901of this function were not OS-dependent and are now obsolete and can be 
1902removed from all host OSLs. This function has been replaced by 
1903AcpiHwDerivePciId, which is now part of the ACPICA core code. 
1904AcpiHwDerivePciId has been implemented without recursion. Adds one new 
1905module, hwpci.c. ACPICA BZ 857.
1906
1907Implemented a dynamic repair for _HID and _CID strings. The following 
1908problems are now repaired at runtime: 1) Remove a leading asterisk in the 
1909string, and 2) the entire string is uppercased. Both repairs are in 
1910accordance with the ACPI specification and will simplify host driver code. 
1911ACPICA BZ 871.
1912
1913The ACPI_THREAD_ID type is no longer configurable, internally it is now 
1914always UINT64. This simplifies the ACPICA code, especially any printf 
1915output. 
1916UINT64 is the only common data type for all thread_id types across all 
1917operating systems. It is now up to the host OSL to cast the native 
1918thread_id 
1919type to UINT64 before returning the value to ACPICA (via 
1920AcpiOsGetThreadId). 
1921Lin Ming, Bob Moore.
1922
1923Added the ACPI_INLINE type to enhance the ACPICA configuration. The 
1924"inline" 
1925keyword is not standard across compilers, and this type allows inline to 
1926be 
1927configured on a per-compiler basis. Lin Ming.
1928
1929Made the system global AcpiGbl_SystemAwakeAndRunning publically available. 
1930Added an extern for this boolean in acpixf.h. Some hosts utilize this 
1931value 
1932during suspend/restore operations. ACPICA BZ 869.
1933
1934All code that implements error/warning messages with the "ACPI:" prefix 
1935has 
1936been moved to a new module, utxferror.c.
1937
1938The UINT64_OVERLAY was moved to utmath.c, which is the only module where 
1939it 
1940is used. ACPICA BZ 829. Lin Ming, Bob Moore.
1941
1942Example Code and Data Size: These are the sizes for the OS-independent 
1943acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
1944debug version of the code includes the debug output trace mechanism and 
1945has a 
1946much larger code and data size.
1947
1948  Previous Release:
1949    Non-Debug Version:  89.1K Code, 19.0K Data, 108.1K Total
1950    Debug Version:     165.1K Code, 51.9K Data, 217.0K Total
1951  Current Release:
1952    Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
1953    Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
1954
19552) iASL Compiler/Disassembler and Tools:
1956
1957iASL/Disassembler: Write ACPI errors to stderr instead of the output file. 
1958This keeps the output files free of random error messages that may 
1959originate 
1960from within the namespace/interpreter code. Used this opportunity to merge 
1961all ACPI:-style messages into a single new module, utxferror.c. ACPICA BZ 
1962866. Lin Ming, Bob Moore.
1963
1964Tools: update some printfs for ansi warnings on size_t. Handle width 
1965change 
1966of size_t on 32-bit versus 64-bit generations. Lin Ming.
1967
1968----------------------------------------
196906 August 2010. Summary of changes for version 20100806:
1970
19711) ACPI CA Core Subsystem:
1972
1973Designed and implemented a new host interface to the _OSI support code. 
1974This 
1975will allow the host to dynamically add or remove multiple _OSI strings, as 
1976well as install an optional handler that is called for each _OSI 
1977invocation. 
1978Also added a new AML debugger command, 'osi' to display and modify the 
1979global 
1980_OSI string table, and test support in the AcpiExec utility. See the 
1981ACPICA 
1982reference manual for full details. Lin Ming, Bob Moore. ACPICA BZ 836.
1983New Functions:
1984    AcpiInstallInterface - Add an _OSI string.
1985    AcpiRemoveInterface - Delete an _OSI string.
1986    AcpiInstallInterfaceHandler - Install optional _OSI handler.
1987Obsolete Functions:
1988    AcpiOsValidateInterface - no longer used.
1989New Files:
1990    source/components/utilities/utosi.c
1991
1992Re-introduced the support to enable multi-byte transfers for Embedded 
1993Controller (EC) operation regions. A reported problem was found to be a 
1994bug 
1995in the host OS, not in the multi-byte support. Previously, the maximum 
1996data 
1997size passed to the EC operation region handler was a single byte. There 
1998are 
1999often EC Fields larger than one byte that need to be transferred, and it 
2000is 
2001useful for the EC driver to lock these as a single transaction. This 
2002change 
2003enables single transfers larger than 8 bits. This effectively changes the 
2004access to the EC space from ByteAcc to AnyAcc, and will probably require 
2005changes to the host OS Embedded Controller driver to enable 16/32/64/256-
2006bit 
2007transfers in addition to 8-bit transfers. Alexey Starikovskiy, Lin Ming.
2008
2009Fixed a problem with the prototype for AcpiOsReadPciConfiguration. The 
2010prototype in acpiosxf.h had the output value pointer as a (void *).
2011It should be a (UINT64 *). This may affect some host OSL code.
2012
2013Fixed a couple problems with the recently modified Linux makefiles for 
2014iASL 
2015and AcpiExec. These new makefiles place the generated object files in the 
2016local directory so that there can be no collisions between the files that 
2017are 
2018shared between them that are compiled with different options.
2019
2020Example Code and Data Size: These are the sizes for the OS-independent 
2021acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
2022debug version of the code includes the debug output trace mechanism and 
2023has a 
2024much larger code and data size.
2025
2026  Previous Release:
2027    Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
2028    Debug Version:     164.0K Code, 51.5K Data, 215.5K Total
2029  Current Release:
2030    Non-Debug Version:  89.1K Code, 19.0K Data, 108.1K Total
2031    Debug Version:     165.1K Code, 51.9K Data, 217.0K Total
2032
20332) iASL Compiler/Disassembler and Tools:
2034
2035iASL/Disassembler: Added a new option (-da, "disassemble all") to load the 
2036namespace from and disassemble an entire group of AML files. Useful for 
2037loading all of the AML tables for a given machine (DSDT, SSDT1...SSDTn) 
2038and 
2039disassembling with one simple command. ACPICA BZ 865. Lin Ming.
2040
2041iASL: Allow multiple invocations of -e option. This change allows multiple 
2042uses of -e on the command line: "-e ssdt1.dat -e ssdt2.dat". ACPICA BZ 
2043834. 
2044Lin Ming.
2045
2046----------------------------------------
204702 July 2010. Summary of changes for version 20100702:
2048
20491) ACPI CA Core Subsystem:
2050
2051Implemented several updates to the recently added GPE reference count 
2052support. The model for "wake" GPEs is changing to give the host OS 
2053complete 
2054control of these GPEs. Eventually, the ACPICA core will not execute any 
2055_PRW 
2056methods, since the host already must execute them. Also, additional 
2057changes 
2058were made to help ensure that the reference counts are kept in proper 
2059synchronization with reality. Rafael J. Wysocki.
2060
20611) Ensure that GPEs are not enabled twice during initialization.
20622) Ensure that GPE enable masks stay in sync with the reference count.
20633) Do not inadvertently enable GPEs when writing GPE registers.
20644) Remove the internal wake reference counter and add new AcpiGpeWakeup 
2065interface. This interface will set or clear individual GPEs for wakeup.
20665) Remove GpeType argument from AcpiEnable and AcpiDisable. These 
2067interfaces 
2068are now used for "runtime" GPEs only.
2069
2070Changed the behavior of the GPE install/remove handler interfaces. The GPE 
2071is 
2072no longer disabled during this process, as it was found to cause problems 
2073on 
2074some machines. Rafael J. Wysocki.
2075
2076Reverted a change introduced in version 20100528 to enable Embedded 
2077Controller multi-byte transfers. This change was found to cause problems 
2078with 
2079Index Fields and possibly Bank Fields. It will be reintroduced when these 
2080problems have been resolved.
2081
2082Fixed a problem with references to Alias objects within Package Objects. A 
2083reference to an Alias within the definition of a Package was not always 
2084resolved properly. Aliases to objects like Processors, Thermal zones, etc. 
2085were resolved to the actual object instead of a reference to the object as 
2086it 
2087should be. Package objects are only allowed to contain integer, string, 
2088buffer, package, and reference objects. Redhat bugzilla 608648.
2089
2090Example Code and Data Size: These are the sizes for the OS-independent 
2091acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
2092debug version of the code includes the debug output trace mechanism and 
2093has a 
2094much larger code and data size.
2095
2096  Previous Release:
2097    Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
2098    Debug Version:     164.1K Code, 51.5K Data, 215.6K Total
2099  Current Release:
2100    Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
2101    Debug Version:     164.0K Code, 51.5K Data, 215.5K Total
2102
21032) iASL Compiler/Disassembler and Tools:
2104
2105iASL: Implemented a new compiler subsystem to allow definition and 
2106compilation of the non-AML ACPI tables such as FADT, MADT, SRAT, etc. 
2107These 
2108are called "ACPI Data Tables", and the new compiler is the "Data Table 
2109Compiler". This compiler is intended to simplify the existing error-prone 
2110process of creating these tables for the BIOS, as well as allowing the 
2111disassembly, modification, recompilation, and override of existing ACPI 
2112data 
2113tables. See the iASL User Guide for detailed information.
2114
2115iASL: Implemented a new Template Generator option in support of the new 
2116Data 
2117Table Compiler. This option will create examples of all known ACPI tables 
2118that can be used as the basis for table development. See the iASL 
2119documentation and the -T option.
2120
2121Disassembler and headers: Added support for the WDDT ACPI table (Watchdog 
2122Descriptor Table).
2123
2124Updated the Linux makefiles for iASL and AcpiExec to place the generated 
2125object files in the local directory so that there can be no collisions 
2126between the shared files between them that are generated with different 
2127options.
2128
2129Added support for Mac OS X in the Unix OSL used for iASL and AcpiExec. Use 
2130the #define __APPLE__ to enable this support.
2131
2132----------------------------------------
213328 May 2010. Summary of changes for version 20100528:
2134
2135Note: The ACPI 4.0a specification was released on April 5, 2010 and is 
2136available at www.acpi.info. This is primarily an errata release.
2137
21381) ACPI CA Core Subsystem:
2139
2140Undefined ACPI tables: We are looking for the definitions for the 
2141following 
2142ACPI tables that have been seen in the field: ATKG, IEIT, GSCI.
2143
2144Implemented support to enable multi-byte transfers for Embedded Controller 
2145(EC) operation regions. Previously, the maximum data size passed to the EC 
2146operation region handler was a single byte. There are often EC Fields 
2147larger 
2148than one byte that need to be transferred, and it is useful for the EC 
2149driver 
2150to lock these as a single transaction. This change enables single 
2151transfers 
2152larger than 8 bits. This effectively changes the access to the EC space 
2153from 
2154ByteAcc to AnyAcc, and will probably require changes to the host OS 
2155Embedded 
2156Controller driver to enable 16/32/64/256-bit transfers in addition to 8-
2157bit 
2158transfers. Alexey Starikovskiy, Lin Ming
2159
2160Implemented a performance enhancement for namespace search and access. 
2161This 
2162change enhances the performance of namespace searches and walks by adding 
2163a 
2164backpointer to the parent in each namespace node. On large namespaces, 
2165this 
2166change can improve overall ACPI performance by up to 9X. Adding a pointer 
2167to 
2168each namespace node increases the overall size of the internal namespace 
2169by 
2170about 5%, since each namespace entry usually consists of both a namespace 
2171node and an ACPI operand object. However, this is the first growth of the 
2172namespace in ten years. ACPICA bugzilla 817. Alexey Starikovskiy.
2173
2174Implemented a performance optimization that reduces the number of 
2175namespace 
2176walks. On control method exit, only walk the namespace if the method is 
2177known 
2178to have created namespace objects outside of its local scope. Previously, 
2179the 
2180entire namespace was traversed on each control method exit. This change 
2181can 
2182improve overall ACPI performance by up to 3X. Alexey Starikovskiy, Bob 
2183Moore.
2184
2185Added support to truncate I/O addresses to 16 bits for Windows 
2186compatibility. 
2187Some ASL code has been seen in the field that inadvertently has bits set 
2188above bit 15. This feature is optional and is enabled if the BIOS requests 
2189any Windows OSI strings. It can also be enabled by the host OS. Matthew 
2190Garrett, Bob Moore.
2191
2192Added support to limit the maximum time for the ASL Sleep() operator. To 
2193prevent accidental deep sleeps, limit the maximum time that Sleep() will 
2194actually sleep. Configurable, the default maximum is two seconds. ACPICA 
2195bugzilla 854.
2196
2197Added run-time validation support for the _WDG and_WED Microsoft 
2198predefined 
2199methods. These objects are defined by "Windows Instrumentation", and are 
2200not 
2201part of the ACPI spec. ACPICA BZ 860.
2202
2203Expanded all statistic counters used during namespace and device 
2204initialization from 16 to 32 bits in order to support very large 
2205namespaces.
2206
2207Replaced all instances of %d in printf format specifiers with %u since 
2208nearly 
2209all integers in ACPICA are unsigned.
2210
2211Fixed the exception namestring for AE_WAKE_ONLY_GPE. Was incorrectly 
2212returned 
2213as AE_NO_HANDLER.
2214
2215Example Code and Data Size: These are the sizes for the OS-independent 
2216acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
2217debug version of the code includes the debug output trace mechanism and 
2218has a 
2219much larger code and data size.
2220
2221  Previous Release:
2222    Non-Debug Version:  88.4K Code, 18.8K Data, 107.2K Total
2223    Debug Version:     164.2K Code, 51.5K Data, 215.7K Total
2224  Current Release:
2225    Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
2226    Debug Version:     164.1K Code, 51.5K Data, 215.6K Total
2227
22282) iASL Compiler/Disassembler and Tools:
2229
2230iASL: Added compiler support for the _WDG and_WED Microsoft predefined 
2231methods. These objects are defined by "Windows Instrumentation", and are 
2232not 
2233part of the ACPI spec. ACPICA BZ 860.
2234
2235AcpiExec: added option to disable the memory tracking mechanism. The -dt 
2236option will disable the tracking mechanism, which improves performance 
2237considerably.
2238
2239AcpiExec: Restructured the command line options into -d (disable) and -e 
2240(enable) options.
2241
2242----------------------------------------
224328 April 2010. Summary of changes for version 20100428:
2244
22451) ACPI CA Core Subsystem:
2246
2247Implemented GPE support for dynamically loaded ACPI tables. For all GPEs, 
2248including FADT-based and GPE Block Devices, execute any _PRW methods in 
2249the 
2250new table, and process any _Lxx/_Exx GPE methods in the new table. Any 
2251runtime GPE that is referenced by an _Lxx/_Exx method in the new table is 
2252immediately enabled. Handles the FADT-defined GPEs as well as GPE Block 
2253Devices. Provides compatibility with other ACPI implementations. Two new 
2254files added, evgpeinit.c and evgpeutil.c. ACPICA BZ 833. Lin Ming, Bob 
2255Moore.
2256
2257Fixed a regression introduced in version 20100331 within the table manager 
2258where initial table loading could fail. This was introduced in the fix for 
2259AcpiReallocateRootTable. Also, renamed some of fields in the table manager 
2260data structures to clarify their meaning and use.
2261
2262Fixed a possible allocation overrun during internal object copy in 
2263AcpiUtCopySimpleObject. The original code did not correctly handle the 
2264case 
2265where the object to be copied was a namespace node. Lin Ming. ACPICA BZ 
2266847.
2267
2268Updated the allocation dump routine, AcpiUtDumpAllocation and fixed a 
2269possible access beyond end-of-allocation. Also, now fully validate 
2270descriptor 
2271(size and type) before output. Lin Ming, Bob Moore. ACPICA BZ 847
2272
2273Example Code and Data Size: These are the sizes for the OS-independent 
2274acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
2275debug version of the code includes the debug output trace mechanism and 
2276has a 
2277much larger code and data size.
2278
2279  Previous Release:
2280    Non-Debug Version:  87.9K Code, 18.6K Data, 106.5K Total
2281    Debug Version:     163.5K Code, 51.3K Data, 214.8K Total
2282  Current Release:
2283    Non-Debug Version:  88.4K Code, 18.8K Data, 107.2K Total
2284    Debug Version:     164.2K Code, 51.5K Data, 215.7K Total
2285
22862) iASL Compiler/Disassembler and Tools:
2287
2288iASL: Implemented Min/Max/Len/Gran validation for address resource 
2289descriptors. This change implements validation for the address fields that 
2290are common to all address-type resource descriptors. These checks are 
2291implemented: Checks for valid Min/Max, length within the Min/Max window, 
2292valid granularity, Min/Max a multiple of granularity, and _MIF/_MAF as per 
2293table 6-40 in the ACPI 4.0a specification. Also split the large 
2294aslrestype1.c 
2295and aslrestype2.c files into five new files. ACPICA BZ 840.
2296
2297iASL: Added support for the _Wxx predefined names. This support was 
2298missing 
2299and these names were not recognized by the compiler as valid predefined 
2300names. ACPICA BZ 851.
2301
2302iASL: Added an error for all predefined names that are defined to return 
2303no 
2304value and thus must be implemented as Control Methods. These include all 
2305of 
2306the _Lxx, _Exx, _Wxx, and _Qxx names, as well as some other miscellaneous 
2307names such as _DIS, _INI, _IRC, _OFF, _ON, and _PSx. ACPICA BZ 850, 856.
2308
2309iASL: Implemented the -ts option to emit hex AML data in ASL format, as an 
2310ASL Buffer. Allows ACPI tables to be easily included within ASL files, to 
2311be 
2312dynamically loaded via the Load() operator. Also cleaned up output for the 
2313-
2314ta and -tc options. ACPICA BZ 853.
2315
2316Tests: Added a new file with examples of extended iASL error checking. 
2317Demonstrates the advanced error checking ability of the iASL compiler. 
2318Available at tests/misc/badcode.asl.
2319
2320----------------------------------------
232131 March 2010. Summary of changes for version 20100331:
2322
23231) ACPI CA Core Subsystem:
2324
2325Completed a major update for the GPE support in order to improve support 
2326for 
2327shared GPEs and to simplify both host OS and ACPICA code. Added a 
2328reference 
2329count mechanism to support shared GPEs that require multiple device 
2330drivers. 
2331Several external interfaces have changed. One external interface has been 
2332removed. One new external interface was added. Most of the GPE external 
2333interfaces now use the GPE spinlock instead of the events mutex (and the 
2334Flags parameter for many GPE interfaces has been removed.) See the updated 
2335ACPICA Programmer Reference for details. Matthew Garrett, Bob Moore, 
2336Rafael 
2337Wysocki. ACPICA BZ 831.
2338
2339Changed:
2340    AcpiEnableGpe, AcpiDisableGpe, AcpiClearGpe, AcpiGetGpeStatus
2341Removed:
2342    AcpiSetGpeType
2343New:
2344    AcpiSetGpe
2345
2346Implemented write support for DataTable operation regions. These regions 
2347are 
2348defined via the DataTableRegion() operator. Previously, only read support 
2349was 
2350implemented. The ACPI specification allows DataTableRegions to be 
2351read/write, 
2352however.
2353
2354Implemented a new subsystem option to force a copy of the DSDT to local 
2355memory. Optionally copy the entire DSDT to local memory (instead of simply 
2356mapping it.) There are some (albeit very rare) BIOSs that corrupt or 
2357replace 
2358the original DSDT, creating the need for this option. Default is FALSE, do 
2359not copy the DSDT.
2360
2361Implemented detection of a corrupted or replaced DSDT. This change adds 
2362support to detect a DSDT that has been corrupted and/or replaced from 
2363outside 
2364the OS (by firmware). This is typically catastrophic for the system, but 
2365has 
2366been seen on some machines. Once this problem has been detected, the DSDT 
2367copy option can be enabled via system configuration. Lin Ming, Bob Moore.
2368
2369Fixed two problems with AcpiReallocateRootTable during the root table 
2370copy. 
2371When copying the root table to the new allocation, the length used was 
2372incorrect. The new size was used instead of the current table size, 
2373meaning 
2374too much data was copied. Also, the count of available slots for ACPI 
2375tables 
2376was not set correctly. Alexey Starikovskiy, Bob Moore.
2377
2378Example Code and Data Size: These are the sizes for the OS-independent 
2379acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
2380debug version of the code includes the debug output trace mechanism and 
2381has a 
2382much larger code and data size.
2383
2384  Previous Release:
2385    Non-Debug Version:  87.5K Code, 18.4K Data, 105.9K Total
2386    Debug Version:     163.4K Code, 51.1K Data, 214.5K Total
2387  Current Release:
2388    Non-Debug Version:  87.9K Code, 18.6K Data, 106.5K Total
2389    Debug Version:     163.5K Code, 51.3K Data, 214.8K Total
2390
23912) iASL Compiler/Disassembler and Tools:
2392
2393iASL: Implement limited typechecking for values returned from predefined 
2394control methods. The type of any returned static (unnamed) object is now 
2395validated. For example, Return(1). ACPICA BZ 786.
2396
2397iASL: Fixed a predefined name object verification regression. Fixes a 
2398problem 
2399introduced in version 20100304. An error is incorrectly generated if a 
2400predefined name is declared as a static named object with a value defined 
2401using the keywords "Zero", "One", or "Ones". Lin Ming.
2402
2403iASL: Added Windows 7 support for the -g option (get local ACPI tables) by 
2404reducing the requested registry access rights. ACPICA BZ 842.
2405
2406Disassembler: fixed a possible fault when generating External() 
2407statements. 
2408Introduced in commit ae7d6fd: Properly handle externals with parent-prefix 
2409(carat). Fixes a string length allocation calculation. Lin Ming.
2410
2411----------------------------------------
241204 March 2010. Summary of changes for version 20100304:
2413
24141) ACPI CA Core Subsystem:
2415
2416Fixed a possible problem with the AML Mutex handling function 
2417AcpiExReleaseMutex where the function could fault under the very rare 
2418condition when the interpreter has blocked, the interpreter lock is 
2419released, 
2420the interpreter is then reentered via the same thread, and attempts to 
2421acquire an AML mutex that was previously acquired. FreeBSD report 140979. 
2422Lin 
2423Ming.
2424
2425Implemented additional configuration support for the AML "Debug Object". 
2426Output from the debug object can now be enabled via a global variable, 
2427AcpiGbl_EnableAmlDebugObject. This will assist with remote machine 
2428debugging. 
2429This debug output is now available in the release version of ACPICA 
2430instead 
2431of just the debug version. Also, the entire debug output module can now be 
2432configured out of the ACPICA build if desired. One new file added, 
2433executer/exdebug.c. Lin Ming, Bob Moore.
2434
2435Added header support for the ACPI MCHI table (Management Controller Host 
2436Interface Table). This table was added in ACPI 4.0, but the defining 
2437document 
2438has only recently become available.
2439
2440Standardized output of integer values for ACPICA warnings/errors. Always 
2441use 
24420x prefix for hex output, always use %u for unsigned integer decimal 
2443output. 
2444Affects ACPI_INFO, ACPI_ERROR, ACPI_EXCEPTION, and ACPI_WARNING (about 400 
2445invocations.) These invocations were converted from the original 
2446ACPI_DEBUG_PRINT invocations and were not consistent. ACPICA BZ 835.
2447
2448Example Code and Data Size: These are the sizes for the OS-independent 
2449acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
2450debug version of the code includes the debug output trace mechanism and 
2451has a 
2452much larger code and data size.
2453
2454  Previous Release:
2455    Non-Debug Version:  87.1K Code, 18.0K Data, 105.1K Total
2456    Debug Version:     163.5K Code, 50.9K Data, 214.4K Total
2457  Current Release:
2458    Non-Debug Version:  87.5K Code, 18.4K Data, 105.9K Total
2459    Debug Version:     163.4K Code, 51.1K Data, 214.5K Total
2460
24612) iASL Compiler/Disassembler and Tools:
2462
2463iASL: Implemented typechecking support for static (non-control method) 
2464predefined named objects that are declared with the Name() operator. For 
2465example, the type of this object is now validated to be of type Integer: 
2466Name(_BBN, 1). This change migrates the compiler to using the core 
2467predefined 
2468name table instead of maintaining a local version. Added a new file, 
2469aslpredef.c. ACPICA BZ 832.
2470
2471Disassembler: Added support for the ACPI 4.0 MCHI table.
2472
2473----------------------------------------
247421 January 2010. Summary of changes for version 20100121:
2475
24761) ACPI CA Core Subsystem:
2477
2478Added the 2010 copyright to all module headers and signons. This affects 
2479virtually every file in the ACPICA core subsystem, the iASL compiler, the 
2480tools/utilities, and the test suites.
2481
2482Implemented a change to the AcpiGetDevices interface to eliminate 
2483unnecessary 
2484invocations of the _STA method. In the case where a specific _HID is 
2485requested, do not run _STA until a _HID match is found. This eliminates 
2486potentially dozens of _STA calls during a search for a particular 
2487device/HID, 
2488which in turn can improve boot times. ACPICA BZ 828. Lin Ming.
2489
2490Implemented an additional repair for predefined method return values. 
2491Attempt 
2492to repair unexpected NULL elements within returned Package objects. Create 
2493an 
2494Integer of value zero, a NULL String, or a zero-length Buffer as 
2495appropriate. 
2496ACPICA BZ 818. Lin Ming, Bob Moore.
2497
2498Removed the obsolete ACPI_INTEGER data type. This type was introduced as 
2499the 
2500code was migrated from ACPI 1.0 (with 32-bit AML integers) to ACPI 2.0 
2501(with 
250264-bit AML integers). It is now obsolete and this change removes it from 
2503the 
2504ACPICA code base, replaced by UINT64. The original typedef has been 
2505retained 
2506for now for compatibility with existing device driver code. ACPICA BZ 824.
2507
2508Removed the unused UINT32_STRUCT type, and the obsolete Integer64 field in 
2509the parse tree object.
2510
2511Added additional warning options for the gcc-4 generation. Updated the 
2512source 
2513accordingly. This includes some code restructuring to eliminate 
2514unreachable 
2515code, elimination of some gotos, elimination of unused return values, some 
2516additional casting, and removal of redundant declarations.
2517
2518Example Code and Data Size: These are the sizes for the OS-independent 
2519acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
2520debug version of the code includes the debug output trace mechanism and 
2521has a 
2522much larger code and data size.
2523
2524  Previous Release:
2525    Non-Debug Version:  87.0K Code, 18.0K Data, 105.0K Total
2526    Debug Version:     163.4K Code, 50.8K Data, 214.2K Total
2527  Current Release:
2528    Non-Debug Version:  87.1K Code, 18.0K Data, 105.1K Total
2529    Debug Version:     163.5K Code, 50.9K Data, 214.4K Total
2530
25312) iASL Compiler/Disassembler and Tools:
2532
2533No functional changes for this release.
2534
2535----------------------------------------
253614 December 2009. Summary of changes for version 20091214:
2537
25381) ACPI CA Core Subsystem:
2539
2540Enhanced automatic data type conversions for predefined name repairs. This 
2541change expands the automatic repairs/conversions for predefined name 
2542return 
2543values to make Integers, Strings, and Buffers fully interchangeable. Also, 
2544a 
2545Buffer can be converted to a Package of Integers if necessary. The 
2546nsrepair.c 
2547module was completely restructured. Lin Ming, Bob Moore.
2548
2549Implemented automatic removal of null package elements during predefined 
2550name 
2551repairs. This change will automatically remove embedded and trailing NULL 
2552package elements from returned package objects that are defined to contain 
2553a 
2554variable number of sub-packages. The driver is then presented with a 
2555package 
2556with no null elements to deal with. ACPICA BZ 819.
2557
2558Implemented a repair for the predefined _FDE and _GTM names. The expected 
2559return value for both names is a Buffer of 5 DWORDs. This repair fixes two 
2560possible problems (both seen in the field), where a package of integers is 
2561returned, or a buffer of BYTEs is returned. With assistance from Jung-uk 
2562Kim.
2563
2564Implemented additional module-level code support. This change will 
2565properly 
2566execute module-level code that is not at the root of the namespace (under 
2567a 
2568Device object, etc.). Now executes the code within the current scope 
2569instead 
2570of the root. ACPICA BZ 762. Lin Ming.
2571
2572Fixed possible mutex acquisition errors when running _REG methods. Fixes a 
2573problem where mutex errors can occur when running a _REG method that is in 
2574the same scope as a method-defined operation region or an operation region 
2575under a module-level IF block. This type of code is rare, so the problem 
2576has 
2577not been seen before. ACPICA BZ 826. Lin Ming, Bob Moore.
2578
2579Fixed a possible memory leak during module-level code execution. An object 
2580could be leaked for each block of executed module-level code if the 
2581interpreter slack mode is enabled This change deletes any implicitly 
2582returned 
2583object from the module-level code block. Lin Ming.
2584
2585Removed messages for successful predefined repair(s). The repair mechanism 
2586was considered too wordy. Now, messages are only unconditionally emitted 
2587if 
2588the return object cannot be repaired. Existing messages for successful 
2589repairs were converted to ACPI_DEBUG_PRINT messages for now. ACPICA BZ 
2590827.
2591
2592Example Code and Data Size: These are the sizes for the OS-independent 
2593acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
2594debug version of the code includes the debug output trace mechanism and 
2595has a 
2596much larger code and data size.
2597
2598  Previous Release:
2599    Non-Debug Version:  86.6K Code, 18.2K Data, 104.8K Total
2600    Debug Version:     162.7K Code, 50.8K Data, 213.5K Total
2601  Current Release:
2602    Non-Debug Version:  87.0K Code, 18.0K Data, 105.0K Total
2603    Debug Version:     163.4K Code, 50.8K Data, 214.2K Total
2604
26052) iASL Compiler/Disassembler and Tools:
2606
2607iASL: Fixed a regression introduced in 20091112 where intermediate .SRC 
2608files 
2609were no longer automatically removed at the termination of the compile.
2610
2611acpiexec: Implemented the -f option to specify default region fill value. 
2612This option specifies the value used to initialize buffers that simulate 
2613operation regions. Default value is zero. Useful for debugging problems 
2614that 
2615depend on a specific initial value for a region or field.
2616
2617----------------------------------------
261812 November 2009. Summary of changes for version 20091112:
2619
26201) ACPI CA Core Subsystem:
2621
2622Implemented a post-order callback to AcpiWalkNamespace. The existing 
2623interface only has a pre-order callback. This change adds an additional 
2624parameter for a post-order callback which will be more useful for bus 
2625scans. 
2626ACPICA BZ 779. Lin Ming. Updated the ACPICA Programmer Reference.
2627
2628Modified the behavior of the operation region memory mapping cache for 
2629SystemMemory. Ensure that the memory mappings created for operation 
2630regions 
2631do not cross 4K page boundaries. Crossing a page boundary while mapping 
2632regions can cause kernel warnings on some hosts if the pages have 
2633different 
2634attributes. Such regions are probably BIOS bugs, and this is the 
2635workaround. 
2636Linux BZ 14445. Lin Ming.
2637
2638Implemented an automatic repair for predefined methods that must return 
2639sorted lists. This change will repair (by sorting) packages returned by 
2640_ALR, 
2641_PSS, and _TSS. Drivers can now assume that the packages are correctly 
2642sorted 
2643and do not contain NULL package elements. Adds one new file, 
2644namespace/nsrepair2.c. ACPICA BZ 784. Lin Ming, Bob Moore.
2645
2646Fixed a possible fault during predefined name validation if a return 
2647Package 
2648object contains NULL elements. Also adds a warning if a NULL element is 
2649followed by any non-null elements. ACPICA BZ 813, 814. Future enhancement 
2650may 
2651include repair or removal of all such NULL elements where possible.
2652
2653Implemented additional module-level executable AML code support. This 
2654change 
2655will execute module-level code that is not at the root of the namespace 
2656(under a Device object, etc.) at table load time. Module-level executable 
2657AML 
2658code has been illegal since ACPI 2.0. ACPICA BZ 762. Lin Ming.
2659
2660Implemented a new internal function to create Integer objects. This 
2661function 
2662simplifies miscellaneous object creation code. ACPICA BZ 823.
2663
2664Reduced the severity of predefined repair messages, Warning to Info. Since 
2665the object was successfully repaired, a warning is too severe. Reduced to 
2666an 
2667info message for now. These messages may eventually be changed to debug-
2668only. 
2669ACPICA BZ 812.
2670
2671Example Code and Data Size: These are the sizes for the OS-independent 
2672acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
2673debug version of the code includes the debug output trace mechanism and 
2674has a 
2675much larger code and data size.
2676
2677  Previous Release:
2678    Non-Debug Version:  85.8K Code, 18.0K Data, 103.8K Total
2679    Debug Version:     161.8K Code, 50.6K Data, 212.4K Total
2680  Current Release:
2681    Non-Debug Version:  86.6K Code, 18.2K Data, 104.8K Total
2682    Debug Version:     162.7K Code, 50.8K Data, 213.5K Total
2683
26842) iASL Compiler/Disassembler and Tools:
2685
2686iASL: Implemented Switch() with While(1) so that Break works correctly. 
2687This 
2688change correctly implements the Switch operator with a surrounding 
2689While(1) 
2690so that the Break operator works as expected. ACPICA BZ 461. Lin Ming.
2691
2692iASL: Added a message if a package initializer list is shorter than 
2693package 
2694length. Adds a new remark for a Package() declaration if an initializer 
2695list 
2696exists, but is shorter than the declared length of the package. Although 
2697technically legal, this is probably a coding error and it is seen in the 
2698field. ACPICA BZ 815. Lin Ming, Bob Moore.
2699
2700iASL: Fixed a problem where the compiler could fault after the maximum 
2701number 
2702of errors was reached (200).
2703
2704acpixtract: Fixed a possible warning for pointer cast if the compiler 
2705warning 
2706level set very high.
2707
2708----------------------------------------
270913 October 2009. Summary of changes for version 20091013:
2710
27111) ACPI CA Core Subsystem:
2712
2713Fixed a problem where an Operation Region _REG method could be executed 
2714more 
2715than once. If a custom address space handler is installed by the host 
2716before 
2717the "initialize operation regions" phase of the ACPICA initialization, any 
2718_REG methods for that address space could be executed twice. This change 
2719fixes the problem. ACPICA BZ 427. Lin Ming.
2720
2721Fixed a possible memory leak for the Scope() ASL operator. When the exact 
2722invocation of "Scope(\)" is executed (change scope to root), one internal 
2723operand object was leaked. Lin Ming.
2724
2725Implemented a run-time repair for the _MAT predefined method. If the _MAT 
2726return value is defined as a Field object in the AML, and the field
2727size is less than or equal to the default width of an integer (32 or 
272864),_MAT 
2729can incorrectly return an Integer instead of a Buffer. ACPICA now 
2730automatically repairs this problem. ACPICA BZ 810.
2731
2732Implemented a run-time repair for the _BIF and _BIX predefined methods. 
2733The 
2734"OEM Information" field is often incorrectly returned as an Integer with 
2735value zero if the field is not supported by the platform. This is due to 
2736an 
2737ambiguity in the ACPI specification. The field should always be a string. 
2738ACPICA now automatically repairs this problem by returning a NULL string 
2739within the returned Package. ACPICA BZ 807.
2740
2741Example Code and Data Size: These are the sizes for the OS-independent 
2742acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
2743debug version of the code includes the debug output trace mechanism and 
2744has a 
2745much larger code and data size.
2746
2747  Previous Release:
2748    Non-Debug Version:  85.6K Code, 18.0K Data, 103.6K Total
2749    Debug Version:     161.7K Code, 50.9K Data, 212.6K Total
2750  Current Release:
2751    Non-Debug Version:  85.8K Code, 18.0K Data, 103.8K Total
2752    Debug Version:     161.8K Code, 50.6K Data, 212.4K Total
2753
27542) iASL Compiler/Disassembler and Tools:
2755
2756Disassembler: Fixed a problem where references to external symbols that 
2757contained one or more parent-prefixes (carats) were not handled correctly, 
2758possibly causing a fault. ACPICA BZ 806. Lin Ming.
2759
2760Disassembler: Restructured the code so that all functions that handle 
2761external symbols are in a single module. One new file is added, 
2762common/dmextern.c.
2763
2764AML Debugger: Added a max count argument for the Batch command (which 
2765executes multiple predefined methods within the namespace.)
2766
2767iASL: Updated the compiler documentation (User Reference.) Available at 
2768http://www.acpica.org/documentation/. ACPICA BZ 750.
2769
2770AcpiXtract: Updated for Lint and other formatting changes. Close all open 
2771files.
2772
2773----------------------------------------
277403 September 2009. Summary of changes for version 20090903:
2775
27761) ACPI CA Core Subsystem:
2777
2778For Windows Vista compatibility, added the automatic execution of an _INI 
2779method located at the namespace root (\_INI). This method is executed at 
2780table load time. This support is in addition to the automatic execution of 
2781\_SB._INI. Lin Ming.
2782
2783Fixed a possible memory leak in the interpreter for AML package objects if 
2784the package initializer list is longer than the defined size of the 
2785package. 
2786This apparently can only happen if the BIOS changes the package size on 
2787the 
2788fly (seen in a _PSS object), as ASL compilers do not allow this. The 
2789interpreter will truncate the package to the defined size (and issue an 
2790error 
2791message), but previously could leave the extra objects undeleted if they 
2792were 
2793pre-created during the argument processing (such is the case if the 
2794package 
2795consists of a number of sub-packages as in the _PSS.) ACPICA BZ 805.
2796
2797Fixed a problem seen when a Buffer or String is stored to itself via ASL. 
2798This has been reported in the field. Previously, ACPICA would zero out the 
2799buffer/string. Now, the operation is treated as a noop. Provides Windows 
2800compatibility. ACPICA BZ 803. Lin Ming.
2801
2802Removed an extraneous error message for ASL constructs of the form 
2803Store(LocalX,LocalX) when LocalX is uninitialized. These curious 
2804statements 
2805are seen in many BIOSs and are once again treated as NOOPs and no error is 
2806emitted when they are encountered. ACPICA BZ 785.
2807
2808Fixed an extraneous warning message if a _DSM reserved method returns a 
2809Package object. _DSM can return any type of object, so validation on the 
2810return type cannot be performed. ACPICA BZ 802.
2811
2812Example Code and Data Size: These are the sizes for the OS-independent 
2813acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
2814debug version of the code includes the debug output trace mechanism and 
2815has a 
2816much larger code and data size.
2817
2818  Previous Release:
2819    Non-Debug Version:  85.5K Code, 18.0K Data, 103.5K Total
2820    Debug Version:     161.6K Code, 50.9K Data, 212.5K Total
2821  Current Release:
2822    Non-Debug Version:  85.6K Code, 18.0K Data, 103.6K Total
2823    Debug Version:     161.7K Code, 50.9K Data, 212.6K Total
2824
28252) iASL Compiler/Disassembler and Tools:
2826
2827iASL: Fixed a problem with the use of the Alias operator and Resource 
2828Templates. The correct alias is now constructed and no error is emitted. 
2829ACPICA BZ 738.
2830
2831iASL: Implemented the -I option to specify additional search directories 
2832for 
2833include files. Allows multiple additional search paths for include files. 
2834Directories are searched in the order specified on the command line (after 
2835the local directory is searched.) ACPICA BZ 800.
2836
2837iASL: Fixed a problem where the full pathname for include files was not 
2838emitted for warnings/errors. This caused the IDE support to not work 
2839properly. ACPICA BZ 765.
2840
2841iASL: Implemented the -@ option to specify a Windows-style response file 
2842containing additional command line options. ACPICA BZ 801.
2843
2844AcpiExec: Added support to load multiple AML files simultaneously (such as 
2845a 
2846DSDT and multiple SSDTs). Also added support for wildcards within the AML 
2847pathname. These features allow all machine tables to be easily loaded and 
2848debugged together. ACPICA BZ 804.
2849
2850Disassembler: Added missing support for disassembly of HEST table Error 
2851Bank 
2852subtables. 
2853
2854----------------------------------------
285530 July 2009. Summary of changes for version 20090730:
2856
2857The ACPI 4.0 implementation for ACPICA is complete with this release.
2858
28591) ACPI CA Core Subsystem:
2860
2861ACPI 4.0: Added header file support for all new and changed ACPI tables. 
2862Completely new tables are: IBFT, IVRS, MSCT, and WAET. Tables that are new 
2863for ACPI 4.0, but have previously been supported in ACPICA are: CPEP, 
2864BERT, 
2865EINJ, ERST, and HEST. Other newly supported tables are: UEFI and WDAT. 
2866There 
2867have been some ACPI 4.0 changes to other existing tables. Split the large 
2868actbl1.h header into the existing actbl2.h header. ACPICA BZ 774.
2869
2870ACPI 4.0: Implemented predefined name validation for all new names. There 
2871are 
287231 new names in ACPI 4.0. The predefined validation module was split into 
2873two 
2874files. The new file is namespace/nsrepair.c. ACPICA BZ 770.
2875
2876Implemented support for so-called "module-level executable code". This is 
2877executable AML code that exists outside of any control method and is 
2878intended 
2879to be executed at table load time. Although illegal since ACPI 2.0, this 
2880type 
2881of code still exists and is apparently still being created. Blocks of this 
2882code are now detected and executed as intended. Currently, the code blocks 
2883must exist under either an If, Else, or While construct; these are the 
2884typical cases seen in the field. ACPICA BZ 762. Lin Ming.
2885
2886Implemented an automatic dynamic repair for predefined names that return 
2887nested Package objects. This applies to predefined names that are defined 
2888to 
2889return a variable-length Package of sub-packages. If the number of sub-
2890packages is one, BIOS code is occasionally seen that creates a simple 
2891single 
2892package with no sub-packages. This code attempts to fix the problem by 
2893wrapping a new package object around the existing package. These methods 
2894can 
2895be repaired: _ALR, _CSD, _HPX, _MLS, _PRT, _PSS, _TRT, and _TSS. ACPICA BZ 
2896790.
2897
2898Fixed a regression introduced in 20090625 for the AcpiGetDevices 
2899interface. 
2900The _HID/_CID matching was broken and no longer matched IDs correctly. 
2901ACPICA 
2902BZ 793.
2903
2904Fixed a problem with AcpiReset where the reset would silently fail if the 
2905register was one of the protected I/O ports. AcpiReset now bypasses the 
2906port 
2907validation mechanism. This may eventually be driven into the 
2908AcpiRead/Write 
2909interfaces.
2910
2911Fixed a regression related to the recent update of the AcpiRead/Write 
2912interfaces. A sleep/suspend could fail if the optional PM2 Control 
2913register 
2914does not exist during an attempt to write the Bus Master Arbitration bit. 
2915(However, some hosts already delete the code that writes this bit, and the 
2916code may in fact be obsolete at this date.) ACPICA BZ 799.
2917
2918Fixed a problem where AcpiTerminate could fault if inadvertently called 
2919twice 
2920in succession. ACPICA BZ 795.
2921
2922Example Code and Data Size: These are the sizes for the OS-independent 
2923acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
2924debug version of the code includes the debug output trace mechanism and 
2925has a 
2926much larger code and data size.
2927
2928  Previous Release:
2929    Non-Debug Version:  84.7K Code, 17.8K Data, 102.5K Total
2930    Debug Version:     160.5K Code, 50.6K Data, 211.1K Total
2931  Current Release:
2932    Non-Debug Version:  85.5K Code, 18.0K Data, 103.5K Total
2933    Debug Version:     161.6K Code, 50.9K Data, 212.5K Total
2934
29352) iASL Compiler/Disassembler and Tools:
2936
2937ACPI 4.0: Implemented disassembler support for all new ACPI tables and 
2938changes to existing tables. ACPICA BZ 775.
2939
2940----------------------------------------
294125 June 2009. Summary of changes for version 20090625:
2942
2943The ACPI 4.0 Specification was released on June 16 and is available at 
2944www.acpi.info. ACPICA implementation of ACPI 4.0 is underway and will 
2945continue for the next few releases.
2946
29471) ACPI CA Core Subsystem:
2948
2949ACPI 4.0: Implemented interpreter support for the IPMI operation region 
2950address space. Includes support for bi-directional data buffers and an 
2951IPMI 
2952address space handler (to be installed by an IPMI device driver.) ACPICA 
2953BZ 
2954773. Lin Ming.
2955
2956ACPI 4.0: Added changes for existing ACPI tables - FACS and SRAT. Includes 
2957support in both the header files and the disassembler.
2958
2959Completed a major update for the AcpiGetObjectInfo external interface. 
2960Changes include:
2961 - Support for variable, unlimited length HID, UID, and CID strings.
2962 - Support Processor objects the same as Devices (HID,UID,CID,ADR,STA, 
2963etc.)
2964 - Call the _SxW power methods on behalf of a device object.
2965 - Determine if a device is a PCI root bridge.
2966 - Change the ACPI_BUFFER parameter to ACPI_DEVICE_INFO.
2967These changes will require an update to all callers of this interface. See 
2968the updated ACPICA Programmer Reference for details. One new source file 
2969has 
2970been added - utilities/utids.c. ACPICA BZ 368, 780.
2971
2972Updated the AcpiRead and AcpiWrite external interfaces to support 64-bit 
2973transfers. The Value parameter has been extended from 32 bits to 64 bits 
2974in 
2975order to support new ACPI 4.0 tables. These changes will require an update 
2976to 
2977all callers of these interfaces. See the ACPICA Programmer Reference for 
2978details. ACPICA BZ 768.
2979
2980Fixed several problems with AcpiAttachData. The handler was not invoked 
2981when 
2982the host node was deleted. The data sub-object was not automatically 
2983deleted 
2984when the host node was deleted. The interface to the handler had an unused 
2985parameter, this was removed. ACPICA BZ 778.
2986
2987Enhanced the function that dumps ACPI table headers. All non-printable 
2988characters in the string fields are now replaced with '?' (Signature, 
2989OemId, 
2990OemTableId, and CompilerId.) ACPI tables with non-printable characters in 
2991these fields are occasionally seen in the field. ACPICA BZ 788.
2992
2993Fixed a problem with predefined method repair code where the code that 
2994attempts to repair/convert an object of incorrect type is only executed on 
2995the first time the predefined method is called. The mechanism that 
2996disables 
2997warnings on subsequent calls was interfering with the repair mechanism. 
2998ACPICA BZ 781.
2999
3000Fixed a possible memory leak in the predefined validation/repair code when 
3001a 
3002buffer is automatically converted to an expected string object.
3003
3004Removed obsolete 16-bit files from the distribution and from the current 
3005git 
3006tree head. ACPICA BZ 776.
3007
3008Example Code and Data Size: These are the sizes for the OS-independent 
3009acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3010debug version of the code includes the debug output trace mechanism and 
3011has a 
3012much larger code and data size.
3013
3014  Previous Release:
3015    Non-Debug Version:  83.4K Code, 17.5K Data, 100.9K Total
3016    Debug Version:     158.9K Code, 50.0K Data, 208.9K Total
3017  Current Release:
3018    Non-Debug Version:  84.7K Code, 17.8K Data, 102.5K Total
3019    Debug Version:     160.5K Code, 50.6K Data, 211.1K Total
3020
30212) iASL Compiler/Disassembler and Tools:
3022
3023ACPI 4.0: iASL and Disassembler - implemented support for the new IPMI 
3024operation region keyword. ACPICA BZ 771, 772. Lin Ming.
3025
3026ACPI 4.0: iASL - implemented compile-time validation support for all new 
3027predefined names and control methods (31 total). ACPICA BZ 769.
3028
3029----------------------------------------
303021 May 2009. Summary of changes for version 20090521:
3031
30321) ACPI CA Core Subsystem:
3033
3034Disabled the preservation of the SCI enable bit in the PM1 control 
3035register. 
3036The SCI enable bit (bit 0, SCI_EN) is defined by the ACPI specification to 
3037be 
3038a "preserved" bit - "OSPM always preserves this bit position", section 
30394.7.3.2.1. However, some machines fail if this bit is in fact preserved 
3040because the bit needs to be explicitly set by the OS as a workaround. No 
3041machines fail if the bit is not preserved. Therefore, ACPICA no longer 
3042attempts to preserve this bit.
3043
3044Fixed a problem in AcpiRsGetPciRoutingTableLength where an invalid or 
3045incorrectly formed _PRT package could cause a fault. Added validation to 
3046ensure that each package element is actually a sub-package.
3047
3048Implemented a new interface to install or override a single control 
3049method, 
3050AcpiInstallMethod. This interface is useful when debugging in order to 
3051repair 
3052an existing method or to install a missing method without having to 
3053override 
3054the entire ACPI table. See the ACPICA Programmer Reference for use and 
3055examples. Lin Ming, Bob Moore.
3056
3057Fixed several reference count issues with the DdbHandle object that is 
3058created from a Load or LoadTable operator. Prevent premature deletion of 
3059the 
3060object. Also, mark the object as invalid once the table has been unloaded. 
3061This is needed because the handle itself may not be deleted after the 
3062table 
3063unload, depending on whether it has been stored in a named object by the 
3064caller. Lin Ming.
3065
3066Fixed a problem with Mutex Sync Levels. Fixed a problem where if multiple 
3067mutexes of the same sync level are acquired but then not released in 
3068strict 
3069opposite order, the internally maintained Current Sync Level becomes 
3070confused 
3071and can cause subsequent execution errors. ACPICA BZ 471.
3072
3073Changed the allowable release order for ASL mutex objects. The ACPI 4.0 
3074specification has been changed to make the SyncLevel for mutex objects 
3075more 
3076useful. When releasing a mutex, the SyncLevel of the mutex must now be the 
3077same as the current sync level. This makes more sense than the previous 
3078rule 
3079(SyncLevel less than or equal). This change updates the code to match the 
3080specification.
3081
3082Fixed a problem with the local version of the AcpiOsPurgeCache function. 
3083The 
3084(local) cache must be locked during all cache object deletions. Andrew 
3085Baumann.
3086
3087Updated the Load operator to use operation region interfaces. This 
3088replaces 
3089direct memory mapping with region access calls. Now, all region accesses 
3090go 
3091through the installed region handler as they should.
3092
3093Simplified and optimized the NsGetNextNode function. Reduced parameter 
3094count 
3095and reduced code for this frequently used function.
3096
3097Example Code and Data Size: These are the sizes for the OS-independent 
3098acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3099debug version of the code includes the debug output trace mechanism and 
3100has a 
3101much larger code and data size.
3102
3103  Previous Release:
3104    Non-Debug Version:  82.8K Code, 17.5K Data, 100.3K Total
3105    Debug Version:     158.0K Code, 49.9K Data, 207.9K Total
3106  Current Release:
3107    Non-Debug Version:  83.4K Code, 17.5K Data, 100.9K Total
3108    Debug Version:     158.9K Code, 50.0K Data, 208.9K Total
3109
31102) iASL Compiler/Disassembler and Tools:
3111
3112Disassembler: Fixed some issues with DMAR, HEST, MADT tables. Some 
3113problems 
3114with sub-table disassembly and handling invalid sub-tables. Attempt 
3115recovery 
3116after an invalid sub-table ID.
3117
3118----------------------------------------
311922 April 2009. Summary of changes for version 20090422:
3120
31211) ACPI CA Core Subsystem:
3122
3123Fixed a compatibility issue with the recently released I/O port protection 
3124mechanism. For windows compatibility, 1) On a port protection violation, 
3125simply ignore the request and do not return an exception (allow the 
3126control 
3127method to continue execution.) 2) If only part of the request overlaps a 
3128protected port, read/write the individual ports that are not protected. 
3129Linux 
3130BZ 13036. Lin Ming
3131
3132Enhanced the execution of the ASL/AML BreakPoint operator so that it 
3133actually 
3134breaks into the AML debugger if the debugger is present. This matches the 
3135ACPI-defined behavior.
3136
3137Fixed several possible warnings related to the use of the configurable 
3138ACPI_THREAD_ID. This type can now be configured as either an integer or a 
3139pointer with no warnings. Also fixes several warnings in printf-like 
3140statements for the 64-bit build when the type is configured as a pointer. 
3141ACPICA BZ 766, 767.
3142
3143Fixed a number of possible warnings when compiling with gcc 4+ (depending 
3144on 
3145warning options.) Examples include printf formats, aliasing, unused 
3146globals, 
3147missing prototypes, missing switch default statements, use of non-ANSI 
3148library functions, use of non-ANSI constructs. See generate/unix/Makefile 
3149for 
3150a list of warning options used with gcc 3 and 4. ACPICA BZ 735.
3151
3152Example Code and Data Size: These are the sizes for the OS-independent 
3153acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3154debug version of the code includes the debug output trace mechanism and 
3155has a 
3156much larger code and data size.
3157
3158  Previous Release:
3159    Non-Debug Version:  82.6K Code, 17.6K Data, 100.2K Total
3160    Debug Version:     157.7K Code, 49.9K Data, 207.6K Total
3161  Current Release:
3162    Non-Debug Version:  82.8K Code, 17.5K Data, 100.3K Total
3163    Debug Version:     158.0K Code, 49.9K Data, 207.9K Total
3164
31652) iASL Compiler/Disassembler and Tools:
3166
3167iASL: Fixed a generation warning from Bison 2.3 and fixed several warnings 
3168on 
3169the 64-bit build.
3170
3171iASL: Fixed a problem where the Unix/Linux versions of the compiler could 
3172not 
3173correctly digest Windows/DOS formatted files (with CR/LF).
3174
3175iASL: Added a new option for "quiet mode" (-va) that produces only the 
3176compilation summary, not individual errors and warnings. Useful for large 
3177batch compilations.
3178
3179AcpiExec: Implemented a new option (-z) to enable a forced semaphore/mutex 
3180timeout that can be used to detect hang conditions during execution of AML 
3181code (includes both internal semaphores and AML-defined mutexes and 
3182events.)
3183
3184Added new makefiles for the generation of acpica in a generic unix-like 
3185environment. These makefiles are intended to generate the acpica tools and 
3186utilities from the original acpica git source tree structure.
3187
3188Test Suites: Updated and cleaned up the documentation files. Updated the 
3189copyrights to 2009, affecting all source files. Use the new version of 
3190iASL 
3191with quiet mode. Increased the number of available semaphores in the 
3192Windows 
3193OSL, allowing the aslts to execute fully on Windows. For the Unix OSL, 
3194added 
3195an alternate implementation of the semaphore timeout to allow aslts to 
3196execute fully on Cygwin.
3197
3198----------------------------------------
319920 March 2009. Summary of changes for version 20090320:
3200
32011) ACPI CA Core Subsystem:
3202
3203Fixed a possible race condition between AcpiWalkNamespace and dynamic 
3204table 
3205unloads. Added a reader/writer locking mechanism to allow multiple 
3206concurrent 
3207namespace walks (readers), but block a dynamic table unload until it can 
3208gain 
3209exclusive write access to the namespace. This fixes a problem where a 
3210table 
3211unload could (possibly catastrophically) delete the portion of the 
3212namespace 
3213that is currently being examined by a walk. Adds a new file, utlock.c, 
3214that 
3215implements the reader/writer lock mechanism. ACPICA BZ 749.
3216
3217Fixed a regression introduced in version 20090220 where a change to the 
3218FADT 
3219handling could cause the ACPICA subsystem to access non-existent I/O 
3220ports.
3221
3222Modified the handling of FADT register and table (FACS/DSDT) addresses. 
3223The 
3224FADT can contain both 32-bit and 64-bit versions of these addresses. 
3225Previously, the 64-bit versions were favored, meaning that if both 32 and 
322664 
3227versions were valid, but not equal, the 64-bit version was used. This was 
3228found to cause some machines to fail. Now, in this case, the 32-bit 
3229version 
3230is used instead. This now matches the Windows behavior.
3231
3232Implemented a new mechanism to protect certain I/O ports. Provides 
3233Microsoft 
3234compatibility and protects the standard PC I/O ports from access via AML 
3235code. Adds a new file, hwvalid.c
3236
3237Fixed a possible extraneous warning message from the FADT support. The 
3238message warns of a 32/64 length mismatch between the legacy and GAS 
3239definitions for a register.
3240
3241Removed the obsolete AcpiOsValidateAddress OSL interface. This interface 
3242is 
3243made obsolete by the port protection mechanism above. It was previously 
3244used 
3245to validate the entire address range of an operation region, which could 
3246be 
3247incorrect if the range included illegal ports, but fields within the 
3248operation region did not actually access those ports. Validation is now 
3249performed on a per-field basis instead of the entire region.
3250
3251Modified the handling of the PM1 Status Register ignored bit (bit 11.) 
3252Ignored bits must be "preserved" according to the ACPI spec. Usually, this 
3253means a read/modify/write when writing to the register. However, for 
3254status 
3255registers, writing a one means clear the event. Writing a zero means 
3256preserve 
3257the event (do not clear.) This behavior is clarified in the ACPI 4.0 spec, 
3258and the ACPICA code now simply always writes a zero to the ignored bit.
3259
3260Modified the handling of ignored bits for the PM1 A/B Control Registers. 
3261As 
3262per the ACPI specification, for the control registers, preserve 
3263(read/modify/write) all bits that are defined as either reserved or 
3264ignored.
3265
3266Updated the handling of write-only bits in the PM1 A/B Control Registers. 
3267When reading the register, zero the write-only bits as per the ACPI spec. 
3268ACPICA BZ 443. Lin Ming.
3269
3270Removed "Linux" from the list of supported _OSI strings. Linux no longer 
3271wants to reply true to this request. The Windows strings are the only 
3272paths 
3273through the AML that are tested and known to work properly.
3274
3275  Previous Release:
3276    Non-Debug Version:  82.0K Code, 17.5K Data,  99.5K Total
3277    Debug Version:     156.9K Code, 49.8K Data, 206.7K Total
3278  Current Release:
3279    Non-Debug Version:  82.6K Code, 17.6K Data, 100.2K Total
3280    Debug Version:     157.7K Code, 49.9K Data, 207.6K Total
3281
32822) iASL Compiler/Disassembler and Tools:
3283
3284Acpiexec: Split the large aeexec.c file into two new files, aehandlers.c 
3285and 
3286aetables.c
3287
3288----------------------------------------
328920 February 2009. Summary of changes for version 20090220:
3290
32911) ACPI CA Core Subsystem:
3292
3293Optimized the ACPI register locking. Removed locking for reads from the 
3294ACPI 
3295bit registers in PM1 Status, Enable, Control, and PM2 Control. The lock is 
3296not required when reading the single-bit registers. The 
3297AcpiGetRegisterUnlocked function is no longer needed and has been removed. 
3298This will improve performance for reads on these registers. ACPICA BZ 760.
3299
3300Fixed the parameter validation for AcpiRead/Write. Now return 
3301AE_BAD_PARAMETER if the input register pointer is null, and AE_BAD_ADDRESS 
3302if 
3303the register has an address of zero. Previously, these cases simply 
3304returned 
3305AE_OK. For optional registers such as PM1B status/enable/control, the 
3306caller 
3307should check for a valid register address before calling. ACPICA BZ 748.
3308
3309Renamed the external ACPI bit register access functions. Renamed 
3310AcpiGetRegister and AcpiSetRegister to clarify the purpose of these 
3311functions. The new names are AcpiReadBitRegister and AcpiWriteBitRegister. 
3312Also, restructured the code for these functions by simplifying the code 
3313path 
3314and condensing duplicate code to reduce code size.
3315
3316Added new functions to transparently handle the possibly split PM1 A/B 
3317registers. AcpiHwReadMultiple and AcpiHwWriteMultiple. These two functions 
3318now handle the split registers for PM1 Status, Enable, and Control. ACPICA 
3319BZ 
3320746.
3321
3322Added a function to handle the PM1 control registers, 
3323AcpiHwWritePm1Control. 
3324This function writes both of the PM1 control registers (A/B). These 
3325registers 
3326are different than the PM1 A/B status and enable registers in that 
3327different 
3328values can be written to the A/B registers. Most notably, the SLP_TYP bits 
3329can be different, as per the values returned from the _Sx predefined 
3330methods.
3331
3332Removed an extra register write within AcpiHwClearAcpiStatus. This 
3333function 
3334was writing an optional PM1B status register twice. The existing call to 
3335the 
3336low-level AcpiHwRegisterWrite automatically handles a possibly split PM1 
3337A/B 
3338register. ACPICA BZ 751.
3339
3340Split out the PM1 Status registers from the FADT. Added new globals for 
3341these 
3342registers (A/B), similar to the way the PM1 Enable registers are handled. 
3343Instead of overloading the FADT Event Register blocks. This makes the code 
3344clearer and less prone to error.
3345
3346Fixed the warning message for when the platform contains too many ACPI 
3347tables 
3348for the default size of the global root table data structure. The 
3349calculation 
3350for the truncation value was incorrect.
3351
3352Removed the ACPI_GET_OBJECT_TYPE macro. Removed all instances of this 
3353obsolete macro, since it is now a simple reference to ->common.type. There 
3354were about 150 invocations of the macro across 41 files. ACPICA BZ 755.
3355
3356Removed the redundant ACPI_BITREG_SLEEP_TYPE_B. This type is the same as 
3357TYPE_A. Removed this and all related instances. Renamed SLEEP_TYPE_A to 
3358simply SLEEP_TYPE. ACPICA BZ 754.
3359
3360Conditionally compile the AcpiSetFirmwareWakingVector64 function. This 
3361function is only needed on 64-bit host operating systems and is thus not 
3362included for 32-bit hosts.
3363
3364Debug output: print the input and result for invocations of the _OSI 
3365reserved 
3366control method via the ACPI_LV_INFO debug level. Also, reduced some of the 
3367verbosity of this debug level. Len Brown.
3368
3369Example Code and Data Size: These are the sizes for the OS-independent 
3370acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3371debug version of the code includes the debug output trace mechanism and 
3372has a 
3373much larger code and data size.
3374
3375  Previous Release:
3376    Non-Debug Version:  82.3K Code, 17.5K Data,  99.8K Total
3377    Debug Version:     157.3K Code, 49.8K Data, 207.1K Total
3378  Current Release:
3379    Non-Debug Version:  82.0K Code, 17.5K Data,  99.5K Total
3380    Debug Version:     156.9K Code, 49.8K Data, 206.7K Total
3381
33822) iASL Compiler/Disassembler and Tools:
3383
3384Disassembler: Decode the FADT PM_Profile field. Emit ascii names for the 
3385various legal performance profiles.
3386
3387----------------------------------------
338823 January 2009. Summary of changes for version 20090123:
3389
33901) ACPI CA Core Subsystem:
3391
3392Added the 2009 copyright to all module headers and signons. This affects 
3393virtually every file in the ACPICA core subsystem, the iASL compiler, and 
3394the tools/utilities.
3395
3396Implemented a change to allow the host to override any ACPI table, 
3397including 
3398dynamically loaded tables. Previously, only the DSDT could be replaced by 
3399the 
3400host. With this change, the AcpiOsTableOverride interface is called for 
3401each 
3402table found in the RSDT/XSDT during ACPICA initialization, and also 
3403whenever 
3404a table is dynamically loaded via the AML Load operator.
3405
3406Updated FADT flag definitions, especially the Boot Architecture flags.
3407
3408Debugger: For the Find command, automatically pad the input ACPI name with 
3409underscores if the name is shorter than 4 characters. This enables a match 
3410with the actual namespace entry which is itself padded with underscores.
3411
3412Example Code and Data Size: These are the sizes for the OS-independent 
3413acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3414debug version of the code includes the debug output trace mechanism and 
3415has a 
3416much larger code and data size.
3417
3418  Previous Release:
3419    Non-Debug Version:  82.3K Code, 17.4K Data,  99.7K Total
3420    Debug Version:     157.1K Code, 49.7K Data, 206.8K Total
3421  Current Release:
3422    Non-Debug Version:  82.3K Code, 17.5K Data,  99.8K Total
3423    Debug Version:     157.3K Code, 49.8K Data, 207.1K Total
3424
34252) iASL Compiler/Disassembler and Tools:
3426
3427Fix build error under Bison-2.4.
3428
3429Dissasembler: Enhanced FADT support. Added decoding of the Boot 
3430Architecture 
3431flags. Now decode all flags, regardless of the FADT version. Flag output 
3432includes the FADT version which first defined each flag.
3433
3434The iASL -g option now dumps the RSDT to a file (in addition to the FADT 
3435and 
3436DSDT). Windows only.
3437
3438----------------------------------------
343904 December 2008. Summary of changes for version 20081204:
3440
34411) ACPI CA Core Subsystem:
3442
3443The ACPICA Programmer Reference has been completely updated and revamped 
3444for 
3445this release. This includes updates to the external interfaces, OSL 
3446interfaces, the overview sections, and the debugger reference.
3447
3448Several new ACPICA interfaces have been implemented and documented in the 
3449programmer reference:
3450AcpiReset - Writes the reset value to the FADT-defined reset register.
3451AcpiDisableAllGpes - Disable all available GPEs.
3452AcpiEnableAllRuntimeGpes - Enable all available runtime GPEs.
3453AcpiGetGpeDevice - Get the GPE block device associated with a GPE.
3454AcpiGbl_CurrentGpeCount - Tracks the current number of available GPEs.
3455AcpiRead - Low-level read ACPI register (was HwLowLevelRead.)
3456AcpiWrite - Low-level write ACPI register (was HwLowLevelWrite.)
3457
3458Most of the public ACPI hardware-related interfaces have been moved to a 
3459new 
3460file, components/hardware/hwxface.c
3461
3462Enhanced the FADT parsing and low-level ACPI register access: The ACPI 
3463register lengths within the FADT are now used, and the low level ACPI 
3464register access no longer hardcodes the ACPI register lengths. Given that 
3465there may be some risk in actually trusting the FADT register lengths, a 
3466run-
3467time option was added to fall back to the default hardcoded lengths if the 
3468FADT proves to contain incorrect values - UseDefaultRegisterWidths. This 
3469option is set to true for now, and a warning is issued if a suspicious 
3470FADT 
3471register length is overridden with the default value.
3472
3473Fixed a reference count issue in NsRepairObject. This problem was 
3474introduced 
3475in version 20081031 as part of a fix to repair Buffer objects within 
3476Packages. Lin Ming.
3477
3478Added semaphore support to the Linux/Unix application OS-services layer 
3479(OSL). ACPICA BZ 448. Lin Ming.
3480
3481Added the ACPI_MUTEX_TYPE configuration option to select whether mutexes 
3482will 
3483be implemented in the OSL, or will binary semaphores be used instead.
3484
3485Example Code and Data Size: These are the sizes for the OS-independent 
3486acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3487debug version of the code includes the debug output trace mechanism and 
3488has a 
3489much larger code and data size.
3490
3491  Previous Release:
3492    Non-Debug Version:  81.7K Code, 17.3K Data,  99.0K Total
3493    Debug Version:     156.4K Code, 49.4K Data, 205.8K Total
3494  Current Release:
3495    Non-Debug Version:  82.3K Code, 17.4K Data,  99.7K Total
3496    Debug Version:     157.1K Code, 49.7K Data, 206.8K Total
3497
34982) iASL Compiler/Disassembler and Tools:
3499
3500iASL: Completed the '-e' option to include additional ACPI tables in order 
3501to 
3502aid with disassembly and External statement generation. ACPICA BZ 742. Lin 
3503Ming.
3504
3505iASL: Removed the "named object in while loop" error. The compiler cannot 
3506determine how many times a loop will execute. ACPICA BZ 730.
3507
3508Disassembler: Implemented support for FADT revision 2 (MS extension). 
3509ACPICA 
3510BZ 743.
3511
3512Disassembler: Updates for several ACPI data tables (HEST, EINJ, and MCFG).
3513
3514----------------------------------------
351531 October 2008. Summary of changes for version 20081031:
3516
35171) ACPI CA Core Subsystem:
3518
3519Restructured the ACPICA header files into public/private. acpi.h now 
3520includes 
3521only the "public" acpica headers. All other acpica headers are "private" 
3522and 
3523should not be included by acpica users. One new file, accommon.h is used 
3524to 
3525include the commonly used private headers for acpica code generation. 
3526Future 
3527plans include moving all private headers to a new subdirectory.
3528
3529Implemented an automatic Buffer->String return value conversion for 
3530predefined ACPI methods. For these methods (such as _BIF), added automatic 
3531conversion for return objects that are required to be a String, but a 
3532Buffer 
3533was found instead. This can happen when reading string battery data from 
3534an 
3535operation region, because it used to be difficult to convert the data from 
3536buffer to string from within the ASL. Ensures that the host OS is provided 
3537with a valid null-terminated string. Linux BZ 11822.
3538
3539Updated the FACS waking vector interfaces. Split 
3540AcpiSetFirmwareWakingVector 
3541into two: one for the 32-bit vector, another for the 64-bit vector. This 
3542is 
3543required because the host OS must setup the wake much differently for each 
3544vector (real vs. protected mode, etc.) and the interface itself should not 
3545be 
3546deciding which vector to use. Also, eliminated the GetFirmwareWakingVector 
3547interface, as it served no purpose (only the firmware reads the vector, OS 
3548only writes the vector.) ACPICA BZ 731.
3549
3550Implemented a mechanism to escape infinite AML While() loops. Added a loop 
3551counter to force exit from AML While loops if the count becomes too large. 
3552This can occur in poorly written AML when the hardware does not respond 
3553within a while loop and the loop does not implement a timeout. The maximum 
3554loop count is configurable. A new exception code is returned when a loop 
3555is 
3556broken, AE_AML_INFINITE_LOOP. Alexey Starikovskiy, Bob Moore.
3557
3558Optimized the execution of AML While loops. Previously, a control state 
3559object was allocated and freed for each execution of the loop. The 
3560optimization is to simply reuse the control state for each iteration. This 
3561speeds up the raw loop execution time by about 5%.
3562
3563Enhanced the implicit return mechanism. For Windows compatibility, return 
3564an 
3565implicit integer of value zero for methods that contain no executable 
3566code. 
3567Such methods are seen in the field as stubs (presumably), and can cause 
3568drivers to fail if they expect a return value. Lin Ming.
3569
3570Allow multiple backslashes as root prefixes in namepaths. In a fully 
3571qualified namepath, allow multiple backslash prefixes. This can happen 
3572(and 
3573is seen in the field) because of the use of a double-backslash in strings 
3574(since backslash is the escape character) causing confusion. ACPICA BZ 739 
3575Lin Ming.
3576
3577Emit a warning if two different FACS or DSDT tables are discovered in the 
3578FADT. Checks if there are two valid but different addresses for the FACS 
3579and 
3580DSDT within the FADT (mismatch between the 32-bit and 64-bit fields.)
3581
3582Consolidated the method argument count validation code. Merged the code 
3583that 
3584validates control method argument counts into the predefined validation 
3585module. Eliminates possible multiple warnings for incorrect argument 
3586counts.
3587
3588Implemented ACPICA example code. Includes code for ACPICA initialization, 
3589handler installation, and calling a control method. Available at 
3590source/tools/examples.
3591
3592Added a global pointer for FACS table to simplify internal FACS access. 
3593Use 
3594the global pointer instead of using AcpiGetTableByIndex for each FACS 
3595access. 
3596This simplifies the code for the Global Lock and the Firmware Waking 
3597Vector(s).
3598
3599Example Code and Data Size: These are the sizes for the OS-independent 
3600acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3601debug version of the code includes the debug output trace mechanism and 
3602has a 
3603much larger code and data size.
3604
3605  Previous Release:
3606    Non-Debug Version:  81.2K Code, 17.0K Data,  98.2K Total
3607    Debug Version:     155.8K Code, 49.1K Data, 204.9K Total
3608  Current Release:
3609    Non-Debug Version:  81.7K Code, 17.3K Data,  99.0K Total
3610    Debug Version:     156.4K Code, 49.4K Data, 205.8K Total
3611
36122) iASL Compiler/Disassembler and Tools:
3613
3614iASL: Improved disassembly of external method calls. Added the -e option 
3615to 
3616allow the inclusion of additional ACPI tables to help with the disassembly 
3617of 
3618method invocations and the generation of external declarations during the 
3619disassembly. Certain external method invocations cannot be disassembled 
3620properly without the actual declaration of the method. Use the -e option 
3621to 
3622include the table where the external method(s) are actually declared. Most 
3623useful for disassembling SSDTs that make method calls back to the master 
3624DSDT. Lin Ming. Example: To disassemble an SSDT with calls to DSDT:  iasl 
3625-d 
3626-e dsdt.aml ssdt1.aml
3627
3628iASL: Fix to allow references to aliases within ASL namepaths. Fixes a 
3629problem where the use of an alias within a namepath would result in a not 
3630found error or cause the compiler to fault. Also now allows forward 
3631references from the Alias operator itself. ACPICA BZ 738.
3632
3633----------------------------------------
363426 September 2008. Summary of changes for version 20080926:
3635
36361) ACPI CA Core Subsystem:
3637
3638Designed and implemented a mechanism to validate predefined ACPI methods 
3639and 
3640objects. This code validates the predefined ACPI objects (objects whose 
3641names 
3642start with underscore) that appear in the namespace, at the time they are 
3643evaluated. The argument count and the type of the returned object are 
3644validated against the ACPI specification. The purpose of this validation 
3645is 
3646to detect problems with the BIOS-implemented predefined ACPI objects 
3647before 
3648the results are returned to the ACPI-related drivers. Future enhancements 
3649may 
3650include actual repair of incorrect return objects where possible. Two new 
3651files are nspredef.c and acpredef.h.
3652
3653Fixed a fault in the AML parser if a memory allocation fails during the Op 
3654completion routine AcpiPsCompleteThisOp. Lin Ming. ACPICA BZ 492.
3655
3656Fixed an issue with implicit return compatibility. This change improves 
3657the 
3658implicit return mechanism to be more compatible with the MS interpreter. 
3659Lin 
3660Ming, ACPICA BZ 349.
3661
3662Implemented support for zero-length buffer-to-string conversions. Allow 
3663zero 
3664length strings during interpreter buffer-to-string conversions. For 
3665example, 
3666during the ToDecimalString and ToHexString operators, as well as implicit 
3667conversions. Fiodor Suietov, ACPICA BZ 585.
3668
3669Fixed two possible memory leaks in the error exit paths of 
3670AcpiUtUpdateObjectReference and AcpiUtWalkPackageTree. These functions are 
3671similar in that they use a stack of state objects in order to eliminate 
3672recursion. The stack must be fully unwound and deallocated if an error 
3673occurs. Lin Ming. ACPICA BZ 383.
3674
3675Removed the unused ACPI_BITREG_WAKE_ENABLE definition and entry in the 
3676global 
3677ACPI register table. This bit does not exist and is unused. Lin Ming, Bob 
3678Moore ACPICA BZ 442.
3679
3680Removed the obsolete version number in module headers. Removed the 
3681"$Revision" number that appeared in each module header. This version 
3682number 
3683was useful under SourceSafe and CVS, but has no meaning under git. It is 
3684not 
3685only incorrect, it could also be misleading.
3686
3687Example Code and Data Size: These are the sizes for the OS-independent 
3688acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3689debug version of the code includes the debug output trace mechanism and 
3690has a 
3691much larger code and data size.
3692
3693  Previous Release:
3694    Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
3695    Debug Version:     153.7K Code, 48.2K Data, 201.9K Total
3696  Current Release:
3697    Non-Debug Version:  81.2K Code, 17.0K Data,  98.2K Total
3698    Debug Version:     155.8K Code, 49.1K Data, 204.9K Total
3699
3700----------------------------------------
370129 August 2008. Summary of changes for version 20080829:
3702
37031) ACPI CA Core Subsystem:
3704
3705Completed a major cleanup of the internal ACPI_OPERAND_OBJECT of type 
3706Reference. Changes include the elimination of cheating on the Object field 
3707for the DdbHandle subtype, addition of a reference class field to 
3708differentiate the various reference types (instead of an AML opcode), and 
3709the 
3710cleanup of debug output for this object. Lin Ming, Bob Moore. BZ 723
3711
3712Reduce an error to a warning for an incorrect method argument count. 
3713Previously aborted with an error if too few arguments were passed to a 
3714control method via the external ACPICA interface. Now issue a warning 
3715instead 
3716and continue. Handles the case where the method inadvertently declares too 
3717many arguments, but does not actually use the extra ones. Applies mainly 
3718to 
3719the predefined methods. Lin Ming. Linux BZ 11032.
3720
3721Disallow the evaluation of named object types with no intrinsic value. 
3722Return 
3723AE_TYPE for objects that have no value and therefore evaluation is 
3724undefined: 
3725Device, Event, Mutex, Region, Thermal, and Scope. Previously, evaluation 
3726of 
3727these types were allowed, but an exception would be generated at some 
3728point 
3729during the evaluation. Now, the error is generated up front.
3730
3731Fixed a possible memory leak in the AcpiNsGetExternalPathname function 
3732(nsnames.c). Fixes a leak in the error exit path.
3733
3734Removed the obsolete debug levels ACPI_DB_WARN and ACPI_DB_ERROR. These 
3735debug 
3736levels were made obsolete by the ACPI_WARNING, ACPI_ERROR, and 
3737ACPI_EXCEPTION 
3738interfaces. Also added ACPI_DB_EVENTS to correspond with the existing 
3739ACPI_LV_EVENTS.
3740
3741Removed obsolete and/or unused exception codes from the acexcep.h header. 
3742There is the possibility that certain device drivers may be affected if 
3743they 
3744use any of these exceptions.
3745
3746The ACPICA documentation has been added to the public git source tree, 
3747under 
3748acpica/documents. Included are the ACPICA programmer reference, the iASL 
3749compiler reference, and the changes.txt release logfile.
3750
3751Example Code and Data Size: These are the sizes for the OS-independent 
3752acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3753debug version of the code includes the debug output trace mechanism and 
3754has a 
3755much larger code and data size.
3756
3757  Previous Release:
3758    Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
3759    Debug Version:     153.9K Code, 48.4K Data, 202.3K Total
3760  Current Release:
3761    Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
3762    Debug Version:     153.7K Code, 48.2K Data, 201.9K Total
3763
37642) iASL Compiler/Disassembler and Tools:
3765
3766Allow multiple argument counts for the predefined _SCP method. ACPI 3.0 
3767defines _SCP with 3 arguments. Previous versions defined it with only 1 
3768argument. iASL now allows both definitions.
3769
3770iASL/disassembler: avoid infinite loop on bad ACPI tables. Check for zero-
3771length subtables when disassembling ACPI tables. Also fixed a couple of 
3772errors where a full 16-bit table type field was not extracted from the 
3773input 
3774properly.
3775
3776acpisrc: Improve comment counting mechanism for generating source code 
3777statistics. Count first and last lines of multi-line comments as 
3778whitespace, 
3779not comment lines. Handle Linux legal header in addition to standard 
3780acpica 
3781header.
3782
3783----------------------------------------
3784
378529 July 2008. Summary of changes for version 20080729:
3786
37871) ACPI CA Core Subsystem:
3788
3789Fix a possible deadlock in the GPE dispatch. Remove call to 
3790AcpiHwDisableAllGpes during wake in AcpiEvGpeDispatch. This call will 
3791attempt 
3792to acquire the GPE lock but can deadlock since the GPE lock is already 
3793held 
3794at dispatch time. This code was introduced in version 20060831 as a 
3795response 
3796to Linux BZ 6881 and has since been removed from Linux.
3797
3798Add a function to dereference returned reference objects. Examines the 
3799return 
3800object from a call to AcpiEvaluateObject. Any Index or RefOf references 
3801are 
3802automatically dereferenced in an attempt to return something useful (these 
3803reference types cannot be converted into an external ACPI_OBJECT.) 
3804Provides 
3805MS compatibility. Lin Ming, Bob Moore. Linux BZ 11105
3806
3807x2APIC support: changes for MADT and SRAT ACPI tables. There are 2 new 
3808subtables for the MADT and one new subtable for the SRAT. Includes 
3809disassembler and AcpiSrc support. Data from the Intel 64 Architecture 
3810x2APIC 
3811Specification, June 2008.
3812
3813Additional error checking for pathname utilities. Add error check after 
3814all 
3815calls to AcpiNsGetPathnameLength. Add status return from 
3816AcpiNsBuildExternalPath and check after all calls. Add parameter 
3817validation 
3818to AcpiUtInitializeBuffer. Reported by and initial patch by Ingo Molnar.
3819
3820Return status from the global init function AcpiUtGlobalInitialize. This 
3821is 
3822used by both the kernel subsystem and the utilities such as iASL compiler. 
3823The function could possibly fail when the caches are initialized. Yang Yi.
3824
3825Add a function to decode reference object types to strings. Created for 
3826improved error messages. 
3827
3828Improve object conversion error messages. Better error messages during 
3829object 
3830conversion from internal to the external ACPI_OBJECT. Used for external 
3831calls 
3832to AcpiEvaluateObject.
3833
3834Example Code and Data Size: These are the sizes for the OS-independent 
3835acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3836debug version of the code includes the debug output trace mechanism and 
3837has a 
3838much larger code and data size.
3839
3840  Previous Release:
3841    Non-Debug Version:  79.6K Code, 16.2K Data,  95.8K Total
3842    Debug Version:     153.5K Code, 48.2K Data, 201.7K Total
3843  Current Release:
3844    Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
3845    Debug Version:     153.9K Code, 48.4K Data, 202.3K Total
3846
38472) iASL Compiler/Disassembler and Tools:
3848
3849Debugger: fix a possible hang when evaluating non-methods. Fixes a problem 
3850introduced in version 20080701. If the object being evaluated (via execute 
3851command) is not a method, the debugger can hang while trying to obtain 
3852non-
3853existent parameters.
3854
3855iASL: relax error for using reserved "_T_x" identifiers. These names can 
3856appear in a disassembled ASL file if they were emitted by the original 
3857compiler. Instead of issuing an error or warning and forcing the user to 
3858manually change these names, issue a remark instead.
3859
3860iASL: error if named object created in while loop. Emit an error if any 
3861named 
3862object is created within a While loop. If allowed, this code will generate 
3863a 
3864run-time error on the second iteration of the loop when an attempt is made 
3865to 
3866create the same named object twice. ACPICA bugzilla 730.
3867
3868iASL: Support absolute pathnames for include files. Add support for 
3869absolute 
3870pathnames within the Include operator. previously, only relative pathnames 
3871were supported.
3872
3873iASL: Enforce minimum 1 interrupt in interrupt macro and Resource 
3874Descriptor. 
3875The ACPI spec requires one interrupt minimum. BZ 423
3876
3877iASL: Handle a missing ResourceSource arg, with a present SourceIndex. 
3878Handles the case for the Interrupt Resource Descriptor where
3879the ResourceSource argument is omitted but ResourceSourceIndex
3880is present. Now leave room for the Index. BZ 426
3881
3882iASL: Prevent error message if CondRefOf target does not exist. Fixes 
3883cases 
3884where an error message is emitted if the target does not exist. BZ 516
3885
3886iASL: Fix broken -g option (get Windows ACPI tables). Fixes the -g option 
3887(get ACPI tables on Windows). This was apparently broken in version 
388820070919.
3889
3890AcpiXtract: Handle EOF while extracting data. Correctly handle the case 
3891where 
3892the EOF happens immediately after the last table in the input file. Print 
3893completion message. Previously, no message was displayed in this case.
3894
3895----------------------------------------
389601 July 2008. Summary of changes for version 20080701:
3897
38980) Git source tree / acpica.org
3899
3900Fixed a problem where a git-clone from http would not transfer the entire 
3901source tree.
3902
39031) ACPI CA Core Subsystem:
3904
3905Implemented a "careful" GPE disable in AcpiEvDisableGpe, only modify one 
3906enable bit. Now performs a read-change-write of the enable register 
3907instead 
3908of simply writing out the cached enable mask. This will prevent 
3909inadvertent 
3910enabling of GPEs if a rogue GPE is received during initialization (before 
3911GPE 
3912handlers are installed.)
3913
3914Implemented a copy for dynamically loaded tables. Previously, dynamically 
3915loaded tables were simply mapped - but on some machines this memory is 
3916corrupted after suspend. Now copy the table to a local buffer. For the 
3917OpRegion case, added checksum verify. Use the table length from the table 
3918header, not the region length. For the Buffer case, use the table length 
3919also. Dennis Noordsij, Bob Moore. BZ 10734
3920
3921Fixed a problem where the same ACPI table could not be dynamically loaded 
3922and 
3923unloaded more than once. Without this change, a table cannot be loaded 
3924again 
3925once it has been loaded/unloaded one time. The current mechanism does not 
3926unregister a table upon an unload. During a load, if the same table is 
3927found, 
3928this no longer returns an exception. BZ 722
3929
3930Fixed a problem where the wrong descriptor length was calculated for the 
3931EndTag descriptor in 64-bit mode. The "minimal" descriptors such as EndTag 
3932are calculated as 12 bytes long, but the actual length in the internal 
3933descriptor is 16 because of the round-up to 8 on the 64-bit build. 
3934Reported 
3935by Linn Crosetto. BZ 728
3936
3937Fixed a possible memory leak in the Unload operator. The DdbHandle 
3938returned 
3939by Load() did not have its reference count decremented during unload, 
3940leading 
3941to a memory leak. Lin Ming. BZ 727
3942
3943Fixed a possible memory leak when deleting thermal/processor objects. Any 
3944associated notify handlers (and objects) were not being deleted. Fiodor 
3945Suietov. BZ 506
3946
3947Fixed the ordering of the ASCII names in the global mutex table to match 
3948the 
3949actual mutex IDs. Used by AcpiUtGetMutexName, a function used for debug 
3950only. 
3951Vegard Nossum. BZ 726
3952
3953Enhanced the AcpiGetObjectInfo interface to return the number of required 
3954arguments if the object is a control method. Added this call to the 
3955debugger 
3956so the proper number of default arguments are passed to a method. This 
3957prevents a warning when executing methods from AcpiExec.
3958
3959Added a check for an invalid handle in AcpiGetObjectInfo. Return 
3960AE_BAD_PARAMETER if input handle is invalid. BZ 474
3961
3962Fixed an extraneous warning from exconfig.c on the 64-bit build.
3963
3964Example Code and Data Size: These are the sizes for the OS-independent 
3965acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3966debug version of the code includes the debug output trace mechanism and 
3967has a 
3968much larger code and data size.
3969
3970  Previous Release:
3971    Non-Debug Version:  79.3K Code, 16.2K Data,  95.5K Total
3972    Debug Version:     153.0K Code, 48.2K Data, 201.2K Total
3973  Current Release:
3974    Non-Debug Version:  79.6K Code, 16.2K Data,  95.8K Total
3975    Debug Version:     153.5K Code, 48.2K Data, 201.7K Total
3976
39772) iASL Compiler/Disassembler and Tools:
3978
3979iASL: Added two missing ACPI reserved names. Added _MTP and _ASZ, both 
3980resource descriptor names.
3981
3982iASL: Detect invalid ASCII characters in input (windows version). Removed 
3983the 
3984"-CF" flag from the flex compile, enables correct detection of non-ASCII 
3985characters in the input. BZ 441
3986
3987iASL: Eliminate warning when result of LoadTable is not used. Eliminate 
3988the 
3989"result of operation not used" warning when the DDB handle returned from 
3990LoadTable is not used. The warning is not needed. BZ 590
3991
3992AcpiExec: Add support for dynamic table load/unload. Now calls _CFG method 
3993to 
3994pass address of table to the AML. Added option to disable OpRegion 
3995simulation 
3996to allow creation of an OpRegion with a real address that was passed to 
3997_CFG. 
3998All of this allows testing of the Load and Unload operators from AcpiExec.
3999
4000Debugger: update tables command for unloaded tables. Handle unloaded 
4001tables 
4002and use the standard table header output routine.
4003
4004----------------------------------------
400509 June 2008. Summary of changes for version 20080609:
4006
40071) ACPI CA Core Subsystem:
4008
4009Implemented a workaround for reversed _PRT entries. A significant number 
4010of 
4011BIOSs erroneously reverse the _PRT SourceName and the SourceIndex. This 
4012change dynamically detects and repairs this problem. Provides 
4013compatibility 
4014with MS ACPI. BZ 6859
4015
4016Simplified the internal ACPI hardware interfaces to eliminate the locking 
4017flag parameter from Register Read/Write. Added a new external interface, 
4018AcpiGetRegisterUnlocked.
4019
4020Fixed a problem where the invocation of a GPE control method could hang. 
4021This 
4022was a regression introduced in 20080514. The new method argument count 
4023validation mechanism can enter an infinite loop when a GPE method is 
4024dispatched. Problem fixed by removing the obsolete code that passed GPE 
4025block 
4026information to the notify handler via the control method parameter 
4027pointer.
4028
4029Fixed a problem where the _SST execution status was incorrectly returned 
4030to 
4031the caller of AcpiEnterSleepStatePrep. This was a regression introduced in 
403220080514. _SST is optional and a NOT_FOUND exception should never be 
4033returned. BZ 716
4034
4035Fixed a problem where a deleted object could be accessed from within the 
4036AML 
4037parser. This was a regression introduced in version 20080123 as a fix for 
4038the 
4039Unload operator. Lin Ming. BZ 10669
4040
4041Cleaned up the debug operand dump mechanism. Eliminated unnecessary 
4042operands 
4043and eliminated the use of a negative index in a loop. Operands are now 
4044displayed in the correct order, not backwards. This also fixes a 
4045regression 
4046introduced in 20080514 on 64-bit systems where the elimination of 
4047ACPI_NATIVE_UINT caused the negative index to go large and positive. BZ 
4048715
4049
4050Fixed a possible memory leak in EvPciConfigRegionSetup where the error 
4051exit 
4052path did not delete a locally allocated structure.
4053
4054Updated definitions for the DMAR and SRAT tables to synchronize with the 
4055current specifications. Includes disassembler support.
4056
4057Fixed a problem in the mutex debug code (in utmutex.c) where an incorrect 
4058loop termination value was used. Loop terminated on iteration early, 
4059missing 
4060one mutex. Linn Crosetto
4061
4062Example Code and Data Size: These are the sizes for the OS-independent 
4063acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4064debug version of the code includes the debug output trace mechanism and 
4065has a 
4066much larger code and data size.
4067
4068  Previous Release:
4069    Non-Debug Version:  79.5K Code, 16.2K Data,  95.7K Total
4070    Debug Version:     153.3K Code, 48.3K Data, 201.6K Total
4071  Current Release:
4072    Non-Debug Version:  79.3K Code, 16.2K Data,  95.5K Total
4073    Debug Version:     153.0K Code, 48.2K Data, 201.2K Total
4074
40752) iASL Compiler/Disassembler and Tools:
4076
4077Disassembler: Implemented support for EisaId() within _CID objects. Now 
4078disassemble integer _CID objects back to EisaId invocations, including 
4079multiple integers within _CID packages. Includes single-step support for 
4080debugger also.
4081
4082Disassembler: Added support for DMAR and SRAT table definition changes.
4083
4084----------------------------------------
408514 May 2008. Summary of changes for version 20080514:
4086
40871) ACPI CA Core Subsystem:
4088
4089Fixed a problem where GPEs were enabled too early during the ACPICA 
4090initialization. This could lead to "handler not installed" errors on some 
4091machines. Moved GPE enable until after _REG/_STA/_INI methods are run. 
4092This 
4093ensures that all operation regions and devices throughout the namespace 
4094have 
4095been initialized before GPEs are enabled. Alexey Starikovskiy, BZ 9916.
4096
4097Implemented a change to the enter sleep code. Moved execution of the _GTS 
4098method to just before setting sleep enable bit. The execution was moved 
4099from 
4100AcpiEnterSleepStatePrep to AcpiEnterSleepState. _GTS is now executed 
4101immediately before the SLP_EN bit is set, as per the ACPI specification. 
4102Luming Yu, BZ 1653.
4103
4104Implemented a fix to disable unknown GPEs (2nd version). Now always 
4105disable 
4106the GPE, even if ACPICA thinks that that it is already disabled. It is 
4107possible that the AML or some other code has enabled the GPE unbeknownst 
4108to 
4109the ACPICA code.
4110
4111Fixed a problem with the Field operator where zero-length fields would 
4112return 
4113an AE_AML_NO_OPERAND exception during table load. Fix enables zero-length 
4114ASL 
4115field declarations in Field(), BankField(), and IndexField(). BZ 10606.
4116
4117Implemented a fix for the Load operator, now load the table at the 
4118namespace 
4119root. This reverts a change introduced in version 20071019. The table is 
4120now 
4121loaded at the namespace root even though this goes against the ACPI 
4122specification. This provides compatibility with other ACPI 
4123implementations. 
4124The ACPI specification will be updated to reflect this in ACPI 4.0. Lin 
4125Ming.
4126
4127Fixed a problem where ACPICA would not Load() tables with unusual 
4128signatures. 
4129Now ignore ACPI table signature for Load() operator. Only "SSDT" is 
4130acceptable to the ACPI spec, but tables are seen with OEMx and null sigs. 
4131Therefore, signature validation is worthless. Apparently MS ACPI accepts 
4132such 
4133signatures, ACPICA must be compatible. BZ 10454.
4134
4135Fixed a possible negative array index in AcpiUtValidateException. Added 
4136NULL 
4137fields to the exception string arrays to eliminate a -1 subtraction on the 
4138SubStatus field.
4139
4140Updated the debug tracking macros to reduce overall code and data size. 
4141Changed ACPI_MODULE_NAME and ACPI_FUNCTION_NAME to use arrays of strings 
4142instead of pointers to static strings. Jan Beulich and Bob Moore.
4143
4144Implemented argument count checking in control method invocation via 
4145AcpiEvaluateObject. Now emit an error if too few arguments, warning if too 
4146many. This applies only to extern programmatic control method execution, 
4147not 
4148method-to-method calls within the AML. Lin Ming.
4149
4150Eliminated the ACPI_NATIVE_UINT type across all ACPICA code. This type is 
4151no 
4152longer needed, especially with the removal of 16-bit support. It was 
4153replaced 
4154mostly with UINT32, but also ACPI_SIZE where a type that changes 32/64 bit 
4155on 
415632/64-bit platforms is required.
4157
4158Added the C const qualifier for appropriate string constants -- mostly 
4159MODULE_NAME and printf format strings. Jan Beulich.
4160
4161Example Code and Data Size: These are the sizes for the OS-independent 
4162acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4163debug version of the code includes the debug output trace mechanism and 
4164has a 
4165much larger code and data size.
4166
4167  Previous Release:
4168    Non-Debug Version:  80.0K Code, 17.4K Data,  97.4K Total
4169    Debug Version:     159.4K Code, 64.4K Data, 223.8K Total
4170  Current Release:
4171    Non-Debug Version:  79.5K Code, 16.2K Data,  95.7K Total
4172    Debug Version:     153.3K Code, 48.3K Data, 201.6K Total
4173
41742) iASL Compiler/Disassembler and Tools:
4175
4176Implemented ACPI table revision ID validation in the disassembler. Zero is 
4177always invalid. For DSDTs, the ID controls the interpreter integer width. 
41781 
4179means 32-bit and this is unusual. 2 or greater is 64-bit.
4180
4181----------------------------------------
418221 March 2008. Summary of changes for version 20080321:
4183
41841) ACPI CA Core Subsystem:
4185
4186Implemented an additional change to the GPE support in order to suppress 
4187spurious or stray GPEs. The AcpiEvDisableGpe function will now permanently 
4188disable incoming GPEs that are neither enabled nor disabled -- meaning 
4189that 
4190the GPE is unknown to the system. This should prevent future interrupt 
4191floods 
4192from that GPE. BZ 6217 (Zhang Rui)
4193
4194Fixed a problem where NULL package elements were not returned to the 
4195AcpiEvaluateObject interface correctly. The element was simply ignored 
4196instead of returning a NULL ACPI_OBJECT package element, potentially 
4197causing 
4198a buffer overflow and/or confusing the caller who expected a fixed number 
4199of 
4200elements. BZ 10132 (Lin Ming, Bob Moore)
4201
4202Fixed a problem with the CreateField, CreateXXXField (Bit, Byte, Word, 
4203Dword, 
4204Qword), Field, BankField, and IndexField operators when invoked from 
4205inside 
4206an executing control method. In this case, these operators created 
4207namespace 
4208nodes that were incorrectly left marked as permanent nodes instead of 
4209temporary nodes. This could cause a problem if there is race condition 
4210between an exiting control method and a running namespace walk. (Reported 
4211by 
4212Linn Crosetto)
4213
4214Fixed a problem where the CreateField and CreateXXXField operators would 
4215incorrectly allow duplicate names (the name of the field) with no 
4216exception 
4217generated.
4218
4219Implemented several changes for Notify handling. Added support for new 
4220Notify 
4221values (ACPI 2.0+) and improved the Notify debug output. Notify on 
4222PowerResource objects is no longer allowed, as per the ACPI specification. 
4223(Bob Moore, Zhang Rui)
4224
4225All Reference Objects returned via the AcpiEvaluateObject interface are 
4226now 
4227marked as type "REFERENCE" instead of "ANY". The type ANY is now reserved 
4228for 
4229NULL objects - either NULL package elements or unresolved named 
4230references.
4231
4232Fixed a problem where an extraneous debug message was produced for package 
4233objects (when debugging enabled). The message "Package List length larger 
4234than NumElements count" is now produced in the correct case, and is now an 
4235error message rather than a debug message. Added a debug message for the 
4236opposite case, where NumElements is larger than the Package List (the 
4237package 
4238will be padded out with NULL elements as per the ACPI spec.)
4239
4240Implemented several improvements for the output of the ASL "Debug" object 
4241to 
4242clarify and keep all data for a given object on one output line.
4243
4244Fixed two size calculation issues with the variable-length Start Dependent 
4245resource descriptor.
4246
4247Example Code and Data Size: These are the sizes for the OS-independent 
4248acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4249debug version of the code includes the debug output trace mechanism and 
4250has 
4251a much larger code and data size.
4252
4253  Previous Release:
4254    Non-Debug Version:  79.7K Code, 17.3K Data,  97.0K Total
4255    Debug Version:     158.9K Code, 64.0K Data, 222.9K Total
4256  Current Release:
4257    Non-Debug Version:  80.0K Code, 17.4K Data,  97.4K Total
4258    Debug Version:     159.4K Code, 64.4K Data, 223.8K Total
4259
42602) iASL Compiler/Disassembler and Tools:
4261
4262Fixed a problem with the use of the Switch operator where execution of the 
4263containing method by multiple concurrent threads could cause an 
4264AE_ALREADY_EXISTS exception. This is caused by the fact that there is no 
4265actual Switch opcode, it must be simulated with local named temporary 
4266variables and if/else pairs. The solution chosen was to mark any method 
4267that 
4268uses Switch as Serialized, thus preventing multiple thread entries. BZ 
4269469.
4270
4271----------------------------------------
427213 February 2008. Summary of changes for version 20080213:
4273
42741) ACPI CA Core Subsystem:
4275
4276Implemented another MS compatibility design change for GPE/Notify 
4277handling. 
4278GPEs are now cleared/enabled asynchronously to allow all pending notifies 
4279to 
4280complete first. It is expected that the OSL will queue the enable request 
4281behind all pending notify requests (may require changes to the local host 
4282OSL 
4283in AcpiOsExecute). Alexey Starikovskiy.
4284
4285Fixed a problem where buffer and package objects passed as arguments to a 
4286control method via the external AcpiEvaluateObject interface could cause 
4287an 
4288AE_AML_INTERNAL exception depending on the order and type of operators 
4289executed by the target control method.
4290
4291Fixed a problem where resource descriptor size optimization could cause a 
4292problem when a _CRS resource template is passed to a _SRS method. The _SRS 
4293resource template must use the same descriptors (with the same size) as 
4294returned from _CRS. This change affects the following resource 
4295descriptors: 
4296IRQ / IRQNoFlags and StartDependendentFn / StartDependentFnNoPri. (BZ 
42979487)
4298
4299Fixed a problem where a CopyObject to RegionField, BankField, and 
4300IndexField 
4301objects did not perform an implicit conversion as it should. These types 
4302must 
4303retain their initial type permanently as per the ACPI specification. 
4304However, 
4305a CopyObject to all other object types should not perform an implicit 
4306conversion, as per the ACPI specification. (Lin Ming, Bob Moore) BZ 388
4307
4308Fixed a problem with the AcpiGetDevices interface where the mechanism to 
4309match device CIDs did not examine the entire list of available CIDs, but 
4310instead aborted on the first non-matching CID. Andrew Patterson.
4311
4312Fixed a regression introduced in version 20071114. The ACPI_HIDWORD macro 
4313was 
4314inadvertently changed to return a 16-bit value instead of a 32-bit value, 
4315truncating the upper dword of a 64-bit value. This macro is only used to 
4316display debug output, so no incorrect calculations were made. Also, 
4317reimplemented the macro so that a 64-bit shift is not performed by 
4318inefficient compilers.
4319
4320Added missing va_end statements that should correspond with each va_start 
4321statement.
4322
4323Example Code and Data Size: These are the sizes for the OS-independent 
4324acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4325debug version of the code includes the debug output trace mechanism and 
4326has 
4327a much larger code and data size.
4328
4329  Previous Release:
4330    Non-Debug Version:  79.5K Code, 17.2K Data,  96.7K Total
4331    Debug Version:     159.0K Code, 63.8K Data, 222.8K Total
4332  Current Release:
4333    Non-Debug Version:  79.7K Code, 17.3K Data,  97.0K Total
4334    Debug Version:     158.9K Code, 64.0K Data, 222.9K Total
4335
43362) iASL Compiler/Disassembler and Tools:
4337
4338Implemented full disassembler support for the following new ACPI tables: 
4339BERT, EINJ, and ERST. Implemented partial disassembler support for the 
4340complicated HEST table. These tables support the Windows Hardware Error 
4341Architecture (WHEA).
4342
4343----------------------------------------
434423 January 2008. Summary of changes for version 20080123:
4345
43461) ACPI CA Core Subsystem:
4347
4348Added the 2008 copyright to all module headers and signons. This affects 
4349virtually every file in the ACPICA core subsystem, the iASL compiler, and 
4350the tools/utilities.
4351
4352Fixed a problem with the SizeOf operator when used with Package and Buffer 
4353objects. These objects have deferred execution for some arguments, and the 
4354execution is now completed before the SizeOf is executed. This problem 
4355caused 
4356unexpected AE_PACKAGE_LIMIT errors on some systems (Lin Ming, Bob Moore) 
4357BZ 
43589558
4359
4360Implemented an enhancement to the interpreter "slack mode". In the absence 
4361of 
4362an explicit return or an implicitly returned object from the last executed 
4363opcode, a control method will now implicitly return an integer of value 0 
4364for 
4365Microsoft compatibility. (Lin Ming) BZ 392
4366
4367Fixed a problem with the Load operator where an exception was not returned 
4368in 
4369the case where the table is already loaded. (Lin Ming) BZ 463
4370
4371Implemented support for the use of DDBHandles as an Indexed Reference, as 
4372per 
4373the ACPI spec. (Lin Ming) BZ 486
4374
4375Implemented support for UserTerm (Method invocation) for the Unload 
4376operator 
4377as per the ACPI spec. (Lin Ming) BZ 580
4378
4379Fixed a problem with the LoadTable operator where the OemId and OemTableId 
4380input strings could cause unexpected failures if they were shorter than 
4381the 
4382maximum lengths allowed. (Lin Ming, Bob Moore) BZ 576
4383
4384Implemented support for UserTerm (Method invocation) for the Unload 
4385operator 
4386as per the ACPI spec. (Lin Ming) BZ 580
4387
4388Implemented header file support for new ACPI tables - BERT, ERST, EINJ, 
4389HEST, 
4390IBFT, UEFI, WDAT. Disassembler support is forthcoming.
4391
4392Example Code and Data Size: These are the sizes for the OS-independent 
4393acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4394debug version of the code includes the debug output trace mechanism and 
4395has 
4396a much larger code and data size.
4397
4398  Previous Release:
4399    Non-Debug Version:  79.3K Code, 17.2K Data,  96.5K Total
4400    Debug Version:     158.6K Code, 63.8K Data, 222.4K Total
4401  Current Release:
4402    Non-Debug Version:  79.5K Code, 17.2K Data,  96.7K Total
4403    Debug Version:     159.0K Code, 63.8K Data, 222.8K Total
4404
44052) iASL Compiler/Disassembler and Tools:
4406
4407Implemented support in the disassembler for checksum validation on 
4408incoming 
4409binary DSDTs and SSDTs. If incorrect, a message is displayed within the 
4410table 
4411header dump at the start of the disassembly.
4412
4413Implemented additional debugging information in the namespace listing file 
4414created during compilation. In addition to the namespace hierarchy, the 
4415full 
4416pathname to each namespace object is displayed.
4417
4418Fixed a problem with the disassembler where invalid ACPI tables could 
4419cause 
4420faults or infinite loops.
4421
4422Fixed an unexpected parse error when using the optional "parameter types" 
4423list in a control method declaration. (Lin Ming) BZ 397
4424
4425Fixed a problem where two External declarations with the same name did not 
4426cause an error (Lin Ming) BZ 509
4427
4428Implemented support for full TermArgs (adding Argx, Localx and method 
4429invocation) for the ParameterData parameter to the LoadTable operator. 
4430(Lin 
4431Ming) BZ 583,587
4432
4433----------------------------------------
443419 December 2007. Summary of changes for version 20071219:
4435
44361) ACPI CA Core Subsystem:
4437
4438Implemented full support for deferred execution for the TermArg string 
4439arguments for DataTableRegion. This enables forward references and full 
4440operand resolution for the three string arguments. Similar to 
4441OperationRegion 
4442deferred argument execution.) Lin Ming. BZ 430
4443
4444Implemented full argument resolution support for the BankValue argument to 
4445BankField. Previously, only constants were supported, now any TermArg may 
4446be 
4447used. Lin Ming BZ 387, 393
4448
4449Fixed a problem with AcpiGetDevices where the search of a branch of the 
4450device tree could be terminated prematurely. In accordance with the ACPI 
4451specification, the search down the current branch is terminated if a 
4452device 
4453is both not present and not functional (instead of just not present.) 
4454Yakui 
4455Zhao.
4456
4457Fixed a problem where "unknown" GPEs could be allowed to fire repeatedly 
4458if 
4459the underlying AML code changed the GPE enable registers. Now, any unknown 
4460incoming GPE (no _Lxx/_Exx method and not the EC GPE) is immediately 
4461disabled 
4462instead of simply ignored. Rui Zhang.
4463
4464Fixed a problem with Index Fields where the Index register was incorrectly 
4465limited to a maximum of 32 bits. Now any size may be used.
4466
4467Fixed a couple memory leaks associated with "implicit return" objects when 
4468the AML Interpreter slack mode is enabled. Lin Ming BZ 349
4469
4470Example Code and Data Size: These are the sizes for the OS-independent 
4471acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4472debug version of the code includes the debug output trace mechanism and 
4473has 
4474a much larger code and data size.
4475
4476  Previous Release:
4477    Non-Debug Version:  79.0K Code, 17.2K Data,  96.2K Total
4478    Debug Version:     157.9K Code, 63.6K Data, 221.5K Total
4479  Current Release:
4480    Non-Debug Version:  79.3K Code, 17.2K Data,  96.5K Total
4481    Debug Version:     158.6K Code, 63.8K Data, 222.4K Total
4482
4483----------------------------------------
448414 November 2007. Summary of changes for version 20071114:
4485
44861) ACPI CA Core Subsystem:
4487
4488Implemented event counters for each of the Fixed Events, the ACPI SCI 
4489(interrupt) itself, and control methods executed. Named 
4490AcpiFixedEventCount[], AcpiSciCount, and AcpiMethodCount respectively. 
4491These 
4492should be useful for debugging and statistics.
4493
4494Implemented a new external interface, AcpiGetStatistics, to retrieve the 
4495contents of the various event counters. Returns the current values for 
4496AcpiSciCount, AcpiGpeCount, the AcpiFixedEventCount array, and 
4497AcpiMethodCount. The interface can be expanded in the future if new 
4498counters 
4499are added. Device drivers should use this interface rather than access the 
4500counters directly.
4501
4502Fixed a problem with the FromBCD and ToBCD operators. With some compilers, 
4503the ShortDivide function worked incorrectly, causing problems with the BCD 
4504functions with large input values. A truncation from 64-bit to 32-bit 
4505inadvertently occurred. Internal BZ 435. Lin Ming
4506
4507Fixed a problem with Index references passed as method arguments. 
4508References 
4509passed as arguments to control methods were dereferenced immediately 
4510(before 
4511control was passed to the called method). The references are now correctly 
4512passed directly to the called method. BZ 5389. Lin Ming
4513
4514Fixed a problem with CopyObject used in conjunction with the Index 
4515operator. 
4516The reference was incorrectly dereferenced before the copy. The reference 
4517is 
4518now correctly copied. BZ 5391. Lin Ming
4519
4520Fixed a problem with Control Method references within Package objects. 
4521These 
4522references are now correctly generated. This completes the package 
4523construction overhaul that began in version 20071019.
4524
4525Example Code and Data Size: These are the sizes for the OS-independent 
4526acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4527debug version of the code includes the debug output trace mechanism and 
4528has 
4529a much larger code and data size.
4530
4531  Previous Release:
4532    Non-Debug Version:  78.8K Code, 17.2K Data,  96.0K Total
4533    Debug Version:     157.2K Code, 63.4K Data, 220.6K Total
4534  Current Release:
4535    Non-Debug Version:  79.0K Code, 17.2K Data,  96.2K Total
4536    Debug Version:     157.9K Code, 63.6K Data, 221.5K Total
4537
4538
45392) iASL Compiler/Disassembler and Tools:
4540
4541The AcpiExec utility now installs handlers for all of the predefined 
4542Operation Region types. New types supported are: PCI_Config, CMOS, and 
4543PCIBARTarget.
4544
4545Fixed a problem with the 64-bit version of AcpiExec where the extended 
4546(64-
4547bit) address fields for the DSDT and FACS within the FADT were not being 
4548used, causing truncation of the upper 32-bits of these addresses. Lin Ming 
4549and Bob Moore
4550
4551----------------------------------------
455219 October 2007. Summary of changes for version 20071019:
4553
45541) ACPI CA Core Subsystem:
4555
4556Fixed a problem with the Alias operator when the target of the alias is a 
4557named ASL operator that opens a new scope -- Scope, Device, PowerResource, 
4558Processor, and ThermalZone. In these cases, any children of the original 
4559operator could not be accessed via the alias, potentially causing 
4560unexpected 
4561AE_NOT_FOUND exceptions. (BZ 9067)
4562
4563Fixed a problem with the Package operator where all named references were 
4564created as object references and left otherwise unresolved. According to 
4565the 
4566ACPI specification, a Package can only contain Data Objects or references 
4567to 
4568control methods. The implication is that named references to Data Objects 
4569(Integer, Buffer, String, Package, BufferField, Field) should be resolved 
4570immediately upon package creation. This is the approach taken with this 
4571change. References to all other named objects (Methods, Devices, Scopes, 
4572etc.) are all now properly created as reference objects. (BZ 5328)
4573
4574Reverted a change to Notify handling that was introduced in version 
457520070508. This version changed the Notify handling from asynchronous to 
4576fully synchronous (Device driver Notify handling with respect to the 
4577Notify 
4578ASL operator). It was found that this change caused more problems than it 
4579solved and was removed by most users.
4580
4581Fixed a problem with the Increment and Decrement operators where the type 
4582of 
4583the target object could be unexpectedly and incorrectly changed. (BZ 353) 
4584Lin Ming.
4585
4586Fixed a problem with the Load and LoadTable operators where the table 
4587location within the namespace was ignored. Instead, the table was always 
4588loaded into the root or current scope. Lin Ming.
4589
4590Fixed a problem with the Load operator when loading a table from a buffer 
4591object. The input buffer was prematurely zeroed and/or deleted. (BZ 577)
4592
4593Fixed a problem with the Debug object where a store of a DdbHandle 
4594reference 
4595object to the Debug object could cause a fault.
4596
4597Added a table checksum verification for the Load operator, in the case 
4598where 
4599the load is from a buffer. (BZ 578).
4600
4601Implemented additional parameter validation for the LoadTable operator. 
4602The 
4603length of the input strings SignatureString, OemIdString, and OemTableId 
4604are 
4605now checked for maximum lengths. (BZ 582) Lin Ming.
4606
4607Example Code and Data Size: These are the sizes for the OS-independent 
4608acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4609debug version of the code includes the debug output trace mechanism and 
4610has 
4611a much larger code and data size.
4612
4613  Previous Release:
4614    Non-Debug Version:  78.5K Code, 17.1K Data,  95.6K Total
4615    Debug Version:     156.7K Code, 63.2K Data, 219.9K Total
4616  Current Release:
4617    Non-Debug Version:  78.8K Code, 17.2K Data,  96.0K Total
4618    Debug Version:     157.2K Code, 63.4K Data, 220.6K Total
4619
4620
46212) iASL Compiler/Disassembler:
4622
4623Fixed a problem where if a single file was specified and the file did not 
4624exist, no error message was emitted. (Introduced with wildcard support in 
4625version 20070917.)
4626
4627----------------------------------------
462819 September 2007. Summary of changes for version 20070919:
4629
46301) ACPI CA Core Subsystem:
4631
4632Designed and implemented new external interfaces to install and remove 
4633handlers for ACPI table-related events. Current events that are defined 
4634are 
4635LOAD and UNLOAD. These interfaces allow the host to track ACPI tables as 
4636they are dynamically loaded and unloaded. See AcpiInstallTableHandler and 
4637AcpiRemoveTableHandler. (Lin Ming and Bob Moore)
4638
4639Fixed a problem where the use of the AcpiGbl_AllMethodsSerialized flag 
4640(acpi_serialized option on Linux) could cause some systems to hang during 
4641initialization. (Bob Moore) BZ 8171
4642
4643Fixed a problem where objects of certain types (Device, ThermalZone, 
4644Processor, PowerResource) can be not found if they are declared and 
4645referenced from within the same control method (Lin Ming) BZ 341
4646
4647Example Code and Data Size: These are the sizes for the OS-independent 
4648acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4649debug version of the code includes the debug output trace mechanism and 
4650has 
4651a much larger code and data size.
4652
4653  Previous Release:
4654    Non-Debug Version:  78.3K Code, 17.0K Data,  95.3K Total
4655    Debug Version:     156.3K Code, 63.1K Data, 219.4K Total
4656  Current Release:
4657    Non-Debug Version:  78.5K Code, 17.1K Data,  95.6K Total
4658    Debug Version:     156.7K Code, 63.2K Data, 219.9K Total
4659
4660
46612) iASL Compiler/Disassembler:
4662
4663Implemented support to allow multiple files to be compiled/disassembled in 
4664a 
4665single invocation. This includes command line wildcard support for both 
4666the 
4667Windows and Unix versions of the compiler. This feature simplifies the 
4668disassembly and compilation of multiple ACPI tables in a single directory.
4669
4670----------------------------------------
467108 May 2007. Summary of changes for version 20070508:
4672
46731) ACPI CA Core Subsystem:
4674
4675Implemented a Microsoft compatibility design change for the handling of 
4676the 
4677Notify AML operator. Previously, notify handlers were dispatched and 
4678executed completely asynchronously in a deferred thread. The new design 
4679still executes the notify handlers in a different thread, but the original 
4680thread that executed the Notify() now waits at a synchronization point for 
4681the notify handler to complete. Some machines depend on a synchronous 
4682Notify 
4683operator in order to operate correctly.
4684
4685Implemented support to allow Package objects to be passed as method 
4686arguments to the external AcpiEvaluateObject interface. Previously, this 
4687would return the AE_NOT_IMPLEMENTED exception. This feature had not been 
4688implemented since there were no reserved control methods that required it 
4689until recently.
4690
4691Fixed a problem with the internal FADT conversion where ACPI 1.0 FADTs 
4692that 
4693contained invalid non-zero values in reserved fields could cause later 
4694failures because these fields have meaning in later revisions of the FADT. 
4695For incoming ACPI 1.0 FADTs, these fields are now always zeroed. (The 
4696fields 
4697are: Preferred_PM_Profile, PSTATE_CNT, CST_CNT, and IAPC_BOOT_FLAGS.)
4698
4699Fixed a problem where the Global Lock handle was not properly updated if a 
4700thread that acquired the Global Lock via executing AML code then attempted 
4701to acquire the lock via the AcpiAcquireGlobalLock interface. Reported by 
4702Joe 
4703Liu.
4704
4705Fixed a problem in AcpiEvDeleteGpeXrupt where the global interrupt list 
4706could be corrupted if the interrupt being removed was at the head of the 
4707list. Reported by Linn Crosetto.
4708
4709Example Code and Data Size: These are the sizes for the OS-independent 
4710acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4711debug version of the code includes the debug output trace mechanism and 
4712has 
4713a much larger code and data size.
4714
4715  Previous Release:
4716    Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
4717    Debug Version:     155.9K Code, 63.1K Data, 219.0K Total
4718  Current Release:
4719    Non-Debug Version:  78.3K Code, 17.0K Data,  95.3K Total
4720    Debug Version:     156.3K Code, 63.1K Data, 219.4K Total
4721
4722----------------------------------------
472320 March 2007. Summary of changes for version 20070320:
4724
47251) ACPI CA Core Subsystem:
4726
4727Implemented a change to the order of interpretation and evaluation of AML 
4728operand objects within the AML interpreter. The interpreter now evaluates 
4729operands in the order that they appear in the AML stream (and the 
4730corresponding ASL code), instead of in the reverse order (after the entire 
4731operand list has been parsed). The previous behavior caused several subtle 
4732incompatibilities with the Microsoft AML interpreter as well as being 
4733somewhat non-intuitive. BZ 7871, local BZ 263. Valery Podrezov.
4734
4735Implemented a change to the ACPI Global Lock support. All interfaces to 
4736the 
4737global lock now allow the same thread to acquire the lock multiple times. 
4738This affects the AcpiAcquireGlobalLock external interface to the global 
4739lock 
4740as well as the internal use of the global lock to support AML fields -- a 
4741control method that is holding the global lock can now simultaneously 
4742access 
4743AML fields that require global lock protection. Previously, in both cases, 
4744this would have resulted in an AE_ALREADY_ACQUIRED exception. The change 
4745to 
4746AcpiAcquireGlobalLock is of special interest to drivers for the Embedded 
4747Controller. There is no change to the behavior of the AML Acquire 
4748operator, 
4749as this can already be used to acquire a mutex multiple times by the same 
4750thread. BZ 8066. With assistance from Alexey Starikovskiy.
4751
4752Fixed a problem where invalid objects could be referenced in the AML 
4753Interpreter after error conditions. During operand evaluation, ensure that 
4754the internal "Return Object" field is cleared on error and only valid 
4755pointers are stored there. Caused occasional access to deleted objects 
4756that 
4757resulted in "large reference count" warning messages. Valery Podrezov.
4758
4759Fixed a problem where an AE_STACK_OVERFLOW internal exception could occur 
4760on 
4761deeply nested control method invocations. BZ 7873, local BZ 487. Valery 
4762Podrezov.
4763
4764Fixed an internal problem with the handling of result objects on the 
4765interpreter result stack. BZ 7872. Valery Podrezov.
4766
4767Removed obsolete code that handled the case where AML_NAME_OP is the 
4768target 
4769of a reference (Reference.Opcode). This code was no longer necessary. BZ 
47707874. Valery Podrezov.
4771
4772Removed obsolete ACPI_NO_INTEGER64_SUPPORT from two header files. This was 
4773a 
4774remnant from the previously discontinued 16-bit support.
4775
4776Example Code and Data Size: These are the sizes for the OS-independent 
4777acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4778debug version of the code includes the debug output trace mechanism and 
4779has 
4780a much larger code and data size.
4781
4782  Previous Release:
4783    Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
4784    Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
4785  Current Release:
4786    Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
4787    Debug Version:     155.9K Code, 63.1K Data, 219.0K Total
4788
4789----------------------------------------
479026 January 2007. Summary of changes for version 20070126:
4791
47921) ACPI CA Core Subsystem:
4793
4794Added the 2007 copyright to all module headers and signons. This affects 
4795virtually every file in the ACPICA core subsystem, the iASL compiler, and 
4796the utilities.
4797
4798Implemented a fix for an incorrect parameter passed to AcpiTbDeleteTable 
4799during a table load. A bad pointer was passed in the case where the DSDT 
4800is 
4801overridden, causing a fault in this case.
4802
4803Example Code and Data Size: These are the sizes for the OS-independent 
4804acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4805debug version of the code includes the debug output trace mechanism and 
4806has 
4807a much larger code and data size.
4808
4809  Previous Release:
4810    Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
4811    Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
4812  Current Release:
4813    Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
4814    Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
4815
4816----------------------------------------
481715 December 2006. Summary of changes for version 20061215:
4818
48191) ACPI CA Core Subsystem:
4820
4821Support for 16-bit ACPICA has been completely removed since it is no 
4822longer 
4823necessary and it clutters the code. All 16-bit macros, types, and 
4824conditional compiles have been removed, cleaning up and simplifying the 
4825code 
4826across the entire subsystem. DOS support is no longer needed since the 
4827bootable Linux firmware kit is now available.
4828
4829The handler for the Global Lock is now removed during AcpiTerminate to 
4830enable a clean subsystem restart, via the implementation of the 
4831AcpiEvRemoveGlobalLockHandler function. (With assistance from Joel Bretz, 
4832HP)
4833
4834Implemented enhancements to the multithreading support within the debugger 
4835to enable improved multithreading debugging and evaluation of the 
4836subsystem. 
4837(Valery Podrezov)
4838
4839Debugger: Enhanced the Statistics/Memory command to emit the total 
4840(maximum) 
4841memory used during the execution, as well as the maximum memory consumed 
4842by 
4843each of the various object types. (Valery Podrezov)
4844
4845Example Code and Data Size: These are the sizes for the OS-independent 
4846acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4847debug version of the code includes the debug output trace mechanism and 
4848has 
4849a much larger code and data size.
4850
4851  Previous Release:
4852    Non-Debug Version:  77.9K Code, 17.0K Data,  94.9K Total
4853    Debug Version:     155.2K Code, 63.1K Data, 218.3K Total
4854  Current Release:
4855    Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
4856    Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
4857
4858
48592) iASL Compiler/Disassembler and Tools:
4860
4861AcpiExec: Implemented a new option (-m) to display full memory use 
4862statistics upon subsystem/program termination. (Valery Podrezov)
4863
4864----------------------------------------
486509 November 2006. Summary of changes for version 20061109:
4866
48671) ACPI CA Core Subsystem:
4868
4869Optimized the Load ASL operator in the case where the source operand is an 
4870operation region. Simply map the operation region memory, instead of 
4871performing a bytewise read. (Region must be of type SystemMemory, see 
4872below.)
4873
4874Fixed the Load ASL operator for the case where the source operand is a 
4875region field. A buffer object is also allowed as the source operand. BZ 
4876480
4877
4878Fixed a problem where the Load ASL operator allowed the source operand to 
4879be 
4880an operation region of any type. It is now restricted to regions of type 
4881SystemMemory, as per the ACPI specification. BZ 481
4882
4883Additional cleanup and optimizations for the new Table Manager code.
4884
4885AcpiEnable will now fail if all of the required ACPI tables are not loaded 
4886(FADT, FACS, DSDT). BZ 477
4887
4888Added #pragma pack(8/4) to acobject.h to ensure that the structures in 
4889this 
4890header are always compiled as aligned. The ACPI_OPERAND_OBJECT has been 
4891manually optimized to be aligned and will not work if it is byte-packed. 
4892
4893Example Code and Data Size: These are the sizes for the OS-independent 
4894acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4895debug version of the code includes the debug output trace mechanism and 
4896has 
4897a much larger code and data size.
4898
4899  Previous Release:
4900    Non-Debug Version:  78.1K Code, 17.1K Data,  95.2K Total
4901    Debug Version:     155.4K Code, 63.1K Data, 218.5K Total
4902  Current Release:
4903    Non-Debug Version:  77.9K Code, 17.0K Data,  94.9K Total
4904    Debug Version:     155.2K Code, 63.1K Data, 218.3K Total
4905
4906
49072) iASL Compiler/Disassembler and Tools:
4908
4909Fixed a problem where the presence of the _OSI predefined control method 
4910within complex expressions could cause an internal compiler error.
4911
4912AcpiExec: Implemented full region support for multiple address spaces. 
4913SpaceId is now part of the REGION object. BZ 429
4914
4915----------------------------------------
491611 October 2006. Summary of changes for version 20061011:
4917
49181) ACPI CA Core Subsystem:
4919
4920Completed an AML interpreter performance enhancement for control method 
4921execution. Previously a 2-pass parse/execution, control methods are now 
4922completely parsed and executed in a single pass. This improves overall 
4923interpreter performance by ~25%, reduces code size, and reduces CPU stack 
4924use. (Valery Podrezov + interpreter changes in version 20051202 that 
4925eliminated namespace loading during the pass one parse.)
4926
4927Implemented _CID support for PCI Root Bridge detection. If the _HID does 
4928not 
4929match the predefined PCI Root Bridge IDs, the _CID list (if present) is 
4930now 
4931obtained and also checked for an ID match.
4932
4933Implemented additional support for the PCI _ADR execution: upsearch until 
4934a 
4935device scope is found before executing _ADR. This allows PCI_Config 
4936operation regions to be declared locally within control methods underneath 
4937PCI device objects.
4938
4939Fixed a problem with a possible race condition between threads executing 
4940AcpiWalkNamespace and the AML interpreter. This condition was removed by 
4941modifying AcpiWalkNamespace to (by default) ignore all temporary namespace 
4942entries created during any concurrent control method execution. An 
4943additional namespace race condition is known to exist between 
4944AcpiWalkNamespace and the Load/Unload ASL operators and is still under 
4945investigation.
4946
4947Restructured the AML ParseLoop function, breaking it into several 
4948subfunctions in order to reduce CPU stack use and improve maintainability. 
4949(Mikhail Kouzmich)
4950
4951AcpiGetHandle: Fix for parameter validation to detect invalid combinations 
4952of prefix handle and pathname. BZ 478
4953
4954Example Code and Data Size: These are the sizes for the OS-independent 
4955acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4956debug version of the code includes the debug output trace mechanism and 
4957has 
4958a much larger code and data size.
4959
4960  Previous Release:
4961    Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
4962    Debug Version:     154.6K Code, 63.0K Data, 217.6K Total
4963  Current Release:
4964    Non-Debug Version:  78.1K Code, 17.1K Data,  95.2K Total
4965    Debug Version:     155.4K Code, 63.1K Data, 218.5K Total
4966
49672) iASL Compiler/Disassembler and Tools:
4968
4969Ported the -g option (get local ACPI tables) to the new ACPICA Table 
4970Manager 
4971to restore original behavior.
4972
4973----------------------------------------
497427 September 2006. Summary of changes for version 20060927:
4975
49761) ACPI CA Core Subsystem:
4977
4978Removed the "Flags" parameter from AcpiGetRegister and AcpiSetRegister. 
4979These functions now use a spinlock for mutual exclusion and the interrupt 
4980level indication flag is not needed.
4981
4982Fixed a problem with the Global Lock where the lock could appear to be 
4983obtained before it is actually obtained. The global lock semaphore was 
4984inadvertently created with one unit instead of zero units. (BZ 464) Fiodor 
4985Suietov.
4986
4987Fixed a possible memory leak and fault in AcpiExResolveObjectToValue 
4988during 
4989a read from a buffer or region field. (BZ 458) Fiodor Suietov.
4990
4991Example Code and Data Size: These are the sizes for the OS-independent 
4992acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4993debug version of the code includes the debug output trace mechanism and 
4994has 
4995a much larger code and data size.
4996
4997  Previous Release:
4998    Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
4999    Debug Version:     154.7K Code, 63.0K Data, 217.7K Total
5000  Current Release:
5001    Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
5002    Debug Version:     154.6K Code, 63.0K Data, 217.6K Total
5003
5004
50052) iASL Compiler/Disassembler and Tools:
5006
5007Fixed a compilation problem with the pre-defined Resource Descriptor field 
5008names where an "object does not exist" error could be incorrectly 
5009generated 
5010if the parent ResourceTemplate pathname places the template within a 
5011different namespace scope than the current scope. (BZ 7212)
5012
5013Fixed a problem where the compiler could hang after syntax errors detected 
5014in an ElseIf construct. (BZ 453)
5015
5016Fixed a problem with the AmlFilename parameter to the DefinitionBlock() 
5017operator. An incorrect output filename was produced when this parameter 
5018was 
5019a null string (""). Now, the original input filename is used as the AML 
5020output filename, with an ".aml" extension.
5021
5022Implemented a generic batch command mode for the AcpiExec utility (execute 
5023any AML debugger command) (Valery Podrezov).
5024
5025----------------------------------------
502612 September 2006. Summary of changes for version 20060912:
5027
50281) ACPI CA Core Subsystem:
5029
5030Enhanced the implementation of the "serialized mode" of the interpreter 
5031(enabled via the AcpiGbl_AllMethodsSerialized flag.) When this mode is 
5032specified, instead of creating a serialization semaphore per control 
5033method, 
5034the interpreter lock is simply no longer released before a blocking 
5035operation during control method execution. This effectively makes the AML 
5036Interpreter single-threaded. The overhead of a semaphore per-method is 
5037eliminated.
5038
5039Fixed a regression where an error was no longer emitted if a control 
5040method 
5041attempts to create 2 objects of the same name. This once again returns 
5042AE_ALREADY_EXISTS. When this exception occurs, it invokes the mechanism 
5043that 
5044will dynamically serialize the control method to possible prevent future 
5045errors. (BZ 440)
5046
5047Integrated a fix for a problem with PCI Express HID detection in the PCI 
5048Config Space setup procedure. (BZ 7145)
5049
5050Moved all FADT-related functions to a new file, tbfadt.c. Eliminated the 
5051AcpiHwInitialize function - the FADT registers are now validated when the 
5052table is loaded.
5053
5054Added two new warnings during FADT verification - 1) if the FADT is larger 
5055than the largest known FADT version, and 2) if there is a mismatch between 
5056a 
505732-bit block address and the 64-bit X counterpart (when both are non-
5058zero.)
5059
5060Example Code and Data Size: These are the sizes for the OS-independent 
5061acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5062debug version of the code includes the debug output trace mechanism and 
5063has 
5064a much larger code and data size.
5065
5066  Previous Release:
5067    Non-Debug Version:  77.9K Code, 16.7K Data,  94.6K Total
5068    Debug Version:     154.9K Code, 62.6K Data, 217.5K Total
5069  Current Release:
5070    Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
5071    Debug Version:     154.7K Code, 63.0K Data, 217.7K Total
5072
5073
50742) iASL Compiler/Disassembler and Tools:
5075
5076Fixed a problem with the implementation of the Switch() operator where the 
5077temporary variable was declared too close to the actual Switch, instead of 
5078at method level. This could cause a problem if the Switch() operator is 
5079within a while loop, causing an error on the second iteration. (BZ 460)
5080
5081Disassembler - fix for error emitted for unknown type for target of scope 
5082operator. Now, ignore it and continue.
5083
5084Disassembly of an FADT now verifies the input FADT and reports any errors 
5085found. Fix for proper disassembly of full-sized (ACPI 2.0) FADTs.
5086
5087Disassembly of raw data buffers with byte initialization data now prefixes 
5088each output line with the current buffer offset.
5089
5090Disassembly of ASF! table now includes all variable-length data fields at 
5091the end of some of the subtables.
5092
5093The disassembler now emits a comment if a buffer appears to be a 
5094ResourceTemplate, but cannot be disassembled as such because the EndTag 
5095does 
5096not appear at the very end of the buffer.
5097
5098AcpiExec - Added the "-t" command line option to enable the serialized 
5099mode 
5100of the AML interpreter.
5101
5102----------------------------------------
510331 August 2006. Summary of changes for version 20060831:
5104
51051) ACPI CA Core Subsystem:
5106
5107Miscellaneous fixes for the Table Manager:
5108- Correctly initialize internal common FADT for all 64-bit "X" fields
5109- Fixed a couple table mapping issues during table load
5110- Fixed a couple alignment issues for IA64
5111- Initialize input array to zero in AcpiInitializeTables
5112- Additional parameter validation for AcpiGetTable, AcpiGetTableHeader, 
5113AcpiGetTableByIndex
5114
5115Change for GPE support: when a "wake" GPE is received, all wake GPEs are 
5116now 
5117immediately disabled to prevent the waking GPE from firing again and to 
5118prevent other wake GPEs from interrupting the wake process.
5119
5120Added the AcpiGpeCount global that tracks the number of processed GPEs, to 
5121be used for debugging systems with a large number of ACPI interrupts.
5122
5123Implemented support for the "DMAR" ACPI table (DMA Redirection Table) in 
5124both the ACPICA headers and the disassembler.
5125
5126Example Code and Data Size: These are the sizes for the OS-independent 
5127acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5128debug version of the code includes the debug output trace mechanism and 
5129has 
5130a much larger code and data size.
5131
5132  Previous Release:
5133    Non-Debug Version:  77.8K Code, 16.5K Data,  94.3K Total
5134    Debug Version:     154.6K Code, 62.3K Data, 216.9K Total
5135  Current Release:
5136    Non-Debug Version:  77.9K Code, 16.7K Data,  94.6K Total
5137    Debug Version:     154.9K Code, 62.6K Data, 217.5K Total
5138
5139
51402) iASL Compiler/Disassembler and Tools:
5141
5142Disassembler support for the DMAR ACPI table.
5143
5144----------------------------------------
514523 August 2006. Summary of changes for version 20060823:
5146
51471) ACPI CA Core Subsystem:
5148
5149The Table Manager component has been completely redesigned and 
5150reimplemented. The new design is much simpler, and reduces the overall 
5151code 
5152and data size of the kernel-resident ACPICA by approximately 5%. Also, it 
5153is 
5154now possible to obtain the ACPI tables very early during kernel 
5155initialization, even before dynamic memory management is initialized. 
5156(Alexey Starikovskiy, Fiodor Suietov, Bob Moore)
5157
5158Obsolete ACPICA interfaces:
5159
5160- AcpiGetFirmwareTable: Use AcpiGetTable instead (works at early kernel 
5161init 
5162time).
5163- AcpiLoadTable: Not needed.
5164- AcpiUnloadTable: Not needed.
5165
5166New ACPICA interfaces:
5167
5168- AcpiInitializeTables: Must be called before the table manager can be 
5169used.
5170- AcpiReallocateRootTable: Used to transfer the root table to dynamically 
5171allocated memory after it becomes available.
5172- AcpiGetTableByIndex: Allows the host to easily enumerate all ACPI tables 
5173in the RSDT/XSDT.
5174
5175Other ACPICA changes:
5176
5177- AcpiGetTableHeader returns the actual mapped table header, not a copy. 
5178Use 
5179AcpiOsUnmapMemory to free this mapping.
5180- AcpiGetTable returns the actual mapped table. The mapping is managed 
5181internally and must not be deleted by the caller. Use of this interface 
5182causes no additional dynamic memory allocation.
5183- AcpiFindRootPointer: Support for physical addressing has been 
5184eliminated, 
5185it appeared to be unused.
5186- The interface to AcpiOsMapMemory has changed to be consistent with the 
5187other allocation interfaces.
5188- The interface to AcpiOsGetRootPointer has changed to eliminate 
5189unnecessary 
5190parameters.
5191- ACPI_PHYSICAL_ADDRESS is now 32 bits on 32-bit platforms, 64 bits on 64-
5192bit platforms. Was previously 64 bits on all platforms.
5193- The interface to the ACPI Global Lock acquire/release macros have 
5194changed 
5195slightly since ACPICA no longer keeps a local copy of the FACS with a 
5196constructed pointer to the actual global lock.
5197
5198Porting to the new table manager:
5199
5200- AcpiInitializeTables: Must be called once, and can be called anytime 
5201during the OS initialization process. It allows the host to specify an 
5202area 
5203of memory to be used to store the internal version of the RSDT/XSDT (root 
5204table). This allows the host to access ACPI tables before memory 
5205management 
5206is initialized and running.
5207- AcpiReallocateRootTable: Can be called after memory management is 
5208running 
5209to copy the root table to a dynamically allocated array, freeing up the 
5210scratch memory specified in the call to AcpiInitializeTables.
5211- AcpiSubsystemInitialize: This existing interface is independent of the 
5212Table Manager, and does not have to be called before the Table Manager can 
5213be used, it only must be called before the rest of ACPICA can be used.
5214- ACPI Tables: Some changes have been made to the names and structure of 
5215the 
5216actbl.h and actbl1.h header files and may require changes to existing 
5217code. 
5218For example, bitfields have been completely removed because of their lack 
5219of 
5220portability across C compilers.
5221- Update interfaces to the Global Lock acquire/release macros if local 
5222versions are used. (see acwin.h)
5223
5224Obsolete files: tbconvrt.c, tbget.c, tbgetall.c, tbrsdt.c
5225
5226New files: tbfind.c
5227
5228Example Code and Data Size: These are the sizes for the OS-independent 
5229acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5230debug version of the code includes the debug output trace mechanism and 
5231has 
5232a much larger code and data size.
5233
5234  Previous Release:
5235    Non-Debug Version:  80.7K Code, 17.9K Data,  98.6K Total
5236    Debug Version:     161.0K Code, 65.1K Data, 226.1K Total
5237  Current Release:
5238    Non-Debug Version:  77.8K Code, 16.5K Data,  94.3K Total
5239    Debug Version:     154.6K Code, 62.3K Data, 216.9K Total
5240
5241
52422) iASL Compiler/Disassembler and Tools:
5243
5244No changes for this release.
5245
5246----------------------------------------
524721 July 2006. Summary of changes for version 20060721:
5248
52491) ACPI CA Core Subsystem:
5250
5251The full source code for the ASL test suite used to validate the iASL 
5252compiler and the ACPICA core subsystem is being released with the ACPICA 
5253source for the first time. The source is contained in a separate package 
5254and 
5255consists of over 1100 files that exercise all ASL/AML operators. The 
5256package 
5257should appear on the Intel/ACPI web site shortly. (Valery Podrezov, Fiodor 
5258Suietov)
5259
5260Completed a new design and implementation for support of the ACPI Global 
5261Lock. On the OS side, the global lock is now treated as a standard AML 
5262mutex. Previously, multiple OS threads could "acquire" the global lock 
5263simultaneously. However, this could cause the BIOS to be starved out of 
5264the 
5265lock - especially in cases such as the Embedded Controller driver where 
5266there is a tight coupling between the OS and the BIOS.
5267
5268Implemented an optimization for the ACPI Global Lock interrupt mechanism. 
5269The Global Lock interrupt handler no longer queues the execution of a 
5270separate thread to signal the global lock semaphore. Instead, the 
5271semaphore 
5272is signaled directly from the interrupt handler.
5273
5274Implemented support within the AML interpreter for package objects that 
5275contain a larger AML length (package list length) than the package element 
5276count. In this case, the length of the package is truncated to match the 
5277package element count. Some BIOS code apparently modifies the package 
5278length 
5279on the fly, and this change supports this behavior. Provides compatibility 
5280with the MS AML interpreter. (With assistance from Fiodor Suietov)
5281
5282Implemented a temporary fix for the BankValue parameter of a Bank Field to 
5283support all constant values, now including the Zero and One opcodes. 
5284Evaluation of this parameter must eventually be converted to a full 
5285TermArg 
5286evaluation. A not-implemented error is now returned (temporarily) for non-
5287constant values for this parameter.
5288
5289Fixed problem reports (Fiodor Suietov) integrated:
5290- Fix for premature object deletion after CopyObject on Operation Region 
5291(BZ 
5292350)
5293
5294Example Code and Data Size: These are the sizes for the OS-independent 
5295acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5296debug version of the code includes the debug output trace mechanism and 
5297has 
5298a much larger code and data size.
5299
5300  Previous Release:
5301    Non-Debug Version:  80.7K Code, 18.0K Data,  98.7K Total
5302    Debug Version:     160.9K Code, 65.1K Data, 226.0K Total
5303  Current Release:
5304    Non-Debug Version:  80.7K Code, 17.9K Data,  98.6K Total
5305    Debug Version:     161.0K Code, 65.1K Data, 226.1K Total
5306
5307
53082) iASL Compiler/Disassembler and Tools:
5309
5310No changes for this release.
5311
5312----------------------------------------
531307 July 2006. Summary of changes for version 20060707:
5314
53151) ACPI CA Core Subsystem:
5316
5317Added the ACPI_PACKED_POINTERS_NOT_SUPPORTED macro to support C compilers 
5318that do not allow the initialization of address pointers within packed 
5319structures - even though the hardware itself may support misaligned 
5320transfers. Some of the debug data structures are packed by default to 
5321minimize size.
5322
5323Added an error message for the case where AcpiOsGetThreadId() returns 
5324zero. 
5325A non-zero value is required by the core ACPICA code to ensure the proper 
5326operation of AML mutexes and recursive control methods.
5327
5328The DSDT is now the only ACPI table that determines whether the AML 
5329interpreter is in 32-bit or 64-bit mode. Not really a functional change, 
5330but 
5331the hooks for per-table 32/64 switching have been removed from the code. A 
5332clarification to the ACPI specification is forthcoming in ACPI 3.0B.
5333
5334Fixed a possible leak of an OwnerID in the error path of 
5335AcpiTbInitTableDescriptor (tbinstal.c), and migrated all table OwnerID 
5336deletion to a single place in AcpiTbUninstallTable to correct possible 
5337leaks 
5338when using the AcpiTbDeleteTablesByType interface (with assistance from 
5339Lance Ortiz.)
5340
5341Fixed a problem with Serialized control methods where the semaphore 
5342associated with the method could be over-signaled after multiple method 
5343invocations.
5344
5345Fixed two issues with the locking of the internal namespace data 
5346structure. 
5347Both the Unload() operator and AcpiUnloadTable interface now lock the 
5348namespace during the namespace deletion associated with the table unload 
5349(with assistance from Linn Crosetto.)
5350
5351Fixed problem reports (Valery Podrezov) integrated:
5352- Eliminate unnecessary memory allocation for CreateXxxxField (BZ 5426)
5353
5354Fixed problem reports (Fiodor Suietov) integrated:
5355- Incomplete cleanup branches in AcpiTbGetTableRsdt (BZ 369)
5356- On Address Space handler deletion, needless deactivation call (BZ 374)
5357- AcpiRemoveAddressSpaceHandler: validate Device handle parameter (BZ 375)
5358- Possible memory leak, Notify sub-objects of Processor, Power, 
5359ThermalZone 
5360(BZ 376)
5361- AcpiRemoveAddressSpaceHandler: validate Handler parameter (BZ 378)
5362- Minimum Length of RSDT should be validated (BZ 379)
5363- AcpiRemoveNotifyHandler: return AE_NOT_EXIST if Processor Obj has no 
5364Handler (BZ (380)
5365- AcpiUnloadTable: return AE_NOT_EXIST if no table of specified type 
5366loaded 
5367(BZ 381)
5368
5369Example Code and Data Size: These are the sizes for the OS-independent 
5370acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5371debug version of the code includes the debug output trace mechanism and 
5372has 
5373a much larger code and data size.
5374
5375  Previous Release:
5376    Non-Debug Version:  80.5K Code, 17.8K Data,  98.3K Total
5377    Debug Version:     160.8K Code, 64.8K Data, 225.6K Total
5378  Current Release:
5379    Non-Debug Version:  80.7K Code, 17.9K Data,  98.6K Total
5380    Debug Version:     161.0K Code, 65.1K Data, 226.1K Total
5381
5382
53832) iASL Compiler/Disassembler and Tools:
5384
5385Fixed problem reports:
5386Compiler segfault when ASL contains a long (>1024) String declaration (BZ 
5387436)
5388
5389----------------------------------------
539023 June 2006. Summary of changes for version 20060623:
5391
53921) ACPI CA Core Subsystem:
5393
5394Implemented a new ACPI_SPINLOCK type for the OSL lock interfaces. This 
5395allows the type to be customized to the host OS for improved efficiency 
5396(since a spinlock is usually a very small object.)
5397
5398Implemented support for "ignored" bits in the ACPI registers. According to 
5399the ACPI specification, these bits should be preserved when writing the 
5400registers via a read/modify/write cycle. There are 3 bits preserved in 
5401this 
5402manner: PM1_CONTROL[0] (SCI_EN), PM1_CONTROL[9], and PM1_STATUS[11].
5403
5404Implemented the initial deployment of new OSL mutex interfaces. Since some 
5405host operating systems have separate mutex and semaphore objects, this 
5406feature was requested. The base code now uses mutexes (and the new mutex 
5407interfaces) wherever a binary semaphore was used previously. However, for 
5408the current release, the mutex interfaces are defined as macros to map 
5409them 
5410to the existing semaphore interfaces. Therefore, no OSL changes are 
5411required 
5412at this time. (See acpiosxf.h)
5413
5414Fixed several problems with the support for the control method SyncLevel 
5415parameter. The SyncLevel now works according to the ACPI specification and 
5416in concert with the Mutex SyncLevel parameter, since the current SyncLevel 
5417is a property of the executing thread. Mutual exclusion for control 
5418methods 
5419is now implemented with a mutex instead of a semaphore.
5420
5421Fixed three instances of the use of the C shift operator in the bitfield 
5422support code (exfldio.c) to avoid the use of a shift value larger than the 
5423target data width. The behavior of C compilers is undefined in this case 
5424and 
5425can cause unpredictable results, and therefore the case must be detected 
5426and 
5427avoided. (Fiodor Suietov)
5428
5429Added an info message whenever an SSDT or OEM table is loaded dynamically 
5430via the Load() or LoadTable() ASL operators. This should improve debugging 
5431capability since it will show exactly what tables have been loaded (beyond 
5432the tables present in the RSDT/XSDT.)
5433
5434Example Code and Data Size: These are the sizes for the OS-independent 
5435acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5436debug version of the code includes the debug output trace mechanism and 
5437has 
5438a much larger code and data size.
5439
5440  Previous Release:
5441    Non-Debug Version:  80.0K Code, 17.6K Data,  97.6K Total
5442    Debug Version:     160.2K Code, 64.7K Data, 224.9K Total
5443  Current Release:
5444    Non-Debug Version:  80.5K Code, 17.8K Data,  98.3K Total
5445    Debug Version:     160.8K Code, 64.8K Data, 225.6K Total
5446
5447
54482) iASL Compiler/Disassembler and Tools:
5449
5450No changes for this release.
5451
5452----------------------------------------
545308 June 2006. Summary of changes for version 20060608:
5454
54551) ACPI CA Core Subsystem:
5456
5457Converted the locking mutex used for the ACPI hardware to a spinlock. This 
5458change should eliminate all problems caused by attempting to acquire a 
5459semaphore at interrupt level, and it means that all ACPICA external 
5460interfaces that directly access the ACPI hardware can be safely called 
5461from 
5462interrupt level. OSL code that implements the semaphore interfaces should 
5463be 
5464able to eliminate any workarounds for being called at interrupt level.
5465
5466Fixed a regression introduced in 20060526 where the ACPI device 
5467initialization could be prematurely aborted with an AE_NOT_FOUND if a 
5468device 
5469did not have an optional _INI method.
5470
5471Fixed an IndexField issue where a write to the Data Register should be 
5472limited in size to the AccessSize (width) of the IndexField itself. (BZ 
5473433, 
5474Fiodor Suietov)
5475
5476Fixed problem reports (Valery Podrezov) integrated:
5477- Allow store of ThermalZone objects to Debug object (BZ 5369/5370)
5478
5479Fixed problem reports (Fiodor Suietov) integrated:
5480- AcpiGetTableHeader doesn't handle multiple instances correctly (BZ 364)
5481
5482Removed four global mutexes that were obsolete and were no longer being 
5483used.
5484
5485Example Code and Data Size: These are the sizes for the OS-independent 
5486acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5487debug version of the code includes the debug output trace mechanism and 
5488has 
5489a much larger code and data size.
5490
5491  Previous Release:
5492    Non-Debug Version:  80.0K Code, 17.7K Data,  97.7K Total
5493    Debug Version:     160.3K Code, 64.9K Data, 225.2K Total
5494  Current Release:
5495    Non-Debug Version:  80.0K Code, 17.6K Data,  97.6K Total
5496    Debug Version:     160.2K Code, 64.7K Data, 224.9K Total
5497
5498
54992) iASL Compiler/Disassembler and Tools:
5500
5501Fixed a fault when using -g option (get tables from registry) on Windows 
5502machines.
5503
5504Fixed problem reports integrated:
5505- Generate error if CreateField NumBits parameter is zero. (BZ 405)
5506- Fault if Offset/Length in Field unit is very large (BZ 432, Fiodor 
5507Suietov)
5508- Global table revision override (-r) is ignored (BZ 413)
5509
5510----------------------------------------
551126 May 2006. Summary of changes for version 20060526:
5512
55131) ACPI CA Core Subsystem:
5514
5515Restructured, flattened, and simplified the internal interfaces for 
5516namespace object evaluation - resulting in smaller code, less CPU stack 
5517use, 
5518and fewer interfaces. (With assistance from Mikhail Kouzmich)
5519
5520Fixed a problem with the CopyObject operator where the first parameter was 
5521not typed correctly for the parser, interpreter, compiler, and 
5522disassembler. 
5523Caused various errors and unexpected behavior.
5524
5525Fixed a problem where a ShiftLeft or ShiftRight of more than 64 bits 
5526produced incorrect results with some C compilers. Since the behavior of C 
5527compilers when the shift value is larger than the datatype width is 
5528apparently not well defined, the interpreter now detects this condition 
5529and 
5530simply returns zero as expected in all such cases. (BZ 395)
5531
5532Fixed problem reports (Valery Podrezov) integrated:
5533- Update String-to-Integer conversion to match ACPI 3.0A spec (BZ 5329)
5534- Allow interpreter to handle nested method declarations (BZ 5361)
5535
5536Fixed problem reports (Fiodor Suietov) integrated:
5537- AcpiTerminate doesn't free debug memory allocation list objects (BZ 355)
5538- After Core Subsystem shutdown, AcpiSubsystemStatus returns AE_OK (BZ 
5539356)
5540- AcpiOsUnmapMemory for RSDP can be invoked inconsistently (BZ 357)
5541- Resource Manager should return AE_TYPE for non-device objects (BZ 358)
5542- Incomplete cleanup branch in AcpiNsEvaluateRelative (BZ 359)
5543- Use AcpiOsFree instead of ACPI_FREE in AcpiRsSetSrsMethodData (BZ 360)
5544- Incomplete cleanup branch in AcpiPsParseAml (BZ 361)
5545- Incomplete cleanup branch in AcpiDsDeleteWalkState (BZ 362)
5546- AcpiGetTableHeader returns AE_NO_ACPI_TABLES until DSDT is loaded (BZ 
5547365)
5548- Status of the Global Initialization Handler call not used (BZ 366)
5549- Incorrect object parameter to Global Initialization Handler (BZ 367)
5550
5551Example Code and Data Size: These are the sizes for the OS-independent 
5552acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5553debug version of the code includes the debug output trace mechanism and 
5554has 
5555a much larger code and data size.
5556
5557  Previous Release:
5558    Non-Debug Version:  79.8K Code, 17.7K Data,  97.5K Total
5559    Debug Version:     160.5K Code, 65.1K Data, 225.6K Total
5560  Current Release:
5561    Non-Debug Version:  80.0K Code, 17.7K Data,  97.7K Total
5562    Debug Version:     160.3K Code, 64.9K Data, 225.2K Total
5563
5564
55652) iASL Compiler/Disassembler and Tools:
5566
5567Modified the parser to allow the names IO, DMA, and IRQ to be used as 
5568namespace identifiers with no collision with existing resource descriptor 
5569macro names. This provides compatibility with other ASL compilers and is 
5570most useful for disassembly/recompilation of existing tables without parse 
5571errors. (With assistance from Thomas Renninger)
5572
5573Disassembler: fixed an incorrect disassembly problem with the 
5574DataTableRegion and CopyObject operators. Fixed a possible fault during 
5575disassembly of some Alias operators.
5576
5577----------------------------------------
557812 May 2006. Summary of changes for version 20060512:
5579
55801) ACPI CA Core Subsystem:
5581
5582Replaced the AcpiOsQueueForExecution interface with a new interface named 
5583AcpiOsExecute. The major difference is that the new interface does not 
5584have 
5585a Priority parameter, this appeared to be useless and has been replaced by 
5586a 
5587Type parameter. The Type tells the host what type of execution is being 
5588requested, such as global lock handler, notify handler, GPE handler, etc. 
5589This allows the host to queue and execute the request as appropriate for 
5590the 
5591request type, possibly using different work queues and different 
5592priorities 
5593for the various request types. This enables fixes for multithreading 
5594deadlock problems such as BZ #5534, and will require changes to all 
5595existing 
5596OS interface layers. (Alexey Starikovskiy and Bob Moore)
5597
5598Fixed a possible memory leak associated with the support for the so-called 
5599"implicit return" ACPI extension. Reported by FreeBSD, BZ #6514. (Fiodor 
5600Suietov)
5601
5602Fixed a problem with the Load() operator where a table load from an 
5603operation region could overwrite an internal table buffer by up to 7 bytes 
5604and cause alignment faults on IPF systems. (With assistance from Luming 
5605Yu)
5606
5607Example Code and Data Size: These are the sizes for the OS-independent 
5608acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5609debug version of the code includes the debug output trace mechanism and 
5610has 
5611a much larger code and data size.
5612
5613  Previous Release:
5614    Non-Debug Version:  79.7K Code, 17.7K Data,  97.4K Total
5615    Debug Version:     160.1K Code, 65.2K Data, 225.3K Total
5616  Current Release:
5617    Non-Debug Version:  79.8K Code, 17.7K Data,  97.5K Total
5618    Debug Version:     160.5K Code, 65.1K Data, 225.6K Total
5619
5620
5621
56222) iASL Compiler/Disassembler and Tools:
5623
5624Disassembler: Implemented support to cross reference the internal 
5625namespace 
5626and automatically generate ASL External() statements for symbols not 
5627defined 
5628within the current table being disassembled. This will simplify the 
5629disassembly and recompilation of interdependent tables such as SSDTs since 
5630these statements will no longer have to be added manually.
5631
5632Disassembler: Implemented experimental support to automatically detect 
5633invocations of external control methods and generate appropriate 
5634External() 
5635statements. This is problematic because the AML cannot be correctly parsed 
5636until the number of arguments for each control method is known. Currently, 
5637standalone method invocations and invocations as the source operand of a 
5638Store() statement are supported.
5639
5640Disassembler: Implemented support for the ASL pseudo-operators LNotEqual, 
5641LLessEqual, and LGreaterEqual. Previously disassembled as LNot(LEqual()), 
5642LNot(LGreater()), and LNot(LLess()), this makes the disassembled ASL code 
5643more readable and likely closer to the original ASL source.
5644
5645----------------------------------------
564621 April 2006. Summary of changes for version 20060421:
5647
56481) ACPI CA Core Subsystem:
5649
5650Removed a device initialization optimization introduced in 20051216 where 
5651the _STA method was not run unless an _INI was also present for the same 
5652device. This optimization could cause problems because it could allow _INI 
5653methods to be run within a not-present device subtree. (If a not-present 
5654device had no _INI, _STA would not be run, the not-present status would 
5655not 
5656be discovered, and the children of the device would be incorrectly 
5657traversed.)
5658
5659Implemented a new _STA optimization where namespace subtrees that do not 
5660contain _INI are identified and ignored during device initialization. 
5661Selectively running _STA can significantly improve boot time on large 
5662machines (with assistance from Len Brown.)
5663
5664Implemented support for the device initialization case where the returned 
5665_STA flags indicate a device not-present but functioning. In this case, 
5666_INI 
5667is not run, but the device children are examined for presence, as per the 
5668ACPI specification.
5669
5670Implemented an additional change to the IndexField support in order to 
5671conform to MS behavior. The value written to the Index Register is not 
5672simply a byte offset, it is a byte offset in units of the access width of 
5673the parent Index Field. (Fiodor Suietov)
5674
5675Defined and deployed a new OSL interface, AcpiOsValidateAddress. This 
5676interface is called during the creation of all AML operation regions, and 
5677allows the host OS to exert control over what addresses it will allow the 
5678AML code to access. Operation Regions whose addresses are disallowed will 
5679cause a runtime exception when they are actually accessed (will not affect 
5680or abort table loading.) See oswinxf or osunixxf for an example 
5681implementation.
5682
5683Defined and deployed a new OSL interface, AcpiOsValidateInterface. This 
5684interface allows the host OS to match the various "optional" 
5685interface/behavior strings for the _OSI predefined control method as 
5686appropriate (with assistance from Bjorn Helgaas.) See oswinxf or osunixxf 
5687for an example implementation.
5688
5689Restructured and corrected various problems in the exception handling code 
5690paths within DsCallControlMethod and DsTerminateControlMethod in dsmethod 
5691(with assistance from Takayoshi Kochi.)
5692
5693Modified the Linux source converter to ignore quoted string literals while 
5694converting identifiers from mixed to lower case. This will correct 
5695problems 
5696with the disassembler and other areas where such strings must not be 
5697modified.
5698
5699The ACPI_FUNCTION_* macros no longer require quotes around the function 
5700name. This allows the Linux source converter to convert the names, now 
5701that 
5702the converter ignores quoted strings.
5703
5704Example Code and Data Size: These are the sizes for the OS-independent 
5705acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5706debug version of the code includes the debug output trace mechanism and 
5707has 
5708a much larger code and data size.
5709
5710  Previous Release:
5711
5712    Non-Debug Version:  81.1K Code, 17.7K Data,  98.8K Total
5713    Debug Version:     158.9K Code, 64.9K Data, 223.8K Total
5714  Current Release:
5715    Non-Debug Version:  79.7K Code, 17.7K Data,  97.4K Total
5716    Debug Version:     160.1K Code, 65.2K Data, 225.3K Total
5717
5718
57192) iASL Compiler/Disassembler and Tools:
5720
5721Implemented 3 new warnings for iASL, and implemented multiple warning 
5722levels 
5723(w2 flag).
5724
57251) Ignored timeouts: If the TimeoutValue parameter to Wait or Acquire is 
5726not 
5727WAIT_FOREVER (0xFFFF) and the code does not examine the return value to 
5728check for the possible timeout, a warning is issued.
5729
57302) Useless operators: If an ASL operator does not specify an optional 
5731target 
5732operand and it also does not use the function return value from the 
5733operator, a warning is issued since the operator effectively does nothing.
5734
57353) Unreferenced objects: If a namespace object is created, but never 
5736referenced, a warning is issued. This is a warning level 2 since there are 
5737cases where this is ok, such as when a secondary table is loaded that uses 
5738the unreferenced objects. Even so, care is taken to only flag objects that 
5739don't look like they will ever be used. For example, the reserved methods 
5740(starting with an underscore) are usually not referenced because it is 
5741expected that the OS will invoke them.
5742
5743----------------------------------------
574431 March 2006. Summary of changes for version 20060331:
5745
57461) ACPI CA Core Subsystem:
5747
5748Implemented header file support for the following additional ACPI tables: 
5749ASF!, BOOT, CPEP, DBGP, MCFG, SPCR, SPMI, TCPA, and WDRT. With this 
5750support, 
5751all current and known ACPI tables are now defined in the ACPICA headers 
5752and 
5753are available for use by device drivers and other software.
5754
5755Implemented support to allow tables that contain ACPI names with invalid 
5756characters to be loaded. Previously, this would cause the table load to 
5757fail, but since there are several known cases of such tables on existing 
5758machines, this change was made to enable ACPI support for them. Also, this 
5759matches the behavior of the Microsoft ACPI implementation.
5760
5761Fixed a couple regressions introduced during the memory optimization in 
5762the 
576320060317 release. The namespace node definition required additional 
5764reorganization and an internal datatype that had been changed to 8-bit was 
5765restored to 32-bit. (Valery Podrezov)
5766
5767Fixed a problem where a null pointer passed to AcpiUtDeleteGenericState 
5768could be passed through to AcpiOsReleaseObject which is unexpected. Such 
5769null pointers are now trapped and ignored, matching the behavior of the 
5770previous implementation before the deployment of AcpiOsReleaseObject.
5771(Valery Podrezov, Fiodor Suietov)
5772
5773Fixed a memory mapping leak during the deletion of a SystemMemory 
5774operation 
5775region where a cached memory mapping was not deleted. This became a 
5776noticeable problem for operation regions that are defined within 
5777frequently 
5778used control methods. (Dana Meyers)
5779
5780Reorganized the ACPI table header files into two main files: one for the 
5781ACPI tables consumed by the ACPICA core, and another for the miscellaneous 
5782ACPI tables that are consumed by the drivers and other software. The 
5783various 
5784FADT definitions were merged into one common section and three different 
5785tables (ACPI 1.0, 1.0+, and 2.0)
5786
5787Example Code and Data Size: These are the sizes for the OS-independent 
5788acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5789debug version of the code includes the debug output trace mechanism and 
5790has 
5791a much larger code and data size.
5792
5793  Previous Release:
5794    Non-Debug Version:  80.9K Code, 17.7K Data,  98.6K Total
5795    Debug Version:     158.7K Code, 64.8K Data, 223.5K Total
5796  Current Release:
5797    Non-Debug Version:  81.1K Code, 17.7K Data,  98.8K Total
5798    Debug Version:     158.9K Code, 64.9K Data, 223.8K Total
5799
5800
58012) iASL Compiler/Disassembler and Tools:
5802
5803Disassembler: Implemented support to decode and format all non-AML ACPI 
5804tables (tables other than DSDTs and SSDTs.) This includes the new tables 
5805added to the ACPICA headers, therefore all current and known ACPI tables 
5806are 
5807supported.
5808
5809Disassembler: The change to allow ACPI names with invalid characters also 
5810enables the disassembly of such tables. Invalid characters within names 
5811are 
5812changed to '*' to make the name printable; the iASL compiler will still 
5813generate an error for such names, however, since this is an invalid ACPI 
5814character.
5815
5816Implemented an option for AcpiXtract (-a) to extract all tables found in 
5817the 
5818input file. The default invocation extracts only the DSDTs and SSDTs.
5819
5820Fixed a couple of gcc generation issues for iASL and AcpiExec and added a 
5821makefile for the AcpiXtract utility.
5822
5823----------------------------------------
582417 March 2006. Summary of changes for version 20060317:
5825
58261) ACPI CA Core Subsystem:
5827
5828Implemented the use of a cache object for all internal namespace nodes. 
5829Since there are about 1000 static nodes in a typical system, this will 
5830decrease memory use for cache implementations that minimize per-allocation 
5831overhead (such as a slab allocator.)
5832
5833Removed the reference count mechanism for internal namespace nodes, since 
5834it 
5835was deemed unnecessary. This reduces the size of each namespace node by 
5836about 5%-10% on all platforms. Nodes are now 20 bytes for the 32-bit case, 
5837and 32 bytes for the 64-bit case.
5838
5839Optimized several internal data structures to reduce object size on 64-bit 
5840platforms by packing data within the 64-bit alignment. This includes the 
5841frequently used ACPI_OPERAND_OBJECT, of which there can be ~1000 static 
5842instances corresponding to the namespace objects.
5843
5844Added two new strings for the predefined _OSI method: "Windows 2001.1 SP1" 
5845and "Windows 2006".
5846
5847Split the allocation tracking mechanism out to a separate file, from 
5848utalloc.c to uttrack.c. This mechanism appears to be only useful for 
5849application-level code. Kernels may wish to not include uttrack.c in 
5850distributions.
5851
5852Removed all remnants of the obsolete ACPI_REPORT_* macros and the 
5853associated 
5854code. (These macros have been replaced by the ACPI_ERROR and ACPI_WARNING 
5855macros.)
5856
5857Code and Data Size: These are the sizes for the acpica.lib produced by the 
5858Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any 
5859ACPI 
5860driver or OSPM code. The debug version of the code includes the debug 
5861output 
5862trace mechanism and has a much larger code and data size. Note that these 
5863values will vary depending on the efficiency of the compiler and the 
5864compiler options used during generation.
5865
5866  Previous Release:
5867    Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
5868    Debug Version:     161.6K Code, 65.7K Data, 227.3K Total
5869  Current Release:
5870    Non-Debug Version:  80.9K Code, 17.7K Data,  98.6K Total
5871    Debug Version:     158.7K Code, 64.8K Data, 223.5K Total
5872
5873
58742) iASL Compiler/Disassembler and Tools:
5875
5876Implemented an ANSI C version of the acpixtract utility. This version will 
5877automatically extract the DSDT and all SSDTs from the input acpidump text 
5878file and dump the binary output to separate files. It can also display a 
5879summary of the input file including the headers for each table found and 
5880will extract any single ACPI table, with any signature. (See 
5881source/tools/acpixtract)
5882
5883----------------------------------------
588410 March 2006. Summary of changes for version 20060310:
5885
58861) ACPI CA Core Subsystem:
5887
5888Tagged all external interfaces to the subsystem with the new 
5889ACPI_EXPORT_SYMBOL macro. This macro can be defined as necessary to assist 
5890kernel integration. For Linux, the macro resolves to the EXPORT_SYMBOL 
5891macro. The default definition is NULL.
5892
5893Added the ACPI_THREAD_ID type for the return value from AcpiOsGetThreadId. 
5894This allows the host to define this as necessary to simplify kernel 
5895integration. The default definition is ACPI_NATIVE_UINT.
5896
5897Fixed two interpreter problems related to error processing, the deletion 
5898of 
5899objects, and placing invalid pointers onto the internal operator result 
5900stack. BZ 6028, 6151 (Valery Podrezov)
5901
5902Increased the reference count threshold where a warning is emitted for 
5903large 
5904reference counts in order to eliminate unnecessary warnings on systems 
5905with 
5906large namespaces (especially 64-bit.) Increased the value from 0x400 to 
59070x800.
5908
5909Due to universal disagreement as to the meaning of the 'c' in the calloc() 
5910function, the ACPI_MEM_CALLOCATE macro has been renamed to 
5911ACPI_ALLOCATE_ZEROED so that the purpose of the interface is 'clear'. 
5912ACPI_MEM_ALLOCATE and ACPI_MEM_FREE are renamed to ACPI_ALLOCATE and 
5913ACPI_FREE.
5914
5915Code and Data Size: These are the sizes for the acpica.lib produced by the 
5916Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any 
5917ACPI 
5918driver or OSPM code. The debug version of the code includes the debug 
5919output 
5920trace mechanism and has a much larger code and data size. Note that these 
5921values will vary depending on the efficiency of the compiler and the 
5922compiler options used during generation.
5923
5924  Previous Release:
5925    Non-Debug Version:  81.0K Code, 17.8K Data,  98.8K Total
5926    Debug Version:     161.4K Code, 65.7K Data, 227.1K Total
5927  Current Release:
5928    Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
5929    Debug Version:     161.6K Code, 65.7K Data, 227.3K Total
5930
5931
59322) iASL Compiler/Disassembler:
5933
5934Disassembler: implemented support for symbolic resource descriptor 
5935references. If a CreateXxxxField operator references a fixed offset within 
5936a 
5937resource descriptor, a name is assigned to the descriptor and the offset 
5938is 
5939translated to the appropriate resource tag and pathname. The addition of 
5940this support brings the disassembled code very close to the original ASL 
5941source code and helps eliminate run-time errors when the disassembled code 
5942is modified (and recompiled) in such a way as to invalidate the original 
5943fixed offsets.
5944
5945Implemented support for a Descriptor Name as the last parameter to the ASL 
5946Register() macro. This parameter was inadvertently left out of the ACPI 
5947specification, and will be added for ACPI 3.0b.
5948
5949Fixed a problem where the use of the "_OSI" string (versus the full path 
5950"\_OSI") caused an internal compiler error. ("No back ptr to op")
5951
5952Fixed a problem with the error message that occurs when an invalid string 
5953is 
5954used for a _HID object (such as one with an embedded asterisk: 
5955"*PNP010A".) 
5956The correct message is now displayed.
5957
5958----------------------------------------
595917 February 2006. Summary of changes for version 20060217:
5960
59611) ACPI CA Core Subsystem:
5962
5963Implemented a change to the IndexField support to match the behavior of 
5964the 
5965Microsoft AML interpreter. The value written to the Index register is now 
5966a 
5967byte offset, no longer an index based upon the width of the Data register. 
5968This should fix IndexField problems seen on some machines where the Data 
5969register is not exactly one byte wide. The ACPI specification will be 
5970clarified on this point.
5971
5972Fixed a problem where several resource descriptor types could overrun the 
5973internal descriptor buffer due to size miscalculation: VendorShort, 
5974VendorLong, and Interrupt. This was noticed on IA64 machines, but could 
5975affect all platforms.
5976
5977Fixed a problem where individual resource descriptors were misaligned 
5978within 
5979the internal buffer, causing alignment faults on IA64 platforms.
5980
5981Code and Data Size: These are the sizes for the acpica.lib produced by the 
5982Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any 
5983ACPI 
5984driver or OSPM code. The debug version of the code includes the debug 
5985output 
5986trace mechanism and has a much larger code and data size. Note that these 
5987values will vary depending on the efficiency of the compiler and the 
5988compiler options used during generation.
5989
5990  Previous Release:
5991    Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
5992    Debug Version:     161.3K Code, 65.6K Data, 226.9K Total
5993  Current Release:
5994    Non-Debug Version:  81.0K Code, 17.8K Data,  98.8K Total
5995    Debug Version:     161.4K Code, 65.7K Data, 227.1K Total
5996
5997
59982) iASL Compiler/Disassembler:
5999
6000Implemented support for new reserved names: _WDG and _WED are Microsoft 
6001extensions for Windows Instrumentation Management, _TDL is a new ACPI-
6002defined method (Throttling Depth Limit.)
6003
6004Fixed a problem where a zero-length VendorShort or VendorLong resource 
6005descriptor was incorrectly emitted as a descriptor of length one.
6006
6007----------------------------------------
600810 February 2006. Summary of changes for version 20060210:
6009
60101) ACPI CA Core Subsystem:
6011
6012Removed a couple of extraneous ACPI_ERROR messages that appeared during 
6013normal execution. These became apparent after the conversion from 
6014ACPI_DEBUG_PRINT.
6015
6016Fixed a problem where the CreateField operator could hang if the BitIndex 
6017or 
6018NumBits parameter referred to a named object. (Valery Podrezov, BZ 5359)
6019
6020Fixed a problem where a DeRefOf operation on a buffer object incorrectly 
6021failed with an exception. This also fixes a couple of related RefOf and 
6022DeRefOf issues. (Valery Podrezov, BZ 5360/5392/5387)
6023
6024Fixed a problem where the AE_BUFFER_LIMIT exception was returned instead 
6025of 
6026AE_STRING_LIMIT on an out-of-bounds Index() operation. (Valery Podrezov, 
6027BZ 
60285480)
6029
6030Implemented a memory cleanup at the end of the execution of each iteration 
6031of an AML While() loop, preventing the accumulation of outstanding 
6032objects. 
6033(Valery Podrezov, BZ 5427)
6034
6035Eliminated a chunk of duplicate code in the object resolution code. 
6036(Valery 
6037Podrezov, BZ 5336)
6038
6039Fixed several warnings during the 64-bit code generation.
6040
6041The AcpiSrc source code conversion tool now inserts one line of whitespace 
6042after an if() statement that is followed immediately by a comment, 
6043improving 
6044readability of the Linux code.
6045
6046Code and Data Size: The current and previous library sizes for the core 
6047subsystem are shown below. These are the code and data sizes for the 
6048acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. These 
6049values do not include any ACPI driver or OSPM code. The debug version of 
6050the 
6051code includes the debug output trace mechanism and has a much larger code 
6052and data size. Note that these values will vary depending on the 
6053efficiency 
6054of the compiler and the compiler options used during generation.
6055
6056  Previous Release:
6057    Non-Debug Version:  81.0K Code, 17.9K Data,  98.9K Total
6058    Debug Version:     161.3K Code, 65.7K Data, 227.0K Total
6059  Current Release:
6060    Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
6061    Debug Version:     161.3K Code, 65.6K Data, 226.9K Total
6062
6063
60642) iASL Compiler/Disassembler:
6065
6066Fixed a problem with the disassembly of a BankField operator with a 
6067complex 
6068expression for the BankValue parameter.
6069
6070----------------------------------------
607127 January 2006. Summary of changes for version 20060127:
6072
60731) ACPI CA Core Subsystem:
6074
6075Implemented support in the Resource Manager to allow unresolved namestring 
6076references within resource package objects for the _PRT method. This 
6077support 
6078is in addition to the previously implemented unresolved reference support 
6079within the AML parser. If the interpreter slack mode is enabled, these 
6080unresolved references will be passed through to the caller as a NULL 
6081package 
6082entry.
6083
6084Implemented and deployed new macros and functions for error and warning 
6085messages across the subsystem. These macros are simpler and generate less 
6086code than their predecessors. The new macros ACPI_ERROR, ACPI_EXCEPTION, 
6087ACPI_WARNING, and ACPI_INFO replace the ACPI_REPORT_* macros. The older 
6088macros remain defined to allow ACPI drivers time to migrate to the new 
6089macros.
6090
6091Implemented the ACPI_CPU_FLAGS type to simplify host OS integration of the 
6092Acquire/Release Lock OSL interfaces.
6093
6094Fixed a problem where Alias ASL operators are sometimes not correctly 
6095resolved, in both the interpreter and the iASL compiler.
6096
6097Fixed several problems with the implementation of the 
6098ConcatenateResTemplate 
6099ASL operator. As per the ACPI specification, zero length buffers are now 
6100treated as a single EndTag. One-length buffers always cause a fatal 
6101exception. Non-zero length buffers that do not end with a full 2-byte 
6102EndTag 
6103cause a fatal exception.
6104
6105Fixed a possible structure overwrite in the AcpiGetObjectInfo external 
6106interface. (With assistance from Thomas Renninger)
6107
6108Code and Data Size: The current and previous library sizes for the core 
6109subsystem are shown below. These are the code and data sizes for the 
6110acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. These 
6111values do not include any ACPI driver or OSPM code. The debug version of 
6112the 
6113code includes the debug output trace mechanism and has a much larger code 
6114and data size. Note that these values will vary depending on the 
6115efficiency 
6116of the compiler and the compiler options used during generation.
6117
6118  Previous Release:
6119    Non-Debug Version:  83.1K Code, 18.4K Data, 101.5K Total
6120    Debug Version:     163.2K Code, 66.2K Data, 229.4K Total
6121  Current Release:
6122    Non-Debug Version:  81.0K Code, 17.9K Data,  98.9K Total
6123    Debug Version:     161.3K Code, 65.7K Data, 227.0K Total
6124
6125
61262) iASL Compiler/Disassembler:
6127
6128Fixed an internal error that was generated for any forward references to 
6129ASL 
6130Alias objects.
6131
6132----------------------------------------
613313 January 2006. Summary of changes for version 20060113:
6134
61351) ACPI CA Core Subsystem:
6136
6137Added 2006 copyright to all module headers and signons. This affects 
6138virtually every file in the ACPICA core subsystem, iASL compiler, and the 
6139utilities.
6140 
6141Enhanced the ACPICA error reporting in order to simplify user migration to 
6142the non-debug version of ACPICA. Replaced all instances of the 
6143ACPI_DEBUG_PRINT macro invoked at the ACPI_DB_ERROR and ACPI_DB_WARN debug 
6144levels with the ACPI_REPORT_ERROR and ACPI_REPORT_WARNING macros, 
6145respectively. This preserves all error and warning messages in the non-
6146debug 
6147version of the ACPICA code (this has been referred to as the "debug lite" 
6148option.) Over 200 cases were converted to create a total of over 380 
6149error/warning messages across the ACPICA code. This increases the code and 
6150data size of the default non-debug version of the code somewhat (about 
615113K), 
6152but all error/warning reporting may be disabled if desired (and code 
6153eliminated) by specifying the ACPI_NO_ERROR_MESSAGES compile-time 
6154configuration option. The size of the debug version of ACPICA remains 
6155about 
6156the same.
6157
6158Fixed a memory leak within the AML Debugger "Set" command. One object was 
6159not properly deleted for every successful invocation of the command.
6160
6161Code and Data Size: The current and previous library sizes for the core 
6162subsystem are shown below. These are the code and data sizes for the 
6163acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. These 
6164values do not include any ACPI driver or OSPM code. The debug version of 
6165the 
6166code includes the debug output trace mechanism and has a much larger code 
6167and data size. Note that these values will vary depending on the 
6168efficiency 
6169of the compiler and the compiler options used during generation.
6170
6171  Previous Release:
6172    Non-Debug Version:  76.6K Code, 12.3K Data,  88.9K Total
6173    Debug Version:     163.7K Code, 67.5K Data, 231.2K Total
6174  Current Release:
6175    Non-Debug Version:  83.1K Code, 18.4K Data, 101.5K Total
6176    Debug Version:     163.2K Code, 66.2K Data, 229.4K Total
6177
6178
61792) iASL Compiler/Disassembler:
6180
6181The compiler now officially supports the ACPI 3.0a specification that was 
6182released on December 30, 2005. (Specification is available at 
6183www.acpi.info)
6184
6185----------------------------------------
618616 December 2005. Summary of changes for version 20051216:
6187
61881) ACPI CA Core Subsystem:
6189
6190Implemented optional support to allow unresolved names within ASL Package 
6191objects. A null object is inserted in the package when a named reference 
6192cannot be located in the current namespace. Enabled via the interpreter 
6193slack flag, this should eliminate AE_NOT_FOUND exceptions seen on machines 
6194that contain such code.
6195
6196Implemented an optimization to the initialization sequence that can 
6197improve 
6198boot time. During ACPI device initialization, the _STA method is now run 
6199if 
6200and only if the _INI method exists. The _STA method is used to determine 
6201if 
6202the device is present; An _INI can only be run if _STA returns present, 
6203but 
6204it is a waste of time to run the _STA method if the _INI does not exist. 
6205(Prototype and assistance from Dong Wei)
6206
6207Implemented use of the C99 uintptr_t for the pointer casting macros if it 
6208is 
6209available in the current compiler. Otherwise, the default (void *) cast is 
6210used as before.
6211
6212Fixed some possible memory leaks found within the execution path of the 
6213Break, Continue, If, and CreateField operators. (Valery Podrezov)
6214
6215Fixed a problem introduced in the 20051202 release where an exception is 
6216generated during method execution if a control method attempts to declare 
6217another method.
6218
6219Moved resource descriptor string constants that are used by both the AML 
6220disassembler and AML debugger to the common utilities directory so that 
6221these components are independent.
6222
6223Implemented support in the AcpiExec utility (-e switch) to globally ignore 
6224exceptions during control method execution (method is not aborted.)
6225
6226Added the rsinfo.c source file to the AcpiExec makefile for Linux/Unix 
6227generation.
6228
6229Code and Data Size: The current and previous library sizes for the core 
6230subsystem are shown below. These are the code and data sizes for the 
6231acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. These 
6232values do not include any ACPI driver or OSPM code. The debug version of 
6233the 
6234code includes the debug output trace mechanism and has a much larger code 
6235and data size. Note that these values will vary depending on the 
6236efficiency 
6237of the compiler and the compiler options used during generation.
6238
6239  Previous Release:
6240    Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
6241    Debug Version:     163.2K Code, 67.4K Data, 230.6K Total
6242  Current Release:
6243    Non-Debug Version:  76.6K Code, 12.3K Data,  88.9K Total
6244    Debug Version:     163.7K Code, 67.5K Data, 231.2K Total
6245
6246
62472) iASL Compiler/Disassembler:
6248
6249Fixed a problem where a CPU stack overflow fault could occur if a 
6250recursive 
6251method call was made from within a Return statement.
6252
6253----------------------------------------
625402 December 2005. Summary of changes for version 20051202:
6255
62561) ACPI CA Core Subsystem:
6257
6258Modified the parsing of control methods to no longer create namespace 
6259objects during the first pass of the parse. Objects are now created only 
6260during the execute phase, at the moment the namespace creation operator is 
6261encountered in the AML (Name, OperationRegion, CreateByteField, etc.) This 
6262should eliminate ALREADY_EXISTS exceptions seen on some machines where 
6263reentrant control methods are protected by an AML mutex. The mutex will 
6264now 
6265correctly block multiple threads from attempting to create the same object 
6266more than once.
6267
6268Increased the number of available Owner Ids for namespace object tracking 
6269from 32 to 255. This should eliminate the OWNER_ID_LIMIT exceptions seen 
6270on 
6271some machines with a large number of ACPI tables (either static or 
6272dynamic).
6273
6274Fixed a problem with the AcpiExec utility where a fault could occur when 
6275the 
6276-b switch (batch mode) is used.
6277
6278Enhanced the namespace dump routine to output the owner ID for each 
6279namespace object.
6280
6281Code and Data Size: The current and previous library sizes for the core 
6282subsystem are shown below. These are the code and data sizes for the 
6283acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. These 
6284values do not include any ACPI driver or OSPM code. The debug version of 
6285the 
6286code includes the debug output trace mechanism and has a much larger code 
6287and data size. Note that these values will vary depending on the 
6288efficiency 
6289of the compiler and the compiler options used during generation.
6290
6291  Previous Release:
6292    Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
6293    Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
6294  Current Release:
6295    Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
6296    Debug Version:     163.2K Code, 67.4K Data, 230.6K Total
6297
6298
62992) iASL Compiler/Disassembler:
6300
6301Fixed a parse error during compilation of certain Switch/Case constructs. 
6302To 
6303simplify the parse, the grammar now allows for multiple Default statements 
6304and this error is now detected and flagged during the analysis phase.
6305
6306Disassembler: The disassembly now includes the contents of the original 
6307table header within a comment at the start of the file. This includes the 
6308name and version of the original ASL compiler.
6309
6310----------------------------------------
631117 November 2005. Summary of changes for version 20051117:
6312
63131) ACPI CA Core Subsystem:
6314
6315Fixed a problem in the AML parser where the method thread count could be 
6316decremented below zero if any errors occurred during the method parse 
6317phase. 
6318This should eliminate AE_AML_METHOD_LIMIT exceptions seen on some 
6319machines. 
6320This also fixed a related regression with the mechanism that detects and 
6321corrects methods that cannot properly handle reentrancy (related to the 
6322deployment of the new OwnerId mechanism.)
6323
6324Eliminated the pre-parsing of control methods (to detect errors) during 
6325table load. Related to the problem above, this was causing unwind issues 
6326if 
6327any errors occurred during the parse, and it seemed to be overkill. A 
6328table 
6329load should not be aborted if there are problems with any single control 
6330method, thus rendering this feature rather pointless.
6331
6332Fixed a problem with the new table-driven resource manager where an 
6333internal 
6334buffer overflow could occur for small resource templates.
6335
6336Implemented a new external interface, AcpiGetVendorResource. This 
6337interface 
6338will find and return a vendor-defined resource descriptor within a _CRS or 
6339_PRS method via an ACPI 3.0 UUID match. With assistance from Bjorn 
6340Helgaas.
6341
6342Removed the length limit (200) on string objects as per the upcoming ACPI 
63433.0A specification. This affects the following areas of the interpreter: 
63441) 
6345any implicit conversion of a Buffer to a String, 2) a String object result 
6346of the ASL Concatentate operator, 3) the String object result of the ASL 
6347ToString operator.
6348
6349Fixed a problem in the Windows OS interface layer (OSL) where a 
6350WAIT_FOREVER 
6351on a semaphore object would incorrectly timeout. This allows the 
6352multithreading features of the AcpiExec utility to work properly under 
6353Windows.
6354
6355Updated the Linux makefiles for the iASL compiler and AcpiExec to include 
6356the recently added file named "utresrc.c".
6357
6358Code and Data Size: The current and previous library sizes for the core 
6359subsystem are shown below. These are the code and data sizes for the 
6360acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. These 
6361values do not include any ACPI driver or OSPM code. The debug version of 
6362the 
6363code includes the debug output trace mechanism and has a much larger code 
6364and data size. Note that these values will vary depending on the 
6365efficiency 
6366of the compiler and the compiler options used during generation.
6367
6368  Previous Release:
6369    Non-Debug Version:  76.2K Code, 12.3K Data,  88.5K Total
6370    Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
6371  Current Release:
6372    Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
6373    Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
6374
6375
63762) iASL Compiler/Disassembler:
6377
6378Removed the limit (200) on string objects as per the upcoming ACPI 3.0A 
6379specification. For the iASL compiler, this means that string literals 
6380within 
6381the source ASL can be of any length. 
6382
6383Enhanced the listing output to dump the AML code for resource descriptors 
6384immediately after the ASL code for each descriptor, instead of in a block 
6385at 
6386the end of the entire resource template.
6387
6388Enhanced the compiler debug output to dump the entire original parse tree 
6389constructed during the parse phase, before any transforms are applied to 
6390the 
6391tree. The transformed tree is dumped also.
6392
6393----------------------------------------
639402 November 2005. Summary of changes for version 20051102:
6395
63961) ACPI CA Core Subsystem:
6397
6398Modified the subsystem initialization sequence to improve GPE support. The 
6399GPE initialization has been split into two parts in order to defer 
6400execution 
6401of the _PRW methods (Power Resources for Wake) until after the hardware is 
6402fully initialized and the SCI handler is installed. This allows the _PRW 
6403methods to access fields protected by the Global Lock. This will fix 
6404systems 
6405where a NO_GLOBAL_LOCK exception has been seen during initialization.
6406
6407Converted the ACPI internal object disassemble and display code within the 
6408AML debugger to fully table-driven operation, reducing code size and 
6409increasing maintainability.
6410
6411Fixed a regression with the ConcatenateResTemplate() ASL operator 
6412introduced 
6413in the 20051021 release.
6414
6415Implemented support for "local" internal ACPI object types within the 
6416debugger "Object" command and the AcpiWalkNamespace external interfaces. 
6417These local types include RegionFields, BankFields, IndexFields, Alias, 
6418and 
6419reference objects.
6420
6421Moved common AML resource handling code into a new file, "utresrc.c". This 
6422code is shared by both the Resource Manager and the AML Debugger.
6423
6424Code and Data Size: The current and previous library sizes for the core 
6425subsystem are shown below. These are the code and data sizes for the 
6426acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. These 
6427values do not include any ACPI driver or OSPM code. The debug version of 
6428the 
6429code includes the debug output trace mechanism and has a much larger code 
6430and data size. Note that these values will vary depending on the 
6431efficiency 
6432of the compiler and the compiler options used during generation.
6433
6434  Previous Release:
6435    Non-Debug Version:  76.1K Code, 12.2K Data,  88.3K Total
6436    Debug Version:     163.5K Code, 67.0K Data, 230.5K Total
6437  Current Release:
6438    Non-Debug Version:  76.2K Code, 12.3K Data,  88.5K Total
6439    Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
6440
6441
64422) iASL Compiler/Disassembler:
6443
6444Fixed a problem with very large initializer lists (more than 4000 
6445elements) 
6446for both Buffer and Package objects where the parse stack could overflow.
6447
6448Enhanced the pre-compile source code scan for non-ASCII characters to 
6449ignore 
6450characters within comment fields. The scan is now always performed and is 
6451no 
6452longer optional, detecting invalid characters within a source file 
6453immediately rather than during the parse phase or later.
6454
6455Enhanced the ASL grammar definition to force early reductions on all list-
6456style grammar elements so that the overall parse stack usage is greatly 
6457reduced. This should improve performance and reduce the possibility of 
6458parse 
6459stack overflow.
6460
6461Eliminated all reduce/reduce conflicts in the iASL parser generation. 
6462Also, 
6463with the addition of a %expected statement, the compiler generates from 
6464source with no warnings.
6465
6466Fixed a possible segment fault in the disassembler if the input filename 
6467does not contain a "dot" extension (Thomas Renninger).
6468
6469----------------------------------------
647021 October 2005. Summary of changes for version 20051021:
6471
64721) ACPI CA Core Subsystem:
6473
6474Implemented support for the EM64T and other x86-64 processors. This 
6475essentially entails recognizing that these processors support non-aligned 
6476memory transfers. Previously, all 64-bit processors were assumed to lack 
6477hardware support for non-aligned transfers.
6478
6479Completed conversion of the Resource Manager to nearly full table-driven 
6480operation. Specifically, the resource conversion code (convert AML to 
6481internal format and the reverse) and the debug code to dump internal 
6482resource descriptors are fully table-driven, reducing code and data size 
6483and 
6484improving maintainability.
6485
6486The OSL interfaces for Acquire and Release Lock now use a 64-bit flag word 
6487on 64-bit processors instead of a fixed 32-bit word. (With assistance from 
6488Alexey Starikovskiy)
6489
6490Implemented support within the resource conversion code for the Type-
6491Specific byte within the various ACPI 3.0 *WordSpace macros.
6492
6493Fixed some issues within the resource conversion code for the type-
6494specific 
6495flags for both Memory and I/O address resource descriptors. For Memory, 
6496implemented support for the MTP and TTP flags. For I/O, split the TRS and 
6497TTP flags into two separate fields.
6498
6499Code and Data Size: The current and previous library sizes for the core 
6500subsystem are shown below. These are the code and data sizes for the 
6501acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. These 
6502values do not include any ACPI driver or OSPM code. The debug version of 
6503the 
6504code includes the debug output trace mechanism and has a much larger code 
6505and data size. Note that these values will vary depending on the 
6506efficiency 
6507of the compiler and the compiler options used during generation.
6508
6509  Previous Release:
6510    Non-Debug Version:  77.1K Code, 12.1K Data,  89.2K Total
6511    Debug Version:     168.0K Code, 68.3K Data, 236.3K Total
6512  Current Release:
6513    Non-Debug Version:  76.1K Code, 12.2K Data,  88.3K Total
6514    Debug Version:     163.5K Code, 67.0K Data, 230.5K Total
6515
6516
6517
65182) iASL Compiler/Disassembler:
6519
6520Relaxed a compiler restriction that disallowed a ResourceIndex byte if the 
6521corresponding ResourceSource string was not also present in a resource 
6522descriptor declaration. This restriction caused problems with existing 
6523AML/ASL code that includes the Index byte without the string. When such 
6524AML 
6525was disassembled, it could not be compiled without modification. Further, 
6526the modified code created a resource template with a different size than 
6527the 
6528original, breaking code that used fixed offsets into the resource template 
6529buffer.
6530
6531Removed a recent feature of the disassembler to ignore a lone 
6532ResourceIndex 
6533byte. This byte is now emitted if present so that the exact AML can be 
6534reproduced when the disassembled code is recompiled.
6535
6536Improved comments and text alignment for the resource descriptor code 
6537emitted by the disassembler.
6538
6539Implemented disassembler support for the ACPI 3.0 AccessSize field within 
6540a 
6541Register() resource descriptor.
6542
6543----------------------------------------
654430 September 2005. Summary of changes for version 20050930:
6545
65461) ACPI CA Core Subsystem:
6547
6548Completed a major overhaul of the Resource Manager code - specifically, 
6549optimizations in the area of the AML/internal resource conversion code. 
6550The 
6551code has been optimized to simplify and eliminate duplicated code, CPU 
6552stack 
6553use has been decreased by optimizing function parameters and local 
6554variables, and naming conventions across the manager have been 
6555standardized 
6556for clarity and ease of maintenance (this includes function, parameter, 
6557variable, and struct/typedef names.) The update may force changes in some 
6558driver code, depending on how resources are handled by the host OS.
6559
6560All Resource Manager dispatch and information tables have been moved to a 
6561single location for clarity and ease of maintenance. One new file was 
6562created, named "rsinfo.c".
6563
6564The ACPI return macros (return_ACPI_STATUS, etc.) have been modified to 
6565guarantee that the argument is not evaluated twice, making them less prone 
6566to macro side-effects. However, since there exists the possibility of 
6567additional stack use if a particular compiler cannot optimize them (such 
6568as 
6569in the debug generation case), the original macros are optionally 
6570available.  
6571Note that some invocations of the return_VALUE macro may now cause size 
6572mismatch warnings; the return_UINT8 and return_UINT32 macros are provided 
6573to 
6574eliminate these. (From Randy Dunlap)
6575
6576Implemented a new mechanism to enable debug tracing for individual control 
6577methods. A new external interface, AcpiDebugTrace, is provided to enable 
6578this mechanism. The intent is to allow the host OS to easily enable and 
6579disable tracing for problematic control methods. This interface can be 
6580easily exposed to a user or debugger interface if desired. See the file 
6581psxface.c for details.
6582
6583AcpiUtCallocate will now return a valid pointer if a length of zero is 
6584specified - a length of one is used and a warning is issued. This matches 
6585the behavior of AcpiUtAllocate.
6586
6587Code and Data Size: The current and previous library sizes for the core 
6588subsystem are shown below. These are the code and data sizes for the 
6589acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. These 
6590values do not include any ACPI driver or OSPM code. The debug version of 
6591the 
6592code includes the debug output trace mechanism and has a much larger code 
6593and data size. Note that these values will vary depending on the 
6594efficiency 
6595of the compiler and the compiler options used during generation.
6596
6597  Previous Release:
6598    Non-Debug Version:  77.5K Code, 12.0K Data,  89.5K Total
6599    Debug Version:     168.1K Code, 68.4K Data, 236.5K Total
6600  Current Release:
6601    Non-Debug Version:  77.1K Code, 12.1K Data,  89.2K Total
6602    Debug Version:     168.0K Code, 68.3K Data, 236.3K Total
6603
6604
66052) iASL Compiler/Disassembler:
6606
6607A remark is issued if the effective compile-time length of a package or 
6608buffer is zero. Previously, this was a warning.
6609
6610----------------------------------------
661116 September 2005. Summary of changes for version 20050916:
6612
66131) ACPI CA Core Subsystem:
6614
6615Fixed a problem within the Resource Manager where support for the Generic 
6616Register descriptor was not fully implemented. This descriptor is now 
6617fully 
6618recognized, parsed, disassembled, and displayed.
6619
6620Completely restructured the Resource Manager code to utilize table-driven 
6621dispatch and lookup, eliminating many of the large switch() statements. 
6622This 
6623reduces overall subsystem code size and code complexity. Affects the 
6624resource parsing and construction, disassembly, and debug dump output.
6625
6626Cleaned up and restructured the debug dump output for all resource 
6627descriptors. Improved readability of the output and reduced code size.
6628
6629Fixed a problem where changes to internal data structures caused the 
6630optional ACPI_MUTEX_DEBUG code to fail compilation if specified.
6631
6632Code and Data Size: The current and previous library sizes for the core 
6633subsystem are shown below. These are the code and data sizes for the 
6634acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. These 
6635values do not include any ACPI driver or OSPM code. The debug version of 
6636the 
6637code includes the debug output trace mechanism and has a much larger code 
6638and data size. Note that these values will vary depending on the 
6639efficiency 
6640of the compiler and the compiler options used during generation.
6641
6642  Previous Release:
6643    Non-Debug Version:  78.4K Code, 11.8K Data,  90.2K Total
6644    Debug Version:     169.6K Code, 69.9K Data, 239.5K Total
6645  Current Release:
6646    Non-Debug Version:  77.5K Code, 12.0K Data,  89.5K Total
6647    Debug Version:     168.1K Code, 68.4K Data, 236.5K Total
6648
6649
66502) iASL Compiler/Disassembler:
6651
6652Updated the disassembler to automatically insert an EndDependentFn() macro 
6653into the ASL stream if this macro is missing in the original AML code, 
6654simplifying compilation of the resulting ASL module.
6655
6656Fixed a problem in the disassembler where a disassembled ResourceSource 
6657string (within a large resource descriptor) was not surrounded by quotes 
6658and 
6659not followed by a comma, causing errors when the resulting ASL module was 
6660compiled. Also, escape sequences within a ResourceSource string are now 
6661handled correctly (especially "\\")
6662
6663----------------------------------------
666402 September 2005. Summary of changes for version 20050902:
6665
66661) ACPI CA Core Subsystem:
6667
6668Fixed a problem with the internal Owner ID allocation and deallocation 
6669mechanisms for control method execution and recursive method invocation. 
6670This should eliminate the OWNER_ID_LIMIT exceptions and "Invalid OwnerId" 
6671messages seen on some systems. Recursive method invocation depth is 
6672currently limited to 255. (Alexey Starikovskiy)
6673
6674Completely eliminated all vestiges of support for the "module-level 
6675executable code" until this support is fully implemented and debugged. 
6676This 
6677should eliminate the NO_RETURN_VALUE exceptions seen during table load on 
6678some systems that invoke this support.
6679
6680Fixed a problem within the resource manager code where the transaction 
6681flags 
6682for a 64-bit address descriptor were handled incorrectly in the type-
6683specific flag byte.
6684
6685Consolidated duplicate code within the address descriptor resource manager 
6686code, reducing overall subsystem code size.
6687
6688Fixed a fault when using the AML debugger "disassemble" command to 
6689disassemble individual control methods.
6690
6691Removed references to the "release_current" directory within the Unix 
6692release package.
6693
6694Code and Data Size: The current and previous core subsystem library sizes 
6695are shown below. These are the code and data sizes for the acpica.lib 
6696produced by the Microsoft Visual C++ 6.0 compiler. These values do not 
6697include any ACPI driver or OSPM code. The debug version of the code 
6698includes 
6699the debug output trace mechanism and has a much larger code and data size. 
6700Note that these values will vary depending on the efficiency of the 
6701compiler 
6702and the compiler options used during generation.
6703
6704  Previous Release:
6705    Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
6706    Debug Version:     170.0K Code, 69.9K Data, 239.9K Total
6707  Current Release:
6708    Non-Debug Version:  78.4K Code, 11.8K Data,  90.2K Total
6709    Debug Version:     169.6K Code, 69.9K Data, 239.5K Total
6710
6711
67122) iASL Compiler/Disassembler:
6713
6714Implemented an error check for illegal duplicate values in the interrupt 
6715and 
6716dma lists for the following ASL macros: Dma(), Irq(), IrqNoFlags(), and 
6717Interrupt().
6718
6719Implemented error checking for the Irq() and IrqNoFlags() macros to detect 
6720too many values in the interrupt list (16 max) and invalid values in the 
6721list (range 0 - 15)
6722
6723The maximum length string literal within an ASL file is now restricted to 
6724200 characters as per the ACPI specification.
6725
6726Fixed a fault when using the -ln option (generate namespace listing).
6727
6728Implemented an error check to determine if a DescriptorName within a 
6729resource descriptor has already been used within the current scope.
6730
6731----------------------------------------
673215 August 2005.  Summary of changes for version 20050815:
6733 
67341) ACPI CA Core Subsystem:
6735 
6736Implemented a full bytewise compare to determine if a table load request 
6737is 
6738attempting to load a duplicate table. The compare is performed if the 
6739table 
6740signatures and table lengths match. This will allow different tables with 
6741the same OEM Table ID and revision to be loaded - probably against the 
6742ACPI 
6743specification, but discovered in the field nonetheless.
6744 
6745Added the changes.txt logfile to each of the zipped release packages.
6746 
6747Code and Data Size: Current and previous core subsystem library sizes are 
6748shown below. These are the code and data sizes for the acpica.lib produced 
6749by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
6750any ACPI driver or OSPM code. The debug version of the code includes the 
6751debug output trace mechanism and has a much larger code and data size. 
6752Note 
6753that these values will vary depending on the efficiency of the compiler 
6754and 
6755the compiler options used during generation.
6756 
6757  Previous Release:
6758    Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
6759    Debug Version:     167.0K Code, 69.9K Data, 236.9K Total
6760  Current Release:
6761    Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
6762    Debug Version:     170.0K Code, 69.9K Data, 239.9K Total
6763 
6764 
67652) iASL Compiler/Disassembler:
6766 
6767Fixed a problem where incorrect AML code could be generated for Package 
6768objects if optimization is disabled (via the -oa switch).
6769 
6770Fixed a problem with where incorrect AML code is generated for variable-
6771length packages when the package length is not specified and the number of 
6772initializer values is greater than 255.
6773 
6774
6775----------------------------------------
677629 July 2005.  Summary of changes for version 20050729:
6777
67781) ACPI CA Core Subsystem:
6779
6780Implemented support to ignore an attempt to install/load a particular ACPI 
6781table more than once. Apparently there exists BIOS code that repeatedly 
6782attempts to load the same SSDT upon certain events. With assistance from 
6783Venkatesh Pallipadi.
6784
6785Restructured the main interface to the AML parser in order to correctly 
6786handle all exceptional conditions. This will prevent leakage of the 
6787OwnerId 
6788resource and should eliminate the AE_OWNER_ID_LIMIT exceptions seen on 
6789some 
6790machines. With assistance from Alexey Starikovskiy.
6791
6792Support for "module level code" has been disabled in this version due to a 
6793number of issues that have appeared on various machines. The support can 
6794be 
6795enabled by defining ACPI_ENABLE_MODULE_LEVEL_CODE during subsystem 
6796compilation. When the issues are fully resolved, the code will be enabled 
6797by 
6798default again.
6799
6800Modified the internal functions for debug print support to define the 
6801FunctionName parameter as a (const char *) for compatibility with compiler 
6802built-in macros such as __FUNCTION__, etc.
6803
6804Linted the entire ACPICA source tree for both 32-bit and 64-bit.
6805
6806Implemented support to display an object count summary for the AML 
6807Debugger 
6808commands Object and Methods.
6809
6810Code and Data Size: Current and previous core subsystem library sizes are 
6811shown below. These are the code and data sizes for the acpica.lib produced 
6812by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
6813any ACPI driver or OSPM code. The debug version of the code includes the 
6814debug output trace mechanism and has a much larger code and data size. 
6815Note 
6816that these values will vary depending on the efficiency of the compiler 
6817and 
6818the compiler options used during generation.
6819
6820  Previous Release:
6821    Non-Debug Version:  78.6K Code, 11.6K Data,  90.2K Total
6822    Debug Version:     170.0K Code, 69.7K Data, 239.7K Total
6823  Current Release:
6824    Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
6825    Debug Version:     167.0K Code, 69.9K Data, 236.9K Total
6826
6827
68282) iASL Compiler/Disassembler:
6829
6830Fixed a regression that appeared in the 20050708 version of the compiler 
6831where an error message was inadvertently emitted for invocations of the 
6832_OSI 
6833reserved control method.
6834
6835----------------------------------------
683608 July 2005.  Summary of changes for version 20050708:
6837
68381) ACPI CA Core Subsystem:
6839
6840The use of the CPU stack in the debug version of the subsystem has been 
6841considerably reduced. Previously, a debug structure was declared in every 
6842function that used the debug macros. This structure has been removed in 
6843favor of declaring the individual elements as parameters to the debug 
6844functions. This reduces the cumulative stack use during nested execution 
6845of 
6846ACPI function calls at the cost of a small increase in the code size of 
6847the 
6848debug version of the subsystem. With assistance from Alexey Starikovskiy 
6849and 
6850Len Brown.
6851
6852Added the ACPI_GET_FUNCTION_NAME macro to enable the compiler-dependent 
6853headers to define a macro that will return the current function name at 
6854runtime (such as __FUNCTION__ or _func_, etc.) The function name is used 
6855by 
6856the debug trace output. If ACPI_GET_FUNCTION_NAME is not defined in the 
6857compiler-dependent header, the function name is saved on the CPU stack 
6858(one 
6859pointer per function.) This mechanism is used because apparently there 
6860exists no standard ANSI-C defined macro that that returns the function 
6861name.
6862
6863Redesigned and reimplemented the "Owner ID" mechanism used to track 
6864namespace objects created/deleted by ACPI tables and control method 
6865execution. A bitmap is now used to allocate and free the IDs, thus solving 
6866the wraparound problem present in the previous implementation. The size of 
6867the namespace node descriptor was reduced by 2 bytes as a result (Alexey 
6868Starikovskiy).
6869
6870Removed the UINT32_BIT and UINT16_BIT types that were used for the 
6871bitfield 
6872flag definitions within the headers for the predefined ACPI tables. These 
6873have been replaced by UINT8_BIT in order to increase the code portability 
6874of 
6875the subsystem. If the use of UINT8 remains a problem, we may be forced to 
6876eliminate bitfields entirely because of a lack of portability.
6877
6878Enhanced the performance of the AcpiUtUpdateObjectReference procedure. 
6879This 
6880is a frequently used function and this improvement increases the 
6881performance 
6882of the entire subsystem (Alexey Starikovskiy).
6883
6884Fixed several possible memory leaks and the inverse - premature object 
6885deletion (Alexey Starikovskiy).
6886
6887Code and Data Size: Current and previous core subsystem library sizes are 
6888shown below. These are the code and data sizes for the acpica.lib produced 
6889by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
6890any ACPI driver or OSPM code. The debug version of the code includes the 
6891debug output trace mechanism and has a much larger code and data size. 
6892Note 
6893that these values will vary depending on the efficiency of the compiler 
6894and 
6895the compiler options used during generation.
6896
6897  Previous Release:
6898    Non-Debug Version:  78.6K Code, 11.5K Data,  90.1K Total
6899    Debug Version:     165.2K Code, 69.6K Data, 234.8K Total
6900  Current Release:
6901    Non-Debug Version:  78.6K Code, 11.6K Data,  90.2K Total
6902    Debug Version:     170.0K Code, 69.7K Data, 239.7K Total
6903
6904----------------------------------------
690524 June 2005.  Summary of changes for version 20050624:
6906
69071) ACPI CA Core Subsystem:
6908
6909Modified the new OSL cache interfaces to use ACPI_CACHE_T as the type for 
6910the host-defined cache object. This allows the OSL implementation to 
6911define 
6912and type this object in any manner desired, simplifying the OSL 
6913implementation. For example, ACPI_CACHE_T is defined as kmem_cache_t for 
6914Linux, and should be defined in the OS-specific header file for other 
6915operating systems as required.
6916
6917Changed the interface to AcpiOsAcquireObject to directly return the 
6918requested object as the function return (instead of ACPI_STATUS.) This 
6919change was made for performance reasons, since this is the purpose of the 
6920interface in the first place. AcpiOsAcquireObject is now similar to the 
6921AcpiOsAllocate interface.
6922
6923Implemented a new AML debugger command named Businfo. This command 
6924displays 
6925information about all devices that have an associate _PRT object. The 
6926_ADR, 
6927_HID, _UID, and _CID are displayed for these devices.
6928
6929Modified the initialization sequence in AcpiInitializeSubsystem to call 
6930the 
6931OSL interface AcpiOslInitialize first, before any local initialization. 
6932This 
6933change was required because the global initialization now calls OSL 
6934interfaces.
6935
6936Enhanced the Dump command to display the entire contents of Package 
6937objects 
6938(including all sub-objects and their values.) 
6939
6940Restructured the code base to split some files because of size and/or 
6941because the code logically belonged in a separate file. New files are 
6942listed 
6943below. All makefiles and project files included in the ACPI CA release 
6944have 
6945been updated.
6946    utilities/utcache.c           /* Local cache interfaces */
6947    utilities/utmutex.c           /* Local mutex support */
6948    utilities/utstate.c           /* State object support */
6949    interpreter/parser/psloop.c   /* Main AML parse loop */
6950
6951Code and Data Size: Current and previous core subsystem library sizes are 
6952shown below. These are the code and data sizes for the acpica.lib produced 
6953by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
6954any ACPI driver or OSPM code. The debug version of the code includes the 
6955debug output trace mechanism and has a much larger code and data size. 
6956Note 
6957that these values will vary depending on the efficiency of the compiler 
6958and 
6959the compiler options used during generation.
6960
6961  Previous Release:
6962    Non-Debug Version:  78.3K Code, 11.6K Data,  89.9K Total
6963    Debug Version:     164.0K Code, 69.1K Data, 233.1K Total
6964  Current Release:
6965    Non-Debug Version:  78.6K Code, 11.5K Data,  90.1K Total
6966    Debug Version:     165.2K Code, 69.6K Data, 234.8K Total
6967
6968
69692) iASL Compiler/Disassembler:
6970
6971Fixed a regression introduced in version 20050513 where the use of a 
6972Package 
6973object within a Case() statement caused a compile time exception. The 
6974original behavior has been restored (a Match() operator is emitted.)
6975
6976----------------------------------------
697717 June 2005.  Summary of changes for version 20050617:
6978
69791) ACPI CA Core Subsystem:
6980
6981Moved the object cache operations into the OS interface layer (OSL) to 
6982allow 
6983the host OS to handle these operations if desired (for example, the Linux 
6984OSL will invoke the slab allocator). This support is optional; the compile 
6985time define ACPI_USE_LOCAL_CACHE may be used to utilize the original cache 
6986code in the ACPI CA core. The new OSL interfaces are shown below. See 
6987utalloc.c for an example implementation, and acpiosxf.h for the exact 
6988interface definitions. With assistance from Alexey Starikovskiy.
6989    AcpiOsCreateCache
6990    AcpiOsDeleteCache
6991    AcpiOsPurgeCache
6992    AcpiOsAcquireObject
6993    AcpiOsReleaseObject
6994
6995Modified the interfaces to AcpiOsAcquireLock and AcpiOsReleaseLock to 
6996return 
6997and restore a flags parameter. This fits better with many OS lock models. 
6998Note: the current execution state (interrupt handler or not) is no longer 
6999passed to these interfaces. If necessary, the OSL must determine this 
7000state 
7001by itself, a simple and fast operation. With assistance from Alexey 
7002Starikovskiy.
7003
7004Fixed a problem in the ACPI table handling where a valid XSDT was assumed 
7005present if the revision of the RSDP was 2 or greater. According to the 
7006ACPI 
7007specification, the XSDT is optional in all cases, and the table manager 
7008therefore now checks for both an RSDP >=2 and a valid XSDT pointer. 
7009Otherwise, the RSDT pointer is used. Some ACPI 2.0 compliant BIOSs contain 
7010only the RSDT.
7011
7012Fixed an interpreter problem with the Mid() operator in the case of an 
7013input 
7014string where the resulting output string is of zero length. It now 
7015correctly 
7016returns a valid, null terminated string object instead of a string object 
7017with a null pointer.
7018
7019Fixed a problem with the control method argument handling to allow a store 
7020to an Arg object that already contains an object of type Device. The 
7021Device 
7022object is now correctly overwritten. Previously, an error was returned.
7023
7024
7025Enhanced the debugger Find command to emit object values in addition to 
7026the 
7027found object pathnames. The output format is the same as the dump 
7028namespace 
7029command.
7030
7031Enhanced the debugger Set command. It now has the ability to set the value 
7032of any Named integer object in the namespace (Previously, only method 
7033locals 
7034and args could be set.)
7035
7036Code and Data Size: Current and previous core subsystem library sizes are 
7037shown below. These are the code and data sizes for the acpica.lib produced 
7038by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7039any ACPI driver or OSPM code. The debug version of the code includes the 
7040debug output trace mechanism and has a much larger code and data size. 
7041Note 
7042that these values will vary depending on the efficiency of the compiler 
7043and 
7044the compiler options used during generation.
7045
7046  Previous Release:
7047    Non-Debug Version:  78.1K Code, 11.6K Data,  89.7K Total
7048    Debug Version:     164.0K Code, 69.3K Data, 233.3K Total
7049  Current Release:
7050    Non-Debug Version:  78.3K Code, 11.6K Data,  89.9K Total
7051    Debug Version:     164.0K Code, 69.1K Data, 233.1K Total
7052
7053
70542) iASL Compiler/Disassembler:
7055
7056Fixed a regression in the disassembler where if/else/while constructs were 
7057output incorrectly. This problem was introduced in the previous release 
7058(20050526). This problem also affected the single-step disassembly in the 
7059debugger.
7060
7061Fixed a problem where compiling the reserved _OSI method would randomly 
7062(but 
7063rarely) produce compile errors.
7064
7065Enhanced the disassembler to emit compilable code in the face of incorrect 
7066AML resource descriptors. If the optional ResourceSourceIndex is present, 
7067but the ResourceSource is not, do not emit the ResourceSourceIndex in the 
7068disassembly. Otherwise, the resulting code cannot be compiled without 
7069errors.
7070
7071----------------------------------------
707226 May 2005.  Summary of changes for version 20050526:
7073
70741) ACPI CA Core Subsystem:
7075
7076Implemented support to execute Type 1 and Type 2 AML opcodes appearing at 
7077the module level (not within a control method.) These opcodes are executed 
7078exactly once at the time the table is loaded. This type of code was legal 
7079up 
7080until the release of ACPI 2.0B (2002) and is now supported within ACPI CA 
7081in 
7082order to provide backwards compatibility with earlier BIOS 
7083implementations. 
7084This eliminates the "Encountered executable code at module level" warning 
7085that was previously generated upon detection of such code.
7086
7087Fixed a problem in the interpreter where an AE_NOT_FOUND exception could 
7088inadvertently be generated during the lookup of namespace objects in the 
7089second pass parse of ACPI tables and control methods. It appears that this 
7090problem could occur during the resolution of forward references to 
7091namespace 
7092objects.
7093
7094Added the ACPI_MUTEX_DEBUG #ifdef to the AcpiUtReleaseMutex function, 
7095corresponding to the same #ifdef in the AcpiUtAcquireMutex function. This 
7096allows the deadlock detection debug code to be compiled out in the normal 
7097case, improving mutex performance (and overall subsystem performance) 
7098considerably.
7099
7100Implemented a handful of miscellaneous fixes for possible memory leaks on 
7101error conditions and error handling control paths. These fixes were 
7102suggested by FreeBSD and the Coverity Prevent source code analysis tool.
7103
7104Added a check for a null RSDT pointer in AcpiGetFirmwareTable (tbxfroot.c) 
7105to prevent a fault in this error case.
7106
7107Code and Data Size: Current and previous core subsystem library sizes are 
7108shown below. These are the code and data sizes for the acpica.lib produced 
7109by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7110any ACPI driver or OSPM code. The debug version of the code includes the 
7111debug output trace mechanism and has a much larger code and data size. 
7112Note 
7113that these values will vary depending on the efficiency of the compiler 
7114and 
7115the compiler options used during generation.
7116
7117  Previous Release:
7118    Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
7119    Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
7120  Current Release:
7121    Non-Debug Version:  78.1K Code, 11.6K Data,  89.7K Total
7122    Debug Version:     164.0K Code, 69.3K Data, 233.3K Total
7123
7124
71252) iASL Compiler/Disassembler:
7126
7127Implemented support to allow Type 1 and Type 2 ASL operators to appear at 
7128the module level (not within a control method.) These operators will be 
7129executed once at the time the table is loaded. This type of code was legal 
7130up until the release of ACPI 2.0B (2002) and is now supported by the iASL 
7131compiler in order to provide backwards compatibility with earlier BIOS ASL 
7132code.
7133
7134The ACPI integer width (specified via the table revision ID or the -r 
7135override, 32 or 64 bits) is now used internally during compile-time 
7136constant 
7137folding to ensure that constants are truncated to 32 bits if necessary. 
7138Previously, the revision ID value was only emitted in the AML table 
7139header.
7140
7141An error message is now generated for the Mutex and Method operators if 
7142the 
7143SyncLevel parameter is outside the legal range of 0 through 15.
7144
7145Fixed a problem with the Method operator ParameterTypes list handling 
7146(ACPI 
71473.0). Previously, more than 2 types or 2 arguments generated a syntax 
7148error.  
7149The actual underlying implementation of method argument typechecking is 
7150still under development, however.
7151
7152----------------------------------------
715313 May 2005.  Summary of changes for version 20050513:
7154
71551) ACPI CA Core Subsystem:
7156
7157Implemented support for PCI Express root bridges -- added support for 
7158device 
7159PNP0A08 in the root bridge search within AcpiEvPciConfigRegionSetup.
7160
7161The interpreter now automatically truncates incoming 64-bit constants to 
716232 
7163bits if currently executing out of a 32-bit ACPI table (Revision < 2). 
7164This 
7165also affects the iASL compiler constant folding. (Note: as per below, the 
7166iASL compiler no longer allows 64-bit constants within 32-bit tables.)
7167
7168Fixed a problem where string and buffer objects with "static" pointers 
7169(pointers to initialization data within an ACPI table) were not handled 
7170consistently. The internal object copy operation now always copies the 
7171data 
7172to a newly allocated buffer, regardless of whether the source object is 
7173static or not.
7174
7175Fixed a problem with the FromBCD operator where an implicit result 
7176conversion was improperly performed while storing the result to the target 
7177operand. Since this is an "explicit conversion" operator, the implicit 
7178conversion should never be performed on the output.
7179
7180Fixed a problem with the CopyObject operator where a copy to an existing 
7181named object did not always completely overwrite the existing object 
7182stored 
7183at name. Specifically, a buffer-to-buffer copy did not delete the existing 
7184buffer.
7185
7186Replaced "InterruptLevel" with "InterruptNumber" in all GPE interfaces and 
7187structs for consistency.
7188
7189Code and Data Size: Current and previous core subsystem library sizes are 
7190shown below. These are the code and data sizes for the acpica.lib produced 
7191by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7192any ACPI driver or OSPM code. The debug version of the code includes the 
7193debug output trace mechanism and has a much larger code and data size. 
7194Note 
7195that these values will vary depending on the efficiency of the compiler 
7196and 
7197the compiler options used during generation.
7198
7199  Previous Release:
7200    Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
7201    Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
7202  Current Release: (Same sizes)
7203    Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
7204    Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
7205
7206
72072) iASL Compiler/Disassembler:
7208
7209The compiler now emits a warning if an attempt is made to generate a 64-
7210bit 
7211integer constant from within a 32-bit ACPI table (Revision < 2). The 
7212integer 
7213is truncated to 32 bits.
7214
7215Fixed a problem with large package objects: if the static length of the 
7216package is greater than 255, the "variable length package" opcode is 
7217emitted. Previously, this caused an error. This requires an update to the 
7218ACPI spec, since it currently (incorrectly) states that packages larger 
7219than 
7220255 elements are not allowed.
7221
7222The disassembler now correctly handles variable length packages and 
7223packages 
7224larger than 255 elements.
7225
7226----------------------------------------
722708 April 2005.  Summary of changes for version 20050408:
7228
72291) ACPI CA Core Subsystem:
7230
7231Fixed three cases in the interpreter where an "index" argument to an ASL 
7232function was still (internally) 32 bits instead of the required 64 bits. 
7233This was the Index argument to the Index, Mid, and Match operators.
7234
7235The "strupr" function is now permanently local (AcpiUtStrupr), since this 
7236is 
7237not a POSIX-defined function and not present in most kernel-level C 
7238libraries. All references to the C library strupr function have been 
7239removed 
7240from the headers.
7241
7242Completed the deployment of static functions/prototypes. All prototypes 
7243with 
7244the static attribute have been moved from the headers to the owning C 
7245file.
7246
7247Implemented an extract option (-e) for the AcpiBin utility (AML binary 
7248utility). This option allows the utility to extract individual ACPI tables 
7249from the output of AcpiDmp. It provides the same functionality of the 
7250acpixtract.pl perl script without the worry of setting the correct perl 
7251options. AcpiBin runs on Windows and has not yet been generated/validated 
7252in 
7253the Linux/Unix environment (but should be soon).
7254 
7255Updated and fixed the table dump option for AcpiBin (-d). This option 
7256converts a single ACPI table to a hex/ascii file, similar to the output of 
7257AcpiDmp.
7258
7259Code and Data Size: Current and previous core subsystem library sizes are 
7260shown below. These are the code and data sizes for the acpica.lib produced 
7261by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7262any ACPI driver or OSPM code. The debug version of the code includes the 
7263debug output trace mechanism and has a much larger code and data size. 
7264Note 
7265that these values will vary depending on the efficiency of the compiler 
7266and 
7267the compiler options used during generation.
7268
7269  Previous Release:
7270    Non-Debug Version:  78.0K Code, 11.6K Data,  89.6K Total
7271    Debug Version:     163.5K Code, 69.3K Data, 232.8K Total
7272  Current Release:
7273    Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
7274    Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
7275
7276
72772) iASL Compiler/Disassembler:
7278
7279Disassembler fix: Added a check to ensure that the table length found in 
7280the 
7281ACPI table header within the input file is not longer than the actual 
7282input 
7283file size. This indicates some kind of file or table corruption.
7284
7285----------------------------------------
728629 March 2005.  Summary of changes for version 20050329:
7287
72881) ACPI CA Core Subsystem:
7289
7290An error is now generated if an attempt is made to create a Buffer Field 
7291of 
7292length zero (A CreateField with a length operand of zero.)
7293
7294The interpreter now issues a warning whenever executable code at the 
7295module 
7296level is detected during ACPI table load. This will give some idea of the 
7297prevalence of this type of code.
7298
7299Implemented support for references to named objects (other than control 
7300methods) within package objects.
7301
7302Enhanced package object output for the debug object. Package objects are 
7303now 
7304completely dumped, showing all elements.
7305
7306Enhanced miscellaneous object output for the debug object. Any object can 
7307now be written to the debug object (for example, a device object can be 
7308written, and the type of the object will be displayed.)
7309
7310The "static" qualifier has been added to all local functions across both 
7311the 
7312core subsystem and the iASL compiler.
7313
7314The number of "long" lines (> 80 chars) within the source has been 
7315significantly reduced, by about 1/3.
7316
7317Cleaned up all header files to ensure that all CA/iASL functions are 
7318prototyped (even static functions) and the formatting is consistent.
7319
7320Two new header files have been added, acopcode.h and acnames.h.
7321
7322Removed several obsolete functions that were no longer used.
7323
7324Code and Data Size: Current and previous core subsystem library sizes are 
7325shown below. These are the code and data sizes for the acpica.lib produced 
7326by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7327any ACPI driver or OSPM code. The debug version of the code includes the 
7328debug output trace mechanism and has a much larger code and data size. 
7329Note 
7330that these values will vary depending on the efficiency of the compiler 
7331and 
7332the compiler options used during generation.
7333
7334  Previous Release:
7335    Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
7336    Debug Version:     165.4K Code, 69.7K Data, 236.1K Total
7337  Current Release:
7338    Non-Debug Version:  78.0K Code, 11.6K Data,  89.6K Total
7339    Debug Version:     163.5K Code, 69.3K Data, 232.8K Total
7340
7341
7342
73432) iASL Compiler/Disassembler:
7344
7345Fixed a problem with the resource descriptor generation/support. For the 
7346ResourceSourceIndex and the ResourceSource fields, both must be present, 
7347or 
7348both must be not present - can't have one without the other.
7349
7350The compiler now returns non-zero from the main procedure if any errors 
7351have 
7352occurred during the compilation.
7353
7354
7355----------------------------------------
735609 March 2005.  Summary of changes for version 20050309:
7357
73581) ACPI CA Core Subsystem:
7359
7360The string-to-buffer implicit conversion code has been modified again 
7361after 
7362a change to the ACPI specification.  In order to match the behavior of the 
7363other major ACPI implementation, the target buffer is no longer truncated 
7364if 
7365the source string is smaller than an existing target buffer. This change 
7366requires an update to the ACPI spec, and should eliminate the recent 
7367AE_AML_BUFFER_LIMIT issues.
7368
7369The "implicit return" support was rewritten to a new algorithm that solves 
7370the general case. Rather than attempt to determine when a method is about 
7371to 
7372exit, the result of every ASL operator is saved momentarily until the very 
7373next ASL operator is executed. Therefore, no matter how the method exits, 
7374there will always be a saved implicit return value. This feature is only 
7375enabled with the AcpiGbl_EnableInterpreterSlack flag, and should eliminate 
7376AE_AML_NO_RETURN_VALUE errors when enabled.
7377
7378Implemented implicit conversion support for the predicate (operand) of the 
7379If, Else, and While operators. String and Buffer arguments are 
7380automatically 
7381converted to Integers.
7382
7383Changed the string-to-integer conversion behavior to match the new ACPI 
7384errata: "If no integer object exists, a new integer is created. The ASCII 
7385string is interpreted as a hexadecimal constant. Each string character is 
7386interpreted as a hexadecimal value ('0'-'9', 'A'-'F', 'a', 'f'), starting 
7387with the first character as the most significant digit, and ending with 
7388the 
7389first non-hexadecimal character or end-of-string." This means that the 
7390first 
7391non-hex character terminates the conversion and this is the code that was 
7392changed.
7393
7394Fixed a problem where the ObjectType operator would fail (fault) when used 
7395on an Index of a Package which pointed to a null package element. The 
7396operator now properly returns zero (Uninitialized) in this case.
7397
7398Fixed a problem where the While operator used excessive memory by not 
7399properly popping the result stack during execution. There was no memory 
7400leak 
7401after execution, however. (Code provided by Valery Podrezov.)
7402
7403Fixed a problem where references to control methods within Package objects 
7404caused the method to be invoked, instead of producing a reference object 
7405pointing to the method.
7406
7407Restructured and simplified the pswalk.c module (AcpiPsDeleteParseTree) to 
7408improve performance and reduce code size. (Code provided by Alexey 
7409Starikovskiy.)
7410
7411Code and Data Size: Current and previous core subsystem library sizes are 
7412shown below. These are the code and data sizes for the acpica.lib produced 
7413by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7414any ACPI driver or OSPM code. The debug version of the code includes the 
7415debug output trace mechanism and has a much larger code and data size. 
7416Note 
7417that these values will vary depending on the efficiency of the compiler 
7418and 
7419the compiler options used during generation.
7420
7421  Previous Release:
7422    Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
7423    Debug Version:     165.4K Code, 69.6K Data, 236.0K Total
7424  Current Release:
7425    Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
7426    Debug Version:     165.4K Code, 69.7K Data, 236.1K Total
7427
7428
74292) iASL Compiler/Disassembler:
7430
7431Fixed a problem with the Return operator with no arguments. Since the AML 
7432grammar for the byte encoding requires an operand for the Return opcode, 
7433the 
7434compiler now emits a Return(Zero) for this case.  An ACPI specification 
7435update has been written for this case.
7436
7437For tables other than the DSDT, namepath optimization is automatically 
7438disabled. This is because SSDTs can be loaded anywhere in the namespace, 
7439the 
7440compiler has no knowledge of where, and thus cannot optimize namepaths.
7441
7442Added "ProcessorObj" to the ObjectTypeKeyword list. This object type was 
7443inadvertently omitted from the ACPI specification, and will require an 
7444update to the spec.
7445
7446The source file scan for ASCII characters is now optional (-a). This 
7447change 
7448was made because some vendors place non-ascii characters within comments. 
7449However, the scan is simply a brute-force byte compare to ensure all 
7450characters in the file are in the range 0x00 to 0x7F.
7451
7452Fixed a problem with the CondRefOf operator where the compiler was 
7453inappropriately checking for the existence of the target. Since the point 
7454of 
7455the operator is to check for the existence of the target at run-time, the 
7456compiler no longer checks for the target existence.
7457
7458Fixed a problem where errors generated from the internal AML interpreter 
7459during constant folding were not handled properly, causing a fault.
7460
7461Fixed a problem with overly aggressive range checking for the Stall 
7462operator. The valid range (max 255) is now only checked if the operand is 
7463of 
7464type Integer. All other operand types cannot be statically checked.
7465
7466Fixed a problem where control method references within the RefOf, DeRefOf, 
7467and ObjectType operators were not treated properly. They are now treated 
7468as 
7469actual references, not method invocations.
7470
7471Fixed and enhanced the "list namespace" option (-ln). This option was 
7472broken 
7473a number of releases ago.
7474
7475Improved error handling for the Field, IndexField, and BankField 
7476operators. 
7477The compiler now cleanly reports and recovers from errors in the field 
7478component (FieldUnit) list.
7479
7480Fixed a disassembler problem where the optional ResourceDescriptor fields 
7481TRS and TTP were not always handled correctly.
7482
7483Disassembler - Comments in output now use "//" instead of "/*"
7484
7485----------------------------------------
748628 February 2005.  Summary of changes for version 20050228:
7487
74881) ACPI CA Core Subsystem:
7489
7490Fixed a problem where the result of an Index() operator (an object 
7491reference) must increment the reference count on the target object for the 
7492life of the object reference.
7493
7494Implemented AML Interpreter and Debugger support for the new ACPI 3.0 
7495Extended Address (IO, Memory, Space), QwordSpace, DwordSpace, and 
7496WordSpace 
7497resource descriptors.
7498
7499Implemented support in the _OSI method for the ACPI 3.0 "Extended Address 
7500Space Descriptor" string, indicating interpreter support for the 
7501descriptors 
7502above.
7503
7504Implemented header support for the new ACPI 3.0 FADT flag bits.
7505
7506Implemented header support for the new ACPI 3.0 PCI Express bits for the 
7507PM1 
7508status/enable registers.
7509
7510Updated header support for the MADT processor local Apic struct and MADT 
7511platform interrupt source struct for new ACPI 3.0 fields.
7512
7513Implemented header support for the SRAT and SLIT ACPI tables.
7514
7515Implemented the -s switch in AcpiExec to enable the "InterpreterSlack" 
7516flag 
7517at runtime.
7518
7519Code and Data Size: Current and previous core subsystem library sizes are 
7520shown below. These are the code and data sizes for the acpica.lib produced 
7521by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7522any ACPI driver or OSPM code. The debug version of the code includes the 
7523debug output trace mechanism and has a much larger code and data size. 
7524Note 
7525that these values will vary depending on the efficiency of the compiler 
7526and 
7527the compiler options used during generation.
7528
7529  Previous Release:
7530    Non-Debug Version:  78.2K Code, 11.5K Data,  89.7K Total
7531    Debug Version:     164.9K Code, 69.2K Data, 234.1K Total
7532  Current Release:
7533    Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
7534    Debug Version:     165.4K Code, 69.6K Data, 236.0K Total
7535
7536
75372) iASL Compiler/Disassembler:
7538
7539Fixed a problem with the internal 64-bit String-to-integer conversion with 
7540strings less than two characters long.
7541
7542Fixed a problem with constant folding where the result of the Index() 
7543operator can not be considered a constant. This means that Index() cannot 
7544be 
7545a type3 opcode and this will require an update to the ACPI specification.
7546
7547Disassembler: Implemented support for the TTP, MTP, and TRS resource 
7548descriptor fields. These fields were inadvertently ignored and not output 
7549in 
7550the disassembly of the resource descriptor.
7551
7552
7553 ----------------------------------------
755411 February 2005.  Summary of changes for version 20050211:
7555
75561) ACPI CA Core Subsystem:
7557
7558Implemented ACPI 3.0 support for implicit conversion within the Match() 
7559operator. MatchObjects can now be of type integer, buffer, or string 
7560instead 
7561of just type integer.  Package elements are implicitly converted to the 
7562type 
7563of the MatchObject. This change aligns the behavior of Match() with the 
7564behavior of the other logical operators (LLess(), etc.) It also requires 
7565an 
7566errata change to the ACPI specification as this support was intended for 
7567ACPI 3.0, but was inadvertently omitted.
7568
7569Fixed a problem with the internal implicit "to buffer" conversion. Strings 
7570that are converted to buffers will cause buffer truncation if the string 
7571is 
7572smaller than the target buffer. Integers that are converted to buffers 
7573will 
7574not cause buffer truncation, only zero extension (both as per the ACPI 
7575spec.) The problem was introduced when code was added to truncate the 
7576buffer, but this should not be performed in all cases, only the string 
7577case.
7578
7579Fixed a problem with the Buffer and Package operators where the 
7580interpreter 
7581would get confused if two such operators were used as operands to an ASL 
7582operator (such as LLess(Buffer(1){0},Buffer(1){1}). The internal result 
7583stack was not being popped after the execution of these operators, 
7584resulting 
7585in an AE_NO_RETURN_VALUE exception.
7586
7587Fixed a problem with constructs of the form Store(Index(...),...). The 
7588reference object returned from Index was inadvertently resolved to an 
7589actual 
7590value. This problem was introduced in version 20050114 when the behavior 
7591of 
7592Store() was modified to restrict the object types that can be used as the 
7593source operand (to match the ACPI specification.)
7594
7595Reduced excessive stack use within the AcpiGetObjectInfo procedure.
7596
7597Added a fix to aclinux.h to allow generation of AcpiExec on Linux.
7598
7599Updated the AcpiSrc utility to add the FADT_DESCRIPTOR_REV2_MINUS struct.
7600
7601Code and Data Size: Current and previous core subsystem library sizes are 
7602shown below. These are the code and data sizes for the acpica.lib produced 
7603by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7604any ACPI driver or OSPM code. The debug version of the code includes the 
7605debug output trace mechanism and has a much larger code and data size. 
7606Note 
7607that these values will vary depending on the efficiency of the compiler 
7608and 
7609the compiler options used during generation.
7610
7611  Previous Release:
7612    Non-Debug Version:  78.1K Code, 11.5K Data,  89.6K Total
7613    Debug Version:     164.8K Code, 69.2K Data, 234.0K Total
7614  Current Release:
7615    Non-Debug Version:  78.2K Code, 11.5K Data,  89.7K Total
7616    Debug Version:     164.9K Code, 69.2K Data, 234.1K Total
7617
7618
76192) iASL Compiler/Disassembler:
7620
7621Fixed a code generation problem in the constant folding optimization code 
7622where incorrect code was generated if a constant was reduced to a buffer 
7623object (i.e., a reduced type 5 opcode.)
7624
7625Fixed a typechecking problem for the ToBuffer operator. Caused by an 
7626incorrect return type in the internal opcode information table.
7627
7628----------------------------------------
762925 January 2005.  Summary of changes for version 20050125:
7630
76311) ACPI CA Core Subsystem:
7632
7633Fixed a recently introduced problem with the Global Lock where the 
7634underlying semaphore was not created.  This problem was introduced in 
7635version 20050114, and caused an AE_AML_NO_OPERAND exception during an 
7636Acquire() operation on _GL.
7637
7638The local object cache is now optional, and is disabled by default. Both 
7639AcpiExec and the iASL compiler enable the cache because they run in user 
7640mode and this enhances their performance. #define ACPI_ENABLE_OBJECT_CACHE 
7641to enable the local cache.
7642
7643Fixed an issue in the internal function AcpiUtEvaluateObject concerning 
7644the 
7645optional "implicit return" support where an error was returned if no 
7646return 
7647object was expected, but one was implicitly returned. AE_OK is now 
7648returned 
7649in this case and the implicitly returned object is deleted. 
7650AcpiUtEvaluateObject is only occasionally used, and only to execute 
7651reserved 
7652methods such as _STA and _INI where the return type is known up front.
7653
7654Fixed a few issues with the internal convert-to-integer code. It now 
7655returns 
7656an error if an attempt is made to convert a null string, a string of only 
7657blanks/tabs, or a zero-length buffer. This affects both implicit 
7658conversion 
7659and explicit conversion via the ToInteger() operator.
7660
7661The internal debug code in AcpiUtAcquireMutex has been commented out. It 
7662is 
7663not needed for normal operation and should increase the performance of the 
7664entire subsystem. The code remains in case it is needed for debug purposes 
7665again.
7666
7667The AcpiExec source and makefile are included in the Unix/Linux package 
7668for 
7669the first time.
7670
7671Code and Data Size: Current and previous core subsystem library sizes are 
7672shown below. These are the code and data sizes for the acpica.lib produced 
7673by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7674any ACPI driver or OSPM code. The debug version of the code includes the 
7675debug output trace mechanism and has a much larger code and data size. 
7676Note 
7677that these values will vary depending on the efficiency of the compiler 
7678and 
7679the compiler options used during generation.
7680
7681  Previous Release:
7682    Non-Debug Version:  78.4K Code,  11.5K Data,   89.9K Total
7683    Debug Version:     165.4K Code,  69.4K Data,  234.8K Total
7684  Current Release:
7685    Non-Debug Version:  78.1K Code,  11.5K Data,   89.6K Total
7686    Debug Version:     164.8K Code,  69.2K Data,  234.0K Total
7687
76882) iASL Compiler/Disassembler:
7689
7690Switch/Case support: A warning is now issued if the type of the Switch 
7691value 
7692cannot be determined at compile time. For example, Switch(Arg0) will 
7693generate the warning, and the type is assumed to be an integer. As per the 
7694ACPI spec, use a construct such as Switch(ToInteger(Arg0)) to eliminate 
7695the 
7696warning.
7697
7698Switch/Case support: Implemented support for buffer and string objects as 
7699the switch value.  This is an ACPI 3.0 feature, now that LEqual supports 
7700buffers and strings.
7701
7702Switch/Case support: The emitted code for the LEqual() comparisons now 
7703uses 
7704the switch value as the first operand, not the second. The case value is 
7705now 
7706the second operand, and this allows the case value to be implicitly 
7707converted to the type of the switch value, not the other way around.
7708
7709Switch/Case support: Temporary variables are now emitted immediately 
7710within 
7711the control method, not at the global level. This means that there are now 
771236 temps available per-method, not 36 temps per-module as was the case 
7713with 
7714the earlier implementation (_T_0 through _T_9 and _T_A through _T_Z.)
7715
7716----------------------------------------
771714 January 2005.  Summary of changes for version 20050114:
7718
7719Added 2005 copyright to all module headers.  This affects every module in 
7720the core subsystem, iASL compiler, and the utilities.
7721
77221) ACPI CA Core Subsystem:
7723
7724Fixed an issue with the String-to-Buffer conversion code where the string 
7725null terminator was not included in the buffer after conversion, but there 
7726is existing ASL that assumes the string null terminator is included. This 
7727is 
7728the root of the ACPI_AML_BUFFER_LIMIT regression. This problem was 
7729introduced in the previous version when the code was updated to correctly 
7730set the converted buffer size as per the ACPI specification. The ACPI spec 
7731is ambiguous and will be updated to specify that the null terminator must 
7732be 
7733included in the converted buffer. This also affects the ToBuffer() ASL 
7734operator.
7735
7736Fixed a problem with the Mid() ASL/AML operator where it did not work 
7737correctly on Buffer objects. Newly created sub-buffers were not being 
7738marked 
7739as initialized.
7740
7741
7742Fixed a problem in AcpiTbFindTable where incorrect string compares were 
7743performed on the OemId and OemTableId table header fields.  These fields 
7744are 
7745not null terminated, so strncmp is now used instead of strcmp.
7746
7747Implemented a restriction on the Store() ASL/AML operator to align the 
7748behavior with the ACPI specification.  Previously, any object could be 
7749used 
7750as the source operand.  Now, the only objects that may be used are 
7751Integers, 
7752Buffers, Strings, Packages, Object References, and DDB Handles.  If 
7753necessary, the original behavior can be restored by enabling the 
7754EnableInterpreterSlack flag.
7755
7756Enhanced the optional "implicit return" support to allow an implicit 
7757return 
7758value from methods that are invoked externally via the AcpiEvaluateObject 
7759interface.  This enables implicit returns from the _STA and _INI methods, 
7760for example.
7761
7762Changed the Revision() ASL/AML operator to return the current version of 
7763the 
7764AML interpreter, in the YYYYMMDD format. Previously, it incorrectly 
7765returned 
7766the supported ACPI version (This is the function of the _REV method).
7767
7768Updated the _REV predefined method to return the currently supported 
7769version 
7770of ACPI, now 3.
7771
7772Implemented batch mode option for the AcpiExec utility (-b).
7773
7774Code and Data Size: Current and previous core subsystem library sizes are 
7775shown below. These are the code and data sizes for the acpica.lib produced 
7776by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7777any ACPI driver or OSPM code. The debug version of the code includes the 
7778debug output trace mechanism and has a much larger code and data size. 
7779Note 
7780that these values will vary depending on the efficiency of the compiler 
7781and 
7782the compiler options used during generation.
7783
7784  Previous Release:
7785    Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
7786    Debug Version:     165.3K Code,  69.4K Data,  234.7K Total
7787  Current Release:
7788    Non-Debug Version:  78.4K Code,  11.5K Data,   89.9K Total
7789    Debug Version:     165.4K Code,  69.4K Data,  234.8K Total
7790
7791----------------------------------------
779210 December 2004.  Summary of changes for version 20041210:
7793
7794ACPI 3.0 support is nearing completion in both the iASL compiler and the 
7795ACPI CA core subsystem.
7796
77971) ACPI CA Core Subsystem:
7798
7799Fixed a problem in the ToDecimalString operator where the resulting string 
7800length was incorrectly calculated. The length is now calculated exactly, 
7801eliminating incorrect AE_STRING_LIMIT exceptions.
7802
7803Fixed a problem in the ToHexString operator to allow a maximum 200 
7804character 
7805string to be produced.
7806
7807Fixed a problem in the internal string-to-buffer and buffer-to-buffer copy 
7808routine where the length of the resulting buffer was not truncated to the 
7809new size (if the target buffer already existed).
7810
7811Code and Data Size: Current and previous core subsystem library sizes are 
7812shown below. These are the code and data sizes for the acpica.lib produced 
7813by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7814any ACPI driver or OSPM code. The debug version of the code includes the 
7815debug output trace mechanism and has a much larger code and data size. 
7816Note 
7817that these values will vary depending on the efficiency of the compiler 
7818and 
7819the compiler options used during generation.
7820
7821  Previous Release:
7822    Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
7823    Debug Version:     164.7K Code,  68.5K Data,  233.2K Total
7824  Current Release:
7825    Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
7826    Debug Version:     165.3K Code,  69.4K Data,  234.7K Total
7827
7828
78292) iASL Compiler/Disassembler:
7830
7831Implemented the new ACPI 3.0 resource template macros - DWordSpace, 
7832ExtendedIO, ExtendedMemory, ExtendedSpace, QWordSpace, and WordSpace. 
7833Includes support in the disassembler.
7834
7835Implemented support for the new (ACPI 3.0) parameter to the Register 
7836macro, 
7837AccessSize.
7838
7839Fixed a problem where the _HE resource name for the Interrupt macro was 
7840referencing bit 0 instead of bit 1.
7841
7842Implemented check for maximum 255 interrupts in the Interrupt macro.
7843
7844Fixed a problem with the predefined resource descriptor names where 
7845incorrect AML code was generated if the offset within the resource buffer 
7846was 0 or 1.  The optimizer shortened the AML code to a single byte opcode 
7847but did not update the surrounding package lengths.
7848
7849Changes to the Dma macro:  All channels within the channel list must be in 
7850the range 0-7.  Maximum 8 channels can be specified. BusMaster operand is 
7851optional (default is BusMaster).
7852
7853Implemented check for maximum 7 data bytes for the VendorShort macro.
7854
7855The ReadWrite parameter is now optional for the Memory32 and similar 
7856macros.
7857
7858----------------------------------------
785903 December 2004.  Summary of changes for version 20041203:
7860
78611) ACPI CA Core Subsystem:
7862
7863The low-level field insertion/extraction code (exfldio) has been 
7864completely 
7865rewritten to eliminate unnecessary complexity, bugs, and boundary 
7866conditions.
7867
7868Fixed a problem in the ToInteger, ToBuffer, ToHexString, and 
7869ToDecimalString 
7870operators where the input operand could be inadvertently deleted if no 
7871conversion was necessary (e.g., if the input to ToInteger was an Integer 
7872object.)
7873
7874Fixed a problem with the ToDecimalString and ToHexString where an 
7875incorrect 
7876exception code was returned if the resulting string would be > 200 chars.  
7877AE_STRING_LIMIT is now returned.
7878
7879Fixed a problem with the Concatenate operator where AE_OK was always 
7880returned, even if the operation failed.
7881
7882Fixed a problem in oswinxf (used by AcpiExec and iASL) to allow > 128 
7883semaphores to be allocated.
7884
7885Code and Data Size: Current and previous core subsystem library sizes are 
7886shown below. These are the code and data sizes for the acpica.lib produced 
7887by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7888any ACPI driver or OSPM code. The debug version of the code includes the 
7889debug output trace mechanism and has a much larger code and data size. 
7890Note 
7891that these values will vary depending on the efficiency of the compiler 
7892and 
7893the compiler options used during generation.
7894
7895  Previous Release:
7896    Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
7897    Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
7898  Current Release:
7899    Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
7900    Debug Version:     164.7K Code,  68.5K Data,  233.2K Total
7901
7902
79032) iASL Compiler/Disassembler:
7904
7905Fixed typechecking for the ObjectType and SizeOf operators.  Problem was 
7906recently introduced in 20041119.
7907
7908Fixed a problem with the ToUUID macro where the upper nybble of each 
7909buffer 
7910byte was inadvertently set to zero.
7911
7912----------------------------------------
791319 November 2004.  Summary of changes for version 20041119:
7914
79151) ACPI CA Core Subsystem:
7916
7917Fixed a problem in the internal ConvertToInteger routine where new 
7918integers 
7919were not truncated to 32 bits for 32-bit ACPI tables. This routine 
7920converts 
7921buffers and strings to integers.
7922
7923Implemented support to store a value to an Index() on a String object. 
7924This 
7925is an ACPI 2.0 feature that had not yet been implemented.
7926
7927Implemented new behavior for storing objects to individual package 
7928elements 
7929(via the Index() operator). The previous behavior was to invoke the 
7930implicit 
7931conversion rules if an object was already present at the index.  The new 
7932behavior is to simply delete any existing object and directly store the 
7933new 
7934object. Although the ACPI specification seems unclear on this subject, 
7935other 
7936ACPI implementations behave in this manner.  (This is the root of the 
7937AE_BAD_HEX_CONSTANT issue.)
7938
7939Modified the RSDP memory scan mechanism to support the extended checksum 
7940for 
7941ACPI 2.0 (and above) RSDPs. Note that the search continues until a valid 
7942RSDP signature is found with a valid checksum.
7943
7944Code and Data Size: Current and previous core subsystem library sizes are 
7945shown below. These are the code and data sizes for the acpica.lib produced 
7946by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7947any ACPI driver or OSPM code. The debug version of the code includes the 
7948debug output trace mechanism and has a much larger code and data size. 
7949Note 
7950that these values will vary depending on the efficiency of the compiler 
7951and 
7952the compiler options used during generation.
7953
7954  Previous Release:
7955    Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
7956    Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
7957  Current Release:
7958    Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
7959    Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
7960
7961
79622) iASL Compiler/Disassembler:
7963
7964Fixed a missing semicolon in the aslcompiler.y file.
7965
7966----------------------------------------
796705 November 2004.  Summary of changes for version 20041105:
7968
79691) ACPI CA Core Subsystem:
7970
7971Implemented support for FADT revision 2.  This was an interim table 
7972(between 
7973ACPI 1.0 and ACPI 2.0) that adds support for the FADT reset register.
7974
7975Implemented optional support to allow uninitialized LocalX and ArgX 
7976variables in a control method.  The variables are initialized to an 
7977Integer 
7978object with a value of zero.  This support is enabled by setting the 
7979AcpiGbl_EnableInterpreterSlack flag to TRUE.
7980
7981Implemented support for Integer objects for the SizeOf operator.  Either 4 
7982or 8 is returned, depending on the current integer size (32-bit or 64-bit, 
7983depending on the parent table revision).
7984
7985Fixed a problem in the implementation of the SizeOf and ObjectType 
7986operators 
7987where the operand was resolved to a value too early, causing incorrect 
7988return values for some objects.
7989
7990Fixed some possible memory leaks during exceptional conditions.
7991
7992Code and Data Size: Current and previous core subsystem library sizes are 
7993shown below. These are the code and data sizes for the acpica.lib produced 
7994by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7995any ACPI driver or OSPM code. The debug version of the code includes the 
7996debug output trace mechanism and has a much larger code and data size. 
7997Note 
7998that these values will vary depending on the efficiency of the compiler 
7999and 
8000the compiler options used during generation.
8001
8002  Previous Release:
8003    Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
8004    Debug Version:     164.8K Code,  68.6K Data,  233.4K Total
8005  Current Release:
8006    Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
8007    Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
8008
8009
80102) iASL Compiler/Disassembler:
8011
8012Implemented support for all ACPI 3.0 reserved names and methods.
8013
8014Implemented all ACPI 3.0 grammar elements in the front-end, including 
8015support for semicolons.
8016
8017Implemented the ACPI 3.0 Function() and ToUUID() macros
8018
8019Fixed a problem in the disassembler where a Scope() operator would not be 
8020emitted properly if the target of the scope was in another table.
8021
8022----------------------------------------
802315 October 2004.  Summary of changes for version 20041015:
8024
8025Note:  ACPI CA is currently undergoing an in-depth and complete formal 
8026evaluation to test/verify the following areas. Other suggestions are 
8027welcome. This will result in an increase in the frequency of releases and 
8028the number of bug fixes in the next few months.
8029  - Functional tests for all ASL/AML operators
8030  - All implicit/explicit type conversions
8031  - Bit fields and operation regions
8032  - 64-bit math support and 32-bit-only "truncated" math support
8033  - Exceptional conditions, both compiler and interpreter
8034  - Dynamic object deletion and memory leaks
8035  - ACPI 3.0 support when implemented
8036  - External interfaces to the ACPI subsystem
8037
8038
80391) ACPI CA Core Subsystem:
8040
8041Fixed two alignment issues on 64-bit platforms - within debug statements 
8042in 
8043AcpiEvGpeDetect and AcpiEvCreateGpeBlock. Removed references to the 
8044Address 
8045field within the non-aligned ACPI generic address structure.
8046
8047Fixed a problem in the Increment and Decrement operators where incorrect 
8048operand resolution could result in the inadvertent modification of the 
8049original integer when the integer is passed into another method as an 
8050argument and the arg is then incremented/decremented.
8051
8052Fixed a problem in the FromBCD operator where the upper 32-bits of a 64-
8053bit 
8054BCD number were truncated during conversion.
8055
8056Fixed a problem in the ToDecimal operator where the length of the 
8057resulting 
8058string could be set incorrectly too long if the input operand was a Buffer 
8059object.
8060
8061Fixed a problem in the Logical operators (LLess, etc.) where a NULL byte 
8062(0) 
8063within a buffer would prematurely terminate a compare between buffer 
8064objects.
8065
8066Added a check for string overflow (>200 characters as per the ACPI 
8067specification) during the Concatenate operator with two string operands.
8068
8069Code and Data Size: Current and previous core subsystem library sizes are 
8070shown below. These are the code and data sizes for the acpica.lib produced 
8071by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8072any ACPI driver or OSPM code. The debug version of the code includes the 
8073debug output trace mechanism and has a much larger code and data size. 
8074Note 
8075that these values will vary depending on the efficiency of the compiler 
8076and 
8077the compiler options used during generation.
8078
8079  Previous Release:
8080    Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
8081    Debug Version:     164.6K Code,  68.5K Data,  233.1K Total
8082  Current Release:
8083    Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
8084    Debug Version:     164.8K Code,  68.6K Data,  233.4K Total
8085
8086
8087
80882) iASL Compiler/Disassembler:
8089
8090Allow the use of the ObjectType operator on uninitialized Locals and Args 
8091(returns 0 as per the ACPI specification).
8092
8093Fixed a problem where the compiler would fault if there was a syntax error 
8094in the FieldName of all of the various CreateXXXField operators.
8095
8096Disallow the use of lower case letters within the EISAID macro, as per the 
8097ACPI specification.  All EISAID strings must be of the form "UUUNNNN" 
8098Where 
8099U is an uppercase letter and N is a hex digit.
8100
8101
8102----------------------------------------
810306 October 2004.  Summary of changes for version 20041006:
8104
81051) ACPI CA Core Subsystem:
8106
8107Implemented support for the ACPI 3.0 Timer operator. This ASL function 
8108implements a 64-bit timer with 100 nanosecond granularity.
8109
8110Defined a new OSL interface, AcpiOsGetTimer. This interface is used to 
8111implement the ACPI 3.0 Timer operator.  This allows the host OS to 
8112implement 
8113the timer with the best clock available. Also, it keeps the core subsystem 
8114out of the clock handling business, since the host OS (usually) performs 
8115this function.
8116
8117Fixed an alignment issue on 64-bit platforms. The HwLowLevelRead(Write) 
8118functions use a 64-bit address which is part of the packed ACPI Generic 
8119Address Structure. Since the structure is non-aligned, the alignment 
8120macros 
8121are now used to extract the address to a local variable before use.
8122
8123Fixed a problem where the ToInteger operator assumed all input strings 
8124were 
8125hexadecimal. The operator now handles both decimal strings and hex strings 
8126(prefixed with "0x").
8127
8128Fixed a problem where the string length in the string object created as a 
8129result of the internal ConvertToString procedure could be incorrect. This 
8130potentially affected all implicit conversions and also the ToDecimalString 
8131and ToHexString operators.
8132
8133Fixed two problems in the ToString operator. If the length parameter was 
8134zero, an incorrect string object was created and the value of the input 
8135length parameter was inadvertently changed from zero to Ones.
8136
8137Fixed a problem where the optional ResourceSource string in the 
8138ExtendedIRQ 
8139resource macro was ignored.
8140
8141Simplified the interfaces to the internal division functions, reducing 
8142code 
8143size and complexity.
8144
8145Code and Data Size: Current and previous core subsystem library sizes are 
8146shown below. These are the code and data sizes for the acpica.lib produced 
8147by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8148any ACPI driver or OSPM code. The debug version of the code includes the 
8149debug output trace mechanism and has a much larger code and data size. 
8150Note 
8151that these values will vary depending on the efficiency of the compiler 
8152and 
8153the compiler options used during generation.
8154
8155  Previous Release:
8156    Non-Debug Version:  77.9K Code,  11.4K Data,   89.3K Total
8157    Debug Version:     164.5K Code,  68.3K Data,  232.8K Total
8158  Current Release:
8159    Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
8160    Debug Version:     164.6K Code,  68.5K Data,  233.1K Total
8161
8162
81632) iASL Compiler/Disassembler:
8164
8165Implemented support for the ACPI 3.0 Timer operator.
8166
8167Fixed a problem where the Default() operator was inadvertently ignored in 
8168a 
8169Switch/Case block.  This was a problem in the translation of the Switch 
8170statement to If...Else pairs.
8171
8172Added support to allow a standalone Return operator, with no parentheses 
8173(or 
8174operands).
8175
8176Fixed a problem with code generation for the ElseIf operator where the 
8177translated Else...If parse tree was improperly constructed leading to the 
8178loss of some code.
8179
8180----------------------------------------
818122 September 2004.  Summary of changes for version 20040922:
8182
81831) ACPI CA Core Subsystem:
8184
8185Fixed a problem with the implementation of the LNot() operator where 
8186"Ones" 
8187was not returned for the TRUE case. Changed the code to return Ones 
8188instead 
8189of (!Arg) which was usually 1. This change affects iASL constant folding 
8190for 
8191this operator also.
8192
8193Fixed a problem in AcpiUtInitializeBuffer where an existing buffer was not 
8194initialized properly -- Now zero the entire buffer in this case where the 
8195buffer already exists.
8196
8197Changed the interface to AcpiOsSleep from (UINT32 Seconds, UINT32 
8198Milliseconds) to simply (ACPI_INTEGER Milliseconds). This simplifies all 
8199related code considerably. This will require changes/updates to all OS 
8200interface layers (OSLs.)
8201
8202Implemented a new external interface, AcpiInstallExceptionHandler, to 
8203allow 
8204a system exception handler to be installed. This handler is invoked upon 
8205any 
8206run-time exception that occurs during control method execution.
8207
8208Added support for the DSDT in AcpiTbFindTable. This allows the 
8209DataTableRegion() operator to access the local copy of the DSDT.
8210
8211Code and Data Size: Current and previous core subsystem library sizes are 
8212shown below. These are the code and data sizes for the acpica.lib produced 
8213by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8214any ACPI driver or OSPM code. The debug version of the code includes the 
8215debug output trace mechanism and has a much larger code and data size. 
8216Note 
8217that these values will vary depending on the efficiency of the compiler 
8218and 
8219the compiler options used during generation.
8220
8221  Previous Release:
8222    Non-Debug Version:  77.8K Code,  11.4K Data,   89.2K Total
8223    Debug Version:     164.2K Code,  68.2K Data,  232.4K Total
8224  Current Release:
8225    Non-Debug Version:  77.9K Code,  11.4K Data,   89.3K Total
8226    Debug Version:     164.5K Code,  68.3K Data,  232.8K Total
8227
8228
82292) iASL Compiler/Disassembler:
8230
8231Fixed a problem with constant folding and the LNot operator. LNot was 
8232returning 1 in the TRUE case, not Ones as per the ACPI specification. This 
8233could result in the generation of an incorrect folded/reduced constant.
8234
8235End-Of-File is now allowed within a "//"-style comment.  A parse error no 
8236longer occurs if such a comment is at the very end of the input ASL source 
8237file.
8238
8239Implemented the "-r" option to override the Revision in the table header. 
8240The initial use of this option will be to simplify the evaluation of the 
8241AML 
8242interpreter by allowing a single ASL source module to be compiled for 
8243either 
824432-bit or 64-bit integers.
8245
8246
8247----------------------------------------
824827 August 2004.  Summary of changes for version 20040827:
8249
82501) ACPI CA Core Subsystem:
8251
8252- Implemented support for implicit object conversion in the non-numeric 
8253logical operators (LEqual, LGreater, LGreaterEqual, LLess, LLessEqual, and 
8254LNotEqual.)  Any combination of Integers/Strings/Buffers may now be used; 
8255the second operand is implicitly converted on the fly to match the type of 
8256the first operand.  For example:
8257
8258    LEqual (Source1, Source2)
8259
8260Source1 and Source2 must each evaluate to an integer, a string, or a 
8261buffer. 
8262The data type of Source1 dictates the required type of Source2. Source2 is 
8263implicitly converted if necessary to match the type of Source1.
8264
8265- Updated and corrected the behavior of the string conversion support.  
8266The 
8267rules concerning conversion of buffers to strings (according to the ACPI 
8268specification) are as follows:
8269
8270ToDecimalString - explicit byte-wise conversion of buffer to string of 
8271decimal values (0-255) separated by commas. ToHexString - explicit byte-
8272wise 
8273conversion of buffer to string of hex values (0-FF) separated by commas. 
8274ToString - explicit byte-wise conversion of buffer to string.  Byte-by-
8275byte 
8276copy with no transform except NULL terminated. Any other implicit buffer-
8277to-
8278string conversion - byte-wise conversion of buffer to string of hex values 
8279(0-FF) separated by spaces.
8280
8281- Fixed typo in definition of AcpiGbl_EnableInterpreterSlack.
8282
8283- Fixed a problem in AcpiNsGetPathnameLength where the returned length was 
8284one byte too short in the case of a node in the root scope.  This could 
8285cause a fault during debug output.
8286
8287- Code and Data Size: Current and previous core subsystem library sizes 
8288are 
8289shown below.  These are the code and data sizes for the acpica.lib 
8290produced 
8291by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8292any ACPI driver or OSPM code.  The debug version of the code includes the 
8293debug output trace mechanism and has a much larger code and data size.  
8294Note 
8295that these values will vary depending on the efficiency of the compiler 
8296and 
8297the compiler options used during generation.
8298
8299  Previous Release:
8300    Non-Debug Version:  77.9K Code,  11.5K Data,   89.4K Total
8301    Debug Version:     164.1K Code,  68.3K Data,  232.4K Total
8302  Current Release:
8303    Non-Debug Version:  77.8K Code,  11.4K Data,   89.2K Total
8304    Debug Version:     164.2K Code,  68.2K Data,  232.4K Total
8305
8306
83072) iASL Compiler/Disassembler:
8308
8309- Fixed a Linux generation error.
8310
8311
8312----------------------------------------
831316 August 2004.  Summary of changes for version 20040816:
8314
83151) ACPI CA Core Subsystem:
8316
8317Designed and implemented support within the AML interpreter for the so-
8318called "implicit return".  This support returns the result of the last ASL 
8319operation within a control method, in the absence of an explicit Return() 
8320operator.  A few machines depend on this behavior, even though it is not 
8321explicitly supported by the ASL language.  It is optional support that can 
8322be enabled at runtime via the AcpiGbl_EnableInterpreterSlack flag.
8323
8324Removed support for the PCI_Config address space from the internal low 
8325level 
8326hardware interfaces (AcpiHwLowLevelRead and AcpiHwLowLevelWrite).  This 
8327support was not used internally, and would not work correctly anyway 
8328because 
8329the PCI bus number and segment number were not supported.  There are 
8330separate interfaces for PCI configuration space access because of the 
8331unique 
8332interface.
8333
8334Code and Data Size: Current and previous core subsystem library sizes are 
8335shown below.  These are the code and data sizes for the acpica.lib 
8336produced 
8337by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8338any ACPI driver or OSPM code.  The debug version of the code includes the 
8339debug output trace mechanism and has a much larger code and data size.  
8340Note 
8341that these values will vary depending on the efficiency of the compiler 
8342and 
8343the compiler options used during generation.
8344
8345  Previous Release:
8346    Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
8347    Debug Version:     164.1K Code,  68.2K Data,  232.3K Total
8348  Current Release:
8349    Non-Debug Version:  77.9K Code,  11.5K Data,   89.4K Total
8350    Debug Version:     164.1K Code,  68.3K Data,  232.4K Total
8351
8352
83532) iASL Compiler/Disassembler:
8354
8355Fixed a problem where constants in ASL expressions at the root level (not 
8356within a control method) could be inadvertently truncated during code 
8357generation.  This problem was introduced in the 20040715 release.
8358
8359
8360----------------------------------------
836115 July 2004.  Summary of changes for version 20040715:
8362
83631) ACPI CA Core Subsystem:
8364
8365Restructured the internal HW GPE interfaces to pass/track the current 
8366state 
8367of interrupts (enabled/disabled) in order to avoid possible deadlock and 
8368increase flexibility of the interfaces.
8369
8370Implemented a "lexicographical compare" for String and Buffer objects 
8371within 
8372the logical operators -- LGreater, LLess, LGreaterEqual, and LLessEqual -- 
8373as per further clarification to the ACPI specification.  Behavior is 
8374similar 
8375to C library "strcmp".
8376
8377Completed a major reduction in CPU stack use for the AcpiGetFirmwareTable 
8378external function.  In the 32-bit non-debug case, the stack use has been 
8379reduced from 168 bytes to 32 bytes.
8380
8381Deployed a new run-time configuration flag, 
8382AcpiGbl_EnableInterpreterSlack, 
8383whose purpose is to allow the AML interpreter to forgive certain bad AML 
8384constructs.  Default setting is FALSE.
8385
8386Implemented the first use of AcpiGbl_EnableInterpreterSlack in the Field 
8387IO 
8388support code.  If enabled, it allows field access to go beyond the end of 
8389a 
8390region definition if the field is within the region length rounded up to 
8391the 
8392next access width boundary (a common coding error.)
8393
8394Renamed OSD_HANDLER to ACPI_OSD_HANDLER, and OSD_EXECUTION_CALLBACK to 
8395ACPI_OSD_EXEC_CALLBACK for consistency with other ACPI symbols.  Also, 
8396these 
8397symbols are lowercased by the latest version of the AcpiSrc tool.
8398
8399The prototypes for the PCI interfaces in acpiosxf.h have been updated to 
8400rename "Register" to simply "Reg" to prevent certain compilers from 
8401complaining.
8402
8403Code and Data Size: Current and previous core subsystem library sizes are 
8404shown below.  These are the code and data sizes for the acpica.lib 
8405produced 
8406by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8407any ACPI driver or OSPM code.  The debug version of the code includes the 
8408debug output trace mechanism and has a much larger code and data size.  
8409Note 
8410that these values will vary depending on the efficiency of the compiler 
8411and 
8412the compiler options used during generation.
8413
8414  Previous Release:
8415    Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
8416    Debug Version:     163.8K Code,  68.2K Data,  232.0K Total
8417  Current Release:
8418    Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
8419    Debug Version:     164.1K Code,  68.2K Data,  232.3K Total
8420
8421
84222) iASL Compiler/Disassembler:
8423
8424Implemented full support for Package objects within the Case() operator.  
8425Note: The Break() operator is currently not supported within Case blocks 
8426(TermLists) as there is some question about backward compatibility with 
8427ACPI 
84281.0 interpreters.
8429
8430
8431Fixed a problem where complex terms were not supported properly within the 
8432Switch() operator.
8433
8434Eliminated extraneous warning for compiler-emitted reserved names of the 
8435form "_T_x".  (Used in Switch/Case operators.)
8436
8437Eliminated optimization messages for "_T_x" objects and small constants 
8438within the DefinitionBlock operator.
8439
8440
8441----------------------------------------
844215 June 2004.  Summary of changes for version 20040615:
8443
84441) ACPI CA Core Subsystem:
8445
8446Implemented support for Buffer and String objects (as per ACPI 2.0) for 
8447the 
8448following ASL operators:  LEqual, LGreater, LLess, LGreaterEqual, and 
8449LLessEqual.
8450
8451All directory names in the entire source package are lower case, as they 
8452were in earlier releases.
8453
8454Implemented "Disassemble" command in the AML debugger that will 
8455disassemble 
8456a single control method.
8457
8458Code and Data Size: Current and previous core subsystem library sizes are 
8459shown below.  These are the code and data sizes for the acpica.lib 
8460produced 
8461by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8462any ACPI driver or OSPM code.  The debug version of the code includes the 
8463debug output trace mechanism and has a much larger code and data size.  
8464Note 
8465that these values will vary depending on the efficiency of the compiler 
8466and 
8467the compiler options used during generation.
8468
8469  Previous Release:
8470    Non-Debug Version:  77.7K Code,  11.5K Data,   89.2K Total
8471    Debug Version:     163.3K Code,  67.2K Data,  230.5K Total
8472
8473  Current Release:
8474    Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
8475    Debug Version:     163.8K Code,  68.2K Data,  232.0K Total
8476
8477
84782) iASL Compiler/Disassembler:
8479
8480Implemented support for Buffer and String objects (as per ACPI 2.0) for 
8481the 
8482following ASL operators:  LEqual, LGreater, LLess, LGreaterEqual, and 
8483LLessEqual.
8484
8485All directory names in the entire source package are lower case, as they 
8486were in earlier releases.
8487
8488Fixed a fault when using the -g or -d<nofilename> options if the FADT was 
8489not found.
8490
8491Fixed an issue with the Windows version of the compiler where later 
8492versions 
8493of Windows place the FADT in the registry under the name "FADT" and not 
8494"FACP" as earlier versions did.  This applies when using the -g or -
8495d<nofilename> options.  The compiler now looks for both strings as 
8496necessary.
8497
8498Fixed a problem with compiler namepath optimization where a namepath 
8499within 
8500the Scope() operator could not be optimized if the namepath was a subpath 
8501of 
8502the current scope path.
8503
8504----------------------------------------
850527 May 2004.  Summary of changes for version 20040527:
8506
85071) ACPI CA Core Subsystem:
8508
8509Completed a new design and implementation for EBDA (Extended BIOS Data 
8510Area) 
8511support in the RSDP scan code.  The original code improperly scanned for 
8512the 
8513EBDA by simply scanning from memory location 0 to 0x400.  The correct 
8514method 
8515is to first obtain the EBDA pointer from within the BIOS data area, then 
8516scan 1K of memory starting at the EBDA pointer.  There appear to be few if 
8517any machines that place the RSDP in the EBDA, however.
8518
8519Integrated a fix for a possible fault during evaluation of BufferField 
8520arguments.  Obsolete code that was causing the problem was removed.
8521
8522Found and fixed a problem in the Field Support Code where data could be 
8523corrupted on a bit field read that starts on an aligned boundary but does 
8524not end on an aligned boundary.  Merged the read/write "datum length" 
8525calculation code into a common procedure.
8526
8527Rolled in a couple of changes to the FreeBSD-specific header.
8528
8529
8530Code and Data Size: Current and previous core subsystem library sizes are 
8531shown below.  These are the code and data sizes for the acpica.lib 
8532produced 
8533by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8534any ACPI driver or OSPM code.  The debug version of the code includes the 
8535debug output trace mechanism and has a much larger code and data size.  
8536Note 
8537that these values will vary depending on the efficiency of the compiler 
8538and 
8539the compiler options used during generation.
8540
8541  Previous Release:
8542    Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
8543    Debug Version:     163.2K Code,  67.2K Data,  230.4K Total
8544  Current Release:
8545    Non-Debug Version:  77.7K Code,  11.5K Data,   89.2K Total
8546    Debug Version:     163.3K Code,  67.2K Data,  230.5K Total
8547
8548
85492) iASL Compiler/Disassembler:
8550
8551Fixed a generation warning produced by some overly-verbose compilers for a 
855264-bit constant.
8553
8554----------------------------------------
855514 May 2004.  Summary of changes for version 20040514:
8556
85571) ACPI CA Core Subsystem:
8558
8559Fixed a problem where hardware GPE enable bits sometimes not set properly 
8560during and after GPE method execution.  Result of 04/27 changes.
8561
8562Removed extra "clear all GPEs" when sleeping/waking.
8563
8564Removed AcpiHwEnableGpe and AcpiHwDisableGpe, replaced by the single 
8565AcpiHwWriteGpeEnableReg. Changed a couple of calls to the functions above 
8566to 
8567the new AcpiEv* calls as appropriate.
8568
8569ACPI_OS_NAME was removed from the OS-specific headers.  The default name 
8570is 
8571now "Microsoft Windows NT" for maximum compatibility.  However this can be 
8572changed by modifying the acconfig.h file.
8573
8574Allow a single invocation of AcpiInstallNotifyHandler for a handler that 
8575traps both types of notifies (System, Device).  Use ACPI_ALL_NOTIFY flag. 
8576
8577Run _INI methods on ThermalZone objects.  This is against the ACPI 
8578specification, but there is apparently ASL code in the field that has 
8579these 
8580_INI methods, and apparently "other" AML interpreters execute them.
8581
8582Performed a full 16/32/64 bit lint that resulted in some small changes.
8583
8584Added a sleep simulation command to the AML debugger to test sleep code. 
8585
8586Code and Data Size: Current and previous core subsystem library sizes are 
8587shown below.  These are the code and data sizes for the acpica.lib 
8588produced 
8589by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8590any ACPI driver or OSPM code.  The debug version of the code includes the 
8591debug output trace mechanism and has a much larger code and data size.  
8592Note 
8593that these values will vary depending on the efficiency of the compiler 
8594and 
8595the compiler options used during generation.
8596
8597  Previous Release:
8598    Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
8599    Debug Version:     162.9K Code,  67.0K Data,  229.9K Total
8600  Current Release:
8601    Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
8602    Debug Version:     163.2K Code,  67.2K Data,  230.4K Total
8603
8604----------------------------------------
860527 April 2004.  Summary of changes for version 20040427:
8606
86071) ACPI CA Core Subsystem:
8608
8609Completed a major overhaul of the GPE handling within ACPI CA.  There are 
8610now three types of GPEs:  wake-only, runtime-only, and combination 
8611wake/run.  
8612The only GPEs allowed to be combination wake/run are for button-style 
8613devices such as a control-method power button, control-method sleep 
8614button, 
8615or a notebook lid switch.  GPEs that have an _Lxx or _Exx method and are 
8616not 
8617referenced by any _PRW methods are marked for "runtime" and hardware 
8618enabled.  Any GPE that is referenced by a _PRW method is marked for "wake" 
8619(and disabled at runtime).  However, at sleep time, only those GPEs that 
8620have been specifically enabled for wake via the AcpiEnableGpe interface 
8621will 
8622actually be hardware enabled.
8623
8624A new external interface has been added, AcpiSetGpeType(), that is meant 
8625to 
8626be used by device drivers to force a GPE to a particular type.  It will be 
8627especially useful for the drivers for the button devices mentioned above.
8628
8629Completed restructuring of the ACPI CA initialization sequence so that 
8630default operation region handlers are installed before GPEs are 
8631initialized 
8632and the _PRW methods are executed.  This will prevent errors when the _PRW 
8633methods attempt to access system memory or I/O space.
8634
8635GPE enable/disable no longer reads the GPE enable register.  We now keep 
8636the 
8637enable info for runtime and wake separate and in the GPE_EVENT_INFO.  We 
8638thus no longer depend on the hardware to maintain these bits.
8639
8640Always clear the wake status and fixed/GPE status bits before sleep, even 
8641for state S5.
8642
8643Improved the AML debugger output for displaying the GPE blocks and their 
8644current status.
8645
8646Added new strings for the _OSI method, of the form "Windows 2001 SPx" 
8647where 
8648x = 0,1,2,3,4.
8649
8650Fixed a problem where the physical address was incorrectly calculated when 
8651the Load() operator was used to directly load from an Operation Region 
8652(vs. 
8653loading from a Field object.)  Also added check for minimum table length 
8654for 
8655this case.
8656
8657Fix for multiple mutex acquisition.  Restore original thread SyncLevel on 
8658mutex release.
8659
8660Added ACPI_VALID_SXDS flag to the AcpiGetObjectInfo interface for 
8661consistency with the other fields returned.
8662
8663Shrunk the ACPI_GPE_EVENT_INFO structure by 40%.  There is one such 
8664structure for each GPE in the system, so the size of this structure is 
8665important.
8666
8667CPU stack requirement reduction:  Cleaned up the method execution and 
8668object 
8669evaluation paths so that now a parameter structure is passed, instead of 
8670copying the various method parameters over and over again.
8671
8672In evregion.c:  Correctly exit and reenter the interpreter region if and 
8673only if dispatching an operation region request to a user-installed 
8674handler.  
8675Do not exit/reenter when dispatching to a default handler (e.g., default 
8676system memory or I/O handlers)
8677
8678
8679Notes for updating drivers for the new GPE support.  The following changes 
8680must be made to ACPI-related device drivers that are attached to one or 
8681more 
8682GPEs: (This information will be added to the ACPI CA Programmer 
8683Reference.)
8684
86851) AcpiInstallGpeHandler no longer automatically enables the GPE, you must 
8686explicitly call AcpiEnableGpe.
86872) There is a new interface called AcpiSetGpeType. This should be called 
8688before enabling the GPE.  Also, this interface will automatically disable 
8689the GPE if it is currently enabled.
86903) AcpiEnableGpe no longer supports a GPE type flag.
8691
8692Specific drivers that must be changed:
86931) EC driver:
8694    AcpiInstallGpeHandler (NULL, GpeNum, ACPI_GPE_EDGE_TRIGGERED, 
8695AeGpeHandler, NULL);
8696    AcpiSetGpeType (NULL, GpeNum, ACPI_GPE_TYPE_RUNTIME);
8697    AcpiEnableGpe (NULL, GpeNum, ACPI_NOT_ISR);
8698
86992) Button Drivers (Power, Lid, Sleep):
8700Run _PRW method under parent device
8701If _PRW exists: /* This is a control-method button */
8702    Extract GPE number and possibly GpeDevice
8703    AcpiSetGpeType (GpeDevice, GpeNum, ACPI_GPE_TYPE_WAKE_RUN);
8704    AcpiEnableGpe (GpeDevice, GpeNum, ACPI_NOT_ISR);
8705
8706For all other devices that have _PRWs, we automatically set the GPE type 
8707to 
8708ACPI_GPE_TYPE_WAKE, but the GPE is NOT automatically (wake) enabled.  This 
8709must be done on a selective basis, usually requiring some kind of user app 
8710to allow the user to pick the wake devices.
8711
8712
8713Code and Data Size: Current and previous core subsystem library sizes are 
8714shown below.  These are the code and data sizes for the acpica.lib 
8715produced 
8716by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8717any ACPI driver or OSPM code.  The debug version of the code includes the 
8718debug output trace mechanism and has a much larger code and data size.  
8719Note 
8720that these values will vary depending on the efficiency of the compiler 
8721and 
8722the compiler options used during generation.
8723
8724  Previous Release:
8725    Non-Debug Version:  77.0K Code,  11.4K Data,   88.4K Total
8726    Debug Version:     161.0K Code,  66.3K Data,  227.3K Total
8727  Current Release:
8728
8729    Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
8730    Debug Version:     162.9K Code,  67.0K Data,  229.9K Total
8731
8732
8733
8734----------------------------------------
873502 April 2004.  Summary of changes for version 20040402:
8736
87371) ACPI CA Core Subsystem:
8738
8739Fixed an interpreter problem where an indirect store through an ArgX 
8740parameter was incorrectly applying the "implicit conversion rules" during 
8741the store.  From the ACPI specification: "If the target is a method local 
8742or 
8743argument (LocalX or ArgX), no conversion is performed and the result is 
8744stored directly to the target".  The new behavior is to disable implicit 
8745conversion during ALL stores to an ArgX.
8746
8747Changed the behavior of the _PRW method scan to ignore any and all errors 
8748returned by a given _PRW.  This prevents the scan from aborting from the 
8749failure of any single _PRW.
8750
8751Moved the runtime configuration parameters from the global init procedure 
8752to 
8753static variables in acglobal.h.  This will allow the host to override the 
8754default values easily.
8755
8756Code and Data Size: Current and previous core subsystem library sizes are 
8757shown below.  These are the code and data sizes for the acpica.lib 
8758produced 
8759by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8760any ACPI driver or OSPM code.  The debug version of the code includes the 
8761debug output trace mechanism and has a much larger code and data size.  
8762Note 
8763that these values will vary depending on the efficiency of the compiler 
8764and 
8765the compiler options used during generation.
8766
8767  Previous Release:
8768    Non-Debug Version:  76.9K Code,  11.4K Data,   88.3K Total
8769    Debug Version:     160.8K Code,  66.1K Data,  226.9K Total
8770  Current Release:
8771    Non-Debug Version:  77.0K Code,  11.4K Data,   88.4K Total
8772    Debug Version:     161.0K Code,  66.3K Data,  227.3K Total
8773
8774
87752) iASL Compiler/Disassembler:
8776
8777iASL now fully disassembles SSDTs.  However, External() statements are not 
8778generated automatically for unresolved symbols at this time.  This is a 
8779planned feature for future implementation.
8780
8781Fixed a scoping problem in the disassembler that occurs when the type of 
8782the 
8783target of a Scope() operator is overridden.  This problem caused an 
8784incorrectly nested internal namespace to be constructed.
8785
8786Any warnings or errors that are emitted during disassembly are now 
8787commented 
8788out automatically so that the resulting file can be recompiled without any 
8789hand editing.
8790
8791----------------------------------------
879226 March 2004.  Summary of changes for version 20040326:
8793
87941) ACPI CA Core Subsystem:
8795
8796Implemented support for "wake" GPEs via interaction between GPEs and the 
8797_PRW methods.  Every GPE that is pointed to by one or more _PRWs is 
8798identified as a WAKE GPE and by default will no longer be enabled at 
8799runtime.  Previously, we were blindly enabling all GPEs with a 
8800corresponding 
8801_Lxx or _Exx method - but most of these turn out to be WAKE GPEs anyway.  
8802We 
8803believe this has been the cause of thousands of "spurious" GPEs on some 
8804systems.
8805
8806This new GPE behavior is can be reverted to the original behavior (enable 
8807ALL GPEs at runtime) via a runtime flag.
8808
8809Fixed a problem where aliased control methods could not access objects 
8810properly.  The proper scope within the namespace was not initialized 
8811(transferred to the target of the aliased method) before executing the 
8812target method.
8813
8814Fixed a potential race condition on internal object deletion on the return 
8815object in AcpiEvaluateObject. 
8816
8817Integrated a fix for resource descriptors where both _MEM and _MTP were 
8818being extracted instead of just _MEM.  (i.e. bitmask was incorrectly too 
8819wide, 0x0F instead of 0x03.)
8820
8821Added a special case for ACPI_ROOT_OBJECT in AcpiUtGetNodeName, preventing 
8822a 
8823fault in some cases.
8824
8825Updated Notify() values for debug statements in evmisc.c
8826
8827Return proper status from AcpiUtMutexInitialize, not just simply AE_OK.
8828
8829Code and Data Size: Current and previous core subsystem library sizes are 
8830shown below.  These are the code and data sizes for the acpica.lib 
8831produced 
8832by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8833any ACPI driver or OSPM code.  The debug version of the code includes the 
8834debug output trace mechanism and has a much larger code and data size.  
8835Note 
8836that these values will vary depending on the efficiency of the compiler 
8837and 
8838the compiler options used during generation.
8839
8840  Previous Release:
8841
8842    Non-Debug Version:  76.5K Code,  11.3K Data,   87.8K Total
8843    Debug Version:     160.3K Code,  66.0K Data,  226.3K Total
8844  Current Release:
8845    Non-Debug Version:  76.9K Code,  11.4K Data,   88.3K Total
8846    Debug Version:     160.8K Code,  66.1K Data,  226.9K Total
8847
8848----------------------------------------
884911 March 2004.  Summary of changes for version 20040311:
8850
88511) ACPI CA Core Subsystem:
8852
8853Fixed a problem where errors occurring during the parse phase of control 
8854method execution did not abort cleanly.  For example, objects created and 
8855installed in the namespace were not deleted.  This caused all subsequent 
8856invocations of the method to return the AE_ALREADY_EXISTS exception.
8857
8858Implemented a mechanism to force a control method to "Serialized" 
8859execution 
8860if the method attempts to create namespace objects. (The root of the 
8861AE_ALREADY_EXISTS problem.)
8862
8863Implemented support for the predefined _OSI "internal" control method.  
8864Initial supported strings are "Linux", "Windows 2000", "Windows 2001", and 
8865"Windows 2001.1", and can be easily upgraded for new strings as necessary.  
8866This feature will allow "other" operating systems to execute the fully 
8867tested, "Windows" code path through the ASL code
8868
8869Global Lock Support:  Now allows multiple acquires and releases with any 
8870internal thread.  Removed concept of "owning thread" for this special 
8871mutex.
8872
8873Fixed two functions that were inappropriately declaring large objects on 
8874the 
8875CPU stack:  PsParseLoop, NsEvaluateRelative.  Reduces the stack usage 
8876during 
8877method execution considerably.
8878
8879Fixed a problem in the ACPI 2.0 FACS descriptor (actbl2.h) where the 
8880S4Bios_f field was incorrectly defined as UINT32 instead of UINT32_BIT.
8881
8882Fixed a problem where AcpiEvGpeDetect would fault if there were no GPEs 
8883defined on the machine.
8884
8885Implemented two runtime options:  One to force all control method 
8886execution 
8887to "Serialized" to mimic Windows behavior, another to disable _OSI support 
8888if it causes problems on a given machine.
8889
8890Code and Data Size: Current and previous core subsystem library sizes are 
8891shown below.  These are the code and data sizes for the acpica.lib 
8892produced 
8893by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8894any ACPI driver or OSPM code.  The debug version of the code includes the 
8895debug output trace mechanism and has a much larger code and data size.  
8896Note 
8897that these values will vary depending on the efficiency of the compiler 
8898and 
8899the compiler options used during generation.
8900
8901  Previous Release:
8902    Non-Debug Version:  74.8K Code,  10.1K Data,   84.9K Total
8903    Debug Version:     158.7K Code,  65.1K Data,  223.8K Total
8904  Current Release:
8905    Non-Debug Version:  76.5K Code,  11.3K Data,   87.8K Total
8906    Debug Version:     160.3K Code,  66.0K Data,  226.3K Total
8907
89082) iASL Compiler/Disassembler:
8909
8910Fixed an array size problem for FreeBSD that would cause the compiler to 
8911fault.
8912
8913----------------------------------------
891420 February 2004.  Summary of changes for version 20040220:
8915
8916
89171) ACPI CA Core Subsystem:
8918
8919Implemented execution of _SxD methods for Device objects in the 
8920GetObjectInfo interface.
8921
8922Fixed calls to _SST method to pass the correct arguments.
8923
8924Added a call to _SST on wake to restore to "working" state.
8925
8926Check for End-Of-Buffer failure case in the WalkResources interface.
8927
8928Integrated fix for 64-bit alignment issue in acglobal.h by moving two 
8929structures to the beginning of the file.
8930
8931After wake, clear GPE status register(s) before enabling GPEs.
8932
8933After wake, clear/enable power button.  (Perhaps we should clear/enable 
8934all 
8935fixed events upon wake.)
8936
8937Fixed a couple of possible memory leaks in the Namespace manager.
8938
8939Integrated latest acnetbsd.h file.
8940
8941----------------------------------------
894211 February 2004.  Summary of changes for version 20040211:
8943
8944
89451) ACPI CA Core Subsystem:
8946
8947Completed investigation and implementation of the call-by-reference 
8948mechanism for control method arguments.
8949
8950Fixed a problem where a store of an object into an indexed package could 
8951fail if the store occurs within a different method than the method that 
8952created the package.
8953
8954Fixed a problem where the ToDecimal operator could return incorrect 
8955results.
8956
8957Fixed a problem where the CopyObject operator could fail on some of the 
8958more 
8959obscure objects (e.g., Reference objects.)
8960
8961Improved the output of the Debug object to display buffer, package, and 
8962index objects.
8963
8964Fixed a problem where constructs of the form "RefOf (ArgX)" did not return 
8965the expected result.
8966
8967Added permanent ACPI_REPORT_ERROR macros for all instances of the 
8968ACPI_AML_INTERNAL exception.
8969
8970Integrated latest version of acfreebsd.h
8971
8972----------------------------------------
897316 January 2004.  Summary of changes for version 20040116:
8974
8975The purpose of this release is primarily to update the copyright years in 
8976each module, thus causing a huge number of diffs.  There are a few small 
8977functional changes, however.
8978
89791) ACPI CA Core Subsystem:
8980
8981Improved error messages when there is a problem finding one or more of the 
8982required base ACPI tables
8983
8984Reintroduced the definition of APIC_HEADER in actbl.h
8985
8986Changed definition of MADT_ADDRESS_OVERRIDE to 64 bits (actbl.h)
8987
8988Removed extraneous reference to NewObj in dsmthdat.c
8989
89902) iASL compiler
8991
8992Fixed a problem introduced in December that disabled the correct 
8993disassembly 
8994of Resource Templates
8995
8996
8997----------------------------------------
899803 December 2003.  Summary of changes for version 20031203:
8999
90001) ACPI CA Core Subsystem:
9001
9002Changed the initialization of Operation Regions during subsystem
9003init to perform two entire walks of the ACPI namespace; The first
9004to initialize the regions themselves, the second to execute the
9005_REG methods.  This fixed some interdependencies across _REG
9006methods found on some machines.
9007
9008Fixed a problem where a Store(Local0, Local1) could simply update
9009the object reference count, and not create a new copy of the
9010object if the Local1 is uninitialized.
9011
9012Implemented support for the _SST reserved method during sleep
9013transitions.
9014
9015Implemented support to clear the SLP_TYP and SLP_EN bits when
9016waking up, this is apparently required by some machines.
9017
9018When sleeping, clear the wake status only if SleepState is not S5.
9019
9020Fixed a problem in AcpiRsExtendedIrqResource() where an incorrect
9021pointer arithmetic advanced a string pointer too far.
9022
9023Fixed a problem in AcpiTbGetTablePtr() where a garbage pointer
9024could be returned if the requested table has not been loaded.
9025
9026Within the support for IRQ resources, restructured the handling of
9027the active and edge/level bits.
9028
9029Fixed a few problems in AcpiPsxExecute() where memory could be
9030leaked under certain error conditions.
9031
9032Improved error messages for the cases where the ACPI mode could
9033not be entered.
9034
9035Code and Data Size: Current and previous core subsystem library
9036sizes are shown below.  These are the code and data sizes for the
9037acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
9038these values do not include any ACPI driver or OSPM code.  The
9039debug version of the code includes the debug output trace
9040mechanism and has a much larger code and data size.  Note that
9041these values will vary depending on the efficiency of the compiler
9042and the compiler options used during generation.
9043
9044  Previous Release (20031029):
9045    Non-Debug Version:  74.4K Code,  10.1K Data,   84.5K Total
9046    Debug Version:     158.3K Code,  65.0K Data,  223.3K Total
9047  Current Release:
9048    Non-Debug Version:  74.8K Code,  10.1K Data,   84.9K Total
9049    Debug Version:     158.7K Code,  65.1K Data,  223.8K Total
9050
90512) iASL Compiler/Disassembler:
9052
9053Implemented a fix for the iASL disassembler where a bad index was
9054generated.  This was most noticeable on 64-bit platforms
9055
9056
9057----------------------------------------
905829 October 2003.  Summary of changes for version 20031029:
9059
90601) ACPI CA Core Subsystem:
9061
9062
9063Fixed a problem where a level-triggered GPE with an associated
9064_Lxx control method was incorrectly cleared twice.
9065
9066Fixed a problem with the Field support code where an access can
9067occur beyond the end-of-region if the field is non-aligned but
9068extends to the very end of the parent region (resulted in an
9069AE_AML_REGION_LIMIT exception.)
9070
9071Fixed a problem with ACPI Fixed Events where an RT Clock handler
9072would not get invoked on an RTC event.  The RTC event bitmasks for
9073the PM1 registers were not being initialized properly.
9074
9075Implemented support for executing _STA and _INI methods for
9076Processor objects.  Although this is currently not part of the
9077ACPI specification, there is existing ASL code that depends on the
9078init-time execution of these methods.
9079
9080Implemented and deployed a GetDescriptorName function to decode
9081the various types of internal descriptors.  Guards against null
9082descriptors during debug output also.
9083
9084Implemented and deployed a GetNodeName function to extract the 4-
9085character namespace node name.  This function simplifies the debug
9086and error output, as well as guarding against null pointers during
9087output.
9088
9089Implemented and deployed the ACPI_FORMAT_UINT64 helper macro to
9090simplify the debug and error output of 64-bit integers.  This
9091macro replaces the HIDWORD and LODWORD macros for dumping these
9092integers.
9093
9094Updated the implementation of the Stall() operator to only call
9095AcpiOsStall(), and also return an error if the operand is larger
9096than 255.  This preserves the required behavior of not
9097relinquishing the processor, as would happen if AcpiOsSleep() was
9098called for "long stalls".
9099
9100Constructs of the form "Store(LocalX,LocalX)" where LocalX is not
9101initialized are now treated as NOOPs.
9102
9103Cleaned up a handful of warnings during 64-bit generation.
9104
9105Fixed a reported error where and incorrect GPE number was passed
9106to the GPE dispatch handler.  This value is only used for error
9107output, however.  Used this opportunity to clean up and streamline
9108the GPE dispatch code.
9109
9110Code and Data Size: Current and previous core subsystem library
9111sizes are shown below.  These are the code and data sizes for the
9112acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
9113these values do not include any ACPI driver or OSPM code.  The
9114
9115debug version of the code includes the debug output trace
9116mechanism and has a much larger code and data size.  Note that
9117these values will vary depending on the efficiency of the compiler
9118and the compiler options used during generation.
9119
9120  Previous Release (20031002):
9121    Non-Debug Version:  74.1K Code,   9.7K Data,   83.8K Total
9122    Debug Version:     157.9K Code,  64.8K Data,  222.7K Total
9123  Current Release:
9124    Non-Debug Version:  74.4K Code,  10.1K Data,   84.5K Total
9125    Debug Version:     158.3K Code,  65.0K Data,  223.3K Total
9126
9127
91282) iASL Compiler/Disassembler:
9129
9130Updated the iASL compiler to return an error if the operand to the
9131Stall() operator is larger than 255.
9132
9133
9134----------------------------------------
913502 October 2003.  Summary of changes for version 20031002:
9136
9137
91381) ACPI CA Core Subsystem:
9139
9140Fixed a problem with Index Fields where the index was not
9141incremented for fields that require multiple writes to the
9142index/data registers (Fields that are wider than the data
9143register.)
9144
9145Fixed a problem with all Field objects where a write could go
9146beyond the end-of-field if the field was larger than the access
9147granularity and therefore required multiple writes to complete the
9148request.  An extra write beyond the end of the field could happen
9149inadvertently.
9150
9151Fixed a problem with Index Fields where a BUFFER_OVERFLOW error
9152would incorrectly be returned if the width of the Data Register
9153was larger than the specified field access width.
9154
9155Completed fixes for LoadTable() and Unload() and verified their
9156operation.  Implemented full support for the "DdbHandle" object
9157throughout the ACPI CA subsystem.
9158
9159Implemented full support for the MADT and ECDT tables in the ACPI
9160CA header files.  Even though these tables are not directly
9161consumed by ACPI CA, the header definitions are useful for ACPI
9162device drivers.
9163
9164Integrated resource descriptor fixes posted to the Linux ACPI
9165list.  This included checks for minimum descriptor length, and
9166support for trailing NULL strings within descriptors that have
9167optional string elements.
9168
9169Code and Data Size: Current and previous core subsystem library
9170sizes are shown below.  These are the code and data sizes for the
9171acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
9172these values do not include any ACPI driver or OSPM code.  The
9173debug version of the code includes the debug output trace
9174mechanism and has a much larger code and data size.  Note that
9175these values will vary depending on the efficiency of the compiler
9176and the compiler options used during generation.
9177
9178  Previous Release (20030918):
9179    Non-Debug Version:  73.9K Code,   9.7K Data,   83.6K Total
9180    Debug Version:     157.3K Code,  64.5K Data,  221.8K Total
9181  Current Release:
9182    Non-Debug Version:  74.1K Code,   9.7K Data,   83.8K Total
9183    Debug Version:     157.9K Code,  64.8K Data,  222.7K Total
9184
9185
91862) iASL Compiler:
9187
9188Implemented detection of non-ASCII characters within the input
9189source ASL file.  This catches attempts to compile binary (AML)
9190files early in the compile, with an informative error message.
9191
9192Fixed a problem where the disassembler would fault if the output
9193filename could not be generated or if the output file could not be
9194opened.
9195
9196----------------------------------------
919718 September 2003.  Summary of changes for version 20030918:
9198
9199
92001) ACPI CA Core Subsystem:
9201
9202Found and fixed a longstanding problem with the late execution of
9203the various deferred AML opcodes (such as Operation Regions,
9204Buffer Fields, Buffers, and Packages).  If the name string
9205specified for the name of the new object placed the object in a
9206scope other than the current scope, the initialization/execution
9207of the opcode failed.  The solution to this problem was to
9208implement a mechanism where the late execution of such opcodes
9209does not attempt to lookup/create the name a second time in an
9210incorrect scope.  This fixes the "region size computed
9211incorrectly" problem.
9212
9213Fixed a call to AcpiHwRegisterWrite in hwregs.c that was causing a
9214Global Lock AE_BAD_PARAMETER error.
9215
9216Fixed several 64-bit issues with prototypes, casting and data
9217types.
9218
9219Removed duplicate prototype from acdisasm.h
9220
9221Fixed an issue involving EC Operation Region Detach (Shaohua Li)
9222
9223Code and Data Size: Current and previous core subsystem library
9224sizes are shown below.  These are the code and data sizes for the
9225acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
9226these values do not include any ACPI driver or OSPM code.  The
9227debug version of the code includes the debug output trace
9228mechanism and has a much larger code and data size.  Note that
9229these values will vary depending on the efficiency of the compiler
9230and the compiler options used during generation.
9231
9232  Previous Release:
9233
9234    Non-Debug Version:  73.7K Code,   9.7K Data,   83.4K Total
9235    Debug Version:     156.9K Code,  64.2K Data,  221.1K Total
9236  Current Release:
9237    Non-Debug Version:  73.9K Code,   9.7K Data,   83.6K Total
9238    Debug Version:     157.3K Code,  64.5K Data,  221.8K Total
9239
9240
92412) Linux:
9242
9243Fixed the AcpiOsSleep implementation in osunixxf.c to pass the
9244correct sleep time in seconds.
9245
9246----------------------------------------
924714 July 2003.  Summary of changes for version 20030619:
9248
92491) ACPI CA Core Subsystem:
9250
9251Parse SSDTs in order discovered, as opposed to reverse order
9252(Hrvoje Habjanic)
9253
9254Fixes from FreeBSD and NetBSD. (Frank van der Linden, Thomas
9255Klausner,
9256   Nate Lawson)
9257
9258
92592) Linux:
9260
9261Dynamically allocate SDT list (suggested by Andi Kleen)
9262
9263proc function return value cleanups (Andi Kleen)
9264
9265Correctly handle NMI watchdog during long stalls (Andrew Morton)
9266
9267Make it so acpismp=force works (reported by Andrew Morton)
9268
9269
9270----------------------------------------
927119 June 2003.  Summary of changes for version 20030619:
9272
92731) ACPI CA Core Subsystem:
9274
9275Fix To/FromBCD, eliminating the need for an arch-specific #define.
9276
9277Do not acquire a semaphore in the S5 shutdown path.
9278
9279Fix ex_digits_needed for 0. (Takayoshi Kochi)
9280
9281Fix sleep/stall code reversal. (Andi Kleen)
9282
9283Revert a change having to do with control method calling
9284semantics.
9285
92862) Linux:
9287
9288acpiphp update (Takayoshi Kochi)
9289
9290Export acpi_disabled for sonypi (Stelian Pop)
9291
9292Mention acpismp=force in config help
9293
9294Re-add acpitable.c and acpismp=force. This improves backwards
9295
9296compatibility and also cleans up the code to a significant degree.
9297
9298Add ASUS Value-add driver (Karol Kozimor and Julien Lerouge)
9299
9300----------------------------------------
930122 May 2003.  Summary of changes for version 20030522:
9302
93031) ACPI CA Core Subsystem:
9304
9305Found and fixed a reported problem where an AE_NOT_FOUND error
9306occurred occasionally during _BST evaluation.  This turned out to
9307be an Owner ID allocation issue where a called method did not get
9308a new ID assigned to it.  Eventually, (after 64k calls), the Owner
9309ID UINT16 would wraparound so that the ID would be the same as the
9310caller's and the called method would delete the caller's
9311namespace.
9312
9313Implemented extended error reporting for control methods that are
9314aborted due to a run-time exception.  Output includes the exact
9315AML instruction that caused the method abort, a dump of the method
9316locals and arguments at the time of the abort, and a trace of all
9317nested control method calls.
9318
9319Modified the interpreter to allow the creation of buffers of zero
9320length from the AML code. Implemented new code to ensure that no
9321attempt is made to actually allocate a memory buffer (of length
9322zero) - instead, a simple buffer object with a NULL buffer pointer
9323and length zero is created.  A warning is no longer issued when
9324the AML attempts to create a zero-length buffer.
9325
9326Implemented a workaround for the "leading asterisk issue" in
9327_HIDs, _UIDs, and _CIDs in the AML interpreter.  One leading
9328asterisk is automatically removed if present in any HID, UID, or
9329CID strings.  The iASL compiler will still flag this asterisk as
9330an error, however.
9331
9332Implemented full support for _CID methods that return a package of
9333multiple CIDs (Compatible IDs).  The AcpiGetObjectInfo() interface
9334now additionally returns a device _CID list if present.  This
9335required a change to the external interface in order to pass an
9336ACPI_BUFFER object as a parameter since the _CID list is of
9337variable length.
9338
9339Fixed a problem with the new AE_SAME_HANDLER exception where
9340handler initialization code did not know about this exception.
9341
9342Code and Data Size: Current and previous core subsystem library
9343sizes are shown below.  These are the code and data sizes for the
9344acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
9345these values do not include any ACPI driver or OSPM code.  The
9346debug version of the code includes the debug output trace
9347mechanism and has a much larger code and data size.  Note that
9348these values will vary depending on the efficiency of the compiler
9349and the compiler options used during generation.
9350
9351  Previous Release (20030509):
9352    Non-Debug Version:  73.4K Code,   9.7K Data,   83.1K Total
9353    Debug Version:     156.1K Code,  63.9K Data,  220.0K Total
9354  Current Release:
9355    Non-Debug Version:  73.7K Code,   9.7K Data,   83.4K Total
9356    Debug Version:     156.9K Code,  64.2K Data,  221.1K Total
9357
9358
93592) Linux:
9360
9361Fixed a bug in which we would reinitialize the ACPI interrupt
9362after it was already working, thus disabling all ACPI and the IRQs
9363for any other device sharing the interrupt. (Thanks to Stian
9364Jordet)
9365
9366Toshiba driver update (John Belmonte)
9367
9368Return only 0 or 1 for our interrupt handler status (Andrew
9369Morton)
9370
9371
93723) iASL Compiler:
9373
9374Fixed a reported problem where multiple (nested) ElseIf()
9375statements were not handled correctly by the compiler, resulting
9376in incorrect warnings and incorrect AML code.  This was a problem
9377in both the ASL parser and the code generator.
9378
9379
93804) Documentation:
9381
9382Added changes to existing interfaces, new exception codes, and new
9383text concerning reference count object management versus garbage
9384collection.
9385
9386----------------------------------------
938709 May 2003.  Summary of changes for version 20030509.
9388
9389
93901) ACPI CA Core Subsystem:
9391
9392Changed the subsystem initialization sequence to hold off
9393installation of address space handlers until the hardware has been
9394initialized and the system has entered ACPI mode.  This is because
9395the installation of space handlers can cause _REG methods to be
9396run.  Previously, the _REG methods could potentially be run before
9397ACPI mode was enabled.
9398
9399Fixed some memory leak issues related to address space handler and
9400notify handler installation.  There were some problems with the
9401reference count mechanism caused by the fact that the handler
9402objects are shared across several namespace objects.
9403
9404Fixed a reported problem where reference counts within the
9405namespace were not properly updated when named objects created by
9406method execution were deleted.
9407
9408Fixed a reported problem where multiple SSDTs caused a deletion
9409issue during subsystem termination.  Restructured the table data
9410structures to simplify the linked lists and the related code.
9411
9412Fixed a problem where the table ID associated with secondary
9413tables (SSDTs) was not being propagated into the namespace objects
9414created by those tables.  This would only present a problem for
9415tables that are unloaded at run-time, however.
9416
9417Updated AcpiOsReadable and AcpiOsWritable to use the ACPI_SIZE
9418type as the length parameter (instead of UINT32).
9419
9420Solved a long-standing problem where an ALREADY_EXISTS error
9421appears on various systems.  This problem could happen when there
9422are multiple PCI_Config operation regions under a single PCI root
9423bus.  This doesn't happen very frequently, but there are some
9424systems that do this in the ASL.
9425
9426Fixed a reported problem where the internal DeleteNode function
9427was incorrectly handling the case where a namespace node was the
9428first in the parent's child list, and had additional peers (not
9429the only child, but first in the list of children.)
9430
9431Code and Data Size: Current core subsystem library sizes are shown
9432below.  These are the code and data sizes for the acpica.lib
9433produced by the Microsoft Visual C++ 6.0 compiler, and these
9434values do not include any ACPI driver or OSPM code.  The debug
9435version of the code includes the debug output trace mechanism and
9436has a much larger code and data size.  Note that these values will
9437vary depending on the efficiency of the compiler and the compiler
9438options used during generation.
9439
9440  Previous Release
9441    Non-Debug Version:  73.7K Code,   9.5K Data,   83.2K Total
9442    Debug Version:     156.1K Code,  63.6K Data,  219.7K Total
9443  Current Release:
9444    Non-Debug Version:  73.4K Code,   9.7K Data,   83.1K Total
9445    Debug Version:     156.1K Code,  63.9K Data,  220.0K Total
9446
9447
94482) Linux:
9449
9450Allow ":" in OS override string (Ducrot Bruno)
9451
9452Kobject fix (Greg KH)
9453
9454
94553 iASL Compiler/Disassembler:
9456
9457Fixed a problem in the generation of the C source code files (AML
9458is emitted in C source statements for BIOS inclusion) where the
9459Ascii dump that appears within a C comment at the end of each line
9460could cause a compile time error if the AML sequence happens to
9461have an open comment or close comment sequence embedded.
9462
9463
9464----------------------------------------
946524 April 2003.  Summary of changes for version 20030424.
9466
9467
94681) ACPI CA Core Subsystem:
9469
9470Support for big-endian systems has been implemented.  Most of the
9471support has been invisibly added behind big-endian versions of the
9472ACPI_MOVE_* macros.
9473
9474Fixed a problem in AcpiHwDisableGpeBlock() and
9475AcpiHwClearGpeBlock() where an incorrect offset was passed to the
9476low level hardware write routine.  The offset parameter was
9477actually eliminated from the low level read/write routines because
9478they had become obsolete.
9479
9480Fixed a problem where a handler object was deleted twice during
9481the removal of a fixed event handler.
9482
9483
94842) Linux:
9485
9486A fix for SMP systems with link devices was contributed by
9487
9488Compaq's Dan Zink.
9489
9490(2.5) Return whether we handled the interrupt in our IRQ handler.
9491(Linux ISRs no longer return void, so we can propagate the handler
9492return value from the ACPI CA core back to the OS.)
9493
9494
9495
94963) Documentation:
9497
9498The ACPI CA Programmer Reference has been updated to reflect new
9499interfaces and changes to existing interfaces.
9500
9501----------------------------------------
950228 March 2003.  Summary of changes for version 20030328.
9503
95041) ACPI CA Core Subsystem:
9505
9506The GPE Block Device support has been completed.  New interfaces
9507are AcpiInstallGpeBlock and AcpiRemoveGpeBlock.  The Event
9508interfaces (enable, disable, clear, getstatus) have been split
9509into separate interfaces for Fixed Events and General Purpose
9510Events (GPEs) in order to support GPE Block Devices properly.
9511
9512Fixed a problem where the error message "Failed to acquire
9513semaphore" would appear during operations on the embedded
9514controller (EC).
9515
9516Code and Data Size: Current core subsystem library sizes are shown
9517below.  These are the code and data sizes for the acpica.lib
9518produced by the Microsoft Visual C++ 6.0 compiler, and these
9519values do not include any ACPI driver or OSPM code.  The debug
9520version of the code includes the debug output trace mechanism and
9521has a much larger code and data size.  Note that these values will
9522vary depending on the efficiency of the compiler and the compiler
9523options used during generation.
9524
9525  Previous Release
9526    Non-Debug Version:  72.3K Code,   9.5K Data,   81.8K Total
9527    Debug Version:     154.0K Code,  63.4K Data,  217.4K Total
9528  Current Release:
9529    Non-Debug Version:  73.7K Code,   9.5K Data,   83.2K Total
9530    Debug Version:     156.1K Code,  63.6K Data,  219.7K Total
9531
9532
9533----------------------------------------
953428 February 2003.  Summary of changes for version 20030228.
9535
9536
95371) ACPI CA Core Subsystem:
9538
9539The GPE handling and dispatch code has been completely overhauled
9540in preparation for support of GPE Block Devices (ID ACPI0006).
9541This affects internal data structures and code only; there should
9542be no differences visible externally.  One new file has been
9543added, evgpeblk.c
9544
9545The FADT fields GPE0_BLK_LEN and GPE1_BLK_LEN are now the only
9546fields that are used to determine the GPE block lengths.  The
9547REGISTER_BIT_WIDTH field of the X_GPEx_BLK extended address
9548structures are ignored.  This is per the ACPI specification but it
9549isn't very clear.  The full 256 Block 0/1 GPEs are now supported
9550(the use of REGISTER_BIT_WIDTH limited the number of GPEs to 128).
9551
9552In the SCI interrupt handler, removed the read of the PM1_CONTROL
9553register to look at the SCI_EN bit.  On some machines, this read
9554causes an SMI event and greatly slows down SCI events.  (This may
9555in fact be the cause of slow battery status response on some
9556systems.)
9557
9558Fixed a problem where a store of a NULL string to a package object
9559could cause the premature deletion of the object.  This was seen
9560during execution of the battery _BIF method on some systems,
9561resulting in no battery data being returned.
9562
9563Added AcpiWalkResources interface to simplify parsing of resource
9564lists.
9565
9566Code and Data Size: Current core subsystem library sizes are shown
9567below.  These are the code and data sizes for the acpica.lib
9568produced by the Microsoft Visual C++ 6.0 compiler, and these
9569values do not include any ACPI driver or OSPM code.  The debug
9570version of the code includes the debug output trace mechanism and
9571has a much larger code and data size.  Note that these values will
9572vary depending on the efficiency of the compiler and the compiler
9573options used during generation.
9574
9575  Previous Release
9576    Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
9577    Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
9578  Current Release:
9579    Non-Debug Version:  72.3K Code,   9.5K Data,   81.8K Total
9580    Debug Version:     154.0K Code,  63.4K Data,  217.4K Total
9581
9582
95832) Linux
9584
9585S3 fixes (Ole Rohne)
9586
9587Update ACPI PHP driver with to use new acpi_walk_resource API
9588(Bjorn Helgaas)
9589
9590Add S4BIOS support (Pavel Machek)
9591
9592Map in entire table before performing checksum (John Stultz)
9593
9594Expand the mem= cmdline to allow the specification of reserved and
9595ACPI DATA blocks (Pavel Machek)
9596
9597Never use ACPI on VISWS
9598
9599Fix derive_pci_id (Ducrot Bruno, Alvaro Lopez)
9600
9601Revert a change that allowed P_BLK lengths to be 4 or 5. This is
9602causing us to think that some systems support C2 when they really
9603don't.
9604
9605Do not count processor objects for non-present CPUs (Thanks to
9606Dominik Brodowski)
9607
9608
96093) iASL Compiler:
9610
9611Fixed a problem where ASL include files could not be found and
9612opened.
9613
9614Added support for the _PDC reserved name.
9615
9616
9617----------------------------------------
961822 January 2003.  Summary of changes for version 20030122.
9619
9620
96211) ACPI CA Core Subsystem:
9622
9623Added a check for constructs of the form:  Store (Local0, Local0)
9624where Local0 is not initialized.  Apparently, some BIOS
9625programmers believe that this is a NOOP.  Since this store doesn't
9626do anything anyway, the new prototype behavior will ignore this
9627error.  This is a case where we can relax the strict checking in
9628the interpreter in the name of compatibility.
9629
9630
96312) Linux
9632
9633The AcpiSrc Source Conversion Utility has been released with the
9634Linux package for the first time.  This is the utility that is
9635used to convert the ACPI CA base source code to the Linux version.
9636
9637(Both) Handle P_BLK lengths shorter than 6 more gracefully
9638
9639(Both) Move more headers to include/acpi, and delete an unused
9640header.
9641
9642(Both) Move drivers/acpi/include directory to include/acpi
9643
9644(Both) Boot functions don't use cmdline, so don't pass it around
9645
9646(Both) Remove include of unused header (Adrian Bunk)
9647
9648(Both) acpiphp.h includes both linux/acpi.h and acpi_bus.h. Since
9649the
9650former now also includes the latter, acpiphp.h only needs the one,
9651now.
9652
9653(2.5) Make it possible to select method of bios restoring after S3
9654resume. [=> no more ugly ifdefs] (Pavel Machek)
9655
9656(2.5) Make proc write interfaces work (Pavel Machek)
9657
9658(2.5) Properly init/clean up in cpufreq/acpi (Dominik Brodowski)
9659
9660(2.5) Break out ACPI Perf code into its own module, under cpufreq
9661(Dominik Brodowski)
9662
9663(2.4) S4BIOS support (Ducrot Bruno)
9664
9665(2.4) Fix acpiphp_glue.c for latest ACPI struct changes (Sergio
9666Visinoni)
9667
9668
96693) iASL Compiler:
9670
9671Added support to disassemble SSDT and PSDTs.
9672
9673Implemented support to obtain SSDTs from the Windows registry if
9674available.
9675
9676
9677----------------------------------------
967809 January 2003.  Summary of changes for version 20030109.
9679
96801) ACPI CA Core Subsystem:
9681
9682Changed the behavior of the internal Buffer-to-String conversion
9683function.  The current ACPI specification states that the contents
9684of the buffer are "converted to a string of two-character
9685hexadecimal numbers, each separated by a space".  Unfortunately,
9686this definition is not backwards compatible with existing ACPI 1.0
9687implementations (although the behavior was not defined in the ACPI
96881.0 specification).  The new behavior simply copies data from the
9689buffer to the string until a null character is found or the end of
9690the buffer is reached.  The new String object is always null
9691terminated.  This problem was seen during the generation of _BIF
9692battery data where incorrect strings were returned for battery
9693type, etc.  This will also require an errata to the ACPI
9694specification.
9695
9696Renamed all instances of NATIVE_UINT and NATIVE_INT to
9697ACPI_NATIVE_UINT and ACPI_NATIVE_INT, respectively.
9698
9699Copyright in all module headers (both Linux and non-Linux) has be
9700updated to 2003.
9701
9702Code and Data Size: Current core subsystem library sizes are shown
9703below.  These are the code and data sizes for the acpica.lib
9704produced by the Microsoft Visual C++ 6.0 compiler, and these
9705values do not include any ACPI driver or OSPM code.  The debug
9706version of the code includes the debug output trace mechanism and
9707has a much larger code and data size.  Note that these values will
9708vary depending on the efficiency of the compiler and the compiler
9709options used during generation.
9710
9711  Previous Release
9712    Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
9713    Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
9714  Current Release:
9715    Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
9716    Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
9717
9718
97192) Linux
9720
9721Fixed an oops on module insertion/removal (Matthew Tippett)
9722
9723(2.4) Fix to handle dynamic size of mp_irqs (Joerg Prante)
9724
9725(2.5) Replace pr_debug (Randy Dunlap)
9726
9727(2.5) Remove usage of CPUFREQ_ALL_CPUS (Dominik Brodowski)
9728
9729(Both) Eliminate spawning of thread from timer callback, in favor
9730of schedule_work()
9731
9732(Both) Show Lid status in /proc (Zdenek OGAR Skalak)
9733
9734(Both) Added define for Fixed Function HW region (Matthew Wilcox)
9735
9736(Both) Add missing statics to button.c (Pavel Machek)
9737
9738Several changes have been made to the source code translation
9739utility that generates the Linux Code in order to make the code
9740more "Linux-like":
9741
9742All typedefs on structs and unions have been removed in keeping
9743with the Linux coding style.
9744
9745Removed the non-Linux SourceSafe module revision number from each
9746module header.
9747
9748Completed major overhaul of symbols to be lowercased for linux.
9749Doubled the number of symbols that are lowercased.
9750
9751Fixed a problem where identifiers within procedure headers and
9752within quotes were not fully lower cased (they were left with a
9753starting capital.)
9754
9755Some C macros whose only purpose is to allow the generation of 16-
9756bit code are now completely removed in the Linux code, increasing
9757readability and maintainability.
9758
9759----------------------------------------
9760
976112 December 2002.  Summary of changes for version 20021212.
9762
9763
97641) ACPI CA Core Subsystem:
9765
9766Fixed a problem where the creation of a zero-length AML Buffer
9767would cause a fault.
9768
9769Fixed a problem where a Buffer object that pointed to a static AML
9770buffer (in an ACPI table) could inadvertently be deleted, causing
9771memory corruption.
9772
9773Fixed a problem where a user buffer (passed in to the external
9774ACPI CA interfaces) could be overwritten if the buffer was too
9775small to complete the operation, causing memory corruption.
9776
9777Fixed a problem in the Buffer-to-String conversion code where a
9778string of length one was always returned, regardless of the size
9779of the input Buffer object.
9780
9781Removed the NATIVE_CHAR data type across the entire source due to
9782lack of need and lack of consistent use.
9783
9784Code and Data Size: Current core subsystem library sizes are shown
9785below.  These are the code and data sizes for the acpica.lib
9786produced by the Microsoft Visual C++ 6.0 compiler, and these
9787values do not include any ACPI driver or OSPM code.  The debug
9788version of the code includes the debug output trace mechanism and
9789has a much larger code and data size.  Note that these values will
9790vary depending on the efficiency of the compiler and the compiler
9791options used during generation.
9792
9793  Previous Release
9794    Non-Debug Version:  72.1K Code,   9.5K Data,   81.6K Total
9795    Debug Version:     152.7K Code,  62.7K Data,  215.4K Total
9796  Current Release:
9797    Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
9798    Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
9799
9800
9801----------------------------------------
980205 December 2002.  Summary of changes for version 20021205.
9803
98041) ACPI CA Core Subsystem:
9805
9806Fixed a problem where a store to a String or Buffer object could
9807cause corruption of the DSDT if the object type being stored was
9808the same as the target object type and the length of the object
9809being stored was equal to or smaller than the original (existing)
9810target object.  This was seen to cause corruption of battery _BIF
9811buffers if the _BIF method modified the buffer on the fly.
9812
9813Fixed a problem where an internal error was generated if a control
9814method invocation was used in an OperationRegion, Buffer, or
9815Package declaration.  This was caused by the deferred parsing of
9816the control method and thus the deferred creation of the internal
9817method object.  The solution to this problem was to create the
9818internal method object at the moment the method is encountered in
9819the first pass - so that subsequent references to the method will
9820able to obtain the required parameter count and thus properly
9821parse the method invocation.  This problem presented itself as an
9822AE_AML_INTERNAL during the pass 1 parse phase during table load.
9823
9824Fixed a problem where the internal String object copy routine did
9825not always allocate sufficient memory for the target String object
9826and caused memory corruption.  This problem was seen to cause
9827"Allocation already present in list!" errors as memory allocation
9828became corrupted.
9829
9830Implemented a new function for the evaluation of namespace objects
9831that allows the specification of the allowable return object
9832types.  This simplifies a lot of code that checks for a return
9833object of one or more specific objects returned from the
9834evaluation (such as _STA, etc.)  This may become and external
9835function if it would be useful to ACPI-related drivers.
9836
9837Completed another round of prefixing #defines with "ACPI_" for
9838clarity.
9839
9840Completed additional code restructuring to allow more modular
9841linking for iASL compiler and AcpiExec.  Several files were split
9842creating new files.  New files:  nsparse.c dsinit.c evgpe.c
9843
9844Implemented an abort mechanism to terminate an executing control
9845method via the AML debugger.  This feature is useful for debugging
9846control methods that depend (wait) for specific hardware
9847responses.
9848
9849Code and Data Size: Current core subsystem library sizes are shown
9850below.  These are the code and data sizes for the acpica.lib
9851produced by the Microsoft Visual C++ 6.0 compiler, and these
9852values do not include any ACPI driver or OSPM code.  The debug
9853version of the code includes the debug output trace mechanism and
9854has a much larger code and data size.  Note that these values will
9855vary depending on the efficiency of the compiler and the compiler
9856options used during generation.
9857
9858  Previous Release
9859    Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
9860    Debug Version:     152.9K Code,  63.3K Data,  216.2K Total
9861  Current Release:
9862    Non-Debug Version:  72.1K Code,   9.5K Data,   81.6K Total
9863    Debug Version:     152.7K Code,  62.7K Data,  215.4K Total
9864
9865
98662) iASL Compiler/Disassembler
9867
9868Fixed a compiler code generation problem for "Interrupt" Resource
9869Descriptors.  If specified in the ASL, the optional "Resource
9870Source Index" and "Resource Source" fields were not inserted into
9871the correct location within the AML resource descriptor, creating
9872an invalid descriptor.
9873
9874Fixed a disassembler problem for "Interrupt" resource descriptors.
9875The optional "Resource Source Index" and "Resource Source" fields
9876were ignored.
9877
9878
9879----------------------------------------
988022 November 2002.  Summary of changes for version 20021122.
9881
9882
98831) ACPI CA Core Subsystem:
9884
9885Fixed a reported problem where an object stored to a Method Local
9886or Arg was not copied to a new object during the store - the
9887object pointer was simply copied to the Local/Arg.  This caused
9888all subsequent operations on the Local/Arg to also affect the
9889original source of the store operation.
9890
9891Fixed a problem where a store operation to a Method Local or Arg
9892was not completed properly if the Local/Arg contained a reference
9893(from RefOf) to a named field.  The general-purpose store-to-
9894namespace-node code is now used so that this case is handled
9895automatically.
9896
9897Fixed a problem where the internal object copy routine would cause
9898a protection fault if the object being copied was a Package and
9899contained either 1) a NULL package element or 2) a nested sub-
9900package.
9901
9902Fixed a problem with the GPE initialization that resulted from an
9903ambiguity in the ACPI specification.  One section of the
9904specification states that both the address and length of the GPE
9905block must be zero if the block is not supported.  Another section
9906implies that only the address need be zero if the block is not
9907supported.  The code has been changed so that both the address and
9908the length must be non-zero to indicate a valid GPE block (i.e.,
9909if either the address or the length is zero, the GPE block is
9910invalid.)
9911
9912Code and Data Size: Current core subsystem library sizes are shown
9913below.  These are the code and data sizes for the acpica.lib
9914produced by the Microsoft Visual C++ 6.0 compiler, and these
9915values do not include any ACPI driver or OSPM code.  The debug
9916version of the code includes the debug output trace mechanism and
9917has a much larger code and data size.  Note that these values will
9918vary depending on the efficiency of the compiler and the compiler
9919options used during generation.
9920
9921  Previous Release
9922    Non-Debug Version:  71.3K Code,   9.0K Data,   80.3K Total
9923    Debug Version:     152.7K Code,  63.2K Data,  215.5K Total
9924  Current Release:
9925    Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
9926    Debug Version:     152.9K Code,  63.3K Data,  216.2K Total
9927
9928
99292) Linux
9930
9931Cleaned up EC driver. Exported an external EC read/write
9932interface. By going through this, other drivers (most notably
9933sonypi) will be able to serialize access to the EC.
9934
9935
99363) iASL Compiler/Disassembler
9937
9938Implemented support to optionally generate include files for both
9939ASM and C (the -i switch).  This simplifies BIOS development by
9940automatically creating include files that contain external
9941declarations for the symbols that are created within the
9942
9943(optionally generated) ASM and C AML source files.
9944
9945
9946----------------------------------------
994715 November 2002.  Summary of changes for version 20021115.
9948
99491) ACPI CA Core Subsystem:
9950
9951Fixed a memory leak problem where an error during resolution of
9952
9953method arguments during a method invocation from another method
9954failed to cleanup properly by deleting all successfully resolved
9955argument objects.
9956
9957Fixed a problem where the target of the Index() operator was not
9958correctly constructed if the source object was a package.  This
9959problem has not been detected because the use of a target operand
9960with Index() is very rare.
9961
9962Fixed a problem with the Index() operator where an attempt was
9963made to delete the operand objects twice.
9964
9965Fixed a problem where an attempt was made to delete an operand
9966twice during execution of the CondRefOf() operator if the target
9967did not exist.
9968
9969Implemented the first of perhaps several internal create object
9970functions that create and initialize a specific object type.  This
9971consolidates duplicated code wherever the object is created, thus
9972shrinking the size of the subsystem.
9973
9974Implemented improved debug/error messages for errors that occur
9975during nested method invocations.  All executing method pathnames
9976are displayed (with the error) as the call stack is unwound - thus
9977simplifying debug.
9978
9979Fixed a problem introduced in the 10/02 release that caused
9980premature deletion of a buffer object if a buffer was used as an
9981ASL operand where an integer operand is required (Thus causing an
9982implicit object conversion from Buffer to Integer.)  The change in
9983the 10/02 release was attempting to fix a memory leak (albeit
9984incorrectly.)
9985
9986Code and Data Size: Current core subsystem library sizes are shown
9987below.  These are the code and data sizes for the acpica.lib
9988produced by the Microsoft Visual C++ 6.0 compiler, and these
9989values do not include any ACPI driver or OSPM code.  The debug
9990version of the code includes the debug output trace mechanism and
9991has a much larger code and data size.  Note that these values will
9992vary depending on the efficiency of the compiler and the compiler
9993options used during generation.
9994
9995  Previous Release
9996    Non-Debug Version:  71.9K Code,   9.1K Data,   81.0K Total
9997    Debug Version:     153.1K Code,  63.3K Data,  216.4K Total
9998  Current Release:
9999    Non-Debug Version:  71.3K Code,   9.0K Data,   80.3K Total
10000    Debug Version:     152.7K Code,  63.2K Data,  215.5K Total
10001
10002
100032) Linux
10004
10005Changed the implementation of the ACPI semaphores to use down()
10006instead of down_interruptable().  It is important that the
10007execution of ACPI control methods not be interrupted by signals.
10008Methods must run to completion, or the system may be left in an
10009unknown/unstable state.
10010
10011Fixed a compilation error when CONFIG_SOFTWARE_SUSPEND is not set.
10012(Shawn Starr)
10013
10014
100153) iASL Compiler/Disassembler
10016
10017
10018Changed the default location of output files.  All output files
10019are now placed in the current directory by default instead of in
10020the directory of the source file.  This change may affect some
10021existing makefiles, but it brings the behavior of the compiler in
10022line with other similar tools.  The location of the output files
10023can be overridden with the -p command line switch.
10024
10025
10026----------------------------------------
1002711 November 2002.  Summary of changes for version 20021111.
10028
10029
100300) ACPI Specification 2.0B is released and is now available at:
10031http://www.acpi.info/index.html
10032
10033
100341) ACPI CA Core Subsystem:
10035
10036Implemented support for the ACPI 2.0 SMBus Operation Regions.
10037This includes the early detection and handoff of the request to
10038the SMBus region handler (avoiding all of the complex field
10039support code), and support for the bidirectional return packet
10040from an SMBus write operation.  This paves the way for the
10041development of SMBus drivers in each host operating system.
10042
10043Fixed a problem where the semaphore WAIT_FOREVER constant was
10044defined as 32 bits, but must be 16 bits according to the ACPI
10045specification.  This had the side effect of causing ASL
10046Mutex/Event timeouts even though the ASL code requested a wait
10047forever.  Changed all internal references to the ACPI timeout
10048parameter to 16 bits to prevent future problems.  Changed the name
10049of WAIT_FOREVER to ACPI_WAIT_FOREVER.
10050
10051Code and Data Size: Current core subsystem library sizes are shown
10052below.  These are the code and data sizes for the acpica.lib
10053produced by the Microsoft Visual C++ 6.0 compiler, and these
10054values do not include any ACPI driver or OSPM code.  The debug
10055version of the code includes the debug output trace mechanism and
10056has a much larger code and data size.  Note that these values will
10057vary depending on the efficiency of the compiler and the compiler
10058options used during generation.
10059
10060  Previous Release
10061    Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
10062    Debug Version:     152.3K Code,  63.0K Data,  215.3K Total
10063  Current Release:
10064    Non-Debug Version:  71.9K Code,   9.1K Data,   81.0K Total
10065    Debug Version:     153.1K Code,  63.3K Data,  216.4K Total
10066
10067
100682) Linux
10069
10070Module loading/unloading fixes (John Cagle)
10071
10072
100733) iASL Compiler/Disassembler
10074
10075Added support for the SMBBlockProcessCall keyword (ACPI 2.0)
10076
10077Implemented support for the disassembly of all SMBus protocol
10078keywords (SMBQuick, SMBWord, etc.)
10079
10080----------------------------------------
1008101 November 2002.  Summary of changes for version 20021101.
10082
10083
100841) ACPI CA Core Subsystem:
10085
10086Fixed a problem where platforms that have a GPE1 block but no GPE0
10087block were not handled correctly.  This resulted in a "GPE
10088overlap" error message.  GPE0 is no longer required.
10089
10090Removed code added in the previous release that inserted nodes
10091into the namespace in alphabetical order.  This caused some side-
10092effects on various machines.  The root cause of the problem is
10093still under investigation since in theory, the internal ordering
10094of the namespace nodes should not matter.
10095
10096
10097Enhanced error reporting for the case where a named object is not
10098found during control method execution.  The full ACPI namepath
10099(name reference) of the object that was not found is displayed in
10100this case.
10101
10102Note: as a result of the overhaul of the namespace object types in
10103the previous release, the namespace nodes for the predefined
10104scopes (_TZ, _PR, etc.) are now of the type ACPI_TYPE_LOCAL_SCOPE
10105instead of ACPI_TYPE_ANY.  This simplifies the namespace
10106management code but may affect code that walks the namespace tree
10107looking for specific object types.
10108
10109Code and Data Size: Current core subsystem library sizes are shown
10110below.  These are the code and data sizes for the acpica.lib
10111produced by the Microsoft Visual C++ 6.0 compiler, and these
10112values do not include any ACPI driver or OSPM code.  The debug
10113version of the code includes the debug output trace mechanism and
10114has a much larger code and data size.  Note that these values will
10115vary depending on the efficiency of the compiler and the compiler
10116options used during generation.
10117
10118  Previous Release
10119    Non-Debug Version:  70.7K Code,   8.6K Data,   79.3K Total
10120    Debug Version:     151.7K Code,  62.4K Data,  214.1K Total
10121  Current Release:
10122    Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
10123    Debug Version:     152.3K Code,  63.0K Data,  215.3K Total
10124
10125
101262) Linux
10127
10128Fixed a problem introduced in the previous release where the
10129Processor and Thermal objects were not recognized and installed in
10130/proc.  This was related to the scope type change described above.
10131
10132
101333) iASL Compiler/Disassembler
10134
10135Implemented the -g option to get all of the required ACPI tables
10136from the registry and save them to files (Windows version of the
10137compiler only.)  The required tables are the FADT, FACS, and DSDT.
10138
10139Added ACPI table checksum validation during table disassembly in
10140order to catch corrupted tables.
10141
10142
10143----------------------------------------
1014422 October 2002.  Summary of changes for version 20021022.
10145
101461) ACPI CA Core Subsystem:
10147
10148Implemented a restriction on the Scope operator that the target
10149must already exist in the namespace at the time the operator is
10150encountered (during table load or method execution).  In other
10151words, forward references are not allowed and Scope() cannot
10152create a new object. This changes the previous behavior where the
10153interpreter would create the name if not found.  This new behavior
10154correctly enables the search-to-root algorithm during namespace
10155lookup of the target name.  Because of this upsearch, this fixes
10156the known Compaq _SB_.OKEC problem and makes both the AML
10157interpreter and iASL compiler compatible with other ACPI
10158implementations.
10159
10160Completed a major overhaul of the internal ACPI object types for
10161the ACPI Namespace and the associated operand objects.  Many of
10162these types had become obsolete with the introduction of the two-
10163pass namespace load.  This cleanup simplifies the code and makes
10164the entire namespace load mechanism much clearer and easier to
10165understand.
10166
10167Improved debug output for tracking scope opening/closing to help
10168diagnose scoping issues.  The old scope name as well as the new
10169scope name are displayed.  Also improved error messages for
10170problems with ASL Mutex objects and error messages for GPE
10171problems.
10172
10173Cleaned up the namespace dump code, removed obsolete code.
10174
10175All string output (for all namespace/object dumps) now uses the
10176common ACPI string output procedure which handles escapes properly
10177and does not emit non-printable characters.
10178
10179Fixed some issues with constants in the 64-bit version of the
10180local C library (utclib.c)
10181
10182
101832) Linux
10184
10185EC Driver:  No longer attempts to acquire the Global Lock at
10186interrupt level.
10187
10188
101893) iASL Compiler/Disassembler
10190
10191Implemented ACPI 2.0B grammar change that disallows all Type 1 and
101922 opcodes outside of a control method.  This means that the
10193"executable" operators (versus the "namespace" operators) cannot
10194be used at the table level; they can only be used within a control
10195method.
10196
10197Implemented the restriction on the Scope() operator where the
10198target must already exist in the namespace at the time the
10199operator is encountered (during ASL compilation). In other words,
10200forward references are not allowed and Scope() cannot create a new
10201object.  This makes the iASL compiler compatible with other ACPI
10202implementations and makes the Scope() implementation adhere to the
10203ACPI specification.
10204
10205Fixed a problem where namepath optimization for the Alias operator
10206was optimizing the wrong path (of the two namepaths.)  This caused
10207a "Missing alias link" error message.
10208
10209Fixed a problem where an "unknown reserved name" warning could be
10210incorrectly generated for names like "_SB" when the trailing
10211underscore is not used in the original ASL.
10212
10213Fixed a problem where the reserved name check did not handle
10214NamePaths with multiple NameSegs correctly.  The first nameseg of
10215the NamePath was examined instead of the last NameSeg.
10216
10217
10218----------------------------------------
10219
1022002 October 2002.  Summary of changes for this release.
10221
10222
102231) ACPI CA Core Subsystem version 20021002:
10224
10225Fixed a problem where a store/copy of a string to an existing
10226string did not always set the string length properly in the String
10227object.
10228
10229Fixed a reported problem with the ToString operator where the
10230behavior was identical to the ToHexString operator instead of just
10231simply converting a raw buffer to a string data type.
10232
10233Fixed a problem where CopyObject and the other "explicit"
10234conversion operators were not updating the internal namespace node
10235type as part of the store operation.
10236
10237Fixed a memory leak during implicit source operand conversion
10238where the original object was not deleted if it was converted to a
10239new object of a different type.
10240
10241Enhanced error messages for all problems associated with namespace
10242lookups.  Common procedure generates and prints the lookup name as
10243well as the formatted status.
10244
10245Completed implementation of a new design for the Alias support
10246within the namespace.  The existing design did not handle the case
10247where a new object was assigned to one of the two names due to the
10248use of an explicit conversion operator, resulting in the two names
10249pointing to two different objects.  The new design simply points
10250the Alias name to the original name node - not to the object.
10251This results in a level of indirection that must be handled in the
10252name resolution mechanism.
10253
10254Code and Data Size: Current core subsystem library sizes are shown
10255below.  These are the code and data sizes for the acpica.lib
10256produced by the Microsoft Visual C++ 6.0 compiler, and these
10257values do not include any ACPI driver or OSPM code.  The debug
10258version of the code includes the debug output trace mechanism and
10259has a larger code and data size.  Note that these values will vary
10260depending on the efficiency of the compiler and the compiler
10261options used during generation.
10262
10263  Previous Release
10264    Non-Debug Version:  69.6K Code,   8.3K Data,   77.9K Total
10265    Debug Version:     150.0K Code,  61.7K Data,  211.7K Total
10266  Current Release:
10267    Non-Debug Version:  70.7K Code,   8.6K Data,   79.3K Total
10268    Debug Version:     151.7K Code,  62.4K Data,  214.1K Total
10269
10270
102712) Linux
10272
10273Initialize thermal driver's timer before it is used. (Knut
10274Neumann)
10275
10276Allow handling negative celsius values. (Kochi Takayoshi)
10277
10278Fix thermal management and make trip points. R/W (Pavel Machek)
10279
10280Fix /proc/acpi/sleep. (P. Christeas)
10281
10282IA64 fixes. (David Mosberger)
10283
10284Fix reversed logic in blacklist code. (Sergio Monteiro Basto)
10285
10286Replace ACPI_DEBUG define with ACPI_DEBUG_OUTPUT. (Dominik
10287Brodowski)
10288
10289
102903) iASL Compiler/Disassembler
10291
10292Clarified some warning/error messages.
10293
10294
10295----------------------------------------
1029618 September 2002.  Summary of changes for this release.
10297
10298
102991) ACPI CA Core Subsystem version 20020918:
10300
10301Fixed a reported problem with reference chaining (via the Index()
10302and RefOf() operators) in the ObjectType() and SizeOf() operators.
10303The definition of these operators includes the dereferencing of
10304all chained references to return information on the base object.
10305
10306Fixed a problem with stores to indexed package elements - the
10307existing code would not complete the store if an "implicit
10308conversion" was not performed.  In other words, if the existing
10309object (package element) was to be replaced completely, the code
10310didn't handle this case.
10311
10312Relaxed typechecking on the ASL "Scope" operator to allow the
10313target name to refer to an object of type Integer, String, or
10314Buffer, in addition to the scoping object types (Device,
10315predefined Scopes, Processor, PowerResource, and ThermalZone.)
10316This allows existing AML code that has workarounds for a bug in
10317Windows to function properly.  A warning is issued, however.  This
10318affects both the AML interpreter and the iASL compiler. Below is
10319an example of this type of ASL code:
10320
10321      Name(DEB,0x00)
10322      Scope(DEB)
10323      {
10324
10325Fixed some reported problems with 64-bit integer support in the
10326local implementation of C library functions (clib.c)
10327
10328
103292) Linux
10330
10331Use ACPI fix map region instead of IOAPIC region, since it is
10332undefined in non-SMP.
10333
10334Ensure that the SCI has the proper polarity and trigger, even on
10335systems that do not have an interrupt override entry in the MADT.
10336
103372.5 big driver reorganization (Pat Mochel)
10338
10339Use early table mapping code from acpitable.c (Andi Kleen)
10340
10341New blacklist entries (Andi Kleen)
10342
10343Blacklist improvements. Split blacklist code out into a separate
10344file. Move checking the blacklist to very early. Previously, we
10345would use ACPI tables, and then halfway through init, check the
10346blacklist -- too late. Now, it's early enough to completely fall-
10347back to non-ACPI.
10348
10349
103503) iASL Compiler/Disassembler version 20020918:
10351
10352Fixed a problem where the typechecking code didn't know that an
10353alias could point to a method.  In other words, aliases were not
10354being dereferenced during typechecking.
10355
10356
10357----------------------------------------
1035829 August 2002.  Summary of changes for this release.
10359
103601) ACPI CA Core Subsystem Version 20020829:
10361
10362If the target of a Scope() operator already exists, it must be an
10363object type that actually opens a scope -- such as a Device,
10364Method, Scope, etc.  This is a fatal runtime error.  Similar error
10365check has been added to the iASL compiler also.
10366
10367Tightened up the namespace load to disallow multiple names in the
10368same scope.  This previously was allowed if both objects were of
10369the same type.  (i.e., a lookup was the same as entering a new
10370name).
10371
10372
103732) Linux
10374
10375Ensure that the ACPI interrupt has the proper trigger and
10376polarity.
10377
10378local_irq_disable is extraneous. (Matthew Wilcox)
10379
10380Make "acpi=off" actually do what it says, and not use the ACPI
10381interpreter *or* the tables.
10382
10383Added arch-neutral support for parsing SLIT and SRAT tables (Kochi
10384Takayoshi)
10385
10386
103873) iASL Compiler/Disassembler  Version 20020829:
10388
10389Implemented namepath optimization for name declarations.  For
10390example, a declaration like "Method (\_SB_.ABCD)" would get
10391optimized to "Method (ABCD)" if the declaration is within the
10392\_SB_ scope.  This optimization is in addition to the named
10393reference path optimization first released in the previous
10394version. This would seem to complete all possible optimizations
10395for namepaths within the ASL/AML.
10396
10397If the target of a Scope() operator already exists, it must be an
10398object type that actually opens a scope -- such as a Device,
10399Method, Scope, etc.
10400
10401Implemented a check and warning for unreachable code in the same
10402block below a Return() statement.
10403
10404Fixed a problem where the listing file was not generated if the
10405compiler aborted if the maximum error count was exceeded (200).
10406
10407Fixed a problem where the typechecking of method return values was
10408broken.  This includes the check for a return value when the
10409method is invoked as a TermArg (a return value is expected.)
10410
10411Fixed a reported problem where EOF conditions during a quoted
10412string or comment caused a fault.
10413
10414
10415----------------------------------------
1041615 August 2002.  Summary of changes for this release.
10417
104181) ACPI CA Core Subsystem Version 20020815:
10419
10420Fixed a reported problem where a Store to a method argument that
10421contains a reference did not perform the indirect store correctly.
10422This problem was created during the conversion to the new
10423reference object model - the indirect store to a method argument
10424code was not updated to reflect the new model.
10425
10426Reworked the ACPI mode change code to better conform to ACPI 2.0,
10427handle corner cases, and improve code legibility (Kochi Takayoshi)
10428
10429Fixed a problem with the pathname parsing for the carat (^)
10430prefix.  The heavy use of the carat operator by the new namepath
10431optimization in the iASL compiler uncovered a problem with the AML
10432interpreter handling of this prefix.  In the case where one or
10433more carats precede a single nameseg, the nameseg was treated as
10434standalone and the search rule (to root) was inadvertently
10435applied.  This could cause both the iASL compiler and the
10436interpreter to find the wrong object or to miss the error that
10437should occur if the object does not exist at that exact pathname.
10438
10439Found and fixed the problem where the HP Pavilion DSDT would not
10440load.  This was a relatively minor tweak to the table loading code
10441(a problem caused by the unexpected encounter with a method
10442invocation not within a control method), but it does not solve the
10443overall issue of the execution of AML code at the table level.
10444This investigation is still ongoing.
10445
10446Code and Data Size: Current core subsystem library sizes are shown
10447below.  These are the code and data sizes for the acpica.lib
10448produced by the Microsoft Visual C++ 6.0 compiler, and these
10449values do not include any ACPI driver or OSPM code.  The debug
10450version of the code includes the debug output trace mechanism and
10451has a larger code and data size.  Note that these values will vary
10452depending on the efficiency of the compiler and the compiler
10453options used during generation.
10454
10455  Previous Release
10456    Non-Debug Version:  69.1K Code,   8.2K Data,   77.3K Total
10457    Debug Version:     149.4K Code,  61.6K Data,  211.0K Total
10458  Current Release:
10459    Non-Debug Version:  69.6K Code,   8.3K Data,   77.9K Total
10460    Debug Version:     150.0K Code,  61.7K Data,  211.7K Total
10461
10462
104632) Linux
10464
10465Remove redundant slab.h include (Brad Hards)
10466
10467Fix several bugs in thermal.c (Herbert Nachtnebel)
10468
10469Make CONFIG_ACPI_BOOT work properly (Pavel Machek)
10470
10471Change acpi_system_suspend to use updated irq functions (Pavel
10472Machek)
10473
10474Export acpi_get_firmware_table (Matthew Wilcox)
10475
10476Use proper root proc entry for ACPI (Kochi Takayoshi)
10477
10478Fix early-boot table parsing (Bjorn Helgaas)
10479
10480
104813) iASL Compiler/Disassembler
10482
10483Reworked the compiler options to make them more consistent and to
10484use two-letter options where appropriate.  We were running out of
10485sensible letters.   This may break some makefiles, so check the
10486current options list by invoking the compiler with no parameters.
10487
10488Completed the design and implementation of the ASL namepath
10489optimization option for the compiler.  This option optimizes all
10490references to named objects to the shortest possible path.  The
10491first attempt tries to utilize a single nameseg (4 characters) and
10492the "search-to-root" algorithm used by the interpreter.  If that
10493cannot be used (because either the name is not in the search path
10494or there is a conflict with another object with the same name),
10495the pathname is optimized using the carat prefix (usually a
10496shorter string than specifying the entire path from the root.)
10497
10498Implemented support to obtain the DSDT from the Windows registry
10499(when the disassembly option is specified with no input file).
10500Added this code as the implementation for AcpiOsTableOverride in
10501the Windows OSL.  Migrated the 16-bit code (used in the AcpiDump
10502utility) to scan memory for the DSDT to the AcpiOsTableOverride
10503function in the DOS OSL to make the disassembler truly OS
10504independent.
10505
10506Implemented a new option to disassemble and compile in one step.
10507When used without an input filename, this option will grab the
10508DSDT from the local machine, disassemble it, and compile it in one
10509step.
10510
10511Added a warning message for invalid escapes (a backslash followed
10512by any character other than the allowable escapes).  This catches
10513the quoted string error "\_SB_" (which should be "\\_SB_" ).
10514
10515Also, there are numerous instances in the ACPI specification where
10516this error occurs.
10517
10518Added a compiler option to disable all optimizations.  This is
10519basically the "compatibility mode" because by using this option,
10520the AML code will come out exactly the same as other ASL
10521compilers.
10522
10523Added error messages for incorrectly ordered dependent resource
10524functions.  This includes: missing EndDependentFn macro at end of
10525dependent resource list, nested dependent function macros (both
10526start and end), and missing StartDependentFn macro.  These are
10527common errors that should be caught at compile time.
10528
10529Implemented _OSI support for the disassembler and compiler.  _OSI
10530must be included in the namespace for proper disassembly (because
10531the disassembler must know the number of arguments.)
10532
10533Added an "optimization" message type that is optional (off by
10534default).  This message is used for all optimizations - including
10535constant folding, integer optimization, and namepath optimization.
10536
10537----------------------------------------
1053825 July 2002.  Summary of changes for this release.
10539
10540
105411) ACPI CA Core Subsystem Version 20020725:
10542
10543The AML Disassembler has been enhanced to produce compilable ASL
10544code and has been integrated into the iASL compiler (see below) as
10545well as the single-step disassembly for the AML debugger and the
10546disassembler for the AcpiDump utility.  All ACPI 2.0A opcodes,
10547resource templates and macros are fully supported.  The
10548disassembler has been tested on over 30 different AML files,
10549producing identical AML when the resulting disassembled ASL file
10550is recompiled with the same ASL compiler.
10551
10552Modified the Resource Manager to allow zero interrupts and zero
10553dma channels during the GetCurrentResources call.  This was
10554causing problems on some platforms.
10555
10556Added the AcpiOsRedirectOutput interface to the OSL to simplify
10557output redirection for the AcpiOsPrintf and AcpiOsVprintf
10558interfaces.
10559
10560Code and Data Size: Current core subsystem library sizes are shown
10561below.  These are the code and data sizes for the acpica.lib
10562produced by the Microsoft Visual C++ 6.0 compiler, and these
10563values do not include any ACPI driver or OSPM code.  The debug
10564version of the code includes the debug output trace mechanism and
10565has a larger code and data size.  Note that these values will vary
10566depending on the efficiency of the compiler and the compiler
10567options used during generation.
10568
10569  Previous Release
10570    Non-Debug Version:  68.7K Code,   7.4K Data,   76.1K Total
10571    Debug Version:     142.9K Code,  58.7K Data,  201.6K Total
10572  Current Release:
10573    Non-Debug Version:  69.1K Code,   8.2K Data,   77.3K Total
10574    Debug Version:     149.4K Code,  61.6K Data,  211.0K Total
10575
10576
105772) Linux
10578
10579Fixed a panic in the EC driver (Dominik Brodowski)
10580
10581Implemented checksum of the R/XSDT itself during Linux table scan
10582(Richard Schaal)
10583
10584
105853) iASL compiler
10586
10587The AML disassembler is integrated into the compiler.  The "-d"
10588option invokes the disassembler  to completely disassemble an
10589input AML file, producing as output a text ASL file with the
10590extension ".dsl" (to avoid name collisions with existing .asl
10591source files.)  A future enhancement will allow the disassembler
10592to obtain the BIOS DSDT from the registry under Windows.
10593
10594Fixed a problem with the VendorShort and VendorLong resource
10595descriptors where an invalid AML sequence was created.
10596
10597Implemented a fix for BufferData term in the ASL parser.  It was
10598inadvertently defined twice, allowing invalid syntax to pass and
10599causing reduction conflicts.
10600
10601Fixed a problem where the Ones opcode could get converted to a
10602value of zero if "Ones" was used where a byte, word or dword value
10603was expected.  The 64-bit value is now truncated to the correct
10604size with the correct value.
10605
10606
10607
10608----------------------------------------
1060902 July 2002.  Summary of changes for this release.
10610
10611
106121) ACPI CA Core Subsystem Version 20020702:
10613
10614The Table Manager code has been restructured to add several new
10615features.  Tables that are not required by the core subsystem
10616(other than the FADT, DSDT, FACS, PSDTs, etc.) are no longer
10617validated in any way and are returned from AcpiGetFirmwareTable if
10618requested.  The AcpiOsTableOverride interface is now called for
10619each table that is loaded by the subsystem in order to allow the
10620host to override any table it chooses.  Previously, only the DSDT
10621could be overridden.  Added one new files, tbrsdt.c and
10622tbgetall.c.
10623
10624Fixed a problem with the conversion of internal package objects to
10625external objects (when a package is returned from a control
10626method.)  The return buffer length was set to zero instead of the
10627proper length of the package object.
10628
10629Fixed a reported problem with the use of the RefOf and DeRefOf
10630operators when passing reference arguments to control methods.  A
10631new type of Reference object is used internally for references
10632produced by the RefOf operator.
10633
10634Added additional error messages in the Resource Manager to explain
10635AE_BAD_DATA errors when they occur during resource parsing.
10636
10637Split the AcpiEnableSubsystem into two primitives to enable a
10638finer granularity initialization sequence.  These two calls should
10639be called in this order: AcpiEnableSubsystem (flags),
10640AcpiInitializeObjects (flags).  The flags parameter remains the
10641same.
10642
10643
106442) Linux
10645
10646Updated the ACPI utilities module to understand the new style of
10647fully resolved package objects that are now returned from the core
10648subsystem.  This eliminates errors of the form:
10649
10650    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PPB_._PRT]
10651    acpi_utils-0430 [145] acpi_evaluate_reference:
10652        Invalid element in package (not a device reference)
10653
10654The method evaluation utility uses the new buffer allocation
10655scheme instead of calling AcpiEvaluate Object twice.
10656
10657Added support for ECDT. This allows the use of the Embedded
10658
10659Controller before the namespace has been fully initialized, which
10660is necessary for ACPI 2.0 support, and for some laptops to
10661initialize properly. (Laptops using ECDT are still rare, so only
10662limited testing was performed of the added functionality.)
10663
10664Fixed memory leaks in the EC driver.
10665
10666Eliminated a brittle code structure in acpi_bus_init().
10667
10668Eliminated the acpi_evaluate() helper function in utils.c. It is
10669no longer needed since acpi_evaluate_object can optionally
10670allocate memory for the return object.
10671
10672Implemented fix for keyboard hang when getting battery readings on
10673some systems (Stephen White)
10674
10675PCI IRQ routing update (Dominik Brodowski)
10676
10677Fix an ifdef to allow compilation on UP with LAPIC but no IOAPIC
10678support
10679
10680----------------------------------------
1068111 June 2002.  Summary of changes for this release.
10682
10683
106841) ACPI CA Core Subsystem Version 20020611:
10685
10686Fixed a reported problem where constants such as Zero and One
10687appearing within _PRT packages were not handled correctly within
10688the resource manager code.  Originally reported against the ASL
10689compiler because the code generator now optimizes integers to
10690their minimal AML representation (i.e. AML constants if possible.)
10691The _PRT code now handles all AML constant opcodes correctly
10692(Zero, One, Ones, Revision).
10693
10694Fixed a problem with the Concatenate operator in the AML
10695interpreter where a buffer result object was incorrectly marked as
10696not fully evaluated, causing a run-time error of AE_AML_INTERNAL.
10697
10698All package sub-objects are now fully resolved before they are
10699returned from the external ACPI interfaces.  This means that name
10700strings are resolved to object handles, and constant operators
10701(Zero, One, Ones, Revision) are resolved to Integers.
10702
10703Implemented immediate resolution of the AML Constant opcodes
10704(Zero, One, Ones, Revision) to Integer objects upon detection
10705within the AML stream. This has simplified and reduced the
10706generated code size of the subsystem by eliminating about 10
10707switch statements for these constants (which previously were
10708contained in Reference objects.)  The complicating issues are that
10709the Zero opcode is used as a "placeholder" for unspecified
10710optional target operands and stores to constants are defined to be
10711no-ops.
10712
10713Code and Data Size: Current core subsystem library sizes are shown
10714below. These are the code and data sizes for the acpica.lib
10715produced by the Microsoft Visual C++ 6.0 compiler, and these
10716values do not include any ACPI driver or OSPM code.  The debug
10717version of the code includes the debug output trace mechanism and
10718has a larger code and data size.  Note that these values will vary
10719depending on the efficiency of the compiler and the compiler
10720options used during generation.
10721
10722  Previous Release
10723    Non-Debug Version:  69.3K Code,   7.4K Data,   76.7K Total
10724    Debug Version:     143.8K Code,  58.8K Data,  202.6K Total
10725  Current Release:
10726    Non-Debug Version:  68.7K Code,   7.4K Data,   76.1K Total
10727    Debug Version:     142.9K Code,  58.7K Data,  201.6K Total
10728
10729
107302) Linux
10731
10732
10733Added preliminary support for obtaining _TRA data for PCI root
10734bridges (Bjorn Helgaas).
10735
10736
107373) iASL Compiler Version X2046:
10738
10739Fixed a problem where the "_DDN" reserved name was defined to be a
10740control method with one argument.  There are no arguments, and
10741_DDN does not have to be a control method.
10742
10743Fixed a problem with the Linux version of the compiler where the
10744source lines printed with error messages were the wrong lines.
10745This turned out to be the "LF versus CR/LF" difference between
10746Windows and Unix.  This appears to be the longstanding issue
10747concerning listing output and error messages.
10748
10749Fixed a problem with the Linux version of compiler where opcode
10750names within error messages were wrong.  This was caused by a
10751slight difference in the output of the Flex tool on Linux versus
10752Windows.
10753
10754Fixed a problem with the Linux compiler where the hex output files
10755contained some garbage data caused by an internal buffer overrun.
10756
10757
10758----------------------------------------
1075917 May 2002.  Summary of changes for this release.
10760
10761
107621) ACPI CA Core Subsystem Version 20020517:
10763
10764Implemented a workaround to an BIOS bug discovered on the HP
10765OmniBook where the FADT revision number and the table size are
10766inconsistent (ACPI 2.0 revision vs. ACPI 1.0 table size).  The new
10767behavior is to fallback to using only the ACPI 1.0 fields of the
10768FADT if the table is too small to be a ACPI 2.0 table as claimed
10769by the revision number.  Although this is a BIOS bug, this is a
10770case where the workaround is simple enough and with no side
10771effects, so it seemed prudent to add it.  A warning message is
10772issued, however.
10773
10774Implemented minimum size checks for the fixed-length ACPI tables -
10775- the FADT and FACS, as well as consistency checks between the
10776revision number and the table size.
10777
10778Fixed a reported problem in the table override support where the
10779new table pointer was incorrectly treated as a physical address
10780instead of a logical address.
10781
10782Eliminated the use of the AE_AML_ERROR exception and replaced it
10783with more descriptive codes.
10784
10785Fixed a problem where an exception would occur if an ASL Field was
10786defined with no named Field Units underneath it (used by some
10787index fields).
10788
10789Code and Data Size: Current core subsystem library sizes are shown
10790below.  These are the code and data sizes for the acpica.lib
10791produced by the Microsoft Visual C++ 6.0 compiler, and these
10792values do not include any ACPI driver or OSPM code.  The debug
10793version of the code includes the debug output trace mechanism and
10794has a larger code and data size.  Note that these values will vary
10795depending on the efficiency of the compiler and the compiler
10796options used during generation.
10797
10798  Previous Release
10799    Non-Debug Version:  68.8K Code,   7.1K Data,   75.9K Total
10800    Debug Version:     142.9K Code,  58.4K Data,  201.3K Total
10801  Current Release:
10802    Non-Debug Version:  69.3K Code,   7.4K Data,   76.7K Total
10803    Debug Version:     143.8K Code,  58.8K Data,  202.6K Total
10804
10805
10806
108072) Linux
10808
10809Much work done on ACPI init (MADT and PCI IRQ routing support).
10810(Paul D. and Dominik Brodowski)
10811
10812Fix PCI IRQ-related panic on boot (Sam Revitch)
10813
10814Set BM_ARB_DIS when entering a sleep state (Ducrot Bruno)
10815
10816Fix "MHz" typo (Dominik Brodowski)
10817
10818Fix RTC year 2000 issue (Dominik Brodowski)
10819
10820Preclude multiple button proc entries (Eric Brunet)
10821
10822Moved arch-specific code out of include/platform/aclinux.h
10823
108243) iASL Compiler Version X2044:
10825
10826Implemented error checking for the string used in the EISAID macro
10827(Usually used in the definition of the _HID object.)  The code now
10828strictly enforces the PnP format - exactly 7 characters, 3
10829uppercase letters and 4 hex digits.
10830
10831If a raw string is used in the definition of the _HID object
10832(instead of the EISAID macro), the string must contain all
10833alphanumeric characters (e.g., "*PNP0011" is not allowed because
10834of the asterisk.)
10835
10836Implemented checking for invalid use of ACPI reserved names for
10837most of the name creation operators (Name, Device, Event, Mutex,
10838OperationRegion, PowerResource, Processor, and ThermalZone.)
10839Previously, this check was only performed for control methods.
10840
10841Implemented an additional check on the Name operator to emit an
10842error if a reserved name that must be implemented in ASL as a
10843control method is used.  We know that a reserved name must be a
10844method if it is defined with input arguments.
10845
10846The warning emitted when a namespace object reference is not found
10847during the cross reference phase has been changed into an error.
10848The "External" directive should be used for names defined in other
10849modules.
10850
10851
108524) Tools and Utilities
10853
10854The 16-bit tools (adump16 and aexec16) have been regenerated and
10855tested.
10856
10857Fixed a problem with the output of both acpidump and adump16 where
10858the indentation of closing parentheses and brackets was not
10859
10860aligned properly with the parent block.
10861
10862
10863----------------------------------------
1086403 May 2002.  Summary of changes for this release.
10865
10866
108671) ACPI CA Core Subsystem Version 20020503:
10868
10869Added support a new OSL interface that allows the host operating
10870
10871system software to override the DSDT found in the firmware -
10872AcpiOsTableOverride.  With this interface, the OSL can examine the
10873version of the firmware DSDT and replace it with a different one
10874if desired.
10875
10876Added new external interfaces for accessing ACPI registers from
10877device drivers and other system software - AcpiGetRegister and
10878AcpiSetRegister.  This was simply an externalization of the
10879existing AcpiHwBitRegister interfaces.
10880
10881Fixed a regression introduced in the previous build where the
10882ASL/AML CreateField operator always returned an error,
10883"destination must be a NS Node".
10884
10885Extended the maximum time (before failure) to successfully enable
10886ACPI mode to 3 seconds.
10887
10888Code and Data Size: Current core subsystem library sizes are shown
10889below.  These are the code and data sizes for the acpica.lib
10890produced by the Microsoft Visual C++ 6.0 compiler, and these
10891values do not include any ACPI driver or OSPM code.  The debug
10892version of the code includes the debug output trace mechanism and
10893has a larger code and data size.  Note that these values will vary
10894depending on the efficiency of the compiler and the compiler
10895options used during generation.
10896
10897  Previous Release
10898    Non-Debug Version:  68.5K Code,   7.0K Data,   75.5K Total
10899    Debug Version:     142.4K Code,  58.3K Data,  200.7K Total
10900  Current Release:
10901    Non-Debug Version:  68.8K Code,   7.1K Data,   75.9K Total
10902    Debug Version:     142.9K Code,  58.4K Data,  201.3K Total
10903
10904
109052) Linux
10906
10907Enhanced ACPI init code for SMP. We are now fully MPS and $PIR-
10908free. While 3 out of 4 of our in-house systems work fine, the last
10909one still hangs when testing the LAPIC timer.
10910
10911Renamed many files in 2.5 kernel release to omit "acpi_" from the
10912name.
10913
10914Added warning on boot for Presario 711FR.
10915
10916Sleep improvements (Pavel Machek)
10917
10918ACPI can now be built without CONFIG_PCI enabled.
10919
10920IA64: Fixed memory map functions (JI Lee)
10921
10922
109233) iASL Compiler Version X2043:
10924
10925Added support to allow the compiler to be integrated into the MS
10926VC++ development environment for one-button compilation of single
10927files or entire projects -- with error-to-source-line mapping.
10928
10929Implemented support for compile-time constant folding for the
10930Type3, Type4, and Type5 opcodes first defined in the ACPI 2.0
10931specification.  This allows the ASL writer to use expressions
10932instead of Integer/Buffer/String constants in terms that must
10933evaluate to constants at compile time and will also simplify the
10934emitted AML in any such sub-expressions that can be folded
10935(evaluated at compile-time.)  This increases the size of the
10936compiler significantly because a portion of the ACPI CA AML
10937interpreter is included within the compiler in order to pre-
10938evaluate constant expressions.
10939
10940
10941Fixed a problem with the "Unicode" ASL macro that caused the
10942compiler to fault.  (This macro is used in conjunction with the
10943_STR reserved name.)
10944
10945Implemented an AML opcode optimization to use the Zero, One, and
10946Ones opcodes where possible to further reduce the size of integer
10947constants and thus reduce the overall size of the generated AML
10948code.
10949
10950Implemented error checking for new reserved terms for ACPI version
109512.0A.
10952
10953Implemented the -qr option to display the current list of ACPI
10954reserved names known to the compiler.
10955
10956Implemented the -qc option to display the current list of ASL
10957operators that are allowed within constant expressions and can
10958therefore be folded at compile time if the operands are constants.
10959
10960
109614) Documentation
10962
10963Updated the Programmer's Reference for new interfaces, data types,
10964and memory allocation model options.
10965
10966Updated the iASL Compiler User Reference to apply new format and
10967add information about new features and options.
10968
10969----------------------------------------
1097019 April 2002.  Summary of changes for this release.
10971
109721) ACPI CA Core Subsystem Version 20020419:
10973
10974The source code base for the Core Subsystem has been completely
10975cleaned with PC-lint (FlexLint) for both 32-bit and 64-bit
10976versions.  The Lint option files used are included in the
10977/acpi/generate/lint directory.
10978
10979Implemented enhanced status/error checking across the entire
10980Hardware manager subsystem.  Any hardware errors (reported from
10981the OSL) are now bubbled up and will abort a running control
10982method.
10983
10984
10985Fixed a problem where the per-ACPI-table integer width (32 or 64)
10986was stored only with control method nodes, causing a fault when
10987non-control method code was executed during table loading.  The
10988solution implemented uses a global variable to indicate table
10989width across the entire ACPI subsystem.  Therefore, ACPI CA does
10990not support mixed integer widths across different ACPI tables
10991(DSDT, SSDT).
10992
10993Fixed a problem where NULL extended fields (X fields) in an ACPI
109942.0 ACPI FADT caused the table load to fail.  Although the
10995existing ACPI specification is a bit fuzzy on this topic, the new
10996behavior is to fall back on a ACPI 1.0 field if the corresponding
10997ACPI 2.0 X field is zero (even though the table revision indicates
10998a full ACPI 2.0 table.)  The ACPI specification will be updated to
10999clarify this issue.
11000
11001Fixed a problem with the SystemMemory operation region handler
11002where memory was always accessed byte-wise even if the AML-
11003specified access width was larger than a byte.  This caused
11004problems on systems with memory-mapped I/O.  Memory is now
11005accessed with the width specified.  On systems that do not support
11006non-aligned transfers, a check is made to guarantee proper address
11007alignment before proceeding in order to avoid an AML-caused
11008alignment fault within the kernel.
11009
11010
11011Fixed a problem with the ExtendedIrq resource where only one byte
11012of the 4-byte Irq field was extracted.
11013
11014Fixed the AcpiExDigitsNeeded() procedure to support _UID.  This
11015function was out of date and required a rewrite.
11016
11017Code and Data Size: Current core subsystem library sizes are shown
11018below.  These are the code and data sizes for the acpica.lib
11019produced by the Microsoft Visual C++ 6.0 compiler, and these
11020values do not include any ACPI driver or OSPM code.  The debug
11021version of the code includes the debug output trace mechanism and
11022has a larger code and data size.  Note that these values will vary
11023depending on the efficiency of the compiler and the compiler
11024options used during generation.
11025
11026  Previous Release
11027    Non-Debug Version:  66.6K Code,   6.5K Data,   73.1K Total
11028    Debug Version:     139.8K Code,  57.4K Data,  197.2K Total
11029  Current Release:
11030    Non-Debug Version:  68.5K Code,   7.0K Data,   75.5K Total
11031    Debug Version:     142.4K Code,  58.3K Data,  200.7K Total
11032
11033
110342) Linux
11035
11036PCI IRQ routing fixes (Dominik Brodowski)
11037
11038
110393) iASL Compiler Version X2042:
11040
11041Implemented an additional compile-time error check for a field
11042unit whose size + minimum access width would cause a run-time
11043access beyond the end-of-region.  Previously, only the field size
11044itself was checked.
11045
11046The Core subsystem and iASL compiler now share a common parse
11047object in preparation for compile-time evaluation of the type
110483/4/5 ASL operators.
11049
11050
11051----------------------------------------
11052Summary of changes for this release: 03_29_02
11053
110541) ACPI CA Core Subsystem Version 20020329:
11055
11056Implemented support for late evaluation of TermArg operands to
11057Buffer and Package objects.  This allows complex expressions to be
11058used in the declarations of these object types.
11059
11060Fixed an ACPI 1.0 compatibility issue when reading Fields. In ACPI
110611.0, if the field was larger than 32 bits, it was returned as a
11062buffer - otherwise it was returned as an integer.  In ACPI 2.0,
11063the field is returned as a buffer only if the field is larger than
1106464 bits.  The TableRevision is now considered when making this
11065conversion to avoid incompatibility with existing ASL code.
11066
11067Implemented logical addressing for AcpiOsGetRootPointer.  This
11068allows an RSDP with either a logical or physical address.  With
11069this support, the host OS can now override all ACPI tables with
11070one logical RSDP.  Includes implementation of  "typed" pointer
11071support to allow a common data type for both physical and logical
11072pointers internally.  This required a change to the
11073AcpiOsGetRootPointer interface.
11074
11075Implemented the use of ACPI 2.0 Generic Address Structures for all
11076GPE, Fixed Event, and PM Timer I/O.  This allows the use of memory
11077mapped I/O for these ACPI features.
11078
11079Initialization now ignores not only non-required tables (All
11080tables other than the FADT, FACS, DSDT, and SSDTs), but also does
11081not validate the table headers of unrecognized tables.
11082
11083Fixed a problem where a notify handler could only be
11084installed/removed on an object of type Device.  All "notify"
11085
11086objects are now supported -- Devices, Processor, Power, and
11087Thermal.
11088
11089Removed most verbosity from the ACPI_DB_INFO debug level.  Only
11090critical information is returned when this debug level is enabled.
11091
11092Code and Data Size: Current core subsystem library sizes are shown
11093below.  These are the code and data sizes for the acpica.lib
11094produced by the Microsoft Visual C++ 6.0 compiler, and these
11095values do not include any ACPI driver or OSPM code.  The debug
11096version of the code includes the debug output trace mechanism and
11097has a larger code and data size.  Note that these values will vary
11098depending on the efficiency of the compiler and the compiler
11099options used during generation.
11100
11101  Previous Release
11102    Non-Debug Version:  65.4K Code,   6.2K Data,   71.6K Total
11103    Debug Version:     138.0K Code,  56.6K Data,  194.6K Total
11104  Current Release:
11105    Non-Debug Version:  66.6K Code,   6.5K Data,   73.1K Total
11106    Debug Version:     139.8K Code,  57.4K Data,  197.2K Total
11107
11108
111092) Linux:
11110
11111The processor driver (acpi_processor.c) now fully supports ACPI
111122.0-based processor performance control (e.g. Intel(R)
11113SpeedStep(TM) technology) Note that older laptops that only have
11114the Intel "applet" interface are not supported through this.  The
11115'limit' and 'performance' interface (/proc) are fully functional.
11116[Note that basic policy for controlling performance state
11117transitions will be included in the next version of ospmd.]  The
11118idle handler was modified to more aggressively use C2, and PIIX4
11119errata handling underwent a complete overhaul (big thanks to
11120Dominik Brodowski).
11121
11122Added support for ACPI-PCI device binding (acpi_pci_root.c). _ADR-
11123based devices in the ACPI namespace are now dynamically bound
11124(associated) with their PCI counterparts (e.g. PCI1->01:00.0).
11125This allows, among other things, ACPI to resolve bus numbers for
11126subordinate PCI bridges.
11127
11128Enhanced PCI IRQ routing to get the proper bus number for _PRT
11129entries defined underneath PCI bridges.
11130
11131Added IBM 600E to bad bios list due to invalid _ADR value for
11132PIIX4 PCI-ISA bridge, resulting in improper PCI IRQ routing.
11133
11134In the process of adding full MADT support (e.g. IOAPIC) for IA32
11135(acpi.c, mpparse.c) -- stay tuned.
11136
11137Added back visual differentiation between fixed-feature and
11138control-method buttons in dmesg.  Buttons are also subtyped (e.g.
11139button/power/PWRF) to simplify button identification.
11140
11141We no longer use -Wno-unused when compiling debug. Please ignore
11142any "_THIS_MODULE defined but not used" messages.
11143
11144Can now shut down the system using "magic sysrq" key.
11145
11146
111473) iASL Compiler version 2041:
11148
11149Fixed a problem where conversion errors for hex/octal/decimal
11150constants were not reported.
11151
11152Implemented a fix for the General Register template Address field.
11153This field was 8 bits when it should be 64.
11154
11155Fixed a problem where errors/warnings were no longer being emitted
11156within the listing output file.
11157
11158Implemented the ACPI 2.0A restriction on ACPI Table Signatures to
11159exactly 4 characters, alphanumeric only.
11160
11161
11162
11163
11164----------------------------------------
11165Summary of changes for this release: 03_08_02
11166
11167
111681) ACPI CA Core Subsystem Version 20020308:
11169
11170Fixed a problem with AML Fields where the use of the "AccessAny"
11171keyword could cause an interpreter error due to attempting to read
11172or write beyond the end of the parent Operation Region.
11173
11174Fixed a problem in the SystemMemory Operation Region handler where
11175an attempt was made to map memory beyond the end of the region.
11176This was the root cause of the "AE_ERROR" and "AE_NO_MEMORY"
11177errors on some Linux systems.
11178
11179Fixed a problem where the interpreter/namespace "search to root"
11180algorithm was not functioning for some object types.  Relaxed the
11181internal restriction on the search to allow upsearches for all
11182external object types as well as most internal types.
11183
11184
111852) Linux:
11186
11187We now use safe_halt() macro versus individual calls to sti | hlt.
11188
11189Writing to the processor limit interface should now work. "echo 1"
11190will increase the limit, 2 will decrease, and 0 will reset to the
11191
11192default.
11193
11194
111953) ASL compiler:
11196
11197Fixed segfault on Linux version.
11198
11199
11200----------------------------------------
11201Summary of changes for this release: 02_25_02
11202
112031) ACPI CA Core Subsystem:
11204
11205
11206Fixed a problem where the GPE bit masks were not initialized
11207properly, causing erratic GPE behavior.
11208
11209Implemented limited support for multiple calling conventions.  The
11210code can be generated with either the VPL (variable parameter
11211list, or "C") convention, or the FPL (fixed parameter list, or
11212"Pascal") convention.  The core subsystem is about 3.4% smaller
11213when generated with FPL.
11214
11215
112162) Linux
11217
11218Re-add some /proc/acpi/event functionality that was lost during
11219the rewrite
11220
11221Resolved issue with /proc events for fixed-feature buttons showing
11222up as the system device.
11223
11224Fixed checks on C2/C3 latencies to be inclusive of maximum values.
11225
11226Replaced AE_ERRORs in acpi_osl.c with more specific error codes.
11227
11228Changed ACPI PRT option from "pci=noacpi-routing" to "pci=noacpi"
11229
11230Fixed limit interface & usage to fix bugs with passive cooling
11231hysterisis.
11232
11233Restructured PRT support.
11234
11235
11236----------------------------------------
11237Summary of changes for this label: 02_14_02
11238
11239
112401) ACPI CA Core Subsystem:
11241
11242Implemented support in AcpiLoadTable to allow loading of FACS and
11243FADT tables.
11244
11245Suport for the now-obsolete interim 0.71 64-bit ACPI tables has
11246been removed.  All 64-bit platforms should be migrated to the ACPI
112472.0 tables.  The actbl71.h header has been removed from the source
11248tree.
11249
11250All C macros defined within the subsystem have been prefixed with
11251"ACPI_" to avoid collision with other system include files.
11252
11253Removed the return value for the two AcpiOsPrint interfaces, since
11254it is never used and causes lint warnings for ignoring the return
11255value.
11256
11257Added error checking to all internal mutex acquire and release
11258calls.  Although a failure from one of these interfaces is
11259probably a fatal system error, these checks will cause the
11260immediate abort of the currently executing method or interface.
11261
11262Fixed a problem where the AcpiSetCurrentResources interface could
11263fault.  This was a side effect of the deployment of the new memory
11264allocation model.
11265
11266Fixed a couple of problems with the Global Lock support introduced
11267in the last major build.  The "common" (1.0/2.0) internal FACS was
11268being overwritten with the FACS signature and clobbering the
11269Global Lock pointer.  Also, the actual firmware FACS was being
11270unmapped after construction of the "common" FACS, preventing
11271access to the actual Global Lock field within it.  The "common"
11272internal FACS is no longer installed as an actual ACPI table; it
11273is used simply as a global.
11274
11275Code and Data Size: Current core subsystem library sizes are shown
11276below.  These are the code and data sizes for the acpica.lib
11277produced by the Microsoft Visual C++ 6.0 compiler, and these
11278values do not include any ACPI driver or OSPM code.  The debug
11279version of the code includes the debug output trace mechanism and
11280has a larger code and data size.  Note that these values will vary
11281depending on the efficiency of the compiler and the compiler
11282options used during generation.
11283
11284  Previous Release (02_07_01)
11285    Non-Debug Version:  65.2K Code,   6.2K Data,   71.4K Total
11286    Debug Version:     136.9K Code,  56.4K Data,  193.3K Total
11287  Current Release:
11288    Non-Debug Version:  65.4K Code,   6.2K Data,   71.6K Total
11289    Debug Version:     138.0K Code,  56.6K Data,  194.6K Total
11290
11291
112922) Linux
11293
11294Updated Linux-specific code for core macro and OSL interface
11295changes described above.
11296
11297Improved /proc/acpi/event. It now can be opened only once and has
11298proper poll functionality.
11299
11300Fixed and restructured power management (acpi_bus).
11301
11302Only create /proc "view by type" when devices of that class exist.
11303
11304Fixed "charging/discharging" bug (and others) in acpi_battery.
11305
11306Improved thermal zone code.
11307
11308
113093) ASL Compiler, version X2039:
11310
11311
11312Implemented the new compiler restriction on ASL String hex/octal
11313escapes to non-null, ASCII values.  An error results if an invalid
11314value is used.  (This will require an ACPI 2.0 specification
11315change.)
11316
11317AML object labels that are output to the optional C and ASM source
11318are now prefixed with both the ACPI table signature and table ID
11319to help guarantee uniqueness within a large BIOS project.
11320
11321
11322----------------------------------------
11323Summary of changes for this label: 02_01_02
11324
113251) ACPI CA Core Subsystem:
11326
11327ACPI 2.0 support is complete in the entire Core Subsystem and the
11328ASL compiler. All new ACPI 2.0 operators are implemented and all
11329other changes for ACPI 2.0 support are complete.  With
11330simultaneous code and data optimizations throughout the subsystem,
11331ACPI 2.0 support has been implemented with almost no additional
11332cost in terms of code and data size.
11333
11334Implemented a new mechanism for allocation of return buffers.  If
11335the buffer length is set to ACPI_ALLOCATE_BUFFER, the buffer will
11336be allocated on behalf of the caller.  Consolidated all return
11337buffer validation and allocation to a common procedure.  Return
11338buffers will be allocated via the primary OSL allocation interface
11339since it appears that a separate pool is not needed by most users.
11340If a separate pool is required for these buffers, the caller can
11341still use the original mechanism and pre-allocate the buffer(s).
11342
11343Implemented support for string operands within the DerefOf
11344operator.
11345
11346Restructured the Hardware and Event managers to be table driven,
11347simplifying the source code and reducing the amount of generated
11348code.
11349
11350Split the common read/write low-level ACPI register bitfield
11351procedure into a separate read and write, simplifying the code
11352considerably.
11353
11354Obsoleted the AcpiOsCallocate OSL interface.  This interface was
11355used only a handful of times and didn't have enough critical mass
11356for a separate interface.  Replaced with a common calloc procedure
11357in the core.
11358
11359Fixed a reported problem with the GPE number mapping mechanism
11360that allows GPE1 numbers to be non-contiguous with GPE0.
11361Reorganized the GPE information and shrunk a large array that was
11362originally large enough to hold info for all possible GPEs (256)
11363to simply large enough to hold all GPEs up to the largest GPE
11364number on the machine.
11365
11366Fixed a reported problem with resource structure alignment on 64-
11367bit platforms.
11368
11369Changed the AcpiEnableEvent and AcpiDisableEvent external
11370interfaces to not require any flags for the common case of
11371enabling/disabling a GPE.
11372
11373Implemented support to allow a "Notify" on a Processor object.
11374
11375Most TBDs in comments within the source code have been resolved
11376and eliminated.
11377
11378
11379Fixed a problem in the interpreter where a standalone parent
11380prefix (^) was not handled correctly in the interpreter and
11381debugger.
11382
11383Removed obsolete and unnecessary GPE save/restore code.
11384
11385Implemented Field support in the ASL Load operator.  This allows a
11386table to be loaded from a named field, in addition to loading a
11387table directly from an Operation Region.
11388
11389Implemented timeout and handle support in the external Global Lock
11390interfaces.
11391
11392Fixed a problem in the AcpiDump utility where pathnames were no
11393longer being generated correctly during the dump of named objects.
11394
11395Modified the AML debugger to give a full display of if/while
11396predicates instead of just one AML opcode at a time.  (The
11397predicate can have several nested ASL statements.)  The old method
11398was confusing during single stepping.
11399
11400Code and Data Size: Current core subsystem library sizes are shown
11401below. These are the code and data sizes for the acpica.lib
11402produced by the Microsoft Visual C++ 6.0 compiler, and these
11403values do not include any ACPI driver or OSPM code.  The debug
11404version of the code includes the debug output trace mechanism and
11405has a larger code and data size.  Note that these values will vary
11406depending on the efficiency of the compiler and the compiler
11407options used during generation.
11408
11409  Previous Release (12_18_01)
11410     Non-Debug Version:  66.1K Code,   5.5K Data,   71.6K Total
11411     Debug Version:     138.3K Code,  55.9K Data,  194.2K Total
11412   Current Release:
11413     Non-Debug Version:  65.2K Code,   6.2K Data,   71.4K Total
11414     Debug Version:     136.9K Code,  56.4K Data,  193.3K Total
11415
114162) Linux
11417
11418 Implemented fix for PIIX reverse throttling errata (Processor
11419driver)
11420
11421Added new Limit interface (Processor and Thermal drivers)
11422
11423New thermal policy (Thermal driver)
11424
11425Many updates to /proc
11426
11427Battery "low" event support (Battery driver)
11428
11429Supports ACPI PCI IRQ routing (PCI Link and PCI root drivers)
11430
11431IA32 - IA64 initialization unification, no longer experimental
11432
11433Menuconfig options redesigned
11434
114353) ASL Compiler, version X2037:
11436
11437Implemented several new output features to simplify integration of
11438AML code into  firmware: 1) Output the AML in C source code with
11439labels for each named ASL object.  The    original ASL source code
11440is interleaved as C comments. 2) Output the AML in ASM source code
11441with labels and interleaved ASL    source. 3) Output the AML in
11442raw hex table form, in either C or ASM.
11443
11444Implemented support for optional string parameters to the
11445LoadTable operator.
11446
11447Completed support for embedded escape sequences within string
11448literals.  The compiler now supports all single character escapes
11449as well as the Octal and Hex escapes.  Note: the insertion of a
11450null byte into a string literal (via the hex/octal escape) causes
11451the string to be immediately terminated.  A warning is issued.
11452
11453Fixed a problem where incorrect AML was generated for the case
11454where an ASL namepath consists of a single parent prefix (
11455
11456) with no trailing name segments.
11457
11458The compiler has been successfully generated with a 64-bit C
11459compiler.
11460
11461
11462
11463
11464----------------------------------------
11465Summary of changes for this label: 12_18_01
11466
114671) Linux
11468
11469Enhanced blacklist with reason and severity fields. Any table's
11470signature may now be used to identify a blacklisted system.
11471
11472Call _PIC control method to inform the firmware which interrupt
11473model the OS is using. Turn on any disabled link devices.
11474
11475Cleaned up busmgr /proc error handling (Andreas Dilger)
11476
11477 2) ACPI CA Core Subsystem:
11478
11479Implemented ACPI 2.0 semantics for the "Break" operator (Exit from
11480while loop)
11481
11482Completed implementation of the ACPI 2.0 "Continue",
11483"ConcatenateResTemplate", "DataTableRegion", and "LoadTable"
11484operators.  All new ACPI 2.0 operators are now implemented in both
11485the ASL compiler and the AML interpreter.  The only remaining ACPI
114862.0 task is support for the String data type in the DerefOf
11487operator.  Fixed a problem with AcquireMutex where the status code
11488was lost if the caller had to actually wait for the mutex.
11489
11490Increased the maximum ASL Field size from 64K bits to 4G bits.
11491
11492Completed implementation of the external Global Lock interfaces --
11493AcpiAcquireGlobalLock and AcpiReleaseGlobalLock.  The Timeout and
11494Handler parameters were added.
11495
11496Completed another pass at removing warnings and issues when
11497compiling with 64-bit compilers.  The code now compiles cleanly
11498with the Intel 64-bit C/C++ compiler.  Most notably, the pointer
11499add and subtract (diff) macros have changed considerably.
11500
11501
11502Created and deployed a new ACPI_SIZE type that is 64-bits wide on
1150364-bit platforms, 32-bits on all others.  This type is used
11504wherever memory allocation and/or the C sizeof() operator is used,
11505and affects the OSL memory allocation interfaces AcpiOsAllocate
11506and AcpiOsCallocate.
11507
11508Implemented sticky user breakpoints in the AML debugger.
11509
11510Code and Data Size: Current core subsystem library sizes are shown
11511below. These are the code and data sizes for the acpica.lib
11512produced by the Microsoft Visual C++ 6.0 compiler, and these
11513values do not include any ACPI driver or OSPM code.  The debug
11514version of the code includes the debug output trace mechanism and
11515has a larger code and data size. Note that these values will vary
11516depending on the efficiency of the compiler and the compiler
11517options used during generation.
11518
11519  Previous Release (12_05_01)
11520     Non-Debug Version:  64.7K Code,   5.3K Data,   70.0K Total
11521     Debug Version:     136.2K Code,  55.6K Data,  191.8K Total
11522   Current Release:
11523     Non-Debug Version:  66.1K Code,   5.5K Data,   71.6K Total
11524     Debug Version:     138.3K Code,  55.9K Data,  194.2K Total
11525
11526 3) ASL Compiler, version X2034:
11527
11528Now checks for (and generates an error if detected) the use of a
11529Break or Continue statement without an enclosing While statement.
11530
11531
11532Successfully generated the compiler with the Intel 64-bit C
11533compiler.
11534
11535 ----------------------------------------
11536Summary of changes for this label: 12_05_01
11537
11538 1) ACPI CA Core Subsystem:
11539
11540The ACPI 2.0 CopyObject operator is fully implemented.  This
11541operator creates a new copy of an object (and is also used to
11542bypass the "implicit conversion" mechanism of the Store operator.)
11543
11544The ACPI 2.0 semantics for the SizeOf operator are fully
11545implemented.  The change is that performing a SizeOf on a
11546reference object causes an automatic dereference of the object to
11547tha actual value before the size is evaluated. This behavior was
11548undefined in ACPI 1.0.
11549
11550The ACPI 2.0 semantics for the Extended IRQ resource descriptor
11551have been implemented.  The interrupt polarity and mode are now
11552independently set.
11553
11554Fixed a problem where ASL Constants (Zero, One, Ones, Revision)
11555appearing in Package objects were not properly converted to
11556integers when the internal Package was converted to an external
11557object (via the AcpiEvaluateObject interface.)
11558
11559Fixed a problem with the namespace object deletion mechanism for
11560objects created by control methods.  There were two parts to this
11561problem: 1) Objects created during the initialization phase method
11562parse were not being deleted, and 2) The object owner ID mechanism
11563to track objects was broken.
11564
11565Fixed a problem where the use of the ASL Scope operator within a
11566control method would result in an invalid opcode exception.
11567
11568Fixed a problem introduced in the previous label where the buffer
11569length required for the _PRT structure was not being returned
11570correctly.
11571
11572Code and Data Size: Current core subsystem library sizes are shown
11573below. These are the code and data sizes for the acpica.lib
11574produced by the Microsoft Visual C++ 6.0 compiler, and these
11575values do not include any ACPI driver or OSPM code.  The debug
11576version of the code includes the debug output trace mechanism and
11577has a larger code and data size.  Note that these values will vary
11578depending on the efficiency of the compiler and the compiler
11579options used during generation.
11580
11581  Previous Release (11_20_01)
11582     Non-Debug Version:  64.1K Code,   5.3K Data,   69.4K Total
11583     Debug Version:     135.1K Code,  55.4K Data,  190.5K Total
11584
11585  Current Release:
11586     Non-Debug Version:  64.7K Code,   5.3K Data,   70.0K Total
11587     Debug Version:     136.2K Code,  55.6K Data,  191.8K Total
11588
11589 2) Linux:
11590
11591Updated all files to apply cleanly against 2.4.16.
11592
11593Added basic PCI Interrupt Routing Table (PRT) support for IA32
11594(acpi_pci.c), and unified the PRT code for IA32 and IA64.  This
11595version supports both static and dyanmic PRT entries, but dynamic
11596entries are treated as if they were static (not yet
11597reconfigurable).  Architecture- specific code to use this data is
11598absent on IA32 but should be available shortly.
11599
11600Changed the initialization sequence to start the ACPI interpreter
11601(acpi_init) prior to initialization of the PCI driver (pci_init)
11602in init/main.c.  This ordering is required to support PRT and
11603facilitate other (future) enhancement.  A side effect is that the
11604ACPI bus driver and certain device drivers can no longer be loaded
11605as modules.
11606
11607Modified the 'make menuconfig' options to allow PCI Interrupt
11608Routing support to be included without the ACPI Bus and other
11609device drivers.
11610
11611 3) ASL Compiler, version X2033:
11612
11613Fixed some issues with the use of the new CopyObject and
11614DataTableRegion operators.  Both are fully functional.
11615
11616 ----------------------------------------
11617Summary of changes for this label: 11_20_01
11618
11619 20 November 2001.  Summary of changes for this release.
11620
11621 1) ACPI CA Core Subsystem:
11622
11623Updated Index support to match ACPI 2.0 semantics.  Storing a
11624Integer, String, or Buffer to an Index of a Buffer will store only
11625the least-significant byte of the source to the Indexed buffer
11626byte.  Multiple writes are not performed.
11627
11628Fixed a problem where the access type used in an AccessAs ASL
11629operator was not recorded correctly into the field object.
11630
11631Fixed a problem where ASL Event objects were created in a
11632signalled state. Events are now created in an unsignalled state.
11633
11634The internal object cache is now purged after table loading and
11635initialization to reduce the use of dynamic kernel memory -- on
11636the assumption that object use is greatest during the parse phase
11637of the entire table (versus the run-time use of individual control
11638methods.)
11639
11640ACPI 2.0 variable-length packages are now fully operational.
11641
11642Code and Data Size: Code and Data optimizations have permitted new
11643feature development with an actual reduction in the library size.
11644Current core subsystem library sizes are shown below.  These are
11645the code and data sizes for the acpica.lib produced by the
11646Microsoft Visual C++ 6.0 compiler, and these values do not include
11647any ACPI driver or OSPM code.  The debug version of the code
11648includes the debug output trace mechanism and has a larger code
11649and data size.  Note that these values will vary depending on the
11650efficiency of the compiler and the compiler options used during
11651generation.
11652
11653  Previous Release (11_09_01):
11654     Non-Debug Version:  63.7K Code,   5.2K Data,   68.9K Total
11655     Debug Version:     134.5K Code,  55.4K Data,  189.9K Total
11656
11657  Current Release:
11658     Non-Debug Version:  64.1K Code,   5.3K Data,   69.4K Total
11659     Debug Version:     135.1K Code,  55.4K Data,  190.5K Total
11660
11661 2) Linux:
11662
11663Enhanced the ACPI boot-time initialization code to allow the use
11664of Local APIC tables for processor enumeration on IA-32, and to
11665pave the way for a fully MPS-free boot (on SMP systems) in the
11666near future.  This functionality replaces
11667arch/i386/kernel/acpitables.c, which was introduced in an earlier
116682.4.15-preX release.  To enable this feature you must add
11669"acpi_boot=on" to the kernel command line -- see the help entry
11670for CONFIG_ACPI_BOOT for more information.  An IA-64 release is in
11671the works...
11672
11673Restructured the configuration options to allow boot-time table
11674parsing support without inclusion of the ACPI Interpreter (and
11675other) code.
11676
11677NOTE: This release does not include fixes for the reported events,
11678power-down, and thermal passive cooling issues (coming soon).
11679
11680 3) ASL Compiler:
11681
11682Added additional typechecking for Fields within restricted access
11683Operation Regions.  All fields within EC and CMOS regions must be
11684declared with ByteAcc. All fields withing SMBus regions must be
11685declared with the BufferAcc access type.
11686
11687Fixed a problem where the listing file output of control methods
11688no longer interleaved the actual AML code with the ASL source
11689code.
11690
11691
11692
11693
11694----------------------------------------
11695Summary of changes for this label: 11_09_01
11696
116971) ACPI CA Core Subsystem:
11698
11699Implemented ACPI 2.0-defined support for writes to fields with a
11700Buffer, String, or Integer source operand that is smaller than the
11701target field. In these cases, the source operand is zero-extended
11702to fill the target field.
11703
11704Fixed a problem where a Field starting bit offset (within the
11705parent operation region) was calculated incorrectly if the
11706
11707alignment of the field differed from the access width.  This
11708affected CreateWordField, CreateDwordField, CreateQwordField, and
11709possibly other fields that use the "AccessAny" keyword.
11710
11711Fixed a problem introduced in the 11_02_01 release where indirect
11712stores through method arguments did not operate correctly.
11713
117142) Linux:
11715
11716Implemented boot-time ACPI table parsing support
11717(CONFIG_ACPI_BOOT) for IA32 and IA64 UP/SMP systems.  This code
11718facilitates the use of ACPI tables (e.g. MADT, SRAT) rather than
11719legacy BIOS interfaces (e.g. MPS) for the configuration of system
11720processors, memory, and interrupts during setup_arch().  Note that
11721this patch does not include the required architecture-specific
11722changes required to apply this information -- subsequent patches
11723will be posted for both IA32 and IA64 to achieve this.
11724
11725Added low-level sleep support for IA32 platforms, courtesy of Pat
11726Mochel. This allows IA32 systems to transition to/from various
11727sleeping states (e.g. S1, S3), although the lack of a centralized
11728driver model and power-manageable drivers will prevent its
11729(successful) use on most systems.
11730
11731Revamped the ACPI 'menuconfig' layout: created new "ACPI Support"
11732submenu, unified IA32 and IA64 options, added new "Boot using ACPI
11733tables" option, etc.
11734
11735Increased the default timeout for the EC driver from 1ms to 10ms
11736(1000 cycles of 10us) to try to address AE_TIME errors during EC
11737transactions.
11738
11739 ----------------------------------------
11740Summary of changes for this label: 11_02_01
11741
117421) ACPI CA Core Subsystem:
11743
11744ACPI 2.0 Support: Implemented ACPI 2.0 64-bit Field access
11745(QWordAcc keyword). All ACPI 2.0 64-bit support is now
11746implemented.
11747
11748OSL Interfaces: Several of the OSL (AcpiOs*) interfaces required
11749changes to support ACPI 2.0 Qword field access.  Read/Write
11750PciConfiguration(), Read/Write Memory(), and Read/Write Port() now
11751accept an ACPI_INTEGER (64 bits) as the value parameter.  Also,
11752the value parameter for the address space handler interface is now
11753an ACPI_INTEGER.  OSL implementations of these interfaces must now
11754handle the case where the Width parameter is 64.
11755
11756Index Fields: Fixed a problem where unaligned bit assembly and
11757disassembly for IndexFields was not supported correctly.
11758
11759Index and Bank Fields:  Nested Index and Bank Fields are now
11760supported. During field access, a check is performed to ensure
11761that the value written to an Index or Bank register is not out of
11762the range of the register.  The Index (or Bank) register is
11763written before each access to the field data. Future support will
11764include allowing individual IndexFields to be wider than the
11765DataRegister width.
11766
11767Fields: Fixed a problem where the AML interpreter was incorrectly
11768attempting to write beyond the end of a Field/OpRegion.  This was
11769a boundary case that occurred when a DWORD field was written to a
11770BYTE access OpRegion, forcing multiple writes and causing the
11771interpreter to write one datum too many.
11772
11773Fields: Fixed a problem with Field/OpRegion access where the
11774starting bit address of a field was incorrectly calculated if the
11775current access type was wider than a byte (WordAcc, DwordAcc, or
11776QwordAcc).
11777
11778Fields: Fixed a problem where forward references to individual
11779FieldUnits (individual Field names within a Field definition) were
11780not resolved during the AML table load.
11781
11782Fields: Fixed a problem where forward references from a Field
11783definition to the parent Operation Region definition were not
11784resolved during the AML table load.
11785
11786Fields: Duplicate FieldUnit names within a scope are now detected
11787during AML table load.
11788
11789Acpi Interfaces: Fixed a problem where the AcpiGetName() interface
11790returned an incorrect name for the root node.
11791
11792Code and Data Size: Code and Data optimizations have permitted new
11793feature development with an actual reduction in the library size.
11794Current core subsystem library sizes are shown below.  These are
11795the code and data sizes for the acpica.lib produced by the
11796Microsoft Visual C++ 6.0 compiler, and these values do not include
11797any ACPI driver or OSPM code.  The debug version of the code
11798includes the debug output trace mechanism and has a larger code
11799and data size.  Note that these values will vary depending on the
11800efficiency of the compiler and the compiler options used during
11801generation.
11802
11803  Previous Release (10_18_01):
11804     Non-Debug Version:  63.9K Code,   5.1K Data,   69.0K Total
11805     Debug Version:     136.7K Code,  57.4K Data,  194.2K Total
11806
11807  Current Release:
11808     Non-Debug Version:  63.7K Code,   5.2K Data,   68.9K Total
11809     Debug Version:     134.5K Code,  55.4K Data,  189.9K Total
11810
11811 2) Linux:
11812
11813Improved /proc processor output (Pavel Machek) Re-added
11814MODULE_LICENSE("GPL") to all modules.
11815
11816 3) ASL Compiler version X2030:
11817
11818Duplicate FieldUnit names within a scope are now detected and
11819flagged as errors.
11820
11821 4) Documentation:
11822
11823Programmer Reference updated to reflect OSL and address space
11824handler interface changes described above.
11825
11826----------------------------------------
11827Summary of changes for this label: 10_18_01
11828
11829ACPI CA Core Subsystem:
11830
11831Fixed a problem with the internal object reference count mechanism
11832that occasionally caused premature object deletion. This resolves
11833all of the outstanding problem reports where an object is deleted
11834in the middle of an interpreter evaluation.  Although this problem
11835only showed up in rather obscure cases, the solution to the
11836problem involved an adjustment of all reference counts involving
11837objects attached to namespace nodes.
11838
11839Fixed a problem with Field support in the interpreter where
11840writing to an aligned field whose length is an exact multiple (2
11841or greater) of the field access granularity would cause an attempt
11842to write beyond the end of the field.
11843
11844The top level AML opcode execution functions within the
11845interpreter have been renamed with a more meaningful and
11846consistent naming convention.  The modules exmonad.c and
11847exdyadic.c were eliminated.  New modules are exoparg1.c,
11848exoparg2.c, exoparg3.c, and exoparg6.c.
11849
11850Support for the ACPI 2.0 "Mid" ASL operator has been implemented.
11851
11852Fixed a problem where the AML debugger was causing some internal
11853objects to not be deleted during subsystem termination.
11854
11855Fixed a problem with the external AcpiEvaluateObject interface
11856where the subsystem would fault if the named object to be
11857evaluated refered to a constant such as Zero, Ones, etc.
11858
11859Fixed a problem with IndexFields and BankFields where the
11860subsystem would fault if the index, data, or bank registers were
11861not defined in the same scope as the field itself.
11862
11863Added printf format string checking for compilers that support
11864this feature.  Corrected more than 50 instances of issues with
11865format specifiers within invocations of ACPI_DEBUG_PRINT
11866throughout the core subsystem code.
11867
11868The ASL "Revision" operator now returns the ACPI support level
11869implemented in the core - the value "2" since the ACPI 2.0 support
11870is more than 50% implemented.
11871
11872Enhanced the output of the AML debugger "dump namespace" command
11873to output in a more human-readable form.
11874
11875Current core subsystem library code sizes are shown below.  These
11876
11877are the code and data sizes for the acpica.lib produced by the
11878Microsoft Visual C++ 6.0 compiler, and these values do not include
11879any ACPI driver or OSPM code.  The debug version of the code
11880includes the full debug trace mechanism -- leading to a much
11881
11882larger code and data size.  Note that these values will vary
11883depending on the efficiency of the compiler and the compiler
11884options used during generation.
11885
11886     Previous Label (09_20_01):
11887     Non-Debug Version:    65K Code,     5K Data,     70K Total
11888     Debug Version:       138K Code,    58K Data,    196K Total
11889
11890     This Label:
11891
11892     Non-Debug Version:  63.9K Code,   5.1K Data,   69.0K Total
11893     Debug Version:     136.7K Code,  57.4K Data,  194.2K Total
11894
11895Linux:
11896
11897Implemented a "Bad BIOS Blacklist" to track machines that have
11898known ASL/AML problems.
11899
11900Enhanced the /proc interface for the thermal zone driver and added
11901support for _HOT (the critical suspend trip point).  The 'info'
11902file now includes threshold/policy information, and allows setting
11903of _SCP (cooling preference) and _TZP (polling frequency) values
11904to the 'info' file. Examples: "echo tzp=5 > info" sets the polling
11905frequency to 5 seconds, and "echo scp=1 > info" sets the cooling
11906preference to the passive/quiet mode (if supported by the ASL).
11907
11908Implemented a workaround for a gcc bug that resuted in an OOPs
11909when loading the control method battery driver.
11910
11911 ----------------------------------------
11912Summary of changes for this label: 09_20_01
11913
11914 ACPI CA Core Subsystem:
11915
11916The AcpiEnableEvent and AcpiDisableEvent interfaces have been
11917modified to allow individual GPE levels to be flagged as wake-
11918enabled (i.e., these GPEs are to remain enabled when the platform
11919sleeps.)
11920
11921The AcpiEnterSleepState and AcpiLeaveSleepState interfaces now
11922support wake-enabled GPEs.  This means that upon entering the
11923sleep state, all GPEs that are not wake-enabled are disabled.
11924When leaving the sleep state, these GPEs are reenabled.
11925
11926A local double-precision divide/modulo module has been added to
11927enhance portability to OS kernels where a 64-bit math library is
11928not available.  The new module is "utmath.c".
11929
11930Several optimizations have been made to reduce the use of CPU
11931stack.  Originally over 2K, the maximum stack usage is now below
119322K at 1860  bytes (1.82k)
11933
11934Fixed a problem with the AcpiGetFirmwareTable interface where the
11935root table pointer was not mapped into a logical address properly.
11936
11937Fixed a problem where a NULL pointer was being dereferenced in the
11938interpreter code for the ASL Notify operator.
11939
11940Fixed a problem where the use of the ASL Revision operator
11941returned an error. This operator now returns the current version
11942of the ACPI CA core subsystem.
11943
11944Fixed a problem where objects passed as control method parameters
11945to AcpiEvaluateObject were always deleted at method termination.
11946However, these objects may end up being stored into the namespace
11947by the called method.  The object reference count mechanism was
11948applied to these objects instead of a force delete.
11949
11950Fixed a problem where static strings or buffers (contained in the
11951AML code) that are declared as package elements within the ASL
11952code could cause a fault because the interpreter would attempt to
11953delete them.  These objects are now marked with the "static
11954object" flag to prevent any attempt to delete them.
11955
11956Implemented an interpreter optimization to use operands directly
11957from the state object instead of extracting the operands to local
11958variables.  This reduces stack use and code size, and improves
11959performance.
11960
11961The module exxface.c was eliminated as it was an unnecessary extra
11962layer of code.
11963
11964Current core subsystem library code sizes are shown below.  These
11965are the code and data sizes for the acpica.lib produced by the
11966Microsoft Visual C++ 6.0 compiler, and these values do not include
11967any ACPI driver or OSPM code.  The debug version of the code
11968includes the full debug trace mechanism -- leading to a much
11969larger code and data size.  Note that these values will vary
11970depending on the efficiency of the compiler and the compiler
11971options used during generation.
11972
11973  Non-Debug Version:  65K Code,   5K Data,   70K Total
11974(Previously 69K)   Debug Version:     138K Code,  58K Data,  196K
11975Total  (Previously 195K)
11976
11977Linux:
11978
11979Support for ACPI 2.0 64-bit integers has been added.   All ACPI
11980Integer objects are now 64 bits wide
11981
11982All Acpi data types and structures are now in lower case.  Only
11983Acpi macros are upper case for differentiation.
11984
11985 Documentation:
11986
11987Changes to the external interfaces as described above.
11988
11989 ----------------------------------------
11990Summary of changes for this label: 08_31_01
11991
11992 ACPI CA Core Subsystem:
11993
11994A bug with interpreter implementation of the ASL Divide operator
11995was found and fixed.  The implicit function return value (not the
11996explicit store operands) was returning the remainder instead of
11997the quotient.  This was a longstanding bug and it fixes several
11998known outstanding issues on various platforms.
11999
12000The ACPI_DEBUG_PRINT and function trace entry/exit macros have
12001been further optimized for size.  There are 700 invocations of the
12002DEBUG_PRINT macro alone, so each optimization reduces the size of
12003the debug version of the subsystem significantly.
12004
12005A stack trace mechanism has been implemented.  The maximum stack
12006usage is about 2K on 32-bit platforms.  The debugger command "stat
12007stack" will display the current maximum stack usage.
12008
12009All public symbols and global variables within the subsystem are
12010now prefixed with the string "Acpi".  This keeps all of the
12011symbols grouped together in a kernel map, and avoids conflicts
12012with other kernel subsystems.
12013
12014Most of the internal fixed lookup tables have been moved into the
12015code segment via the const operator.
12016
12017Several enhancements have been made to the interpreter to both
12018reduce the code size and improve performance.
12019
12020Current core subsystem library code sizes are shown below.  These
12021are the code and data sizes for the acpica.lib produced by the
12022Microsoft Visual C++ 6.0 compiler, and these values do not include
12023any ACPI driver or OSPM code.  The debug version of the code
12024includes the full debug trace mechanism which contains over 700
12025invocations of the DEBUG_PRINT macro, 500 function entry macro
12026invocations, and over 900 function exit macro invocations --
12027leading to a much larger code and data size.  Note that these
12028values will vary depending on the efficiency of the compiler and
12029the compiler options used during generation.
12030
12031        Non-Debug Version:  64K Code,   5K Data,   69K Total
12032Debug Version:     137K Code,  58K Data,  195K Total
12033
12034 Linux:
12035
12036Implemented wbinvd() macro, pending a kernel-wide definition.
12037
12038Fixed /proc/acpi/event to handle poll() and short reads.
12039
12040 ASL Compiler, version X2026:
12041
12042Fixed a problem introduced in the previous label where the AML
12043
12044code emitted for package objects produced packages with zero
12045length.
12046
12047 ----------------------------------------
12048Summary of changes for this label: 08_16_01
12049
12050ACPI CA Core Subsystem:
12051
12052The following ACPI 2.0 ASL operators have been implemented in the
12053AML interpreter (These are already supported by the Intel ASL
12054compiler):  ToDecimalString, ToHexString, ToString, ToInteger, and
12055ToBuffer.  Support for 64-bit AML constants is implemented in the
12056AML parser, debugger, and disassembler.
12057
12058The internal memory tracking mechanism (leak detection code) has
12059been upgraded to reduce the memory overhead (a separate tracking
12060block is no longer allocated for each memory allocation), and now
12061supports all of the internal object caches.
12062
12063The data structures and code for the internal object caches have
12064been coelesced and optimized so that there is a single cache and
12065memory list data structure and a single group of functions that
12066implement generic cache management.  This has reduced the code
12067size in both the debug and release versions of the subsystem.
12068
12069The DEBUG_PRINT macro(s) have been optimized for size and replaced
12070by ACPI_DEBUG_PRINT.  The syntax for this macro is slightly
12071different, because it generates a single call to an internal
12072function.  This results in a savings of about 90 bytes per
12073invocation, resulting in an overall code and data savings of about
1207416% in the debug version of the subsystem.
12075
12076 Linux:
12077
12078Fixed C3 disk corruption problems and re-enabled C3 on supporting
12079machines.
12080
12081Integrated low-level sleep code by Patrick Mochel.
12082
12083Further tweaked source code Linuxization.
12084
12085Other minor fixes.
12086
12087 ASL Compiler:
12088
12089Support for ACPI 2.0 variable length packages is fixed/completed.
12090
12091Fixed a problem where the optional length parameter for the ACPI
120922.0 ToString operator.
12093
12094Fixed multiple extraneous error messages when a syntax error is
12095detected within the declaration line of a control method.
12096
12097 ----------------------------------------
12098Summary of changes for this label: 07_17_01
12099
12100ACPI CA Core Subsystem:
12101
12102Added a new interface named AcpiGetFirmwareTable to obtain any
12103ACPI table via the ACPI signature.  The interface can be called at
12104any time during kernel initialization, even before the kernel
12105virtual memory manager is initialized and paging is enabled.  This
12106allows kernel subsystems to obtain ACPI tables very early, even
12107before the ACPI CA subsystem is initialized.
12108
12109Fixed a problem where Fields defined with the AnyAcc attribute
12110could be resolved to the incorrect address under the following
12111conditions: 1) the field width is larger than 8 bits and 2) the
12112parent operation region is not defined on a DWORD boundary.
12113
12114Fixed a problem where the interpreter is not being locked during
12115namespace initialization (during execution of the _INI control
12116methods), causing an error when an attempt is made to release it
12117later.
12118
12119ACPI 2.0 support in the AML Interpreter has begun and will be
12120ongoing throughout the rest of this year.  In this label, The Mod
12121operator is implemented.
12122
12123Added a new data type to contain full PCI addresses named
12124ACPI_PCI_ID. This structure contains the PCI Segment, Bus, Device,
12125and Function values.
12126
12127 Linux:
12128
12129Enhanced the Linux version of the source code to change most
12130capitalized ACPI type names to lowercase. For example, all
12131instances of ACPI_STATUS are changed to acpi_status.  This will
12132result in a large diff, but the change is strictly cosmetic and
12133aligns the CA code closer to the Linux coding standard.
12134
12135OSL Interfaces:
12136
12137The interfaces to the PCI configuration space have been changed to
12138add the PCI Segment number and to split the single 32-bit combined
12139DeviceFunction field into two 16-bit fields.  This was
12140accomplished by moving the four values that define an address in
12141PCI configuration space (segment, bus, device, and function) to
12142the new ACPI_PCI_ID structure.
12143
12144The changes to the PCI configuration space interfaces led to a
12145reexamination of the complete set of address space access
12146interfaces for PCI, I/O, and Memory.  The previously existing 18
12147interfaces have proven difficult to maintain (any small change
12148must be propagated across at least 6 interfaces) and do not easily
12149allow for future expansion to 64 bits if necessary.  Also, on some
12150systems, it would not be appropriate to demultiplex the access
12151width (8, 16, 32,or 64) before calling the OSL if the
12152corresponding native OS interfaces contain a similar access width
12153parameter.  For these reasons, the 18 address space interfaces
12154have been replaced by these 6 new ones:
12155
12156AcpiOsReadPciConfiguration
12157AcpiOsWritePciConfiguration
12158AcpiOsReadMemory
12159AcpiOsWriteMemory
12160AcpiOsReadPort
12161AcpiOsWritePort
12162
12163Added a new interface named AcpiOsGetRootPointer to allow the OSL
12164to perform the platform and/or OS-specific actions necessary to
12165obtain the ACPI RSDP table pointer.  On IA-32 platforms, this
12166interface will simply call down to the CA core to perform the low-
12167memory search for the table.  On IA-64, the RSDP is obtained from
12168EFI.  Migrating this interface to the OSL allows the CA core to
12169
12170remain OS and platform independent.
12171
12172Added a new interface named AcpiOsSignal to provide a generic
12173"function code and pointer" interface for various miscellaneous
12174signals and notifications that must be made to the host OS.   The
12175first such signals are intended to support the ASL Fatal and
12176Breakpoint operators.  In the latter case, the AcpiOsBreakpoint
12177interface has been obsoleted.
12178
12179The definition of the AcpiFormatException interface has been
12180changed to simplify its use.  The caller no longer must supply a
12181buffer to the call; A pointer to a const string is now returned
12182directly.  This allows the call to be easily used in printf
12183statements, etc. since the caller does not have to manage a local
12184buffer.
12185
12186
12187 ASL Compiler, Version X2025:
12188
12189The ACPI 2.0 Switch/Case/Default operators have been implemented
12190and are fully functional.  They will work with all ACPI 1.0
12191interpreters, since the operators are simply translated to If/Else
12192pairs.
12193
12194The ACPI 2.0 ElseIf operator is implemented and will also work
12195with 1.0 interpreters, for the same reason.
12196
12197Implemented support for ACPI 2.0 variable-length packages.  These
12198packages have a separate opcode, and their size is determined by
12199the interpreter at run-time.
12200
12201Documentation The ACPI CA Programmer Reference has been updated to
12202reflect the new interfaces and changes to existing interfaces.
12203
12204 ------------------------------------------
12205Summary of changes for this label: 06_15_01
12206
12207 ACPI CA Core Subsystem:
12208
12209Fixed a problem where a DWORD-accessed field within a Buffer
12210object would get its byte address inadvertently rounded down to
12211the nearest DWORD.  Buffers are always Byte-accessible.
12212
12213 ASL Compiler, version X2024:
12214
12215Fixed a problem where the Switch() operator would either fault or
12216hang the compiler.  Note however, that the AML code for this ACPI
122172.0 operator is not yet implemented.
12218
12219Compiler uses the new AcpiOsGetTimer interface to obtain compile
12220timings.
12221
12222Implementation of the CreateField operator automatically converts
12223a reference to a named field within a resource descriptor from a
12224byte offset to a bit offset if required.
12225
12226Added some missing named fields from the resource descriptor
12227support. These are the names that are automatically created by the
12228compiler to reference fields within a descriptor.  They are only
12229valid at compile time and are not passed through to the AML
12230interpreter.
12231
12232Resource descriptor named fields are now typed as Integers and
12233subject to compile-time typechecking when used in expressions.
12234
12235 ------------------------------------------
12236Summary of changes for this label: 05_18_01
12237
12238 ACPI CA Core Subsystem:
12239
12240Fixed a couple of problems in the Field support code where bits
12241from adjacent fields could be returned along with the proper field
12242bits. Restructured the field support code to improve performance,
12243readability and maintainability.
12244
12245New DEBUG_PRINTP macro automatically inserts the procedure name
12246into the output, saving hundreds of copies of procedure name
12247strings within the source, shrinking the memory footprint of the
12248debug version of the core subsystem.
12249
12250 Source Code Structure:
12251
12252The source code directory tree was restructured to reflect the
12253current organization of the component architecture.  Some files
12254and directories have been moved and/or renamed.
12255
12256 Linux:
12257
12258Fixed leaking kacpidpc processes.
12259
12260Fixed queueing event data even when /proc/acpi/event is not
12261opened.
12262
12263 ASL Compiler, version X2020:
12264
12265Memory allocation performance enhancement - over 24X compile time
12266improvement on large ASL files.  Parse nodes and namestring
12267buffers are now allocated from a large internal compiler buffer.
12268
12269The temporary .SRC file is deleted unless the "-s" option is
12270specified
12271
12272The "-d" debug output option now sends all output to the .DBG file
12273instead of the console.
12274
12275"External" second parameter is now optional
12276
12277"ElseIf" syntax now properly allows the predicate
12278
12279Last operand to "Load" now recognized as a Target operand
12280
12281Debug object can now be used anywhere as a normal object.
12282
12283ResourceTemplate now returns an object of type BUFFER
12284
12285EISAID now returns an object of type INTEGER
12286
12287"Index" now works with a STRING operand
12288
12289"LoadTable" now accepts optional parameters
12290
12291"ToString" length parameter is now optional
12292
12293"Interrupt (ResourceType," parse error fixed.
12294
12295"Register" with a user-defined region space parse error fixed
12296
12297Escaped backslash at the end of a string ("\\") scan/parse error
12298fixed
12299
12300"Revision" is now an object of type INTEGER.
12301
12302
12303
12304------------------------------------------
12305Summary of changes for this label: 05_02_01
12306
12307Linux:
12308
12309/proc/acpi/event now blocks properly.
12310
12311Removed /proc/sys/acpi. You can still dump your DSDT from
12312/proc/acpi/dsdt.
12313
12314 ACPI CA Core Subsystem:
12315
12316Fixed a problem introduced in the previous label where some of the
12317"small" resource descriptor types were not recognized.
12318
12319Improved error messages for the case where an ASL Field is outside
12320the range of the parent operation region.
12321
12322 ASL Compiler, version X2018:
12323
12324
12325Added error detection for ASL Fields that extend beyond the length
12326of the parent operation region (only if the length of the region
12327is known at compile time.)  This includes fields that have a
12328minimum access width that is smaller than the parent region, and
12329individual field units that are partially or entirely beyond the
12330extent of the parent.
12331
12332
12333
12334------------------------------------------
12335Summary of changes for this label: 04_27_01
12336
12337 ACPI CA Core Subsystem:
12338
12339Fixed a problem where the namespace mutex could be released at the
12340wrong time during execution of AcpiRemoveAddressSpaceHandler.
12341
12342Added optional thread ID output for debug traces, to simplify
12343debugging of multiple threads.  Added context switch notification
12344when the debug code realizes that a different thread is now
12345executing ACPI code.
12346
12347Some additional external data types have been prefixed with the
12348string "ACPI_" for consistency.  This may effect existing code.
12349The data types affected are the external callback typedefs - e.g.,
12350
12351WALK_CALLBACK becomes ACPI_WALK_CALLBACK.
12352
12353 Linux:
12354
12355Fixed an issue with the OSL semaphore implementation where a
12356thread was waking up with an error from receiving a SIGCHLD
12357signal.
12358
12359Linux version of ACPI CA now uses the system C library for string
12360manipulation routines instead of a local implementation.
12361
12362Cleaned up comments and removed TBDs.
12363
12364 ASL Compiler, version X2017:
12365
12366Enhanced error detection and reporting for all file I/O
12367operations.
12368
12369 Documentation:
12370
12371Programmer Reference updated to version 1.06.
12372
12373
12374
12375------------------------------------------
12376Summary of changes for this label: 04_13_01
12377
12378 ACPI CA Core Subsystem:
12379
12380Restructured support for BufferFields and RegionFields.
12381BankFields support is now fully operational.  All known 32-bit
12382limitations on field sizes have been removed.  Both BufferFields
12383and (Operation) RegionFields are now supported by the same field
12384management code.
12385
12386Resource support now supports QWORD address and IO resources. The
1238716/32/64 bit address structures and the Extended IRQ structure
12388have been changed to properly handle Source Resource strings.
12389
12390A ThreadId of -1 is now used to indicate a "mutex not acquired"
12391condition internally and must never be returned by AcpiOsThreadId.
12392This reserved value was changed from 0 since Unix systems allow a
12393thread ID of 0.
12394
12395Linux:
12396
12397Driver code reorganized to enhance portability
12398
12399Added a kernel configuration option to control ACPI_DEBUG
12400
12401Fixed the EC driver to honor _GLK.
12402
12403ASL Compiler, version X2016:
12404
12405Fixed support for the "FixedHw" keyword.  Previously, the FixedHw
12406address space was set to 0, not 0x7f as it should be.
12407
12408 ------------------------------------------
12409Summary of changes for this label: 03_13_01
12410
12411 ACPI CA Core Subsystem:
12412
12413During ACPI initialization, the _SB_._INI method is now run if
12414present.
12415
12416Notify handler fix - notifies are deferred until the parent method
12417completes execution.  This fixes the "mutex already acquired"
12418issue seen occasionally.
12419
12420Part of the "implicit conversion" rules in ACPI 2.0 have been
12421found to cause compatibility problems with existing ASL/AML.  The
12422convert "result-to-target-type" implementation has been removed
12423for stores to method Args and Locals.  Source operand conversion
12424is still fully implemented.  Possible changes to ACPI 2.0
12425specification pending.
12426
12427Fix to AcpiRsCalculatePciRoutingTableLength to return correct
12428length.
12429
12430Fix for compiler warnings for 64-bit compiles.
12431
12432 Linux:
12433
12434/proc output aligned for easier parsing.
12435
12436Release-version compile problem fixed.
12437
12438New kernel configuration options documented in Configure.help.
12439
12440IBM 600E - Fixed Sleep button may generate "Invalid <NULL>
12441context" message.
12442
12443 OSPM:
12444
12445Power resource driver integrated with bus manager.
12446
12447Fixed kernel fault during active cooling for thermal zones.
12448
12449Source Code:
12450
12451The source code tree has been restructured.
12452
12453
12454
12455------------------------------------------
12456Summary of changes for this label: 03_02_01
12457
12458 Linux OS Services Layer (OSL):
12459
12460Major revision of all Linux-specific code.
12461
12462Modularized all ACPI-specific drivers.
12463
12464Added new thermal zone and power resource drivers.
12465
12466Revamped /proc interface (new functionality is under /proc/acpi).
12467
12468New kernel configuration options.
12469
12470 Linux known issues:
12471
12472New kernel configuration options not documented in Configure.help
12473yet.
12474
12475
12476Module dependencies not currently implemented. If used, they
12477should be loaded in this order: busmgr, power, ec, system,
12478processor, battery, ac_adapter, button, thermal.
12479
12480Modules will not load if CONFIG_MODVERSION is set.
12481
12482IBM 600E - entering S5 may reboot instead of shutting down.
12483
12484IBM 600E - Sleep button may generate "Invalid <NULL> context"
12485message.
12486
12487Some systems may fail with "execution mutex already acquired"
12488message.
12489
12490 ACPI CA Core Subsystem:
12491
12492Added a new OSL Interface, AcpiOsGetThreadId.  This was required
12493for the  deadlock detection code. Defined to return a non-zero, 32-
12494bit thread ID for the currently executing thread.  May be a non-
12495zero constant integer on single-thread systems.
12496
12497Implemented deadlock detection for internal subsystem mutexes.  We
12498may add conditional compilation for this code (debug only) later.
12499
12500ASL/AML Mutex object semantics are now fully supported.  This
12501includes multiple acquires/releases by owner and support for the
12502
12503Mutex SyncLevel parameter.
12504
12505A new "Force Release" mechanism automatically frees all ASL
12506Mutexes that have been acquired but not released when a thread
12507exits the interpreter.  This forces conformance to the ACPI spec
12508("All mutexes must be released when an invocation exits") and
12509prevents deadlocked ASL threads.  This mechanism can be expanded
12510(later) to monitor other resource acquisitions if OEM ASL code
12511continues to misbehave (which it will).
12512
12513Several new ACPI exception codes have been added for the Mutex
12514support.
12515
12516Recursive method calls are now allowed and supported (the ACPI
12517spec does in fact allow recursive method calls.)  The number of
12518recursive calls is subject to the restrictions imposed by the
12519SERIALIZED method keyword and SyncLevel (ACPI 2.0) method
12520parameter.
12521
12522Implemented support for the SyncLevel parameter for control
12523methods (ACPI 2.0 feature)
12524
12525Fixed a deadlock problem when multiple threads attempted to use
12526the interpreter.
12527
12528Fixed a problem where the string length of a String package
12529element was not always set in a package returned from
12530AcpiEvaluateObject.
12531
12532Fixed a problem where the length of a String package element was
12533not always included in the length of the overall package returned
12534from AcpiEvaluateObject.
12535
12536Added external interfaces (Acpi*) to the ACPI debug memory
12537manager.  This manager keeps a list of all outstanding
12538allocations, and can therefore detect memory leaks and attempts to
12539free memory blocks more than once. Useful for code such as the
12540power manager, etc.  May not be appropriate for device drivers.
12541Performance with the debug code enabled is slow.
12542
12543The ACPI Global Lock is now an optional hardware element.
12544
12545 ASL Compiler Version X2015:
12546
12547Integrated changes to allow the compiler to be generated on
12548multiple platforms.
12549
12550Linux makefile added to generate the compiler on Linux
12551
12552 Source Code:
12553
12554All platform-specific headers have been moved to their own
12555subdirectory, Include/Platform.
12556
12557New source file added, Interpreter/ammutex.c
12558
12559New header file, Include/acstruct.h
12560
12561 Documentation:
12562
12563The programmer reference has been updated for the following new
12564interfaces: AcpiOsGetThreadId AcpiAllocate AcpiCallocate AcpiFree
12565
12566 ------------------------------------------
12567Summary of changes for this label: 02_08_01
12568
12569Core ACPI CA Subsystem: Fixed a problem where an error was
12570incorrectly returned if the return resource buffer was larger than
12571the actual data (in the resource interfaces).
12572
12573References to named objects within packages are resolved to the
12574
12575full pathname string before packages are returned directly (via
12576the AcpiEvaluateObject interface) or indirectly via the resource
12577interfaces.
12578
12579Linux OS Services Layer (OSL):
12580
12581Improved /proc battery interface.
12582
12583
12584Added C-state debugging output and other miscellaneous fixes.
12585
12586ASL Compiler Version X2014:
12587
12588All defined method arguments can now be used as local variables,
12589including the ones that are not actually passed in as parameters.
12590The compiler tracks initialization of the arguments and issues an
12591exception if they are used without prior assignment (just like
12592locals).
12593
12594The -o option now specifies a filename prefix that is used for all
12595output files, including the AML output file.  Otherwise, the
12596default behavior is as follows:  1) the AML goes to the file
12597specified in the DSDT.  2) all other output files use the input
12598source filename as the base.
12599
12600 ------------------------------------------
12601Summary of changes for this label: 01_25_01
12602
12603Core ACPI CA Subsystem: Restructured the implementation of object
12604store support within the  interpreter.  This includes support for
12605the Store operator as well  as any ASL operators that include a
12606target operand.
12607
12608Partially implemented support for Implicit Result-to-Target
12609conversion. This is when a result object is converted on the fly
12610to the type of  an existing target object.  Completion of this
12611support is pending  further analysis of the ACPI specification
12612concerning this matter.
12613
12614CPU-specific code has been removed from the subsystem (hardware
12615directory).
12616
12617New Power Management Timer functions added
12618
12619Linux OS Services Layer (OSL): Moved system state transition code
12620to the core, fixed it, and modified  Linux OSL accordingly.
12621
12622Fixed C2 and C3 latency calculations.
12623
12624
12625We no longer use the compilation date for the version message on
12626initialization, but retrieve the version from AcpiGetSystemInfo().
12627
12628Incorporated for fix Sony VAIO machines.
12629
12630Documentation:  The Programmer Reference has been updated and
12631reformatted.
12632
12633
12634ASL Compiler:  Version X2013: Fixed a problem where the line
12635numbering and error reporting could get out  of sync in the
12636presence of multiple include files.
12637
12638 ------------------------------------------
12639Summary of changes for this label: 01_15_01
12640
12641Core ACPI CA Subsystem:
12642
12643Implemented support for type conversions in the execution of the
12644ASL  Concatenate operator (The second operand is converted to
12645match the type  of the first operand before concatenation.)
12646
12647Support for implicit source operand conversion is partially
12648implemented.   The ASL source operand types Integer, Buffer, and
12649String are freely  interchangeable for most ASL operators and are
12650converted by the interpreter  on the fly as required.  Implicit
12651Target operand conversion (where the  result is converted to the
12652target type before storing) is not yet implemented.
12653
12654Support for 32-bit and 64-bit BCD integers is implemented.
12655
12656Problem fixed where a field read on an aligned field could cause a
12657read  past the end of the field.
12658
12659New exception, AE_AML_NO_RETURN_VALUE, is returned when a method
12660does not return a value, but the caller expects one.  (The ASL
12661compiler flags this as a warning.)
12662
12663ASL Compiler:
12664
12665Version X2011:
126661. Static typechecking of all operands is implemented. This
12667prevents the use of invalid objects (such as using a Package where
12668an Integer is required) at compile time instead of at interpreter
12669run-time.
126702. The ASL source line is printed with ALL errors and warnings.
126713. Bug fix for source EOF without final linefeed.
126724. Debug option is split into a parse trace and a namespace trace.
126735. Namespace output option (-n) includes initial values for
12674integers and strings.
126756. Parse-only option added for quick syntax checking.
126767. Compiler checks for duplicate ACPI name declarations
12677
12678Version X2012:
126791. Relaxed typechecking to allow interchangeability between
12680strings, integers, and buffers.  These types are now converted by
12681the interpreter at runtime.
126822. Compiler reports time taken by each internal subsystem in the
12683debug         output file.
12684
12685
12686 ------------------------------------------
12687Summary of changes for this label: 12_14_00
12688
12689ASL Compiler:
12690
12691This is the first official release of the compiler. Since the
12692compiler requires elements of the Core Subsystem, this label
12693synchronizes everything.
12694
12695------------------------------------------
12696Summary of changes for this label: 12_08_00
12697
12698
12699Fixed a problem where named references within the ASL definition
12700of both OperationRegions and CreateXXXFields did not work
12701properly.  The symptom was an AE_AML_OPERAND_TYPE during
12702initialization of the region/field. This is similar (but not
12703related internally) to the problem that was fixed in the last
12704label.
12705
12706Implemented both 32-bit and 64-bit support for the BCD ASL
12707functions ToBCD and FromBCD.
12708
12709Updated all legal headers to include "2000" in the copyright
12710years.
12711
12712 ------------------------------------------
12713Summary of changes for this label: 12_01_00
12714
12715Fixed a problem where method invocations within the ASL definition
12716of both OperationRegions and CreateXXXFields did not work
12717properly.  The symptom was an AE_AML_OPERAND_TYPE during
12718initialization of the region/field:
12719
12720  nsinit-0209: AE_AML_OPERAND_TYPE while getting region arguments
12721[DEBG]   ammonad-0284: Exec_monadic2_r/Not: bad operand(s)
12722(0x3005)
12723
12724Fixed a problem where operators with more than one nested
12725subexpression would fail.  The symptoms were varied, by mostly
12726AE_AML_OPERAND_TYPE errors.  This was actually a rather serious
12727problem that has gone unnoticed until now.
12728
12729  Subtract (Add (1,2), Multiply (3,4))
12730
12731Fixed a problem where AcpiGetHandle didn't quite get fixed in the
12732previous build (The prefix part of a relative path was handled
12733incorrectly).
12734
12735Fixed a problem where Operation Region initialization failed if
12736the operation region name was a "namepath" instead of a simple
12737"nameseg". Symptom was an AE_NO_OPERAND error.
12738
12739Fixed a problem where an assignment to a local variable via the
12740indirect RefOf mechanism only worked for the first such
12741assignment.  Subsequent assignments were ignored.
12742
12743 ------------------------------------------
12744Summary of changes for this label: 11_15_00
12745
12746ACPI 2.0 table support with backwards support for ACPI 1.0 and the
127470.71 extensions.  Note: although we can read ACPI 2.0 BIOS tables,
12748the AML  interpreter does NOT have support for the new 2.0 ASL
12749grammar terms at this time.
12750
12751All ACPI hardware access is via the GAS structures in the ACPI 2.0
12752FADT.
12753
12754All physical memory addresses across all platforms are now 64 bits
12755wide. Logical address width remains dependent on the platform
12756(i.e., "void *").
12757
12758AcpiOsMapMemory interface changed to a 64-bit physical address.
12759
12760The AML interpreter integer size is now 64 bits, as per the ACPI
127612.0 specification.
12762
12763For backwards compatibility with ACPI 1.0, ACPI tables with a
12764revision number less than 2 use 32-bit integers only.
12765
12766Fixed a problem where the evaluation of OpRegion operands did not
12767always resolve them to numbers properly.
12768
12769------------------------------------------
12770Summary of changes for this label: 10_20_00
12771
12772Fix for CBN_._STA issue.  This fix will allow correct access to
12773CBN_ OpRegions when the _STA returns 0x8.
12774
12775Support to convert ACPI constants (Ones, Zeros, One) to actual
12776values before a package object is returned
12777
12778Fix for method call as predicate to if/while construct causing
12779incorrect if/while behavior
12780
12781Fix for Else block package lengths sometimes calculated wrong (if
12782block > 63 bytes)
12783
12784Fix for Processor object length field, was always zero
12785
12786Table load abort if FACP sanity check fails
12787
12788Fix for problem with Scope(name) if name already exists
12789
12790Warning emitted if a named object referenced cannot be found
12791(resolved) during method execution.
12792
12793
12794
12795
12796
12797------------------------------------------
12798Summary of changes for this label: 9_29_00
12799
12800New table initialization interfaces: AcpiInitializeSubsystem no
12801longer has any parameters AcpiFindRootPointer - Find the RSDP (if
12802necessary) AcpiLoadTables (RSDP) - load all tables found at RSDP-
12803>RSDT Obsolete Interfaces AcpiLoadFirmwareTables - replaced by
12804AcpiLoadTables
12805
12806Note: These interface changes require changes to all existing OSDs
12807
12808The PCI_Config default address space handler is always installed
12809at the root namespace object.
12810
12811-------------------------------------------
12812Summary of changes for this label: 09_15_00
12813
12814The new initialization architecture is implemented.  New
12815interfaces are: AcpiInitializeSubsystem (replaces AcpiInitialize)
12816AcpiEnableSubsystem Obsolete Interfaces: AcpiLoadNamespace
12817
12818(Namespace is automatically loaded when a table is loaded)
12819
12820The ACPI_OPERAND_OBJECT has been optimized to shrink its size from
1282152 bytes to 32 bytes.  There is usually one of these for every
12822namespace object, so the memory savings is significant.
12823
12824Implemented just-in-time evaluation of the CreateField operators.
12825
12826Bug fixes for IA-64 support have been integrated.
12827
12828Additional code review comments have been implemented
12829
12830The so-called "third pass parse" has been replaced by a final walk
12831through the namespace to initialize all operation regions (address
12832spaces) and fields that have not yet been initialized during the
12833execution of the various _INI and REG methods.
12834
12835New file - namespace/nsinit.c
12836
12837-------------------------------------------
12838Summary of changes for this label: 09_01_00
12839
12840Namespace manager data structures have been reworked to change the
12841primary  object from a table to a single object.  This has
12842resulted in dynamic memory  savings of 3X within the namespace and
128432X overall in the ACPI CA subsystem.
12844
12845Fixed problem where the call to AcpiEvFindPciRootBuses was
12846inadvertently left  commented out.
12847
12848Reduced the warning count when generating the source with the GCC
12849compiler.
12850
12851Revision numbers added to each module header showing the
12852SourceSafe version of the file.  Please refer to this version
12853number when giving us feedback or comments on individual modules.
12854
12855The main object types within the subsystem have been renamed to
12856clarify their  purpose:
12857
12858ACPI_INTERNAL_OBJECT -> ACPI_OPERAND_OBJECT
12859ACPI_GENERIC_OP -> ACPI_PARSE_OBJECT
12860ACPI_NAME_TABLE_ENTRY -> ACPI_NAMESPACE_NODE
12861
12862NOTE: no changes to the initialization sequence are included in
12863this label.
12864
12865-------------------------------------------
12866Summary of changes for this label: 08_23_00
12867
12868Fixed problem where TerminateControlMethod was being called
12869multiple times per  method
12870
12871Fixed debugger problem where single stepping caused a semaphore to
12872be  oversignalled
12873
12874Improved performance through additional parse object caching -
12875added  ACPI_EXTENDED_OP type
12876
12877-------------------------------------------
12878Summary of changes for this label: 08_10_00
12879
12880Parser/Interpreter integration:  Eliminated the creation of
12881complete parse trees  for ACPI tables and control methods.
12882Instead, parse subtrees are created and  then deleted as soon as
12883they are processed (Either entered into the namespace or  executed
12884by the interpreter).  This reduces the use of dynamic kernel
12885memory  significantly. (about 10X)
12886
12887Exception codes broken into classes and renumbered.  Be sure to
12888recompile all  code that includes acexcep.h.  Hopefully we won't
12889have to renumber the codes  again now that they are split into
12890classes (environment, programmer, AML code,  ACPI table, and
12891internal).
12892
12893Fixed some additional alignment issues in the Resource Manager
12894subcomponent
12895
12896Implemented semaphore tracking in the AcpiExec utility, and fixed
12897several places  where mutexes/semaphores were being unlocked
12898without a corresponding lock  operation.  There are no known
12899semaphore or mutex "leaks" at this time.
12900
12901Fixed the case where an ASL Return operator is used to return an
12902unnamed  package.
12903
12904-------------------------------------------
12905Summary of changes for this label: 07_28_00
12906
12907Fixed a problem with the way addresses were calculated in
12908AcpiAmlReadFieldData()  and AcpiAmlWriteFieldData(). This problem
12909manifested itself when a Field was  created with WordAccess or
12910DwordAccess, but the field unit defined within the  Field was less
12911
12912than a Word or Dword.
12913
12914Fixed a problem in AmlDumpOperands() module's loop to pull
12915operands off of the  operand stack to display information. The
12916problem manifested itself as a TLB  error on 64-bit systems when
12917accessing an operand stack with two or more  operands.
12918
12919Fixed a problem with the PCI configuration space handlers where
12920context was  getting confused between accesses. This required a
12921change to the generic address  space handler and address space
12922setup definitions. Handlers now get both a  global handler context
12923(this is the one passed in by the user when executing
12924AcpiInstallAddressSpaceHandler() and a specific region context
12925that is unique to  each region (For example, the _ADR, _SEG and
12926_BBN values associated with a  specific region). The generic
12927function definitions have changed to the  following:
12928
12929typedef ACPI_STATUS (*ADDRESS_SPACE_HANDLER) ( UINT32 Function,
12930UINT32 Address, UINT32 BitWidth, UINT32 *Value, void
12931*HandlerContext, // This used to be void *Context void
12932*RegionContext); // This is an additional parameter
12933
12934typedef ACPI_STATUS (*ADDRESS_SPACE_SETUP) ( ACPI_HANDLE
12935RegionHandle, UINT32 Function, void *HandlerContext,  void
12936**RegionContext); // This used to be **ReturnContext
12937
12938-------------------------------------------
12939Summary of changes for this label: 07_21_00
12940
12941Major file consolidation and rename.  All files within the
12942interpreter have been  renamed as well as most header files.  This
12943was done to prevent collisions with  existing files in the host
12944OSs -- filenames such as "config.h" and "global.h"  seem to be
12945quite common.  The VC project files have been updated.  All
12946makefiles  will require modification.
12947
12948The parser/interpreter integration continues in Phase 5 with the
12949implementation  of a complete 2-pass parse (the AML is parsed
12950twice) for each table;  This  avoids the construction of a huge
12951parse tree and therefore reduces the amount of  dynamic memory
12952required by the subsystem.  Greater use of the parse object cache
12953means that performance is unaffected.
12954
12955Many comments from the two code reviews have been rolled in.
12956
12957The 64-bit alignment support is complete.
12958
12959-------------------------------------------
12960Summary of changes for this label: 06_30_00
12961
12962With a nod and a tip of the hat to the technology of yesteryear,
12963we've added  support in the source code for 80 column output
12964devices.  The code is now mostly  constrained to 80 columns or
12965less to support environments and editors that 1)  cannot display
12966or print more than 80 characters on a single line, and 2) cannot
12967disable line wrapping.
12968
12969A major restructuring of the namespace data structure has been
12970completed.  The  result is 1) cleaner and more
12971understandable/maintainable code, and 2) a  significant reduction
12972in the dynamic memory requirement for each named ACPI  object
12973(almost half).
12974
12975-------------------------------------------
12976Summary of changes for this label: 06_23_00
12977
12978Linux support has been added.  In order to obtain approval to get
12979the ACPI CA  subsystem into the Linux kernel, we've had to make
12980quite a few changes to the  base subsystem that will affect all
12981users (all the changes are generic and OS- independent).  The
12982effects of these global changes have been somewhat far  reaching.
12983Files have been merged and/or renamed and interfaces have been
12984renamed.   The major changes are described below.
12985
12986Osd* interfaces renamed to AcpiOs* to eliminate namespace
12987pollution/confusion  within our target kernels.  All OSD
12988interfaces must be modified to match the new  naming convention.
12989
12990Files merged across the subsystem.  A number of the smaller source
12991and header  files have been merged to reduce the file count and
12992increase the density of the  existing files.  There are too many
12993to list here.  In general, makefiles that  call out individual
12994files will require rebuilding.
12995
12996Interpreter files renamed.  All interpreter files now have the
12997prefix am*  instead of ie* and is*.
12998
12999Header files renamed:  The acapi.h file is now acpixf.h.  The
13000acpiosd.h file is  now acpiosxf.h.  We are removing references to
13001the acronym "API" since it is  somewhat windowsy. The new name is
13002"external interface" or xface or xf in the  filenames.j
13003
13004
13005All manifest constants have been forced to upper case (some were
13006mixed case.)   Also, the string "ACPI_" has been prepended to many
13007(not all) of the constants,  typedefs, and structs.
13008
13009The globals "DebugLevel" and "DebugLayer" have been renamed
13010"AcpiDbgLevel" and  "AcpiDbgLayer" respectively.
13011
13012All other globals within the subsystem are now prefixed with
13013"AcpiGbl_" Internal procedures within the subsystem are now
13014prefixed with "Acpi" (with only  a few exceptions).  The original
13015two-letter abbreviation for the subcomponent  remains after "Acpi"
13016- for example, CmCallocate became AcpiCmCallocate.
13017
13018Added a source code translation/conversion utility.  Used to
13019generate the Linux  source code, it can be modified to generate
13020other types of source as well. Can  also be used to cleanup
13021existing source by removing extraneous spaces and blank  lines.
13022Found in tools/acpisrc/*
13023
13024OsdUnMapMemory was renamed to OsdUnmapMemory and then
13025AcpiOsUnmapMemory.  (UnMap  became Unmap).
13026
13027A "MaxUnits" parameter has been added to AcpiOsCreateSemaphore.
13028When set to  one, this indicates that the caller wants to use the
13029
13030semaphore as a mutex, not a  counting semaphore.  ACPI CA uses
13031both types.  However, implementers of this  call may want to use
13032different OS primitives depending on the type of semaphore
13033requested.  For example, some operating systems provide separate
13034
13035"mutex" and  "semaphore" interfaces - where the mutex interface is
13036much faster because it  doesn't have all the overhead of a full
13037semaphore implementation.
13038
13039Fixed a deadlock problem where a method that accesses the PCI
13040address space can  block forever if it is the first access to the
13041space.
13042
13043-------------------------------------------
13044Summary of changes for this label: 06_02_00
13045
13046Support for environments that cannot handle unaligned data
13047accesses (e.g.  firmware and OS environments devoid of alignment
13048handler technology namely  SAL/EFI and the IA-64 Linux kernel) has
13049been added (via configurable macros) in  these three areas: -
13050Transfer of data from the raw AML byte stream is done via byte
13051moves instead of    word/dword/qword moves. - External objects are
13052aligned within the user buffer, including package   elements (sub-
13053objects). - Conversion of name strings to UINT32 Acpi Names is now
13054done byte-wise.
13055
13056The Store operator was modified to mimic Microsoft's
13057implementation when storing  to a Buffer Field.
13058
13059Added a check of the BM_STS bit before entering C3.
13060
13061The methods subdirectory has been obsoleted and removed.  A new
13062file, cmeval.c  subsumes the functionality.
13063
13064A 16-bit (DOS) version of AcpiExec has been developed.  The
13065makefile is under  the acpiexec directory.
13066