Merge branch 'vendor/LIBPCAP'
[dragonfly.git] / sys / contrib / dev / acpica / changes.txt
1 ----------------------------------------
2 24 April 2014. Summary of changes for version 20140424:
3
4 1) ACPICA kernel-resident subsystem:
5
6 Implemented support to skip/ignore NULL address entries in the RSDT/XSDT. 
7 Some of these tables are known to contain a trailing NULL entry. Lv 
8 Zheng.
9
10 Removed an extraneous error message for the case where there are a large 
11 number of system GPEs (> 124). This was the "32-bit FADT register is too 
12 long to convert to GAS struct" message, which is irrelevant for GPEs 
13 since the GPEx_BLK_LEN fields of the FADT are always used instead of the 
14 (limited capacity) GAS bit length. Also, several changes to ensure proper 
15 support for GPE numbers > 255, where some "GPE number" fields were 8-bits 
16 internally.
17
18 Implemented and deployed additional configuration support for the public 
19 ACPICA external interfaces. Entire classes of interfaces can now be 
20 easily modified or configured out, replaced by stubbed inline functions 
21 by default. Lv Zheng.
22
23 Moved all public ACPICA runtime configuration globals to the public 
24 ACPICA external interface file for convenience. Also, removed some 
25 obsolete/unused globals. See the file acpixf.h. Lv Zheng.
26
27 Documentation: Added a new section to the ACPICA reference describing the 
28 maximum number of GPEs that can be supported by the FADT-defined GPEs in 
29 block zero and one. About 1200 total. See section 4.4.1 of the ACPICA 
30 reference.
31
32 Example Code and Data Size: These are the sizes for the OS-independent 
33 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
34 debug version of the code includes the debug output trace mechanism and 
35 has a much larger code and data size.
36
37   Current Release:
38     Non-Debug Version:  96.8K Code, 27.2K Data, 124.0K Total
39     Debug Version:     189.5K Code, 79.7K Data, 269.2K Total
40   Previous Release:
41     Non-Debug Version:  97.0K Code, 27.2K Data, 124.2K Total
42     Debug Version:     189.7K Code, 79.5K Data, 269.2K Total
43
44
45 2) iASL Compiler/Disassembler and Tools:
46
47 iASL and disassembler: Add full support for the LPIT table (Low Power 
48 Idle Table). Includes support in the disassembler, data table compiler, 
49 and template generator.
50
51 AcpiDump utility:
52 1) Add option to force the use of the RSDT (over the XSDT).
53 2) Improve validation of the RSDP signature (use 8 chars instead of 4).
54
55 iASL: Add check for predefined packages that are too large.  For 
56 predefined names that contain subpackages, check if each subpackage is 
57 too large. (Check for too small already exists.)
58
59 Debugger: Updated the GPE command (which simulates a GPE by executing the 
60 GPE code paths in ACPICA). The GPE device is now optional, and defaults 
61 to the GPE 0/1 FADT-defined blocks.
62
63 Unix application OSL: Update line-editing support. Add additional error 
64 checking and take care not to reset terminal attributes on exit if they 
65 were never set. This should help guarantee that the terminal is always 
66 left in the previous state on program exit.
67
68 ----------------------------------------
69 25 March 2014. Summary of changes for version 20140325:
70
71 1) ACPICA kernel-resident subsystem:
72
73 Updated the auto-serialize feature for control methods. This feature 
74 automatically serializes all methods that create named objects in order 
75 to prevent runtime errors. The update adds support to ignore the 
76 currently executing AML SyncLevel when invoking such a method, in order 
77 to prevent disruption of any existing SyncLevel priorities that may exist 
78 in the AML code. Although the use of SyncLevels is relatively rare, this 
79 change fixes a regression where an AE_AML_MUTEX_ORDER exception can 
80 appear on some machines starting with the 20140214 release.
81
82 Added a new external interface to allow the host to install ACPI tables 
83 very early, before the namespace is even created. AcpiInstallTable gives 
84 the host additional flexibility for ACPI table management. Tables can be 
85 installed directly by the host as if they had originally appeared in the 
86 XSDT/RSDT. Installed tables can be SSDTs or other ACPI data tables 
87 (anything except the DSDT and FACS). Adds a new file, tbdata.c, along 
88 with additional internal restructuring and cleanup. See the ACPICA 
89 Reference for interface details. Lv Zheng.
90
91 Added validation of the checksum for all incoming dynamically loaded 
92 tables (via external interfaces or via AML Load/LoadTable operators). Lv 
93 Zheng.
94
95 Updated the use of the AcpiOsWaitEventsComplete interface during Notify 
96 and GPE handler removal. Restructured calls to eliminate possible race 
97 conditions. Lv Zheng.
98
99 Added a warning for the use/execution of the ASL/AML Unload (table) 
100 operator. This will help detect and identify machines that use this 
101 operator if and when it is ever used. This operator has never been seen 
102 in the field and the usage model and possible side-effects of the drastic 
103 runtime action of a full table removal are unknown.
104
105 Reverted the use of #pragma push/pop which was introduced in the 20140214 
106 release. It appears that push and pop are not implemented by enough 
107 compilers to make the use of this feature feasible for ACPICA at this 
108 time. However, these operators may be deployed in a future ACPICA 
109 release.
110
111 Added the missing EXPORT_SYMBOL macros for the install and remove SCI 
112 handler interfaces.
113
114 Source code generation:
115 1) Disabled the use of the "strchr" macro for the gcc-specific 
116 generation. For some versions of gcc, this macro can periodically expose 
117 a compiler bug which in turn causes compile-time error(s).
118 2) Added support for PPC64 compilation. Colin Ian King.
119
120 Example Code and Data Size: These are the sizes for the OS-independent 
121 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
122 debug version of the code includes the debug output trace mechanism and 
123 has a much larger code and data size.
124
125   Current Release:
126     Non-Debug Version:  97.0K Code, 27.2K Data, 124.2K Total
127     Debug Version:     189.7K Code, 79.5K Data, 269.2K Total
128   Previous Release:
129     Non-Debug Version:  96.5K Code, 27.2K Data, 123.7K Total
130     Debug Version:     188.6K Code, 79.0K Data, 267.6K Total
131
132
133 2) iASL Compiler/Disassembler and Tools:
134
135 Disassembler: Added several new features to improve the readability of 
136 the resulting ASL code. Extra information is emitted within comment 
137 fields in the ASL code:
138 1) Known _HID/_CID values are decoded to descriptive text.
139 2) Standard values for the Notify() operator are decoded to descriptive 
140 text.
141 3) Target operands are expanded to full pathnames (in a comment) when 
142 possible.
143
144 Disassembler: Miscellaneous updates for extern() handling:
145 1) Abort compiler if file specified by -fe option does not exist.
146 2) Silence unnecessary warnings about argument count mismatches.
147 3) Update warning messages concerning unresolved method externals.
148 4) Emit "UnknownObj" keyword for externals whose type cannot be 
149 determined.
150
151 AcpiHelp utility:
152 1) Added the -a option to display both the ASL syntax and the AML 
153 encoding for an input ASL operator. This effectively displays all known 
154 information about an ASL operator with one AcpiHelp invocation.
155 2) Added substring match support (similar to a wildcard) for the -i 
156 (_HID/PNP IDs) option.
157
158 iASL/Disassembler: Since this tool does not yet support execution on big-
159 endian machines, added detection of endianness and an error message if 
160 execution is attempted on big-endian. Support for big-endian within iASL 
161 is a feature that is on the ACPICA to-be-done list.
162
163 AcpiBin utility:
164 1) Remove option to extract binary files from an acpidump; this function 
165 is made obsolete by the AcpiXtract utility.
166 2) General cleanup of open files and allocated buffers.
167
168 ----------------------------------------
169 14 February 2014. Summary of changes for version 20140214:
170
171 1) ACPICA kernel-resident subsystem:
172
173 Implemented a new mechanism to proactively prevent problems with ill-
174 behaved reentrant control methods that create named ACPI objects. This 
175 behavior is illegal as per the ACPI specification, but is nonetheless 
176 frequently seen in the field. Previously, this could lead to an 
177 AE_ALREADY_EXISTS exception if the method was actually entered by more 
178 than one thread. This new mechanism detects such methods at table load 
179 time and marks them "serialized" to prevent reentrancy. A new global 
180 option, AcpiGbl_AutoSerializeMethods, has been added to disable this 
181 feature if desired. This mechanism and global option obsoletes and 
182 supersedes the previous AcpiGbl_SerializeAllMethods option.
183
184 Added the "Windows 2013" string to the _OSI support. ACPICA will now 
185 respond TRUE to _OSI queries with this string. It is the stated policy of 
186 ACPICA to add new strings to the _OSI support as soon as possible after 
187 they are defined. See the full ACPICA _OSI policy which has been added to 
188 the utilities/utosi.c file.
189
190 Hardened/updated the _PRT return value auto-repair code:
191 1) Do not abort the repair on a single subpackage failure, continue to 
192 check all subpackages.
193 2) Add check for the minimum subpackage length (4).
194 3) Properly handle extraneous NULL package elements.
195
196 Added support to avoid the possibility of infinite loops when traversing 
197 object linked lists. Never allow an infinite loop, even in the face of 
198 corrupted object lists.
199
200 ACPICA headers: Deployed the use of #pragma pack(push) and #pragma 
201 pack(pop) directives to ensure that the ACPICA headers are independent of 
202 compiler settings or other host headers.
203
204 Example Code and Data Size: These are the sizes for the OS-independent 
205 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
206 debug version of the code includes the debug output trace mechanism and 
207 has a much larger code and data size.
208
209   Current Release:
210     Non-Debug Version:  96.5K Code, 27.2K Data, 123.7K Total
211     Debug Version:     188.6K Code, 79.0K Data, 267.6K Total
212   Previous Release:
213     Non-Debug Version:  96.2K Code, 27.0K Data, 123.2K Total
214     Debug Version:     187.5K Code, 78.3K Data, 265.8K Total
215
216
217 2) iASL Compiler/Disassembler and Tools:
218
219 iASL/Table-compiler: Fixed a problem with support for the SPMI table. The 
220 first reserved field was incorrectly forced to have a value of zero. This 
221 change correctly forces the field to have a value of one. ACPICA BZ 1081.
222
223 Debugger: Added missing support for the "Extra" and "Data" subobjects 
224 when displaying object data.
225
226 Debugger: Added support to display entire object linked lists when 
227 displaying object data.
228
229 iASL: Removed the obsolete -g option to obtain ACPI tables from the 
230 Windows registry. This feature has been superseded by the acpidump 
231 utility. 
232
233 ----------------------------------------
234 14 January 2014. Summary of changes for version 20140114:
235
236 1) ACPICA kernel-resident subsystem:
237
238 Updated all ACPICA copyrights and signons to 2014. Added the 2014 
239 copyright to all module headers and signons, including the standard Linux 
240 header. This affects virtually every file in the ACPICA core subsystem, 
241 iASL compiler, all ACPICA utilities, and the test suites.
242
243 Improved parameter validation for AcpiInstallGpeBlock. Added the 
244 following checks:
245 1) The incoming device handle refers to type ACPI_TYPE_DEVICE.
246 2) There is not already a GPE block attached to the device.
247 Likewise, with AcpiRemoveGpeBlock, ensure that the incoming object is a 
248 device.
249
250 Correctly support "references" in the ACPI_OBJECT. This change fixes the 
251 support to allow references (namespace nodes) to be passed as arguments 
252 to control methods via the evaluate object interface. This is probably 
253 most useful for testing purposes, however.
254
255 Improved support for 32/64 bit physical addresses in printf()-like 
256 output. This change improves the support for physical addresses in printf 
257 debug statements and other output on both 32-bit and 64-bit hosts. It 
258 consistently outputs the appropriate number of bytes for each host. The 
259 %p specifier is unsatisfactory since it does not emit uniform output on 
260 all hosts/clib implementations (on some, leading zeros are not supported, 
261 leading to difficult-to-read output).
262
263 Example Code and Data Size: These are the sizes for the OS-independent 
264 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
265 debug version of the code includes the debug output trace mechanism and 
266 has a much larger code and data size.
267
268   Current Release:
269     Non-Debug Version:  96.2K Code, 27.0K Data, 123.2K Total
270     Debug Version:     187.5K Code, 78.3K Data, 265.8K Total
271   Previous Release:
272     Non-Debug Version:  96.1K Code, 27.0K Data, 123.1K Total
273     Debug Version:     185.6K Code, 77.3K Data, 262.9K Total
274
275
276 2) iASL Compiler/Disassembler and Tools:
277
278 iASL: Fix a possible fault when using the Connection() operator. Fixes a 
279 problem if the parent Field definition for the Connection operator refers 
280 to an operation region that does not exist. ACPICA BZ 1064.
281
282 AcpiExec: Load of local test tables is now optional. The utility has the 
283 capability to load some various tables to test features of ACPICA. 
284 However, there are enough of them that the output of the utility became 
285 confusing. With this change, only the required local tables are displayed 
286 (RSDP, XSDT, etc.) along with the actual tables loaded via the command 
287 line specification. This makes the default output simler and easier to 
288 understand. The -el command line option restores the original behavior 
289 for testing purposes.
290
291 AcpiExec: Added support for overlapping operation regions. This change 
292 expands the simulation of operation regions by supporting regions that 
293 overlap within the given address space. Supports SystemMemory and 
294 SystemIO. ASLTS test suite updated also. David Box. ACPICA BZ 1031.
295
296 AcpiExec: Added region handler support for PCI_Config and EC spaces. This 
297 allows AcpiExec to simulate these address spaces, similar to the current 
298 support for SystemMemory and SystemIO.
299
300 Debugger: Added new command to read/write/compare all namespace objects. 
301 The command "test objects" will exercise the entire namespace by writing 
302 new values to each data object, and ensuring that the write was 
303 successful. The original value is then restored and verified.
304
305 Debugger: Added the "test predefined" command. This change makes this 
306 test public and puts it under the new "test" command. The test executes 
307 each and every predefined name within the current namespace.
308
309 ----------------------------------------
310 18 December 2013. Summary of changes for version 20131218:
311
312 Global note: The ACPI 5.0A specification was released this month. There 
313 are no changes needed for ACPICA since this release of ACPI is an 
314 errata/clarification release. The specification is available at 
315 acpi.info. 
316
317
318 1) ACPICA kernel-resident subsystem:
319
320 Added validation of the XSDT root table if it is present. Some older 
321 platforms contain an XSDT that is ill-formed or otherwise invalid (such 
322 as containing some or all entries that are NULL pointers). This change 
323 adds a new function to validate the XSDT before actually using it. If the 
324 XSDT is found to be invalid, ACPICA will now automatically fall back to 
325 using the RSDT instead. Original implementation by Zhao Yakui. Ported to 
326 ACPICA and enhanced by Lv Zheng and Bob Moore.
327
328 Added a runtime option to ignore the XSDT and force the use of the RSDT. 
329 This change adds a runtime option that will force ACPICA to use the RSDT 
330 instead of the XSDT (AcpiGbl_DoNotUseXsdt). Although the ACPI spec 
331 requires that an XSDT be used instead of the RSDT, the XSDT has been 
332 found to be corrupt or ill-formed on some machines. Lv Zheng.
333
334 Added a runtime option to favor 32-bit FADT register addresses over the 
335 64-bit addresses. This change adds an option to favor 32-bit FADT 
336 addresses when there is a conflict between the 32-bit and 64-bit versions 
337 of the same register. The default behavior is to use the 64-bit version 
338 in accordance with the ACPI specification. This can now be overridden via 
339 the AcpiGbl_Use32BitFadtAddresses flag. ACPICA BZ 885. Lv Zheng.
340
341 During the change above, the internal "Convert FADT" and "Verify FADT" 
342 functions have been merged to simplify the code, making it easier to 
343 understand and maintain. ACPICA BZ 933.
344
345 Improve exception reporting and handling for GPE block installation. 
346 Return an actual status from AcpiEvGetGpeXruptBlock and don't clobber the 
347 status when exiting AcpiEvInstallGpeBlock. ACPICA BZ 1019.
348
349 Added helper macros to extract bus/segment numbers from the HEST table. 
350 This change adds two macros to extract the encoded bus and segment 
351 numbers from the HEST Bus field - ACPI_HEST_BUS and ACPI_HEST_SEGMENT. 
352 Betty Dall <betty.dall@hp.com>
353
354 Removed the unused ACPI_FREE_BUFFER macro. This macro is no longer used 
355 by ACPICA. It is not a public macro, so it should have no effect on 
356 existing OSV code. Lv Zheng.
357
358 Example Code and Data Size: These are the sizes for the OS-independent 
359 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
360 debug version of the code includes the debug output trace mechanism and 
361 has a much larger code and data size.
362
363   Current Release:
364     Non-Debug Version:  96.1K Code, 27.0K Data, 123.1K Total
365     Debug Version:     185.6K Code, 77.3K Data, 262.9K Total
366   Previous Release:
367     Non-Debug Version:  95.9K Code, 27.0K Data, 122.9K Total
368     Debug Version:     185.1K Code, 77.2K Data, 262.3K Total
369
370
371 2) iASL Compiler/Disassembler and Tools:
372
373 Disassembler: Improved pathname support for emitted External() 
374 statements. This change adds full pathname support for external names 
375 that have been resolved internally by the inclusion of additional ACPI 
376 tables (via the iASL -e option). Without this change, the disassembler 
377 can emit multiple externals for the same object, or it become confused 
378 when the Scope() operator is used on an external object. Overall, greatly 
379 improves the ability to actually recompile the emitted ASL code when 
380 objects a referenced across multiple ACPI tables. Reported by Michael 
381 Tsirkin (mst@redhat.com).
382
383 Tests/ASLTS: Updated functional control suite to execute with no errors. 
384 David Box. Fixed several errors related to the testing of the interpreter 
385 slack mode. Lv Zheng.
386
387 iASL: Added support to detect names that are declared within a control 
388 method, but are unused (these are temporary names that are only valid 
389 during the time the method is executing). A remark is issued for these 
390 cases. ACPICA BZ 1022.
391
392 iASL: Added full support for the DBG2 table. Adds full disassembler, 
393 table compiler, and template generator support for the DBG2 table (Debug 
394 Port 2 table).
395
396 iASL: Added full support for the PCCT table, update the table definition. 
397 Updates the PCCT table definition in the actbl3.h header and adds table 
398 compiler and template generator support.
399
400 iASL: Added an option to emit only error messages (no warnings/remarks). 
401 The -ve option will enable only error messages, warnings and remarks are 
402 suppressed. This can simplify debugging when only the errors are 
403 important, such as when an ACPI table is disassembled and there are many 
404 warnings and remarks -- but only the actual errors are of real interest.
405
406 Example ACPICA code (source/tools/examples): Updated the example code so 
407 that it builds to an actual working program, not just example code. Added 
408 ACPI tables and execution of an example control method in the DSDT. Added 
409 makefile support for Unix generation.
410
411 ----------------------------------------
412 15 November 2013. Summary of changes for version 20131115:
413
414 This release is available at https://acpica.org/downloads
415
416
417 1) ACPICA kernel-resident subsystem:
418
419 Resource Manager: Fixed loop termination for the "get AML length" 
420 function. The loop previously had an error termination on a NULL resource 
421 pointer, which can never happen since the loop simply increments a valid 
422 resource pointer. This fix changes the loop to terminate with an error on 
423 an invalid end-of-buffer condition. The problem can be seen as an 
424 infinite loop by callers to AcpiSetCurrentResources with an invalid or 
425 corrupted resource descriptor, or a resource descriptor that is missing 
426 an END_TAG descriptor. Reported by Dan Carpenter 
427 <dan.carpenter@oracle.com>. Lv Zheng, Bob Moore.
428
429 Table unload and ACPICA termination: Delete all attached data objects 
430 during namespace node deletion. This fix updates namespace node deletion 
431 to delete the entire list of attached objects (attached via 
432 AcpiAttachObject) instead of just one of the attached items. ACPICA BZ 
433 1024. Tomasz Nowicki (tomasz.nowicki@linaro.org).
434
435 ACPICA termination: Added support to delete all objects attached to the 
436 root namespace node. This fix deletes any and all objects that have been 
437 attached to the root node via AcpiAttachData. Previously, none of these 
438 objects were deleted. Reported by Tomasz Nowicki. ACPICA BZ 1026.
439
440 Debug output: Do not emit the function nesting level for the in-kernel 
441 build. The nesting level is really only useful during a single-thread 
442 execution. Therefore, only enable this output for the AcpiExec utility. 
443 Also, only emit the thread ID when executing under AcpiExec (Context 
444 switches are still always detected and a message is emitted). ACPICA BZ 
445 972.
446
447 Example Code and Data Size: These are the sizes for the OS-independent 
448 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
449 debug version of the code includes the debug output trace mechanism and 
450 has a much larger code and data size.
451
452   Current Release:
453     Non-Debug Version:  95.9K Code, 27.0K Data, 122.9K Total
454     Debug Version:     185.1K Code, 77.2K Data, 262.3K Total
455   Previous Release:
456     Non-Debug Version:  95.8K Code, 27.0K Data, 122.8K Total
457     Debug Version:     185.2K Code, 77.2K Data, 262.4K Total
458
459
460 2) iASL Compiler/Disassembler and Tools:
461
462 AcpiExec/Unix-OSL: Use <termios.h> instead of <termio.h>. This is the 
463 correct portable POSIX header for terminal control functions.
464
465 Disassembler: Fixed control method invocation issues related to the use 
466 of the CondRefOf() operator. The problem is seen in the disassembly where 
467 control method invocations may not be disassembled properly if the 
468 control method name has been used previously as an argument to CondRefOf. 
469 The solution is to not attempt to emit an external declaration for the 
470 CondRefOf target (it is not necessary in the first place). This prevents 
471 disassembler object type confusion. ACPICA BZ 988.
472
473 Unix Makefiles: Added an option to disable compiler optimizations and the 
474 _FORTIFY_SOURCE flag. Some older compilers have problems compiling ACPICA 
475 with optimizations (reportedly, gcc 4.4 for example). This change adds a 
476 command line option for make (NOOPT) that disables all compiler 
477 optimizations and the _FORTIFY_SOURCE compiler flag. The default 
478 optimization is -O2 with the _FORTIFY_SOURCE flag specified. ACPICA BZ 
479 1034. Lv Zheng, Bob Moore.
480
481 Tests/ASLTS: Added options to specify individual test cases and modes. 
482 This allows testers running aslts.sh to optionally specify individual 
483 test modes and test cases. Also added an option to disable the forced 
484 generation of the ACPICA tools from source if desired. Lv Zheng.
485
486 ----------------------------------------
487 27 September 2013. Summary of changes for version 20130927:
488
489 This release is available at https://acpica.org/downloads
490
491
492 1) ACPICA kernel-resident subsystem:
493
494 Fixed a problem with store operations to reference objects. This change 
495 fixes a problem where a Store operation to an ArgX object that contained 
496
497 reference to a field object did not complete the automatic dereference 
498 and 
499 then write to the actual field object. Instead, the object type of the 
500 field object was inadvertently changed to match the type of the source 
501 operand. The new behavior will actually write to the field object (buffer 
502 field or field unit), thus matching the correct ACPI-defined behavior.
503
504 Implemented support to allow the host to redefine individual OSL 
505 prototypes. This change enables the host to redefine OSL prototypes found 
506 in the acpiosxf.h file. This allows the host to implement OSL interfaces 
507 with a macro or inlined function. Further, it allows the host to add any 
508 additional required modifiers such as __iomem, __init, __exit, etc., as 
509 necessary on a per-interface basis. Enables maximum flexibility for the 
510 OSL interfaces. Lv Zheng.
511
512 Hardcoded the access width for the FADT-defined reset register. The ACPI 
513 specification requires the reset register width to be 8 bits. ACPICA now 
514 hardcodes the width to 8 and ignores the FADT width value. This provides 
515 compatibility with other ACPI implementations that have allowed BIOS code 
516 with bad register width values to go unnoticed. Matthew Garett, Bob 
517 Moore, 
518 Lv Zheng.
519
520 Changed the position/use of the ACPI_PRINTF_LIKE macro. This macro is 
521 used 
522 in the OSL header (acpiosxf). The change modifies the position of this 
523 macro in each instance where it is used (AcpiDebugPrint, etc.) to avoid 
524 build issues if the OSL defines the implementation of the interface to be 
525 an inline stub function. Lv Zheng.
526
527 Deployed a new macro ACPI_EXPORT_SYMBOL_INIT for the main ACPICA 
528 initialization interfaces. This change adds a new macro for the main init 
529 and terminate external interfaces in order to support hosts that require 
530 additional or different processing for these functions. Changed from 
531 ACPI_EXPORT_SYMBOL to ACPI_EXPORT_SYMBOL_INIT for these functions. Lv 
532 Zheng, Bob Moore.
533
534 Cleaned up the memory allocation macros for configurability. In the 
535 common 
536 case, the ACPI_ALLOCATE and related macros now resolve directly to their 
537 respective AcpiOs* OSL interfaces. Two options:
538 1) The ACPI_ALLOCATE_ZEROED macro uses a simple local implementation by 
539 default, unless overridden by the USE_NATIVE_ALLOCATE_ZEROED define.
540 2) For AcpiExec (and for debugging), the macros can optionally be 
541 resolved 
542 to the local ACPICA interfaces that track each allocation (local tracking 
543 is used to immediately detect memory leaks).
544 Lv Zheng.
545
546 Simplified the configuration for ACPI_REDUCED_HARDWARE. Allows the kernel 
547 to predefine this macro to either TRUE or FALSE during the system build.
548
549 Replaced __FUNCTION_ with __func__ in the gcc-specific header.
550
551 Example Code and Data Size: These are the sizes for the OS-independent 
552 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
553 debug version of the code includes the debug output trace mechanism and 
554 has a much larger code and data size.
555
556   Current Release:
557     Non-Debug Version:  95.8K Code, 27.0K Data, 122.8K Total
558     Debug Version:     185.2K Code, 77.2K Data, 262.4K Total
559   Previous Release:
560     Non-Debug Version:  96.7K Code, 27.1K Data, 123.9K Total
561     Debug Version:     184.4K Code, 76.8K Data, 261.2K Total
562
563
564 2) iASL Compiler/Disassembler and Tools:
565
566 iASL: Implemented wildcard support for the -e option. This simplifies use 
567 when there are many SSDTs that must be included to resolve external 
568 method 
569 declarations. ACPICA BZ 1041. Example:
570     iasl -e ssdt*.dat -d dsdt.dat
571
572 AcpiExec: Add history/line-editing for Unix/Linux systems. This change 
573 adds a portable module that implements full history and limited line 
574 editing for Unix and Linux systems. It does not use readline() due to 
575 portability issues. Instead it uses the POSIX termio interface to put the 
576 terminal in raw input mode so that the various special keys can be 
577 trapped 
578 (such as up/down-arrow for history support and left/right-arrow for line 
579 editing). Uses the existing debugger history mechanism. ACPICA BZ 1036.
580
581 AcpiXtract: Add support to handle (ignore) "empty" lines containing only 
582 one or more spaces. This provides compatible with early or different 
583 versions of the AcpiDump utility. ACPICA BZ 1044.
584
585 AcpiDump: Do not ignore tables that contain only an ACPI table header. 
586 Apparently, some BIOSs create SSDTs that contain an ACPI table header but 
587 no other data. This change adds support to dump these tables. Any tables 
588 shorter than the length of an ACPI table header remain in error (an error 
589 message is emitted). Reported by Yi Li.
590
591 Debugger: Echo actual command along with the "unknown command" message.
592
593 ----------------------------------------
594 23 August 2013. Summary of changes for version 20130823:
595
596 1) ACPICA kernel-resident subsystem:
597
598 Implemented support for host-installed System Control Interrupt (SCI) 
599 handlers. Certain ACPI functionality requires the host to handle raw 
600 SCIs. For example, the "SCI Doorbell" that is defined for memory power 
601 state support requires the host device driver to handle SCIs to examine 
602 if the doorbell has been activated. Multiple SCI handlers can be 
603 installed to allow for future expansion. New external interfaces are 
604 AcpiInstallSciHandler, AcpiRemoveSciHandler; see the ACPICA reference for 
605 details. Lv Zheng, Bob Moore. ACPICA BZ 1032.
606
607 Operation region support: Never locally free the handler "context" 
608 pointer. This change removes some dangerous code that attempts to free 
609 the handler context pointer in some (rare) circumstances. The owner of 
610 the handler owns this pointer and the ACPICA code should never touch it. 
611 Although not seen to be an issue in any kernel, it did show up as a 
612 problem (fault) under AcpiExec. Also, set the internal storage field for 
613 the context pointer to zero when the region is deactivated, simply for 
614 sanity. David Box. ACPICA BZ 1039.
615
616 AcpiRead: On error, do not modify the return value target location. If an 
617 error happens in the middle of a split 32/32 64-bit I/O operation, do not 
618 modify the target of the return value pointer. Makes the code consistent 
619 with the rest of ACPICA. Bjorn Helgaas.
620
621 Example Code and Data Size: These are the sizes for the OS-independent 
622 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
623 debug version of the code includes the debug output trace mechanism and 
624 has a much larger code and data size.
625
626   Current Release:
627     Non-Debug Version:  96.7K Code, 27.1K Data, 123.9K Total
628     Debug Version:     184.4K Code, 76.8K Data, 261.2K Total
629   Previous Release:
630     Non-Debug Version:  96.2K Code, 27.1K Data, 123.3K Total
631     Debug Version:     185.4K Code, 77.1K Data, 262.5K Total
632
633
634 2) iASL Compiler/Disassembler and Tools:
635
636 AcpiDump: Implemented several new features and fixed some problems:
637 1) Added support to dump the RSDP, RSDT, and XSDT tables.
638 2) Added support for multiple table instances (SSDT, UEFI).
639 3) Added option to dump "customized" (overridden) tables (-c).
640 4) Fixed a problem where some table filenames were improperly 
641 constructed.
642 5) Improved some error messages, removed some unnecessary messages.
643
644 iASL: Implemented additional support for disassembly of ACPI tables that 
645 contain invocations of external control methods. The -fe<file> option 
646 allows the import of a file that specifies the external methods along 
647 with the required number of arguments for each -- allowing for the 
648 correct disassembly of the table. This is a workaround for a limitation 
649 of AML code where the disassembler often cannot determine the number of 
650 arguments required for an external control method and generates incorrect 
651 ASL code. See the iASL reference for details. ACPICA BZ 1030.
652
653 Debugger: Implemented a new command (paths) that displays the full 
654 pathnames (namepaths) and object types of all objects in the namespace. 
655 This is an alternative to the namespace command.
656
657 Debugger: Implemented a new command (sci) that invokes the SCI dispatch 
658 mechanism and any installed handlers.
659
660 iASL: Fixed a possible segfault for "too many parent prefixes" condition. 
661 This can occur if there are too many parent prefixes in a namepath (for 
662 example, ^^^^^^PCI0.ECRD). ACPICA BZ 1035.
663
664 Application OSLs: Set the return value for the PCI read functions. These 
665 functions simply return AE_OK, but should set the return value to zero 
666 also. This change implements this. ACPICA BZ 1038.
667
668 Debugger: Prevent possible command line buffer overflow. Increase the 
669 size of a couple of the debugger line buffers, and ensure that overflow 
670 cannot happen. ACPICA BZ 1037.
671
672 iASL: Changed to abort immediately on serious errors during the parsing 
673 phase. Due to the nature of ASL, there is no point in attempting to 
674 compile these types of errors, and they typically end up causing a 
675 cascade of hundreds of errors which obscure the original problem.
676
677 ----------------------------------------
678 25 July 2013. Summary of changes for version 20130725:
679
680 1) ACPICA kernel-resident subsystem:
681
682 Fixed a problem with the DerefOf operator where references to FieldUnits 
683 and BufferFields incorrectly returned the parent object, not the actual 
684 value of the object. After this change, a dereference of a FieldUnit 
685 reference results in a read operation on the field to get the value, and 
686 likewise, the appropriate BufferField value is extracted from the target 
687 buffer.
688
689 Fixed a problem where the _WAK method could cause a fault under these 
690 circumstances: 1) Interpreter slack mode was not enabled, and 2) the _WAK 
691 method returned no value. The problem is rarely seen because most kernels 
692 run ACPICA in slack mode.
693
694 For the DerefOf operator, a fatal error now results if an attempt is made 
695 to dereference a reference (created by the Index operator) to a NULL 
696 package element. Provides compatibility with other ACPI implementations, 
697 and this behavior will be added to a future version of the ACPI 
698 specification.
699
700 The ACPI Power Management Timer (defined in the FADT) is now optional. 
701 This provides compatibility with other ACPI implementations and will 
702 appear in the next version of the ACPI specification. If there is no PM 
703 Timer on the platform, AcpiGetTimer returns AE_SUPPORT. An address of 
704 zero in the FADT indicates no PM timer.
705
706 Implemented a new interface for _OSI support, AcpiUpdateInterfaces. This 
707 allows the host to globally enable/disable all vendor strings, all 
708 feature strings, or both. Intended to be primarily used for debugging 
709 purposes only. Lv Zheng.
710
711 Expose the collected _OSI data to the host via a global variable. This 
712 data tracks the highest level vendor ID that has been invoked by the BIOS 
713 so that the host (and potentially ACPICA itself) can change behaviors 
714 based upon the age of the BIOS.
715
716 Example Code and Data Size: These are the sizes for the OS-independent 
717 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
718 debug version of the code includes the debug output trace mechanism and 
719 has a much larger code and data size.
720
721   Current Release:
722     Non-Debug Version:  96.2K Code, 27.1K Data, 123.3K Total
723     Debug Version:     184.4K Code, 76.8K Data, 261.2K Total
724   Previous Release:
725     Non-Debug Version:  95.9K Code, 26.9K Data, 122.8K Total
726     Debug Version:     184.1K Code, 76.7K Data, 260.8K Total
727
728
729 2) iASL Compiler/Disassembler and Tools:
730
731 iASL: Created the following enhancements for the -so option (create 
732 offset table):
733 1)Add offsets for the last nameseg in each namepath for every supported 
734 object type
735 2)Add support for Processor, Device, Thermal Zone, and Scope objects
736 3)Add the actual AML opcode for the parent object of every supported 
737 object type
738 4)Add support for the ZERO/ONE/ONES AML opcodes for integer objects
739
740 Disassembler: Emit all unresolved external symbols in a single block. 
741 These are external references to control methods that could not be 
742 resolved, and thus, the disassembler had to make a guess at the number of 
743 arguments to parse.
744
745 iASL: The argument to the -T option (create table template) is now 
746 optional. If not specified, the default table is a DSDT, typically the 
747 most common case.
748
749 ----------------------------------------
750 26 June 2013. Summary of changes for version 20130626:
751
752 1) ACPICA kernel-resident subsystem:
753
754 Fixed an issue with runtime repair of the _CST object. Null or invalid 
755 elements were not always removed properly. Lv Zheng. 
756
757 Removed an arbitrary restriction of 256 GPEs per GPE block (such as the 
758 FADT-defined GPE0 and GPE1). For GPE0, GPE1, and each GPE Block Device, 
759 the maximum number of GPEs is 1016. Use of multiple GPE block devices 
760 makes the system-wide number of GPEs essentially unlimited.
761
762 Example Code and Data Size: These are the sizes for the OS-independent 
763 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
764 debug version of the code includes the debug output trace mechanism and 
765 has a much larger code and data size.
766
767   Current Release:
768     Non-Debug Version:  95.9K Code, 26.9K Data, 122.8K Total
769     Debug Version:     184.1K Code, 76.7K Data, 260.8K Total
770   Previous Release:
771     Non-Debug Version:  96.0K Code, 27.0K Data, 123.0K Total
772     Debug Version:     184.1K Code, 76.8K Data, 260.9K Total
773
774
775 2) iASL Compiler/Disassembler and Tools:
776
777 Portable AcpiDump: Implemented full support for the Linux and FreeBSD 
778 hosts. Now supports Linux, FreeBSD, and Windows.
779
780 Disassembler: Added some missing types for the HEST and EINJ tables: "Set 
781 Error Type With Address", "CMCI", "MCE", and "Flush Cacheline".
782
783 iASL/Preprocessor: Implemented full support for nested 
784 #if/#else/#elif/#endif blocks. Allows arbitrary depth of nested blocks.
785
786 Disassembler: Expanded maximum output string length to 64K. Was 256 bytes 
787 max. The original purpose of this constraint was to limit the amount of 
788 debug output. However, the string function in question (UtPrintString) is 
789 now used for the disassembler also, where 256 bytes is insufficient. 
790 Reported by RehabMan@GitHub.
791
792 iASL/DataTables: Fixed some problems and issues with compilation of DMAR 
793 tables. ACPICA BZ 999. Lv Zheng.
794
795 iASL: Fixed a couple of error exit issues that could result in a "Could 
796 not delete <file>" message during ASL compilation.
797
798 AcpiDump: Allow "FADT" and "MADT" as valid table signatures, even though 
799 the actual signatures for these tables are "FACP" and "APIC", 
800 respectively.
801
802 AcpiDump: Added support for multiple UEFI tables. Only SSDT and UEFI 
803 tables are allowed to have multiple instances.
804
805 ----------------------------------------
806 17 May 2013. Summary of changes for version 20130517:
807
808 1) ACPICA kernel-resident subsystem:
809
810 Fixed a regression introduced in version 20130328 for _INI methods. This 
811 change fixes a problem introduced in 20130328 where _INI methods are no 
812 longer executed properly because of a memory block that was not 
813 initialized correctly. ACPICA BZ 1016. Tomasz Nowicki 
814 <tomasz.nowicki@linaro.org>.
815
816 Fixed a possible problem with the new extended sleep registers in the 
817 ACPI 
818 5.0 FADT. Do not use these registers (even if populated) unless the HW-
819 reduced bit is set in the FADT (as per the ACPI specification). ACPICA BZ 
820 1020. Lv Zheng.
821
822 Implemented return value repair code for _CST predefined objects: Sort 
823 the 
824 list and detect/remove invalid entries. ACPICA BZ 890. Lv Zheng.
825
826 Implemented a debug-only option to disable loading of SSDTs from the 
827 RSDT/XSDT during ACPICA initialization. This can be useful for debugging 
828 ACPI problems on some machines. Set AcpiGbl_DisableSsdtTableLoad in 
829 acglobal.h - ACPICA BZ 1005. Lv Zheng.
830
831 Fixed some issues in the ACPICA initialization and termination code: 
832 Tomasz Nowicki <tomasz.nowicki@linaro.org>
833 1) Clear events initialized flag upon event component termination. ACPICA 
834 BZ 1013.
835 2) Fixed a possible memory leak in GPE init error path. ACPICA BZ 1018. 
836 3) Delete global lock pending lock during termination. ACPICA BZ 1012.
837 4) Clear debug buffer global on termination to prevent possible multiple 
838 delete. ACPICA BZ 1010.
839
840 Standardized all switch() blocks across the entire source base. After 
841 many 
842 years, different formatting for switch() had crept in. This change makes 
843 the formatting of every switch block identical. ACPICA BZ 997. Chao Guan.
844
845 Split some files to enhance ACPICA modularity and configurability:
846 1) Split buffer dump routines into utilities/utbuffer.c
847 2) Split internal error message routines into utilities/uterror.c
848 3) Split table print utilities into tables/tbprint.c
849 4) Split iASL command-line option processing into asloptions.c
850
851 Makefile enhancements:
852 1) Support for all new files above.
853 2) Abort make on errors from any subcomponent. Chao Guan.
854 3) Add build support for Apple Mac OS X. Liang Qi.
855
856 Example Code and Data Size: These are the sizes for the OS-independent 
857 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
858 debug version of the code includes the debug output trace mechanism and 
859 has a much larger code and data size.
860
861   Current Release:
862     Non-Debug Version:  96.0K Code, 27.0K Data, 123.0K Total
863     Debug Version:     184.1K Code, 76.8K Data, 260.9K Total
864   Previous Release:
865     Non-Debug Version:  95.6K Code, 26.8K Data, 122.4K Total
866     Debug Version:     183.5K Code, 76.6K Data, 260.1K Total
867
868
869 2) iASL Compiler/Disassembler and Tools:
870
871 New utility: Implemented an easily portable version of the acpidump 
872 utility to extract ACPI tables from the system (or a file) in an ASCII 
873 hex 
874 dump format. The top-level code implements the various command line 
875 options, file I/O, and table dump routines. To port to a new host, only 
876 three functions need to be implemented to get tables -- since this 
877 functionality is OS-dependent. See the tools/acpidump/apmain.c module and 
878 the ACPICA reference for porting instructions. ACPICA BZ 859. Notes:
879 1) The Windows version obtains the ACPI tables from the Registry.
880 2) The Linux version is under development.
881 3) Other hosts - If an OS-dependent module is submitted, it will be 
882 distributed with ACPICA.
883
884 iASL: Fixed a regression for -D preprocessor option (define symbol). A 
885 restructuring/change to the initialization sequence caused this option to 
886 no longer work properly.
887
888 iASL: Implemented a mechanism to disable specific warnings and remarks. 
889 Adds a new command line option, "-vw <messageid> as well as "#pragma 
890 disable <messageid>". ACPICA BZ 989. Chao Guan, Bob Moore.
891
892 iASL: Fix for too-strict package object validation. The package object 
893 validation for return values from the predefined names is a bit too 
894 strict, it does not allow names references within the package (which will 
895 be resolved at runtime.) These types of references cannot be validated at 
896 compile time. This change ignores named references within package objects 
897 for names that return or define static packages.
898
899 Debugger: Fixed the 80-character command line limitation for the History 
900 command. Now allows lines of arbitrary length. ACPICA BZ 1000. Chao Guan.
901
902 iASL: Added control method and package support for the -so option 
903 (generates AML offset table for BIOS support.)
904
905 iASL: issue a remark if a non-serialized method creates named objects. If 
906 a thread blocks within the method for any reason, and another thread 
907 enters the method, the method will fail because an attempt will be made 
908 to 
909 create the same (named) object twice. In this case, issue a remark that 
910 the method should be marked serialized. NOTE: may become a warning later. 
911 ACPICA BZ 909.
912
913 ----------------------------------------
914 18 April 2013. Summary of changes for version 20130418:
915
916 1) ACPICA kernel-resident subsystem:
917
918 Fixed a possible buffer overrun during some rare but specific field unit 
919 read operations. This overrun can only happen if the DSDT version is 1 -- 
920 meaning that all AML integers are 32 bits -- and the field length is 
921 between 33 and 55 bits long. During the read, an internal buffer object 
922 is 
923 created for the field unit because the field is larger than an integer 
924 (32 
925 bits). However, in this case, the buffer will be incorrectly written 
926 beyond the end because the buffer length is less than the internal 
927 minimum 
928 of 64 bits (8 bytes) long. The buffer will be either 5, 6, or 7 bytes 
929 long, but a full 8 bytes will be written.
930
931 Updated the Embedded Controller "orphan" _REG method support. This refers 
932 to _REG methods under the EC device that have no corresponding operation 
933 region. This is allowed by the ACPI specification. This update removes a 
934 dependency on the existence an ECDT table. It will execute an orphan _REG 
935 method as long as the operation region handler for the EC is installed at 
936 the EC device node and not the namespace root. Rui Zhang (original 
937 update), Bob Moore (update/integrate).
938
939 Implemented run-time argument typechecking for all predefined ACPI names 
940 (_STA, _BIF, etc.) This change performs object typechecking on all 
941 incoming arguments for all predefined names executed via 
942 AcpiEvaluateObject. This ensures that ACPI-related device drivers are 
943 passing correct object types as well as the correct number of arguments 
944 (therefore identifying any issues immediately). Also, the ASL/namespace 
945 definition of the predefined name is checked against the ACPI 
946 specification for the proper argument count. Adds one new file, 
947 nsarguments.c
948
949 Changed an exception code for the ASL UnLoad() operator. Changed the 
950 exception code for the case where the input DdbHandle is invalid, from 
951 AE_BAD_PARAMETER to the more appropriate AE_AML_OPERAND_TYPE.
952
953 Unix/Linux makefiles: Removed the use of the -O2 optimization flag in the 
954 global makefile. The use of this flag causes compiler errors on earlier 
955 versions of GCC, so it has been removed for compatibility.
956
957 Miscellaneous cleanup:
958 1) Removed some unused/obsolete macros
959 2) Fixed a possible memory leak in the _OSI support
960 3) Removed an unused variable in the predefined name support
961 4) Windows OSL: remove obsolete reference to a memory list field
962
963 Example Code and Data Size: These are the sizes for the OS-independent 
964 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
965 debug version of the code includes the debug output trace mechanism and 
966 has a much larger code and data size.
967
968   Current Release:
969     Non-Debug Version:  95.2K Code, 26.4K Data, 121.6K Total
970     Debug Version:     183.0K Code, 76.0K Data, 259.0K Total
971   Previous Release:
972     Non-Debug Version:  95.6K Code, 26.8K Data, 122.4K Total
973     Debug Version:     183.5K Code, 76.6K Data, 260.1K Total
974
975
976 2) iASL Compiler/Disassembler and Tools:
977
978 AcpiExec: Added installation of a handler for the SystemCMOS address 
979 space. This prevents control method abort if a method accesses this 
980 space.
981
982 AcpiExec: Added support for multiple EC devices, and now install EC 
983 operation region handler(s) at the actual EC device instead of the 
984 namespace root. This reflects the typical behavior of host operating 
985 systems.
986
987 AcpiExec: Updated to ensure that all operation region handlers are 
988 installed before the _REG methods are executed. This prevents a _REG 
989 method from aborting if it accesses an address space has no handler. 
990 AcpiExec installs a handler for every possible address space.
991
992 Debugger: Enhanced the "handlers" command to display non-root handlers. 
993 This change enhances the handlers command to display handlers associated 
994 with individual devices throughout the namespace, in addition to the 
995 currently supported display of handlers associated with the root 
996 namespace 
997 node.
998
999 ASL Test Suite: Several test suite errors have been identified and 
1000 resolved, reducing the total error count during execution. Chao Guan.
1001
1002 ----------------------------------------
1003 28 March 2013. Summary of changes for version 20130328:
1004
1005 1) ACPICA kernel-resident subsystem:
1006
1007 Fixed several possible race conditions with the internal object reference 
1008 counting mechanism. Some of the external ACPICA interfaces update object 
1009 reference counts without holding the interpreter or namespace lock. This 
1010 change adds a spinlock to protect reference count updates on the internal 
1011 ACPICA objects. Reported by and with assistance from Andriy Gapon 
1012 (avg@FreeBSD.org).
1013
1014 FADT support: Removed an extraneous warning for very large GPE register 
1015 sets. This change removes a size mismatch warning if the legacy length 
1016 field for a GPE register set is larger than the 64-bit GAS structure can 
1017 accommodate. GPE register sets can be larger than the 255-bit width 
1018 limitation of the GAS structure. Linn Crosetto (linn@hp.com).
1019
1020 _OSI Support: handle any errors from AcpiOsAcquireMutex. Check for error 
1021 return from this interface. Handles a possible timeout case if 
1022 ACPI_WAIT_FOREVER is modified by the host to be a value less than 
1023 "forever". Jung-uk Kim.
1024
1025 Predefined name support: Add allowed/required argument type information 
1026 to 
1027 the master predefined info table. This change adds the infrastructure to 
1028 enable typechecking on incoming arguments for all predefined 
1029 methods/objects. It does not actually contain the code that will fully 
1030 utilize this information, this is still under development. Also condenses 
1031 some duplicate code for the predefined names into a new module, 
1032 utilities/utpredef.c
1033
1034 Example Code and Data Size: These are the sizes for the OS-independent 
1035 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1036 debug version of the code includes the debug output trace mechanism and 
1037 has a much larger code and data size.
1038
1039   Previous Release:
1040     Non-Debug Version:  95.0K Code, 25.9K Data, 120.9K Total
1041     Debug Version:     182.9K Code, 75.6K Data, 258.5K Total
1042   Current Release:
1043     Non-Debug Version:  95.2K Code, 26.4K Data, 121.6K Total
1044     Debug Version:     183.0K Code, 76.0K Data, 259.0K Total
1045
1046
1047 2) iASL Compiler/Disassembler and Tools:
1048
1049 iASL: Implemented a new option to simplify the development of ACPI-
1050 related 
1051 BIOS code. Adds support for a new "offset table" output file. The -so 
1052 option will create a C table containing the AML table offsets of various 
1053 named objects in the namespace so that BIOS code can modify them easily 
1054 at 
1055 boot time. This can simplify BIOS runtime code by eliminating expensive 
1056 searches for "magic values", enhancing boot times and adding greater 
1057 reliability. With assistance from Lee Hamel.
1058
1059 iASL: Allow additional predefined names to return zero-length packages. 
1060 Now, all predefined names that are defined by the ACPI specification to 
1061 return a "variable-length package of packages" are allowed to return a 
1062 zero length top-level package. This allows the BIOS to tell the host that 
1063 the requested feature is not supported, and supports existing BIOS/ASL 
1064 code and practices.
1065
1066 iASL: Changed the "result not used" warning to an error. This is the case 
1067 where an ASL operator is effectively a NOOP because the result of the 
1068 operation is not stored anywhere. For example:
1069     Add (4, Local0)
1070 There is no target (missing 3rd argument), nor is the function return 
1071 value used. This is potentially a very serious problem -- since the code 
1072 was probably intended to do something, but for whatever reason, the value 
1073 was not stored. Therefore, this issue has been upgraded from a warning to 
1074 an error.
1075
1076 AcpiHelp: Added allowable/required argument types to the predefined names 
1077 info display. This feature utilizes the recent update to the predefined 
1078 names table (above).
1079
1080 ----------------------------------------
1081 14 February 2013. Summary of changes for version 20130214:
1082
1083 1) ACPICA Kernel-resident Subsystem:
1084
1085 Fixed a possible regression on some hosts: Reinstated the safe return 
1086 macros (return_ACPI_STATUS, etc.) that ensure that the argument is 
1087 evaluated only once. Although these macros are not needed for the ACPICA 
1088 code itself, they are often used by ACPI-related host device drivers 
1089 where 
1090 the safe feature may be necessary.
1091
1092 Fixed several issues related to the ACPI 5.0 reduced hardware support 
1093 (SOC): Now ensure that if the platform declares itself as hardware-
1094 reduced 
1095 via the FADT, the following functions become NOOPs (and always return 
1096 AE_OK) because ACPI is always enabled by definition on these machines:
1097   AcpiEnable
1098   AcpiDisable
1099   AcpiHwGetMode
1100   AcpiHwSetMode
1101
1102 Dynamic Object Repair: Implemented additional runtime repairs for 
1103 predefined name return values. Both of these repairs can simplify code in 
1104 the related device drivers that invoke these methods:
1105 1) For the _STR and _MLS names, automatically repair/convert an ASCII 
1106 string to a Unicode buffer. 
1107 2) For the _CRS, _PRS, and _DMA names, return a resource descriptor with 
1108
1109 lone end tag descriptor in the following cases: A Return(0) was executed, 
1110 a null buffer was returned, or no object at all was returned (non-slack 
1111 mode only). Adds a new file, nsconvert.c
1112 ACPICA BZ 998. Bob Moore, Lv Zheng.
1113
1114 Resource Manager: Added additional code to prevent possible infinite 
1115 loops 
1116 while traversing corrupted or ill-formed resource template buffers. Check 
1117 for zero-length resource descriptors in all code that loops through 
1118 resource templates (the length field is used to index through the 
1119 template). This change also hardens the external AcpiWalkResources and 
1120 AcpiWalkResourceBuffer interfaces.
1121
1122 Local Cache Manager: Enhanced the main data structure to eliminate an 
1123 unnecessary mechanism to access the next object in the list. Actually 
1124 provides a small performance enhancement for hosts that use the local 
1125 ACPICA cache manager. Jung-uk Kim.
1126
1127 Example Code and Data Size: These are the sizes for the OS-independent 
1128 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1129 debug version of the code includes the debug output trace mechanism and 
1130 has a much larger code and data size.
1131
1132   Previous Release:
1133     Non-Debug Version:  94.5K Code, 25.4K Data, 119.9K Total
1134     Debug Version:     182.3K Code, 75.0K Data, 257.3K Total
1135   Current Release:
1136     Non-Debug Version:  95.0K Code, 25.9K Data, 120.9K Total
1137     Debug Version:     182.9K Code, 75.6K Data, 258.5K Total
1138
1139
1140 2) iASL Compiler/Disassembler and Tools:
1141
1142 iASL/Disassembler: Fixed several issues with the definition of the ACPI 
1143 5.0 RASF table (RAS Feature Table). This change incorporates late changes 
1144 that were made to the ACPI 5.0 specification.
1145
1146 iASL/Disassembler: Added full support for the following new ACPI tables:
1147   1) The MTMR table (MID Timer Table)
1148   2) The VRTC table (Virtual Real Time Clock Table).
1149 Includes header file, disassembler, table compiler, and template support 
1150 for both tables.
1151
1152 iASL: Implemented compile-time validation of package objects returned by 
1153 predefined names. This new feature validates static package objects 
1154 returned by the various predefined names defined to return packages. Both 
1155 object types and package lengths are validated, for both parent packages 
1156 and sub-packages, if any. The code is similar in structure and behavior 
1157 to 
1158 the runtime repair mechanism within the AML interpreter and uses the 
1159 existing predefined name information table. Adds a new file, aslprepkg.c. 
1160 ACPICA BZ 938.
1161
1162 iASL: Implemented auto-detection of binary ACPI tables for disassembly. 
1163 This feature detects a binary file with a valid ACPI table header and 
1164 invokes the disassembler automatically. Eliminates the need to 
1165 specifically invoke the disassembler with the -d option. ACPICA BZ 862.
1166
1167 iASL/Disassembler: Added several warnings for the case where there are 
1168 unresolved control methods during the disassembly. This can potentially 
1169 cause errors when the output file is compiled, because the disassembler 
1170 assumes zero method arguments in these cases (it cannot determine the 
1171 actual number of arguments without resolution/definition of the method).
1172
1173 Debugger: Added support to display all resources with a single command. 
1174 Invocation of the resources command with no arguments will now display 
1175 all 
1176 resources within the current namespace.
1177
1178 AcpiHelp: Added descriptive text for each ACPICA exception code displayed 
1179 via the -e option.
1180
1181 ----------------------------------------
1182 17 January 2013. Summary of changes for version 20130117:
1183
1184 1) ACPICA Kernel-resident Subsystem:
1185
1186 Updated the AcpiGetSleepTypeData interface: Allow the \_Sx methods to 
1187 return either 1 or 2 integers. Although the ACPI spec defines the \_Sx 
1188 objects to return a package containing one integer, most BIOS code 
1189 returns 
1190 two integers and the previous code reflects that. However, we also need 
1191 to 
1192 support BIOS code that actually implements to the ACPI spec, and this 
1193 change reflects this.
1194
1195 Fixed two issues with the ACPI_DEBUG_PRINT macros:
1196 1) Added the ACPI_DO_WHILE macro to the main DEBUG_PRINT helper macro for 
1197 C compilers that require this support.
1198 2) Renamed the internal ACPI_DEBUG macro to ACPI_DO_DEBUG_PRINT since 
1199 ACPI_DEBUG is already used by many of the various hosts.
1200
1201 Updated all ACPICA copyrights and signons to 2013. Added the 2013 
1202 copyright to all module headers and signons, including the standard Linux 
1203 header. This affects virtually every file in the ACPICA core subsystem, 
1204 iASL compiler, all ACPICA utilities, and the test suites.
1205
1206 Example Code and Data Size: These are the sizes for the OS-independent 
1207 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1208 debug version of the code includes the debug output trace mechanism and 
1209 has a much larger code and data size.
1210
1211   Previous Release:
1212     Non-Debug Version:  94.5K Code, 25.5K Data, 120.0K Total
1213     Debug Version:     182.2K Code, 74.9K Data, 257.1K Total
1214   Current Release:
1215     Non-Debug Version:  94.5K Code, 25.4K Data, 119.9K Total
1216     Debug Version:     182.3K Code, 75.0K Data, 257.3K Total
1217
1218
1219 2) iASL Compiler/Disassembler and Tools:
1220
1221 Generic Unix OSL: Use a buffer to eliminate multiple vfprintf()s and 
1222 prevent a possible fault on some hosts. Some C libraries modify the arg 
1223 pointer parameter to vfprintf making it difficult to call it twice in the 
1224 AcpiOsVprintf function. Use a local buffer to workaround this issue. This 
1225 does not affect the Windows OSL since the Win C library does not modify 
1226 the arg pointer. Chao Guan, Bob Moore.
1227
1228 iASL: Fixed a possible infinite loop when the maximum error count is 
1229 reached. If an output file other than the .AML file is specified (such as 
1230 a listing file), and the maximum number of errors is reached, do not 
1231 attempt to flush data to the output file(s) as the compiler is aborting. 
1232 This can cause an infinite loop as the max error count code essentially 
1233 keeps calling itself.
1234
1235 iASL/Disassembler: Added an option (-in) to ignore NOOP 
1236 opcodes/operators. 
1237 Implemented for both the compiler and the disassembler. Often, the NOOP 
1238 opcode is used as padding for packages that are changed dynamically by 
1239 the 
1240 BIOS. When disassembled and recompiled, these NOOPs will cause syntax 
1241 errors. This option causes the disassembler to ignore all NOOP opcodes 
1242 (0xA3), and it also causes the compiler to ignore all ASL source code 
1243 NOOP 
1244 statements as well.
1245
1246 Debugger: Enhanced the Sleep command to execute all sleep states. This 
1247 change allows Sleep to be invoked with no arguments and causes the 
1248 debugger to execute all of the sleep states, 0-5, automatically.
1249
1250 ----------------------------------------
1251 20 December 2012. Summary of changes for version 20121220:
1252
1253 1) ACPICA Kernel-resident Subsystem:
1254
1255 Implemented a new interface, AcpiWalkResourceBuffer. This interface is an 
1256 alternate entry point for AcpiWalkResources and improves the usability of 
1257 the resource manager by accepting as input a buffer containing the output 
1258 of either a _CRS, _PRS, or _AEI method. The key functionality is that the 
1259 input buffer is not deleted by this interface so that it can be used by 
1260 the host later. See the ACPICA reference for details.
1261
1262 Interpreter: Add a warning if a 64-bit constant appears in a 32-bit table 
1263 (DSDT version < 2). The constant will be truncated and this warning 
1264 reflects that behavior.
1265
1266 Resource Manager: Add support for the new ACPI 5.0 wake bit in the IRQ, 
1267 ExtendedInterrupt, and GpioInt descriptors. This change adds support to 
1268 both get and set the new wake bit in these descriptors, separately from 
1269 the existing share bit. Reported by Aaron Lu.
1270
1271 Interpreter: Fix Store() when an implicit conversion is not possible. For 
1272 example, in the cases such as a store of a string to an existing package 
1273 object, implement the store as a CopyObject(). This is a small departure 
1274 from the ACPI specification which states that the control method should 
1275 be 
1276 aborted in this case. However, the ASLTS suite depends on this behavior.
1277
1278 Performance improvement for the various FUNCTION_TRACE and DEBUG_PRINT 
1279 macros: check if debug output is currently enabled as soon as possible to 
1280 minimize performance impact if debug is in fact not enabled.
1281
1282 Source code restructuring: Cleanup to improve modularity. The following 
1283 new files have been added: dbconvert.c, evhandler.c, nsprepkg.c, 
1284 psopinfo.c, psobject.c, rsdumpinfo.c, utstring.c, and utownerid.c. 
1285 Associated makefiles and project files have been updated.
1286
1287 Changed an exception code for LoadTable operator. For the case where one 
1288 of the input strings is too long, change the returned exception code from 
1289 AE_BAD_PARAMETER to AE_AML_STRING_LIMIT.
1290
1291 Fixed a possible memory leak in dispatcher error path. On error, delete 
1292 the mutex object created during method mutex creation. Reported by 
1293 tim.gardner@canonical.com.
1294
1295 Example Code and Data Size: These are the sizes for the OS-independent 
1296 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1297 debug version of the code includes the debug output trace mechanism and 
1298 has a much larger code and data size.
1299
1300   Previous Release:
1301     Non-Debug Version:  94.3K Code, 25.3K Data, 119.6K Total
1302     Debug Version:     175.5K Code, 74.5K Data, 250.0K Total
1303   Current Release:
1304     Non-Debug Version:  94.5K Code, 25.5K Data, 120.0K Total
1305     Debug Version:     182.2K Code, 74.9K Data, 257.1K Total
1306
1307
1308 2) iASL Compiler/Disassembler and Tools:
1309
1310 iASL: Disallow a method call as argument to the ObjectType ASL operator. 
1311 This change tracks an errata to the ACPI 5.0 document. The AML grammar 
1312 will not allow the interpreter to differentiate between a method and a 
1313 method invocation when these are used as an argument to the ObjectType 
1314 operator. The ACPI specification change is to disallow a method 
1315 invocation 
1316 (UserTerm) for the ObjectType operator.
1317
1318 Finish support for the TPM2 and CSRT tables in the headers, table 
1319 compiler, and disassembler.
1320
1321 Unix user-space OSL: Fix a problem with WaitSemaphore where the timeout 
1322 always expires immediately if the semaphore is not available. The 
1323 original 
1324 code was using a relative-time timeout, but sem_timedwait requires the 
1325 use 
1326 of an absolute time.
1327
1328 iASL: Added a remark if the Timer() operator is used within a 32-bit 
1329 table. This operator returns a 64-bit time value that will be truncated 
1330 within a 32-bit table.
1331
1332 iASL Source code restructuring: Cleanup to improve modularity. The 
1333 following new files have been added: aslhex.c, aslxref.c, aslnamesp.c, 
1334 aslmethod.c, and aslfileio.c. Associated makefiles and project files have 
1335 been updated.
1336
1337
1338 ----------------------------------------
1339 14 November 2012. Summary of changes for version 20121114:
1340
1341 1) ACPICA Kernel-resident Subsystem:
1342
1343 Implemented a performance enhancement for ACPI/AML Package objects. This 
1344 change greatly increases the performance of Package objects within the 
1345 interpreter. It changes the processing of reference counts for packages 
1346 by 
1347 optimizing for the most common case where the package sub-objects are 
1348 either Integers, Strings, or Buffers. Increases the overall performance 
1349 of 
1350 the ASLTS test suite by 1.5X (Increases the Slack Mode performance by 
1351 2X.) 
1352 Chao Guan. ACPICA BZ 943.
1353
1354 Implemented and deployed common macros to extract flag bits from resource 
1355 descriptors. Improves readability and maintainability of the code. Fixes 
1356
1357 problem with the UART serial bus descriptor for the number of data bits 
1358 flags (was incorrectly 2 bits, should be 3).
1359
1360 Enhanced the ACPI_GETx and ACPI_SETx macros. Improved the implementation 
1361 of the macros and changed the SETx macros to the style of (destination, 
1362 source). Also added ACPI_CASTx companion macros. Lv Zheng.
1363
1364 Example Code and Data Size: These are the sizes for the OS-independent 
1365 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1366 debug version of the code includes the debug output trace mechanism and 
1367 has a much larger code and data size.
1368
1369   Previous Release:
1370     Non-Debug Version:  93.9K Code, 25.2K Data, 119.1K Total
1371     Debug Version:     175.5K Code, 74.5K Data, 250.0K Total
1372   Current Release:
1373     Non-Debug Version:  94.3K Code, 25.3K Data, 119.6K Total
1374     Debug Version:     175.5K Code, 74.5K Data, 250.0K Total
1375
1376
1377 2) iASL Compiler/Disassembler and Tools:
1378
1379 Disassembler: Added the new ACPI 5.0 interrupt sharing flags. This change 
1380 adds the ShareAndWake and ExclusiveAndWake flags which were added to the 
1381 Irq, Interrupt, and Gpio resource descriptors in ACPI 5.0. ACPICA BZ 986.
1382
1383 Disassembler: Fixed a problem with external declaration generation. Fixes 
1384 a problem where an incorrect pathname could be generated for an external 
1385 declaration if the original reference to the object includes leading 
1386 carats (^). ACPICA BZ 984.
1387
1388 Debugger: Completed a major update for the Disassemble<method> command. 
1389 This command was out-of-date and did not properly disassemble control 
1390 methods that had any reasonable complexity. This fix brings the command 
1391 up 
1392 to the same level as the rest of the disassembler. Adds one new file, 
1393 dmdeferred.c, which is existing code that is now common with the main 
1394 disassembler and the debugger disassemble command. ACPICA MZ 978.
1395
1396 iASL: Moved the parser entry prototype to avoid a duplicate declaration. 
1397 Newer versions of Bison emit this prototype, so moved the prototype out 
1398 of 
1399 the iASL header to where it is actually used in order to avoid a 
1400 duplicate 
1401 declaration.
1402
1403 iASL/Tools: Standardized use of the stream I/O functions:
1404   1) Ensure check for I/O error after every fopen/fread/fwrite
1405   2) Ensure proper order of size/count arguments for fread/fwrite
1406   3) Use test of (Actual != Requested) after all fwrite, and most fread
1407   4) Standardize I/O error messages
1408 Improves reliability and maintainability of the code. Bob Moore, Lv 
1409 Zheng. 
1410 ACPICA BZ 981.
1411
1412 Disassembler: Prevent duplicate External() statements. During generation 
1413 of external statements, detect similar pathnames that are actually 
1414 duplicates such as these:
1415   External (\ABCD)
1416   External (ABCD)
1417 Remove all leading '\' characters from pathnames during the external 
1418 statement generation so that duplicates will be detected and tossed. 
1419 ACPICA BZ 985.
1420
1421 Tools: Replace low-level I/O with stream I/O functions. Replace 
1422 open/read/write/close with the stream I/O equivalents 
1423 fopen/fread/fwrite/fclose for portability and performance. Lv Zheng, Bob 
1424 Moore.
1425
1426 AcpiBin: Fix for the dump-to-hex function. Now correctly output the table 
1427 name header so that AcpiXtract recognizes the output file/table.
1428
1429 iASL: Remove obsolete -2 option flag. Originally intended to force the 
1430 compiler/disassembler into an ACPI 2.0 mode, this was never implemented 
1431 and the entire concept is now obsolete.
1432
1433 ----------------------------------------
1434 18 October 2012. Summary of changes for version 20121018:
1435
1436
1437 1) ACPICA Kernel-resident Subsystem:
1438
1439 Updated support for the ACPI 5.0 MPST table. Fixes some problems 
1440 introduced by late changes to the table as it was added to the ACPI 5.0 
1441 specification. Includes header, disassembler, and data table compiler 
1442 support as well as a new version of the MPST template.
1443
1444 AcpiGetObjectInfo: Enhanced the device object support to include the ACPI 
1445 5.0 _SUB method. Now calls _SUB in addition to the other PNP-related ID 
1446 methods: _HID, _CID, and _UID.
1447
1448 Changed ACPI_DEVICE_ID to ACPI_PNP_DEVICE_ID. Also changed 
1449 ACPI_DEVICE_ID_LIST to ACPI_PNP_DEVICE_ID_LIST. These changes prevent 
1450 name collisions on hosts that reserve the *_DEVICE_ID (or *DeviceId) 
1451 names for their various drivers. Affects the AcpiGetObjectInfo external 
1452 interface, and other internal interfaces as well.
1453
1454 Added and deployed a new macro for ACPI_NAME management: ACPI_MOVE_NAME. 
1455 This macro resolves to a simple 32-bit move of the 4-character ACPI_NAME 
1456 on machines that support non-aligned transfers. Optimizes for this case 
1457 rather than using a strncpy. With assistance from Zheng Lv.
1458
1459 Resource Manager: Small fix for buffer size calculation. Fixed a one byte 
1460 error in the output buffer calculation. Feng Tang. ACPICA BZ 849.
1461
1462 Added a new debug print message for AML mutex objects that are force-
1463 released. At control method termination, any currently acquired mutex 
1464 objects are force-released. Adds a new debug-only message for each one 
1465 that is released.
1466
1467 Audited/updated all ACPICA return macros and the function debug depth 
1468 counter: 1) Ensure that all functions that use the various TRACE macros 
1469 also use the appropriate ACPICA return macros. 2) Ensure that all normal 
1470 return statements surround the return expression (value) with parens to 
1471 ensure consistency across the ACPICA code base. Guan Chao, Tang Feng, 
1472 Zheng Lv, Bob Moore. ACPICA Bugzilla 972.
1473
1474 Global source code changes/maintenance: All extra lines at the start and 
1475 end of each source file have been removed for consistency. Also, within 
1476 comments, all new sentences start with a single space instead of a double 
1477 space, again for consistency across the code base.
1478
1479 Example Code and Data Size: These are the sizes for the OS-independent 
1480 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1481 debug version of the code includes the debug output trace mechanism and 
1482 has a much larger code and data size.
1483
1484   Previous Release:
1485     Non-Debug Version:  93.7K Code, 25.3K Data, 119.0K Total
1486     Debug Version:     175.0K Code, 74.4K Data, 249.4K Total
1487   Current Release:
1488     Non-Debug Version:  93.9K Code, 25.2K Data, 119.1K Total
1489     Debug Version:     175.5K Code, 74.5K Data, 250.0K Total
1490
1491
1492 2) iASL Compiler/Disassembler and Tools:
1493
1494 AcpiExec: Improved the algorithm used for memory leak/corruption 
1495 detection. Added some intelligence to the code that maintains the global 
1496 list of allocated memory. The list is now ordered by allocated memory 
1497 address, significantly improving performance. When running AcpiExec on 
1498 the ASLTS test suite, speed improvements of 3X to 5X are seen, depending 
1499 on the platform and/or the environment. Note, this performance 
1500 enhancement affects the AcpiExec utility only, not the kernel-resident 
1501 ACPICA code.
1502
1503 Enhanced error reporting for invalid AML opcodes and bad ACPI_NAMEs. For 
1504 the disassembler, dump the 48 bytes surrounding the invalid opcode. Fix 
1505 incorrect table offset reported for invalid opcodes. Report the original 
1506 32-bit value for bad ACPI_NAMEs (as well as the repaired name.)
1507
1508 Disassembler: Enhanced the -vt option to emit the binary table data in 
1509 hex format to assist with debugging.
1510
1511 Fixed a potential filename buffer overflow in osunixdir.c. Increased the 
1512 size of file structure. Colin Ian King.
1513
1514 ----------------------------------------
1515 13 September 2012. Summary of changes for version 20120913:
1516
1517
1518 1) ACPICA Kernel-resident Subsystem:
1519
1520 ACPI 5.0: Added two new notify types for the Hardware Error Notification 
1521 Structure within the Hardware Error Source Table (HEST) table -- CMCI(5) 
1522 and 
1523 MCE(6).
1524  
1525 Table Manager: Merged/removed duplicate code in the root table resize 
1526 functions. One function is external, the other is internal. Lv Zheng, 
1527 ACPICA 
1528 BZ 846.
1529
1530 Makefiles: Completely removed the obsolete "Linux" makefiles under 
1531 acpica/generate/linux. These makefiles are obsolete and have been 
1532 replaced 
1533 by 
1534 the generic unix makefiles under acpica/generate/unix.
1535
1536 Makefiles: Ensure that binary files always copied properly. Minor rule 
1537 change 
1538 to ensure that the final binary output files are always copied up to the 
1539 appropriate binary directory (bin32 or bin64.)
1540
1541 Example Code and Data Size: These are the sizes for the OS-independent 
1542 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1543 debug 
1544 version of the code includes the debug output trace mechanism and has a 
1545 much 
1546 larger code and data size.
1547
1548   Previous Release:
1549     Non-Debug Version:  93.8K Code, 25.3K Data, 119.1K Total
1550     Debug Version:     175.7K Code, 74.8K Data, 250.5K Total
1551   Current Release:
1552     Non-Debug Version:  93.7K Code, 25.3K Data, 119.0K Total
1553     Debug Version:     175.0K Code, 74.4K Data, 249.4K Total
1554
1555
1556 2) iASL Compiler/Disassembler and Tools:
1557
1558 Disassembler: Fixed a possible fault during the disassembly of resource 
1559 descriptors when a second parse is required because of the invocation of 
1560 external control methods within the table. With assistance from 
1561 adq@lidskialf.net. ACPICA BZ 976.
1562
1563 iASL: Fixed a namepath optimization problem. An error can occur if the 
1564 parse 
1565 node that contains the namepath to be optimized does not have a parent 
1566 node 
1567 that is a named object. This change fixes the problem.
1568
1569 iASL: Fixed a regression where the AML file is not deleted on errors. The 
1570 AML 
1571 output file should be deleted if there are any errors during the 
1572 compiler. 
1573 The 
1574 only exception is if the -f (force output) option is used. ACPICA BZ 974.
1575
1576 iASL: Added a feature to automatically increase internal line buffer 
1577 sizes. 
1578 Via realloc(), automatically increase the internal line buffer sizes as 
1579 necessary to support very long source code lines. The current version of 
1580 the 
1581 preprocessor requires a buffer long enough to contain full source code 
1582 lines. 
1583 This change increases the line buffer(s) if the input lines go beyond the 
1584 current buffer size. This eliminates errors that occurred when a source 
1585 code 
1586 line was longer than the buffer.
1587
1588 iASL: Fixed a problem with constant folding in method declarations. The 
1589 SyncLevel term is a ByteConstExpr, and incorrect code would be generated 
1590 if a 
1591 Type3 opcode was used.
1592
1593 Debugger: Improved command help support. For incorrect argument count, 
1594 display 
1595 full help for the command. For help command itself, allow an argument to 
1596 specify a command.
1597
1598 Test Suites: Several bug fixes for the ASLTS suite reduces the number of 
1599 errors during execution of the suite. Guan Chao.
1600
1601 ----------------------------------------
1602 16 August 2012. Summary of changes for version 20120816:
1603
1604
1605 1) ACPICA Kernel-resident Subsystem:
1606
1607 Removed all use of the deprecated _GTS and _BFS predefined methods. The 
1608 _GTS 
1609 (Going To Sleep) and _BFS (Back From Sleep) methods are essentially 
1610 deprecated and will probably be removed from the ACPI specification. 
1611 Windows 
1612 does not invoke them, and reportedly never will. The final nail in the 
1613 coffin 
1614 is that the ACPI specification states that these methods must be run with 
1615 interrupts off, which is not going to happen in a kernel interpreter. 
1616 Note: 
1617 Linux has removed all use of the methods also. It was discovered that 
1618 invoking these functions caused failures on some machines, probably 
1619 because 
1620 they were never tested since Windows does not call them. Affects two 
1621 external 
1622 interfaces, AcpiEnterSleepState and AcpiLeaveSleepStatePrep. Tang Feng. 
1623 ACPICA BZ 969.
1624
1625 Implemented support for complex bit-packed buffers returned from the _PLD 
1626 (Physical Location of Device) predefined method. Adds a new external 
1627 interface, AcpiDecodePldBuffer that parses the buffer into a more usable 
1628
1629 structure. Note: C Bitfields cannot be used for this type of predefined 
1630 structure since the memory layout of individual bitfields is not defined 
1631 by 
1632 the C language. In addition, there are endian concerns where a compiler 
1633 will 
1634 change the bitfield ordering based on the machine type. The new ACPICA 
1635 interface eliminates these issues, and should be called after _PLD is 
1636 executed. ACPICA BZ 954.
1637
1638 Implemented a change to allow a scope change to root (via "Scope (\)") 
1639 during 
1640 execution of module-level ASL code (code that is executed at table load 
1641 time.) Lin Ming.
1642
1643 Added the Windows8/Server2012 string for the _OSI method. This change 
1644 adds 
1645
1646 new _OSI string, "Windows 2012" for both Windows 8 and Windows Server 
1647 2012.
1648
1649 Added header support for the new ACPI tables DBG2 (Debug Port Table Type 
1650 2) 
1651 and CSRT (Core System Resource Table).
1652
1653 Added struct header support for the _FDE, _GRT, _GTM, and _SRT predefined 
1654 names. This simplifies access to the buffers returned by these predefined 
1655 names. Adds a new file, include/acbuffer.h. ACPICA BZ 956.
1656
1657 GPE support: Removed an extraneous parameter from the various low-level 
1658 internal GPE functions. Tang Feng.
1659
1660 Removed the linux makefiles from the unix packages. The generate/linux 
1661 makefiles are obsolete and have been removed from the unix tarball 
1662 release 
1663 packages. The replacement makefiles are under generate/unix, and there is 
1664
1665 top-level makefile under the main acpica directory. ACPICA BZ 967, 912.
1666
1667 Updates for Unix makefiles:
1668 1) Add -D_FORTIFY_SOURCE=2 for gcc generation. Arjan van de Ven.
1669 2) Update linker flags (move to end of command line) for AcpiExec 
1670 utility. 
1671 Guan Chao.
1672
1673 Split ACPICA initialization functions to new file, utxfinit.c. Split from 
1674 utxface.c to improve modularity and reduce file size.
1675
1676 Example Code and Data Size: These are the sizes for the OS-independent 
1677 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1678 debug version of the code includes the debug output trace mechanism and 
1679 has a 
1680 much larger code and data size.
1681
1682   Previous Release:
1683     Non-Debug Version:  93.5K Code, 25.3K Data, 118.8K Total
1684     Debug Version:     173.7K Code, 74.0K Data, 247.7K Total
1685   Current Release:
1686     Non-Debug Version:  93.8K Code, 25.3K Data, 119.1K Total
1687     Debug Version:     175.7K Code, 74.8K Data, 250.5K Total
1688
1689
1690 2) iASL Compiler/Disassembler and Tools:
1691
1692 iASL: Fixed a problem with constant folding for fixed-length constant 
1693 expressions. The constant-folding code was not being invoked for constant 
1694 expressions that allow the use of type 3/4/5 opcodes to generate 
1695 constants 
1696 for expressions such as ByteConstExpr, WordConstExpr, etc. This could 
1697 result 
1698 in the generation of invalid AML bytecode. ACPICA BZ 970.
1699
1700 iASL: Fixed a generation issue on newer versions of Bison. Newer versions 
1701 apparently automatically emit some of the necessary externals. This 
1702 change 
1703 handles these versions in order to eliminate generation warnings.
1704
1705 Disassembler: Added support to decode the DBG2 and CSRT ACPI tables.
1706
1707 Disassembler: Add support to decode _PLD buffers. The decoded buffer 
1708 appears 
1709 within comments in the output file.
1710
1711 Debugger: Fixed a regression with the "Threads" command where 
1712 AE_BAD_PARAMETER was always returned.
1713
1714 ----------------------------------------
1715 11 July 2012. Summary of changes for version 20120711:
1716
1717 1) ACPICA Kernel-resident Subsystem:
1718
1719 Fixed a possible fault in the return package object repair code. Fixes a 
1720 problem that can occur when a lone package object is wrapped with an 
1721 outer 
1722 package object in order to force conformance to the ACPI specification. 
1723 Can 
1724 affect these predefined names: _ALR, _MLS, _PSS, _TRT, _TSS, _PRT, _HPX, 
1725 _DLM, 
1726 _CSD, _PSD, _TSD.
1727
1728 Removed code to disable/enable bus master arbitration (ARB_DIS bit in the 
1729 PM2_CNT register) in the ACPICA sleep/wake interfaces. Management of the 
1730 ARB_DIS bit must be implemented in the host-dependent C3 processor power 
1731 state 
1732 support. Note, ARB_DIS is obsolete and only applies to older chipsets, 
1733 both 
1734 Intel and other vendors. (for Intel: ICH4-M and earlier)
1735
1736 This change removes the code to disable/enable bus master arbitration 
1737 during 
1738 suspend/resume. Use of the ARB_DIS bit in the optional PM2_CNT register 
1739 causes 
1740 resume problems on some machines. The change has been in use for over 
1741 seven 
1742 years within Linux.
1743
1744 Implemented two new external interfaces to support host-directed dynamic 
1745 ACPI 
1746 table load and unload. They are intended to simplify the host 
1747 implementation 
1748 of hot-plug support:
1749   AcpiLoadTable: Load an SSDT from a buffer into the namespace.
1750   AcpiUnloadParentTable: Unload an SSDT via a named object owned by the 
1751 table.
1752 See the ACPICA reference for additional details. Adds one new file, 
1753 components/tables/tbxfload.c
1754
1755 Implemented and deployed two new interfaces for errors and warnings that 
1756 are 
1757 known to be caused by BIOS/firmware issues:
1758   AcpiBiosError: Prints "ACPI Firmware Error" message.
1759   AcpiBiosWarning: Prints "ACPI Firmware Warning" message.
1760 Deployed these new interfaces in the ACPICA Table Manager code for ACPI 
1761 table 
1762 and FADT errors. Additional deployment to be completed as appropriate in 
1763 the 
1764 future. The associated conditional macros are ACPI_BIOS_ERROR and 
1765 ACPI_BIOS_WARNING. See the ACPICA reference for additional details. 
1766 ACPICA 
1767 BZ 
1768 843.
1769
1770 Implicit notify support: ensure that no memory allocation occurs within a 
1771 critical region. This fix moves a memory allocation outside of the time 
1772 that a 
1773 spinlock is held. Fixes issues on systems that do not allow this 
1774 behavior. 
1775 Jung-uk Kim.
1776
1777 Split exception code utilities and tables into a new file, 
1778 utilities/utexcep.c
1779
1780 Example Code and Data Size: These are the sizes for the OS-independent 
1781 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1782 debug 
1783 version of the code includes the debug output trace mechanism and has a 
1784 much 
1785 larger code and data size.
1786
1787   Previous Release:
1788     Non-Debug Version:  93.1K Code, 25.1K Data, 118.2K Total
1789     Debug Version:     172.9K Code, 73.6K Data, 246.5K Total
1790   Current Release:
1791     Non-Debug Version:  93.5K Code, 25.3K Data, 118.8K Total
1792     Debug Version:     173.7K Code, 74.0K Data, 247.7K Total
1793
1794
1795 2) iASL Compiler/Disassembler and Tools:
1796
1797 iASL: Fixed a parser problem for hosts where EOF is defined as -1 instead 
1798 of 
1799 0. Jung-uk Kim.
1800
1801 Debugger: Enhanced the "tables" command to emit additional information 
1802 about 
1803 the current set of ACPI tables, including the owner ID and flags decode.
1804
1805 Debugger: Reimplemented the "unload" command to use the new 
1806 AcpiUnloadParentTable external interface. This command was disable 
1807 previously 
1808 due to need for an unload interface.
1809
1810 AcpiHelp: Added a new option to decode ACPICA exception codes. The -e 
1811 option 
1812 will decode 16-bit hex status codes (ACPI_STATUS) to name strings.
1813
1814 ----------------------------------------
1815 20 June 2012. Summary of changes for version 20120620:
1816
1817
1818 1) ACPICA Kernel-resident Subsystem:
1819
1820 Implemented support to expand the "implicit notify" feature to allow 
1821 multiple 
1822 devices to be notified by a single GPE. This feature automatically 
1823 generates a 
1824 runtime device notification in the absence of a BIOS-provided GPE control 
1825 method (_Lxx/_Exx) or a host-installed handler for the GPE. Implicit 
1826 notify is 
1827 provided by ACPICA for Windows compatibility, and is a workaround for 
1828 BIOS 
1829 AML 
1830 code errors. See the description of the AcpiSetupGpeForWake interface in 
1831 the 
1832 APCICA reference. Bob Moore, Rafael Wysocki. ACPICA BZ 918.
1833
1834 Changed some comments and internal function names to simplify and ensure 
1835 correctness of the Linux code translation. No functional changes.
1836
1837 Example Code and Data Size: These are the sizes for the OS-independent 
1838 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1839 debug 
1840 version of the code includes the debug output trace mechanism and has a 
1841 much 
1842 larger code and data size.
1843
1844   Previous Release:
1845     Non-Debug Version:  93.0K Code, 25.1K Data, 118.1K Total
1846     Debug Version:     172.7K Code, 73.6K Data, 246.3K Total
1847   Current Release:
1848     Non-Debug Version:  93.1K Code, 25.1K Data, 118.2K Total
1849     Debug Version:     172.9K Code, 73.6K Data, 246.5K Total
1850
1851
1852 2) iASL Compiler/Disassembler and Tools:
1853
1854 Disassembler: Added support to emit short, commented descriptions for the 
1855 ACPI 
1856 predefined names in order to improve the readability of the disassembled 
1857 output. ACPICA BZ 959. Changes include:
1858   1) Emit descriptions for all standard predefined names (_INI, _STA, 
1859 _PRW, 
1860 etc.)
1861   2) Emit generic descriptions for the special names (_Exx, _Qxx, etc.)
1862   3) Emit descriptions for the resource descriptor names (_MIN, _LEN, 
1863 etc.)
1864
1865 AcpiSrc: Fixed several long-standing Linux code translation issues. 
1866 Argument 
1867 descriptions in function headers are now translated properly to lower 
1868 case 
1869 and 
1870 underscores. ACPICA BZ 961. Also fixes translation problems such as 
1871 these: 
1872 (old -> new)
1873   i_aSL -> iASL
1874   00-7_f -> 00-7F
1875   16_k -> 16K
1876   local_fADT -> local_FADT
1877   execute_oSI -> execute_OSI
1878
1879 iASL: Fixed a problem where null bytes were inadvertently emitted into 
1880 some 
1881 listing files.
1882
1883 iASL: Added the existing debug options to the standard help screen. There 
1884 are 
1885 no longer two different help screens. ACPICA BZ 957.
1886
1887 AcpiHelp: Fixed some typos in the various predefined name descriptions. 
1888 Also 
1889 expand some of the descriptions where appropriate.
1890
1891 iASL: Fixed the -ot option (display compile times/statistics). Was not 
1892 working 
1893 properly for standard output; only worked for the debug file case.
1894
1895 ----------------------------------------
1896 18 May 2012. Summary of changes for version 20120518:
1897
1898
1899 1) ACPICA Core Subsystem:
1900
1901 Added a new OSL interface, AcpiOsWaitEventsComplete. This interface is 
1902 defined 
1903 to block until asynchronous events such as notifies and GPEs have 
1904 completed. 
1905 Within ACPICA, it is only called before a notify or GPE handler is 
1906 removed/uninstalled. It also may be useful for the host OS within related 
1907 drivers such as the Embedded Controller driver. See the ACPICA reference 
1908 for 
1909 additional information. ACPICA BZ 868.
1910
1911 ACPI Tables: Added a new error message for a possible overflow failure 
1912 during 
1913 the conversion of FADT 32-bit legacy register addresses to internal 
1914 common 
1915 64-
1916 bit GAS structure representation. The GAS has a one-byte "bit length" 
1917 field, 
1918 thus limiting the register length to 255 bits. ACPICA BZ 953.
1919
1920 Example Code and Data Size: These are the sizes for the OS-independent 
1921 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1922 debug 
1923 version of the code includes the debug output trace mechanism and has a 
1924 much 
1925 larger code and data size.
1926
1927   Previous Release:
1928     Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
1929     Debug Version:     172.6K Code, 73.4K Data, 246.0K Total
1930   Current Release:
1931     Non-Debug Version:  93.0K Code, 25.1K Data, 118.1K Total
1932     Debug Version:     172.7K Code, 73.6K Data, 246.3K Total
1933
1934
1935 2) iASL Compiler/Disassembler and Tools:
1936
1937 iASL: Added the ACPI 5.0 "PCC" keyword for use in the Register() ASL 
1938 macro. 
1939 This keyword was added late in the ACPI 5.0 release cycle and was not 
1940 implemented until now.
1941
1942 Disassembler: Added support for Operation Region externals. Adds missing 
1943 support for operation regions that are defined in another table, and 
1944 referenced locally via a Field or BankField ASL operator. Now generates 
1945 the 
1946 correct External statement.
1947
1948 Disassembler: Several additional fixes for the External() statement 
1949 generation 
1950 related to some ASL operators. Also, order the External() statements 
1951 alphabetically in the disassembler output. Fixes the External() 
1952 generation 
1953 for 
1954 the Create* field, Alias, and Scope operators:
1955  1) Create* buffer field operators - fix type mismatch warning on 
1956 disassembly
1957  2) Alias - implement missing External support
1958  3) Scope - fix to make sure all necessary externals are emitted.
1959
1960 iASL: Improved pathname support. For include files, merge the prefix 
1961 pathname 
1962 with the file pathname and eliminate unnecessary components. Convert 
1963 backslashes in all pathnames to forward slashes, for readability. Include 
1964 file 
1965 pathname changes affect both #include and Include() type operators.
1966
1967 iASL/DTC/Preprocessor: Gracefully handle early EOF. Handle an EOF at the 
1968 end 
1969 of a valid line by inserting a newline and then returning the EOF during 
1970 the 
1971 next call to GetNextLine. Prevents the line from being ignored due to EOF 
1972 condition.
1973
1974 iASL: Implemented some changes to enhance the IDE support (-vi option.) 
1975 Error 
1976 and Warning messages are now correctly recognized for both the source 
1977 code 
1978 browser and the global error and warning counts.
1979
1980 ----------------------------------------
1981 20 April 2012. Summary of changes for version 20120420:
1982
1983
1984 1) ACPICA Core Subsystem:
1985
1986 Implemented support for multiple notify handlers. This change adds 
1987 support 
1988 to 
1989 allow multiple system and device notify handlers on Device, Thermal Zone, 
1990 and 
1991 Processor objects. This can simplify the host OS notification 
1992 implementation. 
1993 Also re-worked and restructured the entire notify support code to 
1994 simplify 
1995 handler installation, handler removal, notify event queuing, and notify 
1996 dispatch to handler(s). Note: there can still only be two global notify 
1997 handlers - one for system notifies and one for device notifies. There are 
1998 no 
1999 changes to the existing handler install/remove interfaces. Lin Ming, Bob 
2000 Moore, Rafael Wysocki.
2001
2002 Fixed a regression in the package repair code where the object reference 
2003 count was calculated incorrectly. Regression was introduced in the commit 
2004 "Support to add Package wrappers".
2005
2006 Fixed a couple possible memory leaks in the AML parser, in the error 
2007 recovery 
2008 path. Jesper Juhl, Lin Ming.
2009
2010 Example Code and Data Size: These are the sizes for the OS-independent 
2011 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
2012 debug version of the code includes the debug output trace mechanism and 
2013 has a 
2014 much larger code and data size.
2015
2016   Previous Release:
2017     Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
2018     Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
2019   Current Release:
2020     Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
2021     Debug Version:     172.6K Code, 73.4K Data, 246.0K Total
2022
2023
2024 2) iASL Compiler/Disassembler and Tools:
2025
2026 iASL: Fixed a problem with the resource descriptor support where the 
2027 length 
2028 of the StartDependentFn and StartDependentFnNoPrio descriptors were not 
2029 included in cumulative descriptor offset, resulting in incorrect values 
2030 for 
2031 resource tags within resource descriptors appearing after a 
2032 StartDependent* 
2033 descriptor. Reported by Petr Vandrovec. ACPICA BZ 949.
2034
2035 iASL and Preprocessor: Implemented full support for the #line directive 
2036 to 
2037 correctly track original source file line numbers through the .i 
2038 preprocessor 
2039 output file - for error and warning messages.
2040
2041 iASL: Expand the allowable byte constants for address space IDs. 
2042 Previously, 
2043 the allowable range was 0x80-0xFF (user-defined spaces), now the range is 
2044 0x0A-0xFF to allow for custom and new IDs without changing the compiler.
2045
2046 iASL: Add option to treat all warnings as errors (-we). ACPICA BZ 948.
2047
2048 iASL: Add option to completely disable the preprocessor (-Pn).
2049
2050 iASL: Now emit all error/warning messages to standard error (stderr) by 
2051 default (instead of the previous stdout).
2052
2053 ASL Test Suite (ASLTS): Reduce iASL warnings due to use of Switch(). 
2054 Update 
2055 for resource descriptor offset fix above. Update/cleanup error output 
2056 routines. Enable and send iASL errors/warnings to an error logfile 
2057 (error.txt). Send all other iASL output to a logfile (compiler.txt). 
2058 Fixed 
2059 several extraneous "unrecognized operator" messages.
2060
2061 ----------------------------------------
2062 20 March 2012. Summary of changes for version 20120320:
2063
2064
2065 1) ACPICA Core Subsystem:
2066
2067 Enhanced the sleep/wake interfaces to optionally execute the _GTS method 
2068 (Going To Sleep) and the _BFS method (Back From Sleep). Windows 
2069 apparently 
2070 does not execute these methods, and therefore these methods are often 
2071 untested. It has been seen on some systems where the execution of these 
2072 methods causes errors and also prevents the machine from entering S5. It 
2073 is 
2074 therefore suggested that host operating systems do not execute these 
2075 methods 
2076 by default. In the future, perhaps these methods can be optionally 
2077 executed 
2078 based on the age of the system and/or what is the newest version of 
2079 Windows 
2080 that the BIOS asks for via _OSI. Changed interfaces: AcpiEnterSleepState 
2081 and 
2082 AcpileaveSleepStatePrep. See the ACPICA reference and Linux BZ 13041. Lin 
2083 Ming.
2084
2085 Fixed a problem where the length of the local/common FADT was set too 
2086 early. 
2087 The local FADT table length cannot be set to the common length until the 
2088 original length has been examined. There is code that checks the table 
2089 length 
2090 and sets various fields appropriately. This can affect older machines 
2091 with 
2092 early FADT versions. For example, this can cause inadvertent writes to 
2093 the 
2094 CST_CNT register. Julian Anastasov.
2095
2096 Fixed a mapping issue related to a physical table override. Use the 
2097 deferred 
2098 mapping mechanism for tables loaded via the physical override OSL 
2099 interface. 
2100 This allows for early mapping before the virtual memory manager is 
2101 available. 
2102 Thomas Renninger, Bob Moore.
2103
2104 Enhanced the automatic return-object repair code: Repair a common problem 
2105 with 
2106 predefined methods that are defined to return a variable-length Package 
2107 of 
2108 sub-objects. If there is only one sub-object, some BIOS ASL code 
2109 mistakenly 
2110 simply returns the single object instead of a Package with one sub-
2111 object. 
2112 This new support will repair this error by wrapping a Package object 
2113 around 
2114 the original object, creating the correct and expected Package with one 
2115 sub-
2116 object. Names that can be repaired in this manner include: _ALR, _CSD, 
2117 _HPX, 
2118 _MLS, _PLD, _PRT, _PSS, _TRT, _TSS, _BCL, _DOD, _FIX, and _Sx. ACPICA BZ 
2119 939.
2120
2121 Changed the exception code returned for invalid ACPI paths passed as 
2122 parameters to external interfaces such as AcpiEvaluateObject. Was 
2123 AE_BAD_PARAMETER, now is the more sensible AE_BAD_PATHNAME.
2124
2125 Example Code and Data Size: These are the sizes for the OS-independent 
2126 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
2127 debug 
2128 version of the code includes the debug output trace mechanism and has a 
2129 much 
2130 larger code and data size.
2131
2132   Previous Release:
2133     Non-Debug Version:  93.0K Code, 25.0K Data, 118.0K Total
2134     Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
2135   Current Release:
2136     Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
2137     Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
2138
2139
2140 2) iASL Compiler/Disassembler and Tools:
2141
2142 iASL: Added the infrastructure and initial implementation of a integrated 
2143 C-
2144 like preprocessor. This will simplify BIOS development process by 
2145 eliminating 
2146 the need for a separate preprocessing step during builds. On Windows, it 
2147 also 
2148 eliminates the need to install a separate C compiler. ACPICA BZ 761. Some 
2149 features including full #define() macro support are still under 
2150 development. 
2151 These preprocessor directives are supported:
2152     #define
2153     #elif
2154     #else
2155     #endif
2156     #error
2157     #if
2158     #ifdef
2159     #ifndef
2160     #include
2161     #pragma message
2162     #undef
2163     #warning
2164 In addition, these new command line options are supported:
2165     -D <symbol> Define symbol for preprocessor use
2166     -li         Create preprocessed output file (*.i)
2167     -P          Preprocess only and create preprocessor output file (*.i)
2168
2169 Table Compiler: Fixed a problem where the equals operator within an 
2170 expression 
2171 did not work properly.
2172
2173 Updated iASL to use the current versions of Bison/Flex. Updated the 
2174 Windows 
2175 project file to invoke these tools from the standard location. ACPICA BZ 
2176 904. 
2177 Versions supported:
2178     Flex for Windows:  V2.5.4
2179     Bison for Windows: V2.4.1
2180
2181 ----------------------------------------
2182 15 February 2012. Summary of changes for version 20120215:
2183
2184
2185 1) ACPICA Core Subsystem:
2186
2187 There have been some major changes to the sleep/wake support code, as 
2188 described below (a - e).
2189
2190 a) The AcpiLeaveSleepState has been split into two interfaces, similar to 
2191 AcpiEnterSleepStatePrep and AcpiEnterSleepState. The new interface is 
2192 AcpiLeaveSleepStatePrep. This allows the host to perform actions between 
2193 the 
2194 time the _BFS method is called and the _WAK method is called. NOTE: all 
2195 hosts 
2196 must update their wake/resume code or else sleep/wake will not work 
2197 properly. 
2198 Rafael Wysocki.
2199
2200 b) In AcpiLeaveSleepState, now enable all runtime GPEs before calling the 
2201 _WAK 
2202 method. Some machines require that the GPEs are enabled before the _WAK 
2203 method 
2204 is executed. Thomas Renninger.
2205
2206 c) In AcpiLeaveSleepState, now always clear the WAK_STS (wake status) 
2207 bit. 
2208 Some BIOS code assumes that WAK_STS will be cleared on resume and use it 
2209 to 
2210 determine whether the system is rebooting or resuming. Matthew Garrett.
2211
2212 d) Move the invocations of _GTS (Going To Sleep) and _BFS (Back From 
2213 Sleep) to 
2214 match the ACPI specification requirement. Rafael Wysocki.
2215
2216 e) Implemented full support for the ACPI 5.0 SleepStatus and SleepControl 
2217 registers within the V5 FADT. This support adds two new files: 
2218 hardware/hwesleep.c implements the support for the new registers. Moved 
2219 all 
2220 sleep/wake external interfaces to hardware/hwxfsleep.c.
2221
2222
2223 Added a new OSL interface for ACPI table overrides, 
2224 AcpiOsPhysicalTableOverride. This interface allows the host to override a 
2225 table via a physical address, instead of the logical address required by 
2226 AcpiOsTableOverride. This simplifies the host implementation. Initial 
2227 implementation by Thomas Renninger. The ACPICA implementation creates a 
2228 single 
2229 shared function for table overrides that attempts both a logical and a 
2230 physical override.
2231
2232 Expanded the OSL memory read/write interfaces to 64-bit data 
2233 (AcpiOsReadMemory, AcpiOsWriteMemory.) This enables full 64-bit memory 
2234 transfer support for GAS register structures passed to AcpiRead and 
2235 AcpiWrite.
2236
2237 Implemented the ACPI_REDUCED_HARDWARE option to allow the creation of a 
2238 custom 
2239 build of ACPICA that supports only the ACPI 5.0 reduced hardware (SoC) 
2240 model. 
2241 See the ACPICA reference for details. ACPICA BZ 942. This option removes 
2242 about 
2243 10% of the code and 5% of the static data, and the following hardware 
2244 ACPI 
2245 features become unavailable:
2246     PM Event and Control registers
2247     SCI interrupt (and handler)
2248     Fixed Events
2249     General Purpose Events (GPEs)
2250     Global Lock
2251     ACPI PM timer
2252     FACS table (Waking vectors and Global Lock)
2253
2254 Updated the unix tarball directory structure to match the ACPICA git 
2255 source 
2256 tree. This ensures that the generic unix makefiles work properly (in 
2257 generate/unix).  Also updated the Linux makefiles to match. ACPICA BZ 
2258 867.
2259
2260 Updated the return value of the _REV predefined method to integer value 5 
2261 to 
2262 reflect ACPI 5.0 support.
2263
2264 Moved the external ACPI PM timer interface prototypes to the public 
2265 acpixf.h 
2266 file where they belong.
2267
2268 Example Code and Data Size: These are the sizes for the OS-independent 
2269 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
2270 debug 
2271 version of the code includes the debug output trace mechanism and has a 
2272 much 
2273 larger code and data size.
2274
2275   Previous Release:
2276     Non-Debug Version:  92.8K Code, 24.9K Data, 117.7K Total
2277     Debug Version:     171.7K Code, 72.9K Data, 244.5K Total
2278   Current Release:
2279     Non-Debug Version:  93.0K Code, 25.0K Data, 118.0K Total
2280     Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
2281
2282
2283 2) iASL Compiler/Disassembler and Tools:
2284
2285 Disassembler: Fixed a problem with the new ACPI 5.0 serial resource 
2286 descriptors (I2C, SPI, UART) where the resource produce/consumer bit was 
2287 incorrectly displayed.
2288
2289 AcpiHelp: Add display of ACPI/PNP device IDs that are defined in the ACPI 
2290 specification.
2291
2292 ----------------------------------------
2293 11 January 2012. Summary of changes for version 20120111:
2294
2295
2296 1) ACPICA Core Subsystem:
2297
2298 Implemented a new mechanism to allow host device drivers to check for 
2299 address 
2300 range conflicts with ACPI Operation Regions. Both SystemMemory and 
2301 SystemIO 
2302 address spaces are supported. A new external interface, 
2303 AcpiCheckAddressRange, 
2304 allows drivers to check an address range against the ACPI namespace. See 
2305 the 
2306 ACPICA reference for additional details. Adds one new file, 
2307 utilities/utaddress.c. Lin Ming, Bob Moore.
2308
2309 Fixed several issues with the ACPI 5.0 FADT support: Add the sleep 
2310 Control 
2311 and 
2312 Status registers, update the ACPI 5.0 flags, and update internal data 
2313 structures to handle an FADT larger than 256 bytes. The size of the ACPI 
2314 5.0 
2315 FADT is 268 bytes.
2316
2317 Updated all ACPICA copyrights and signons to 2012. Added the 2012 
2318 copyright to 
2319 all module headers and signons, including the standard Linux header. This 
2320 affects virtually every file in the ACPICA core subsystem, iASL compiler, 
2321 and 
2322 all ACPICA utilities.
2323
2324 Example Code and Data Size: These are the sizes for the OS-independent 
2325 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
2326 debug 
2327 version of the code includes the debug output trace mechanism and has a 
2328 much 
2329 larger code and data size.
2330
2331   Previous Release:
2332     Non-Debug Version:  92.3K Code, 24.9K Data, 117.2K Total
2333     Debug Version:     170.8K Code, 72.6K Data, 243.4K Total
2334   Current Release:
2335     Non-Debug Version:  92.8K Code, 24.9K Data, 117.7K Total
2336     Debug Version:     171.7K Code, 72.9K Data, 244.5K Total
2337
2338
2339 2) iASL Compiler/Disassembler and Tools:
2340
2341 Disassembler: fixed a problem with the automatic resource tag generation 
2342 support. Fixes a problem where the resource tags are inadvertently not 
2343 constructed if the table being disassembled contains external references 
2344 to 
2345 control methods. Moved the actual construction of the tags to after the 
2346 final 
2347 namespace is constructed (after 2nd parse is invoked due to external 
2348 control 
2349 method references.) ACPICA BZ 941.
2350
2351 Table Compiler: Make all "generic" operators caseless. These are the 
2352 operators 
2353 like UINT8, String, etc. Making these caseless improves ease-of-use. 
2354 ACPICA BZ 
2355 934.
2356
2357 ----------------------------------------
2358 23 November 2011. Summary of changes for version 20111123:
2359
2360 0) ACPI 5.0 Support:
2361
2362 This release contains full support for the ACPI 5.0 specification, as 
2363 summarized below.
2364
2365 Reduced Hardware Support:
2366 -------------------------
2367
2368 This support allows for ACPI systems without the usual ACPI hardware. 
2369 This 
2370 support is enabled by a flag in the revision 5 FADT. If it is set, ACPICA 
2371 will 
2372 not attempt to initialize or use any of the usual ACPI hardware. Note, 
2373 when 
2374 this flag is set, all of the following ACPI hardware is assumed to be not 
2375 present and is not initialized or accessed:
2376
2377     General Purpose Events (GPEs)
2378     Fixed Events (PM1a/PM1b and PM Control)
2379     Power Management Timer and Console Buttons (power/sleep)
2380     Real-time Clock Alarm
2381     Global Lock
2382     System Control Interrupt (SCI)
2383     The FACS is assumed to be non-existent
2384
2385 ACPI Tables:
2386 ------------
2387
2388 All new tables and updates to existing tables are fully supported in the 
2389 ACPICA headers (for use by device drivers), the disassembler, and the 
2390 iASL 
2391 Data Table Compiler. ACPI 5.0 defines these new tables:
2392
2393     BGRT        /* Boot Graphics Resource Table */
2394     DRTM        /* Dynamic Root of Trust for Measurement table */
2395     FPDT        /* Firmware Performance Data Table */
2396     GTDT        /* Generic Timer Description Table */
2397     MPST        /* Memory Power State Table */
2398     PCCT        /* Platform Communications Channel Table */
2399     PMTT        /* Platform Memory Topology Table */
2400     RASF        /* RAS Feature table */
2401
2402 Operation Regions/SpaceIDs:
2403 ---------------------------
2404
2405 All new operation regions are fully supported by the iASL compiler, the 
2406 disassembler, and the ACPICA runtime code (for dispatch to region 
2407 handlers.) 
2408 The new operation region Space IDs are:
2409
2410     GeneralPurposeIo
2411     GenericSerialBus
2412
2413 Resource Descriptors:
2414 ---------------------
2415
2416 All new ASL resource descriptors are fully supported by the iASL 
2417 compiler, 
2418 the 
2419 ASL/AML disassembler, and the ACPICA runtime Resource Manager code 
2420 (including 
2421 all new predefined resource tags). New descriptors are:
2422
2423     FixedDma
2424     GpioIo
2425     GpioInt
2426     I2cSerialBus
2427     SpiSerialBus
2428     UartSerialBus
2429
2430 ASL/AML Operators, New and Modified:
2431 ------------------------------------
2432
2433 One new operator is added, the Connection operator, which is used to 
2434 associate 
2435 a GeneralPurposeIo or GenericSerialBus resource descriptor with 
2436 individual 
2437 field objects within an operation region. Several new protocols are 
2438 associated 
2439 with the AccessAs operator. All are fully supported by the iASL compiler, 
2440 disassembler, and runtime ACPICA AML interpreter:
2441
2442     Connection                      // Declare Field Connection 
2443 attributes
2444     AccessAs: AttribBytes (n)           // Read/Write N-Bytes Protocol
2445     AccessAs: AttribRawBytes (n)        // Raw Read/Write N-Bytes 
2446 Protocol
2447     AccessAs: AttribRawProcessBytes (n) // Raw Process Call Protocol
2448     RawDataBuffer                       // Data type for Vendor Data 
2449 fields
2450
2451 Predefined ASL/AML Objects:
2452 ---------------------------
2453
2454 All new predefined objects/control-methods are supported by the iASL 
2455 compiler 
2456 and the ACPICA runtime validation/repair (arguments and return values.) 
2457 New 
2458 predefined names include the following:
2459
2460 Standard Predefined Names (Objects or Control Methods):
2461     _AEI, _CLS, _CPC, _CWS, _DEP,
2462     _DLM, _EVT, _GCP, _CRT, _GWS,
2463     _HRV, _PRE, _PSE, _SRT, _SUB.
2464
2465 Resource Tags (Names used to access individual fields within resource 
2466 descriptors):
2467     _DBT, _DPL, _DRS, _END, _FLC,
2468     _IOR, _LIN, _MOD, _PAR, _PHA,
2469     _PIN, _PPI, _POL, _RXL, _SLV,
2470     _SPE, _STB, _TXL, _VEN.
2471
2472 ACPICA External Interfaces:
2473 ---------------------------
2474
2475 Several new interfaces have been defined for use by ACPI-related device 
2476 drivers and other host OS services:
2477
2478 AcpiAcquireMutex and AcpiReleaseMutex: These interfaces allow the host OS 
2479 to 
2480 acquire and release AML mutexes that are defined in the DSDT/SSDT tables 
2481 provided by the BIOS. They are intended to be used in conjunction with 
2482 the 
2483 ACPI 5.0 _DLM (Device Lock Method) in order to provide transaction-level 
2484 mutual exclusion with the AML code/interpreter.
2485
2486 AcpiGetEventResources: Returns the (formatted) resource descriptors as 
2487 defined 
2488 by the ACPI 5.0 _AEI object (ACPI Event Information).  This object 
2489 provides 
2490 resource descriptors associated with hardware-reduced platform events, 
2491 similar 
2492 to the AcpiGetCurrentResources interface.
2493
2494 Operation Region Handlers: For General Purpose IO and Generic Serial Bus 
2495 operation regions, information about the Connection() object and any 
2496 optional 
2497 length information is passed to the region handler within the Context 
2498 parameter.
2499
2500 AcpiBufferToResource: This interface converts a raw AML buffer containing 
2501
2502 resource template or resource descriptor to the ACPI_RESOURCE internal 
2503 format 
2504 suitable for use by device drivers. Can be used by an operation region 
2505 handler 
2506 to convert the Connection() buffer object into a ACPI_RESOURCE.
2507
2508 Miscellaneous/Tools/TestSuites: 
2509 -------------------------------
2510
2511 Support for extended _HID names (Four alpha characters instead of three).
2512 Support for ACPI 5.0 features in the AcpiExec and AcpiHelp utilities.
2513 Support for ACPI 5.0 features in the ASLTS test suite.
2514 Fully updated documentation (ACPICA and iASL reference documents.)
2515
2516 ACPI Table Definition Language:
2517 -------------------------------
2518
2519 Support for this language was implemented and released as a subsystem of 
2520 the 
2521 iASL compiler in 2010. (See the iASL compiler User Guide.)
2522
2523
2524 Non-ACPI 5.0 changes for this release:
2525 --------------------------------------
2526
2527 1) ACPICA Core Subsystem:
2528
2529 Fix a problem with operation region declarations where a failure can 
2530 occur 
2531 if 
2532 the region name and an argument that evaluates to an object (such as the 
2533 region address) are in different namespace scopes. Lin Ming, ACPICA BZ 
2534 937.
2535
2536 Do not abort an ACPI table load if an invalid space ID is found within. 
2537 This 
2538 will be caught later if the offending method is executed. ACPICA BZ 925.
2539
2540 Fixed an issue with the FFixedHW space ID where the ID was not always 
2541 recognized properly (Both ACPICA and iASL). ACPICA BZ 926.
2542
2543 Fixed a problem with the 32-bit generation of the unix-specific OSL 
2544 (osunixxf.c). Lin Ming, ACPICA BZ 936.
2545
2546 Several changes made to enable generation with the GCC 4.6 compiler. 
2547 ACPICA BZ 
2548 935.
2549
2550 New error messages: Unsupported I/O requests (not 8/16/32 bit), and 
2551 Index/Bank 
2552 field registers out-of-range.
2553
2554 2) iASL Compiler/Disassembler and Tools:
2555
2556 iASL: Implemented the __PATH__ operator, which returns the full pathname 
2557 of 
2558 the current source file.
2559
2560 AcpiHelp: Automatically display expanded keyword information for all ASL 
2561 operators.
2562
2563 Debugger: Add "Template" command to disassemble/dump resource template 
2564 buffers.
2565
2566 Added a new master script to generate and execute the ASLTS test suite. 
2567 Automatically handles 32- and 64-bit generation. See tests/aslts.sh
2568
2569 iASL: Fix problem with listing generation during processing of the 
2570 Switch() 
2571 operator where AML listing was disabled until the entire Switch block was 
2572 completed.
2573
2574 iASL: Improve support for semicolon statement terminators. Fix "invalid 
2575 character" message for some cases when the semicolon is used. Semicolons 
2576 are 
2577 now allowed after every <Term> grammar element. ACPICA BZ 927.
2578
2579 iASL: Fixed some possible aliasing warnings during generation. ACPICA BZ 
2580 923.
2581
2582 Disassembler: Fix problem with disassembly of the DataTableRegion 
2583 operator 
2584 where an inadvertent "Unhandled deferred opcode" message could be 
2585 generated.
2586
2587 3) Example Code and Data Size
2588
2589 These are the sizes for the OS-independent acpica.lib produced by the 
2590 Microsoft Visual C++ 9.0 32-bit compiler. The debug version of the code 
2591 includes the debug output trace mechanism and has a much larger code and 
2592 data 
2593 size.
2594
2595   Previous Release:
2596     Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
2597     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
2598   Current Release:
2599     Non-Debug Version:  92.3K Code, 24.9K Data, 117.2K Total
2600     Debug Version:     170.8K Code, 72.6K Data, 243.4K Total
2601
2602 ----------------------------------------
2603 22 September 2011. Summary of changes for version 20110922:
2604
2605 0) ACPI 5.0 News:
2606
2607 Support for ACPI 5.0 in ACPICA has been underway for several months and 
2608 will 
2609 be released at the same time that ACPI 5.0 is officially released.
2610
2611 The ACPI 5.0 specification is on track for release in the next few 
2612 months.
2613  
2614 1) ACPICA Core Subsystem:
2615
2616 Fixed a problem where the maximum sleep time for the Sleep() operator was 
2617 intended to be limited to two seconds, but was inadvertently limited to 
2618 20 
2619 seconds instead.
2620
2621 Linux and Unix makefiles: Added header file dependencies to ensure 
2622 correct 
2623 generation of ACPICA core code and utilities. Also simplified the 
2624 makefiles 
2625 considerably through the use of the vpath variable to specify search 
2626 paths. 
2627 ACPICA BZ 924.
2628
2629 2) iASL Compiler/Disassembler and Tools:
2630
2631 iASL: Implemented support to check the access length for all fields 
2632 created to 
2633 access named Resource Descriptor fields. For example, if a resource field 
2634 is 
2635 defined to be two bits, a warning is issued if a CreateXxxxField() is 
2636 used 
2637 with an incorrect bit length. This is implemented for all current 
2638 resource 
2639 descriptor names. ACPICA BZ 930.
2640   
2641 Disassembler: Fixed a byte ordering problem with the output of 24-bit and 
2642 56-
2643 bit integers.
2644
2645 iASL: Fixed a couple of issues associated with variable-length package 
2646 objects. 1) properly handle constants like One, Ones, Zero -- do not make 
2647
2648 VAR_PACKAGE when these are used as a package length. 2) Allow the 
2649 VAR_PACKAGE 
2650 opcode (in addition to PACKAGE) when validating object types for 
2651 predefined 
2652 names.
2653
2654 iASL: Emit statistics for all output files (instead of just the ASL input 
2655 and 
2656 AML output). Includes listings, hex files, etc.
2657
2658 iASL: Added -G option to the table compiler to allow the compilation of 
2659 custom 
2660 ACPI tables. The only part of a table that is required is the standard 
2661 36-
2662 byte 
2663 ACPI header.
2664
2665 AcpiXtract: Ported to the standard ACPICA environment (with ACPICA 
2666 headers), 
2667 which also adds correct 64-bit support. Also, now all output filenames 
2668 are 
2669 completely lower case.
2670
2671 AcpiExec: Ignore any non-AML tables (tables other than DSDT or SSDT) when 
2672 loading table files. A warning is issued for any such tables. The only 
2673 exception is an FADT. This also fixes a possible fault when attempting to 
2674 load 
2675 non-AML tables. ACPICA BZ 932.
2676
2677 AcpiHelp: Added the AccessAs and Offset operators. Fixed a problem where 
2678
2679 missing table terminator could cause a fault when using the -p option.
2680
2681 AcpiSrc: Fixed a possible divide-by-zero fault when generating file 
2682 statistics.
2683
2684 3) Example Code and Data Size
2685
2686 These are the sizes for the OS-independent acpica.lib produced by the 
2687 Microsoft Visual C++ 9.0 32-bit compiler. The debug version of the code 
2688 includes the debug output trace mechanism and has a much larger code and 
2689 data 
2690 size.
2691
2692   Previous Release (VC 9.0):
2693     Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
2694     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
2695   Current Release (VC 9.0):
2696     Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
2697     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
2698
2699
2700 ----------------------------------------
2701 23 June 2011. Summary of changes for version 20110623:
2702
2703 1) ACPI CA Core Subsystem:
2704
2705 Updated the predefined name repair mechanism to not attempt repair of a 
2706 _TSS 
2707 return object if a _PSS object is present. We can only sort the _TSS 
2708 return 
2709 package if there is no _PSS within the same scope. This is because if 
2710 _PSS 
2711 is 
2712 present, the ACPI specification dictates that the _TSS Power Dissipation 
2713 field 
2714 is to be ignored, and therefore some BIOSs leave garbage values in the 
2715 _TSS 
2716 Power field(s). In this case, it is best to just return the _TSS package 
2717 as-
2718 is. Reported by, and fixed with assistance from Fenghua Yu.
2719
2720 Added an option to globally disable the control method return value 
2721 validation 
2722 and repair. This runtime option can be used to disable return value 
2723 repair 
2724 if 
2725 this is causing a problem on a particular machine. Also added an option 
2726 to 
2727 AcpiExec (-dr) to set this disable flag.
2728
2729 All makefiles and project files: Major changes to improve generation of 
2730 ACPICA 
2731 tools. ACPICA BZ 912:
2732     Reduce default optimization levels to improve compatibility
2733     For Linux, add strict-aliasing=0 for gcc 4
2734     Cleanup and simplify use of command line defines
2735     Cleanup multithread library support
2736     Improve usage messages
2737
2738 Linux-specific header: update handling of THREAD_ID and pthread. For the 
2739 32-
2740 bit case, improve casting to eliminate possible warnings, especially with 
2741 the 
2742 acpica tools.
2743
2744 Example Code and Data Size: These are the sizes for the OS-independent 
2745 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
2746 debug 
2747 version of the code includes the debug output trace mechanism and has a 
2748 much 
2749 larger code and data size.
2750
2751   Previous Release (VC 9.0):
2752     Non-Debug Version:  90.1K Code, 23.9K Data, 114.0K Total
2753     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
2754   Current Release (VC 9.0):
2755     Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
2756     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
2757
2758 2) iASL Compiler/Disassembler and Tools:
2759
2760 With this release, a new utility named "acpihelp" has been added to the 
2761 ACPICA 
2762 package. This utility summarizes the ACPI specification chapters for the 
2763 ASL 
2764 and AML languages. It generates under Linux/Unix as well as Windows, and 
2765 provides the following functionality:
2766     Find/display ASL operator(s) -- with description and syntax.
2767     Find/display ASL keyword(s) -- with exact spelling and descriptions.
2768     Find/display ACPI predefined name(s) -- with description, number
2769         of arguments, and the return value data type.
2770     Find/display AML opcode name(s) -- with opcode, arguments, and 
2771 grammar.
2772     Decode/display AML opcode -- with opcode name, arguments, and 
2773 grammar.
2774
2775 Service Layers: Make multi-thread support configurable. Conditionally 
2776 compile 
2777 the multi-thread support so that threading libraries will not be linked 
2778 if 
2779 not 
2780 necessary. The only tool that requires multi-thread support is AcpiExec.
2781
2782 iASL: Update yyerrror/AslCompilerError for "const" errors. Newer versions 
2783 of 
2784 Bison appear to want the interface to yyerror to be a const char * (or at 
2785 least this is a problem when generating iASL on some systems.) ACPICA BZ 
2786 923 
2787 Pierre Lejeune.
2788
2789 Tools: Fix for systems where O_BINARY is not defined. Only used for 
2790 Windows 
2791 versions of the tools.
2792
2793 ----------------------------------------
2794 27 May 2011. Summary of changes for version 20110527:
2795
2796 1) ACPI CA Core Subsystem:
2797
2798 ASL Load() operator: Reinstate most restrictions on the incoming ACPI 
2799 table 
2800 signature. Now, only allow SSDT, OEMx, and a null signature. History:
2801     1) Originally, we checked the table signature for "SSDT" or "PSDT".
2802        (PSDT is now obsolete.)
2803     2) We added support for OEMx tables, signature "OEM" plus a fourth
2804        "don't care" character.
2805     3) Valid tables were encountered with a null signature, so we just
2806        gave up on validating the signature, (05/2008).
2807     4) We encountered non-AML tables such as the MADT, which caused
2808        interpreter errors and kernel faults. So now, we once again allow
2809        only SSDT, OEMx, and now, also a null signature. (05/2011).
2810
2811 Added the missing _TDL predefined name to the global name list in order 
2812 to 
2813 enable validation. Affects both the core ACPICA code and the iASL 
2814 compiler.
2815
2816 Example Code and Data Size: These are the sizes for the OS-independent 
2817 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
2818 debug 
2819 version of the code includes the debug output trace mechanism and has a 
2820 much 
2821 larger code and data size.
2822
2823   Previous Release (VC 9.0):
2824     Non-Debug Version:  90.0K Code, 23.8K Data, 113.8K Total
2825     Debug Version:     164.5K Code, 68.0K Data, 232.5K Total
2826   Current Release (VC 9.0):
2827     Non-Debug Version:  90.1K Code, 23.9K Data, 114.0K Total
2828     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
2829
2830 2) iASL Compiler/Disassembler and Tools:
2831
2832 Debugger/AcpiExec: Implemented support for "complex" method arguments on 
2833 the 
2834 debugger command line. This adds support beyond simple integers -- 
2835 including 
2836 Strings, Buffers, and Packages. Includes support for nested packages. 
2837 Increased the default command line buffer size to accommodate these 
2838 arguments. 
2839 See the ACPICA reference for details and syntax. ACPICA BZ 917.
2840  
2841 Debugger/AcpiExec: Implemented support for "default" method arguments for 
2842 the 
2843 Execute/Debug command. Now, the debugger will always invoke a control 
2844 method 
2845 with the required number of arguments -- even if the command line 
2846 specifies 
2847 none or insufficient arguments. It uses default integer values for any 
2848 missing 
2849 arguments. Also fixes a bug where only six method arguments maximum were 
2850 supported instead of the required seven.
2851
2852 Debugger/AcpiExec: Add a maximum buffer length parameter to AcpiOsGetLine 
2853 and 
2854 also return status in order to prevent buffer overruns. See the ACPICA 
2855 reference for details and syntax. ACPICA BZ 921
2856
2857 iASL: Cleaned up support for Berkeley yacc. A general cleanup of code and 
2858 makefiles to simplify support for the two different but similar parser 
2859 generators, bison and yacc.
2860
2861 Updated the generic unix makefile for gcc 4. The default gcc version is 
2862 now 
2863 expected to be 4 or greater, since options specific to gcc 4 are used.
2864
2865 ----------------------------------------
2866 13 April 2011. Summary of changes for version 20110413:
2867
2868 1) ACPI CA Core Subsystem:
2869
2870 Implemented support to execute a so-called "orphan" _REG method under the 
2871 EC 
2872 device. This change will force the execution of a _REG method underneath 
2873 the 
2874 EC 
2875 device even if there is no corresponding operation region of type 
2876 EmbeddedControl. Fixes a problem seen on some machines and apparently is 
2877 compatible with Windows behavior. ACPICA BZ 875.
2878
2879 Added more predefined methods that are eligible for automatic NULL 
2880 package 
2881 element removal. This change adds another group of predefined names to 
2882 the 
2883 list 
2884 of names that can be repaired by having NULL package elements dynamically 
2885 removed. This group are those methods that return a single variable-
2886 length 
2887 package containing simple data types such as integers, buffers, strings. 
2888 This 
2889 includes: _ALx, _BCL, _CID,_ DOD, _EDL, _FIX, _PCL, _PLD, _PMD, _PRx, 
2890 _PSL, 
2891 _Sx, 
2892 and _TZD. ACPICA BZ 914.
2893
2894 Split and segregated all internal global lock functions to a new file, 
2895 evglock.c.
2896
2897 Updated internal address SpaceID for DataTable regions. Moved this 
2898 internal 
2899 space 
2900 id in preparation for ACPI 5.0 changes that will include some new space 
2901 IDs. 
2902 This 
2903 change should not affect user/host code.
2904
2905 Example Code and Data Size: These are the sizes for the OS-independent 
2906 acpica.lib 
2907 produced by the Microsoft Visual C++ 9.0 32-bit compiler. The debug 
2908 version of 
2909 the code includes the debug output trace mechanism and has a much larger 
2910 code 
2911 and 
2912 data size.
2913
2914   Previous Release (VC 9.0):
2915     Non-Debug Version:  89.8K Code, 23.8K Data, 113.6K Total
2916     Debug Version:     164.2K Code, 67.9K Data, 232.1K Total
2917   Current Release (VC 9.0):
2918     Non-Debug Version:  90.0K Code, 23.8K Data, 113.8K Total
2919     Debug Version:     164.5K Code, 68.0K Data, 232.5K Total
2920
2921 2) iASL Compiler/Disassembler and Tools:
2922
2923 iASL/DTC: Major update for new grammar features. Allow generic data types 
2924 in 
2925 custom ACPI tables. Field names are now optional. Any line can be split 
2926 to 
2927 multiple lines using the continuation char (\). Large buffers now use 
2928 line-
2929 continuation character(s) and no colon on the continuation lines. See the 
2930 grammar 
2931 update in the iASL compiler reference. ACPI BZ 910,911. Lin Ming, Bob 
2932 Moore.
2933
2934 iASL: Mark ASL "Return()" and the simple "Return" as "Null" return 
2935 statements. 
2936 Since the parser stuffs a "zero" as the return value for these statements 
2937 (due 
2938 to 
2939 the underlying AML grammar), they were seen as "return with value" by the 
2940 iASL 
2941 semantic checking. They are now seen correctly as "null" return 
2942 statements.
2943
2944 iASL: Check if a_REG declaration has a corresponding Operation Region. 
2945 Adds a 
2946 check for each _REG to ensure that there is in fact a corresponding 
2947 operation 
2948 region declaration in the same scope. If not, the _REG method is not very 
2949 useful 
2950 since it probably won't be executed. ACPICA BZ 915.
2951
2952 iASL/DTC: Finish support for expression evaluation. Added a new 
2953 expression 
2954 parser 
2955 that implements c-style operator precedence and parenthesization. ACPICA 
2956 bugzilla 
2957 908.
2958
2959 Disassembler/DTC: Remove support for () and <> style comments in data 
2960 tables. 
2961 Now 
2962 that DTC has full expression support, we don't want to have comment 
2963 strings 
2964 that 
2965 start with a parentheses or a less-than symbol. Now, only the standard /* 
2966 and 
2967 // 
2968 comments are supported, as well as the bracket [] comments.
2969
2970 AcpiXtract: Fix for RSDP and dynamic SSDT extraction. These tables have 
2971 "unusual" 
2972 headers in the acpidump file. Update the header validation to support 
2973 these 
2974 tables. Problem introduced in previous AcpiXtract version in the change 
2975 to 
2976 support "wrong checksum" error messages emitted by acpidump utility.
2977
2978 iASL: Add a * option to generate all template files (as a synonym for 
2979 ALL) 
2980 as 
2981 in 
2982 "iasl -T *" or "iasl -T ALL".
2983
2984 iASL/DTC: Do not abort compiler on fatal errors. We do not want to 
2985 completely 
2986 abort the compiler on "fatal" errors, simply should abort the current 
2987 compile. 
2988 This allows multiple compiles with a single (possibly wildcard) compiler 
2989 invocation.
2990
2991 ----------------------------------------
2992 16 March 2011. Summary of changes for version 20110316:
2993
2994 1) ACPI CA Core Subsystem:
2995
2996 Fixed a problem caused by a _PRW method appearing at the namespace root 
2997 scope 
2998 during the setup of wake GPEs. A fault could occur if a _PRW directly 
2999 under 
3000 the 
3001 root object was passed to the AcpiSetupGpeForWake interface. Lin Ming.
3002
3003 Implemented support for "spurious" Global Lock interrupts. On some 
3004 systems, a 
3005 global lock interrupt can occur without the pending flag being set. Upon 
3006
3007 GL 
3008 interrupt, we now ensure that a thread is actually waiting for the lock 
3009 before 
3010 signaling GL availability. Rafael Wysocki, Bob Moore.
3011
3012 Example Code and Data Size: These are the sizes for the OS-independent 
3013 acpica.lib 
3014 produced by the Microsoft Visual C++ 9.0 32-bit compiler. The debug 
3015 version of 
3016 the code includes the debug output trace mechanism and has a much larger 
3017 code 
3018 and 
3019 data size.
3020
3021   Previous Release (VC 9.0):
3022     Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
3023     Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
3024   Current Release (VC 9.0):
3025     Non-Debug Version:  89.8K Code, 23.8K Data, 113.6K Total
3026     Debug Version:     164.2K Code, 67.9K Data, 232.1K Total
3027
3028 2) iASL Compiler/Disassembler and Tools:
3029
3030 Implemented full support for the "SLIC" ACPI table. Includes support in 
3031 the 
3032 header files, disassembler, table compiler, and template generator. Bob 
3033 Moore, 
3034 Lin Ming.
3035
3036 AcpiXtract: Correctly handle embedded comments and messages from 
3037 AcpiDump. 
3038 Apparently some or all versions of acpidump will occasionally emit a 
3039 comment 
3040 like 
3041 "Wrong checksum", etc., into the dump file. This was causing problems for 
3042 AcpiXtract. ACPICA BZ 905.
3043
3044 iASL: Fix the Linux makefile by removing an inadvertent double file 
3045 inclusion. 
3046 ACPICA BZ 913.
3047
3048 AcpiExec: Update installation of operation region handlers. Install one 
3049 handler 
3050 for a user-defined address space. This is used by the ASL test suite 
3051 (ASLTS).
3052
3053 ----------------------------------------
3054 11 February 2011. Summary of changes for version 20110211:
3055
3056 1) ACPI CA Core Subsystem:
3057
3058 Added a mechanism to defer _REG methods for some early-installed 
3059 handlers. 
3060 Most user handlers should be installed before call to 
3061 AcpiEnableSubsystem. 
3062 However, Event handlers and region handlers should be installed after 
3063 AcpiInitializeObjects. Override handlers for the "default" regions should 
3064 be 
3065 installed early, however. This change executes all _REG methods for the 
3066 default regions (Memory/IO/PCI/DataTable) simultaneously to prevent any 
3067 chicken/egg issues between them. ACPICA BZ 848.
3068
3069 Implemented an optimization for GPE detection. This optimization will 
3070 simply 
3071 ignore GPE registers that contain no enabled GPEs -- there is no need to 
3072 read the register since this information is available internally. This 
3073 becomes more important on machines with a large GPE space. ACPICA 
3074 bugzilla 
3075 884. Lin Ming. Suggestion from Joe Liu.
3076
3077 Removed all use of the highly unreliable FADT revision field. The 
3078 revision 
3079 number in the FADT has been found to be completely unreliable and cannot 
3080 be 
3081 trusted. Only the actual table length can be used to infer the version. 
3082 This 
3083 change updates the ACPICA core and the disassembler so that both no 
3084 longer 
3085 even look at the FADT version and instead depend solely upon the FADT 
3086 length.
3087
3088 Fix an unresolved name issue for the no-debug and no-error-message source 
3089 generation cases. The _AcpiModuleName was left undefined in these cases, 
3090 but 
3091 it is actually needed as a parameter to some interfaces. Define 
3092 _AcpiModuleName as a null string in these cases. ACPICA Bugzilla 888.
3093
3094 Split several large files (makefiles and project files updated)
3095   utglobal.c   -> utdecode.c
3096   dbcomds.c    -> dbmethod.c dbnames.c
3097   dsopcode.c   -> dsargs.c dscontrol.c
3098   dsload.c     -> dsload2.c
3099   aslanalyze.c -> aslbtypes.c aslwalks.c
3100
3101 Example Code and Data Size: These are the sizes for the OS-independent 
3102 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
3103 debug version of the code includes the debug output trace mechanism and 
3104 has 
3105 a much larger code and data size.
3106
3107   Previous Release (VC 9.0):
3108     Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
3109     Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
3110   Current Release (VC 9.0):
3111     Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
3112     Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
3113
3114 2) iASL Compiler/Disassembler and Tools:
3115
3116 iASL: Implemented the predefined macros __LINE__, __FILE__, and __DATE__. 
3117 These are useful C-style macros with the standard definitions. ACPICA 
3118 bugzilla 898.
3119
3120 iASL/DTC: Added support for integer expressions and labels. Support for 
3121 full 
3122 expressions for all integer fields in all ACPI tables. Support for labels 
3123 in 
3124 "generic" portions of tables such as UEFI. See the iASL reference manual.
3125
3126 Debugger: Added a command to display the status of global handlers. The 
3127 "handlers" command will display op region, fixed event, and miscellaneous 
3128 global handlers. installation status -- and for op regions, whether 
3129 default 
3130 or user-installed handler will be used.
3131
3132 iASL: Warn if reserved method incorrectly returns a value. Many 
3133 predefined 
3134 names are defined such that they do not return a value. If implemented as 
3135
3136 method, issue a warning if such a name explicitly returns a value. ACPICA 
3137 Bugzilla 855.
3138
3139 iASL: Added detection of GPE method name conflicts. Detects a conflict 
3140 where 
3141 there are two GPE methods of the form _Lxy and _Exy in the same scope. 
3142 (For 
3143 example, _L1D and _E1D in the same scope.) ACPICA bugzilla 848.
3144
3145 iASL/DTC: Fixed a couple input scanner issues with comments and line 
3146 numbers. Comment remover could get confused and miss a comment ending. 
3147 Fixed 
3148 a problem with line counter maintenance.
3149
3150 iASL/DTC: Reduced the severity of some errors from fatal to error. There 
3151 is 
3152 no need to abort on simple errors within a field definition.
3153
3154 Debugger: Simplified the output of the help command. All help output now 
3155 in 
3156 a single screen, instead of help subcommands. ACPICA Bugzilla 897.
3157
3158 ----------------------------------------
3159 12 January 2011. Summary of changes for version 20110112:
3160
3161 1) ACPI CA Core Subsystem:
3162
3163 Fixed a race condition between method execution and namespace walks that 
3164 can 
3165 possibly cause a fault. The problem was apparently introduced in version 
3166 20100528 as a result of a performance optimization that reduces the 
3167 number 
3168 of 
3169 namespace walks upon method exit by using the delete_namespace_subtree 
3170 function instead of the delete_namespace_by_owner function used 
3171 previously. 
3172 Bug is a missing namespace lock in the delete_namespace_subtree function. 
3173 dana.myers@oracle.com
3174
3175 Fixed several issues and a possible fault with the automatic "serialized" 
3176 method support. History: This support changes a method to "serialized" on 
3177 the 
3178 fly if the method generates an AE_ALREADY_EXISTS error, indicating the 
3179 possibility that it cannot handle reentrancy. This fix repairs a couple 
3180 of 
3181 issues seen in the field, especially on machines with many cores:
3182
3183     1) Delete method children only upon the exit of the last thread,
3184        so as to not delete objects out from under other running threads
3185       (and possibly causing a fault.)
3186     2) Set the "serialized" bit for the method only upon the exit of the
3187        Last thread, so as to not cause deadlock when running threads
3188        attempt to exit.
3189     3) Cleanup the use of the AML "MethodFlags" and internal method flags
3190        so that there is no longer any confusion between the two.
3191
3192     Lin Ming, Bob Moore. Reported by dana.myers@oracle.com.
3193
3194 Debugger: Now lock the namespace for duration of a namespace dump. 
3195 Prevents 
3196 issues if the namespace is changing dynamically underneath the debugger. 
3197 Especially affects temporary namespace nodes, since the debugger displays 
3198 these also.
3199
3200 Updated the ordering of include files. The ACPICA headers should appear 
3201 before any compiler-specific headers (stdio.h, etc.) so that acenv.h can 
3202 set 
3203 any necessary compiler-specific defines, etc. Affects the ACPI-related 
3204 tools 
3205 and utilities.
3206
3207 Updated all ACPICA copyrights and signons to 2011. Added the 2011 
3208 copyright 
3209 to all module headers and signons, including the Linux header. This 
3210 affects 
3211 virtually every file in the ACPICA core subsystem, iASL compiler, and all 
3212 utilities.
3213
3214 Added project files for MS Visual Studio 2008 (VC++ 9.0). The original 
3215 project files for VC++ 6.0 are now obsolete. New project files can be 
3216 found 
3217 under acpica/generate/msvc9. See acpica/generate/msvc9/readme.txt for 
3218 details.
3219
3220 Example Code and Data Size: These are the sizes for the OS-independent 
3221 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
3222 debug version of the code includes the debug output trace mechanism and 
3223 has a 
3224 much larger code and data size.
3225
3226   Previous Release (VC 6.0):
3227     Non-Debug Version:  89.8K Code, 18.9K Data, 108.7K Total
3228     Debug Version:     166.6K Code, 52.1K Data, 218.7K Total
3229   Current Release (VC 9.0):
3230     Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
3231     Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
3232
3233 2) iASL Compiler/Disassembler and Tools:
3234
3235 iASL: Added generic data types to the Data Table compiler. Add "generic" 
3236 data 
3237 types such as UINT32, String, Unicode, etc., to simplify the generation 
3238 of 
3239 platform-defined tables such as UEFI. Lin Ming.
3240
3241 iASL: Added listing support for the Data Table Compiler. Adds listing 
3242 support 
3243 (-l) to display actual binary output for each line of input code.
3244
3245 ----------------------------------------
3246 09 December 2010. Summary of changes for version 20101209:
3247
3248 1) ACPI CA Core Subsystem:
3249
3250 Completed the major overhaul of the GPE support code that was begun in 
3251 July 
3252 2010. Major features include: removal of _PRW execution in ACPICA (host 
3253 executes _PRWs anyway), cleanup of "wake" GPE interfaces and processing, 
3254 changes to existing interfaces, simplification of GPE handler operation, 
3255 and 
3256 a handful of new interfaces:
3257
3258     AcpiUpdateAllGpes
3259     AcpiFinishGpe
3260     AcpiSetupGpeForWake
3261     AcpiSetGpeWakeMask
3262     One new file, evxfgpe.c to consolidate all external GPE interfaces.
3263
3264 See the ACPICA Programmer Reference for full details and programming 
3265 information. See the new section 4.4 "General Purpose Event (GPE) 
3266 Support" 
3267 for a full overview, and section 8.7 "ACPI General Purpose Event 
3268 Management" 
3269 for programming details. ACPICA BZ 858,870,877. Matthew Garrett, Lin 
3270 Ming, 
3271 Bob Moore, Rafael Wysocki.
3272
3273 Implemented a new GPE feature for Windows compatibility, the "Implicit 
3274 Wake 
3275 GPE Notify". This feature will automatically issue a Notify(2) on a 
3276 device 
3277 when a Wake GPE is received if there is no corresponding GPE method or 
3278 handler. ACPICA BZ 870.
3279
3280 Fixed a problem with the Scope() operator during table parse and load 
3281 phase. 
3282 During load phase (table load or method execution), the scope operator 
3283 should 
3284 not enter the target into the namespace. Instead, it should open a new 
3285 scope 
3286 at the target location. Linux BZ 19462, ACPICA BZ 882.
3287
3288 Example Code and Data Size: These are the sizes for the OS-independent 
3289 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3290 debug version of the code includes the debug output trace mechanism and 
3291 has a 
3292 much larger code and data size.
3293
3294   Previous Release:
3295     Non-Debug Version:  89.8K Code, 18.9K Data, 108.7K Total
3296     Debug Version:     166.6K Code, 52.1K Data, 218.7K Total
3297   Current Release:
3298     Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
3299     Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
3300
3301 2) iASL Compiler/Disassembler and Tools:
3302
3303 iASL: Relax the alphanumeric restriction on _CID strings. These strings 
3304 are 
3305 "bus-specific" per the ACPI specification, and therefore any characters 
3306 are 
3307 acceptable. The only checks that can be performed are for a null string 
3308 and 
3309 perhaps for a leading asterisk. ACPICA BZ 886.
3310
3311 iASL: Fixed a problem where a syntax error that caused a premature EOF 
3312 condition on the source file emitted a very confusing error message. The 
3313 premature EOF is now detected correctly. ACPICA BZ 891.
3314
3315 Disassembler: Decode the AccessSize within a Generic Address Structure 
3316 (byte 
3317 access, word access, etc.) Note, this field does not allow arbitrary bit 
3318 access, the size is encoded as 1=byte, 2=word, 3=dword, and 4=qword.
3319
3320 New: AcpiNames utility - Example namespace dump utility. Shows an example 
3321 of 
3322 ACPICA configuration for a minimal namespace dump utility. Uses table and 
3323 namespace managers, but no AML interpreter. Does not add any 
3324 functionality 
3325 over AcpiExec, it is a subset of AcpiExec. The purpose is to show how to 
3326 partition and configure ACPICA. ACPICA BZ 883.
3327
3328 AML Debugger: Increased the debugger buffer size for method return 
3329 objects. 
3330 Was 4K, increased to 16K. Also enhanced error messages for debugger 
3331 method 
3332 execution, including the buffer overflow case.
3333
3334 ----------------------------------------
3335 13 October 2010. Summary of changes for version 20101013:
3336
3337 1) ACPI CA Core Subsystem:
3338
3339 Added support to clear the PCIEXP_WAKE event. When clearing ACPI events, 
3340 now 
3341 clear the PCIEXP_WAKE_STS bit in the ACPI PM1 Status Register, via 
3342 HwClearAcpiStatus. Original change from Colin King. ACPICA BZ 880.
3343
3344 Changed the type of the predefined namespace object _TZ from ThermalZone 
3345 to 
3346 Device. This was found to be confusing to the host software that 
3347 processes 
3348 the various thermal zones, since _TZ is not really a ThermalZone. 
3349 However, 
3350
3351 Notify() can still be performed on it. ACPICA BZ 876. Suggestion from Rui 
3352 Zhang.
3353
3354 Added Windows Vista SP2 to the list of supported _OSI strings. The actual 
3355 string is "Windows 2006 SP2".
3356
3357 Eliminated duplicate code in AcpiUtExecute* functions. Now that the 
3358 nsrepair 
3359 code automatically repairs _HID-related strings, this type of code is no 
3360 longer needed in Execute_HID, Execute_CID, and Execute_UID. ACPICA BZ 
3361 878.
3362
3363 Example Code and Data Size: These are the sizes for the OS-independent 
3364 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3365 debug version of the code includes the debug output trace mechanism and 
3366 has a 
3367 much larger code and data size.
3368
3369   Previous Release:
3370     Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
3371     Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
3372   Current Release:
3373     Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
3374     Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
3375
3376 2) iASL Compiler/Disassembler and Tools:
3377
3378 iASL: Implemented additional compile-time validation for _HID strings. 
3379 The 
3380 non-hex prefix (such as "PNP" or "ACPI") must be uppercase, and the 
3381 length 
3382 of 
3383 the string must be exactly seven or eight characters. For both _HID and 
3384 _CID 
3385 strings, all characters must be alphanumeric. ACPICA BZ 874.
3386
3387 iASL: Allow certain "null" resource descriptors. Some BIOS code creates 
3388 descriptors that are mostly or all zeros, with the expectation that they 
3389 will 
3390 be filled in at runtime. iASL now allows this as long as there is a 
3391 "resource 
3392 tag" (name) associated with the descriptor, which gives the ASL a handle 
3393 needed to modify the descriptor. ACPICA BZ 873.
3394
3395 Added single-thread support to the generic Unix application OSL. 
3396 Primarily 
3397 for iASL support, this change removes the use of semaphores in the 
3398 single-
3399 threaded ACPICA tools/applications - increasing performance. The 
3400 _MULTI_THREADED option was replaced by the (reverse) ACPI_SINGLE_THREADED 
3401 option. ACPICA BZ 879.
3402
3403 AcpiExec: several fixes for the 64-bit version. Adds XSDT support and 
3404 support 
3405 for 64-bit DSDT/FACS addresses in the FADT. Lin Ming.
3406
3407 iASL: Moved all compiler messages to a new file, aslmessages.h.
3408
3409 ----------------------------------------
3410 15 September 2010. Summary of changes for version 20100915:
3411
3412 1) ACPI CA Core Subsystem:
3413
3414 Removed the AcpiOsDerivePciId OSL interface. The various host 
3415 implementations 
3416 of this function were not OS-dependent and are now obsolete and can be 
3417 removed from all host OSLs. This function has been replaced by 
3418 AcpiHwDerivePciId, which is now part of the ACPICA core code. 
3419 AcpiHwDerivePciId has been implemented without recursion. Adds one new 
3420 module, hwpci.c. ACPICA BZ 857.
3421
3422 Implemented a dynamic repair for _HID and _CID strings. The following 
3423 problems are now repaired at runtime: 1) Remove a leading asterisk in the 
3424 string, and 2) the entire string is uppercased. Both repairs are in 
3425 accordance with the ACPI specification and will simplify host driver 
3426 code. 
3427 ACPICA BZ 871.
3428
3429 The ACPI_THREAD_ID type is no longer configurable, internally it is now 
3430 always UINT64. This simplifies the ACPICA code, especially any printf 
3431 output. 
3432 UINT64 is the only common data type for all thread_id types across all 
3433 operating systems. It is now up to the host OSL to cast the native 
3434 thread_id 
3435 type to UINT64 before returning the value to ACPICA (via 
3436 AcpiOsGetThreadId). 
3437 Lin Ming, Bob Moore.
3438
3439 Added the ACPI_INLINE type to enhance the ACPICA configuration. The 
3440 "inline" 
3441 keyword is not standard across compilers, and this type allows inline to 
3442 be 
3443 configured on a per-compiler basis. Lin Ming.
3444
3445 Made the system global AcpiGbl_SystemAwakeAndRunning publically 
3446 available. 
3447 Added an extern for this boolean in acpixf.h. Some hosts utilize this 
3448 value 
3449 during suspend/restore operations. ACPICA BZ 869.
3450
3451 All code that implements error/warning messages with the "ACPI:" prefix 
3452 has 
3453 been moved to a new module, utxferror.c.
3454
3455 The UINT64_OVERLAY was moved to utmath.c, which is the only module where 
3456 it 
3457 is used. ACPICA BZ 829. Lin Ming, Bob Moore.
3458
3459 Example Code and Data Size: These are the sizes for the OS-independent 
3460 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3461 debug version of the code includes the debug output trace mechanism and 
3462 has a 
3463 much larger code and data size.
3464
3465   Previous Release:
3466     Non-Debug Version:  89.1K Code, 19.0K Data, 108.1K Total
3467     Debug Version:     165.1K Code, 51.9K Data, 217.0K Total
3468   Current Release:
3469     Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
3470     Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
3471
3472 2) iASL Compiler/Disassembler and Tools:
3473
3474 iASL/Disassembler: Write ACPI errors to stderr instead of the output 
3475 file. 
3476 This keeps the output files free of random error messages that may 
3477 originate 
3478 from within the namespace/interpreter code. Used this opportunity to 
3479 merge 
3480 all ACPI:-style messages into a single new module, utxferror.c. ACPICA BZ 
3481 866. Lin Ming, Bob Moore.
3482
3483 Tools: update some printfs for ansi warnings on size_t. Handle width 
3484 change 
3485 of size_t on 32-bit versus 64-bit generations. Lin Ming.
3486
3487 ----------------------------------------
3488 06 August 2010. Summary of changes for version 20100806:
3489
3490 1) ACPI CA Core Subsystem:
3491
3492 Designed and implemented a new host interface to the _OSI support code. 
3493 This 
3494 will allow the host to dynamically add or remove multiple _OSI strings, 
3495 as 
3496 well as install an optional handler that is called for each _OSI 
3497 invocation. 
3498 Also added a new AML debugger command, 'osi' to display and modify the 
3499 global 
3500 _OSI string table, and test support in the AcpiExec utility. See the 
3501 ACPICA 
3502 reference manual for full details. Lin Ming, Bob Moore. ACPICA BZ 836.
3503 New Functions:
3504     AcpiInstallInterface - Add an _OSI string.
3505     AcpiRemoveInterface - Delete an _OSI string.
3506     AcpiInstallInterfaceHandler - Install optional _OSI handler.
3507 Obsolete Functions:
3508     AcpiOsValidateInterface - no longer used.
3509 New Files:
3510     source/components/utilities/utosi.c
3511
3512 Re-introduced the support to enable multi-byte transfers for Embedded 
3513 Controller (EC) operation regions. A reported problem was found to be a 
3514 bug 
3515 in the host OS, not in the multi-byte support. Previously, the maximum 
3516 data 
3517 size passed to the EC operation region handler was a single byte. There 
3518 are 
3519 often EC Fields larger than one byte that need to be transferred, and it 
3520 is 
3521 useful for the EC driver to lock these as a single transaction. This 
3522 change 
3523 enables single transfers larger than 8 bits. This effectively changes the 
3524 access to the EC space from ByteAcc to AnyAcc, and will probably require 
3525 changes to the host OS Embedded Controller driver to enable 16/32/64/256-
3526 bit 
3527 transfers in addition to 8-bit transfers. Alexey Starikovskiy, Lin Ming.
3528
3529 Fixed a problem with the prototype for AcpiOsReadPciConfiguration. The 
3530 prototype in acpiosxf.h had the output value pointer as a (void *).
3531 It should be a (UINT64 *). This may affect some host OSL code.
3532
3533 Fixed a couple problems with the recently modified Linux makefiles for 
3534 iASL 
3535 and AcpiExec. These new makefiles place the generated object files in the 
3536 local directory so that there can be no collisions between the files that 
3537 are 
3538 shared between them that are compiled with different options.
3539
3540 Example Code and Data Size: These are the sizes for the OS-independent 
3541 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3542 debug version of the code includes the debug output trace mechanism and 
3543 has a 
3544 much larger code and data size.
3545
3546   Previous Release:
3547     Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
3548     Debug Version:     164.0K Code, 51.5K Data, 215.5K Total
3549   Current Release:
3550     Non-Debug Version:  89.1K Code, 19.0K Data, 108.1K Total
3551     Debug Version:     165.1K Code, 51.9K Data, 217.0K Total
3552
3553 2) iASL Compiler/Disassembler and Tools:
3554
3555 iASL/Disassembler: Added a new option (-da, "disassemble all") to load 
3556 the 
3557 namespace from and disassemble an entire group of AML files. Useful for 
3558 loading all of the AML tables for a given machine (DSDT, SSDT1...SSDTn) 
3559 and 
3560 disassembling with one simple command. ACPICA BZ 865. Lin Ming.
3561
3562 iASL: Allow multiple invocations of -e option. This change allows 
3563 multiple 
3564 uses of -e on the command line: "-e ssdt1.dat -e ssdt2.dat". ACPICA BZ 
3565 834. 
3566 Lin Ming.
3567
3568 ----------------------------------------
3569 02 July 2010. Summary of changes for version 20100702:
3570
3571 1) ACPI CA Core Subsystem:
3572
3573 Implemented several updates to the recently added GPE reference count 
3574 support. The model for "wake" GPEs is changing to give the host OS 
3575 complete 
3576 control of these GPEs. Eventually, the ACPICA core will not execute any 
3577 _PRW 
3578 methods, since the host already must execute them. Also, additional 
3579 changes 
3580 were made to help ensure that the reference counts are kept in proper 
3581 synchronization with reality. Rafael J. Wysocki.
3582
3583 1) Ensure that GPEs are not enabled twice during initialization.
3584 2) Ensure that GPE enable masks stay in sync with the reference count.
3585 3) Do not inadvertently enable GPEs when writing GPE registers.
3586 4) Remove the internal wake reference counter and add new AcpiGpeWakeup 
3587 interface. This interface will set or clear individual GPEs for wakeup.
3588 5) Remove GpeType argument from AcpiEnable and AcpiDisable. These 
3589 interfaces 
3590 are now used for "runtime" GPEs only.
3591
3592 Changed the behavior of the GPE install/remove handler interfaces. The 
3593 GPE 
3594 is 
3595 no longer disabled during this process, as it was found to cause problems 
3596 on 
3597 some machines. Rafael J. Wysocki.
3598
3599 Reverted a change introduced in version 20100528 to enable Embedded 
3600 Controller multi-byte transfers. This change was found to cause problems 
3601 with 
3602 Index Fields and possibly Bank Fields. It will be reintroduced when these 
3603 problems have been resolved.
3604
3605 Fixed a problem with references to Alias objects within Package Objects. 
3606
3607 reference to an Alias within the definition of a Package was not always 
3608 resolved properly. Aliases to objects like Processors, Thermal zones, 
3609 etc. 
3610 were resolved to the actual object instead of a reference to the object 
3611 as 
3612 it 
3613 should be. Package objects are only allowed to contain integer, string, 
3614 buffer, package, and reference objects. Redhat bugzilla 608648.
3615
3616 Example Code and Data Size: These are the sizes for the OS-independent 
3617 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3618 debug version of the code includes the debug output trace mechanism and 
3619 has a 
3620 much larger code and data size.
3621
3622   Previous Release:
3623     Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
3624     Debug Version:     164.1K Code, 51.5K Data, 215.6K Total
3625   Current Release:
3626     Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
3627     Debug Version:     164.0K Code, 51.5K Data, 215.5K Total
3628
3629 2) iASL Compiler/Disassembler and Tools:
3630
3631 iASL: Implemented a new compiler subsystem to allow definition and 
3632 compilation of the non-AML ACPI tables such as FADT, MADT, SRAT, etc. 
3633 These 
3634 are called "ACPI Data Tables", and the new compiler is the "Data Table 
3635 Compiler". This compiler is intended to simplify the existing error-prone 
3636 process of creating these tables for the BIOS, as well as allowing the 
3637 disassembly, modification, recompilation, and override of existing ACPI 
3638 data 
3639 tables. See the iASL User Guide for detailed information.
3640
3641 iASL: Implemented a new Template Generator option in support of the new 
3642 Data 
3643 Table Compiler. This option will create examples of all known ACPI tables 
3644 that can be used as the basis for table development. See the iASL 
3645 documentation and the -T option.
3646
3647 Disassembler and headers: Added support for the WDDT ACPI table (Watchdog 
3648 Descriptor Table).
3649
3650 Updated the Linux makefiles for iASL and AcpiExec to place the generated 
3651 object files in the local directory so that there can be no collisions 
3652 between the shared files between them that are generated with different 
3653 options.
3654
3655 Added support for Mac OS X in the Unix OSL used for iASL and AcpiExec. 
3656 Use 
3657 the #define __APPLE__ to enable this support.
3658
3659 ----------------------------------------
3660 28 May 2010. Summary of changes for version 20100528:
3661
3662 Note: The ACPI 4.0a specification was released on April 5, 2010 and is 
3663 available at www.acpi.info. This is primarily an errata release.
3664
3665 1) ACPI CA Core Subsystem:
3666
3667 Undefined ACPI tables: We are looking for the definitions for the 
3668 following 
3669 ACPI tables that have been seen in the field: ATKG, IEIT, GSCI.
3670
3671 Implemented support to enable multi-byte transfers for Embedded 
3672 Controller 
3673 (EC) operation regions. Previously, the maximum data size passed to the 
3674 EC 
3675 operation region handler was a single byte. There are often EC Fields 
3676 larger 
3677 than one byte that need to be transferred, and it is useful for the EC 
3678 driver 
3679 to lock these as a single transaction. This change enables single 
3680 transfers 
3681 larger than 8 bits. This effectively changes the access to the EC space 
3682 from 
3683 ByteAcc to AnyAcc, and will probably require changes to the host OS 
3684 Embedded 
3685 Controller driver to enable 16/32/64/256-bit transfers in addition to 8-
3686 bit 
3687 transfers. Alexey Starikovskiy, Lin Ming
3688
3689 Implemented a performance enhancement for namespace search and access. 
3690 This 
3691 change enhances the performance of namespace searches and walks by adding 
3692
3693 backpointer to the parent in each namespace node. On large namespaces, 
3694 this 
3695 change can improve overall ACPI performance by up to 9X. Adding a pointer 
3696 to 
3697 each namespace node increases the overall size of the internal namespace 
3698 by 
3699 about 5%, since each namespace entry usually consists of both a namespace 
3700 node and an ACPI operand object. However, this is the first growth of the 
3701 namespace in ten years. ACPICA bugzilla 817. Alexey Starikovskiy.
3702
3703 Implemented a performance optimization that reduces the number of 
3704 namespace 
3705 walks. On control method exit, only walk the namespace if the method is 
3706 known 
3707 to have created namespace objects outside of its local scope. Previously, 
3708 the 
3709 entire namespace was traversed on each control method exit. This change 
3710 can 
3711 improve overall ACPI performance by up to 3X. Alexey Starikovskiy, Bob 
3712 Moore.
3713
3714 Added support to truncate I/O addresses to 16 bits for Windows 
3715 compatibility. 
3716 Some ASL code has been seen in the field that inadvertently has bits set 
3717 above bit 15. This feature is optional and is enabled if the BIOS 
3718 requests 
3719 any Windows OSI strings. It can also be enabled by the host OS. Matthew 
3720 Garrett, Bob Moore.
3721
3722 Added support to limit the maximum time for the ASL Sleep() operator. To 
3723 prevent accidental deep sleeps, limit the maximum time that Sleep() will 
3724 actually sleep. Configurable, the default maximum is two seconds. ACPICA 
3725 bugzilla 854.
3726
3727 Added run-time validation support for the _WDG and_WED Microsoft 
3728 predefined 
3729 methods. These objects are defined by "Windows Instrumentation", and are 
3730 not 
3731 part of the ACPI spec. ACPICA BZ 860.
3732
3733 Expanded all statistic counters used during namespace and device 
3734 initialization from 16 to 32 bits in order to support very large 
3735 namespaces.
3736
3737 Replaced all instances of %d in printf format specifiers with %u since 
3738 nearly 
3739 all integers in ACPICA are unsigned.
3740
3741 Fixed the exception namestring for AE_WAKE_ONLY_GPE. Was incorrectly 
3742 returned 
3743 as AE_NO_HANDLER.
3744
3745 Example Code and Data Size: These are the sizes for the OS-independent 
3746 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3747 debug version of the code includes the debug output trace mechanism and 
3748 has a 
3749 much larger code and data size.
3750
3751   Previous Release:
3752     Non-Debug Version:  88.4K Code, 18.8K Data, 107.2K Total
3753     Debug Version:     164.2K Code, 51.5K Data, 215.7K Total
3754   Current Release:
3755     Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
3756     Debug Version:     164.1K Code, 51.5K Data, 215.6K Total
3757
3758 2) iASL Compiler/Disassembler and Tools:
3759
3760 iASL: Added compiler support for the _WDG and_WED Microsoft predefined 
3761 methods. These objects are defined by "Windows Instrumentation", and are 
3762 not 
3763 part of the ACPI spec. ACPICA BZ 860.
3764
3765 AcpiExec: added option to disable the memory tracking mechanism. The -dt 
3766 option will disable the tracking mechanism, which improves performance 
3767 considerably.
3768
3769 AcpiExec: Restructured the command line options into -d (disable) and -e 
3770 (enable) options.
3771
3772 ----------------------------------------
3773 28 April 2010. Summary of changes for version 20100428:
3774
3775 1) ACPI CA Core Subsystem:
3776
3777 Implemented GPE support for dynamically loaded ACPI tables. For all GPEs, 
3778 including FADT-based and GPE Block Devices, execute any _PRW methods in 
3779 the 
3780 new table, and process any _Lxx/_Exx GPE methods in the new table. Any 
3781 runtime GPE that is referenced by an _Lxx/_Exx method in the new table is 
3782 immediately enabled. Handles the FADT-defined GPEs as well as GPE Block 
3783 Devices. Provides compatibility with other ACPI implementations. Two new 
3784 files added, evgpeinit.c and evgpeutil.c. ACPICA BZ 833. Lin Ming, Bob 
3785 Moore.
3786
3787 Fixed a regression introduced in version 20100331 within the table 
3788 manager 
3789 where initial table loading could fail. This was introduced in the fix 
3790 for 
3791 AcpiReallocateRootTable. Also, renamed some of fields in the table 
3792 manager 
3793 data structures to clarify their meaning and use.
3794
3795 Fixed a possible allocation overrun during internal object copy in 
3796 AcpiUtCopySimpleObject. The original code did not correctly handle the 
3797 case 
3798 where the object to be copied was a namespace node. Lin Ming. ACPICA BZ 
3799 847.
3800
3801 Updated the allocation dump routine, AcpiUtDumpAllocation and fixed a 
3802 possible access beyond end-of-allocation. Also, now fully validate 
3803 descriptor 
3804 (size and type) before output. Lin Ming, Bob Moore. ACPICA BZ 847
3805
3806 Example Code and Data Size: These are the sizes for the OS-independent 
3807 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3808 debug version of the code includes the debug output trace mechanism and 
3809 has a 
3810 much larger code and data size.
3811
3812   Previous Release:
3813     Non-Debug Version:  87.9K Code, 18.6K Data, 106.5K Total
3814     Debug Version:     163.5K Code, 51.3K Data, 214.8K Total
3815   Current Release:
3816     Non-Debug Version:  88.4K Code, 18.8K Data, 107.2K Total
3817     Debug Version:     164.2K Code, 51.5K Data, 215.7K Total
3818
3819 2) iASL Compiler/Disassembler and Tools:
3820
3821 iASL: Implemented Min/Max/Len/Gran validation for address resource 
3822 descriptors. This change implements validation for the address fields 
3823 that 
3824 are common to all address-type resource descriptors. These checks are 
3825 implemented: Checks for valid Min/Max, length within the Min/Max window, 
3826 valid granularity, Min/Max a multiple of granularity, and _MIF/_MAF as 
3827 per 
3828 table 6-40 in the ACPI 4.0a specification. Also split the large 
3829 aslrestype1.c 
3830 and aslrestype2.c files into five new files. ACPICA BZ 840.
3831
3832 iASL: Added support for the _Wxx predefined names. This support was 
3833 missing 
3834 and these names were not recognized by the compiler as valid predefined 
3835 names. ACPICA BZ 851.
3836
3837 iASL: Added an error for all predefined names that are defined to return 
3838 no 
3839 value and thus must be implemented as Control Methods. These include all 
3840 of 
3841 the _Lxx, _Exx, _Wxx, and _Qxx names, as well as some other miscellaneous 
3842 names such as _DIS, _INI, _IRC, _OFF, _ON, and _PSx. ACPICA BZ 850, 856.
3843
3844 iASL: Implemented the -ts option to emit hex AML data in ASL format, as 
3845 an 
3846 ASL Buffer. Allows ACPI tables to be easily included within ASL files, to 
3847 be 
3848 dynamically loaded via the Load() operator. Also cleaned up output for 
3849 the 
3850 -
3851 ta and -tc options. ACPICA BZ 853.
3852
3853 Tests: Added a new file with examples of extended iASL error checking. 
3854 Demonstrates the advanced error checking ability of the iASL compiler. 
3855 Available at tests/misc/badcode.asl.
3856
3857 ----------------------------------------
3858 31 March 2010. Summary of changes for version 20100331:
3859
3860 1) ACPI CA Core Subsystem:
3861
3862 Completed a major update for the GPE support in order to improve support 
3863 for 
3864 shared GPEs and to simplify both host OS and ACPICA code. Added a 
3865 reference 
3866 count mechanism to support shared GPEs that require multiple device 
3867 drivers. 
3868 Several external interfaces have changed. One external interface has been 
3869 removed. One new external interface was added. Most of the GPE external 
3870 interfaces now use the GPE spinlock instead of the events mutex (and the 
3871 Flags parameter for many GPE interfaces has been removed.) See the 
3872 updated 
3873 ACPICA Programmer Reference for details. Matthew Garrett, Bob Moore, 
3874 Rafael 
3875 Wysocki. ACPICA BZ 831.
3876
3877 Changed:
3878     AcpiEnableGpe, AcpiDisableGpe, AcpiClearGpe, AcpiGetGpeStatus
3879 Removed:
3880     AcpiSetGpeType
3881 New:
3882     AcpiSetGpe
3883
3884 Implemented write support for DataTable operation regions. These regions 
3885 are 
3886 defined via the DataTableRegion() operator. Previously, only read support 
3887 was 
3888 implemented. The ACPI specification allows DataTableRegions to be 
3889 read/write, 
3890 however.
3891
3892 Implemented a new subsystem option to force a copy of the DSDT to local 
3893 memory. Optionally copy the entire DSDT to local memory (instead of 
3894 simply 
3895 mapping it.) There are some (albeit very rare) BIOSs that corrupt or 
3896 replace 
3897 the original DSDT, creating the need for this option. Default is FALSE, 
3898 do 
3899 not copy the DSDT.
3900
3901 Implemented detection of a corrupted or replaced DSDT. This change adds 
3902 support to detect a DSDT that has been corrupted and/or replaced from 
3903 outside 
3904 the OS (by firmware). This is typically catastrophic for the system, but 
3905 has 
3906 been seen on some machines. Once this problem has been detected, the DSDT 
3907 copy option can be enabled via system configuration. Lin Ming, Bob Moore.
3908
3909 Fixed two problems with AcpiReallocateRootTable during the root table 
3910 copy. 
3911 When copying the root table to the new allocation, the length used was 
3912 incorrect. The new size was used instead of the current table size, 
3913 meaning 
3914 too much data was copied. Also, the count of available slots for ACPI 
3915 tables 
3916 was not set correctly. Alexey Starikovskiy, Bob Moore.
3917
3918 Example Code and Data Size: These are the sizes for the OS-independent 
3919 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3920 debug version of the code includes the debug output trace mechanism and 
3921 has a 
3922 much larger code and data size.
3923
3924   Previous Release:
3925     Non-Debug Version:  87.5K Code, 18.4K Data, 105.9K Total
3926     Debug Version:     163.4K Code, 51.1K Data, 214.5K Total
3927   Current Release:
3928     Non-Debug Version:  87.9K Code, 18.6K Data, 106.5K Total
3929     Debug Version:     163.5K Code, 51.3K Data, 214.8K Total
3930
3931 2) iASL Compiler/Disassembler and Tools:
3932
3933 iASL: Implement limited typechecking for values returned from predefined 
3934 control methods. The type of any returned static (unnamed) object is now 
3935 validated. For example, Return(1). ACPICA BZ 786.
3936
3937 iASL: Fixed a predefined name object verification regression. Fixes a 
3938 problem 
3939 introduced in version 20100304. An error is incorrectly generated if a 
3940 predefined name is declared as a static named object with a value defined 
3941 using the keywords "Zero", "One", or "Ones". Lin Ming.
3942
3943 iASL: Added Windows 7 support for the -g option (get local ACPI tables) 
3944 by 
3945 reducing the requested registry access rights. ACPICA BZ 842.
3946
3947 Disassembler: fixed a possible fault when generating External() 
3948 statements. 
3949 Introduced in commit ae7d6fd: Properly handle externals with parent-
3950 prefix 
3951 (carat). Fixes a string length allocation calculation. Lin Ming.
3952
3953 ----------------------------------------
3954 04 March 2010. Summary of changes for version 20100304:
3955
3956 1) ACPI CA Core Subsystem:
3957
3958 Fixed a possible problem with the AML Mutex handling function 
3959 AcpiExReleaseMutex where the function could fault under the very rare 
3960 condition when the interpreter has blocked, the interpreter lock is 
3961 released, 
3962 the interpreter is then reentered via the same thread, and attempts to 
3963 acquire an AML mutex that was previously acquired. FreeBSD report 140979. 
3964 Lin 
3965 Ming.
3966
3967 Implemented additional configuration support for the AML "Debug Object". 
3968 Output from the debug object can now be enabled via a global variable, 
3969 AcpiGbl_EnableAmlDebugObject. This will assist with remote machine 
3970 debugging. 
3971 This debug output is now available in the release version of ACPICA 
3972 instead 
3973 of just the debug version. Also, the entire debug output module can now 
3974 be 
3975 configured out of the ACPICA build if desired. One new file added, 
3976 executer/exdebug.c. Lin Ming, Bob Moore.
3977
3978 Added header support for the ACPI MCHI table (Management Controller Host 
3979 Interface Table). This table was added in ACPI 4.0, but the defining 
3980 document 
3981 has only recently become available.
3982
3983 Standardized output of integer values for ACPICA warnings/errors. Always 
3984 use 
3985 0x prefix for hex output, always use %u for unsigned integer decimal 
3986 output. 
3987 Affects ACPI_INFO, ACPI_ERROR, ACPI_EXCEPTION, and ACPI_WARNING (about 
3988 400 
3989 invocations.) These invocations were converted from the original 
3990 ACPI_DEBUG_PRINT invocations and were not consistent. ACPICA BZ 835.
3991
3992 Example Code and Data Size: These are the sizes for the OS-independent 
3993 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3994 debug version of the code includes the debug output trace mechanism and 
3995 has a 
3996 much larger code and data size.
3997
3998   Previous Release:
3999     Non-Debug Version:  87.1K Code, 18.0K Data, 105.1K Total
4000     Debug Version:     163.5K Code, 50.9K Data, 214.4K Total
4001   Current Release:
4002     Non-Debug Version:  87.5K Code, 18.4K Data, 105.9K Total
4003     Debug Version:     163.4K Code, 51.1K Data, 214.5K Total
4004
4005 2) iASL Compiler/Disassembler and Tools:
4006
4007 iASL: Implemented typechecking support for static (non-control method) 
4008 predefined named objects that are declared with the Name() operator. For 
4009 example, the type of this object is now validated to be of type Integer: 
4010 Name(_BBN, 1). This change migrates the compiler to using the core 
4011 predefined 
4012 name table instead of maintaining a local version. Added a new file, 
4013 aslpredef.c. ACPICA BZ 832.
4014
4015 Disassembler: Added support for the ACPI 4.0 MCHI table.
4016
4017 ----------------------------------------
4018 21 January 2010. Summary of changes for version 20100121:
4019
4020 1) ACPI CA Core Subsystem:
4021
4022 Added the 2010 copyright to all module headers and signons. This affects 
4023 virtually every file in the ACPICA core subsystem, the iASL compiler, the 
4024 tools/utilities, and the test suites.
4025
4026 Implemented a change to the AcpiGetDevices interface to eliminate 
4027 unnecessary 
4028 invocations of the _STA method. In the case where a specific _HID is 
4029 requested, do not run _STA until a _HID match is found. This eliminates 
4030 potentially dozens of _STA calls during a search for a particular 
4031 device/HID, 
4032 which in turn can improve boot times. ACPICA BZ 828. Lin Ming.
4033
4034 Implemented an additional repair for predefined method return values. 
4035 Attempt 
4036 to repair unexpected NULL elements within returned Package objects. 
4037 Create 
4038 an 
4039 Integer of value zero, a NULL String, or a zero-length Buffer as 
4040 appropriate. 
4041 ACPICA BZ 818. Lin Ming, Bob Moore.
4042
4043 Removed the obsolete ACPI_INTEGER data type. This type was introduced as 
4044 the 
4045 code was migrated from ACPI 1.0 (with 32-bit AML integers) to ACPI 2.0 
4046 (with 
4047 64-bit AML integers). It is now obsolete and this change removes it from 
4048 the 
4049 ACPICA code base, replaced by UINT64. The original typedef has been 
4050 retained 
4051 for now for compatibility with existing device driver code. ACPICA BZ 
4052 824.
4053
4054 Removed the unused UINT32_STRUCT type, and the obsolete Integer64 field 
4055 in 
4056 the parse tree object.
4057
4058 Added additional warning options for the gcc-4 generation. Updated the 
4059 source 
4060 accordingly. This includes some code restructuring to eliminate 
4061 unreachable 
4062 code, elimination of some gotos, elimination of unused return values, 
4063 some 
4064 additional casting, and removal of redundant declarations.
4065
4066 Example Code and Data Size: These are the sizes for the OS-independent 
4067 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4068 debug version of the code includes the debug output trace mechanism and 
4069 has a 
4070 much larger code and data size.
4071
4072   Previous Release:
4073     Non-Debug Version:  87.0K Code, 18.0K Data, 105.0K Total
4074     Debug Version:     163.4K Code, 50.8K Data, 214.2K Total
4075   Current Release:
4076     Non-Debug Version:  87.1K Code, 18.0K Data, 105.1K Total
4077     Debug Version:     163.5K Code, 50.9K Data, 214.4K Total
4078
4079 2) iASL Compiler/Disassembler and Tools:
4080
4081 No functional changes for this release.
4082
4083 ----------------------------------------
4084 14 December 2009. Summary of changes for version 20091214:
4085
4086 1) ACPI CA Core Subsystem:
4087
4088 Enhanced automatic data type conversions for predefined name repairs. 
4089 This 
4090 change expands the automatic repairs/conversions for predefined name 
4091 return 
4092 values to make Integers, Strings, and Buffers fully interchangeable. 
4093 Also, 
4094
4095 Buffer can be converted to a Package of Integers if necessary. The 
4096 nsrepair.c 
4097 module was completely restructured. Lin Ming, Bob Moore.
4098
4099 Implemented automatic removal of null package elements during predefined 
4100 name 
4101 repairs. This change will automatically remove embedded and trailing NULL 
4102 package elements from returned package objects that are defined to 
4103 contain 
4104
4105 variable number of sub-packages. The driver is then presented with a 
4106 package 
4107 with no null elements to deal with. ACPICA BZ 819.
4108
4109 Implemented a repair for the predefined _FDE and _GTM names. The expected 
4110 return value for both names is a Buffer of 5 DWORDs. This repair fixes 
4111 two 
4112 possible problems (both seen in the field), where a package of integers 
4113 is 
4114 returned, or a buffer of BYTEs is returned. With assistance from Jung-uk 
4115 Kim.
4116
4117 Implemented additional module-level code support. This change will 
4118 properly 
4119 execute module-level code that is not at the root of the namespace (under 
4120
4121 Device object, etc.). Now executes the code within the current scope 
4122 instead 
4123 of the root. ACPICA BZ 762. Lin Ming.
4124
4125 Fixed possible mutex acquisition errors when running _REG methods. Fixes 
4126
4127 problem where mutex errors can occur when running a _REG method that is 
4128 in 
4129 the same scope as a method-defined operation region or an operation 
4130 region 
4131 under a module-level IF block. This type of code is rare, so the problem 
4132 has 
4133 not been seen before. ACPICA BZ 826. Lin Ming, Bob Moore.
4134
4135 Fixed a possible memory leak during module-level code execution. An 
4136 object 
4137 could be leaked for each block of executed module-level code if the 
4138 interpreter slack mode is enabled This change deletes any implicitly 
4139 returned 
4140 object from the module-level code block. Lin Ming.
4141
4142 Removed messages for successful predefined repair(s). The repair 
4143 mechanism 
4144 was considered too wordy. Now, messages are only unconditionally emitted 
4145 if 
4146 the return object cannot be repaired. Existing messages for successful 
4147 repairs were converted to ACPI_DEBUG_PRINT messages for now. ACPICA BZ 
4148 827.
4149
4150 Example Code and Data Size: These are the sizes for the OS-independent 
4151 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4152 debug version of the code includes the debug output trace mechanism and 
4153 has a 
4154 much larger code and data size.
4155
4156   Previous Release:
4157     Non-Debug Version:  86.6K Code, 18.2K Data, 104.8K Total
4158     Debug Version:     162.7K Code, 50.8K Data, 213.5K Total
4159   Current Release:
4160     Non-Debug Version:  87.0K Code, 18.0K Data, 105.0K Total
4161     Debug Version:     163.4K Code, 50.8K Data, 214.2K Total
4162
4163 2) iASL Compiler/Disassembler and Tools:
4164
4165 iASL: Fixed a regression introduced in 20091112 where intermediate .SRC 
4166 files 
4167 were no longer automatically removed at the termination of the compile.
4168
4169 acpiexec: Implemented the -f option to specify default region fill value. 
4170 This option specifies the value used to initialize buffers that simulate 
4171 operation regions. Default value is zero. Useful for debugging problems 
4172 that 
4173 depend on a specific initial value for a region or field.
4174
4175 ----------------------------------------
4176 12 November 2009. Summary of changes for version 20091112:
4177
4178 1) ACPI CA Core Subsystem:
4179
4180 Implemented a post-order callback to AcpiWalkNamespace. The existing 
4181 interface only has a pre-order callback. This change adds an additional 
4182 parameter for a post-order callback which will be more useful for bus 
4183 scans. 
4184 ACPICA BZ 779. Lin Ming. Updated the ACPICA Programmer Reference.
4185
4186 Modified the behavior of the operation region memory mapping cache for 
4187 SystemMemory. Ensure that the memory mappings created for operation 
4188 regions 
4189 do not cross 4K page boundaries. Crossing a page boundary while mapping 
4190 regions can cause kernel warnings on some hosts if the pages have 
4191 different 
4192 attributes. Such regions are probably BIOS bugs, and this is the 
4193 workaround. 
4194 Linux BZ 14445. Lin Ming.
4195
4196 Implemented an automatic repair for predefined methods that must return 
4197 sorted lists. This change will repair (by sorting) packages returned by 
4198 _ALR, 
4199 _PSS, and _TSS. Drivers can now assume that the packages are correctly 
4200 sorted 
4201 and do not contain NULL package elements. Adds one new file, 
4202 namespace/nsrepair2.c. ACPICA BZ 784. Lin Ming, Bob Moore.
4203
4204 Fixed a possible fault during predefined name validation if a return 
4205 Package 
4206 object contains NULL elements. Also adds a warning if a NULL element is 
4207 followed by any non-null elements. ACPICA BZ 813, 814. Future enhancement 
4208 may 
4209 include repair or removal of all such NULL elements where possible.
4210
4211 Implemented additional module-level executable AML code support. This 
4212 change 
4213 will execute module-level code that is not at the root of the namespace 
4214 (under a Device object, etc.) at table load time. Module-level executable 
4215 AML 
4216 code has been illegal since ACPI 2.0. ACPICA BZ 762. Lin Ming.
4217
4218 Implemented a new internal function to create Integer objects. This 
4219 function 
4220 simplifies miscellaneous object creation code. ACPICA BZ 823.
4221
4222 Reduced the severity of predefined repair messages, Warning to Info. 
4223 Since 
4224 the object was successfully repaired, a warning is too severe. Reduced to 
4225 an 
4226 info message for now. These messages may eventually be changed to debug-
4227 only. 
4228 ACPICA BZ 812.
4229
4230 Example Code and Data Size: These are the sizes for the OS-independent 
4231 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4232 debug version of the code includes the debug output trace mechanism and 
4233 has a 
4234 much larger code and data size.
4235
4236   Previous Release:
4237     Non-Debug Version:  85.8K Code, 18.0K Data, 103.8K Total
4238     Debug Version:     161.8K Code, 50.6K Data, 212.4K Total
4239   Current Release:
4240     Non-Debug Version:  86.6K Code, 18.2K Data, 104.8K Total
4241     Debug Version:     162.7K Code, 50.8K Data, 213.5K Total
4242
4243 2) iASL Compiler/Disassembler and Tools:
4244
4245 iASL: Implemented Switch() with While(1) so that Break works correctly. 
4246 This 
4247 change correctly implements the Switch operator with a surrounding 
4248 While(1) 
4249 so that the Break operator works as expected. ACPICA BZ 461. Lin Ming.
4250
4251 iASL: Added a message if a package initializer list is shorter than 
4252 package 
4253 length. Adds a new remark for a Package() declaration if an initializer 
4254 list 
4255 exists, but is shorter than the declared length of the package. Although 
4256 technically legal, this is probably a coding error and it is seen in the 
4257 field. ACPICA BZ 815. Lin Ming, Bob Moore.
4258
4259 iASL: Fixed a problem where the compiler could fault after the maximum 
4260 number 
4261 of errors was reached (200).
4262
4263 acpixtract: Fixed a possible warning for pointer cast if the compiler 
4264 warning 
4265 level set very high.
4266
4267 ----------------------------------------
4268 13 October 2009. Summary of changes for version 20091013:
4269
4270 1) ACPI CA Core Subsystem:
4271
4272 Fixed a problem where an Operation Region _REG method could be executed 
4273 more 
4274 than once. If a custom address space handler is installed by the host 
4275 before 
4276 the "initialize operation regions" phase of the ACPICA initialization, 
4277 any 
4278 _REG methods for that address space could be executed twice. This change 
4279 fixes the problem. ACPICA BZ 427. Lin Ming.
4280
4281 Fixed a possible memory leak for the Scope() ASL operator. When the exact 
4282 invocation of "Scope(\)" is executed (change scope to root), one internal 
4283 operand object was leaked. Lin Ming.
4284
4285 Implemented a run-time repair for the _MAT predefined method. If the _MAT 
4286 return value is defined as a Field object in the AML, and the field
4287 size is less than or equal to the default width of an integer (32 or 
4288 64),_MAT 
4289 can incorrectly return an Integer instead of a Buffer. ACPICA now 
4290 automatically repairs this problem. ACPICA BZ 810.
4291
4292 Implemented a run-time repair for the _BIF and _BIX predefined methods. 
4293 The 
4294 "OEM Information" field is often incorrectly returned as an Integer with 
4295 value zero if the field is not supported by the platform. This is due to 
4296 an 
4297 ambiguity in the ACPI specification. The field should always be a string. 
4298 ACPICA now automatically repairs this problem by returning a NULL string 
4299 within the returned Package. ACPICA BZ 807.
4300
4301 Example Code and Data Size: These are the sizes for the OS-independent 
4302 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4303 debug version of the code includes the debug output trace mechanism and 
4304 has a 
4305 much larger code and data size.
4306
4307   Previous Release:
4308     Non-Debug Version:  85.6K Code, 18.0K Data, 103.6K Total
4309     Debug Version:     161.7K Code, 50.9K Data, 212.6K Total
4310   Current Release:
4311     Non-Debug Version:  85.8K Code, 18.0K Data, 103.8K Total
4312     Debug Version:     161.8K Code, 50.6K Data, 212.4K Total
4313
4314 2) iASL Compiler/Disassembler and Tools:
4315
4316 Disassembler: Fixed a problem where references to external symbols that 
4317 contained one or more parent-prefixes (carats) were not handled 
4318 correctly, 
4319 possibly causing a fault. ACPICA BZ 806. Lin Ming.
4320
4321 Disassembler: Restructured the code so that all functions that handle 
4322 external symbols are in a single module. One new file is added, 
4323 common/dmextern.c.
4324
4325 AML Debugger: Added a max count argument for the Batch command (which 
4326 executes multiple predefined methods within the namespace.)
4327
4328 iASL: Updated the compiler documentation (User Reference.) Available at 
4329 http://www.acpica.org/documentation/. ACPICA BZ 750.
4330
4331 AcpiXtract: Updated for Lint and other formatting changes. Close all open 
4332 files.
4333
4334 ----------------------------------------
4335 03 September 2009. Summary of changes for version 20090903:
4336
4337 1) ACPI CA Core Subsystem:
4338
4339 For Windows Vista compatibility, added the automatic execution of an _INI 
4340 method located at the namespace root (\_INI). This method is executed at 
4341 table load time. This support is in addition to the automatic execution 
4342 of 
4343 \_SB._INI. Lin Ming.
4344
4345 Fixed a possible memory leak in the interpreter for AML package objects 
4346 if 
4347 the package initializer list is longer than the defined size of the 
4348 package. 
4349 This apparently can only happen if the BIOS changes the package size on 
4350 the 
4351 fly (seen in a _PSS object), as ASL compilers do not allow this. The 
4352 interpreter will truncate the package to the defined size (and issue an 
4353 error 
4354 message), but previously could leave the extra objects undeleted if they 
4355 were 
4356 pre-created during the argument processing (such is the case if the 
4357 package 
4358 consists of a number of sub-packages as in the _PSS.) ACPICA BZ 805.
4359
4360 Fixed a problem seen when a Buffer or String is stored to itself via ASL. 
4361 This has been reported in the field. Previously, ACPICA would zero out 
4362 the 
4363 buffer/string. Now, the operation is treated as a noop. Provides Windows 
4364 compatibility. ACPICA BZ 803. Lin Ming.
4365
4366 Removed an extraneous error message for ASL constructs of the form 
4367 Store(LocalX,LocalX) when LocalX is uninitialized. These curious 
4368 statements 
4369 are seen in many BIOSs and are once again treated as NOOPs and no error 
4370 is 
4371 emitted when they are encountered. ACPICA BZ 785.
4372
4373 Fixed an extraneous warning message if a _DSM reserved method returns a 
4374 Package object. _DSM can return any type of object, so validation on the 
4375 return type cannot be performed. ACPICA BZ 802.
4376
4377 Example Code and Data Size: These are the sizes for the OS-independent 
4378 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4379 debug version of the code includes the debug output trace mechanism and 
4380 has a 
4381 much larger code and data size.
4382
4383   Previous Release:
4384     Non-Debug Version:  85.5K Code, 18.0K Data, 103.5K Total
4385     Debug Version:     161.6K Code, 50.9K Data, 212.5K Total
4386   Current Release:
4387     Non-Debug Version:  85.6K Code, 18.0K Data, 103.6K Total
4388     Debug Version:     161.7K Code, 50.9K Data, 212.6K Total
4389
4390 2) iASL Compiler/Disassembler and Tools:
4391
4392 iASL: Fixed a problem with the use of the Alias operator and Resource 
4393 Templates. The correct alias is now constructed and no error is emitted. 
4394 ACPICA BZ 738.
4395
4396 iASL: Implemented the -I option to specify additional search directories 
4397 for 
4398 include files. Allows multiple additional search paths for include files. 
4399 Directories are searched in the order specified on the command line 
4400 (after 
4401 the local directory is searched.) ACPICA BZ 800.
4402
4403 iASL: Fixed a problem where the full pathname for include files was not 
4404 emitted for warnings/errors. This caused the IDE support to not work 
4405 properly. ACPICA BZ 765.
4406
4407 iASL: Implemented the -@ option to specify a Windows-style response file 
4408 containing additional command line options. ACPICA BZ 801.
4409
4410 AcpiExec: Added support to load multiple AML files simultaneously (such 
4411 as 
4412
4413 DSDT and multiple SSDTs). Also added support for wildcards within the AML 
4414 pathname. These features allow all machine tables to be easily loaded and 
4415 debugged together. ACPICA BZ 804.
4416
4417 Disassembler: Added missing support for disassembly of HEST table Error 
4418 Bank 
4419 subtables. 
4420
4421 ----------------------------------------
4422 30 July 2009. Summary of changes for version 20090730:
4423
4424 The ACPI 4.0 implementation for ACPICA is complete with this release.
4425
4426 1) ACPI CA Core Subsystem:
4427
4428 ACPI 4.0: Added header file support for all new and changed ACPI tables. 
4429 Completely new tables are: IBFT, IVRS, MSCT, and WAET. Tables that are 
4430 new 
4431 for ACPI 4.0, but have previously been supported in ACPICA are: CPEP, 
4432 BERT, 
4433 EINJ, ERST, and HEST. Other newly supported tables are: UEFI and WDAT. 
4434 There 
4435 have been some ACPI 4.0 changes to other existing tables. Split the large 
4436 actbl1.h header into the existing actbl2.h header. ACPICA BZ 774.
4437
4438 ACPI 4.0: Implemented predefined name validation for all new names. There 
4439 are 
4440 31 new names in ACPI 4.0. The predefined validation module was split into 
4441 two 
4442 files. The new file is namespace/nsrepair.c. ACPICA BZ 770.
4443
4444 Implemented support for so-called "module-level executable code". This is 
4445 executable AML code that exists outside of any control method and is 
4446 intended 
4447 to be executed at table load time. Although illegal since ACPI 2.0, this 
4448 type 
4449 of code still exists and is apparently still being created. Blocks of 
4450 this 
4451 code are now detected and executed as intended. Currently, the code 
4452 blocks 
4453 must exist under either an If, Else, or While construct; these are the 
4454 typical cases seen in the field. ACPICA BZ 762. Lin Ming.
4455
4456 Implemented an automatic dynamic repair for predefined names that return 
4457 nested Package objects. This applies to predefined names that are defined 
4458 to 
4459 return a variable-length Package of sub-packages. If the number of sub-
4460 packages is one, BIOS code is occasionally seen that creates a simple 
4461 single 
4462 package with no sub-packages. This code attempts to fix the problem by 
4463 wrapping a new package object around the existing package. These methods 
4464 can 
4465 be repaired: _ALR, _CSD, _HPX, _MLS, _PRT, _PSS, _TRT, and _TSS. ACPICA 
4466 BZ 
4467 790.
4468
4469 Fixed a regression introduced in 20090625 for the AcpiGetDevices 
4470 interface. 
4471 The _HID/_CID matching was broken and no longer matched IDs correctly. 
4472 ACPICA 
4473 BZ 793.
4474
4475 Fixed a problem with AcpiReset where the reset would silently fail if the 
4476 register was one of the protected I/O ports. AcpiReset now bypasses the 
4477 port 
4478 validation mechanism. This may eventually be driven into the 
4479 AcpiRead/Write 
4480 interfaces.
4481
4482 Fixed a regression related to the recent update of the AcpiRead/Write 
4483 interfaces. A sleep/suspend could fail if the optional PM2 Control 
4484 register 
4485 does not exist during an attempt to write the Bus Master Arbitration bit. 
4486 (However, some hosts already delete the code that writes this bit, and 
4487 the 
4488 code may in fact be obsolete at this date.) ACPICA BZ 799.
4489
4490 Fixed a problem where AcpiTerminate could fault if inadvertently called 
4491 twice 
4492 in succession. ACPICA BZ 795.
4493
4494 Example Code and Data Size: These are the sizes for the OS-independent 
4495 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4496 debug version of the code includes the debug output trace mechanism and 
4497 has a 
4498 much larger code and data size.
4499
4500   Previous Release:
4501     Non-Debug Version:  84.7K Code, 17.8K Data, 102.5K Total
4502     Debug Version:     160.5K Code, 50.6K Data, 211.1K Total
4503   Current Release:
4504     Non-Debug Version:  85.5K Code, 18.0K Data, 103.5K Total
4505     Debug Version:     161.6K Code, 50.9K Data, 212.5K Total
4506
4507 2) iASL Compiler/Disassembler and Tools:
4508
4509 ACPI 4.0: Implemented disassembler support for all new ACPI tables and 
4510 changes to existing tables. ACPICA BZ 775.
4511
4512 ----------------------------------------
4513 25 June 2009. Summary of changes for version 20090625:
4514
4515 The ACPI 4.0 Specification was released on June 16 and is available at 
4516 www.acpi.info. ACPICA implementation of ACPI 4.0 is underway and will 
4517 continue for the next few releases.
4518
4519 1) ACPI CA Core Subsystem:
4520
4521 ACPI 4.0: Implemented interpreter support for the IPMI operation region 
4522 address space. Includes support for bi-directional data buffers and an 
4523 IPMI 
4524 address space handler (to be installed by an IPMI device driver.) ACPICA 
4525 BZ 
4526 773. Lin Ming.
4527
4528 ACPI 4.0: Added changes for existing ACPI tables - FACS and SRAT. 
4529 Includes 
4530 support in both the header files and the disassembler.
4531
4532 Completed a major update for the AcpiGetObjectInfo external interface. 
4533 Changes include:
4534  - Support for variable, unlimited length HID, UID, and CID strings.
4535  - Support Processor objects the same as Devices (HID,UID,CID,ADR,STA, 
4536 etc.)
4537  - Call the _SxW power methods on behalf of a device object.
4538  - Determine if a device is a PCI root bridge.
4539  - Change the ACPI_BUFFER parameter to ACPI_DEVICE_INFO.
4540 These changes will require an update to all callers of this interface. 
4541 See 
4542 the updated ACPICA Programmer Reference for details. One new source file 
4543 has 
4544 been added - utilities/utids.c. ACPICA BZ 368, 780.
4545
4546 Updated the AcpiRead and AcpiWrite external interfaces to support 64-bit 
4547 transfers. The Value parameter has been extended from 32 bits to 64 bits 
4548 in 
4549 order to support new ACPI 4.0 tables. These changes will require an 
4550 update 
4551 to 
4552 all callers of these interfaces. See the ACPICA Programmer Reference for 
4553 details. ACPICA BZ 768.
4554
4555 Fixed several problems with AcpiAttachData. The handler was not invoked 
4556 when 
4557 the host node was deleted. The data sub-object was not automatically 
4558 deleted 
4559 when the host node was deleted. The interface to the handler had an 
4560 unused 
4561 parameter, this was removed. ACPICA BZ 778.
4562
4563 Enhanced the function that dumps ACPI table headers. All non-printable 
4564 characters in the string fields are now replaced with '?' (Signature, 
4565 OemId, 
4566 OemTableId, and CompilerId.) ACPI tables with non-printable characters in 
4567 these fields are occasionally seen in the field. ACPICA BZ 788.
4568
4569 Fixed a problem with predefined method repair code where the code that 
4570 attempts to repair/convert an object of incorrect type is only executed 
4571 on 
4572 the first time the predefined method is called. The mechanism that 
4573 disables 
4574 warnings on subsequent calls was interfering with the repair mechanism. 
4575 ACPICA BZ 781.
4576
4577 Fixed a possible memory leak in the predefined validation/repair code 
4578 when 
4579
4580 buffer is automatically converted to an expected string object.
4581
4582 Removed obsolete 16-bit files from the distribution and from the current 
4583 git 
4584 tree head. ACPICA BZ 776.
4585
4586 Example Code and Data Size: These are the sizes for the OS-independent 
4587 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4588 debug version of the code includes the debug output trace mechanism and 
4589 has a 
4590 much larger code and data size.
4591
4592   Previous Release:
4593     Non-Debug Version:  83.4K Code, 17.5K Data, 100.9K Total
4594     Debug Version:     158.9K Code, 50.0K Data, 208.9K Total
4595   Current Release:
4596     Non-Debug Version:  84.7K Code, 17.8K Data, 102.5K Total
4597     Debug Version:     160.5K Code, 50.6K Data, 211.1K Total
4598
4599 2) iASL Compiler/Disassembler and Tools:
4600
4601 ACPI 4.0: iASL and Disassembler - implemented support for the new IPMI 
4602 operation region keyword. ACPICA BZ 771, 772. Lin Ming.
4603
4604 ACPI 4.0: iASL - implemented compile-time validation support for all new 
4605 predefined names and control methods (31 total). ACPICA BZ 769.
4606
4607 ----------------------------------------
4608 21 May 2009. Summary of changes for version 20090521:
4609
4610 1) ACPI CA Core Subsystem:
4611
4612 Disabled the preservation of the SCI enable bit in the PM1 control 
4613 register. 
4614 The SCI enable bit (bit 0, SCI_EN) is defined by the ACPI specification 
4615 to 
4616 be 
4617 a "preserved" bit - "OSPM always preserves this bit position", section 
4618 4.7.3.2.1. However, some machines fail if this bit is in fact preserved 
4619 because the bit needs to be explicitly set by the OS as a workaround. No 
4620 machines fail if the bit is not preserved. Therefore, ACPICA no longer 
4621 attempts to preserve this bit.
4622
4623 Fixed a problem in AcpiRsGetPciRoutingTableLength where an invalid or 
4624 incorrectly formed _PRT package could cause a fault. Added validation to 
4625 ensure that each package element is actually a sub-package.
4626
4627 Implemented a new interface to install or override a single control 
4628 method, 
4629 AcpiInstallMethod. This interface is useful when debugging in order to 
4630 repair 
4631 an existing method or to install a missing method without having to 
4632 override 
4633 the entire ACPI table. See the ACPICA Programmer Reference for use and 
4634 examples. Lin Ming, Bob Moore.
4635
4636 Fixed several reference count issues with the DdbHandle object that is 
4637 created from a Load or LoadTable operator. Prevent premature deletion of 
4638 the 
4639 object. Also, mark the object as invalid once the table has been 
4640 unloaded. 
4641 This is needed because the handle itself may not be deleted after the 
4642 table 
4643 unload, depending on whether it has been stored in a named object by the 
4644 caller. Lin Ming.
4645
4646 Fixed a problem with Mutex Sync Levels. Fixed a problem where if multiple 
4647 mutexes of the same sync level are acquired but then not released in 
4648 strict 
4649 opposite order, the internally maintained Current Sync Level becomes 
4650 confused 
4651 and can cause subsequent execution errors. ACPICA BZ 471.
4652
4653 Changed the allowable release order for ASL mutex objects. The ACPI 4.0 
4654 specification has been changed to make the SyncLevel for mutex objects 
4655 more 
4656 useful. When releasing a mutex, the SyncLevel of the mutex must now be 
4657 the 
4658 same as the current sync level. This makes more sense than the previous 
4659 rule 
4660 (SyncLevel less than or equal). This change updates the code to match the 
4661 specification.
4662
4663 Fixed a problem with the local version of the AcpiOsPurgeCache function. 
4664 The 
4665 (local) cache must be locked during all cache object deletions. Andrew 
4666 Baumann.
4667
4668 Updated the Load operator to use operation region interfaces. This 
4669 replaces 
4670 direct memory mapping with region access calls. Now, all region accesses 
4671 go 
4672 through the installed region handler as they should.
4673
4674 Simplified and optimized the NsGetNextNode function. Reduced parameter 
4675 count 
4676 and reduced code for this frequently used function.
4677
4678 Example Code and Data Size: These are the sizes for the OS-independent 
4679 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4680 debug version of the code includes the debug output trace mechanism and 
4681 has a 
4682 much larger code and data size.
4683
4684   Previous Release:
4685     Non-Debug Version:  82.8K Code, 17.5K Data, 100.3K Total
4686     Debug Version:     158.0K Code, 49.9K Data, 207.9K Total
4687   Current Release:
4688     Non-Debug Version:  83.4K Code, 17.5K Data, 100.9K Total
4689     Debug Version:     158.9K Code, 50.0K Data, 208.9K Total
4690
4691 2) iASL Compiler/Disassembler and Tools:
4692
4693 Disassembler: Fixed some issues with DMAR, HEST, MADT tables. Some 
4694 problems 
4695 with sub-table disassembly and handling invalid sub-tables. Attempt 
4696 recovery 
4697 after an invalid sub-table ID.
4698
4699 ----------------------------------------
4700 22 April 2009. Summary of changes for version 20090422:
4701
4702 1) ACPI CA Core Subsystem:
4703
4704 Fixed a compatibility issue with the recently released I/O port 
4705 protection 
4706 mechanism. For windows compatibility, 1) On a port protection violation, 
4707 simply ignore the request and do not return an exception (allow the 
4708 control 
4709 method to continue execution.) 2) If only part of the request overlaps a 
4710 protected port, read/write the individual ports that are not protected. 
4711 Linux 
4712 BZ 13036. Lin Ming
4713
4714 Enhanced the execution of the ASL/AML BreakPoint operator so that it 
4715 actually 
4716 breaks into the AML debugger if the debugger is present. This matches the 
4717 ACPI-defined behavior.
4718
4719 Fixed several possible warnings related to the use of the configurable 
4720 ACPI_THREAD_ID. This type can now be configured as either an integer or a 
4721 pointer with no warnings. Also fixes several warnings in printf-like 
4722 statements for the 64-bit build when the type is configured as a pointer. 
4723 ACPICA BZ 766, 767.
4724
4725 Fixed a number of possible warnings when compiling with gcc 4+ (depending 
4726 on 
4727 warning options.) Examples include printf formats, aliasing, unused 
4728 globals, 
4729 missing prototypes, missing switch default statements, use of non-ANSI 
4730 library functions, use of non-ANSI constructs. See generate/unix/Makefile 
4731 for 
4732 a list of warning options used with gcc 3 and 4. ACPICA BZ 735.
4733
4734 Example Code and Data Size: These are the sizes for the OS-independent 
4735 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4736 debug version of the code includes the debug output trace mechanism and 
4737 has a 
4738 much larger code and data size.
4739
4740   Previous Release:
4741     Non-Debug Version:  82.6K Code, 17.6K Data, 100.2K Total
4742     Debug Version:     157.7K Code, 49.9K Data, 207.6K Total
4743   Current Release:
4744     Non-Debug Version:  82.8K Code, 17.5K Data, 100.3K Total
4745     Debug Version:     158.0K Code, 49.9K Data, 207.9K Total
4746
4747 2) iASL Compiler/Disassembler and Tools:
4748
4749 iASL: Fixed a generation warning from Bison 2.3 and fixed several 
4750 warnings 
4751 on 
4752 the 64-bit build.
4753
4754 iASL: Fixed a problem where the Unix/Linux versions of the compiler could 
4755 not 
4756 correctly digest Windows/DOS formatted files (with CR/LF).
4757
4758 iASL: Added a new option for "quiet mode" (-va) that produces only the 
4759 compilation summary, not individual errors and warnings. Useful for large 
4760 batch compilations.
4761
4762 AcpiExec: Implemented a new option (-z) to enable a forced 
4763 semaphore/mutex 
4764 timeout that can be used to detect hang conditions during execution of 
4765 AML 
4766 code (includes both internal semaphores and AML-defined mutexes and 
4767 events.)
4768
4769 Added new makefiles for the generation of acpica in a generic unix-like 
4770 environment. These makefiles are intended to generate the acpica tools 
4771 and 
4772 utilities from the original acpica git source tree structure.
4773
4774 Test Suites: Updated and cleaned up the documentation files. Updated the 
4775 copyrights to 2009, affecting all source files. Use the new version of 
4776 iASL 
4777 with quiet mode. Increased the number of available semaphores in the 
4778 Windows 
4779 OSL, allowing the aslts to execute fully on Windows. For the Unix OSL, 
4780 added 
4781 an alternate implementation of the semaphore timeout to allow aslts to 
4782 execute fully on Cygwin.
4783
4784 ----------------------------------------
4785 20 March 2009. Summary of changes for version 20090320:
4786
4787 1) ACPI CA Core Subsystem:
4788
4789 Fixed a possible race condition between AcpiWalkNamespace and dynamic 
4790 table 
4791 unloads. Added a reader/writer locking mechanism to allow multiple 
4792 concurrent 
4793 namespace walks (readers), but block a dynamic table unload until it can 
4794 gain 
4795 exclusive write access to the namespace. This fixes a problem where a 
4796 table 
4797 unload could (possibly catastrophically) delete the portion of the 
4798 namespace 
4799 that is currently being examined by a walk. Adds a new file, utlock.c, 
4800 that 
4801 implements the reader/writer lock mechanism. ACPICA BZ 749.
4802
4803 Fixed a regression introduced in version 20090220 where a change to the 
4804 FADT 
4805 handling could cause the ACPICA subsystem to access non-existent I/O 
4806 ports.
4807
4808 Modified the handling of FADT register and table (FACS/DSDT) addresses. 
4809 The 
4810 FADT can contain both 32-bit and 64-bit versions of these addresses. 
4811 Previously, the 64-bit versions were favored, meaning that if both 32 and 
4812 64 
4813 versions were valid, but not equal, the 64-bit version was used. This was 
4814 found to cause some machines to fail. Now, in this case, the 32-bit 
4815 version 
4816 is used instead. This now matches the Windows behavior.
4817
4818 Implemented a new mechanism to protect certain I/O ports. Provides 
4819 Microsoft 
4820 compatibility and protects the standard PC I/O ports from access via AML 
4821 code. Adds a new file, hwvalid.c
4822
4823 Fixed a possible extraneous warning message from the FADT support. The 
4824 message warns of a 32/64 length mismatch between the legacy and GAS 
4825 definitions for a register.
4826
4827 Removed the obsolete AcpiOsValidateAddress OSL interface. This interface 
4828 is 
4829 made obsolete by the port protection mechanism above. It was previously 
4830 used 
4831 to validate the entire address range of an operation region, which could 
4832 be 
4833 incorrect if the range included illegal ports, but fields within the 
4834 operation region did not actually access those ports. Validation is now 
4835 performed on a per-field basis instead of the entire region.
4836
4837 Modified the handling of the PM1 Status Register ignored bit (bit 11.) 
4838 Ignored bits must be "preserved" according to the ACPI spec. Usually, 
4839 this 
4840 means a read/modify/write when writing to the register. However, for 
4841 status 
4842 registers, writing a one means clear the event. Writing a zero means 
4843 preserve 
4844 the event (do not clear.) This behavior is clarified in the ACPI 4.0 
4845 spec, 
4846 and the ACPICA code now simply always writes a zero to the ignored bit.
4847
4848 Modified the handling of ignored bits for the PM1 A/B Control Registers. 
4849 As 
4850 per the ACPI specification, for the control registers, preserve 
4851 (read/modify/write) all bits that are defined as either reserved or 
4852 ignored.
4853
4854 Updated the handling of write-only bits in the PM1 A/B Control Registers. 
4855 When reading the register, zero the write-only bits as per the ACPI spec. 
4856 ACPICA BZ 443. Lin Ming.
4857
4858 Removed "Linux" from the list of supported _OSI strings. Linux no longer 
4859 wants to reply true to this request. The Windows strings are the only 
4860 paths 
4861 through the AML that are tested and known to work properly.
4862
4863   Previous Release:
4864     Non-Debug Version:  82.0K Code, 17.5K Data,  99.5K Total
4865     Debug Version:     156.9K Code, 49.8K Data, 206.7K Total
4866   Current Release:
4867     Non-Debug Version:  82.6K Code, 17.6K Data, 100.2K Total
4868     Debug Version:     157.7K Code, 49.9K Data, 207.6K Total
4869
4870 2) iASL Compiler/Disassembler and Tools:
4871
4872 Acpiexec: Split the large aeexec.c file into two new files, aehandlers.c 
4873 and 
4874 aetables.c
4875
4876 ----------------------------------------
4877 20 February 2009. Summary of changes for version 20090220:
4878
4879 1) ACPI CA Core Subsystem:
4880
4881 Optimized the ACPI register locking. Removed locking for reads from the 
4882 ACPI 
4883 bit registers in PM1 Status, Enable, Control, and PM2 Control. The lock 
4884 is 
4885 not required when reading the single-bit registers. The 
4886 AcpiGetRegisterUnlocked function is no longer needed and has been 
4887 removed. 
4888 This will improve performance for reads on these registers. ACPICA BZ 
4889 760.
4890
4891 Fixed the parameter validation for AcpiRead/Write. Now return 
4892 AE_BAD_PARAMETER if the input register pointer is null, and 
4893 AE_BAD_ADDRESS 
4894 if 
4895 the register has an address of zero. Previously, these cases simply 
4896 returned 
4897 AE_OK. For optional registers such as PM1B status/enable/control, the 
4898 caller 
4899 should check for a valid register address before calling. ACPICA BZ 748.
4900
4901 Renamed the external ACPI bit register access functions. Renamed 
4902 AcpiGetRegister and AcpiSetRegister to clarify the purpose of these 
4903 functions. The new names are AcpiReadBitRegister and 
4904 AcpiWriteBitRegister. 
4905 Also, restructured the code for these functions by simplifying the code 
4906 path 
4907 and condensing duplicate code to reduce code size.
4908
4909 Added new functions to transparently handle the possibly split PM1 A/B 
4910 registers. AcpiHwReadMultiple and AcpiHwWriteMultiple. These two 
4911 functions 
4912 now handle the split registers for PM1 Status, Enable, and Control. 
4913 ACPICA 
4914 BZ 
4915 746.
4916
4917 Added a function to handle the PM1 control registers, 
4918 AcpiHwWritePm1Control. 
4919 This function writes both of the PM1 control registers (A/B). These 
4920 registers 
4921 are different than the PM1 A/B status and enable registers in that 
4922 different 
4923 values can be written to the A/B registers. Most notably, the SLP_TYP 
4924 bits 
4925 can be different, as per the values returned from the _Sx predefined 
4926 methods.
4927
4928 Removed an extra register write within AcpiHwClearAcpiStatus. This 
4929 function 
4930 was writing an optional PM1B status register twice. The existing call to 
4931 the 
4932 low-level AcpiHwRegisterWrite automatically handles a possibly split PM1 
4933 A/B 
4934 register. ACPICA BZ 751.
4935
4936 Split out the PM1 Status registers from the FADT. Added new globals for 
4937 these 
4938 registers (A/B), similar to the way the PM1 Enable registers are handled. 
4939 Instead of overloading the FADT Event Register blocks. This makes the 
4940 code 
4941 clearer and less prone to error.
4942
4943 Fixed the warning message for when the platform contains too many ACPI 
4944 tables 
4945 for the default size of the global root table data structure. The 
4946 calculation 
4947 for the truncation value was incorrect.
4948
4949 Removed the ACPI_GET_OBJECT_TYPE macro. Removed all instances of this 
4950 obsolete macro, since it is now a simple reference to ->common.type. 
4951 There 
4952 were about 150 invocations of the macro across 41 files. ACPICA BZ 755.
4953
4954 Removed the redundant ACPI_BITREG_SLEEP_TYPE_B. This type is the same as 
4955 TYPE_A. Removed this and all related instances. Renamed SLEEP_TYPE_A to 
4956 simply SLEEP_TYPE. ACPICA BZ 754.
4957
4958 Conditionally compile the AcpiSetFirmwareWakingVector64 function. This 
4959 function is only needed on 64-bit host operating systems and is thus not 
4960 included for 32-bit hosts.
4961
4962 Debug output: print the input and result for invocations of the _OSI 
4963 reserved 
4964 control method via the ACPI_LV_INFO debug level. Also, reduced some of 
4965 the 
4966 verbosity of this debug level. Len Brown.
4967
4968 Example Code and Data Size: These are the sizes for the OS-independent 
4969 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4970 debug version of the code includes the debug output trace mechanism and 
4971 has a 
4972 much larger code and data size.
4973
4974   Previous Release:
4975     Non-Debug Version:  82.3K Code, 17.5K Data,  99.8K Total
4976     Debug Version:     157.3K Code, 49.8K Data, 207.1K Total
4977   Current Release:
4978     Non-Debug Version:  82.0K Code, 17.5K Data,  99.5K Total
4979     Debug Version:     156.9K Code, 49.8K Data, 206.7K Total
4980
4981 2) iASL Compiler/Disassembler and Tools:
4982
4983 Disassembler: Decode the FADT PM_Profile field. Emit ascii names for the 
4984 various legal performance profiles.
4985
4986 ----------------------------------------
4987 23 January 2009. Summary of changes for version 20090123:
4988
4989 1) ACPI CA Core Subsystem:
4990
4991 Added the 2009 copyright to all module headers and signons. This affects 
4992 virtually every file in the ACPICA core subsystem, the iASL compiler, and 
4993 the tools/utilities.
4994
4995 Implemented a change to allow the host to override any ACPI table, 
4996 including 
4997 dynamically loaded tables. Previously, only the DSDT could be replaced by 
4998 the 
4999 host. With this change, the AcpiOsTableOverride interface is called for 
5000 each 
5001 table found in the RSDT/XSDT during ACPICA initialization, and also 
5002 whenever 
5003 a table is dynamically loaded via the AML Load operator.
5004
5005 Updated FADT flag definitions, especially the Boot Architecture flags.
5006
5007 Debugger: For the Find command, automatically pad the input ACPI name 
5008 with 
5009 underscores if the name is shorter than 4 characters. This enables a 
5010 match 
5011 with the actual namespace entry which is itself padded with underscores.
5012
5013 Example Code and Data Size: These are the sizes for the OS-independent 
5014 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5015 debug version of the code includes the debug output trace mechanism and 
5016 has a 
5017 much larger code and data size.
5018
5019   Previous Release:
5020     Non-Debug Version:  82.3K Code, 17.4K Data,  99.7K Total
5021     Debug Version:     157.1K Code, 49.7K Data, 206.8K Total
5022   Current Release:
5023     Non-Debug Version:  82.3K Code, 17.5K Data,  99.8K Total
5024     Debug Version:     157.3K Code, 49.8K Data, 207.1K Total
5025
5026 2) iASL Compiler/Disassembler and Tools:
5027
5028 Fix build error under Bison-2.4.
5029
5030 Dissasembler: Enhanced FADT support. Added decoding of the Boot 
5031 Architecture 
5032 flags. Now decode all flags, regardless of the FADT version. Flag output 
5033 includes the FADT version which first defined each flag.
5034
5035 The iASL -g option now dumps the RSDT to a file (in addition to the FADT 
5036 and 
5037 DSDT). Windows only.
5038
5039 ----------------------------------------
5040 04 December 2008. Summary of changes for version 20081204:
5041
5042 1) ACPI CA Core Subsystem:
5043
5044 The ACPICA Programmer Reference has been completely updated and revamped 
5045 for 
5046 this release. This includes updates to the external interfaces, OSL 
5047 interfaces, the overview sections, and the debugger reference.
5048
5049 Several new ACPICA interfaces have been implemented and documented in the 
5050 programmer reference:
5051 AcpiReset - Writes the reset value to the FADT-defined reset register.
5052 AcpiDisableAllGpes - Disable all available GPEs.
5053 AcpiEnableAllRuntimeGpes - Enable all available runtime GPEs.
5054 AcpiGetGpeDevice - Get the GPE block device associated with a GPE.
5055 AcpiGbl_CurrentGpeCount - Tracks the current number of available GPEs.
5056 AcpiRead - Low-level read ACPI register (was HwLowLevelRead.)
5057 AcpiWrite - Low-level write ACPI register (was HwLowLevelWrite.)
5058
5059 Most of the public ACPI hardware-related interfaces have been moved to a 
5060 new 
5061 file, components/hardware/hwxface.c
5062
5063 Enhanced the FADT parsing and low-level ACPI register access: The ACPI 
5064 register lengths within the FADT are now used, and the low level ACPI 
5065 register access no longer hardcodes the ACPI register lengths. Given that 
5066 there may be some risk in actually trusting the FADT register lengths, a 
5067 run-
5068 time option was added to fall back to the default hardcoded lengths if 
5069 the 
5070 FADT proves to contain incorrect values - UseDefaultRegisterWidths. This 
5071 option is set to true for now, and a warning is issued if a suspicious 
5072 FADT 
5073 register length is overridden with the default value.
5074
5075 Fixed a reference count issue in NsRepairObject. This problem was 
5076 introduced 
5077 in version 20081031 as part of a fix to repair Buffer objects within 
5078 Packages. Lin Ming.
5079
5080 Added semaphore support to the Linux/Unix application OS-services layer 
5081 (OSL). ACPICA BZ 448. Lin Ming.
5082
5083 Added the ACPI_MUTEX_TYPE configuration option to select whether mutexes 
5084 will 
5085 be implemented in the OSL, or will binary semaphores be used instead.
5086
5087 Example Code and Data Size: These are the sizes for the OS-independent 
5088 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5089 debug version of the code includes the debug output trace mechanism and 
5090 has a 
5091 much larger code and data size.
5092
5093   Previous Release:
5094     Non-Debug Version:  81.7K Code, 17.3K Data,  99.0K Total
5095     Debug Version:     156.4K Code, 49.4K Data, 205.8K Total
5096   Current Release:
5097     Non-Debug Version:  82.3K Code, 17.4K Data,  99.7K Total
5098     Debug Version:     157.1K Code, 49.7K Data, 206.8K Total
5099
5100 2) iASL Compiler/Disassembler and Tools:
5101
5102 iASL: Completed the '-e' option to include additional ACPI tables in 
5103 order 
5104 to 
5105 aid with disassembly and External statement generation. ACPICA BZ 742. 
5106 Lin 
5107 Ming.
5108
5109 iASL: Removed the "named object in while loop" error. The compiler cannot 
5110 determine how many times a loop will execute. ACPICA BZ 730.
5111
5112 Disassembler: Implemented support for FADT revision 2 (MS extension). 
5113 ACPICA 
5114 BZ 743.
5115
5116 Disassembler: Updates for several ACPI data tables (HEST, EINJ, and 
5117 MCFG).
5118
5119 ----------------------------------------
5120 31 October 2008. Summary of changes for version 20081031:
5121
5122 1) ACPI CA Core Subsystem:
5123
5124 Restructured the ACPICA header files into public/private. acpi.h now 
5125 includes 
5126 only the "public" acpica headers. All other acpica headers are "private" 
5127 and 
5128 should not be included by acpica users. One new file, accommon.h is used 
5129 to 
5130 include the commonly used private headers for acpica code generation. 
5131 Future 
5132 plans include moving all private headers to a new subdirectory.
5133
5134 Implemented an automatic Buffer->String return value conversion for 
5135 predefined ACPI methods. For these methods (such as _BIF), added 
5136 automatic 
5137 conversion for return objects that are required to be a String, but a 
5138 Buffer 
5139 was found instead. This can happen when reading string battery data from 
5140 an 
5141 operation region, because it used to be difficult to convert the data 
5142 from 
5143 buffer to string from within the ASL. Ensures that the host OS is 
5144 provided 
5145 with a valid null-terminated string. Linux BZ 11822.
5146
5147 Updated the FACS waking vector interfaces. Split 
5148 AcpiSetFirmwareWakingVector 
5149 into two: one for the 32-bit vector, another for the 64-bit vector. This 
5150 is 
5151 required because the host OS must setup the wake much differently for 
5152 each 
5153 vector (real vs. protected mode, etc.) and the interface itself should 
5154 not 
5155 be 
5156 deciding which vector to use. Also, eliminated the 
5157 GetFirmwareWakingVector 
5158 interface, as it served no purpose (only the firmware reads the vector, 
5159 OS 
5160 only writes the vector.) ACPICA BZ 731.
5161
5162 Implemented a mechanism to escape infinite AML While() loops. Added a 
5163 loop 
5164 counter to force exit from AML While loops if the count becomes too 
5165 large. 
5166 This can occur in poorly written AML when the hardware does not respond 
5167 within a while loop and the loop does not implement a timeout. The 
5168 maximum 
5169 loop count is configurable. A new exception code is returned when a loop 
5170 is 
5171 broken, AE_AML_INFINITE_LOOP. Alexey Starikovskiy, Bob Moore.
5172
5173 Optimized the execution of AML While loops. Previously, a control state 
5174 object was allocated and freed for each execution of the loop. The 
5175 optimization is to simply reuse the control state for each iteration. 
5176 This 
5177 speeds up the raw loop execution time by about 5%.
5178
5179 Enhanced the implicit return mechanism. For Windows compatibility, return 
5180 an 
5181 implicit integer of value zero for methods that contain no executable 
5182 code. 
5183 Such methods are seen in the field as stubs (presumably), and can cause 
5184 drivers to fail if they expect a return value. Lin Ming.
5185
5186 Allow multiple backslashes as root prefixes in namepaths. In a fully 
5187 qualified namepath, allow multiple backslash prefixes. This can happen 
5188 (and 
5189 is seen in the field) because of the use of a double-backslash in strings 
5190 (since backslash is the escape character) causing confusion. ACPICA BZ 
5191 739 
5192 Lin Ming.
5193
5194 Emit a warning if two different FACS or DSDT tables are discovered in the 
5195 FADT. Checks if there are two valid but different addresses for the FACS 
5196 and 
5197 DSDT within the FADT (mismatch between the 32-bit and 64-bit fields.)
5198
5199 Consolidated the method argument count validation code. Merged the code 
5200 that 
5201 validates control method argument counts into the predefined validation 
5202 module. Eliminates possible multiple warnings for incorrect argument 
5203 counts.
5204
5205 Implemented ACPICA example code. Includes code for ACPICA initialization, 
5206 handler installation, and calling a control method. Available at 
5207 source/tools/examples.
5208
5209 Added a global pointer for FACS table to simplify internal FACS access. 
5210 Use 
5211 the global pointer instead of using AcpiGetTableByIndex for each FACS 
5212 access. 
5213 This simplifies the code for the Global Lock and the Firmware Waking 
5214 Vector(s).
5215
5216 Example Code and Data Size: These are the sizes for the OS-independent 
5217 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5218 debug version of the code includes the debug output trace mechanism and 
5219 has a 
5220 much larger code and data size.
5221
5222   Previous Release:
5223     Non-Debug Version:  81.2K Code, 17.0K Data,  98.2K Total
5224     Debug Version:     155.8K Code, 49.1K Data, 204.9K Total
5225   Current Release:
5226     Non-Debug Version:  81.7K Code, 17.3K Data,  99.0K Total
5227     Debug Version:     156.4K Code, 49.4K Data, 205.8K Total
5228
5229 2) iASL Compiler/Disassembler and Tools:
5230
5231 iASL: Improved disassembly of external method calls. Added the -e option 
5232 to 
5233 allow the inclusion of additional ACPI tables to help with the 
5234 disassembly 
5235 of 
5236 method invocations and the generation of external declarations during the 
5237 disassembly. Certain external method invocations cannot be disassembled 
5238 properly without the actual declaration of the method. Use the -e option 
5239 to 
5240 include the table where the external method(s) are actually declared. 
5241 Most 
5242 useful for disassembling SSDTs that make method calls back to the master 
5243 DSDT. Lin Ming. Example: To disassemble an SSDT with calls to DSDT:  iasl 
5244 -d 
5245 -e dsdt.aml ssdt1.aml
5246
5247 iASL: Fix to allow references to aliases within ASL namepaths. Fixes a 
5248 problem where the use of an alias within a namepath would result in a not 
5249 found error or cause the compiler to fault. Also now allows forward 
5250 references from the Alias operator itself. ACPICA BZ 738.
5251
5252 ----------------------------------------
5253 26 September 2008. Summary of changes for version 20080926:
5254
5255 1) ACPI CA Core Subsystem:
5256
5257 Designed and implemented a mechanism to validate predefined ACPI methods 
5258 and 
5259 objects. This code validates the predefined ACPI objects (objects whose 
5260 names 
5261 start with underscore) that appear in the namespace, at the time they are 
5262 evaluated. The argument count and the type of the returned object are 
5263 validated against the ACPI specification. The purpose of this validation 
5264 is 
5265 to detect problems with the BIOS-implemented predefined ACPI objects 
5266 before 
5267 the results are returned to the ACPI-related drivers. Future enhancements 
5268 may 
5269 include actual repair of incorrect return objects where possible. Two new 
5270 files are nspredef.c and acpredef.h.
5271
5272 Fixed a fault in the AML parser if a memory allocation fails during the 
5273 Op 
5274 completion routine AcpiPsCompleteThisOp. Lin Ming. ACPICA BZ 492.
5275
5276 Fixed an issue with implicit return compatibility. This change improves 
5277 the 
5278 implicit return mechanism to be more compatible with the MS interpreter. 
5279 Lin 
5280 Ming, ACPICA BZ 349.
5281
5282 Implemented support for zero-length buffer-to-string conversions. Allow 
5283 zero 
5284 length strings during interpreter buffer-to-string conversions. For 
5285 example, 
5286 during the ToDecimalString and ToHexString operators, as well as implicit 
5287 conversions. Fiodor Suietov, ACPICA BZ 585.
5288
5289 Fixed two possible memory leaks in the error exit paths of 
5290 AcpiUtUpdateObjectReference and AcpiUtWalkPackageTree. These functions 
5291 are 
5292 similar in that they use a stack of state objects in order to eliminate 
5293 recursion. The stack must be fully unwound and deallocated if an error 
5294 occurs. Lin Ming. ACPICA BZ 383.
5295
5296 Removed the unused ACPI_BITREG_WAKE_ENABLE definition and entry in the 
5297 global 
5298 ACPI register table. This bit does not exist and is unused. Lin Ming, Bob 
5299 Moore ACPICA BZ 442.
5300
5301 Removed the obsolete version number in module headers. Removed the 
5302 "$Revision" number that appeared in each module header. This version 
5303 number 
5304 was useful under SourceSafe and CVS, but has no meaning under git. It is 
5305 not 
5306 only incorrect, it could also be misleading.
5307
5308 Example Code and Data Size: These are the sizes for the OS-independent 
5309 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5310 debug version of the code includes the debug output trace mechanism and 
5311 has a 
5312 much larger code and data size.
5313
5314   Previous Release:
5315     Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
5316     Debug Version:     153.7K Code, 48.2K Data, 201.9K Total
5317   Current Release:
5318     Non-Debug Version:  81.2K Code, 17.0K Data,  98.2K Total
5319     Debug Version:     155.8K Code, 49.1K Data, 204.9K Total
5320
5321 ----------------------------------------
5322 29 August 2008. Summary of changes for version 20080829:
5323
5324 1) ACPI CA Core Subsystem:
5325
5326 Completed a major cleanup of the internal ACPI_OPERAND_OBJECT of type 
5327 Reference. Changes include the elimination of cheating on the Object 
5328 field 
5329 for the DdbHandle subtype, addition of a reference class field to 
5330 differentiate the various reference types (instead of an AML opcode), and 
5331 the 
5332 cleanup of debug output for this object. Lin Ming, Bob Moore. BZ 723
5333
5334 Reduce an error to a warning for an incorrect method argument count. 
5335 Previously aborted with an error if too few arguments were passed to a 
5336 control method via the external ACPICA interface. Now issue a warning 
5337 instead 
5338 and continue. Handles the case where the method inadvertently declares 
5339 too 
5340 many arguments, but does not actually use the extra ones. Applies mainly 
5341 to 
5342 the predefined methods. Lin Ming. Linux BZ 11032.
5343
5344 Disallow the evaluation of named object types with no intrinsic value. 
5345 Return 
5346 AE_TYPE for objects that have no value and therefore evaluation is 
5347 undefined: 
5348 Device, Event, Mutex, Region, Thermal, and Scope. Previously, evaluation 
5349 of 
5350 these types were allowed, but an exception would be generated at some 
5351 point 
5352 during the evaluation. Now, the error is generated up front.
5353
5354 Fixed a possible memory leak in the AcpiNsGetExternalPathname function 
5355 (nsnames.c). Fixes a leak in the error exit path.
5356
5357 Removed the obsolete debug levels ACPI_DB_WARN and ACPI_DB_ERROR. These 
5358 debug 
5359 levels were made obsolete by the ACPI_WARNING, ACPI_ERROR, and 
5360 ACPI_EXCEPTION 
5361 interfaces. Also added ACPI_DB_EVENTS to correspond with the existing 
5362 ACPI_LV_EVENTS.
5363
5364 Removed obsolete and/or unused exception codes from the acexcep.h header. 
5365 There is the possibility that certain device drivers may be affected if 
5366 they 
5367 use any of these exceptions.
5368
5369 The ACPICA documentation has been added to the public git source tree, 
5370 under 
5371 acpica/documents. Included are the ACPICA programmer reference, the iASL 
5372 compiler reference, and the changes.txt release logfile.
5373
5374 Example Code and Data Size: These are the sizes for the OS-independent 
5375 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5376 debug version of the code includes the debug output trace mechanism and 
5377 has a 
5378 much larger code and data size.
5379
5380   Previous Release:
5381     Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
5382     Debug Version:     153.9K Code, 48.4K Data, 202.3K Total
5383   Current Release:
5384     Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
5385     Debug Version:     153.7K Code, 48.2K Data, 201.9K Total
5386
5387 2) iASL Compiler/Disassembler and Tools:
5388
5389 Allow multiple argument counts for the predefined _SCP method. ACPI 3.0 
5390 defines _SCP with 3 arguments. Previous versions defined it with only 1 
5391 argument. iASL now allows both definitions.
5392
5393 iASL/disassembler: avoid infinite loop on bad ACPI tables. Check for 
5394 zero-
5395 length subtables when disassembling ACPI tables. Also fixed a couple of 
5396 errors where a full 16-bit table type field was not extracted from the 
5397 input 
5398 properly.
5399
5400 acpisrc: Improve comment counting mechanism for generating source code 
5401 statistics. Count first and last lines of multi-line comments as 
5402 whitespace, 
5403 not comment lines. Handle Linux legal header in addition to standard 
5404 acpica 
5405 header.
5406
5407 ----------------------------------------
5408
5409 29 July 2008. Summary of changes for version 20080729:
5410
5411 1) ACPI CA Core Subsystem:
5412
5413 Fix a possible deadlock in the GPE dispatch. Remove call to 
5414 AcpiHwDisableAllGpes during wake in AcpiEvGpeDispatch. This call will 
5415 attempt 
5416 to acquire the GPE lock but can deadlock since the GPE lock is already 
5417 held 
5418 at dispatch time. This code was introduced in version 20060831 as a 
5419 response 
5420 to Linux BZ 6881 and has since been removed from Linux.
5421
5422 Add a function to dereference returned reference objects. Examines the 
5423 return 
5424 object from a call to AcpiEvaluateObject. Any Index or RefOf references 
5425 are 
5426 automatically dereferenced in an attempt to return something useful 
5427 (these 
5428 reference types cannot be converted into an external ACPI_OBJECT.) 
5429 Provides 
5430 MS compatibility. Lin Ming, Bob Moore. Linux BZ 11105
5431
5432 x2APIC support: changes for MADT and SRAT ACPI tables. There are 2 new 
5433 subtables for the MADT and one new subtable for the SRAT. Includes 
5434 disassembler and AcpiSrc support. Data from the Intel 64 Architecture 
5435 x2APIC 
5436 Specification, June 2008.
5437
5438 Additional error checking for pathname utilities. Add error check after 
5439 all 
5440 calls to AcpiNsGetPathnameLength. Add status return from 
5441 AcpiNsBuildExternalPath and check after all calls. Add parameter 
5442 validation 
5443 to AcpiUtInitializeBuffer. Reported by and initial patch by Ingo Molnar.
5444
5445 Return status from the global init function AcpiUtGlobalInitialize. This 
5446 is 
5447 used by both the kernel subsystem and the utilities such as iASL 
5448 compiler. 
5449 The function could possibly fail when the caches are initialized. Yang 
5450 Yi.
5451
5452 Add a function to decode reference object types to strings. Created for 
5453 improved error messages. 
5454
5455 Improve object conversion error messages. Better error messages during 
5456 object 
5457 conversion from internal to the external ACPI_OBJECT. Used for external 
5458 calls 
5459 to AcpiEvaluateObject.
5460
5461 Example Code and Data Size: These are the sizes for the OS-independent 
5462 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5463 debug version of the code includes the debug output trace mechanism and 
5464 has a 
5465 much larger code and data size.
5466
5467   Previous Release:
5468     Non-Debug Version:  79.6K Code, 16.2K Data,  95.8K Total
5469     Debug Version:     153.5K Code, 48.2K Data, 201.7K Total
5470   Current Release:
5471     Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
5472     Debug Version:     153.9K Code, 48.4K Data, 202.3K Total
5473
5474 2) iASL Compiler/Disassembler and Tools:
5475
5476 Debugger: fix a possible hang when evaluating non-methods. Fixes a 
5477 problem 
5478 introduced in version 20080701. If the object being evaluated (via 
5479 execute 
5480 command) is not a method, the debugger can hang while trying to obtain 
5481 non-
5482 existent parameters.
5483
5484 iASL: relax error for using reserved "_T_x" identifiers. These names can 
5485 appear in a disassembled ASL file if they were emitted by the original 
5486 compiler. Instead of issuing an error or warning and forcing the user to 
5487 manually change these names, issue a remark instead.
5488
5489 iASL: error if named object created in while loop. Emit an error if any 
5490 named 
5491 object is created within a While loop. If allowed, this code will 
5492 generate 
5493
5494 run-time error on the second iteration of the loop when an attempt is 
5495 made 
5496 to 
5497 create the same named object twice. ACPICA bugzilla 730.
5498
5499 iASL: Support absolute pathnames for include files. Add support for 
5500 absolute 
5501 pathnames within the Include operator. previously, only relative 
5502 pathnames 
5503 were supported.
5504
5505 iASL: Enforce minimum 1 interrupt in interrupt macro and Resource 
5506 Descriptor. 
5507 The ACPI spec requires one interrupt minimum. BZ 423
5508
5509 iASL: Handle a missing ResourceSource arg, with a present SourceIndex. 
5510 Handles the case for the Interrupt Resource Descriptor where
5511 the ResourceSource argument is omitted but ResourceSourceIndex
5512 is present. Now leave room for the Index. BZ 426
5513
5514 iASL: Prevent error message if CondRefOf target does not exist. Fixes 
5515 cases 
5516 where an error message is emitted if the target does not exist. BZ 516
5517
5518 iASL: Fix broken -g option (get Windows ACPI tables). Fixes the -g option 
5519 (get ACPI tables on Windows). This was apparently broken in version 
5520 20070919.
5521
5522 AcpiXtract: Handle EOF while extracting data. Correctly handle the case 
5523 where 
5524 the EOF happens immediately after the last table in the input file. Print 
5525 completion message. Previously, no message was displayed in this case.
5526
5527 ----------------------------------------
5528 01 July 2008. Summary of changes for version 20080701:
5529
5530 0) Git source tree / acpica.org
5531
5532 Fixed a problem where a git-clone from http would not transfer the entire 
5533 source tree.
5534
5535 1) ACPI CA Core Subsystem:
5536
5537 Implemented a "careful" GPE disable in AcpiEvDisableGpe, only modify one 
5538 enable bit. Now performs a read-change-write of the enable register 
5539 instead 
5540 of simply writing out the cached enable mask. This will prevent 
5541 inadvertent 
5542 enabling of GPEs if a rogue GPE is received during initialization (before 
5543 GPE 
5544 handlers are installed.)
5545
5546 Implemented a copy for dynamically loaded tables. Previously, dynamically 
5547 loaded tables were simply mapped - but on some machines this memory is 
5548 corrupted after suspend. Now copy the table to a local buffer. For the 
5549 OpRegion case, added checksum verify. Use the table length from the table 
5550 header, not the region length. For the Buffer case, use the table length 
5551 also. Dennis Noordsij, Bob Moore. BZ 10734
5552
5553 Fixed a problem where the same ACPI table could not be dynamically loaded 
5554 and 
5555 unloaded more than once. Without this change, a table cannot be loaded 
5556 again 
5557 once it has been loaded/unloaded one time. The current mechanism does not 
5558 unregister a table upon an unload. During a load, if the same table is 
5559 found, 
5560 this no longer returns an exception. BZ 722
5561
5562 Fixed a problem where the wrong descriptor length was calculated for the 
5563 EndTag descriptor in 64-bit mode. The "minimal" descriptors such as 
5564 EndTag 
5565 are calculated as 12 bytes long, but the actual length in the internal 
5566 descriptor is 16 because of the round-up to 8 on the 64-bit build. 
5567 Reported 
5568 by Linn Crosetto. BZ 728
5569
5570 Fixed a possible memory leak in the Unload operator. The DdbHandle 
5571 returned 
5572 by Load() did not have its reference count decremented during unload, 
5573 leading 
5574 to a memory leak. Lin Ming. BZ 727
5575
5576 Fixed a possible memory leak when deleting thermal/processor objects. Any 
5577 associated notify handlers (and objects) were not being deleted. Fiodor 
5578 Suietov. BZ 506
5579
5580 Fixed the ordering of the ASCII names in the global mutex table to match 
5581 the 
5582 actual mutex IDs. Used by AcpiUtGetMutexName, a function used for debug 
5583 only. 
5584 Vegard Nossum. BZ 726
5585
5586 Enhanced the AcpiGetObjectInfo interface to return the number of required 
5587 arguments if the object is a control method. Added this call to the 
5588 debugger 
5589 so the proper number of default arguments are passed to a method. This 
5590 prevents a warning when executing methods from AcpiExec.
5591
5592 Added a check for an invalid handle in AcpiGetObjectInfo. Return 
5593 AE_BAD_PARAMETER if input handle is invalid. BZ 474
5594
5595 Fixed an extraneous warning from exconfig.c on the 64-bit build.
5596
5597 Example Code and Data Size: These are the sizes for the OS-independent 
5598 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5599 debug version of the code includes the debug output trace mechanism and 
5600 has a 
5601 much larger code and data size.
5602
5603   Previous Release:
5604     Non-Debug Version:  79.3K Code, 16.2K Data,  95.5K Total
5605     Debug Version:     153.0K Code, 48.2K Data, 201.2K Total
5606   Current Release:
5607     Non-Debug Version:  79.6K Code, 16.2K Data,  95.8K Total
5608     Debug Version:     153.5K Code, 48.2K Data, 201.7K Total
5609
5610 2) iASL Compiler/Disassembler and Tools:
5611
5612 iASL: Added two missing ACPI reserved names. Added _MTP and _ASZ, both 
5613 resource descriptor names.
5614
5615 iASL: Detect invalid ASCII characters in input (windows version). Removed 
5616 the 
5617 "-CF" flag from the flex compile, enables correct detection of non-ASCII 
5618 characters in the input. BZ 441
5619
5620 iASL: Eliminate warning when result of LoadTable is not used. Eliminate 
5621 the 
5622 "result of operation not used" warning when the DDB handle returned from 
5623 LoadTable is not used. The warning is not needed. BZ 590
5624
5625 AcpiExec: Add support for dynamic table load/unload. Now calls _CFG 
5626 method 
5627 to 
5628 pass address of table to the AML. Added option to disable OpRegion 
5629 simulation 
5630 to allow creation of an OpRegion with a real address that was passed to 
5631 _CFG. 
5632 All of this allows testing of the Load and Unload operators from 
5633 AcpiExec.
5634
5635 Debugger: update tables command for unloaded tables. Handle unloaded 
5636 tables 
5637 and use the standard table header output routine.
5638
5639 ----------------------------------------
5640 09 June 2008. Summary of changes for version 20080609:
5641
5642 1) ACPI CA Core Subsystem:
5643
5644 Implemented a workaround for reversed _PRT entries. A significant number 
5645 of 
5646 BIOSs erroneously reverse the _PRT SourceName and the SourceIndex. This 
5647 change dynamically detects and repairs this problem. Provides 
5648 compatibility 
5649 with MS ACPI. BZ 6859
5650
5651 Simplified the internal ACPI hardware interfaces to eliminate the locking 
5652 flag parameter from Register Read/Write. Added a new external interface, 
5653 AcpiGetRegisterUnlocked.
5654
5655 Fixed a problem where the invocation of a GPE control method could hang. 
5656 This 
5657 was a regression introduced in 20080514. The new method argument count 
5658 validation mechanism can enter an infinite loop when a GPE method is 
5659 dispatched. Problem fixed by removing the obsolete code that passed GPE 
5660 block 
5661 information to the notify handler via the control method parameter 
5662 pointer.
5663
5664 Fixed a problem where the _SST execution status was incorrectly returned 
5665 to 
5666 the caller of AcpiEnterSleepStatePrep. This was a regression introduced 
5667 in 
5668 20080514. _SST is optional and a NOT_FOUND exception should never be 
5669 returned. BZ 716
5670
5671 Fixed a problem where a deleted object could be accessed from within the 
5672 AML 
5673 parser. This was a regression introduced in version 20080123 as a fix for 
5674 the 
5675 Unload operator. Lin Ming. BZ 10669
5676
5677 Cleaned up the debug operand dump mechanism. Eliminated unnecessary 
5678 operands 
5679 and eliminated the use of a negative index in a loop. Operands are now 
5680 displayed in the correct order, not backwards. This also fixes a 
5681 regression 
5682 introduced in 20080514 on 64-bit systems where the elimination of 
5683 ACPI_NATIVE_UINT caused the negative index to go large and positive. BZ 
5684 715
5685
5686 Fixed a possible memory leak in EvPciConfigRegionSetup where the error 
5687 exit 
5688 path did not delete a locally allocated structure.
5689
5690 Updated definitions for the DMAR and SRAT tables to synchronize with the 
5691 current specifications. Includes disassembler support.
5692
5693 Fixed a problem in the mutex debug code (in utmutex.c) where an incorrect 
5694 loop termination value was used. Loop terminated on iteration early, 
5695 missing 
5696 one mutex. Linn Crosetto
5697
5698 Example Code and Data Size: These are the sizes for the OS-independent 
5699 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5700 debug version of the code includes the debug output trace mechanism and 
5701 has a 
5702 much larger code and data size.
5703
5704   Previous Release:
5705     Non-Debug Version:  79.5K Code, 16.2K Data,  95.7K Total
5706     Debug Version:     153.3K Code, 48.3K Data, 201.6K Total
5707   Current Release:
5708     Non-Debug Version:  79.3K Code, 16.2K Data,  95.5K Total
5709     Debug Version:     153.0K Code, 48.2K Data, 201.2K Total
5710
5711 2) iASL Compiler/Disassembler and Tools:
5712
5713 Disassembler: Implemented support for EisaId() within _CID objects. Now 
5714 disassemble integer _CID objects back to EisaId invocations, including 
5715 multiple integers within _CID packages. Includes single-step support for 
5716 debugger also.
5717
5718 Disassembler: Added support for DMAR and SRAT table definition changes.
5719
5720 ----------------------------------------
5721 14 May 2008. Summary of changes for version 20080514:
5722
5723 1) ACPI CA Core Subsystem:
5724
5725 Fixed a problem where GPEs were enabled too early during the ACPICA 
5726 initialization. This could lead to "handler not installed" errors on some 
5727 machines. Moved GPE enable until after _REG/_STA/_INI methods are run. 
5728 This 
5729 ensures that all operation regions and devices throughout the namespace 
5730 have 
5731 been initialized before GPEs are enabled. Alexey Starikovskiy, BZ 9916.
5732
5733 Implemented a change to the enter sleep code. Moved execution of the _GTS 
5734 method to just before setting sleep enable bit. The execution was moved 
5735 from 
5736 AcpiEnterSleepStatePrep to AcpiEnterSleepState. _GTS is now executed 
5737 immediately before the SLP_EN bit is set, as per the ACPI specification. 
5738 Luming Yu, BZ 1653.
5739
5740 Implemented a fix to disable unknown GPEs (2nd version). Now always 
5741 disable 
5742 the GPE, even if ACPICA thinks that that it is already disabled. It is 
5743 possible that the AML or some other code has enabled the GPE unbeknownst 
5744 to 
5745 the ACPICA code.
5746
5747 Fixed a problem with the Field operator where zero-length fields would 
5748 return 
5749 an AE_AML_NO_OPERAND exception during table load. Fix enables zero-length 
5750 ASL 
5751 field declarations in Field(), BankField(), and IndexField(). BZ 10606.
5752
5753 Implemented a fix for the Load operator, now load the table at the 
5754 namespace 
5755 root. This reverts a change introduced in version 20071019. The table is 
5756 now 
5757 loaded at the namespace root even though this goes against the ACPI 
5758 specification. This provides compatibility with other ACPI 
5759 implementations. 
5760 The ACPI specification will be updated to reflect this in ACPI 4.0. Lin 
5761 Ming.
5762
5763 Fixed a problem where ACPICA would not Load() tables with unusual 
5764 signatures. 
5765 Now ignore ACPI table signature for Load() operator. Only "SSDT" is 
5766 acceptable to the ACPI spec, but tables are seen with OEMx and null sigs. 
5767 Therefore, signature validation is worthless. Apparently MS ACPI accepts 
5768 such 
5769 signatures, ACPICA must be compatible. BZ 10454.
5770
5771 Fixed a possible negative array index in AcpiUtValidateException. Added 
5772 NULL 
5773 fields to the exception string arrays to eliminate a -1 subtraction on 
5774 the 
5775 SubStatus field.
5776
5777 Updated the debug tracking macros to reduce overall code and data size. 
5778 Changed ACPI_MODULE_NAME and ACPI_FUNCTION_NAME to use arrays of strings 
5779 instead of pointers to static strings. Jan Beulich and Bob Moore.
5780
5781 Implemented argument count checking in control method invocation via 
5782 AcpiEvaluateObject. Now emit an error if too few arguments, warning if 
5783 too 
5784 many. This applies only to extern programmatic control method execution, 
5785 not 
5786 method-to-method calls within the AML. Lin Ming.
5787
5788 Eliminated the ACPI_NATIVE_UINT type across all ACPICA code. This type is 
5789 no 
5790 longer needed, especially with the removal of 16-bit support. It was 
5791 replaced 
5792 mostly with UINT32, but also ACPI_SIZE where a type that changes 32/64 
5793 bit 
5794 on 
5795 32/64-bit platforms is required.
5796
5797 Added the C const qualifier for appropriate string constants -- mostly 
5798 MODULE_NAME and printf format strings. Jan Beulich.
5799
5800 Example Code and Data Size: These are the sizes for the OS-independent 
5801 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5802 debug version of the code includes the debug output trace mechanism and 
5803 has a 
5804 much larger code and data size.
5805
5806   Previous Release:
5807     Non-Debug Version:  80.0K Code, 17.4K Data,  97.4K Total
5808     Debug Version:     159.4K Code, 64.4K Data, 223.8K Total
5809   Current Release:
5810     Non-Debug Version:  79.5K Code, 16.2K Data,  95.7K Total
5811     Debug Version:     153.3K Code, 48.3K Data, 201.6K Total
5812
5813 2) iASL Compiler/Disassembler and Tools:
5814
5815 Implemented ACPI table revision ID validation in the disassembler. Zero 
5816 is 
5817 always invalid. For DSDTs, the ID controls the interpreter integer width. 
5818
5819 means 32-bit and this is unusual. 2 or greater is 64-bit.
5820
5821 ----------------------------------------
5822 21 March 2008. Summary of changes for version 20080321:
5823
5824 1) ACPI CA Core Subsystem:
5825
5826 Implemented an additional change to the GPE support in order to suppress 
5827 spurious or stray GPEs. The AcpiEvDisableGpe function will now 
5828 permanently 
5829 disable incoming GPEs that are neither enabled nor disabled -- meaning 
5830 that 
5831 the GPE is unknown to the system. This should prevent future interrupt 
5832 floods 
5833 from that GPE. BZ 6217 (Zhang Rui)
5834
5835 Fixed a problem where NULL package elements were not returned to the 
5836 AcpiEvaluateObject interface correctly. The element was simply ignored 
5837 instead of returning a NULL ACPI_OBJECT package element, potentially 
5838 causing 
5839 a buffer overflow and/or confusing the caller who expected a fixed number 
5840 of 
5841 elements. BZ 10132 (Lin Ming, Bob Moore)
5842
5843 Fixed a problem with the CreateField, CreateXXXField (Bit, Byte, Word, 
5844 Dword, 
5845 Qword), Field, BankField, and IndexField operators when invoked from 
5846 inside 
5847 an executing control method. In this case, these operators created 
5848 namespace 
5849 nodes that were incorrectly left marked as permanent nodes instead of 
5850 temporary nodes. This could cause a problem if there is race condition 
5851 between an exiting control method and a running namespace walk. (Reported 
5852 by 
5853 Linn Crosetto)
5854
5855 Fixed a problem where the CreateField and CreateXXXField operators would 
5856 incorrectly allow duplicate names (the name of the field) with no 
5857 exception 
5858 generated.
5859
5860 Implemented several changes for Notify handling. Added support for new 
5861 Notify 
5862 values (ACPI 2.0+) and improved the Notify debug output. Notify on 
5863 PowerResource objects is no longer allowed, as per the ACPI 
5864 specification. 
5865 (Bob Moore, Zhang Rui)
5866
5867 All Reference Objects returned via the AcpiEvaluateObject interface are 
5868 now 
5869 marked as type "REFERENCE" instead of "ANY". The type ANY is now reserved 
5870 for 
5871 NULL objects - either NULL package elements or unresolved named 
5872 references.
5873
5874 Fixed a problem where an extraneous debug message was produced for 
5875 package 
5876 objects (when debugging enabled). The message "Package List length larger 
5877 than NumElements count" is now produced in the correct case, and is now 
5878 an 
5879 error message rather than a debug message. Added a debug message for the 
5880 opposite case, where NumElements is larger than the Package List (the 
5881 package 
5882 will be padded out with NULL elements as per the ACPI spec.)
5883
5884 Implemented several improvements for the output of the ASL "Debug" object 
5885 to 
5886 clarify and keep all data for a given object on one output line.
5887
5888 Fixed two size calculation issues with the variable-length Start 
5889 Dependent 
5890 resource descriptor.
5891
5892 Example Code and Data Size: These are the sizes for the OS-independent 
5893 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5894 debug version of the code includes the debug output trace mechanism and 
5895 has 
5896 a much larger code and data size.
5897
5898   Previous Release:
5899     Non-Debug Version:  79.7K Code, 17.3K Data,  97.0K Total
5900     Debug Version:     158.9K Code, 64.0K Data, 222.9K Total
5901   Current Release:
5902     Non-Debug Version:  80.0K Code, 17.4K Data,  97.4K Total
5903     Debug Version:     159.4K Code, 64.4K Data, 223.8K Total
5904
5905 2) iASL Compiler/Disassembler and Tools:
5906
5907 Fixed a problem with the use of the Switch operator where execution of 
5908 the 
5909 containing method by multiple concurrent threads could cause an 
5910 AE_ALREADY_EXISTS exception. This is caused by the fact that there is no 
5911 actual Switch opcode, it must be simulated with local named temporary 
5912 variables and if/else pairs. The solution chosen was to mark any method 
5913 that 
5914 uses Switch as Serialized, thus preventing multiple thread entries. BZ 
5915 469.
5916
5917 ----------------------------------------
5918 13 February 2008. Summary of changes for version 20080213:
5919
5920 1) ACPI CA Core Subsystem:
5921
5922 Implemented another MS compatibility design change for GPE/Notify 
5923 handling. 
5924 GPEs are now cleared/enabled asynchronously to allow all pending notifies 
5925 to 
5926 complete first. It is expected that the OSL will queue the enable request 
5927 behind all pending notify requests (may require changes to the local host 
5928 OSL 
5929 in AcpiOsExecute). Alexey Starikovskiy.
5930
5931 Fixed a problem where buffer and package objects passed as arguments to a 
5932 control method via the external AcpiEvaluateObject interface could cause 
5933 an 
5934 AE_AML_INTERNAL exception depending on the order and type of operators 
5935 executed by the target control method.
5936
5937 Fixed a problem where resource descriptor size optimization could cause a 
5938 problem when a _CRS resource template is passed to a _SRS method. The 
5939 _SRS 
5940 resource template must use the same descriptors (with the same size) as 
5941 returned from _CRS. This change affects the following resource 
5942 descriptors: 
5943 IRQ / IRQNoFlags and StartDependendentFn / StartDependentFnNoPri. (BZ 
5944 9487)
5945
5946 Fixed a problem where a CopyObject to RegionField, BankField, and 
5947 IndexField 
5948 objects did not perform an implicit conversion as it should. These types 
5949 must 
5950 retain their initial type permanently as per the ACPI specification. 
5951 However, 
5952 a CopyObject to all other object types should not perform an implicit 
5953 conversion, as per the ACPI specification. (Lin Ming, Bob Moore) BZ 388
5954
5955 Fixed a problem with the AcpiGetDevices interface where the mechanism to 
5956 match device CIDs did not examine the entire list of available CIDs, but 
5957 instead aborted on the first non-matching CID. Andrew Patterson.
5958
5959 Fixed a regression introduced in version 20071114. The ACPI_HIDWORD macro 
5960 was 
5961 inadvertently changed to return a 16-bit value instead of a 32-bit value, 
5962 truncating the upper dword of a 64-bit value. This macro is only used to 
5963 display debug output, so no incorrect calculations were made. Also, 
5964 reimplemented the macro so that a 64-bit shift is not performed by 
5965 inefficient compilers.
5966
5967 Added missing va_end statements that should correspond with each va_start 
5968 statement.
5969
5970 Example Code and Data Size: These are the sizes for the OS-independent 
5971 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5972 debug version of the code includes the debug output trace mechanism and 
5973 has 
5974 a much larger code and data size.
5975
5976   Previous Release:
5977     Non-Debug Version:  79.5K Code, 17.2K Data,  96.7K Total
5978     Debug Version:     159.0K Code, 63.8K Data, 222.8K Total
5979   Current Release:
5980     Non-Debug Version:  79.7K Code, 17.3K Data,  97.0K Total
5981     Debug Version:     158.9K Code, 64.0K Data, 222.9K Total
5982
5983 2) iASL Compiler/Disassembler and Tools:
5984
5985 Implemented full disassembler support for the following new ACPI tables: 
5986 BERT, EINJ, and ERST. Implemented partial disassembler support for the 
5987 complicated HEST table. These tables support the Windows Hardware Error 
5988 Architecture (WHEA).
5989
5990 ----------------------------------------
5991 23 January 2008. Summary of changes for version 20080123:
5992
5993 1) ACPI CA Core Subsystem:
5994
5995 Added the 2008 copyright to all module headers and signons. This affects 
5996 virtually every file in the ACPICA core subsystem, the iASL compiler, and 
5997 the tools/utilities.
5998
5999 Fixed a problem with the SizeOf operator when used with Package and 
6000 Buffer 
6001 objects. These objects have deferred execution for some arguments, and 
6002 the 
6003 execution is now completed before the SizeOf is executed. This problem 
6004 caused 
6005 unexpected AE_PACKAGE_LIMIT errors on some systems (Lin Ming, Bob Moore) 
6006 BZ 
6007 9558
6008
6009 Implemented an enhancement to the interpreter "slack mode". In the 
6010 absence 
6011 of 
6012 an explicit return or an implicitly returned object from the last 
6013 executed 
6014 opcode, a control method will now implicitly return an integer of value 0 
6015 for 
6016 Microsoft compatibility. (Lin Ming) BZ 392
6017
6018 Fixed a problem with the Load operator where an exception was not 
6019 returned 
6020 in 
6021 the case where the table is already loaded. (Lin Ming) BZ 463
6022
6023 Implemented support for the use of DDBHandles as an Indexed Reference, as 
6024 per 
6025 the ACPI spec. (Lin Ming) BZ 486
6026
6027 Implemented support for UserTerm (Method invocation) for the Unload 
6028 operator 
6029 as per the ACPI spec. (Lin Ming) BZ 580
6030
6031 Fixed a problem with the LoadTable operator where the OemId and 
6032 OemTableId 
6033 input strings could cause unexpected failures if they were shorter than 
6034 the 
6035 maximum lengths allowed. (Lin Ming, Bob Moore) BZ 576
6036
6037 Implemented support for UserTerm (Method invocation) for the Unload 
6038 operator 
6039 as per the ACPI spec. (Lin Ming) BZ 580
6040
6041 Implemented header file support for new ACPI tables - BERT, ERST, EINJ, 
6042 HEST, 
6043 IBFT, UEFI, WDAT. Disassembler support is forthcoming.
6044
6045 Example Code and Data Size: These are the sizes for the OS-independent 
6046 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6047 debug version of the code includes the debug output trace mechanism and 
6048 has 
6049 a much larger code and data size.
6050
6051   Previous Release:
6052     Non-Debug Version:  79.3K Code, 17.2K Data,  96.5K Total
6053     Debug Version:     158.6K Code, 63.8K Data, 222.4K Total
6054   Current Release:
6055     Non-Debug Version:  79.5K Code, 17.2K Data,  96.7K Total
6056     Debug Version:     159.0K Code, 63.8K Data, 222.8K Total
6057
6058 2) iASL Compiler/Disassembler and Tools:
6059
6060 Implemented support in the disassembler for checksum validation on 
6061 incoming 
6062 binary DSDTs and SSDTs. If incorrect, a message is displayed within the 
6063 table 
6064 header dump at the start of the disassembly.
6065
6066 Implemented additional debugging information in the namespace listing 
6067 file 
6068 created during compilation. In addition to the namespace hierarchy, the 
6069 full 
6070 pathname to each namespace object is displayed.
6071
6072 Fixed a problem with the disassembler where invalid ACPI tables could 
6073 cause 
6074 faults or infinite loops.
6075
6076 Fixed an unexpected parse error when using the optional "parameter types" 
6077 list in a control method declaration. (Lin Ming) BZ 397
6078
6079 Fixed a problem where two External declarations with the same name did 
6080 not 
6081 cause an error (Lin Ming) BZ 509
6082
6083 Implemented support for full TermArgs (adding Argx, Localx and method 
6084 invocation) for the ParameterData parameter to the LoadTable operator. 
6085 (Lin 
6086 Ming) BZ 583,587
6087
6088 ----------------------------------------
6089 19 December 2007. Summary of changes for version 20071219:
6090
6091 1) ACPI CA Core Subsystem:
6092
6093 Implemented full support for deferred execution for the TermArg string 
6094 arguments for DataTableRegion. This enables forward references and full 
6095 operand resolution for the three string arguments. Similar to 
6096 OperationRegion 
6097 deferred argument execution.) Lin Ming. BZ 430
6098
6099 Implemented full argument resolution support for the BankValue argument 
6100 to 
6101 BankField. Previously, only constants were supported, now any TermArg may 
6102 be 
6103 used. Lin Ming BZ 387, 393
6104
6105 Fixed a problem with AcpiGetDevices where the search of a branch of the 
6106 device tree could be terminated prematurely. In accordance with the ACPI 
6107 specification, the search down the current branch is terminated if a 
6108 device 
6109 is both not present and not functional (instead of just not present.) 
6110 Yakui 
6111 Zhao.
6112
6113 Fixed a problem where "unknown" GPEs could be allowed to fire repeatedly 
6114 if 
6115 the underlying AML code changed the GPE enable registers. Now, any 
6116 unknown 
6117 incoming GPE (no _Lxx/_Exx method and not the EC GPE) is immediately 
6118 disabled 
6119 instead of simply ignored. Rui Zhang.
6120
6121 Fixed a problem with Index Fields where the Index register was 
6122 incorrectly 
6123 limited to a maximum of 32 bits. Now any size may be used.
6124
6125 Fixed a couple memory leaks associated with "implicit return" objects 
6126 when 
6127 the AML Interpreter slack mode is enabled. Lin Ming BZ 349
6128
6129 Example Code and Data Size: These are the sizes for the OS-independent 
6130 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6131 debug version of the code includes the debug output trace mechanism and 
6132 has 
6133 a much larger code and data size.
6134
6135   Previous Release:
6136     Non-Debug Version:  79.0K Code, 17.2K Data,  96.2K Total
6137     Debug Version:     157.9K Code, 63.6K Data, 221.5K Total
6138   Current Release:
6139     Non-Debug Version:  79.3K Code, 17.2K Data,  96.5K Total
6140     Debug Version:     158.6K Code, 63.8K Data, 222.4K Total
6141
6142 ----------------------------------------
6143 14 November 2007. Summary of changes for version 20071114:
6144
6145 1) ACPI CA Core Subsystem:
6146
6147 Implemented event counters for each of the Fixed Events, the ACPI SCI 
6148 (interrupt) itself, and control methods executed. Named 
6149 AcpiFixedEventCount[], AcpiSciCount, and AcpiMethodCount respectively. 
6150 These 
6151 should be useful for debugging and statistics.
6152
6153 Implemented a new external interface, AcpiGetStatistics, to retrieve the 
6154 contents of the various event counters. Returns the current values for 
6155 AcpiSciCount, AcpiGpeCount, the AcpiFixedEventCount array, and 
6156 AcpiMethodCount. The interface can be expanded in the future if new 
6157 counters 
6158 are added. Device drivers should use this interface rather than access 
6159 the 
6160 counters directly.
6161
6162 Fixed a problem with the FromBCD and ToBCD operators. With some 
6163 compilers, 
6164 the ShortDivide function worked incorrectly, causing problems with the 
6165 BCD 
6166 functions with large input values. A truncation from 64-bit to 32-bit 
6167 inadvertently occurred. Internal BZ 435. Lin Ming
6168
6169 Fixed a problem with Index references passed as method arguments. 
6170 References 
6171 passed as arguments to control methods were dereferenced immediately 
6172 (before 
6173 control was passed to the called method). The references are now 
6174 correctly 
6175 passed directly to the called method. BZ 5389. Lin Ming
6176
6177 Fixed a problem with CopyObject used in conjunction with the Index 
6178 operator. 
6179 The reference was incorrectly dereferenced before the copy. The reference 
6180 is 
6181 now correctly copied. BZ 5391. Lin Ming
6182
6183 Fixed a problem with Control Method references within Package objects. 
6184 These 
6185 references are now correctly generated. This completes the package 
6186 construction overhaul that began in version 20071019.
6187
6188 Example Code and Data Size: These are the sizes for the OS-independent 
6189 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6190 debug version of the code includes the debug output trace mechanism and 
6191 has 
6192 a much larger code and data size.
6193
6194   Previous Release:
6195     Non-Debug Version:  78.8K Code, 17.2K Data,  96.0K Total
6196     Debug Version:     157.2K Code, 63.4K Data, 220.6K Total
6197   Current Release:
6198     Non-Debug Version:  79.0K Code, 17.2K Data,  96.2K Total
6199     Debug Version:     157.9K Code, 63.6K Data, 221.5K Total
6200
6201
6202 2) iASL Compiler/Disassembler and Tools:
6203
6204 The AcpiExec utility now installs handlers for all of the predefined 
6205 Operation Region types. New types supported are: PCI_Config, CMOS, and 
6206 PCIBARTarget.
6207
6208 Fixed a problem with the 64-bit version of AcpiExec where the extended 
6209 (64-
6210 bit) address fields for the DSDT and FACS within the FADT were not being 
6211 used, causing truncation of the upper 32-bits of these addresses. Lin 
6212 Ming 
6213 and Bob Moore
6214
6215 ----------------------------------------
6216 19 October 2007. Summary of changes for version 20071019:
6217
6218 1) ACPI CA Core Subsystem:
6219
6220 Fixed a problem with the Alias operator when the target of the alias is a 
6221 named ASL operator that opens a new scope -- Scope, Device, 
6222 PowerResource, 
6223 Processor, and ThermalZone. In these cases, any children of the original 
6224 operator could not be accessed via the alias, potentially causing 
6225 unexpected 
6226 AE_NOT_FOUND exceptions. (BZ 9067)
6227
6228 Fixed a problem with the Package operator where all named references were 
6229 created as object references and left otherwise unresolved. According to 
6230 the 
6231 ACPI specification, a Package can only contain Data Objects or references 
6232 to 
6233 control methods. The implication is that named references to Data Objects 
6234 (Integer, Buffer, String, Package, BufferField, Field) should be resolved 
6235 immediately upon package creation. This is the approach taken with this 
6236 change. References to all other named objects (Methods, Devices, Scopes, 
6237 etc.) are all now properly created as reference objects. (BZ 5328)
6238
6239 Reverted a change to Notify handling that was introduced in version 
6240 20070508. This version changed the Notify handling from asynchronous to 
6241 fully synchronous (Device driver Notify handling with respect to the 
6242 Notify 
6243 ASL operator). It was found that this change caused more problems than it 
6244 solved and was removed by most users.
6245
6246 Fixed a problem with the Increment and Decrement operators where the type 
6247 of 
6248 the target object could be unexpectedly and incorrectly changed. (BZ 353) 
6249 Lin Ming.
6250
6251 Fixed a problem with the Load and LoadTable operators where the table 
6252 location within the namespace was ignored. Instead, the table was always 
6253 loaded into the root or current scope. Lin Ming.
6254
6255 Fixed a problem with the Load operator when loading a table from a buffer 
6256 object. The input buffer was prematurely zeroed and/or deleted. (BZ 577)
6257
6258 Fixed a problem with the Debug object where a store of a DdbHandle 
6259 reference 
6260 object to the Debug object could cause a fault.
6261
6262 Added a table checksum verification for the Load operator, in the case 
6263 where 
6264 the load is from a buffer. (BZ 578).
6265
6266 Implemented additional parameter validation for the LoadTable operator. 
6267 The 
6268 length of the input strings SignatureString, OemIdString, and OemTableId 
6269 are 
6270 now checked for maximum lengths. (BZ 582) Lin Ming.
6271
6272 Example Code and Data Size: These are the sizes for the OS-independent 
6273 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6274 debug version of the code includes the debug output trace mechanism and 
6275 has 
6276 a much larger code and data size.
6277
6278   Previous Release:
6279     Non-Debug Version:  78.5K Code, 17.1K Data,  95.6K Total
6280     Debug Version:     156.7K Code, 63.2K Data, 219.9K Total
6281   Current Release:
6282     Non-Debug Version:  78.8K Code, 17.2K Data,  96.0K Total
6283     Debug Version:     157.2K Code, 63.4K Data, 220.6K Total
6284
6285
6286 2) iASL Compiler/Disassembler:
6287
6288 Fixed a problem where if a single file was specified and the file did not 
6289 exist, no error message was emitted. (Introduced with wildcard support in 
6290 version 20070917.)
6291
6292 ----------------------------------------
6293 19 September 2007. Summary of changes for version 20070919:
6294
6295 1) ACPI CA Core Subsystem:
6296
6297 Designed and implemented new external interfaces to install and remove 
6298 handlers for ACPI table-related events. Current events that are defined 
6299 are 
6300 LOAD and UNLOAD. These interfaces allow the host to track ACPI tables as 
6301 they are dynamically loaded and unloaded. See AcpiInstallTableHandler and 
6302 AcpiRemoveTableHandler. (Lin Ming and Bob Moore)
6303
6304 Fixed a problem where the use of the AcpiGbl_AllMethodsSerialized flag 
6305 (acpi_serialized option on Linux) could cause some systems to hang during 
6306 initialization. (Bob Moore) BZ 8171
6307
6308 Fixed a problem where objects of certain types (Device, ThermalZone, 
6309 Processor, PowerResource) can be not found if they are declared and 
6310 referenced from within the same control method (Lin Ming) BZ 341
6311
6312 Example Code and Data Size: These are the sizes for the OS-independent 
6313 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6314 debug version of the code includes the debug output trace mechanism and 
6315 has 
6316 a much larger code and data size.
6317
6318   Previous Release:
6319     Non-Debug Version:  78.3K Code, 17.0K Data,  95.3K Total
6320     Debug Version:     156.3K Code, 63.1K Data, 219.4K Total
6321   Current Release:
6322     Non-Debug Version:  78.5K Code, 17.1K Data,  95.6K Total
6323     Debug Version:     156.7K Code, 63.2K Data, 219.9K Total
6324
6325
6326 2) iASL Compiler/Disassembler:
6327
6328 Implemented support to allow multiple files to be compiled/disassembled 
6329 in 
6330
6331 single invocation. This includes command line wildcard support for both 
6332 the 
6333 Windows and Unix versions of the compiler. This feature simplifies the 
6334 disassembly and compilation of multiple ACPI tables in a single 
6335 directory.
6336
6337 ----------------------------------------
6338 08 May 2007. Summary of changes for version 20070508:
6339
6340 1) ACPI CA Core Subsystem:
6341
6342 Implemented a Microsoft compatibility design change for the handling of 
6343 the 
6344 Notify AML operator. Previously, notify handlers were dispatched and 
6345 executed completely asynchronously in a deferred thread. The new design 
6346 still executes the notify handlers in a different thread, but the 
6347 original 
6348 thread that executed the Notify() now waits at a synchronization point 
6349 for 
6350 the notify handler to complete. Some machines depend on a synchronous 
6351 Notify 
6352 operator in order to operate correctly.
6353
6354 Implemented support to allow Package objects to be passed as method 
6355 arguments to the external AcpiEvaluateObject interface. Previously, this 
6356 would return the AE_NOT_IMPLEMENTED exception. This feature had not been 
6357 implemented since there were no reserved control methods that required it 
6358 until recently.
6359
6360 Fixed a problem with the internal FADT conversion where ACPI 1.0 FADTs 
6361 that 
6362 contained invalid non-zero values in reserved fields could cause later 
6363 failures because these fields have meaning in later revisions of the 
6364 FADT. 
6365 For incoming ACPI 1.0 FADTs, these fields are now always zeroed. (The 
6366 fields 
6367 are: Preferred_PM_Profile, PSTATE_CNT, CST_CNT, and IAPC_BOOT_FLAGS.)
6368
6369 Fixed a problem where the Global Lock handle was not properly updated if 
6370
6371 thread that acquired the Global Lock via executing AML code then 
6372 attempted 
6373 to acquire the lock via the AcpiAcquireGlobalLock interface. Reported by 
6374 Joe 
6375 Liu.
6376
6377 Fixed a problem in AcpiEvDeleteGpeXrupt where the global interrupt list 
6378 could be corrupted if the interrupt being removed was at the head of the 
6379 list. Reported by Linn Crosetto.
6380
6381 Example Code and Data Size: These are the sizes for the OS-independent 
6382 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6383 debug version of the code includes the debug output trace mechanism and 
6384 has 
6385 a much larger code and data size.
6386
6387   Previous Release:
6388     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
6389     Debug Version:     155.9K Code, 63.1K Data, 219.0K Total
6390   Current Release:
6391     Non-Debug Version:  78.3K Code, 17.0K Data,  95.3K Total
6392     Debug Version:     156.3K Code, 63.1K Data, 219.4K Total
6393
6394 ----------------------------------------
6395 20 March 2007. Summary of changes for version 20070320:
6396
6397 1) ACPI CA Core Subsystem:
6398
6399 Implemented a change to the order of interpretation and evaluation of AML 
6400 operand objects within the AML interpreter. The interpreter now evaluates 
6401 operands in the order that they appear in the AML stream (and the 
6402 corresponding ASL code), instead of in the reverse order (after the 
6403 entire 
6404 operand list has been parsed). The previous behavior caused several 
6405 subtle 
6406 incompatibilities with the Microsoft AML interpreter as well as being 
6407 somewhat non-intuitive. BZ 7871, local BZ 263. Valery Podrezov.
6408
6409 Implemented a change to the ACPI Global Lock support. All interfaces to 
6410 the 
6411 global lock now allow the same thread to acquire the lock multiple times. 
6412 This affects the AcpiAcquireGlobalLock external interface to the global 
6413 lock 
6414 as well as the internal use of the global lock to support AML fields -- a 
6415 control method that is holding the global lock can now simultaneously 
6416 access 
6417 AML fields that require global lock protection. Previously, in both 
6418 cases, 
6419 this would have resulted in an AE_ALREADY_ACQUIRED exception. The change 
6420 to 
6421 AcpiAcquireGlobalLock is of special interest to drivers for the Embedded 
6422 Controller. There is no change to the behavior of the AML Acquire 
6423 operator, 
6424 as this can already be used to acquire a mutex multiple times by the same 
6425 thread. BZ 8066. With assistance from Alexey Starikovskiy.
6426
6427 Fixed a problem where invalid objects could be referenced in the AML 
6428 Interpreter after error conditions. During operand evaluation, ensure 
6429 that 
6430 the internal "Return Object" field is cleared on error and only valid 
6431 pointers are stored there. Caused occasional access to deleted objects 
6432 that 
6433 resulted in "large reference count" warning messages. Valery Podrezov.
6434
6435 Fixed a problem where an AE_STACK_OVERFLOW internal exception could occur 
6436 on 
6437 deeply nested control method invocations. BZ 7873, local BZ 487. Valery 
6438 Podrezov.
6439
6440 Fixed an internal problem with the handling of result objects on the 
6441 interpreter result stack. BZ 7872. Valery Podrezov.
6442
6443 Removed obsolete code that handled the case where AML_NAME_OP is the 
6444 target 
6445 of a reference (Reference.Opcode). This code was no longer necessary. BZ 
6446 7874. Valery Podrezov.
6447
6448 Removed obsolete ACPI_NO_INTEGER64_SUPPORT from two header files. This 
6449 was 
6450
6451 remnant from the previously discontinued 16-bit support.
6452
6453 Example Code and Data Size: These are the sizes for the OS-independent 
6454 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6455 debug version of the code includes the debug output trace mechanism and 
6456 has 
6457 a much larger code and data size.
6458
6459   Previous Release:
6460     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
6461     Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
6462   Current Release:
6463     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
6464     Debug Version:     155.9K Code, 63.1K Data, 219.0K Total
6465
6466 ----------------------------------------
6467 26 January 2007. Summary of changes for version 20070126:
6468
6469 1) ACPI CA Core Subsystem:
6470
6471 Added the 2007 copyright to all module headers and signons. This affects 
6472 virtually every file in the ACPICA core subsystem, the iASL compiler, and 
6473 the utilities.
6474
6475 Implemented a fix for an incorrect parameter passed to AcpiTbDeleteTable 
6476 during a table load. A bad pointer was passed in the case where the DSDT 
6477 is 
6478 overridden, causing a fault in this case.
6479
6480 Example Code and Data Size: These are the sizes for the OS-independent 
6481 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6482 debug version of the code includes the debug output trace mechanism and 
6483 has 
6484 a much larger code and data size.
6485
6486   Previous Release:
6487     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
6488     Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
6489   Current Release:
6490     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
6491     Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
6492
6493 ----------------------------------------
6494 15 December 2006. Summary of changes for version 20061215:
6495
6496 1) ACPI CA Core Subsystem:
6497
6498 Support for 16-bit ACPICA has been completely removed since it is no 
6499 longer 
6500 necessary and it clutters the code. All 16-bit macros, types, and 
6501 conditional compiles have been removed, cleaning up and simplifying the 
6502 code 
6503 across the entire subsystem. DOS support is no longer needed since the 
6504 bootable Linux firmware kit is now available.
6505
6506 The handler for the Global Lock is now removed during AcpiTerminate to 
6507 enable a clean subsystem restart, via the implementation of the 
6508 AcpiEvRemoveGlobalLockHandler function. (With assistance from Joel Bretz, 
6509 HP)
6510
6511 Implemented enhancements to the multithreading support within the 
6512 debugger 
6513 to enable improved multithreading debugging and evaluation of the 
6514 subsystem. 
6515 (Valery Podrezov)
6516
6517 Debugger: Enhanced the Statistics/Memory command to emit the total 
6518 (maximum) 
6519 memory used during the execution, as well as the maximum memory consumed 
6520 by 
6521 each of the various object types. (Valery Podrezov)
6522
6523 Example Code and Data Size: These are the sizes for the OS-independent 
6524 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6525 debug version of the code includes the debug output trace mechanism and 
6526 has 
6527 a much larger code and data size.
6528
6529   Previous Release:
6530     Non-Debug Version:  77.9K Code, 17.0K Data,  94.9K Total
6531     Debug Version:     155.2K Code, 63.1K Data, 218.3K Total
6532   Current Release:
6533     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
6534     Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
6535
6536
6537 2) iASL Compiler/Disassembler and Tools:
6538
6539 AcpiExec: Implemented a new option (-m) to display full memory use 
6540 statistics upon subsystem/program termination. (Valery Podrezov)
6541
6542 ----------------------------------------
6543 09 November 2006. Summary of changes for version 20061109:
6544
6545 1) ACPI CA Core Subsystem:
6546
6547 Optimized the Load ASL operator in the case where the source operand is 
6548 an 
6549 operation region. Simply map the operation region memory, instead of 
6550 performing a bytewise read. (Region must be of type SystemMemory, see 
6551 below.)
6552
6553 Fixed the Load ASL operator for the case where the source operand is a 
6554 region field. A buffer object is also allowed as the source operand. BZ 
6555 480
6556
6557 Fixed a problem where the Load ASL operator allowed the source operand to 
6558 be 
6559 an operation region of any type. It is now restricted to regions of type 
6560 SystemMemory, as per the ACPI specification. BZ 481
6561
6562 Additional cleanup and optimizations for the new Table Manager code.
6563
6564 AcpiEnable will now fail if all of the required ACPI tables are not 
6565 loaded 
6566 (FADT, FACS, DSDT). BZ 477
6567
6568 Added #pragma pack(8/4) to acobject.h to ensure that the structures in 
6569 this 
6570 header are always compiled as aligned. The ACPI_OPERAND_OBJECT has been 
6571 manually optimized to be aligned and will not work if it is byte-packed. 
6572
6573 Example Code and Data Size: These are the sizes for the OS-independent 
6574 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6575 debug version of the code includes the debug output trace mechanism and 
6576 has 
6577 a much larger code and data size.
6578
6579   Previous Release:
6580     Non-Debug Version:  78.1K Code, 17.1K Data,  95.2K Total
6581     Debug Version:     155.4K Code, 63.1K Data, 218.5K Total
6582   Current Release:
6583     Non-Debug Version:  77.9K Code, 17.0K Data,  94.9K Total
6584     Debug Version:     155.2K Code, 63.1K Data, 218.3K Total
6585
6586
6587 2) iASL Compiler/Disassembler and Tools:
6588
6589 Fixed a problem where the presence of the _OSI predefined control method 
6590 within complex expressions could cause an internal compiler error.
6591
6592 AcpiExec: Implemented full region support for multiple address spaces. 
6593 SpaceId is now part of the REGION object. BZ 429
6594
6595 ----------------------------------------
6596 11 October 2006. Summary of changes for version 20061011:
6597
6598 1) ACPI CA Core Subsystem:
6599
6600 Completed an AML interpreter performance enhancement for control method 
6601 execution. Previously a 2-pass parse/execution, control methods are now 
6602 completely parsed and executed in a single pass. This improves overall 
6603 interpreter performance by ~25%, reduces code size, and reduces CPU stack 
6604 use. (Valery Podrezov + interpreter changes in version 20051202 that 
6605 eliminated namespace loading during the pass one parse.)
6606
6607 Implemented _CID support for PCI Root Bridge detection. If the _HID does 
6608 not 
6609 match the predefined PCI Root Bridge IDs, the _CID list (if present) is 
6610 now 
6611 obtained and also checked for an ID match.
6612
6613 Implemented additional support for the PCI _ADR execution: upsearch until 
6614
6615 device scope is found before executing _ADR. This allows PCI_Config 
6616 operation regions to be declared locally within control methods 
6617 underneath 
6618 PCI device objects.
6619
6620 Fixed a problem with a possible race condition between threads executing 
6621 AcpiWalkNamespace and the AML interpreter. This condition was removed by 
6622 modifying AcpiWalkNamespace to (by default) ignore all temporary 
6623 namespace 
6624 entries created during any concurrent control method execution. An 
6625 additional namespace race condition is known to exist between 
6626 AcpiWalkNamespace and the Load/Unload ASL operators and is still under 
6627 investigation.
6628
6629 Restructured the AML ParseLoop function, breaking it into several 
6630 subfunctions in order to reduce CPU stack use and improve 
6631 maintainability. 
6632 (Mikhail Kouzmich)
6633
6634 AcpiGetHandle: Fix for parameter validation to detect invalid 
6635 combinations 
6636 of prefix handle and pathname. BZ 478
6637
6638 Example Code and Data Size: These are the sizes for the OS-independent 
6639 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6640 debug version of the code includes the debug output trace mechanism and 
6641 has 
6642 a much larger code and data size.
6643
6644   Previous Release:
6645     Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
6646     Debug Version:     154.6K Code, 63.0K Data, 217.6K Total
6647   Current Release:
6648     Non-Debug Version:  78.1K Code, 17.1K Data,  95.2K Total
6649     Debug Version:     155.4K Code, 63.1K Data, 218.5K Total
6650
6651 2) iASL Compiler/Disassembler and Tools:
6652
6653 Ported the -g option (get local ACPI tables) to the new ACPICA Table 
6654 Manager 
6655 to restore original behavior.
6656
6657 ----------------------------------------
6658 27 September 2006. Summary of changes for version 20060927:
6659
6660 1) ACPI CA Core Subsystem:
6661
6662 Removed the "Flags" parameter from AcpiGetRegister and AcpiSetRegister. 
6663 These functions now use a spinlock for mutual exclusion and the interrupt 
6664 level indication flag is not needed.
6665
6666 Fixed a problem with the Global Lock where the lock could appear to be 
6667 obtained before it is actually obtained. The global lock semaphore was 
6668 inadvertently created with one unit instead of zero units. (BZ 464) 
6669 Fiodor 
6670 Suietov.
6671
6672 Fixed a possible memory leak and fault in AcpiExResolveObjectToValue 
6673 during 
6674 a read from a buffer or region field. (BZ 458) Fiodor Suietov.
6675
6676 Example Code and Data Size: These are the sizes for the OS-independent 
6677 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6678 debug version of the code includes the debug output trace mechanism and 
6679 has 
6680 a much larger code and data size.
6681
6682   Previous Release:
6683     Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
6684     Debug Version:     154.7K Code, 63.0K Data, 217.7K Total
6685   Current Release:
6686     Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
6687     Debug Version:     154.6K Code, 63.0K Data, 217.6K Total
6688
6689
6690 2) iASL Compiler/Disassembler and Tools:
6691
6692 Fixed a compilation problem with the pre-defined Resource Descriptor 
6693 field 
6694 names where an "object does not exist" error could be incorrectly 
6695 generated 
6696 if the parent ResourceTemplate pathname places the template within a 
6697 different namespace scope than the current scope. (BZ 7212)
6698
6699 Fixed a problem where the compiler could hang after syntax errors 
6700 detected 
6701 in an ElseIf construct. (BZ 453)
6702
6703 Fixed a problem with the AmlFilename parameter to the DefinitionBlock() 
6704 operator. An incorrect output filename was produced when this parameter 
6705 was 
6706 a null string (""). Now, the original input filename is used as the AML 
6707 output filename, with an ".aml" extension.
6708
6709 Implemented a generic batch command mode for the AcpiExec utility 
6710 (execute 
6711 any AML debugger command) (Valery Podrezov).
6712
6713 ----------------------------------------
6714 12 September 2006. Summary of changes for version 20060912:
6715
6716 1) ACPI CA Core Subsystem:
6717
6718 Enhanced the implementation of the "serialized mode" of the interpreter 
6719 (enabled via the AcpiGbl_AllMethodsSerialized flag.) When this mode is 
6720 specified, instead of creating a serialization semaphore per control 
6721 method, 
6722 the interpreter lock is simply no longer released before a blocking 
6723 operation during control method execution. This effectively makes the AML 
6724 Interpreter single-threaded. The overhead of a semaphore per-method is 
6725 eliminated.
6726
6727 Fixed a regression where an error was no longer emitted if a control 
6728 method 
6729 attempts to create 2 objects of the same name. This once again returns 
6730 AE_ALREADY_EXISTS. When this exception occurs, it invokes the mechanism 
6731 that 
6732 will dynamically serialize the control method to possible prevent future 
6733 errors. (BZ 440)
6734
6735 Integrated a fix for a problem with PCI Express HID detection in the PCI 
6736 Config Space setup procedure. (BZ 7145)
6737
6738 Moved all FADT-related functions to a new file, tbfadt.c. Eliminated the 
6739 AcpiHwInitialize function - the FADT registers are now validated when the 
6740 table is loaded.
6741
6742 Added two new warnings during FADT verification - 1) if the FADT is 
6743 larger 
6744 than the largest known FADT version, and 2) if there is a mismatch 
6745 between 
6746
6747 32-bit block address and the 64-bit X counterpart (when both are non-
6748 zero.)
6749
6750 Example Code and Data Size: These are the sizes for the OS-independent 
6751 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6752 debug version of the code includes the debug output trace mechanism and 
6753 has 
6754 a much larger code and data size.
6755
6756   Previous Release:
6757     Non-Debug Version:  77.9K Code, 16.7K Data,  94.6K Total
6758     Debug Version:     154.9K Code, 62.6K Data, 217.5K Total
6759   Current Release:
6760     Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
6761     Debug Version:     154.7K Code, 63.0K Data, 217.7K Total
6762
6763
6764 2) iASL Compiler/Disassembler and Tools:
6765
6766 Fixed a problem with the implementation of the Switch() operator where 
6767 the 
6768 temporary variable was declared too close to the actual Switch, instead 
6769 of 
6770 at method level. This could cause a problem if the Switch() operator is 
6771 within a while loop, causing an error on the second iteration. (BZ 460)
6772
6773 Disassembler - fix for error emitted for unknown type for target of scope 
6774 operator. Now, ignore it and continue.
6775
6776 Disassembly of an FADT now verifies the input FADT and reports any errors 
6777 found. Fix for proper disassembly of full-sized (ACPI 2.0) FADTs.
6778
6779 Disassembly of raw data buffers with byte initialization data now 
6780 prefixes 
6781 each output line with the current buffer offset.
6782
6783 Disassembly of ASF! table now includes all variable-length data fields at 
6784 the end of some of the subtables.
6785
6786 The disassembler now emits a comment if a buffer appears to be a 
6787 ResourceTemplate, but cannot be disassembled as such because the EndTag 
6788 does 
6789 not appear at the very end of the buffer.
6790
6791 AcpiExec - Added the "-t" command line option to enable the serialized 
6792 mode 
6793 of the AML interpreter.
6794
6795 ----------------------------------------
6796 31 August 2006. Summary of changes for version 20060831:
6797
6798 1) ACPI CA Core Subsystem:
6799
6800 Miscellaneous fixes for the Table Manager:
6801 - Correctly initialize internal common FADT for all 64-bit "X" fields
6802 - Fixed a couple table mapping issues during table load
6803 - Fixed a couple alignment issues for IA64
6804 - Initialize input array to zero in AcpiInitializeTables
6805 - Additional parameter validation for AcpiGetTable, AcpiGetTableHeader, 
6806 AcpiGetTableByIndex
6807
6808 Change for GPE support: when a "wake" GPE is received, all wake GPEs are 
6809 now 
6810 immediately disabled to prevent the waking GPE from firing again and to 
6811 prevent other wake GPEs from interrupting the wake process.
6812
6813 Added the AcpiGpeCount global that tracks the number of processed GPEs, 
6814 to 
6815 be used for debugging systems with a large number of ACPI interrupts.
6816
6817 Implemented support for the "DMAR" ACPI table (DMA Redirection Table) in 
6818 both the ACPICA headers and the disassembler.
6819
6820 Example Code and Data Size: These are the sizes for the OS-independent 
6821 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6822 debug version of the code includes the debug output trace mechanism and 
6823 has 
6824 a much larger code and data size.
6825
6826   Previous Release:
6827     Non-Debug Version:  77.8K Code, 16.5K Data,  94.3K Total
6828     Debug Version:     154.6K Code, 62.3K Data, 216.9K Total
6829   Current Release:
6830     Non-Debug Version:  77.9K Code, 16.7K Data,  94.6K Total
6831     Debug Version:     154.9K Code, 62.6K Data, 217.5K Total
6832
6833
6834 2) iASL Compiler/Disassembler and Tools:
6835
6836 Disassembler support for the DMAR ACPI table.
6837
6838 ----------------------------------------
6839 23 August 2006. Summary of changes for version 20060823:
6840
6841 1) ACPI CA Core Subsystem:
6842
6843 The Table Manager component has been completely redesigned and 
6844 reimplemented. The new design is much simpler, and reduces the overall 
6845 code 
6846 and data size of the kernel-resident ACPICA by approximately 5%. Also, it 
6847 is 
6848 now possible to obtain the ACPI tables very early during kernel 
6849 initialization, even before dynamic memory management is initialized. 
6850 (Alexey Starikovskiy, Fiodor Suietov, Bob Moore)
6851
6852 Obsolete ACPICA interfaces:
6853
6854 - AcpiGetFirmwareTable: Use AcpiGetTable instead (works at early kernel 
6855 init 
6856 time).
6857 - AcpiLoadTable: Not needed.
6858 - AcpiUnloadTable: Not needed.
6859
6860 New ACPICA interfaces:
6861
6862 - AcpiInitializeTables: Must be called before the table manager can be 
6863 used.
6864 - AcpiReallocateRootTable: Used to transfer the root table to dynamically 
6865 allocated memory after it becomes available.
6866 - AcpiGetTableByIndex: Allows the host to easily enumerate all ACPI 
6867 tables 
6868 in the RSDT/XSDT.
6869
6870 Other ACPICA changes:
6871
6872 - AcpiGetTableHeader returns the actual mapped table header, not a copy. 
6873 Use 
6874 AcpiOsUnmapMemory to free this mapping.
6875 - AcpiGetTable returns the actual mapped table. The mapping is managed 
6876 internally and must not be deleted by the caller. Use of this interface 
6877 causes no additional dynamic memory allocation.
6878 - AcpiFindRootPointer: Support for physical addressing has been 
6879 eliminated, 
6880 it appeared to be unused.
6881 - The interface to AcpiOsMapMemory has changed to be consistent with the 
6882 other allocation interfaces.
6883 - The interface to AcpiOsGetRootPointer has changed to eliminate 
6884 unnecessary 
6885 parameters.
6886 - ACPI_PHYSICAL_ADDRESS is now 32 bits on 32-bit platforms, 64 bits on 
6887 64-
6888 bit platforms. Was previously 64 bits on all platforms.
6889 - The interface to the ACPI Global Lock acquire/release macros have 
6890 changed 
6891 slightly since ACPICA no longer keeps a local copy of the FACS with a 
6892 constructed pointer to the actual global lock.
6893
6894 Porting to the new table manager:
6895
6896 - AcpiInitializeTables: Must be called once, and can be called anytime 
6897 during the OS initialization process. It allows the host to specify an 
6898 area 
6899 of memory to be used to store the internal version of the RSDT/XSDT (root 
6900 table). This allows the host to access ACPI tables before memory 
6901 management 
6902 is initialized and running.
6903 - AcpiReallocateRootTable: Can be called after memory management is 
6904 running 
6905 to copy the root table to a dynamically allocated array, freeing up the 
6906 scratch memory specified in the call to AcpiInitializeTables.
6907 - AcpiSubsystemInitialize: This existing interface is independent of the 
6908 Table Manager, and does not have to be called before the Table Manager 
6909 can 
6910 be used, it only must be called before the rest of ACPICA can be used.
6911 - ACPI Tables: Some changes have been made to the names and structure of 
6912 the 
6913 actbl.h and actbl1.h header files and may require changes to existing 
6914 code. 
6915 For example, bitfields have been completely removed because of their lack 
6916 of 
6917 portability across C compilers.
6918 - Update interfaces to the Global Lock acquire/release macros if local 
6919 versions are used. (see acwin.h)
6920
6921 Obsolete files: tbconvrt.c, tbget.c, tbgetall.c, tbrsdt.c
6922
6923 New files: tbfind.c
6924
6925 Example Code and Data Size: These are the sizes for the OS-independent 
6926 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6927 debug version of the code includes the debug output trace mechanism and 
6928 has 
6929 a much larger code and data size.
6930
6931   Previous Release:
6932     Non-Debug Version:  80.7K Code, 17.9K Data,  98.6K Total
6933     Debug Version:     161.0K Code, 65.1K Data, 226.1K Total
6934   Current Release:
6935     Non-Debug Version:  77.8K Code, 16.5K Data,  94.3K Total
6936     Debug Version:     154.6K Code, 62.3K Data, 216.9K Total
6937
6938
6939 2) iASL Compiler/Disassembler and Tools:
6940
6941 No changes for this release.
6942
6943 ----------------------------------------
6944 21 July 2006. Summary of changes for version 20060721:
6945
6946 1) ACPI CA Core Subsystem:
6947
6948 The full source code for the ASL test suite used to validate the iASL 
6949 compiler and the ACPICA core subsystem is being released with the ACPICA 
6950 source for the first time. The source is contained in a separate package 
6951 and 
6952 consists of over 1100 files that exercise all ASL/AML operators. The 
6953 package 
6954 should appear on the Intel/ACPI web site shortly. (Valery Podrezov, 
6955 Fiodor 
6956 Suietov)
6957
6958 Completed a new design and implementation for support of the ACPI Global 
6959 Lock. On the OS side, the global lock is now treated as a standard AML 
6960 mutex. Previously, multiple OS threads could "acquire" the global lock 
6961 simultaneously. However, this could cause the BIOS to be starved out of 
6962 the 
6963 lock - especially in cases such as the Embedded Controller driver where 
6964 there is a tight coupling between the OS and the BIOS.
6965
6966 Implemented an optimization for the ACPI Global Lock interrupt mechanism. 
6967 The Global Lock interrupt handler no longer queues the execution of a 
6968 separate thread to signal the global lock semaphore. Instead, the 
6969 semaphore 
6970 is signaled directly from the interrupt handler.
6971
6972 Implemented support within the AML interpreter for package objects that 
6973 contain a larger AML length (package list length) than the package 
6974 element 
6975 count. In this case, the length of the package is truncated to match the 
6976 package element count. Some BIOS code apparently modifies the package 
6977 length 
6978 on the fly, and this change supports this behavior. Provides 
6979 compatibility 
6980 with the MS AML interpreter. (With assistance from Fiodor Suietov)
6981
6982 Implemented a temporary fix for the BankValue parameter of a Bank Field 
6983 to 
6984 support all constant values, now including the Zero and One opcodes. 
6985 Evaluation of this parameter must eventually be converted to a full 
6986 TermArg 
6987 evaluation. A not-implemented error is now returned (temporarily) for 
6988 non-
6989 constant values for this parameter.
6990
6991 Fixed problem reports (Fiodor Suietov) integrated:
6992 - Fix for premature object deletion after CopyObject on Operation Region 
6993 (BZ 
6994 350)
6995
6996 Example Code and Data Size: These are the sizes for the OS-independent 
6997 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6998 debug version of the code includes the debug output trace mechanism and 
6999 has 
7000 a much larger code and data size.
7001
7002   Previous Release:
7003     Non-Debug Version:  80.7K Code, 18.0K Data,  98.7K Total
7004     Debug Version:     160.9K Code, 65.1K Data, 226.0K Total
7005   Current Release:
7006     Non-Debug Version:  80.7K Code, 17.9K Data,  98.6K Total
7007     Debug Version:     161.0K Code, 65.1K Data, 226.1K Total
7008
7009
7010 2) iASL Compiler/Disassembler and Tools:
7011
7012 No changes for this release.
7013
7014 ----------------------------------------
7015 07 July 2006. Summary of changes for version 20060707:
7016
7017 1) ACPI CA Core Subsystem:
7018
7019 Added the ACPI_PACKED_POINTERS_NOT_SUPPORTED macro to support C compilers 
7020 that do not allow the initialization of address pointers within packed 
7021 structures - even though the hardware itself may support misaligned 
7022 transfers. Some of the debug data structures are packed by default to 
7023 minimize size.
7024
7025 Added an error message for the case where AcpiOsGetThreadId() returns 
7026 zero. 
7027 A non-zero value is required by the core ACPICA code to ensure the proper 
7028 operation of AML mutexes and recursive control methods.
7029
7030 The DSDT is now the only ACPI table that determines whether the AML 
7031 interpreter is in 32-bit or 64-bit mode. Not really a functional change, 
7032 but 
7033 the hooks for per-table 32/64 switching have been removed from the code. 
7034
7035 clarification to the ACPI specification is forthcoming in ACPI 3.0B.
7036
7037 Fixed a possible leak of an OwnerID in the error path of 
7038 AcpiTbInitTableDescriptor (tbinstal.c), and migrated all table OwnerID 
7039 deletion to a single place in AcpiTbUninstallTable to correct possible 
7040 leaks 
7041 when using the AcpiTbDeleteTablesByType interface (with assistance from 
7042 Lance Ortiz.)
7043
7044 Fixed a problem with Serialized control methods where the semaphore 
7045 associated with the method could be over-signaled after multiple method 
7046 invocations.
7047
7048 Fixed two issues with the locking of the internal namespace data 
7049 structure. 
7050 Both the Unload() operator and AcpiUnloadTable interface now lock the 
7051 namespace during the namespace deletion associated with the table unload 
7052 (with assistance from Linn Crosetto.)
7053
7054 Fixed problem reports (Valery Podrezov) integrated:
7055 - Eliminate unnecessary memory allocation for CreateXxxxField (BZ 5426)
7056
7057 Fixed problem reports (Fiodor Suietov) integrated:
7058 - Incomplete cleanup branches in AcpiTbGetTableRsdt (BZ 369)
7059 - On Address Space handler deletion, needless deactivation call (BZ 374)
7060 - AcpiRemoveAddressSpaceHandler: validate Device handle parameter (BZ 
7061 375)
7062 - Possible memory leak, Notify sub-objects of Processor, Power, 
7063 ThermalZone 
7064 (BZ 376)
7065 - AcpiRemoveAddressSpaceHandler: validate Handler parameter (BZ 378)
7066 - Minimum Length of RSDT should be validated (BZ 379)
7067 - AcpiRemoveNotifyHandler: return AE_NOT_EXIST if Processor Obj has no 
7068 Handler (BZ (380)
7069 - AcpiUnloadTable: return AE_NOT_EXIST if no table of specified type 
7070 loaded 
7071 (BZ 381)
7072
7073 Example Code and Data Size: These are the sizes for the OS-independent 
7074 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
7075 debug version of the code includes the debug output trace mechanism and 
7076 has 
7077 a much larger code and data size.
7078
7079   Previous Release:
7080     Non-Debug Version:  80.5K Code, 17.8K Data,  98.3K Total
7081     Debug Version:     160.8K Code, 64.8K Data, 225.6K Total
7082   Current Release:
7083     Non-Debug Version:  80.7K Code, 17.9K Data,  98.6K Total
7084     Debug Version:     161.0K Code, 65.1K Data, 226.1K Total
7085
7086
7087 2) iASL Compiler/Disassembler and Tools:
7088
7089 Fixed problem reports:
7090 Compiler segfault when ASL contains a long (>1024) String declaration (BZ 
7091 436)
7092
7093 ----------------------------------------
7094 23 June 2006. Summary of changes for version 20060623:
7095
7096 1) ACPI CA Core Subsystem:
7097
7098 Implemented a new ACPI_SPINLOCK type for the OSL lock interfaces. This 
7099 allows the type to be customized to the host OS for improved efficiency 
7100 (since a spinlock is usually a very small object.)
7101
7102 Implemented support for "ignored" bits in the ACPI registers. According 
7103 to 
7104 the ACPI specification, these bits should be preserved when writing the 
7105 registers via a read/modify/write cycle. There are 3 bits preserved in 
7106 this 
7107 manner: PM1_CONTROL[0] (SCI_EN), PM1_CONTROL[9], and PM1_STATUS[11].
7108
7109 Implemented the initial deployment of new OSL mutex interfaces. Since 
7110 some 
7111 host operating systems have separate mutex and semaphore objects, this 
7112 feature was requested. The base code now uses mutexes (and the new mutex 
7113 interfaces) wherever a binary semaphore was used previously. However, for 
7114 the current release, the mutex interfaces are defined as macros to map 
7115 them 
7116 to the existing semaphore interfaces. Therefore, no OSL changes are 
7117 required 
7118 at this time. (See acpiosxf.h)
7119
7120 Fixed several problems with the support for the control method SyncLevel 
7121 parameter. The SyncLevel now works according to the ACPI specification 
7122 and 
7123 in concert with the Mutex SyncLevel parameter, since the current 
7124 SyncLevel 
7125 is a property of the executing thread. Mutual exclusion for control 
7126 methods 
7127 is now implemented with a mutex instead of a semaphore.
7128
7129 Fixed three instances of the use of the C shift operator in the bitfield 
7130 support code (exfldio.c) to avoid the use of a shift value larger than 
7131 the 
7132 target data width. The behavior of C compilers is undefined in this case 
7133 and 
7134 can cause unpredictable results, and therefore the case must be detected 
7135 and 
7136 avoided. (Fiodor Suietov)
7137
7138 Added an info message whenever an SSDT or OEM table is loaded dynamically 
7139 via the Load() or LoadTable() ASL operators. This should improve 
7140 debugging 
7141 capability since it will show exactly what tables have been loaded 
7142 (beyond 
7143 the tables present in the RSDT/XSDT.)
7144
7145 Example Code and Data Size: These are the sizes for the OS-independent 
7146 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
7147 debug version of the code includes the debug output trace mechanism and 
7148 has 
7149 a much larger code and data size.
7150
7151   Previous Release:
7152     Non-Debug Version:  80.0K Code, 17.6K Data,  97.6K Total
7153     Debug Version:     160.2K Code, 64.7K Data, 224.9K Total
7154   Current Release:
7155     Non-Debug Version:  80.5K Code, 17.8K Data,  98.3K Total
7156     Debug Version:     160.8K Code, 64.8K Data, 225.6K Total
7157
7158
7159 2) iASL Compiler/Disassembler and Tools:
7160
7161 No changes for this release.
7162
7163 ----------------------------------------
7164 08 June 2006. Summary of changes for version 20060608:
7165
7166 1) ACPI CA Core Subsystem:
7167
7168 Converted the locking mutex used for the ACPI hardware to a spinlock. 
7169 This 
7170 change should eliminate all problems caused by attempting to acquire a 
7171 semaphore at interrupt level, and it means that all ACPICA external 
7172 interfaces that directly access the ACPI hardware can be safely called 
7173 from 
7174 interrupt level. OSL code that implements the semaphore interfaces should 
7175 be 
7176 able to eliminate any workarounds for being called at interrupt level.
7177
7178 Fixed a regression introduced in 20060526 where the ACPI device 
7179 initialization could be prematurely aborted with an AE_NOT_FOUND if a 
7180 device 
7181 did not have an optional _INI method.
7182
7183 Fixed an IndexField issue where a write to the Data Register should be 
7184 limited in size to the AccessSize (width) of the IndexField itself. (BZ 
7185 433, 
7186 Fiodor Suietov)
7187
7188 Fixed problem reports (Valery Podrezov) integrated:
7189 - Allow store of ThermalZone objects to Debug object (BZ 5369/5370)
7190
7191 Fixed problem reports (Fiodor Suietov) integrated:
7192 - AcpiGetTableHeader doesn't handle multiple instances correctly (BZ 364)
7193
7194 Removed four global mutexes that were obsolete and were no longer being 
7195 used.
7196
7197 Example Code and Data Size: These are the sizes for the OS-independent 
7198 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
7199 debug version of the code includes the debug output trace mechanism and 
7200 has 
7201 a much larger code and data size.
7202
7203   Previous Release:
7204     Non-Debug Version:  80.0K Code, 17.7K Data,  97.7K Total
7205     Debug Version:     160.3K Code, 64.9K Data, 225.2K Total
7206   Current Release:
7207     Non-Debug Version:  80.0K Code, 17.6K Data,  97.6K Total
7208     Debug Version:     160.2K Code, 64.7K Data, 224.9K Total
7209
7210
7211 2) iASL Compiler/Disassembler and Tools:
7212
7213 Fixed a fault when using -g option (get tables from registry) on Windows 
7214 machines.
7215
7216 Fixed problem reports integrated:
7217 - Generate error if CreateField NumBits parameter is zero. (BZ 405)
7218 - Fault if Offset/Length in Field unit is very large (BZ 432, Fiodor 
7219 Suietov)
7220 - Global table revision override (-r) is ignored (BZ 413)
7221
7222 ----------------------------------------
7223 26 May 2006. Summary of changes for version 20060526:
7224
7225 1) ACPI CA Core Subsystem:
7226
7227 Restructured, flattened, and simplified the internal interfaces for 
7228 namespace object evaluation - resulting in smaller code, less CPU stack 
7229 use, 
7230 and fewer interfaces. (With assistance from Mikhail Kouzmich)
7231
7232 Fixed a problem with the CopyObject operator where the first parameter 
7233 was 
7234 not typed correctly for the parser, interpreter, compiler, and 
7235 disassembler. 
7236 Caused various errors and unexpected behavior.
7237
7238 Fixed a problem where a ShiftLeft or ShiftRight of more than 64 bits 
7239 produced incorrect results with some C compilers. Since the behavior of C 
7240 compilers when the shift value is larger than the datatype width is 
7241 apparently not well defined, the interpreter now detects this condition 
7242 and 
7243 simply returns zero as expected in all such cases. (BZ 395)
7244
7245 Fixed problem reports (Valery Podrezov) integrated:
7246 - Update String-to-Integer conversion to match ACPI 3.0A spec (BZ 5329)
7247 - Allow interpreter to handle nested method declarations (BZ 5361)
7248
7249 Fixed problem reports (Fiodor Suietov) integrated:
7250 - AcpiTerminate doesn't free debug memory allocation list objects (BZ 
7251 355)
7252 - After Core Subsystem shutdown, AcpiSubsystemStatus returns AE_OK (BZ 
7253 356)
7254 - AcpiOsUnmapMemory for RSDP can be invoked inconsistently (BZ 357)
7255 - Resource Manager should return AE_TYPE for non-device objects (BZ 358)
7256 - Incomplete cleanup branch in AcpiNsEvaluateRelative (BZ 359)
7257 - Use AcpiOsFree instead of ACPI_FREE in AcpiRsSetSrsMethodData (BZ 360)
7258 - Incomplete cleanup branch in AcpiPsParseAml (BZ 361)
7259 - Incomplete cleanup branch in AcpiDsDeleteWalkState (BZ 362)
7260 - AcpiGetTableHeader returns AE_NO_ACPI_TABLES until DSDT is loaded (BZ 
7261 365)
7262 - Status of the Global Initialization Handler call not used (BZ 366)
7263 - Incorrect object parameter to Global Initialization Handler (BZ 367)
7264
7265 Example Code and Data Size: These are the sizes for the OS-independent 
7266 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
7267 debug version of the code includes the debug output trace mechanism and 
7268 has 
7269 a much larger code and data size.
7270
7271   Previous Release:
7272     Non-Debug Version:  79.8K Code, 17.7K Data,  97.5K Total
7273     Debug Version:     160.5K Code, 65.1K Data, 225.6K Total
7274   Current Release:
7275     Non-Debug Version:  80.0K Code, 17.7K Data,  97.7K Total
7276     Debug Version:     160.3K Code, 64.9K Data, 225.2K Total
7277
7278
7279 2) iASL Compiler/Disassembler and Tools:
7280
7281 Modified the parser to allow the names IO, DMA, and IRQ to be used as 
7282 namespace identifiers with no collision with existing resource descriptor 
7283 macro names. This provides compatibility with other ASL compilers and is 
7284 most useful for disassembly/recompilation of existing tables without 
7285 parse 
7286 errors. (With assistance from Thomas Renninger)
7287
7288 Disassembler: fixed an incorrect disassembly problem with the 
7289 DataTableRegion and CopyObject operators. Fixed a possible fault during 
7290 disassembly of some Alias operators.
7291
7292 ----------------------------------------
7293 12 May 2006. Summary of changes for version 20060512:
7294
7295 1) ACPI CA Core Subsystem:
7296
7297 Replaced the AcpiOsQueueForExecution interface with a new interface named 
7298 AcpiOsExecute. The major difference is that the new interface does not 
7299 have 
7300 a Priority parameter, this appeared to be useless and has been replaced 
7301 by 
7302
7303 Type parameter. The Type tells the host what type of execution is being 
7304 requested, such as global lock handler, notify handler, GPE handler, etc. 
7305 This allows the host to queue and execute the request as appropriate for 
7306 the 
7307 request type, possibly using different work queues and different 
7308 priorities 
7309 for the various request types. This enables fixes for multithreading 
7310 deadlock problems such as BZ #5534, and will require changes to all 
7311 existing 
7312 OS interface layers. (Alexey Starikovskiy and Bob Moore)
7313
7314 Fixed a possible memory leak associated with the support for the so-
7315 called 
7316 "implicit return" ACPI extension. Reported by FreeBSD, BZ #6514. (Fiodor 
7317 Suietov)
7318
7319 Fixed a problem with the Load() operator where a table load from an 
7320 operation region could overwrite an internal table buffer by up to 7 
7321 bytes 
7322 and cause alignment faults on IPF systems. (With assistance from Luming 
7323 Yu)
7324
7325 Example Code and Data Size: These are the sizes for the OS-independent 
7326 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
7327 debug version of the code includes the debug output trace mechanism and 
7328 has 
7329 a much larger code and data size.
7330
7331   Previous Release:
7332     Non-Debug Version:  79.7K Code, 17.7K Data,  97.4K Total
7333     Debug Version:     160.1K Code, 65.2K Data, 225.3K Total
7334   Current Release:
7335     Non-Debug Version:  79.8K Code, 17.7K Data,  97.5K Total
7336     Debug Version:     160.5K Code, 65.1K Data, 225.6K Total
7337
7338
7339
7340 2) iASL Compiler/Disassembler and Tools:
7341
7342 Disassembler: Implemented support to cross reference the internal 
7343 namespace 
7344 and automatically generate ASL External() statements for symbols not 
7345 defined 
7346 within the current table being disassembled. This will simplify the 
7347 disassembly and recompilation of interdependent tables such as SSDTs 
7348 since 
7349 these statements will no longer have to be added manually.
7350
7351 Disassembler: Implemented experimental support to automatically detect 
7352 invocations of external control methods and generate appropriate 
7353 External() 
7354 statements. This is problematic because the AML cannot be correctly 
7355 parsed 
7356 until the number of arguments for each control method is known. 
7357 Currently, 
7358 standalone method invocations and invocations as the source operand of a 
7359 Store() statement are supported.
7360
7361 Disassembler: Implemented support for the ASL pseudo-operators LNotEqual, 
7362 LLessEqual, and LGreaterEqual. Previously disassembled as LNot(LEqual()), 
7363 LNot(LGreater()), and LNot(LLess()), this makes the disassembled ASL code 
7364 more readable and likely closer to the original ASL source.
7365
7366 ----------------------------------------
7367 21 April 2006. Summary of changes for version 20060421:
7368
7369 1) ACPI CA Core Subsystem:
7370
7371 Removed a device initialization optimization introduced in 20051216 where 
7372 the _STA method was not run unless an _INI was also present for the same 
7373 device. This optimization could cause problems because it could allow 
7374 _INI 
7375 methods to be run within a not-present device subtree. (If a not-present 
7376 device had no _INI, _STA would not be run, the not-present status would 
7377 not 
7378 be discovered, and the children of the device would be incorrectly 
7379 traversed.)
7380
7381 Implemented a new _STA optimization where namespace subtrees that do not 
7382 contain _INI are identified and ignored during device initialization. 
7383 Selectively running _STA can significantly improve boot time on large 
7384 machines (with assistance from Len Brown.)
7385
7386 Implemented support for the device initialization case where the returned 
7387 _STA flags indicate a device not-present but functioning. In this case, 
7388 _INI 
7389 is not run, but the device children are examined for presence, as per the 
7390 ACPI specification.
7391
7392 Implemented an additional change to the IndexField support in order to 
7393 conform to MS behavior. The value written to the Index Register is not 
7394 simply a byte offset, it is a byte offset in units of the access width of 
7395 the parent Index Field. (Fiodor Suietov)
7396
7397 Defined and deployed a new OSL interface, AcpiOsValidateAddress. This 
7398 interface is called during the creation of all AML operation regions, and 
7399 allows the host OS to exert control over what addresses it will allow the 
7400 AML code to access. Operation Regions whose addresses are disallowed will 
7401 cause a runtime exception when they are actually accessed (will not 
7402 affect 
7403 or abort table loading.) See oswinxf or osunixxf for an example 
7404 implementation.
7405
7406 Defined and deployed a new OSL interface, AcpiOsValidateInterface. This 
7407 interface allows the host OS to match the various "optional" 
7408 interface/behavior strings for the _OSI predefined control method as 
7409 appropriate (with assistance from Bjorn Helgaas.) See oswinxf or osunixxf 
7410 for an example implementation.
7411
7412 Restructured and corrected various problems in the exception handling 
7413 code 
7414 paths within DsCallControlMethod and DsTerminateControlMethod in dsmethod 
7415 (with assistance from Takayoshi Kochi.)
7416
7417 Modified the Linux source converter to ignore quoted string literals 
7418 while 
7419 converting identifiers from mixed to lower case. This will correct 
7420 problems 
7421 with the disassembler and other areas where such strings must not be 
7422 modified.
7423
7424 The ACPI_FUNCTION_* macros no longer require quotes around the function 
7425 name. This allows the Linux source converter to convert the names, now 
7426 that 
7427 the converter ignores quoted strings.
7428
7429 Example Code and Data Size: These are the sizes for the OS-independent 
7430 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
7431 debug version of the code includes the debug output trace mechanism and 
7432 has 
7433 a much larger code and data size.
7434
7435   Previous Release:
7436
7437     Non-Debug Version:  81.1K Code, 17.7K Data,  98.8K Total
7438     Debug Version:     158.9K Code, 64.9K Data, 223.8K Total
7439   Current Release:
7440     Non-Debug Version:  79.7K Code, 17.7K Data,  97.4K Total
7441     Debug Version:     160.1K Code, 65.2K Data, 225.3K Total
7442
7443
7444 2) iASL Compiler/Disassembler and Tools:
7445
7446 Implemented 3 new warnings for iASL, and implemented multiple warning 
7447 levels 
7448 (w2 flag).
7449
7450 1) Ignored timeouts: If the TimeoutValue parameter to Wait or Acquire is 
7451 not 
7452 WAIT_FOREVER (0xFFFF) and the code does not examine the return value to 
7453 check for the possible timeout, a warning is issued.
7454
7455 2) Useless operators: If an ASL operator does not specify an optional 
7456 target 
7457 operand and it also does not use the function return value from the 
7458 operator, a warning is issued since the operator effectively does 
7459 nothing.
7460
7461 3) Unreferenced objects: If a namespace object is created, but never 
7462 referenced, a warning is issued. This is a warning level 2 since there 
7463 are 
7464 cases where this is ok, such as when a secondary table is loaded that 
7465 uses 
7466 the unreferenced objects. Even so, care is taken to only flag objects 
7467 that 
7468 don't look like they will ever be used. For example, the reserved methods 
7469 (starting with an underscore) are usually not referenced because it is 
7470 expected that the OS will invoke them.
7471
7472 ----------------------------------------
7473 31 March 2006. Summary of changes for version 20060331:
7474
7475 1) ACPI CA Core Subsystem:
7476
7477 Implemented header file support for the following additional ACPI tables: 
7478 ASF!, BOOT, CPEP, DBGP, MCFG, SPCR, SPMI, TCPA, and WDRT. With this 
7479 support, 
7480 all current and known ACPI tables are now defined in the ACPICA headers 
7481 and 
7482 are available for use by device drivers and other software.
7483
7484 Implemented support to allow tables that contain ACPI names with invalid 
7485 characters to be loaded. Previously, this would cause the table load to 
7486 fail, but since there are several known cases of such tables on existing 
7487 machines, this change was made to enable ACPI support for them. Also, 
7488 this 
7489 matches the behavior of the Microsoft ACPI implementation.
7490
7491 Fixed a couple regressions introduced during the memory optimization in 
7492 the 
7493 20060317 release. The namespace node definition required additional 
7494 reorganization and an internal datatype that had been changed to 8-bit 
7495 was 
7496 restored to 32-bit. (Valery Podrezov)
7497
7498 Fixed a problem where a null pointer passed to AcpiUtDeleteGenericState 
7499 could be passed through to AcpiOsReleaseObject which is unexpected. Such 
7500 null pointers are now trapped and ignored, matching the behavior of the 
7501 previous implementation before the deployment of AcpiOsReleaseObject.
7502 (Valery Podrezov, Fiodor Suietov)
7503
7504 Fixed a memory mapping leak during the deletion of a SystemMemory 
7505 operation 
7506 region where a cached memory mapping was not deleted. This became a 
7507 noticeable problem for operation regions that are defined within 
7508 frequently 
7509 used control methods. (Dana Meyers)
7510
7511 Reorganized the ACPI table header files into two main files: one for the 
7512 ACPI tables consumed by the ACPICA core, and another for the 
7513 miscellaneous 
7514 ACPI tables that are consumed by the drivers and other software. The 
7515 various 
7516 FADT definitions were merged into one common section and three different 
7517 tables (ACPI 1.0, 1.0+, and 2.0)
7518
7519 Example Code and Data Size: These are the sizes for the OS-independent 
7520 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
7521 debug version of the code includes the debug output trace mechanism and 
7522 has 
7523 a much larger code and data size.
7524
7525   Previous Release:
7526     Non-Debug Version:  80.9K Code, 17.7K Data,  98.6K Total
7527     Debug Version:     158.7K Code, 64.8K Data, 223.5K Total
7528   Current Release:
7529     Non-Debug Version:  81.1K Code, 17.7K Data,  98.8K Total
7530     Debug Version:     158.9K Code, 64.9K Data, 223.8K Total
7531
7532
7533 2) iASL Compiler/Disassembler and Tools:
7534
7535 Disassembler: Implemented support to decode and format all non-AML ACPI 
7536 tables (tables other than DSDTs and SSDTs.) This includes the new tables 
7537 added to the ACPICA headers, therefore all current and known ACPI tables 
7538 are 
7539 supported.
7540
7541 Disassembler: The change to allow ACPI names with invalid characters also 
7542 enables the disassembly of such tables. Invalid characters within names 
7543 are 
7544 changed to '*' to make the name printable; the iASL compiler will still 
7545 generate an error for such names, however, since this is an invalid ACPI 
7546 character.
7547
7548 Implemented an option for AcpiXtract (-a) to extract all tables found in 
7549 the 
7550 input file. The default invocation extracts only the DSDTs and SSDTs.
7551
7552 Fixed a couple of gcc generation issues for iASL and AcpiExec and added a 
7553 makefile for the AcpiXtract utility.
7554
7555 ----------------------------------------
7556 17 March 2006. Summary of changes for version 20060317:
7557
7558 1) ACPI CA Core Subsystem:
7559
7560 Implemented the use of a cache object for all internal namespace nodes. 
7561 Since there are about 1000 static nodes in a typical system, this will 
7562 decrease memory use for cache implementations that minimize per-
7563 allocation 
7564 overhead (such as a slab allocator.)
7565
7566 Removed the reference count mechanism for internal namespace nodes, since 
7567 it 
7568 was deemed unnecessary. This reduces the size of each namespace node by 
7569 about 5%-10% on all platforms. Nodes are now 20 bytes for the 32-bit 
7570 case, 
7571 and 32 bytes for the 64-bit case.
7572
7573 Optimized several internal data structures to reduce object size on 64-
7574 bit 
7575 platforms by packing data within the 64-bit alignment. This includes the 
7576 frequently used ACPI_OPERAND_OBJECT, of which there can be ~1000 static 
7577 instances corresponding to the namespace objects.
7578
7579 Added two new strings for the predefined _OSI method: "Windows 2001.1 
7580 SP1" 
7581 and "Windows 2006".
7582
7583 Split the allocation tracking mechanism out to a separate file, from 
7584 utalloc.c to uttrack.c. This mechanism appears to be only useful for 
7585 application-level code. Kernels may wish to not include uttrack.c in 
7586 distributions.
7587
7588 Removed all remnants of the obsolete ACPI_REPORT_* macros and the 
7589 associated 
7590 code. (These macros have been replaced by the ACPI_ERROR and ACPI_WARNING 
7591 macros.)
7592
7593 Code and Data Size: These are the sizes for the acpica.lib produced by 
7594 the 
7595 Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any 
7596 ACPI 
7597 driver or OSPM code. The debug version of the code includes the debug 
7598 output 
7599 trace mechanism and has a much larger code and data size. Note that these 
7600 values will vary depending on the efficiency of the compiler and the 
7601 compiler options used during generation.
7602
7603   Previous Release:
7604     Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
7605     Debug Version:     161.6K Code, 65.7K Data, 227.3K Total
7606   Current Release:
7607     Non-Debug Version:  80.9K Code, 17.7K Data,  98.6K Total
7608     Debug Version:     158.7K Code, 64.8K Data, 223.5K Total
7609
7610
7611 2) iASL Compiler/Disassembler and Tools:
7612
7613 Implemented an ANSI C version of the acpixtract utility. This version 
7614 will 
7615 automatically extract the DSDT and all SSDTs from the input acpidump text 
7616 file and dump the binary output to separate files. It can also display a 
7617 summary of the input file including the headers for each table found and 
7618 will extract any single ACPI table, with any signature. (See 
7619 source/tools/acpixtract)
7620
7621 ----------------------------------------
7622 10 March 2006. Summary of changes for version 20060310:
7623
7624 1) ACPI CA Core Subsystem:
7625
7626 Tagged all external interfaces to the subsystem with the new 
7627 ACPI_EXPORT_SYMBOL macro. This macro can be defined as necessary to 
7628 assist 
7629 kernel integration. For Linux, the macro resolves to the EXPORT_SYMBOL 
7630 macro. The default definition is NULL.
7631
7632 Added the ACPI_THREAD_ID type for the return value from 
7633 AcpiOsGetThreadId. 
7634 This allows the host to define this as necessary to simplify kernel 
7635 integration. The default definition is ACPI_NATIVE_UINT.
7636
7637 Fixed two interpreter problems related to error processing, the deletion 
7638 of 
7639 objects, and placing invalid pointers onto the internal operator result 
7640 stack. BZ 6028, 6151 (Valery Podrezov)
7641
7642 Increased the reference count threshold where a warning is emitted for 
7643 large 
7644 reference counts in order to eliminate unnecessary warnings on systems 
7645 with 
7646 large namespaces (especially 64-bit.) Increased the value from 0x400 to 
7647 0x800.
7648
7649 Due to universal disagreement as to the meaning of the 'c' in the 
7650 calloc() 
7651 function, the ACPI_MEM_CALLOCATE macro has been renamed to 
7652 ACPI_ALLOCATE_ZEROED so that the purpose of the interface is 'clear'. 
7653 ACPI_MEM_ALLOCATE and ACPI_MEM_FREE are renamed to ACPI_ALLOCATE and 
7654 ACPI_FREE.
7655
7656 Code and Data Size: These are the sizes for the acpica.lib produced by 
7657 the 
7658 Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any 
7659 ACPI 
7660 driver or OSPM code. The debug version of the code includes the debug 
7661 output 
7662 trace mechanism and has a much larger code and data size. Note that these 
7663 values will vary depending on the efficiency of the compiler and the 
7664 compiler options used during generation.
7665
7666   Previous Release:
7667     Non-Debug Version:  81.0K Code, 17.8K Data,  98.8K Total
7668     Debug Version:     161.4K Code, 65.7K Data, 227.1K Total
7669   Current Release:
7670     Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
7671     Debug Version:     161.6K Code, 65.7K Data, 227.3K Total
7672
7673
7674 2) iASL Compiler/Disassembler:
7675
7676 Disassembler: implemented support for symbolic resource descriptor 
7677 references. If a CreateXxxxField operator references a fixed offset 
7678 within 
7679
7680 resource descriptor, a name is assigned to the descriptor and the offset 
7681 is 
7682 translated to the appropriate resource tag and pathname. The addition of 
7683 this support brings the disassembled code very close to the original ASL 
7684 source code and helps eliminate run-time errors when the disassembled 
7685 code 
7686 is modified (and recompiled) in such a way as to invalidate the original 
7687 fixed offsets.
7688
7689 Implemented support for a Descriptor Name as the last parameter to the 
7690 ASL 
7691 Register() macro. This parameter was inadvertently left out of the ACPI 
7692 specification, and will be added for ACPI 3.0b.
7693
7694 Fixed a problem where the use of the "_OSI" string (versus the full path 
7695 "\_OSI") caused an internal compiler error. ("No back ptr to op")
7696
7697 Fixed a problem with the error message that occurs when an invalid string 
7698 is 
7699 used for a _HID object (such as one with an embedded asterisk: 
7700 "*PNP010A".) 
7701 The correct message is now displayed.
7702
7703 ----------------------------------------
7704 17 February 2006. Summary of changes for version 20060217:
7705
7706 1) ACPI CA Core Subsystem:
7707
7708 Implemented a change to the IndexField support to match the behavior of 
7709 the 
7710 Microsoft AML interpreter. The value written to the Index register is now 
7711
7712 byte offset, no longer an index based upon the width of the Data 
7713 register. 
7714 This should fix IndexField problems seen on some machines where the Data 
7715 register is not exactly one byte wide. The ACPI specification will be 
7716 clarified on this point.
7717
7718 Fixed a problem where several resource descriptor types could overrun the 
7719 internal descriptor buffer due to size miscalculation: VendorShort, 
7720 VendorLong, and Interrupt. This was noticed on IA64 machines, but could 
7721 affect all platforms.
7722
7723 Fixed a problem where individual resource descriptors were misaligned 
7724 within 
7725 the internal buffer, causing alignment faults on IA64 platforms.
7726
7727 Code and Data Size: These are the sizes for the acpica.lib produced by 
7728 the 
7729 Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any 
7730 ACPI 
7731 driver or OSPM code. The debug version of the code includes the debug 
7732 output 
7733 trace mechanism and has a much larger code and data size. Note that these 
7734 values will vary depending on the efficiency of the compiler and the 
7735 compiler options used during generation.
7736
7737   Previous Release:
7738     Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
7739     Debug Version:     161.3K Code, 65.6K Data, 226.9K Total
7740   Current Release:
7741     Non-Debug Version:  81.0K Code, 17.8K Data,  98.8K Total
7742     Debug Version:     161.4K Code, 65.7K Data, 227.1K Total
7743
7744
7745 2) iASL Compiler/Disassembler:
7746
7747 Implemented support for new reserved names: _WDG and _WED are Microsoft 
7748 extensions for Windows Instrumentation Management, _TDL is a new ACPI-
7749 defined method (Throttling Depth Limit.)
7750
7751 Fixed a problem where a zero-length VendorShort or VendorLong resource 
7752 descriptor was incorrectly emitted as a descriptor of length one.
7753
7754 ----------------------------------------
7755 10 February 2006. Summary of changes for version 20060210:
7756
7757 1) ACPI CA Core Subsystem:
7758
7759 Removed a couple of extraneous ACPI_ERROR messages that appeared during 
7760 normal execution. These became apparent after the conversion from 
7761 ACPI_DEBUG_PRINT.
7762
7763 Fixed a problem where the CreateField operator could hang if the BitIndex 
7764 or 
7765 NumBits parameter referred to a named object. (Valery Podrezov, BZ 5359)
7766
7767 Fixed a problem where a DeRefOf operation on a buffer object incorrectly 
7768 failed with an exception. This also fixes a couple of related RefOf and 
7769 DeRefOf issues. (Valery Podrezov, BZ 5360/5392/5387)
7770
7771 Fixed a problem where the AE_BUFFER_LIMIT exception was returned instead 
7772 of 
7773 AE_STRING_LIMIT on an out-of-bounds Index() operation. (Valery Podrezov, 
7774 BZ 
7775 5480)
7776
7777 Implemented a memory cleanup at the end of the execution of each 
7778 iteration 
7779 of an AML While() loop, preventing the accumulation of outstanding 
7780 objects. 
7781 (Valery Podrezov, BZ 5427)
7782
7783 Eliminated a chunk of duplicate code in the object resolution code. 
7784 (Valery 
7785 Podrezov, BZ 5336)
7786
7787 Fixed several warnings during the 64-bit code generation.
7788
7789 The AcpiSrc source code conversion tool now inserts one line of 
7790 whitespace 
7791 after an if() statement that is followed immediately by a comment, 
7792 improving 
7793 readability of the Linux code.
7794
7795 Code and Data Size: The current and previous library sizes for the core 
7796 subsystem are shown below. These are the code and data sizes for the 
7797 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
7798 These 
7799 values do not include any ACPI driver or OSPM code. The debug version of 
7800 the 
7801 code includes the debug output trace mechanism and has a much larger code 
7802 and data size. Note that these values will vary depending on the 
7803 efficiency 
7804 of the compiler and the compiler options used during generation.
7805
7806   Previous Release:
7807     Non-Debug Version:  81.0K Code, 17.9K Data,  98.9K Total
7808     Debug Version:     161.3K Code, 65.7K Data, 227.0K Total
7809   Current Release:
7810     Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
7811     Debug Version:     161.3K Code, 65.6K Data, 226.9K Total
7812
7813
7814 2) iASL Compiler/Disassembler:
7815
7816 Fixed a problem with the disassembly of a BankField operator with a 
7817 complex 
7818 expression for the BankValue parameter.
7819
7820 ----------------------------------------
7821 27 January 2006. Summary of changes for version 20060127:
7822
7823 1) ACPI CA Core Subsystem:
7824
7825 Implemented support in the Resource Manager to allow unresolved 
7826 namestring 
7827 references within resource package objects for the _PRT method. This 
7828 support 
7829 is in addition to the previously implemented unresolved reference support 
7830 within the AML parser. If the interpreter slack mode is enabled, these 
7831 unresolved references will be passed through to the caller as a NULL 
7832 package 
7833 entry.
7834
7835 Implemented and deployed new macros and functions for error and warning 
7836 messages across the subsystem. These macros are simpler and generate less 
7837 code than their predecessors. The new macros ACPI_ERROR, ACPI_EXCEPTION, 
7838 ACPI_WARNING, and ACPI_INFO replace the ACPI_REPORT_* macros. The older 
7839 macros remain defined to allow ACPI drivers time to migrate to the new 
7840 macros.
7841
7842 Implemented the ACPI_CPU_FLAGS type to simplify host OS integration of 
7843 the 
7844 Acquire/Release Lock OSL interfaces.
7845
7846 Fixed a problem where Alias ASL operators are sometimes not correctly 
7847 resolved, in both the interpreter and the iASL compiler.
7848
7849 Fixed several problems with the implementation of the 
7850 ConcatenateResTemplate 
7851 ASL operator. As per the ACPI specification, zero length buffers are now 
7852 treated as a single EndTag. One-length buffers always cause a fatal 
7853 exception. Non-zero length buffers that do not end with a full 2-byte 
7854 EndTag 
7855 cause a fatal exception.
7856
7857 Fixed a possible structure overwrite in the AcpiGetObjectInfo external 
7858 interface. (With assistance from Thomas Renninger)
7859
7860 Code and Data Size: The current and previous library sizes for the core 
7861 subsystem are shown below. These are the code and data sizes for the 
7862 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
7863 These 
7864 values do not include any ACPI driver or OSPM code. The debug version of 
7865 the 
7866 code includes the debug output trace mechanism and has a much larger code 
7867 and data size. Note that these values will vary depending on the 
7868 efficiency 
7869 of the compiler and the compiler options used during generation.
7870
7871   Previous Release:
7872     Non-Debug Version:  83.1K Code, 18.4K Data, 101.5K Total
7873     Debug Version:     163.2K Code, 66.2K Data, 229.4K Total
7874   Current Release:
7875     Non-Debug Version:  81.0K Code, 17.9K Data,  98.9K Total
7876     Debug Version:     161.3K Code, 65.7K Data, 227.0K Total
7877
7878
7879 2) iASL Compiler/Disassembler:
7880
7881 Fixed an internal error that was generated for any forward references to 
7882 ASL 
7883 Alias objects.
7884
7885 ----------------------------------------
7886 13 January 2006. Summary of changes for version 20060113:
7887
7888 1) ACPI CA Core Subsystem:
7889
7890 Added 2006 copyright to all module headers and signons. This affects 
7891 virtually every file in the ACPICA core subsystem, iASL compiler, and the 
7892 utilities.
7893  
7894 Enhanced the ACPICA error reporting in order to simplify user migration 
7895 to 
7896 the non-debug version of ACPICA. Replaced all instances of the 
7897 ACPI_DEBUG_PRINT macro invoked at the ACPI_DB_ERROR and ACPI_DB_WARN 
7898 debug 
7899 levels with the ACPI_REPORT_ERROR and ACPI_REPORT_WARNING macros, 
7900 respectively. This preserves all error and warning messages in the non-
7901 debug 
7902 version of the ACPICA code (this has been referred to as the "debug lite" 
7903 option.) Over 200 cases were converted to create a total of over 380 
7904 error/warning messages across the ACPICA code. This increases the code 
7905 and 
7906 data size of the default non-debug version of the code somewhat (about 
7907 13K), 
7908 but all error/warning reporting may be disabled if desired (and code 
7909 eliminated) by specifying the ACPI_NO_ERROR_MESSAGES compile-time 
7910 configuration option. The size of the debug version of ACPICA remains 
7911 about 
7912 the same.
7913
7914 Fixed a memory leak within the AML Debugger "Set" command. One object was 
7915 not properly deleted for every successful invocation of the command.
7916
7917 Code and Data Size: The current and previous library sizes for the core 
7918 subsystem are shown below. These are the code and data sizes for the 
7919 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
7920 These 
7921 values do not include any ACPI driver or OSPM code. The debug version of 
7922 the 
7923 code includes the debug output trace mechanism and has a much larger code 
7924 and data size. Note that these values will vary depending on the 
7925 efficiency 
7926 of the compiler and the compiler options used during generation.
7927
7928   Previous Release:
7929     Non-Debug Version:  76.6K Code, 12.3K Data,  88.9K Total
7930     Debug Version:     163.7K Code, 67.5K Data, 231.2K Total
7931   Current Release:
7932     Non-Debug Version:  83.1K Code, 18.4K Data, 101.5K Total
7933     Debug Version:     163.2K Code, 66.2K Data, 229.4K Total
7934
7935
7936 2) iASL Compiler/Disassembler:
7937
7938 The compiler now officially supports the ACPI 3.0a specification that was 
7939 released on December 30, 2005. (Specification is available at 
7940 www.acpi.info)
7941
7942 ----------------------------------------
7943 16 December 2005. Summary of changes for version 20051216:
7944
7945 1) ACPI CA Core Subsystem:
7946
7947 Implemented optional support to allow unresolved names within ASL Package 
7948 objects. A null object is inserted in the package when a named reference 
7949 cannot be located in the current namespace. Enabled via the interpreter 
7950 slack flag, this should eliminate AE_NOT_FOUND exceptions seen on 
7951 machines 
7952 that contain such code.
7953
7954 Implemented an optimization to the initialization sequence that can 
7955 improve 
7956 boot time. During ACPI device initialization, the _STA method is now run 
7957 if 
7958 and only if the _INI method exists. The _STA method is used to determine 
7959 if 
7960 the device is present; An _INI can only be run if _STA returns present, 
7961 but 
7962 it is a waste of time to run the _STA method if the _INI does not exist. 
7963 (Prototype and assistance from Dong Wei)
7964
7965 Implemented use of the C99 uintptr_t for the pointer casting macros if it 
7966 is 
7967 available in the current compiler. Otherwise, the default (void *) cast 
7968 is 
7969 used as before.
7970
7971 Fixed some possible memory leaks found within the execution path of the 
7972 Break, Continue, If, and CreateField operators. (Valery Podrezov)
7973
7974 Fixed a problem introduced in the 20051202 release where an exception is 
7975 generated during method execution if a control method attempts to declare 
7976 another method.
7977
7978 Moved resource descriptor string constants that are used by both the AML 
7979 disassembler and AML debugger to the common utilities directory so that 
7980 these components are independent.
7981
7982 Implemented support in the AcpiExec utility (-e switch) to globally 
7983 ignore 
7984 exceptions during control method execution (method is not aborted.)
7985
7986 Added the rsinfo.c source file to the AcpiExec makefile for Linux/Unix 
7987 generation.
7988
7989 Code and Data Size: The current and previous library sizes for the core 
7990 subsystem are shown below. These are the code and data sizes for the 
7991 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
7992 These 
7993 values do not include any ACPI driver or OSPM code. The debug version of 
7994 the 
7995 code includes the debug output trace mechanism and has a much larger code 
7996 and data size. Note that these values will vary depending on the 
7997 efficiency 
7998 of the compiler and the compiler options used during generation.
7999
8000   Previous Release:
8001     Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
8002     Debug Version:     163.2K Code, 67.4K Data, 230.6K Total
8003   Current Release:
8004     Non-Debug Version:  76.6K Code, 12.3K Data,  88.9K Total
8005     Debug Version:     163.7K Code, 67.5K Data, 231.2K Total
8006
8007
8008 2) iASL Compiler/Disassembler:
8009
8010 Fixed a problem where a CPU stack overflow fault could occur if a 
8011 recursive 
8012 method call was made from within a Return statement.
8013
8014 ----------------------------------------
8015 02 December 2005. Summary of changes for version 20051202:
8016
8017 1) ACPI CA Core Subsystem:
8018
8019 Modified the parsing of control methods to no longer create namespace 
8020 objects during the first pass of the parse. Objects are now created only 
8021 during the execute phase, at the moment the namespace creation operator 
8022 is 
8023 encountered in the AML (Name, OperationRegion, CreateByteField, etc.) 
8024 This 
8025 should eliminate ALREADY_EXISTS exceptions seen on some machines where 
8026 reentrant control methods are protected by an AML mutex. The mutex will 
8027 now 
8028 correctly block multiple threads from attempting to create the same 
8029 object 
8030 more than once.
8031
8032 Increased the number of available Owner Ids for namespace object tracking 
8033 from 32 to 255. This should eliminate the OWNER_ID_LIMIT exceptions seen 
8034 on 
8035 some machines with a large number of ACPI tables (either static or 
8036 dynamic).
8037
8038 Fixed a problem with the AcpiExec utility where a fault could occur when 
8039 the 
8040 -b switch (batch mode) is used.
8041
8042 Enhanced the namespace dump routine to output the owner ID for each 
8043 namespace object.
8044
8045 Code and Data Size: The current and previous library sizes for the core 
8046 subsystem are shown below. These are the code and data sizes for the 
8047 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
8048 These 
8049 values do not include any ACPI driver or OSPM code. The debug version of 
8050 the 
8051 code includes the debug output trace mechanism and has a much larger code 
8052 and data size. Note that these values will vary depending on the 
8053 efficiency 
8054 of the compiler and the compiler options used during generation.
8055
8056   Previous Release:
8057     Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
8058     Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
8059   Current Release:
8060     Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
8061     Debug Version:     163.2K Code, 67.4K Data, 230.6K Total
8062
8063
8064 2) iASL Compiler/Disassembler:
8065
8066 Fixed a parse error during compilation of certain Switch/Case constructs. 
8067 To 
8068 simplify the parse, the grammar now allows for multiple Default 
8069 statements 
8070 and this error is now detected and flagged during the analysis phase.
8071
8072 Disassembler: The disassembly now includes the contents of the original 
8073 table header within a comment at the start of the file. This includes the 
8074 name and version of the original ASL compiler.
8075
8076 ----------------------------------------
8077 17 November 2005. Summary of changes for version 20051117:
8078
8079 1) ACPI CA Core Subsystem:
8080
8081 Fixed a problem in the AML parser where the method thread count could be 
8082 decremented below zero if any errors occurred during the method parse 
8083 phase. 
8084 This should eliminate AE_AML_METHOD_LIMIT exceptions seen on some 
8085 machines. 
8086 This also fixed a related regression with the mechanism that detects and 
8087 corrects methods that cannot properly handle reentrancy (related to the 
8088 deployment of the new OwnerId mechanism.)
8089
8090 Eliminated the pre-parsing of control methods (to detect errors) during 
8091 table load. Related to the problem above, this was causing unwind issues 
8092 if 
8093 any errors occurred during the parse, and it seemed to be overkill. A 
8094 table 
8095 load should not be aborted if there are problems with any single control 
8096 method, thus rendering this feature rather pointless.
8097
8098 Fixed a problem with the new table-driven resource manager where an 
8099 internal 
8100 buffer overflow could occur for small resource templates.
8101
8102 Implemented a new external interface, AcpiGetVendorResource. This 
8103 interface 
8104 will find and return a vendor-defined resource descriptor within a _CRS 
8105 or 
8106 _PRS method via an ACPI 3.0 UUID match. With assistance from Bjorn 
8107 Helgaas.
8108
8109 Removed the length limit (200) on string objects as per the upcoming ACPI 
8110 3.0A specification. This affects the following areas of the interpreter: 
8111 1) 
8112 any implicit conversion of a Buffer to a String, 2) a String object 
8113 result 
8114 of the ASL Concatentate operator, 3) the String object result of the ASL 
8115 ToString operator.
8116
8117 Fixed a problem in the Windows OS interface layer (OSL) where a 
8118 WAIT_FOREVER 
8119 on a semaphore object would incorrectly timeout. This allows the 
8120 multithreading features of the AcpiExec utility to work properly under 
8121 Windows.
8122
8123 Updated the Linux makefiles for the iASL compiler and AcpiExec to include 
8124 the recently added file named "utresrc.c".
8125
8126 Code and Data Size: The current and previous library sizes for the core 
8127 subsystem are shown below. These are the code and data sizes for the 
8128 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
8129 These 
8130 values do not include any ACPI driver or OSPM code. The debug version of 
8131 the 
8132 code includes the debug output trace mechanism and has a much larger code 
8133 and data size. Note that these values will vary depending on the 
8134 efficiency 
8135 of the compiler and the compiler options used during generation.
8136
8137   Previous Release:
8138     Non-Debug Version:  76.2K Code, 12.3K Data,  88.5K Total
8139     Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
8140   Current Release:
8141     Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
8142     Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
8143
8144
8145 2) iASL Compiler/Disassembler:
8146
8147 Removed the limit (200) on string objects as per the upcoming ACPI 3.0A 
8148 specification. For the iASL compiler, this means that string literals 
8149 within 
8150 the source ASL can be of any length. 
8151
8152 Enhanced the listing output to dump the AML code for resource descriptors 
8153 immediately after the ASL code for each descriptor, instead of in a block 
8154 at 
8155 the end of the entire resource template.
8156
8157 Enhanced the compiler debug output to dump the entire original parse tree 
8158 constructed during the parse phase, before any transforms are applied to 
8159 the 
8160 tree. The transformed tree is dumped also.
8161
8162 ----------------------------------------
8163 02 November 2005. Summary of changes for version 20051102:
8164
8165 1) ACPI CA Core Subsystem:
8166
8167 Modified the subsystem initialization sequence to improve GPE support. 
8168 The 
8169 GPE initialization has been split into two parts in order to defer 
8170 execution 
8171 of the _PRW methods (Power Resources for Wake) until after the hardware 
8172 is 
8173 fully initialized and the SCI handler is installed. This allows the _PRW 
8174 methods to access fields protected by the Global Lock. This will fix 
8175 systems 
8176 where a NO_GLOBAL_LOCK exception has been seen during initialization.
8177
8178 Converted the ACPI internal object disassemble and display code within 
8179 the 
8180 AML debugger to fully table-driven operation, reducing code size and 
8181 increasing maintainability.
8182
8183 Fixed a regression with the ConcatenateResTemplate() ASL operator 
8184 introduced 
8185 in the 20051021 release.
8186
8187 Implemented support for "local" internal ACPI object types within the 
8188 debugger "Object" command and the AcpiWalkNamespace external interfaces. 
8189 These local types include RegionFields, BankFields, IndexFields, Alias, 
8190 and 
8191 reference objects.
8192
8193 Moved common AML resource handling code into a new file, "utresrc.c". 
8194 This 
8195 code is shared by both the Resource Manager and the AML Debugger.
8196
8197 Code and Data Size: The current and previous library sizes for the core 
8198 subsystem are shown below. These are the code and data sizes for the 
8199 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
8200 These 
8201 values do not include any ACPI driver or OSPM code. The debug version of 
8202 the 
8203 code includes the debug output trace mechanism and has a much larger code 
8204 and data size. Note that these values will vary depending on the 
8205 efficiency 
8206 of the compiler and the compiler options used during generation.
8207
8208   Previous Release:
8209     Non-Debug Version:  76.1K Code, 12.2K Data,  88.3K Total
8210     Debug Version:     163.5K Code, 67.0K Data, 230.5K Total
8211   Current Release:
8212     Non-Debug Version:  76.2K Code, 12.3K Data,  88.5K Total
8213     Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
8214
8215
8216 2) iASL Compiler/Disassembler:
8217
8218 Fixed a problem with very large initializer lists (more than 4000 
8219 elements) 
8220 for both Buffer and Package objects where the parse stack could overflow.
8221
8222 Enhanced the pre-compile source code scan for non-ASCII characters to 
8223 ignore 
8224 characters within comment fields. The scan is now always performed and is 
8225 no 
8226 longer optional, detecting invalid characters within a source file 
8227 immediately rather than during the parse phase or later.
8228
8229 Enhanced the ASL grammar definition to force early reductions on all 
8230 list-
8231 style grammar elements so that the overall parse stack usage is greatly 
8232 reduced. This should improve performance and reduce the possibility of 
8233 parse 
8234 stack overflow.
8235
8236 Eliminated all reduce/reduce conflicts in the iASL parser generation. 
8237 Also, 
8238 with the addition of a %expected statement, the compiler generates from 
8239 source with no warnings.
8240
8241 Fixed a possible segment fault in the disassembler if the input filename 
8242 does not contain a "dot" extension (Thomas Renninger).
8243
8244 ----------------------------------------
8245 21 October 2005. Summary of changes for version 20051021:
8246
8247 1) ACPI CA Core Subsystem:
8248
8249 Implemented support for the EM64T and other x86-64 processors. This 
8250 essentially entails recognizing that these processors support non-aligned 
8251 memory transfers. Previously, all 64-bit processors were assumed to lack 
8252 hardware support for non-aligned transfers.
8253
8254 Completed conversion of the Resource Manager to nearly full table-driven 
8255 operation. Specifically, the resource conversion code (convert AML to 
8256 internal format and the reverse) and the debug code to dump internal 
8257 resource descriptors are fully table-driven, reducing code and data size 
8258 and 
8259 improving maintainability.
8260
8261 The OSL interfaces for Acquire and Release Lock now use a 64-bit flag 
8262 word 
8263 on 64-bit processors instead of a fixed 32-bit word. (With assistance 
8264 from 
8265 Alexey Starikovskiy)
8266
8267 Implemented support within the resource conversion code for the Type-
8268 Specific byte within the various ACPI 3.0 *WordSpace macros.
8269
8270 Fixed some issues within the resource conversion code for the type-
8271 specific 
8272 flags for both Memory and I/O address resource descriptors. For Memory, 
8273 implemented support for the MTP and TTP flags. For I/O, split the TRS and 
8274 TTP flags into two separate fields.
8275
8276 Code and Data Size: The current and previous library sizes for the core 
8277 subsystem are shown below. These are the code and data sizes for the 
8278 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
8279 These 
8280 values do not include any ACPI driver or OSPM code. The debug version of 
8281 the 
8282 code includes the debug output trace mechanism and has a much larger code 
8283 and data size. Note that these values will vary depending on the 
8284 efficiency 
8285 of the compiler and the compiler options used during generation.
8286
8287   Previous Release:
8288     Non-Debug Version:  77.1K Code, 12.1K Data,  89.2K Total
8289     Debug Version:     168.0K Code, 68.3K Data, 236.3K Total
8290   Current Release:
8291     Non-Debug Version:  76.1K Code, 12.2K Data,  88.3K Total
8292     Debug Version:     163.5K Code, 67.0K Data, 230.5K Total
8293
8294
8295
8296 2) iASL Compiler/Disassembler:
8297
8298 Relaxed a compiler restriction that disallowed a ResourceIndex byte if 
8299 the 
8300 corresponding ResourceSource string was not also present in a resource 
8301 descriptor declaration. This restriction caused problems with existing 
8302 AML/ASL code that includes the Index byte without the string. When such 
8303 AML 
8304 was disassembled, it could not be compiled without modification. Further, 
8305 the modified code created a resource template with a different size than 
8306 the 
8307 original, breaking code that used fixed offsets into the resource 
8308 template 
8309 buffer.
8310
8311 Removed a recent feature of the disassembler to ignore a lone 
8312 ResourceIndex 
8313 byte. This byte is now emitted if present so that the exact AML can be 
8314 reproduced when the disassembled code is recompiled.
8315
8316 Improved comments and text alignment for the resource descriptor code 
8317 emitted by the disassembler.
8318
8319 Implemented disassembler support for the ACPI 3.0 AccessSize field within 
8320
8321 Register() resource descriptor.
8322
8323 ----------------------------------------
8324 30 September 2005. Summary of changes for version 20050930:
8325
8326 1) ACPI CA Core Subsystem:
8327
8328 Completed a major overhaul of the Resource Manager code - specifically, 
8329 optimizations in the area of the AML/internal resource conversion code. 
8330 The 
8331 code has been optimized to simplify and eliminate duplicated code, CPU 
8332 stack 
8333 use has been decreased by optimizing function parameters and local 
8334 variables, and naming conventions across the manager have been 
8335 standardized 
8336 for clarity and ease of maintenance (this includes function, parameter, 
8337 variable, and struct/typedef names.) The update may force changes in some 
8338 driver code, depending on how resources are handled by the host OS.
8339
8340 All Resource Manager dispatch and information tables have been moved to a 
8341 single location for clarity and ease of maintenance. One new file was 
8342 created, named "rsinfo.c".
8343
8344 The ACPI return macros (return_ACPI_STATUS, etc.) have been modified to 
8345 guarantee that the argument is not evaluated twice, making them less 
8346 prone 
8347 to macro side-effects. However, since there exists the possibility of 
8348 additional stack use if a particular compiler cannot optimize them (such 
8349 as 
8350 in the debug generation case), the original macros are optionally 
8351 available.  
8352 Note that some invocations of the return_VALUE macro may now cause size 
8353 mismatch warnings; the return_UINT8 and return_UINT32 macros are provided 
8354 to 
8355 eliminate these. (From Randy Dunlap)
8356
8357 Implemented a new mechanism to enable debug tracing for individual 
8358 control 
8359 methods. A new external interface, AcpiDebugTrace, is provided to enable 
8360 this mechanism. The intent is to allow the host OS to easily enable and 
8361 disable tracing for problematic control methods. This interface can be 
8362 easily exposed to a user or debugger interface if desired. See the file 
8363 psxface.c for details.
8364
8365 AcpiUtCallocate will now return a valid pointer if a length of zero is 
8366 specified - a length of one is used and a warning is issued. This matches 
8367 the behavior of AcpiUtAllocate.
8368
8369 Code and Data Size: The current and previous library sizes for the core 
8370 subsystem are shown below. These are the code and data sizes for the 
8371 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
8372 These 
8373 values do not include any ACPI driver or OSPM code. The debug version of 
8374 the 
8375 code includes the debug output trace mechanism and has a much larger code 
8376 and data size. Note that these values will vary depending on the 
8377 efficiency 
8378 of the compiler and the compiler options used during generation.
8379
8380   Previous Release:
8381     Non-Debug Version:  77.5K Code, 12.0K Data,  89.5K Total
8382     Debug Version:     168.1K Code, 68.4K Data, 236.5K Total
8383   Current Release:
8384     Non-Debug Version:  77.1K Code, 12.1K Data,  89.2K Total
8385     Debug Version:     168.0K Code, 68.3K Data, 236.3K Total
8386
8387
8388 2) iASL Compiler/Disassembler:
8389
8390 A remark is issued if the effective compile-time length of a package or 
8391 buffer is zero. Previously, this was a warning.
8392
8393 ----------------------------------------
8394 16 September 2005. Summary of changes for version 20050916:
8395
8396 1) ACPI CA Core Subsystem:
8397
8398 Fixed a problem within the Resource Manager where support for the Generic 
8399 Register descriptor was not fully implemented. This descriptor is now 
8400 fully 
8401 recognized, parsed, disassembled, and displayed.
8402
8403 Completely restructured the Resource Manager code to utilize table-driven 
8404 dispatch and lookup, eliminating many of the large switch() statements. 
8405 This 
8406 reduces overall subsystem code size and code complexity. Affects the 
8407 resource parsing and construction, disassembly, and debug dump output.
8408
8409 Cleaned up and restructured the debug dump output for all resource 
8410 descriptors. Improved readability of the output and reduced code size.
8411
8412 Fixed a problem where changes to internal data structures caused the 
8413 optional ACPI_MUTEX_DEBUG code to fail compilation if specified.
8414
8415 Code and Data Size: The current and previous library sizes for the core 
8416 subsystem are shown below. These are the code and data sizes for the 
8417 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
8418 These 
8419 values do not include any ACPI driver or OSPM code. The debug version of 
8420 the 
8421 code includes the debug output trace mechanism and has a much larger code 
8422 and data size. Note that these values will vary depending on the 
8423 efficiency 
8424 of the compiler and the compiler options used during generation.
8425
8426   Previous Release:
8427     Non-Debug Version:  78.4K Code, 11.8K Data,  90.2K Total
8428     Debug Version:     169.6K Code, 69.9K Data, 239.5K Total
8429   Current Release:
8430     Non-Debug Version:  77.5K Code, 12.0K Data,  89.5K Total
8431     Debug Version:     168.1K Code, 68.4K Data, 236.5K Total
8432
8433
8434 2) iASL Compiler/Disassembler:
8435
8436 Updated the disassembler to automatically insert an EndDependentFn() 
8437 macro 
8438 into the ASL stream if this macro is missing in the original AML code, 
8439 simplifying compilation of the resulting ASL module.
8440
8441 Fixed a problem in the disassembler where a disassembled ResourceSource 
8442 string (within a large resource descriptor) was not surrounded by quotes 
8443 and 
8444 not followed by a comma, causing errors when the resulting ASL module was 
8445 compiled. Also, escape sequences within a ResourceSource string are now 
8446 handled correctly (especially "\\")
8447
8448 ----------------------------------------
8449 02 September 2005. Summary of changes for version 20050902:
8450
8451 1) ACPI CA Core Subsystem:
8452
8453 Fixed a problem with the internal Owner ID allocation and deallocation 
8454 mechanisms for control method execution and recursive method invocation. 
8455 This should eliminate the OWNER_ID_LIMIT exceptions and "Invalid OwnerId" 
8456 messages seen on some systems. Recursive method invocation depth is 
8457 currently limited to 255. (Alexey Starikovskiy)
8458
8459 Completely eliminated all vestiges of support for the "module-level 
8460 executable code" until this support is fully implemented and debugged. 
8461 This 
8462 should eliminate the NO_RETURN_VALUE exceptions seen during table load on 
8463 some systems that invoke this support.
8464
8465 Fixed a problem within the resource manager code where the transaction 
8466 flags 
8467 for a 64-bit address descriptor were handled incorrectly in the type-
8468 specific flag byte.
8469
8470 Consolidated duplicate code within the address descriptor resource 
8471 manager 
8472 code, reducing overall subsystem code size.
8473
8474 Fixed a fault when using the AML debugger "disassemble" command to 
8475 disassemble individual control methods.
8476
8477 Removed references to the "release_current" directory within the Unix 
8478 release package.
8479
8480 Code and Data Size: The current and previous core subsystem library sizes 
8481 are shown below. These are the code and data sizes for the acpica.lib 
8482 produced by the Microsoft Visual C++ 6.0 compiler. These values do not 
8483 include any ACPI driver or OSPM code. The debug version of the code 
8484 includes 
8485 the debug output trace mechanism and has a much larger code and data 
8486 size. 
8487 Note that these values will vary depending on the efficiency of the 
8488 compiler 
8489 and the compiler options used during generation.
8490
8491   Previous Release:
8492     Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
8493     Debug Version:     170.0K Code, 69.9K Data, 239.9K Total
8494   Current Release:
8495     Non-Debug Version:  78.4K Code, 11.8K Data,  90.2K Total
8496     Debug Version:     169.6K Code, 69.9K Data, 239.5K Total
8497
8498
8499 2) iASL Compiler/Disassembler:
8500
8501 Implemented an error check for illegal duplicate values in the interrupt 
8502 and 
8503 dma lists for the following ASL macros: Dma(), Irq(), IrqNoFlags(), and 
8504 Interrupt().
8505
8506 Implemented error checking for the Irq() and IrqNoFlags() macros to 
8507 detect 
8508 too many values in the interrupt list (16 max) and invalid values in the 
8509 list (range 0 - 15)
8510
8511 The maximum length string literal within an ASL file is now restricted to 
8512 200 characters as per the ACPI specification.
8513
8514 Fixed a fault when using the -ln option (generate namespace listing).
8515
8516 Implemented an error check to determine if a DescriptorName within a 
8517 resource descriptor has already been used within the current scope.
8518
8519 ----------------------------------------
8520 15 August 2005.  Summary of changes for version 20050815:
8521  
8522 1) ACPI CA Core Subsystem:
8523  
8524 Implemented a full bytewise compare to determine if a table load request 
8525 is 
8526 attempting to load a duplicate table. The compare is performed if the 
8527 table 
8528 signatures and table lengths match. This will allow different tables with 
8529 the same OEM Table ID and revision to be loaded - probably against the 
8530 ACPI 
8531 specification, but discovered in the field nonetheless.
8532  
8533 Added the changes.txt logfile to each of the zipped release packages.
8534  
8535 Code and Data Size: Current and previous core subsystem library sizes are 
8536 shown below. These are the code and data sizes for the acpica.lib 
8537 produced 
8538 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8539 any ACPI driver or OSPM code. The debug version of the code includes the 
8540 debug output trace mechanism and has a much larger code and data size. 
8541 Note 
8542 that these values will vary depending on the efficiency of the compiler 
8543 and 
8544 the compiler options used during generation.
8545  
8546   Previous Release:
8547     Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
8548     Debug Version:     167.0K Code, 69.9K Data, 236.9K Total
8549   Current Release:
8550     Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
8551     Debug Version:     170.0K Code, 69.9K Data, 239.9K Total
8552  
8553  
8554 2) iASL Compiler/Disassembler:
8555  
8556 Fixed a problem where incorrect AML code could be generated for Package 
8557 objects if optimization is disabled (via the -oa switch).
8558  
8559 Fixed a problem with where incorrect AML code is generated for variable-
8560 length packages when the package length is not specified and the number 
8561 of 
8562 initializer values is greater than 255.
8563  
8564
8565 ----------------------------------------
8566 29 July 2005.  Summary of changes for version 20050729:
8567
8568 1) ACPI CA Core Subsystem:
8569
8570 Implemented support to ignore an attempt to install/load a particular 
8571 ACPI 
8572 table more than once. Apparently there exists BIOS code that repeatedly 
8573 attempts to load the same SSDT upon certain events. With assistance from 
8574 Venkatesh Pallipadi.
8575
8576 Restructured the main interface to the AML parser in order to correctly 
8577 handle all exceptional conditions. This will prevent leakage of the 
8578 OwnerId 
8579 resource and should eliminate the AE_OWNER_ID_LIMIT exceptions seen on 
8580 some 
8581 machines. With assistance from Alexey Starikovskiy.
8582
8583 Support for "module level code" has been disabled in this version due to 
8584
8585 number of issues that have appeared on various machines. The support can 
8586 be 
8587 enabled by defining ACPI_ENABLE_MODULE_LEVEL_CODE during subsystem 
8588 compilation. When the issues are fully resolved, the code will be enabled 
8589 by 
8590 default again.
8591
8592 Modified the internal functions for debug print support to define the 
8593 FunctionName parameter as a (const char *) for compatibility with 
8594 compiler 
8595 built-in macros such as __FUNCTION__, etc.
8596
8597 Linted the entire ACPICA source tree for both 32-bit and 64-bit.
8598
8599 Implemented support to display an object count summary for the AML 
8600 Debugger 
8601 commands Object and Methods.
8602
8603 Code and Data Size: Current and previous core subsystem library sizes are 
8604 shown below. These are the code and data sizes for the acpica.lib 
8605 produced 
8606 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8607 any ACPI driver or OSPM code. The debug version of the code includes the 
8608 debug output trace mechanism and has a much larger code and data size. 
8609 Note 
8610 that these values will vary depending on the efficiency of the compiler 
8611 and 
8612 the compiler options used during generation.
8613
8614   Previous Release:
8615     Non-Debug Version:  78.6K Code, 11.6K Data,  90.2K Total
8616     Debug Version:     170.0K Code, 69.7K Data, 239.7K Total
8617   Current Release:
8618     Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
8619     Debug Version:     167.0K Code, 69.9K Data, 236.9K Total
8620
8621
8622 2) iASL Compiler/Disassembler:
8623
8624 Fixed a regression that appeared in the 20050708 version of the compiler 
8625 where an error message was inadvertently emitted for invocations of the 
8626 _OSI 
8627 reserved control method.
8628
8629 ----------------------------------------
8630 08 July 2005.  Summary of changes for version 20050708:
8631
8632 1) ACPI CA Core Subsystem:
8633
8634 The use of the CPU stack in the debug version of the subsystem has been 
8635 considerably reduced. Previously, a debug structure was declared in every 
8636 function that used the debug macros. This structure has been removed in 
8637 favor of declaring the individual elements as parameters to the debug 
8638 functions. This reduces the cumulative stack use during nested execution 
8639 of 
8640 ACPI function calls at the cost of a small increase in the code size of 
8641 the 
8642 debug version of the subsystem. With assistance from Alexey Starikovskiy 
8643 and 
8644 Len Brown.
8645
8646 Added the ACPI_GET_FUNCTION_NAME macro to enable the compiler-dependent 
8647 headers to define a macro that will return the current function name at 
8648 runtime (such as __FUNCTION__ or _func_, etc.) The function name is used 
8649 by 
8650 the debug trace output. If ACPI_GET_FUNCTION_NAME is not defined in the 
8651 compiler-dependent header, the function name is saved on the CPU stack 
8652 (one 
8653 pointer per function.) This mechanism is used because apparently there 
8654 exists no standard ANSI-C defined macro that that returns the function 
8655 name.
8656
8657 Redesigned and reimplemented the "Owner ID" mechanism used to track 
8658 namespace objects created/deleted by ACPI tables and control method 
8659 execution. A bitmap is now used to allocate and free the IDs, thus 
8660 solving 
8661 the wraparound problem present in the previous implementation. The size 
8662 of 
8663 the namespace node descriptor was reduced by 2 bytes as a result (Alexey 
8664 Starikovskiy).
8665
8666 Removed the UINT32_BIT and UINT16_BIT types that were used for the 
8667 bitfield 
8668 flag definitions within the headers for the predefined ACPI tables. These 
8669 have been replaced by UINT8_BIT in order to increase the code portability 
8670 of 
8671 the subsystem. If the use of UINT8 remains a problem, we may be forced to 
8672 eliminate bitfields entirely because of a lack of portability.
8673
8674 Enhanced the performance of the AcpiUtUpdateObjectReference procedure. 
8675 This 
8676 is a frequently used function and this improvement increases the 
8677 performance 
8678 of the entire subsystem (Alexey Starikovskiy).
8679
8680 Fixed several possible memory leaks and the inverse - premature object 
8681 deletion (Alexey Starikovskiy).
8682
8683 Code and Data Size: Current and previous core subsystem library sizes are 
8684 shown below. These are the code and data sizes for the acpica.lib 
8685 produced 
8686 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8687 any ACPI driver or OSPM code. The debug version of the code includes the 
8688 debug output trace mechanism and has a much larger code and data size. 
8689 Note 
8690 that these values will vary depending on the efficiency of the compiler 
8691 and 
8692 the compiler options used during generation.
8693
8694   Previous Release:
8695     Non-Debug Version:  78.6K Code, 11.5K Data,  90.1K Total
8696     Debug Version:     165.2K Code, 69.6K Data, 234.8K Total
8697   Current Release:
8698     Non-Debug Version:  78.6K Code, 11.6K Data,  90.2K Total
8699     Debug Version:     170.0K Code, 69.7K Data, 239.7K Total
8700
8701 ----------------------------------------
8702 24 June 2005.  Summary of changes for version 20050624:
8703
8704 1) ACPI CA Core Subsystem:
8705
8706 Modified the new OSL cache interfaces to use ACPI_CACHE_T as the type for 
8707 the host-defined cache object. This allows the OSL implementation to 
8708 define 
8709 and type this object in any manner desired, simplifying the OSL 
8710 implementation. For example, ACPI_CACHE_T is defined as kmem_cache_t for 
8711 Linux, and should be defined in the OS-specific header file for other 
8712 operating systems as required.
8713
8714 Changed the interface to AcpiOsAcquireObject to directly return the 
8715 requested object as the function return (instead of ACPI_STATUS.) This 
8716 change was made for performance reasons, since this is the purpose of the 
8717 interface in the first place. AcpiOsAcquireObject is now similar to the 
8718 AcpiOsAllocate interface.
8719
8720 Implemented a new AML debugger command named Businfo. This command 
8721 displays 
8722 information about all devices that have an associate _PRT object. The 
8723 _ADR, 
8724 _HID, _UID, and _CID are displayed for these devices.
8725
8726 Modified the initialization sequence in AcpiInitializeSubsystem to call 
8727 the 
8728 OSL interface AcpiOslInitialize first, before any local initialization. 
8729 This 
8730 change was required because the global initialization now calls OSL 
8731 interfaces.
8732
8733 Enhanced the Dump command to display the entire contents of Package 
8734 objects 
8735 (including all sub-objects and their values.) 
8736
8737 Restructured the code base to split some files because of size and/or 
8738 because the code logically belonged in a separate file. New files are 
8739 listed 
8740 below. All makefiles and project files included in the ACPI CA release 
8741 have 
8742 been updated.
8743     utilities/utcache.c           /* Local cache interfaces */
8744     utilities/utmutex.c           /* Local mutex support */
8745     utilities/utstate.c           /* State object support */
8746     interpreter/parser/psloop.c   /* Main AML parse loop */
8747
8748 Code and Data Size: Current and previous core subsystem library sizes are 
8749 shown below. These are the code and data sizes for the acpica.lib 
8750 produced 
8751 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8752 any ACPI driver or OSPM code. The debug version of the code includes the 
8753 debug output trace mechanism and has a much larger code and data size. 
8754 Note 
8755 that these values will vary depending on the efficiency of the compiler 
8756 and 
8757 the compiler options used during generation.
8758
8759   Previous Release:
8760     Non-Debug Version:  78.3K Code, 11.6K Data,  89.9K Total
8761     Debug Version:     164.0K Code, 69.1K Data, 233.1K Total
8762   Current Release:
8763     Non-Debug Version:  78.6K Code, 11.5K Data,  90.1K Total
8764     Debug Version:     165.2K Code, 69.6K Data, 234.8K Total
8765
8766
8767 2) iASL Compiler/Disassembler:
8768
8769 Fixed a regression introduced in version 20050513 where the use of a 
8770 Package 
8771 object within a Case() statement caused a compile time exception. The 
8772 original behavior has been restored (a Match() operator is emitted.)
8773
8774 ----------------------------------------
8775 17 June 2005.  Summary of changes for version 20050617:
8776
8777 1) ACPI CA Core Subsystem:
8778
8779 Moved the object cache operations into the OS interface layer (OSL) to 
8780 allow 
8781 the host OS to handle these operations if desired (for example, the Linux 
8782 OSL will invoke the slab allocator). This support is optional; the 
8783 compile 
8784 time define ACPI_USE_LOCAL_CACHE may be used to utilize the original 
8785 cache 
8786 code in the ACPI CA core. The new OSL interfaces are shown below. See 
8787 utalloc.c for an example implementation, and acpiosxf.h for the exact 
8788 interface definitions. With assistance from Alexey Starikovskiy.
8789     AcpiOsCreateCache
8790     AcpiOsDeleteCache
8791     AcpiOsPurgeCache
8792     AcpiOsAcquireObject
8793     AcpiOsReleaseObject
8794
8795 Modified the interfaces to AcpiOsAcquireLock and AcpiOsReleaseLock to 
8796 return 
8797 and restore a flags parameter. This fits better with many OS lock models. 
8798 Note: the current execution state (interrupt handler or not) is no longer 
8799 passed to these interfaces. If necessary, the OSL must determine this 
8800 state 
8801 by itself, a simple and fast operation. With assistance from Alexey 
8802 Starikovskiy.
8803
8804 Fixed a problem in the ACPI table handling where a valid XSDT was assumed 
8805 present if the revision of the RSDP was 2 or greater. According to the 
8806 ACPI 
8807 specification, the XSDT is optional in all cases, and the table manager 
8808 therefore now checks for both an RSDP >=2 and a valid XSDT pointer. 
8809 Otherwise, the RSDT pointer is used. Some ACPI 2.0 compliant BIOSs 
8810 contain 
8811 only the RSDT.
8812
8813 Fixed an interpreter problem with the Mid() operator in the case of an 
8814 input 
8815 string where the resulting output string is of zero length. It now 
8816 correctly 
8817 returns a valid, null terminated string object instead of a string object 
8818 with a null pointer.
8819
8820 Fixed a problem with the control method argument handling to allow a 
8821 store 
8822 to an Arg object that already contains an object of type Device. The 
8823 Device 
8824 object is now correctly overwritten. Previously, an error was returned.
8825
8826
8827 Enhanced the debugger Find command to emit object values in addition to 
8828 the 
8829 found object pathnames. The output format is the same as the dump 
8830 namespace 
8831 command.
8832
8833 Enhanced the debugger Set command. It now has the ability to set the 
8834 value 
8835 of any Named integer object in the namespace (Previously, only method 
8836 locals 
8837 and args could be set.)
8838
8839 Code and Data Size: Current and previous core subsystem library sizes are 
8840 shown below. These are the code and data sizes for the acpica.lib 
8841 produced 
8842 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8843 any ACPI driver or OSPM code. The debug version of the code includes the 
8844 debug output trace mechanism and has a much larger code and data size. 
8845 Note 
8846 that these values will vary depending on the efficiency of the compiler 
8847 and 
8848 the compiler options used during generation.
8849
8850   Previous Release:
8851     Non-Debug Version:  78.1K Code, 11.6K Data,  89.7K Total
8852     Debug Version:     164.0K Code, 69.3K Data, 233.3K Total
8853   Current Release:
8854     Non-Debug Version:  78.3K Code, 11.6K Data,  89.9K Total
8855     Debug Version:     164.0K Code, 69.1K Data, 233.1K Total
8856
8857
8858 2) iASL Compiler/Disassembler:
8859
8860 Fixed a regression in the disassembler where if/else/while constructs 
8861 were 
8862 output incorrectly. This problem was introduced in the previous release 
8863 (20050526). This problem also affected the single-step disassembly in the 
8864 debugger.
8865
8866 Fixed a problem where compiling the reserved _OSI method would randomly 
8867 (but 
8868 rarely) produce compile errors.
8869
8870 Enhanced the disassembler to emit compilable code in the face of 
8871 incorrect 
8872 AML resource descriptors. If the optional ResourceSourceIndex is present, 
8873 but the ResourceSource is not, do not emit the ResourceSourceIndex in the 
8874 disassembly. Otherwise, the resulting code cannot be compiled without 
8875 errors.
8876
8877 ----------------------------------------
8878 26 May 2005.  Summary of changes for version 20050526:
8879
8880 1) ACPI CA Core Subsystem:
8881
8882 Implemented support to execute Type 1 and Type 2 AML opcodes appearing at 
8883 the module level (not within a control method.) These opcodes are 
8884 executed 
8885 exactly once at the time the table is loaded. This type of code was legal 
8886 up 
8887 until the release of ACPI 2.0B (2002) and is now supported within ACPI CA 
8888 in 
8889 order to provide backwards compatibility with earlier BIOS 
8890 implementations. 
8891 This eliminates the "Encountered executable code at module level" warning 
8892 that was previously generated upon detection of such code.
8893
8894 Fixed a problem in the interpreter where an AE_NOT_FOUND exception could 
8895 inadvertently be generated during the lookup of namespace objects in the 
8896 second pass parse of ACPI tables and control methods. It appears that 
8897 this 
8898 problem could occur during the resolution of forward references to 
8899 namespace 
8900 objects.
8901
8902 Added the ACPI_MUTEX_DEBUG #ifdef to the AcpiUtReleaseMutex function, 
8903 corresponding to the same #ifdef in the AcpiUtAcquireMutex function. This 
8904 allows the deadlock detection debug code to be compiled out in the normal 
8905 case, improving mutex performance (and overall subsystem performance) 
8906 considerably.
8907
8908 Implemented a handful of miscellaneous fixes for possible memory leaks on 
8909 error conditions and error handling control paths. These fixes were 
8910 suggested by FreeBSD and the Coverity Prevent source code analysis tool.
8911
8912 Added a check for a null RSDT pointer in AcpiGetFirmwareTable 
8913 (tbxfroot.c) 
8914 to prevent a fault in this error case.
8915
8916 Code and Data Size: Current and previous core subsystem library sizes are 
8917 shown below. These are the code and data sizes for the acpica.lib 
8918 produced 
8919 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8920 any ACPI driver or OSPM code. The debug version of the code includes the 
8921 debug output trace mechanism and has a much larger code and data size. 
8922 Note 
8923 that these values will vary depending on the efficiency of the compiler 
8924 and 
8925 the compiler options used during generation.
8926
8927   Previous Release:
8928     Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
8929     Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
8930   Current Release:
8931     Non-Debug Version:  78.1K Code, 11.6K Data,  89.7K Total
8932     Debug Version:     164.0K Code, 69.3K Data, 233.3K Total
8933
8934
8935 2) iASL Compiler/Disassembler:
8936
8937 Implemented support to allow Type 1 and Type 2 ASL operators to appear at 
8938 the module level (not within a control method.) These operators will be 
8939 executed once at the time the table is loaded. This type of code was 
8940 legal 
8941 up until the release of ACPI 2.0B (2002) and is now supported by the iASL 
8942 compiler in order to provide backwards compatibility with earlier BIOS 
8943 ASL 
8944 code.
8945
8946 The ACPI integer width (specified via the table revision ID or the -r 
8947 override, 32 or 64 bits) is now used internally during compile-time 
8948 constant 
8949 folding to ensure that constants are truncated to 32 bits if necessary. 
8950 Previously, the revision ID value was only emitted in the AML table 
8951 header.
8952
8953 An error message is now generated for the Mutex and Method operators if 
8954 the 
8955 SyncLevel parameter is outside the legal range of 0 through 15.
8956
8957 Fixed a problem with the Method operator ParameterTypes list handling 
8958 (ACPI 
8959 3.0). Previously, more than 2 types or 2 arguments generated a syntax 
8960 error.  
8961 The actual underlying implementation of method argument typechecking is 
8962 still under development, however.
8963
8964 ----------------------------------------
8965 13 May 2005.  Summary of changes for version 20050513:
8966
8967 1) ACPI CA Core Subsystem:
8968
8969 Implemented support for PCI Express root bridges -- added support for 
8970 device 
8971 PNP0A08 in the root bridge search within AcpiEvPciConfigRegionSetup.
8972
8973 The interpreter now automatically truncates incoming 64-bit constants to 
8974 32 
8975 bits if currently executing out of a 32-bit ACPI table (Revision < 2). 
8976 This 
8977 also affects the iASL compiler constant folding. (Note: as per below, the 
8978 iASL compiler no longer allows 64-bit constants within 32-bit tables.)
8979
8980 Fixed a problem where string and buffer objects with "static" pointers 
8981 (pointers to initialization data within an ACPI table) were not handled 
8982 consistently. The internal object copy operation now always copies the 
8983 data 
8984 to a newly allocated buffer, regardless of whether the source object is 
8985 static or not.
8986
8987 Fixed a problem with the FromBCD operator where an implicit result 
8988 conversion was improperly performed while storing the result to the 
8989 target 
8990 operand. Since this is an "explicit conversion" operator, the implicit 
8991 conversion should never be performed on the output.
8992
8993 Fixed a problem with the CopyObject operator where a copy to an existing 
8994 named object did not always completely overwrite the existing object 
8995 stored 
8996 at name. Specifically, a buffer-to-buffer copy did not delete the 
8997 existing 
8998 buffer.
8999
9000 Replaced "InterruptLevel" with "InterruptNumber" in all GPE interfaces 
9001 and 
9002 structs for consistency.
9003
9004 Code and Data Size: Current and previous core subsystem library sizes are 
9005 shown below. These are the code and data sizes for the acpica.lib 
9006 produced 
9007 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9008 any ACPI driver or OSPM code. The debug version of the code includes the 
9009 debug output trace mechanism and has a much larger code and data size. 
9010 Note 
9011 that these values will vary depending on the efficiency of the compiler 
9012 and 
9013 the compiler options used during generation.
9014
9015   Previous Release:
9016     Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
9017     Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
9018   Current Release: (Same sizes)
9019     Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
9020     Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
9021
9022
9023 2) iASL Compiler/Disassembler:
9024
9025 The compiler now emits a warning if an attempt is made to generate a 64-
9026 bit 
9027 integer constant from within a 32-bit ACPI table (Revision < 2). The 
9028 integer 
9029 is truncated to 32 bits.
9030
9031 Fixed a problem with large package objects: if the static length of the 
9032 package is greater than 255, the "variable length package" opcode is 
9033 emitted. Previously, this caused an error. This requires an update to the 
9034 ACPI spec, since it currently (incorrectly) states that packages larger 
9035 than 
9036 255 elements are not allowed.
9037
9038 The disassembler now correctly handles variable length packages and 
9039 packages 
9040 larger than 255 elements.
9041
9042 ----------------------------------------
9043 08 April 2005.  Summary of changes for version 20050408:
9044
9045 1) ACPI CA Core Subsystem:
9046
9047 Fixed three cases in the interpreter where an "index" argument to an ASL 
9048 function was still (internally) 32 bits instead of the required 64 bits. 
9049 This was the Index argument to the Index, Mid, and Match operators.
9050
9051 The "strupr" function is now permanently local (AcpiUtStrupr), since this 
9052 is 
9053 not a POSIX-defined function and not present in most kernel-level C 
9054 libraries. All references to the C library strupr function have been 
9055 removed 
9056 from the headers.
9057
9058 Completed the deployment of static functions/prototypes. All prototypes 
9059 with 
9060 the static attribute have been moved from the headers to the owning C 
9061 file.
9062
9063 Implemented an extract option (-e) for the AcpiBin utility (AML binary 
9064 utility). This option allows the utility to extract individual ACPI 
9065 tables 
9066 from the output of AcpiDmp. It provides the same functionality of the 
9067 acpixtract.pl perl script without the worry of setting the correct perl 
9068 options. AcpiBin runs on Windows and has not yet been generated/validated 
9069 in 
9070 the Linux/Unix environment (but should be soon).
9071  
9072 Updated and fixed the table dump option for AcpiBin (-d). This option 
9073 converts a single ACPI table to a hex/ascii file, similar to the output 
9074 of 
9075 AcpiDmp.
9076
9077 Code and Data Size: Current and previous core subsystem library sizes are 
9078 shown below. These are the code and data sizes for the acpica.lib 
9079 produced 
9080 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9081 any ACPI driver or OSPM code. The debug version of the code includes the 
9082 debug output trace mechanism and has a much larger code and data size. 
9083 Note 
9084 that these values will vary depending on the efficiency of the compiler 
9085 and 
9086 the compiler options used during generation.
9087
9088   Previous Release:
9089     Non-Debug Version:  78.0K Code, 11.6K Data,  89.6K Total
9090     Debug Version:     163.5K Code, 69.3K Data, 232.8K Total
9091   Current Release:
9092     Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
9093     Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
9094
9095
9096 2) iASL Compiler/Disassembler:
9097
9098 Disassembler fix: Added a check to ensure that the table length found in 
9099 the 
9100 ACPI table header within the input file is not longer than the actual 
9101 input 
9102 file size. This indicates some kind of file or table corruption.
9103
9104 ----------------------------------------
9105 29 March 2005.  Summary of changes for version 20050329:
9106
9107 1) ACPI CA Core Subsystem:
9108
9109 An error is now generated if an attempt is made to create a Buffer Field 
9110 of 
9111 length zero (A CreateField with a length operand of zero.)
9112
9113 The interpreter now issues a warning whenever executable code at the 
9114 module 
9115 level is detected during ACPI table load. This will give some idea of the 
9116 prevalence of this type of code.
9117
9118 Implemented support for references to named objects (other than control 
9119 methods) within package objects.
9120
9121 Enhanced package object output for the debug object. Package objects are 
9122 now 
9123 completely dumped, showing all elements.
9124
9125 Enhanced miscellaneous object output for the debug object. Any object can 
9126 now be written to the debug object (for example, a device object can be 
9127 written, and the type of the object will be displayed.)
9128
9129 The "static" qualifier has been added to all local functions across both 
9130 the 
9131 core subsystem and the iASL compiler.
9132
9133 The number of "long" lines (> 80 chars) within the source has been 
9134 significantly reduced, by about 1/3.
9135
9136 Cleaned up all header files to ensure that all CA/iASL functions are 
9137 prototyped (even static functions) and the formatting is consistent.
9138
9139 Two new header files have been added, acopcode.h and acnames.h.
9140
9141 Removed several obsolete functions that were no longer used.
9142
9143 Code and Data Size: Current and previous core subsystem library sizes are 
9144 shown below. These are the code and data sizes for the acpica.lib 
9145 produced 
9146 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9147 any ACPI driver or OSPM code. The debug version of the code includes the 
9148 debug output trace mechanism and has a much larger code and data size. 
9149 Note 
9150 that these values will vary depending on the efficiency of the compiler 
9151 and 
9152 the compiler options used during generation.
9153
9154   Previous Release:
9155     Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
9156     Debug Version:     165.4K Code, 69.7K Data, 236.1K Total
9157   Current Release:
9158     Non-Debug Version:  78.0K Code, 11.6K Data,  89.6K Total
9159     Debug Version:     163.5K Code, 69.3K Data, 232.8K Total
9160
9161
9162
9163 2) iASL Compiler/Disassembler:
9164
9165 Fixed a problem with the resource descriptor generation/support. For the 
9166 ResourceSourceIndex and the ResourceSource fields, both must be present, 
9167 or 
9168 both must be not present - can't have one without the other.
9169
9170 The compiler now returns non-zero from the main procedure if any errors 
9171 have 
9172 occurred during the compilation.
9173
9174
9175 ----------------------------------------
9176 09 March 2005.  Summary of changes for version 20050309:
9177
9178 1) ACPI CA Core Subsystem:
9179
9180 The string-to-buffer implicit conversion code has been modified again 
9181 after 
9182 a change to the ACPI specification.  In order to match the behavior of 
9183 the 
9184 other major ACPI implementation, the target buffer is no longer truncated 
9185 if 
9186 the source string is smaller than an existing target buffer. This change 
9187 requires an update to the ACPI spec, and should eliminate the recent 
9188 AE_AML_BUFFER_LIMIT issues.
9189
9190 The "implicit return" support was rewritten to a new algorithm that 
9191 solves 
9192 the general case. Rather than attempt to determine when a method is about 
9193 to 
9194 exit, the result of every ASL operator is saved momentarily until the 
9195 very 
9196 next ASL operator is executed. Therefore, no matter how the method exits, 
9197 there will always be a saved implicit return value. This feature is only 
9198 enabled with the AcpiGbl_EnableInterpreterSlack flag, and should 
9199 eliminate 
9200 AE_AML_NO_RETURN_VALUE errors when enabled.
9201
9202 Implemented implicit conversion support for the predicate (operand) of 
9203 the 
9204 If, Else, and While operators. String and Buffer arguments are 
9205 automatically 
9206 converted to Integers.
9207
9208 Changed the string-to-integer conversion behavior to match the new ACPI 
9209 errata: "If no integer object exists, a new integer is created. The ASCII 
9210 string is interpreted as a hexadecimal constant. Each string character is 
9211 interpreted as a hexadecimal value ('0'-'9', 'A'-'F', 'a', 'f'), starting 
9212 with the first character as the most significant digit, and ending with 
9213 the 
9214 first non-hexadecimal character or end-of-string." This means that the 
9215 first 
9216 non-hex character terminates the conversion and this is the code that was 
9217 changed.
9218
9219 Fixed a problem where the ObjectType operator would fail (fault) when 
9220 used 
9221 on an Index of a Package which pointed to a null package element. The 
9222 operator now properly returns zero (Uninitialized) in this case.
9223
9224 Fixed a problem where the While operator used excessive memory by not 
9225 properly popping the result stack during execution. There was no memory 
9226 leak 
9227 after execution, however. (Code provided by Valery Podrezov.)
9228
9229 Fixed a problem where references to control methods within Package 
9230 objects 
9231 caused the method to be invoked, instead of producing a reference object 
9232 pointing to the method.
9233
9234 Restructured and simplified the pswalk.c module (AcpiPsDeleteParseTree) 
9235 to 
9236 improve performance and reduce code size. (Code provided by Alexey 
9237 Starikovskiy.)
9238
9239 Code and Data Size: Current and previous core subsystem library sizes are 
9240 shown below. These are the code and data sizes for the acpica.lib 
9241 produced 
9242 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9243 any ACPI driver or OSPM code. The debug version of the code includes the 
9244 debug output trace mechanism and has a much larger code and data size. 
9245 Note 
9246 that these values will vary depending on the efficiency of the compiler 
9247 and 
9248 the compiler options used during generation.
9249
9250   Previous Release:
9251     Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
9252     Debug Version:     165.4K Code, 69.6K Data, 236.0K Total
9253   Current Release:
9254     Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
9255     Debug Version:     165.4K Code, 69.7K Data, 236.1K Total
9256
9257
9258 2) iASL Compiler/Disassembler:
9259
9260 Fixed a problem with the Return operator with no arguments. Since the AML 
9261 grammar for the byte encoding requires an operand for the Return opcode, 
9262 the 
9263 compiler now emits a Return(Zero) for this case.  An ACPI specification 
9264 update has been written for this case.
9265
9266 For tables other than the DSDT, namepath optimization is automatically 
9267 disabled. This is because SSDTs can be loaded anywhere in the namespace, 
9268 the 
9269 compiler has no knowledge of where, and thus cannot optimize namepaths.
9270
9271 Added "ProcessorObj" to the ObjectTypeKeyword list. This object type was 
9272 inadvertently omitted from the ACPI specification, and will require an 
9273 update to the spec.
9274
9275 The source file scan for ASCII characters is now optional (-a). This 
9276 change 
9277 was made because some vendors place non-ascii characters within comments. 
9278 However, the scan is simply a brute-force byte compare to ensure all 
9279 characters in the file are in the range 0x00 to 0x7F.
9280
9281 Fixed a problem with the CondRefOf operator where the compiler was 
9282 inappropriately checking for the existence of the target. Since the point 
9283 of 
9284 the operator is to check for the existence of the target at run-time, the 
9285 compiler no longer checks for the target existence.
9286
9287 Fixed a problem where errors generated from the internal AML interpreter 
9288 during constant folding were not handled properly, causing a fault.
9289
9290 Fixed a problem with overly aggressive range checking for the Stall 
9291 operator. The valid range (max 255) is now only checked if the operand is 
9292 of 
9293 type Integer. All other operand types cannot be statically checked.
9294
9295 Fixed a problem where control method references within the RefOf, 
9296 DeRefOf, 
9297 and ObjectType operators were not treated properly. They are now treated 
9298 as 
9299 actual references, not method invocations.
9300
9301 Fixed and enhanced the "list namespace" option (-ln). This option was 
9302 broken 
9303 a number of releases ago.
9304
9305 Improved error handling for the Field, IndexField, and BankField 
9306 operators. 
9307 The compiler now cleanly reports and recovers from errors in the field 
9308 component (FieldUnit) list.
9309
9310 Fixed a disassembler problem where the optional ResourceDescriptor fields 
9311 TRS and TTP were not always handled correctly.
9312
9313 Disassembler - Comments in output now use "//" instead of "/*"
9314
9315 ----------------------------------------
9316 28 February 2005.  Summary of changes for version 20050228:
9317
9318 1) ACPI CA Core Subsystem:
9319
9320 Fixed a problem where the result of an Index() operator (an object 
9321 reference) must increment the reference count on the target object for 
9322 the 
9323 life of the object reference.
9324
9325 Implemented AML Interpreter and Debugger support for the new ACPI 3.0 
9326 Extended Address (IO, Memory, Space), QwordSpace, DwordSpace, and 
9327 WordSpace 
9328 resource descriptors.
9329
9330 Implemented support in the _OSI method for the ACPI 3.0 "Extended Address 
9331 Space Descriptor" string, indicating interpreter support for the 
9332 descriptors 
9333 above.
9334
9335 Implemented header support for the new ACPI 3.0 FADT flag bits.
9336
9337 Implemented header support for the new ACPI 3.0 PCI Express bits for the 
9338 PM1 
9339 status/enable registers.
9340
9341 Updated header support for the MADT processor local Apic struct and MADT 
9342 platform interrupt source struct for new ACPI 3.0 fields.
9343
9344 Implemented header support for the SRAT and SLIT ACPI tables.
9345
9346 Implemented the -s switch in AcpiExec to enable the "InterpreterSlack" 
9347 flag 
9348 at runtime.
9349
9350 Code and Data Size: Current and previous core subsystem library sizes are 
9351 shown below. These are the code and data sizes for the acpica.lib 
9352 produced 
9353 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9354 any ACPI driver or OSPM code. The debug version of the code includes the 
9355 debug output trace mechanism and has a much larger code and data size. 
9356 Note 
9357 that these values will vary depending on the efficiency of the compiler 
9358 and 
9359 the compiler options used during generation.
9360
9361   Previous Release:
9362     Non-Debug Version:  78.2K Code, 11.5K Data,  89.7K Total
9363     Debug Version:     164.9K Code, 69.2K Data, 234.1K Total
9364   Current Release:
9365     Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
9366     Debug Version:     165.4K Code, 69.6K Data, 236.0K Total
9367
9368
9369 2) iASL Compiler/Disassembler:
9370
9371 Fixed a problem with the internal 64-bit String-to-integer conversion 
9372 with 
9373 strings less than two characters long.
9374
9375 Fixed a problem with constant folding where the result of the Index() 
9376 operator can not be considered a constant. This means that Index() cannot 
9377 be 
9378 a type3 opcode and this will require an update to the ACPI specification.
9379
9380 Disassembler: Implemented support for the TTP, MTP, and TRS resource 
9381 descriptor fields. These fields were inadvertently ignored and not output 
9382 in 
9383 the disassembly of the resource descriptor.
9384
9385
9386  ----------------------------------------
9387 11 February 2005.  Summary of changes for version 20050211:
9388
9389 1) ACPI CA Core Subsystem:
9390
9391 Implemented ACPI 3.0 support for implicit conversion within the Match() 
9392 operator. MatchObjects can now be of type integer, buffer, or string 
9393 instead 
9394 of just type integer.  Package elements are implicitly converted to the 
9395 type 
9396 of the MatchObject. This change aligns the behavior of Match() with the 
9397 behavior of the other logical operators (LLess(), etc.) It also requires 
9398 an 
9399 errata change to the ACPI specification as this support was intended for 
9400 ACPI 3.0, but was inadvertently omitted.
9401
9402 Fixed a problem with the internal implicit "to buffer" conversion. 
9403 Strings 
9404 that are converted to buffers will cause buffer truncation if the string 
9405 is 
9406 smaller than the target buffer. Integers that are converted to buffers 
9407 will 
9408 not cause buffer truncation, only zero extension (both as per the ACPI 
9409 spec.) The problem was introduced when code was added to truncate the 
9410 buffer, but this should not be performed in all cases, only the string 
9411 case.
9412
9413 Fixed a problem with the Buffer and Package operators where the 
9414 interpreter 
9415 would get confused if two such operators were used as operands to an ASL 
9416 operator (such as LLess(Buffer(1){0},Buffer(1){1}). The internal result 
9417 stack was not being popped after the execution of these operators, 
9418 resulting 
9419 in an AE_NO_RETURN_VALUE exception.
9420
9421 Fixed a problem with constructs of the form Store(Index(...),...). The 
9422 reference object returned from Index was inadvertently resolved to an 
9423 actual 
9424 value. This problem was introduced in version 20050114 when the behavior 
9425 of 
9426 Store() was modified to restrict the object types that can be used as the 
9427 source operand (to match the ACPI specification.)
9428
9429 Reduced excessive stack use within the AcpiGetObjectInfo procedure.
9430
9431 Added a fix to aclinux.h to allow generation of AcpiExec on Linux.
9432
9433 Updated the AcpiSrc utility to add the FADT_DESCRIPTOR_REV2_MINUS struct.
9434
9435 Code and Data Size: Current and previous core subsystem library sizes are 
9436 shown below. These are the code and data sizes for the acpica.lib 
9437 produced 
9438 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9439 any ACPI driver or OSPM code. The debug version of the code includes the 
9440 debug output trace mechanism and has a much larger code and data size. 
9441 Note 
9442 that these values will vary depending on the efficiency of the compiler 
9443 and 
9444 the compiler options used during generation.
9445
9446   Previous Release:
9447     Non-Debug Version:  78.1K Code, 11.5K Data,  89.6K Total
9448     Debug Version:     164.8K Code, 69.2K Data, 234.0K Total
9449   Current Release:
9450     Non-Debug Version:  78.2K Code, 11.5K Data,  89.7K Total
9451     Debug Version:     164.9K Code, 69.2K Data, 234.1K Total
9452
9453
9454 2) iASL Compiler/Disassembler:
9455
9456 Fixed a code generation problem in the constant folding optimization code 
9457 where incorrect code was generated if a constant was reduced to a buffer 
9458 object (i.e., a reduced type 5 opcode.)
9459
9460 Fixed a typechecking problem for the ToBuffer operator. Caused by an 
9461 incorrect return type in the internal opcode information table.
9462
9463 ----------------------------------------
9464 25 January 2005.  Summary of changes for version 20050125:
9465
9466 1) ACPI CA Core Subsystem:
9467
9468 Fixed a recently introduced problem with the Global Lock where the 
9469 underlying semaphore was not created.  This problem was introduced in 
9470 version 20050114, and caused an AE_AML_NO_OPERAND exception during an 
9471 Acquire() operation on _GL.
9472
9473 The local object cache is now optional, and is disabled by default. Both 
9474 AcpiExec and the iASL compiler enable the cache because they run in user 
9475 mode and this enhances their performance. #define 
9476 ACPI_ENABLE_OBJECT_CACHE 
9477 to enable the local cache.
9478
9479 Fixed an issue in the internal function AcpiUtEvaluateObject concerning 
9480 the 
9481 optional "implicit return" support where an error was returned if no 
9482 return 
9483 object was expected, but one was implicitly returned. AE_OK is now 
9484 returned 
9485 in this case and the implicitly returned object is deleted. 
9486 AcpiUtEvaluateObject is only occasionally used, and only to execute 
9487 reserved 
9488 methods such as _STA and _INI where the return type is known up front.
9489
9490 Fixed a few issues with the internal convert-to-integer code. It now 
9491 returns 
9492 an error if an attempt is made to convert a null string, a string of only 
9493 blanks/tabs, or a zero-length buffer. This affects both implicit 
9494 conversion 
9495 and explicit conversion via the ToInteger() operator.
9496
9497 The internal debug code in AcpiUtAcquireMutex has been commented out. It 
9498 is 
9499 not needed for normal operation and should increase the performance of 
9500 the 
9501 entire subsystem. The code remains in case it is needed for debug 
9502 purposes 
9503 again.
9504
9505 The AcpiExec source and makefile are included in the Unix/Linux package 
9506 for 
9507 the first time.
9508
9509 Code and Data Size: Current and previous core subsystem library sizes are 
9510 shown below. These are the code and data sizes for the acpica.lib 
9511 produced 
9512 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9513 any ACPI driver or OSPM code. The debug version of the code includes the 
9514 debug output trace mechanism and has a much larger code and data size. 
9515 Note 
9516 that these values will vary depending on the efficiency of the compiler 
9517 and 
9518 the compiler options used during generation.
9519
9520   Previous Release:
9521     Non-Debug Version:  78.4K Code,  11.5K Data,   89.9K Total
9522     Debug Version:     165.4K Code,  69.4K Data,  234.8K Total
9523   Current Release:
9524     Non-Debug Version:  78.1K Code,  11.5K Data,   89.6K Total
9525     Debug Version:     164.8K Code,  69.2K Data,  234.0K Total
9526
9527 2) iASL Compiler/Disassembler:
9528
9529 Switch/Case support: A warning is now issued if the type of the Switch 
9530 value 
9531 cannot be determined at compile time. For example, Switch(Arg0) will 
9532 generate the warning, and the type is assumed to be an integer. As per 
9533 the 
9534 ACPI spec, use a construct such as Switch(ToInteger(Arg0)) to eliminate 
9535 the 
9536 warning.
9537
9538 Switch/Case support: Implemented support for buffer and string objects as 
9539 the switch value.  This is an ACPI 3.0 feature, now that LEqual supports 
9540 buffers and strings.
9541
9542 Switch/Case support: The emitted code for the LEqual() comparisons now 
9543 uses 
9544 the switch value as the first operand, not the second. The case value is 
9545 now 
9546 the second operand, and this allows the case value to be implicitly 
9547 converted to the type of the switch value, not the other way around.
9548
9549 Switch/Case support: Temporary variables are now emitted immediately 
9550 within 
9551 the control method, not at the global level. This means that there are 
9552 now 
9553 36 temps available per-method, not 36 temps per-module as was the case 
9554 with 
9555 the earlier implementation (_T_0 through _T_9 and _T_A through _T_Z.)
9556
9557 ----------------------------------------
9558 14 January 2005.  Summary of changes for version 20050114:
9559
9560 Added 2005 copyright to all module headers.  This affects every module in 
9561 the core subsystem, iASL compiler, and the utilities.
9562
9563 1) ACPI CA Core Subsystem:
9564
9565 Fixed an issue with the String-to-Buffer conversion code where the string 
9566 null terminator was not included in the buffer after conversion, but 
9567 there 
9568 is existing ASL that assumes the string null terminator is included. This 
9569 is 
9570 the root of the ACPI_AML_BUFFER_LIMIT regression. This problem was 
9571 introduced in the previous version when the code was updated to correctly 
9572 set the converted buffer size as per the ACPI specification. The ACPI 
9573 spec 
9574 is ambiguous and will be updated to specify that the null terminator must 
9575 be 
9576 included in the converted buffer. This also affects the ToBuffer() ASL 
9577 operator.
9578
9579 Fixed a problem with the Mid() ASL/AML operator where it did not work 
9580 correctly on Buffer objects. Newly created sub-buffers were not being 
9581 marked 
9582 as initialized.
9583
9584
9585 Fixed a problem in AcpiTbFindTable where incorrect string compares were 
9586 performed on the OemId and OemTableId table header fields.  These fields 
9587 are 
9588 not null terminated, so strncmp is now used instead of strcmp.
9589
9590 Implemented a restriction on the Store() ASL/AML operator to align the 
9591 behavior with the ACPI specification.  Previously, any object could be 
9592 used 
9593 as the source operand.  Now, the only objects that may be used are 
9594 Integers, 
9595 Buffers, Strings, Packages, Object References, and DDB Handles.  If 
9596 necessary, the original behavior can be restored by enabling the 
9597 EnableInterpreterSlack flag.
9598
9599 Enhanced the optional "implicit return" support to allow an implicit 
9600 return 
9601 value from methods that are invoked externally via the AcpiEvaluateObject 
9602 interface.  This enables implicit returns from the _STA and _INI methods, 
9603 for example.
9604
9605 Changed the Revision() ASL/AML operator to return the current version of 
9606 the 
9607 AML interpreter, in the YYYYMMDD format. Previously, it incorrectly 
9608 returned 
9609 the supported ACPI version (This is the function of the _REV method).
9610
9611 Updated the _REV predefined method to return the currently supported 
9612 version 
9613 of ACPI, now 3.
9614
9615 Implemented batch mode option for the AcpiExec utility (-b).
9616
9617 Code and Data Size: Current and previous core subsystem library sizes are 
9618 shown below. These are the code and data sizes for the acpica.lib 
9619 produced 
9620 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9621 any ACPI driver or OSPM code. The debug version of the code includes the 
9622 debug output trace mechanism and has a much larger code and data size. 
9623 Note 
9624 that these values will vary depending on the efficiency of the compiler 
9625 and 
9626 the compiler options used during generation.
9627
9628   Previous Release:
9629     Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
9630     Debug Version:     165.3K Code,  69.4K Data,  234.7K Total
9631   Current Release:
9632     Non-Debug Version:  78.4K Code,  11.5K Data,   89.9K Total
9633     Debug Version:     165.4K Code,  69.4K Data,  234.8K Total
9634
9635 ----------------------------------------
9636 10 December 2004.  Summary of changes for version 20041210:
9637
9638 ACPI 3.0 support is nearing completion in both the iASL compiler and the 
9639 ACPI CA core subsystem.
9640
9641 1) ACPI CA Core Subsystem:
9642
9643 Fixed a problem in the ToDecimalString operator where the resulting 
9644 string 
9645 length was incorrectly calculated. The length is now calculated exactly, 
9646 eliminating incorrect AE_STRING_LIMIT exceptions.
9647
9648 Fixed a problem in the ToHexString operator to allow a maximum 200 
9649 character 
9650 string to be produced.
9651
9652 Fixed a problem in the internal string-to-buffer and buffer-to-buffer 
9653 copy 
9654 routine where the length of the resulting buffer was not truncated to the 
9655 new size (if the target buffer already existed).
9656
9657 Code and Data Size: Current and previous core subsystem library sizes are 
9658 shown below. These are the code and data sizes for the acpica.lib 
9659 produced 
9660 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9661 any ACPI driver or OSPM code. The debug version of the code includes the 
9662 debug output trace mechanism and has a much larger code and data size. 
9663 Note 
9664 that these values will vary depending on the efficiency of the compiler 
9665 and 
9666 the compiler options used during generation.
9667
9668   Previous Release:
9669     Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
9670     Debug Version:     164.7K Code,  68.5K Data,  233.2K Total
9671   Current Release:
9672     Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
9673     Debug Version:     165.3K Code,  69.4K Data,  234.7K Total
9674
9675
9676 2) iASL Compiler/Disassembler:
9677
9678 Implemented the new ACPI 3.0 resource template macros - DWordSpace, 
9679 ExtendedIO, ExtendedMemory, ExtendedSpace, QWordSpace, and WordSpace. 
9680 Includes support in the disassembler.
9681
9682 Implemented support for the new (ACPI 3.0) parameter to the Register 
9683 macro, 
9684 AccessSize.
9685
9686 Fixed a problem where the _HE resource name for the Interrupt macro was 
9687 referencing bit 0 instead of bit 1.
9688
9689 Implemented check for maximum 255 interrupts in the Interrupt macro.
9690
9691 Fixed a problem with the predefined resource descriptor names where 
9692 incorrect AML code was generated if the offset within the resource buffer 
9693 was 0 or 1.  The optimizer shortened the AML code to a single byte opcode 
9694 but did not update the surrounding package lengths.
9695
9696 Changes to the Dma macro:  All channels within the channel list must be 
9697 in 
9698 the range 0-7.  Maximum 8 channels can be specified. BusMaster operand is 
9699 optional (default is BusMaster).
9700
9701 Implemented check for maximum 7 data bytes for the VendorShort macro.
9702
9703 The ReadWrite parameter is now optional for the Memory32 and similar 
9704 macros.
9705
9706 ----------------------------------------
9707 03 December 2004.  Summary of changes for version 20041203:
9708
9709 1) ACPI CA Core Subsystem:
9710
9711 The low-level field insertion/extraction code (exfldio) has been 
9712 completely 
9713 rewritten to eliminate unnecessary complexity, bugs, and boundary 
9714 conditions.
9715
9716 Fixed a problem in the ToInteger, ToBuffer, ToHexString, and 
9717 ToDecimalString 
9718 operators where the input operand could be inadvertently deleted if no 
9719 conversion was necessary (e.g., if the input to ToInteger was an Integer 
9720 object.)
9721
9722 Fixed a problem with the ToDecimalString and ToHexString where an 
9723 incorrect 
9724 exception code was returned if the resulting string would be > 200 chars.  
9725 AE_STRING_LIMIT is now returned.
9726
9727 Fixed a problem with the Concatenate operator where AE_OK was always 
9728 returned, even if the operation failed.
9729
9730 Fixed a problem in oswinxf (used by AcpiExec and iASL) to allow > 128 
9731 semaphores to be allocated.
9732
9733 Code and Data Size: Current and previous core subsystem library sizes are 
9734 shown below. These are the code and data sizes for the acpica.lib 
9735 produced 
9736 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9737 any ACPI driver or OSPM code. The debug version of the code includes the 
9738 debug output trace mechanism and has a much larger code and data size. 
9739 Note 
9740 that these values will vary depending on the efficiency of the compiler 
9741 and 
9742 the compiler options used during generation.
9743
9744   Previous Release:
9745     Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
9746     Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
9747   Current Release:
9748     Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
9749     Debug Version:     164.7K Code,  68.5K Data,  233.2K Total
9750
9751
9752 2) iASL Compiler/Disassembler:
9753
9754 Fixed typechecking for the ObjectType and SizeOf operators.  Problem was 
9755 recently introduced in 20041119.
9756
9757 Fixed a problem with the ToUUID macro where the upper nybble of each 
9758 buffer 
9759 byte was inadvertently set to zero.
9760
9761 ----------------------------------------
9762 19 November 2004.  Summary of changes for version 20041119:
9763
9764 1) ACPI CA Core Subsystem:
9765
9766 Fixed a problem in the internal ConvertToInteger routine where new 
9767 integers 
9768 were not truncated to 32 bits for 32-bit ACPI tables. This routine 
9769 converts 
9770 buffers and strings to integers.
9771
9772 Implemented support to store a value to an Index() on a String object. 
9773 This 
9774 is an ACPI 2.0 feature that had not yet been implemented.
9775
9776 Implemented new behavior for storing objects to individual package 
9777 elements 
9778 (via the Index() operator). The previous behavior was to invoke the 
9779 implicit 
9780 conversion rules if an object was already present at the index.  The new 
9781 behavior is to simply delete any existing object and directly store the 
9782 new 
9783 object. Although the ACPI specification seems unclear on this subject, 
9784 other 
9785 ACPI implementations behave in this manner.  (This is the root of the 
9786 AE_BAD_HEX_CONSTANT issue.)
9787
9788 Modified the RSDP memory scan mechanism to support the extended checksum 
9789 for 
9790 ACPI 2.0 (and above) RSDPs. Note that the search continues until a valid 
9791 RSDP signature is found with a valid checksum.
9792
9793 Code and Data Size: Current and previous core subsystem library sizes are 
9794 shown below. These are the code and data sizes for the acpica.lib 
9795 produced 
9796 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9797 any ACPI driver or OSPM code. The debug version of the code includes the 
9798 debug output trace mechanism and has a much larger code and data size. 
9799 Note 
9800 that these values will vary depending on the efficiency of the compiler 
9801 and 
9802 the compiler options used during generation.
9803
9804   Previous Release:
9805     Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
9806     Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
9807   Current Release:
9808     Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
9809     Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
9810
9811
9812 2) iASL Compiler/Disassembler:
9813
9814 Fixed a missing semicolon in the aslcompiler.y file.
9815
9816 ----------------------------------------
9817 05 November 2004.  Summary of changes for version 20041105:
9818
9819 1) ACPI CA Core Subsystem:
9820
9821 Implemented support for FADT revision 2.  This was an interim table 
9822 (between 
9823 ACPI 1.0 and ACPI 2.0) that adds support for the FADT reset register.
9824
9825 Implemented optional support to allow uninitialized LocalX and ArgX 
9826 variables in a control method.  The variables are initialized to an 
9827 Integer 
9828 object with a value of zero.  This support is enabled by setting the 
9829 AcpiGbl_EnableInterpreterSlack flag to TRUE.
9830
9831 Implemented support for Integer objects for the SizeOf operator.  Either 
9832
9833 or 8 is returned, depending on the current integer size (32-bit or 64-
9834 bit, 
9835 depending on the parent table revision).
9836
9837 Fixed a problem in the implementation of the SizeOf and ObjectType 
9838 operators 
9839 where the operand was resolved to a value too early, causing incorrect 
9840 return values for some objects.
9841
9842 Fixed some possible memory leaks during exceptional conditions.
9843
9844 Code and Data Size: Current and previous core subsystem library sizes are 
9845 shown below. These are the code and data sizes for the acpica.lib 
9846 produced 
9847 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9848 any ACPI driver or OSPM code. The debug version of the code includes the 
9849 debug output trace mechanism and has a much larger code and data size. 
9850 Note 
9851 that these values will vary depending on the efficiency of the compiler 
9852 and 
9853 the compiler options used during generation.
9854
9855   Previous Release:
9856     Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
9857     Debug Version:     164.8K Code,  68.6K Data,  233.4K Total
9858   Current Release:
9859     Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
9860     Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
9861
9862
9863 2) iASL Compiler/Disassembler:
9864
9865 Implemented support for all ACPI 3.0 reserved names and methods.
9866
9867 Implemented all ACPI 3.0 grammar elements in the front-end, including 
9868 support for semicolons.
9869
9870 Implemented the ACPI 3.0 Function() and ToUUID() macros
9871
9872 Fixed a problem in the disassembler where a Scope() operator would not be 
9873 emitted properly if the target of the scope was in another table.
9874
9875 ----------------------------------------
9876 15 October 2004.  Summary of changes for version 20041015:
9877
9878 Note:  ACPI CA is currently undergoing an in-depth and complete formal 
9879 evaluation to test/verify the following areas. Other suggestions are 
9880 welcome. This will result in an increase in the frequency of releases and 
9881 the number of bug fixes in the next few months.
9882   - Functional tests for all ASL/AML operators
9883   - All implicit/explicit type conversions
9884   - Bit fields and operation regions
9885   - 64-bit math support and 32-bit-only "truncated" math support
9886   - Exceptional conditions, both compiler and interpreter
9887   - Dynamic object deletion and memory leaks
9888   - ACPI 3.0 support when implemented
9889   - External interfaces to the ACPI subsystem
9890
9891
9892 1) ACPI CA Core Subsystem:
9893
9894 Fixed two alignment issues on 64-bit platforms - within debug statements 
9895 in 
9896 AcpiEvGpeDetect and AcpiEvCreateGpeBlock. Removed references to the 
9897 Address 
9898 field within the non-aligned ACPI generic address structure.
9899
9900 Fixed a problem in the Increment and Decrement operators where incorrect 
9901 operand resolution could result in the inadvertent modification of the 
9902 original integer when the integer is passed into another method as an 
9903 argument and the arg is then incremented/decremented.
9904
9905 Fixed a problem in the FromBCD operator where the upper 32-bits of a 64-
9906 bit 
9907 BCD number were truncated during conversion.
9908
9909 Fixed a problem in the ToDecimal operator where the length of the 
9910 resulting 
9911 string could be set incorrectly too long if the input operand was a 
9912 Buffer 
9913 object.
9914
9915 Fixed a problem in the Logical operators (LLess, etc.) where a NULL byte 
9916 (0) 
9917 within a buffer would prematurely terminate a compare between buffer 
9918 objects.
9919
9920 Added a check for string overflow (>200 characters as per the ACPI 
9921 specification) during the Concatenate operator with two string operands.
9922
9923 Code and Data Size: Current and previous core subsystem library sizes are 
9924 shown below. These are the code and data sizes for the acpica.lib 
9925 produced 
9926 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9927 any ACPI driver or OSPM code. The debug version of the code includes the 
9928 debug output trace mechanism and has a much larger code and data size. 
9929 Note 
9930 that these values will vary depending on the efficiency of the compiler 
9931 and 
9932 the compiler options used during generation.
9933
9934   Previous Release:
9935     Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
9936     Debug Version:     164.6K Code,  68.5K Data,  233.1K Total
9937   Current Release:
9938     Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
9939     Debug Version:     164.8K Code,  68.6K Data,  233.4K Total
9940
9941
9942
9943 2) iASL Compiler/Disassembler:
9944
9945 Allow the use of the ObjectType operator on uninitialized Locals and Args 
9946 (returns 0 as per the ACPI specification).
9947
9948 Fixed a problem where the compiler would fault if there was a syntax 
9949 error 
9950 in the FieldName of all of the various CreateXXXField operators.
9951
9952 Disallow the use of lower case letters within the EISAID macro, as per 
9953 the 
9954 ACPI specification.  All EISAID strings must be of the form "UUUNNNN" 
9955 Where 
9956 U is an uppercase letter and N is a hex digit.
9957
9958
9959 ----------------------------------------
9960 06 October 2004.  Summary of changes for version 20041006:
9961
9962 1) ACPI CA Core Subsystem:
9963
9964 Implemented support for the ACPI 3.0 Timer operator. This ASL function 
9965 implements a 64-bit timer with 100 nanosecond granularity.
9966
9967 Defined a new OSL interface, AcpiOsGetTimer. This interface is used to 
9968 implement the ACPI 3.0 Timer operator.  This allows the host OS to 
9969 implement 
9970 the timer with the best clock available. Also, it keeps the core 
9971 subsystem 
9972 out of the clock handling business, since the host OS (usually) performs 
9973 this function.
9974
9975 Fixed an alignment issue on 64-bit platforms. The HwLowLevelRead(Write) 
9976 functions use a 64-bit address which is part of the packed ACPI Generic 
9977 Address Structure. Since the structure is non-aligned, the alignment 
9978 macros 
9979 are now used to extract the address to a local variable before use.
9980
9981 Fixed a problem where the ToInteger operator assumed all input strings 
9982 were 
9983 hexadecimal. The operator now handles both decimal strings and hex 
9984 strings 
9985 (prefixed with "0x").
9986
9987 Fixed a problem where the string length in the string object created as a 
9988 result of the internal ConvertToString procedure could be incorrect. This 
9989 potentially affected all implicit conversions and also the 
9990 ToDecimalString 
9991 and ToHexString operators.
9992
9993 Fixed two problems in the ToString operator. If the length parameter was 
9994 zero, an incorrect string object was created and the value of the input 
9995 length parameter was inadvertently changed from zero to Ones.
9996
9997 Fixed a problem where the optional ResourceSource string in the 
9998 ExtendedIRQ 
9999 resource macro was ignored.
10000
10001 Simplified the interfaces to the internal division functions, reducing 
10002 code 
10003 size and complexity.
10004
10005 Code and Data Size: Current and previous core subsystem library sizes are 
10006 shown below. These are the code and data sizes for the acpica.lib 
10007 produced 
10008 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10009 any ACPI driver or OSPM code. The debug version of the code includes the 
10010 debug output trace mechanism and has a much larger code and data size. 
10011 Note 
10012 that these values will vary depending on the efficiency of the compiler 
10013 and 
10014 the compiler options used during generation.
10015
10016   Previous Release:
10017     Non-Debug Version:  77.9K Code,  11.4K Data,   89.3K Total
10018     Debug Version:     164.5K Code,  68.3K Data,  232.8K Total
10019   Current Release:
10020     Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
10021     Debug Version:     164.6K Code,  68.5K Data,  233.1K Total
10022
10023
10024 2) iASL Compiler/Disassembler:
10025
10026 Implemented support for the ACPI 3.0 Timer operator.
10027
10028 Fixed a problem where the Default() operator was inadvertently ignored in 
10029
10030 Switch/Case block.  This was a problem in the translation of the Switch 
10031 statement to If...Else pairs.
10032
10033 Added support to allow a standalone Return operator, with no parentheses 
10034 (or 
10035 operands).
10036
10037 Fixed a problem with code generation for the ElseIf operator where the 
10038 translated Else...If parse tree was improperly constructed leading to the 
10039 loss of some code.
10040
10041 ----------------------------------------
10042 22 September 2004.  Summary of changes for version 20040922:
10043
10044 1) ACPI CA Core Subsystem:
10045
10046 Fixed a problem with the implementation of the LNot() operator where 
10047 "Ones" 
10048 was not returned for the TRUE case. Changed the code to return Ones 
10049 instead 
10050 of (!Arg) which was usually 1. This change affects iASL constant folding 
10051 for 
10052 this operator also.
10053
10054 Fixed a problem in AcpiUtInitializeBuffer where an existing buffer was 
10055 not 
10056 initialized properly -- Now zero the entire buffer in this case where the 
10057 buffer already exists.
10058
10059 Changed the interface to AcpiOsSleep from (UINT32 Seconds, UINT32 
10060 Milliseconds) to simply (ACPI_INTEGER Milliseconds). This simplifies all 
10061 related code considerably. This will require changes/updates to all OS 
10062 interface layers (OSLs.)
10063
10064 Implemented a new external interface, AcpiInstallExceptionHandler, to 
10065 allow 
10066 a system exception handler to be installed. This handler is invoked upon 
10067 any 
10068 run-time exception that occurs during control method execution.
10069
10070 Added support for the DSDT in AcpiTbFindTable. This allows the 
10071 DataTableRegion() operator to access the local copy of the DSDT.
10072
10073 Code and Data Size: Current and previous core subsystem library sizes are 
10074 shown below. These are the code and data sizes for the acpica.lib 
10075 produced 
10076 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10077 any ACPI driver or OSPM code. The debug version of the code includes the 
10078 debug output trace mechanism and has a much larger code and data size. 
10079 Note 
10080 that these values will vary depending on the efficiency of the compiler 
10081 and 
10082 the compiler options used during generation.
10083
10084   Previous Release:
10085     Non-Debug Version:  77.8K Code,  11.4K Data,   89.2K Total
10086     Debug Version:     164.2K Code,  68.2K Data,  232.4K Total
10087   Current Release:
10088     Non-Debug Version:  77.9K Code,  11.4K Data,   89.3K Total
10089     Debug Version:     164.5K Code,  68.3K Data,  232.8K Total
10090
10091
10092 2) iASL Compiler/Disassembler:
10093
10094 Fixed a problem with constant folding and the LNot operator. LNot was 
10095 returning 1 in the TRUE case, not Ones as per the ACPI specification. 
10096 This 
10097 could result in the generation of an incorrect folded/reduced constant.
10098
10099 End-Of-File is now allowed within a "//"-style comment.  A parse error no 
10100 longer occurs if such a comment is at the very end of the input ASL 
10101 source 
10102 file.
10103
10104 Implemented the "-r" option to override the Revision in the table header. 
10105 The initial use of this option will be to simplify the evaluation of the 
10106 AML 
10107 interpreter by allowing a single ASL source module to be compiled for 
10108 either 
10109 32-bit or 64-bit integers.
10110
10111
10112 ----------------------------------------
10113 27 August 2004.  Summary of changes for version 20040827:
10114
10115 1) ACPI CA Core Subsystem:
10116
10117 - Implemented support for implicit object conversion in the non-numeric 
10118 logical operators (LEqual, LGreater, LGreaterEqual, LLess, LLessEqual, 
10119 and 
10120 LNotEqual.)  Any combination of Integers/Strings/Buffers may now be used; 
10121 the second operand is implicitly converted on the fly to match the type 
10122 of 
10123 the first operand.  For example:
10124
10125     LEqual (Source1, Source2)
10126
10127 Source1 and Source2 must each evaluate to an integer, a string, or a 
10128 buffer. 
10129 The data type of Source1 dictates the required type of Source2. Source2 
10130 is 
10131 implicitly converted if necessary to match the type of Source1.
10132
10133 - Updated and corrected the behavior of the string conversion support.  
10134 The 
10135 rules concerning conversion of buffers to strings (according to the ACPI 
10136 specification) are as follows:
10137
10138 ToDecimalString - explicit byte-wise conversion of buffer to string of 
10139 decimal values (0-255) separated by commas. ToHexString - explicit byte-
10140 wise 
10141 conversion of buffer to string of hex values (0-FF) separated by commas. 
10142 ToString - explicit byte-wise conversion of buffer to string.  Byte-by-
10143 byte 
10144 copy with no transform except NULL terminated. Any other implicit buffer-
10145 to-
10146 string conversion - byte-wise conversion of buffer to string of hex 
10147 values 
10148 (0-FF) separated by spaces.
10149
10150 - Fixed typo in definition of AcpiGbl_EnableInterpreterSlack.
10151
10152 - Fixed a problem in AcpiNsGetPathnameLength where the returned length 
10153 was 
10154 one byte too short in the case of a node in the root scope.  This could 
10155 cause a fault during debug output.
10156
10157 - Code and Data Size: Current and previous core subsystem library sizes 
10158 are 
10159 shown below.  These are the code and data sizes for the acpica.lib 
10160 produced 
10161 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10162 any ACPI driver or OSPM code.  The debug version of the code includes the 
10163 debug output trace mechanism and has a much larger code and data size.  
10164 Note 
10165 that these values will vary depending on the efficiency of the compiler 
10166 and 
10167 the compiler options used during generation.
10168
10169   Previous Release:
10170     Non-Debug Version:  77.9K Code,  11.5K Data,   89.4K Total
10171     Debug Version:     164.1K Code,  68.3K Data,  232.4K Total
10172   Current Release:
10173     Non-Debug Version:  77.8K Code,  11.4K Data,   89.2K Total
10174     Debug Version:     164.2K Code,  68.2K Data,  232.4K Total
10175
10176
10177 2) iASL Compiler/Disassembler:
10178
10179 - Fixed a Linux generation error.
10180
10181
10182 ----------------------------------------
10183 16 August 2004.  Summary of changes for version 20040816:
10184
10185 1) ACPI CA Core Subsystem:
10186
10187 Designed and implemented support within the AML interpreter for the so-
10188 called "implicit return".  This support returns the result of the last 
10189 ASL 
10190 operation within a control method, in the absence of an explicit Return() 
10191 operator.  A few machines depend on this behavior, even though it is not 
10192 explicitly supported by the ASL language.  It is optional support that 
10193 can 
10194 be enabled at runtime via the AcpiGbl_EnableInterpreterSlack flag.
10195
10196 Removed support for the PCI_Config address space from the internal low 
10197 level 
10198 hardware interfaces (AcpiHwLowLevelRead and AcpiHwLowLevelWrite).  This 
10199 support was not used internally, and would not work correctly anyway 
10200 because 
10201 the PCI bus number and segment number were not supported.  There are 
10202 separate interfaces for PCI configuration space access because of the 
10203 unique 
10204 interface.
10205
10206 Code and Data Size: Current and previous core subsystem library sizes are 
10207 shown below.  These are the code and data sizes for the acpica.lib 
10208 produced 
10209 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10210 any ACPI driver or OSPM code.  The debug version of the code includes the 
10211 debug output trace mechanism and has a much larger code and data size.  
10212 Note 
10213 that these values will vary depending on the efficiency of the compiler 
10214 and 
10215 the compiler options used during generation.
10216
10217   Previous Release:
10218     Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
10219     Debug Version:     164.1K Code,  68.2K Data,  232.3K Total
10220   Current Release:
10221     Non-Debug Version:  77.9K Code,  11.5K Data,   89.4K Total
10222     Debug Version:     164.1K Code,  68.3K Data,  232.4K Total
10223
10224
10225 2) iASL Compiler/Disassembler:
10226
10227 Fixed a problem where constants in ASL expressions at the root level (not 
10228 within a control method) could be inadvertently truncated during code 
10229 generation.  This problem was introduced in the 20040715 release.
10230
10231
10232 ----------------------------------------
10233 15 July 2004.  Summary of changes for version 20040715:
10234
10235 1) ACPI CA Core Subsystem:
10236
10237 Restructured the internal HW GPE interfaces to pass/track the current 
10238 state 
10239 of interrupts (enabled/disabled) in order to avoid possible deadlock and 
10240 increase flexibility of the interfaces.
10241
10242 Implemented a "lexicographical compare" for String and Buffer objects 
10243 within 
10244 the logical operators -- LGreater, LLess, LGreaterEqual, and LLessEqual -
10245
10246 as per further clarification to the ACPI specification.  Behavior is 
10247 similar 
10248 to C library "strcmp".
10249
10250 Completed a major reduction in CPU stack use for the AcpiGetFirmwareTable 
10251 external function.  In the 32-bit non-debug case, the stack use has been 
10252 reduced from 168 bytes to 32 bytes.
10253
10254 Deployed a new run-time configuration flag, 
10255 AcpiGbl_EnableInterpreterSlack, 
10256 whose purpose is to allow the AML interpreter to forgive certain bad AML 
10257 constructs.  Default setting is FALSE.
10258
10259 Implemented the first use of AcpiGbl_EnableInterpreterSlack in the Field 
10260 IO 
10261 support code.  If enabled, it allows field access to go beyond the end of 
10262
10263 region definition if the field is within the region length rounded up to 
10264 the 
10265 next access width boundary (a common coding error.)
10266
10267 Renamed OSD_HANDLER to ACPI_OSD_HANDLER, and OSD_EXECUTION_CALLBACK to 
10268 ACPI_OSD_EXEC_CALLBACK for consistency with other ACPI symbols.  Also, 
10269 these 
10270 symbols are lowercased by the latest version of the AcpiSrc tool.
10271
10272 The prototypes for the PCI interfaces in acpiosxf.h have been updated to 
10273 rename "Register" to simply "Reg" to prevent certain compilers from 
10274 complaining.
10275
10276 Code and Data Size: Current and previous core subsystem library sizes are 
10277 shown below.  These are the code and data sizes for the acpica.lib 
10278 produced 
10279 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10280 any ACPI driver or OSPM code.  The debug version of the code includes the 
10281 debug output trace mechanism and has a much larger code and data size.  
10282 Note 
10283 that these values will vary depending on the efficiency of the compiler 
10284 and 
10285 the compiler options used during generation.
10286
10287   Previous Release:
10288     Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
10289     Debug Version:     163.8K Code,  68.2K Data,  232.0K Total
10290   Current Release:
10291     Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
10292     Debug Version:     164.1K Code,  68.2K Data,  232.3K Total
10293
10294
10295 2) iASL Compiler/Disassembler:
10296
10297 Implemented full support for Package objects within the Case() operator.  
10298 Note: The Break() operator is currently not supported within Case blocks 
10299 (TermLists) as there is some question about backward compatibility with 
10300 ACPI 
10301 1.0 interpreters.
10302
10303
10304 Fixed a problem where complex terms were not supported properly within 
10305 the 
10306 Switch() operator.
10307
10308 Eliminated extraneous warning for compiler-emitted reserved names of the 
10309 form "_T_x".  (Used in Switch/Case operators.)
10310
10311 Eliminated optimization messages for "_T_x" objects and small constants 
10312 within the DefinitionBlock operator.
10313
10314
10315 ----------------------------------------
10316 15 June 2004.  Summary of changes for version 20040615:
10317
10318 1) ACPI CA Core Subsystem:
10319
10320 Implemented support for Buffer and String objects (as per ACPI 2.0) for 
10321 the 
10322 following ASL operators:  LEqual, LGreater, LLess, LGreaterEqual, and 
10323 LLessEqual.
10324
10325 All directory names in the entire source package are lower case, as they 
10326 were in earlier releases.
10327
10328 Implemented "Disassemble" command in the AML debugger that will 
10329 disassemble 
10330 a single control method.
10331
10332 Code and Data Size: Current and previous core subsystem library sizes are 
10333 shown below.  These are the code and data sizes for the acpica.lib 
10334 produced 
10335 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10336 any ACPI driver or OSPM code.  The debug version of the code includes the 
10337 debug output trace mechanism and has a much larger code and data size.  
10338 Note 
10339 that these values will vary depending on the efficiency of the compiler 
10340 and 
10341 the compiler options used during generation.
10342
10343   Previous Release:
10344     Non-Debug Version:  77.7K Code,  11.5K Data,   89.2K Total
10345     Debug Version:     163.3K Code,  67.2K Data,  230.5K Total
10346
10347   Current Release:
10348     Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
10349     Debug Version:     163.8K Code,  68.2K Data,  232.0K Total
10350
10351
10352 2) iASL Compiler/Disassembler:
10353
10354 Implemented support for Buffer and String objects (as per ACPI 2.0) for 
10355 the 
10356 following ASL operators:  LEqual, LGreater, LLess, LGreaterEqual, and 
10357 LLessEqual.
10358
10359 All directory names in the entire source package are lower case, as they 
10360 were in earlier releases.
10361
10362 Fixed a fault when using the -g or -d<nofilename> options if the FADT was 
10363 not found.
10364
10365 Fixed an issue with the Windows version of the compiler where later 
10366 versions 
10367 of Windows place the FADT in the registry under the name "FADT" and not 
10368 "FACP" as earlier versions did.  This applies when using the -g or -
10369 d<nofilename> options.  The compiler now looks for both strings as 
10370 necessary.
10371
10372 Fixed a problem with compiler namepath optimization where a namepath 
10373 within 
10374 the Scope() operator could not be optimized if the namepath was a subpath 
10375 of 
10376 the current scope path.
10377
10378 ----------------------------------------
10379 27 May 2004.  Summary of changes for version 20040527:
10380
10381 1) ACPI CA Core Subsystem:
10382
10383 Completed a new design and implementation for EBDA (Extended BIOS Data 
10384 Area) 
10385 support in the RSDP scan code.  The original code improperly scanned for 
10386 the 
10387 EBDA by simply scanning from memory location 0 to 0x400.  The correct 
10388 method 
10389 is to first obtain the EBDA pointer from within the BIOS data area, then 
10390 scan 1K of memory starting at the EBDA pointer.  There appear to be few 
10391 if 
10392 any machines that place the RSDP in the EBDA, however.
10393
10394 Integrated a fix for a possible fault during evaluation of BufferField 
10395 arguments.  Obsolete code that was causing the problem was removed.
10396
10397 Found and fixed a problem in the Field Support Code where data could be 
10398 corrupted on a bit field read that starts on an aligned boundary but does 
10399 not end on an aligned boundary.  Merged the read/write "datum length" 
10400 calculation code into a common procedure.
10401
10402 Rolled in a couple of changes to the FreeBSD-specific header.
10403
10404
10405 Code and Data Size: Current and previous core subsystem library sizes are 
10406 shown below.  These are the code and data sizes for the acpica.lib 
10407 produced 
10408 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10409 any ACPI driver or OSPM code.  The debug version of the code includes the 
10410 debug output trace mechanism and has a much larger code and data size.  
10411 Note 
10412 that these values will vary depending on the efficiency of the compiler 
10413 and 
10414 the compiler options used during generation.
10415
10416   Previous Release:
10417     Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
10418     Debug Version:     163.2K Code,  67.2K Data,  230.4K Total
10419   Current Release:
10420     Non-Debug Version:  77.7K Code,  11.5K Data,   89.2K Total
10421     Debug Version:     163.3K Code,  67.2K Data,  230.5K Total
10422
10423
10424 2) iASL Compiler/Disassembler:
10425
10426 Fixed a generation warning produced by some overly-verbose compilers for 
10427
10428 64-bit constant.
10429
10430 ----------------------------------------
10431 14 May 2004.  Summary of changes for version 20040514:
10432
10433 1) ACPI CA Core Subsystem:
10434
10435 Fixed a problem where hardware GPE enable bits sometimes not set properly 
10436 during and after GPE method execution.  Result of 04/27 changes.
10437
10438 Removed extra "clear all GPEs" when sleeping/waking.
10439
10440 Removed AcpiHwEnableGpe and AcpiHwDisableGpe, replaced by the single 
10441 AcpiHwWriteGpeEnableReg. Changed a couple of calls to the functions above 
10442 to 
10443 the new AcpiEv* calls as appropriate.
10444
10445 ACPI_OS_NAME was removed from the OS-specific headers.  The default name 
10446 is 
10447 now "Microsoft Windows NT" for maximum compatibility.  However this can 
10448 be 
10449 changed by modifying the acconfig.h file.
10450
10451 Allow a single invocation of AcpiInstallNotifyHandler for a handler that 
10452 traps both types of notifies (System, Device).  Use ACPI_ALL_NOTIFY flag. 
10453
10454 Run _INI methods on ThermalZone objects.  This is against the ACPI 
10455 specification, but there is apparently ASL code in the field that has 
10456 these 
10457 _INI methods, and apparently "other" AML interpreters execute them.
10458
10459 Performed a full 16/32/64 bit lint that resulted in some small changes.
10460
10461 Added a sleep simulation command to the AML debugger to test sleep code. 
10462
10463 Code and Data Size: Current and previous core subsystem library sizes are 
10464 shown below.  These are the code and data sizes for the acpica.lib 
10465 produced 
10466 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10467 any ACPI driver or OSPM code.  The debug version of the code includes the 
10468 debug output trace mechanism and has a much larger code and data size.  
10469 Note 
10470 that these values will vary depending on the efficiency of the compiler 
10471 and 
10472 the compiler options used during generation.
10473
10474   Previous Release:
10475     Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
10476     Debug Version:     162.9K Code,  67.0K Data,  229.9K Total
10477   Current Release:
10478     Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
10479     Debug Version:     163.2K Code,  67.2K Data,  230.4K Total
10480
10481 ----------------------------------------
10482 27 April 2004.  Summary of changes for version 20040427:
10483
10484 1) ACPI CA Core Subsystem:
10485
10486 Completed a major overhaul of the GPE handling within ACPI CA.  There are 
10487 now three types of GPEs:  wake-only, runtime-only, and combination 
10488 wake/run.  
10489 The only GPEs allowed to be combination wake/run are for button-style 
10490 devices such as a control-method power button, control-method sleep 
10491 button, 
10492 or a notebook lid switch.  GPEs that have an _Lxx or _Exx method and are 
10493 not 
10494 referenced by any _PRW methods are marked for "runtime" and hardware 
10495 enabled.  Any GPE that is referenced by a _PRW method is marked for 
10496 "wake" 
10497 (and disabled at runtime).  However, at sleep time, only those GPEs that 
10498 have been specifically enabled for wake via the AcpiEnableGpe interface 
10499 will 
10500 actually be hardware enabled.
10501
10502 A new external interface has been added, AcpiSetGpeType(), that is meant 
10503 to 
10504 be used by device drivers to force a GPE to a particular type.  It will 
10505 be 
10506 especially useful for the drivers for the button devices mentioned above.
10507
10508 Completed restructuring of the ACPI CA initialization sequence so that 
10509 default operation region handlers are installed before GPEs are 
10510 initialized 
10511 and the _PRW methods are executed.  This will prevent errors when the 
10512 _PRW 
10513 methods attempt to access system memory or I/O space.
10514
10515 GPE enable/disable no longer reads the GPE enable register.  We now keep 
10516 the 
10517 enable info for runtime and wake separate and in the GPE_EVENT_INFO.  We 
10518 thus no longer depend on the hardware to maintain these bits.
10519
10520 Always clear the wake status and fixed/GPE status bits before sleep, even 
10521 for state S5.
10522
10523 Improved the AML debugger output for displaying the GPE blocks and their 
10524 current status.
10525
10526 Added new strings for the _OSI method, of the form "Windows 2001 SPx" 
10527 where 
10528 x = 0,1,2,3,4.
10529
10530 Fixed a problem where the physical address was incorrectly calculated 
10531 when 
10532 the Load() operator was used to directly load from an Operation Region 
10533 (vs. 
10534 loading from a Field object.)  Also added check for minimum table length 
10535 for 
10536 this case.
10537
10538 Fix for multiple mutex acquisition.  Restore original thread SyncLevel on 
10539 mutex release.
10540
10541 Added ACPI_VALID_SXDS flag to the AcpiGetObjectInfo interface for 
10542 consistency with the other fields returned.
10543
10544 Shrunk the ACPI_GPE_EVENT_INFO structure by 40%.  There is one such 
10545 structure for each GPE in the system, so the size of this structure is 
10546 important.
10547
10548 CPU stack requirement reduction:  Cleaned up the method execution and 
10549 object 
10550 evaluation paths so that now a parameter structure is passed, instead of 
10551 copying the various method parameters over and over again.
10552
10553 In evregion.c:  Correctly exit and reenter the interpreter region if and 
10554 only if dispatching an operation region request to a user-installed 
10555 handler.  
10556 Do not exit/reenter when dispatching to a default handler (e.g., default 
10557 system memory or I/O handlers)
10558
10559
10560 Notes for updating drivers for the new GPE support.  The following 
10561 changes 
10562 must be made to ACPI-related device drivers that are attached to one or 
10563 more 
10564 GPEs: (This information will be added to the ACPI CA Programmer 
10565 Reference.)
10566
10567 1) AcpiInstallGpeHandler no longer automatically enables the GPE, you 
10568 must 
10569 explicitly call AcpiEnableGpe.
10570 2) There is a new interface called AcpiSetGpeType. This should be called 
10571 before enabling the GPE.  Also, this interface will automatically disable 
10572 the GPE if it is currently enabled.
10573 3) AcpiEnableGpe no longer supports a GPE type flag.
10574
10575 Specific drivers that must be changed:
10576 1) EC driver:
10577     AcpiInstallGpeHandler (NULL, GpeNum, ACPI_GPE_EDGE_TRIGGERED, 
10578 AeGpeHandler, NULL);
10579     AcpiSetGpeType (NULL, GpeNum, ACPI_GPE_TYPE_RUNTIME);
10580     AcpiEnableGpe (NULL, GpeNum, ACPI_NOT_ISR);
10581
10582 2) Button Drivers (Power, Lid, Sleep):
10583 Run _PRW method under parent device
10584 If _PRW exists: /* This is a control-method button */
10585     Extract GPE number and possibly GpeDevice
10586     AcpiSetGpeType (GpeDevice, GpeNum, ACPI_GPE_TYPE_WAKE_RUN);
10587     AcpiEnableGpe (GpeDevice, GpeNum, ACPI_NOT_ISR);
10588
10589 For all other devices that have _PRWs, we automatically set the GPE type 
10590 to 
10591 ACPI_GPE_TYPE_WAKE, but the GPE is NOT automatically (wake) enabled.  
10592 This 
10593 must be done on a selective basis, usually requiring some kind of user 
10594 app 
10595 to allow the user to pick the wake devices.
10596
10597
10598 Code and Data Size: Current and previous core subsystem library sizes are 
10599 shown below.  These are the code and data sizes for the acpica.lib 
10600 produced 
10601 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10602 any ACPI driver or OSPM code.  The debug version of the code includes the 
10603 debug output trace mechanism and has a much larger code and data size.  
10604 Note 
10605 that these values will vary depending on the efficiency of the compiler 
10606 and 
10607 the compiler options used during generation.
10608
10609   Previous Release:
10610     Non-Debug Version:  77.0K Code,  11.4K Data,   88.4K Total
10611     Debug Version:     161.0K Code,  66.3K Data,  227.3K Total
10612   Current Release:
10613
10614     Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
10615     Debug Version:     162.9K Code,  67.0K Data,  229.9K Total
10616
10617
10618
10619 ----------------------------------------
10620 02 April 2004.  Summary of changes for version 20040402:
10621
10622 1) ACPI CA Core Subsystem:
10623
10624 Fixed an interpreter problem where an indirect store through an ArgX 
10625 parameter was incorrectly applying the "implicit conversion rules" during 
10626 the store.  From the ACPI specification: "If the target is a method local 
10627 or 
10628 argument (LocalX or ArgX), no conversion is performed and the result is 
10629 stored directly to the target".  The new behavior is to disable implicit 
10630 conversion during ALL stores to an ArgX.
10631
10632 Changed the behavior of the _PRW method scan to ignore any and all errors 
10633 returned by a given _PRW.  This prevents the scan from aborting from the 
10634 failure of any single _PRW.
10635
10636 Moved the runtime configuration parameters from the global init procedure 
10637 to 
10638 static variables in acglobal.h.  This will allow the host to override the 
10639 default values easily.
10640
10641 Code and Data Size: Current and previous core subsystem library sizes are 
10642 shown below.  These are the code and data sizes for the acpica.lib 
10643 produced 
10644 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10645 any ACPI driver or OSPM code.  The debug version of the code includes the 
10646 debug output trace mechanism and has a much larger code and data size.  
10647 Note 
10648 that these values will vary depending on the efficiency of the compiler 
10649 and 
10650 the compiler options used during generation.
10651
10652   Previous Release:
10653     Non-Debug Version:  76.9K Code,  11.4K Data,   88.3K Total
10654     Debug Version:     160.8K Code,  66.1K Data,  226.9K Total
10655   Current Release:
10656     Non-Debug Version:  77.0K Code,  11.4K Data,   88.4K Total
10657     Debug Version:     161.0K Code,  66.3K Data,  227.3K Total
10658
10659
10660 2) iASL Compiler/Disassembler:
10661
10662 iASL now fully disassembles SSDTs.  However, External() statements are 
10663 not 
10664 generated automatically for unresolved symbols at this time.  This is a 
10665 planned feature for future implementation.
10666
10667 Fixed a scoping problem in the disassembler that occurs when the type of 
10668 the 
10669 target of a Scope() operator is overridden.  This problem caused an 
10670 incorrectly nested internal namespace to be constructed.
10671
10672 Any warnings or errors that are emitted during disassembly are now 
10673 commented 
10674 out automatically so that the resulting file can be recompiled without 
10675 any 
10676 hand editing.
10677
10678 ----------------------------------------
10679 26 March 2004.  Summary of changes for version 20040326:
10680
10681 1) ACPI CA Core Subsystem:
10682
10683 Implemented support for "wake" GPEs via interaction between GPEs and the 
10684 _PRW methods.  Every GPE that is pointed to by one or more _PRWs is 
10685 identified as a WAKE GPE and by default will no longer be enabled at 
10686 runtime.  Previously, we were blindly enabling all GPEs with a 
10687 corresponding 
10688 _Lxx or _Exx method - but most of these turn out to be WAKE GPEs anyway.  
10689 We 
10690 believe this has been the cause of thousands of "spurious" GPEs on some 
10691 systems.
10692
10693 This new GPE behavior is can be reverted to the original behavior (enable 
10694 ALL GPEs at runtime) via a runtime flag.
10695
10696 Fixed a problem where aliased control methods could not access objects 
10697 properly.  The proper scope within the namespace was not initialized 
10698 (transferred to the target of the aliased method) before executing the 
10699 target method.
10700
10701 Fixed a potential race condition on internal object deletion on the 
10702 return 
10703 object in AcpiEvaluateObject. 
10704
10705 Integrated a fix for resource descriptors where both _MEM and _MTP were 
10706 being extracted instead of just _MEM.  (i.e. bitmask was incorrectly too 
10707 wide, 0x0F instead of 0x03.)
10708
10709 Added a special case for ACPI_ROOT_OBJECT in AcpiUtGetNodeName, 
10710 preventing 
10711
10712 fault in some cases.
10713
10714 Updated Notify() values for debug statements in evmisc.c
10715
10716 Return proper status from AcpiUtMutexInitialize, not just simply AE_OK.
10717
10718 Code and Data Size: Current and previous core subsystem library sizes are 
10719 shown below.  These are the code and data sizes for the acpica.lib 
10720 produced 
10721 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10722 any ACPI driver or OSPM code.  The debug version of the code includes the 
10723 debug output trace mechanism and has a much larger code and data size.  
10724 Note 
10725 that these values will vary depending on the efficiency of the compiler 
10726 and 
10727 the compiler options used during generation.
10728
10729   Previous Release:
10730
10731     Non-Debug Version:  76.5K Code,  11.3K Data,   87.8K Total
10732     Debug Version:     160.3K Code,  66.0K Data,  226.3K Total
10733   Current Release:
10734     Non-Debug Version:  76.9K Code,  11.4K Data,   88.3K Total
10735     Debug Version:     160.8K Code,  66.1K Data,  226.9K Total
10736
10737 ----------------------------------------
10738 11 March 2004.  Summary of changes for version 20040311:
10739
10740 1) ACPI CA Core Subsystem:
10741
10742 Fixed a problem where errors occurring during the parse phase of control 
10743 method execution did not abort cleanly.  For example, objects created and 
10744 installed in the namespace were not deleted.  This caused all subsequent 
10745 invocations of the method to return the AE_ALREADY_EXISTS exception.
10746
10747 Implemented a mechanism to force a control method to "Serialized" 
10748 execution 
10749 if the method attempts to create namespace objects. (The root of the 
10750 AE_ALREADY_EXISTS problem.)
10751
10752 Implemented support for the predefined _OSI "internal" control method.  
10753 Initial supported strings are "Linux", "Windows 2000", "Windows 2001", 
10754 and 
10755 "Windows 2001.1", and can be easily upgraded for new strings as 
10756 necessary.  
10757 This feature will allow "other" operating systems to execute the fully 
10758 tested, "Windows" code path through the ASL code
10759
10760 Global Lock Support:  Now allows multiple acquires and releases with any 
10761 internal thread.  Removed concept of "owning thread" for this special 
10762 mutex.
10763
10764 Fixed two functions that were inappropriately declaring large objects on 
10765 the 
10766 CPU stack:  PsParseLoop, NsEvaluateRelative.  Reduces the stack usage 
10767 during 
10768 method execution considerably.
10769
10770 Fixed a problem in the ACPI 2.0 FACS descriptor (actbl2.h) where the 
10771 S4Bios_f field was incorrectly defined as UINT32 instead of UINT32_BIT.
10772
10773 Fixed a problem where AcpiEvGpeDetect would fault if there were no GPEs 
10774 defined on the machine.
10775
10776 Implemented two runtime options:  One to force all control method 
10777 execution 
10778 to "Serialized" to mimic Windows behavior, another to disable _OSI 
10779 support 
10780 if it causes problems on a given machine.
10781
10782 Code and Data Size: Current and previous core subsystem library sizes are 
10783 shown below.  These are the code and data sizes for the acpica.lib 
10784 produced 
10785 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10786 any ACPI driver or OSPM code.  The debug version of the code includes the 
10787 debug output trace mechanism and has a much larger code and data size.  
10788 Note 
10789 that these values will vary depending on the efficiency of the compiler 
10790 and 
10791 the compiler options used during generation.
10792
10793   Previous Release:
10794     Non-Debug Version:  74.8K Code,  10.1K Data,   84.9K Total
10795     Debug Version:     158.7K Code,  65.1K Data,  223.8K Total
10796   Current Release:
10797     Non-Debug Version:  76.5K Code,  11.3K Data,   87.8K Total
10798     Debug Version:     160.3K Code,  66.0K Data,  226.3K Total
10799
10800 2) iASL Compiler/Disassembler:
10801
10802 Fixed an array size problem for FreeBSD that would cause the compiler to 
10803 fault.
10804
10805 ----------------------------------------
10806 20 February 2004.  Summary of changes for version 20040220:
10807
10808
10809 1) ACPI CA Core Subsystem:
10810
10811 Implemented execution of _SxD methods for Device objects in the 
10812 GetObjectInfo interface.
10813
10814 Fixed calls to _SST method to pass the correct arguments.
10815
10816 Added a call to _SST on wake to restore to "working" state.
10817
10818 Check for End-Of-Buffer failure case in the WalkResources interface.
10819
10820 Integrated fix for 64-bit alignment issue in acglobal.h by moving two 
10821 structures to the beginning of the file.
10822
10823 After wake, clear GPE status register(s) before enabling GPEs.
10824
10825 After wake, clear/enable power button.  (Perhaps we should clear/enable 
10826 all 
10827 fixed events upon wake.)
10828
10829 Fixed a couple of possible memory leaks in the Namespace manager.
10830
10831 Integrated latest acnetbsd.h file.
10832
10833 ----------------------------------------
10834 11 February 2004.  Summary of changes for version 20040211:
10835
10836
10837 1) ACPI CA Core Subsystem:
10838
10839 Completed investigation and implementation of the call-by-reference 
10840 mechanism for control method arguments.
10841
10842 Fixed a problem where a store of an object into an indexed package could 
10843 fail if the store occurs within a different method than the method that 
10844 created the package.
10845
10846 Fixed a problem where the ToDecimal operator could return incorrect 
10847 results.
10848
10849 Fixed a problem where the CopyObject operator could fail on some of the 
10850 more 
10851 obscure objects (e.g., Reference objects.)
10852
10853 Improved the output of the Debug object to display buffer, package, and 
10854 index objects.
10855
10856 Fixed a problem where constructs of the form "RefOf (ArgX)" did not 
10857 return 
10858 the expected result.
10859
10860 Added permanent ACPI_REPORT_ERROR macros for all instances of the 
10861 ACPI_AML_INTERNAL exception.
10862
10863 Integrated latest version of acfreebsd.h
10864
10865 ----------------------------------------
10866 16 January 2004.  Summary of changes for version 20040116:
10867
10868 The purpose of this release is primarily to update the copyright years in 
10869 each module, thus causing a huge number of diffs.  There are a few small 
10870 functional changes, however.
10871
10872 1) ACPI CA Core Subsystem:
10873
10874 Improved error messages when there is a problem finding one or more of 
10875 the 
10876 required base ACPI tables
10877
10878 Reintroduced the definition of APIC_HEADER in actbl.h
10879
10880 Changed definition of MADT_ADDRESS_OVERRIDE to 64 bits (actbl.h)
10881
10882 Removed extraneous reference to NewObj in dsmthdat.c
10883
10884 2) iASL compiler
10885
10886 Fixed a problem introduced in December that disabled the correct 
10887 disassembly 
10888 of Resource Templates
10889
10890
10891 ----------------------------------------
10892 03 December 2003.  Summary of changes for version 20031203:
10893
10894 1) ACPI CA Core Subsystem:
10895
10896 Changed the initialization of Operation Regions during subsystem
10897 init to perform two entire walks of the ACPI namespace; The first
10898 to initialize the regions themselves, the second to execute the
10899 _REG methods.  This fixed some interdependencies across _REG
10900 methods found on some machines.
10901
10902 Fixed a problem where a Store(Local0, Local1) could simply update
10903 the object reference count, and not create a new copy of the
10904 object if the Local1 is uninitialized.
10905
10906 Implemented support for the _SST reserved method during sleep
10907 transitions.
10908
10909 Implemented support to clear the SLP_TYP and SLP_EN bits when
10910 waking up, this is apparently required by some machines.
10911
10912 When sleeping, clear the wake status only if SleepState is not S5.
10913
10914 Fixed a problem in AcpiRsExtendedIrqResource() where an incorrect
10915 pointer arithmetic advanced a string pointer too far.
10916
10917 Fixed a problem in AcpiTbGetTablePtr() where a garbage pointer
10918 could be returned if the requested table has not been loaded.
10919
10920 Within the support for IRQ resources, restructured the handling of
10921 the active and edge/level bits.
10922
10923 Fixed a few problems in AcpiPsxExecute() where memory could be
10924 leaked under certain error conditions.
10925
10926 Improved error messages for the cases where the ACPI mode could
10927 not be entered.
10928
10929 Code and Data Size: Current and previous core subsystem library
10930 sizes are shown below.  These are the code and data sizes for the
10931 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
10932 these values do not include any ACPI driver or OSPM code.  The
10933 debug version of the code includes the debug output trace
10934 mechanism and has a much larger code and data size.  Note that
10935 these values will vary depending on the efficiency of the compiler
10936 and the compiler options used during generation.
10937
10938   Previous Release (20031029):
10939     Non-Debug Version:  74.4K Code,  10.1K Data,   84.5K Total
10940     Debug Version:     158.3K Code,  65.0K Data,  223.3K Total
10941   Current Release:
10942     Non-Debug Version:  74.8K Code,  10.1K Data,   84.9K Total
10943     Debug Version:     158.7K Code,  65.1K Data,  223.8K Total
10944
10945 2) iASL Compiler/Disassembler:
10946
10947 Implemented a fix for the iASL disassembler where a bad index was
10948 generated.  This was most noticeable on 64-bit platforms
10949
10950
10951 ----------------------------------------
10952 29 October 2003.  Summary of changes for version 20031029:
10953
10954 1) ACPI CA Core Subsystem:
10955
10956
10957 Fixed a problem where a level-triggered GPE with an associated
10958 _Lxx control method was incorrectly cleared twice.
10959
10960 Fixed a problem with the Field support code where an access can
10961 occur beyond the end-of-region if the field is non-aligned but
10962 extends to the very end of the parent region (resulted in an
10963 AE_AML_REGION_LIMIT exception.)
10964
10965 Fixed a problem with ACPI Fixed Events where an RT Clock handler
10966 would not get invoked on an RTC event.  The RTC event bitmasks for
10967 the PM1 registers were not being initialized properly.
10968
10969 Implemented support for executing _STA and _INI methods for
10970 Processor objects.  Although this is currently not part of the
10971 ACPI specification, there is existing ASL code that depends on the
10972 init-time execution of these methods.
10973
10974 Implemented and deployed a GetDescriptorName function to decode
10975 the various types of internal descriptors.  Guards against null
10976 descriptors during debug output also.
10977
10978 Implemented and deployed a GetNodeName function to extract the 4-
10979 character namespace node name.  This function simplifies the debug
10980 and error output, as well as guarding against null pointers during
10981 output.
10982
10983 Implemented and deployed the ACPI_FORMAT_UINT64 helper macro to
10984 simplify the debug and error output of 64-bit integers.  This
10985 macro replaces the HIDWORD and LODWORD macros for dumping these
10986 integers.
10987
10988 Updated the implementation of the Stall() operator to only call
10989 AcpiOsStall(), and also return an error if the operand is larger
10990 than 255.  This preserves the required behavior of not
10991 relinquishing the processor, as would happen if AcpiOsSleep() was
10992 called for "long stalls".
10993
10994 Constructs of the form "Store(LocalX,LocalX)" where LocalX is not
10995 initialized are now treated as NOOPs.
10996
10997 Cleaned up a handful of warnings during 64-bit generation.
10998
10999 Fixed a reported error where and incorrect GPE number was passed
11000 to the GPE dispatch handler.  This value is only used for error
11001 output, however.  Used this opportunity to clean up and streamline
11002 the GPE dispatch code.
11003
11004 Code and Data Size: Current and previous core subsystem library
11005 sizes are shown below.  These are the code and data sizes for the
11006 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
11007 these values do not include any ACPI driver or OSPM code.  The
11008
11009 debug version of the code includes the debug output trace
11010 mechanism and has a much larger code and data size.  Note that
11011 these values will vary depending on the efficiency of the compiler
11012 and the compiler options used during generation.
11013
11014   Previous Release (20031002):
11015     Non-Debug Version:  74.1K Code,   9.7K Data,   83.8K Total
11016     Debug Version:     157.9K Code,  64.8K Data,  222.7K Total
11017   Current Release:
11018     Non-Debug Version:  74.4K Code,  10.1K Data,   84.5K Total
11019     Debug Version:     158.3K Code,  65.0K Data,  223.3K Total
11020
11021
11022 2) iASL Compiler/Disassembler:
11023
11024 Updated the iASL compiler to return an error if the operand to the
11025 Stall() operator is larger than 255.
11026
11027
11028 ----------------------------------------
11029 02 October 2003.  Summary of changes for version 20031002:
11030
11031
11032 1) ACPI CA Core Subsystem:
11033
11034 Fixed a problem with Index Fields where the index was not
11035 incremented for fields that require multiple writes to the
11036 index/data registers (Fields that are wider than the data
11037 register.)
11038
11039 Fixed a problem with all Field objects where a write could go
11040 beyond the end-of-field if the field was larger than the access
11041 granularity and therefore required multiple writes to complete the
11042 request.  An extra write beyond the end of the field could happen
11043 inadvertently.
11044
11045 Fixed a problem with Index Fields where a BUFFER_OVERFLOW error
11046 would incorrectly be returned if the width of the Data Register
11047 was larger than the specified field access width.
11048
11049 Completed fixes for LoadTable() and Unload() and verified their
11050 operation.  Implemented full support for the "DdbHandle" object
11051 throughout the ACPI CA subsystem.
11052
11053 Implemented full support for the MADT and ECDT tables in the ACPI
11054 CA header files.  Even though these tables are not directly
11055 consumed by ACPI CA, the header definitions are useful for ACPI
11056 device drivers.
11057
11058 Integrated resource descriptor fixes posted to the Linux ACPI
11059 list.  This included checks for minimum descriptor length, and
11060 support for trailing NULL strings within descriptors that have
11061 optional string elements.
11062
11063 Code and Data Size: Current and previous core subsystem library
11064 sizes are shown below.  These are the code and data sizes for the
11065 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
11066 these values do not include any ACPI driver or OSPM code.  The
11067 debug version of the code includes the debug output trace
11068 mechanism and has a much larger code and data size.  Note that
11069 these values will vary depending on the efficiency of the compiler
11070 and the compiler options used during generation.
11071
11072   Previous Release (20030918):
11073     Non-Debug Version:  73.9K Code,   9.7K Data,   83.6K Total
11074     Debug Version:     157.3K Code,  64.5K Data,  221.8K Total
11075   Current Release:
11076     Non-Debug Version:  74.1K Code,   9.7K Data,   83.8K Total
11077     Debug Version:     157.9K Code,  64.8K Data,  222.7K Total
11078
11079
11080 2) iASL Compiler:
11081
11082 Implemented detection of non-ASCII characters within the input
11083 source ASL file.  This catches attempts to compile binary (AML)
11084 files early in the compile, with an informative error message.
11085
11086 Fixed a problem where the disassembler would fault if the output
11087 filename could not be generated or if the output file could not be
11088 opened.
11089
11090 ----------------------------------------
11091 18 September 2003.  Summary of changes for version 20030918:
11092
11093
11094 1) ACPI CA Core Subsystem:
11095
11096 Found and fixed a longstanding problem with the late execution of
11097 the various deferred AML opcodes (such as Operation Regions,
11098 Buffer Fields, Buffers, and Packages).  If the name string
11099 specified for the name of the new object placed the object in a
11100 scope other than the current scope, the initialization/execution
11101 of the opcode failed.  The solution to this problem was to
11102 implement a mechanism where the late execution of such opcodes
11103 does not attempt to lookup/create the name a second time in an
11104 incorrect scope.  This fixes the "region size computed
11105 incorrectly" problem.
11106
11107 Fixed a call to AcpiHwRegisterWrite in hwregs.c that was causing a
11108 Global Lock AE_BAD_PARAMETER error.
11109
11110 Fixed several 64-bit issues with prototypes, casting and data
11111 types.
11112
11113 Removed duplicate prototype from acdisasm.h
11114
11115 Fixed an issue involving EC Operation Region Detach (Shaohua Li)
11116
11117 Code and Data Size: Current and previous core subsystem library
11118 sizes are shown below.  These are the code and data sizes for the
11119 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
11120 these values do not include any ACPI driver or OSPM code.  The
11121 debug version of the code includes the debug output trace
11122 mechanism and has a much larger code and data size.  Note that
11123 these values will vary depending on the efficiency of the compiler
11124 and the compiler options used during generation.
11125
11126   Previous Release:
11127
11128     Non-Debug Version:  73.7K Code,   9.7K Data,   83.4K Total
11129     Debug Version:     156.9K Code,  64.2K Data,  221.1K Total
11130   Current Release:
11131     Non-Debug Version:  73.9K Code,   9.7K Data,   83.6K Total
11132     Debug Version:     157.3K Code,  64.5K Data,  221.8K Total
11133
11134
11135 2) Linux:
11136
11137 Fixed the AcpiOsSleep implementation in osunixxf.c to pass the
11138 correct sleep time in seconds.
11139
11140 ----------------------------------------
11141 14 July 2003.  Summary of changes for version 20030619:
11142
11143 1) ACPI CA Core Subsystem:
11144
11145 Parse SSDTs in order discovered, as opposed to reverse order
11146 (Hrvoje Habjanic)
11147
11148 Fixes from FreeBSD and NetBSD. (Frank van der Linden, Thomas
11149 Klausner,
11150    Nate Lawson)
11151
11152
11153 2) Linux:
11154
11155 Dynamically allocate SDT list (suggested by Andi Kleen)
11156
11157 proc function return value cleanups (Andi Kleen)
11158
11159 Correctly handle NMI watchdog during long stalls (Andrew Morton)
11160
11161 Make it so acpismp=force works (reported by Andrew Morton)
11162
11163
11164 ----------------------------------------
11165 19 June 2003.  Summary of changes for version 20030619:
11166
11167 1) ACPI CA Core Subsystem:
11168
11169 Fix To/FromBCD, eliminating the need for an arch-specific #define.
11170
11171 Do not acquire a semaphore in the S5 shutdown path.
11172
11173 Fix ex_digits_needed for 0. (Takayoshi Kochi)
11174
11175 Fix sleep/stall code reversal. (Andi Kleen)
11176
11177 Revert a change having to do with control method calling
11178 semantics.
11179
11180 2) Linux:
11181
11182 acpiphp update (Takayoshi Kochi)
11183
11184 Export acpi_disabled for sonypi (Stelian Pop)
11185
11186 Mention acpismp=force in config help
11187
11188 Re-add acpitable.c and acpismp=force. This improves backwards
11189
11190 compatibility and also cleans up the code to a significant degree.
11191
11192 Add ASUS Value-add driver (Karol Kozimor and Julien Lerouge)
11193
11194 ----------------------------------------
11195 22 May 2003.  Summary of changes for version 20030522:
11196
11197 1) ACPI CA Core Subsystem:
11198
11199 Found and fixed a reported problem where an AE_NOT_FOUND error
11200 occurred occasionally during _BST evaluation.  This turned out to
11201 be an Owner ID allocation issue where a called method did not get
11202 a new ID assigned to it.  Eventually, (after 64k calls), the Owner
11203 ID UINT16 would wraparound so that the ID would be the same as the
11204 caller's and the called method would delete the caller's
11205 namespace.
11206
11207 Implemented extended error reporting for control methods that are
11208 aborted due to a run-time exception.  Output includes the exact
11209 AML instruction that caused the method abort, a dump of the method
11210 locals and arguments at the time of the abort, and a trace of all
11211 nested control method calls.
11212
11213 Modified the interpreter to allow the creation of buffers of zero
11214 length from the AML code. Implemented new code to ensure that no
11215 attempt is made to actually allocate a memory buffer (of length
11216 zero) - instead, a simple buffer object with a NULL buffer pointer
11217 and length zero is created.  A warning is no longer issued when
11218 the AML attempts to create a zero-length buffer.
11219
11220 Implemented a workaround for the "leading asterisk issue" in
11221 _HIDs, _UIDs, and _CIDs in the AML interpreter.  One leading
11222 asterisk is automatically removed if present in any HID, UID, or
11223 CID strings.  The iASL compiler will still flag this asterisk as
11224 an error, however.
11225
11226 Implemented full support for _CID methods that return a package of
11227 multiple CIDs (Compatible IDs).  The AcpiGetObjectInfo() interface
11228 now additionally returns a device _CID list if present.  This
11229 required a change to the external interface in order to pass an
11230 ACPI_BUFFER object as a parameter since the _CID list is of
11231 variable length.
11232
11233 Fixed a problem with the new AE_SAME_HANDLER exception where
11234 handler initialization code did not know about this exception.
11235
11236 Code and Data Size: Current and previous core subsystem library
11237 sizes are shown below.  These are the code and data sizes for the
11238 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
11239 these values do not include any ACPI driver or OSPM code.  The
11240 debug version of the code includes the debug output trace
11241 mechanism and has a much larger code and data size.  Note that
11242 these values will vary depending on the efficiency of the compiler
11243 and the compiler options used during generation.
11244
11245   Previous Release (20030509):
11246     Non-Debug Version:  73.4K Code,   9.7K Data,   83.1K Total
11247     Debug Version:     156.1K Code,  63.9K Data,  220.0K Total
11248   Current Release:
11249     Non-Debug Version:  73.7K Code,   9.7K Data,   83.4K Total
11250     Debug Version:     156.9K Code,  64.2K Data,  221.1K Total
11251
11252
11253 2) Linux:
11254
11255 Fixed a bug in which we would reinitialize the ACPI interrupt
11256 after it was already working, thus disabling all ACPI and the IRQs
11257 for any other device sharing the interrupt. (Thanks to Stian
11258 Jordet)
11259
11260 Toshiba driver update (John Belmonte)
11261
11262 Return only 0 or 1 for our interrupt handler status (Andrew
11263 Morton)
11264
11265
11266 3) iASL Compiler:
11267
11268 Fixed a reported problem where multiple (nested) ElseIf()
11269 statements were not handled correctly by the compiler, resulting
11270 in incorrect warnings and incorrect AML code.  This was a problem
11271 in both the ASL parser and the code generator.
11272
11273
11274 4) Documentation:
11275
11276 Added changes to existing interfaces, new exception codes, and new
11277 text concerning reference count object management versus garbage
11278 collection.
11279
11280 ----------------------------------------
11281 09 May 2003.  Summary of changes for version 20030509.
11282
11283
11284 1) ACPI CA Core Subsystem:
11285
11286 Changed the subsystem initialization sequence to hold off
11287 installation of address space handlers until the hardware has been
11288 initialized and the system has entered ACPI mode.  This is because
11289 the installation of space handlers can cause _REG methods to be
11290 run.  Previously, the _REG methods could potentially be run before
11291 ACPI mode was enabled.
11292
11293 Fixed some memory leak issues related to address space handler and
11294 notify handler installation.  There were some problems with the
11295 reference count mechanism caused by the fact that the handler
11296 objects are shared across several namespace objects.
11297
11298 Fixed a reported problem where reference counts within the
11299 namespace were not properly updated when named objects created by
11300 method execution were deleted.
11301
11302 Fixed a reported problem where multiple SSDTs caused a deletion
11303 issue during subsystem termination.  Restructured the table data
11304 structures to simplify the linked lists and the related code.
11305
11306 Fixed a problem where the table ID associated with secondary
11307 tables (SSDTs) was not being propagated into the namespace objects
11308 created by those tables.  This would only present a problem for
11309 tables that are unloaded at run-time, however.
11310
11311 Updated AcpiOsReadable and AcpiOsWritable to use the ACPI_SIZE
11312 type as the length parameter (instead of UINT32).
11313
11314 Solved a long-standing problem where an ALREADY_EXISTS error
11315 appears on various systems.  This problem could happen when there
11316 are multiple PCI_Config operation regions under a single PCI root
11317 bus.  This doesn't happen very frequently, but there are some
11318 systems that do this in the ASL.
11319
11320 Fixed a reported problem where the internal DeleteNode function
11321 was incorrectly handling the case where a namespace node was the
11322 first in the parent's child list, and had additional peers (not
11323 the only child, but first in the list of children.)
11324
11325 Code and Data Size: Current core subsystem library sizes are shown
11326 below.  These are the code and data sizes for the acpica.lib
11327 produced by the Microsoft Visual C++ 6.0 compiler, and these
11328 values do not include any ACPI driver or OSPM code.  The debug
11329 version of the code includes the debug output trace mechanism and
11330 has a much larger code and data size.  Note that these values will
11331 vary depending on the efficiency of the compiler and the compiler
11332 options used during generation.
11333
11334   Previous Release
11335     Non-Debug Version:  73.7K Code,   9.5K Data,   83.2K Total
11336     Debug Version:     156.1K Code,  63.6K Data,  219.7K Total
11337   Current Release:
11338     Non-Debug Version:  73.4K Code,   9.7K Data,   83.1K Total
11339     Debug Version:     156.1K Code,  63.9K Data,  220.0K Total
11340
11341
11342 2) Linux:
11343
11344 Allow ":" in OS override string (Ducrot Bruno)
11345
11346 Kobject fix (Greg KH)
11347
11348
11349 3 iASL Compiler/Disassembler:
11350
11351 Fixed a problem in the generation of the C source code files (AML
11352 is emitted in C source statements for BIOS inclusion) where the
11353 Ascii dump that appears within a C comment at the end of each line
11354 could cause a compile time error if the AML sequence happens to
11355 have an open comment or close comment sequence embedded.
11356
11357
11358 ----------------------------------------
11359 24 April 2003.  Summary of changes for version 20030424.
11360
11361
11362 1) ACPI CA Core Subsystem:
11363
11364 Support for big-endian systems has been implemented.  Most of the
11365 support has been invisibly added behind big-endian versions of the
11366 ACPI_MOVE_* macros.
11367
11368 Fixed a problem in AcpiHwDisableGpeBlock() and
11369 AcpiHwClearGpeBlock() where an incorrect offset was passed to the
11370 low level hardware write routine.  The offset parameter was
11371 actually eliminated from the low level read/write routines because
11372 they had become obsolete.
11373
11374 Fixed a problem where a handler object was deleted twice during
11375 the removal of a fixed event handler.
11376
11377
11378 2) Linux:
11379
11380 A fix for SMP systems with link devices was contributed by
11381
11382 Compaq's Dan Zink.
11383
11384 (2.5) Return whether we handled the interrupt in our IRQ handler.
11385 (Linux ISRs no longer return void, so we can propagate the handler
11386 return value from the ACPI CA core back to the OS.)
11387
11388
11389
11390 3) Documentation:
11391
11392 The ACPI CA Programmer Reference has been updated to reflect new
11393 interfaces and changes to existing interfaces.
11394
11395 ----------------------------------------
11396 28 March 2003.  Summary of changes for version 20030328.
11397
11398 1) ACPI CA Core Subsystem:
11399
11400 The GPE Block Device support has been completed.  New interfaces
11401 are AcpiInstallGpeBlock and AcpiRemoveGpeBlock.  The Event
11402 interfaces (enable, disable, clear, getstatus) have been split
11403 into separate interfaces for Fixed Events and General Purpose
11404 Events (GPEs) in order to support GPE Block Devices properly.
11405
11406 Fixed a problem where the error message "Failed to acquire
11407 semaphore" would appear during operations on the embedded
11408 controller (EC).
11409
11410 Code and Data Size: Current core subsystem library sizes are shown
11411 below.  These are the code and data sizes for the acpica.lib
11412 produced by the Microsoft Visual C++ 6.0 compiler, and these
11413 values do not include any ACPI driver or OSPM code.  The debug
11414 version of the code includes the debug output trace mechanism and
11415 has a much larger code and data size.  Note that these values will
11416 vary depending on the efficiency of the compiler and the compiler
11417 options used during generation.
11418
11419   Previous Release
11420     Non-Debug Version:  72.3K Code,   9.5K Data,   81.8K Total
11421     Debug Version:     154.0K Code,  63.4K Data,  217.4K Total
11422   Current Release:
11423     Non-Debug Version:  73.7K Code,   9.5K Data,   83.2K Total
11424     Debug Version:     156.1K Code,  63.6K Data,  219.7K Total
11425
11426
11427 ----------------------------------------
11428 28 February 2003.  Summary of changes for version 20030228.
11429
11430
11431 1) ACPI CA Core Subsystem:
11432
11433 The GPE handling and dispatch code has been completely overhauled
11434 in preparation for support of GPE Block Devices (ID ACPI0006).
11435 This affects internal data structures and code only; there should
11436 be no differences visible externally.  One new file has been
11437 added, evgpeblk.c
11438
11439 The FADT fields GPE0_BLK_LEN and GPE1_BLK_LEN are now the only
11440 fields that are used to determine the GPE block lengths.  The
11441 REGISTER_BIT_WIDTH field of the X_GPEx_BLK extended address
11442 structures are ignored.  This is per the ACPI specification but it
11443 isn't very clear.  The full 256 Block 0/1 GPEs are now supported
11444 (the use of REGISTER_BIT_WIDTH limited the number of GPEs to 128).
11445
11446 In the SCI interrupt handler, removed the read of the PM1_CONTROL
11447 register to look at the SCI_EN bit.  On some machines, this read
11448 causes an SMI event and greatly slows down SCI events.  (This may
11449 in fact be the cause of slow battery status response on some
11450 systems.)
11451
11452 Fixed a problem where a store of a NULL string to a package object
11453 could cause the premature deletion of the object.  This was seen
11454 during execution of the battery _BIF method on some systems,
11455 resulting in no battery data being returned.
11456
11457 Added AcpiWalkResources interface to simplify parsing of resource
11458 lists.
11459
11460 Code and Data Size: Current core subsystem library sizes are shown
11461 below.  These are the code and data sizes for the acpica.lib
11462 produced by the Microsoft Visual C++ 6.0 compiler, and these
11463 values do not include any ACPI driver or OSPM code.  The debug
11464 version of the code includes the debug output trace mechanism and
11465 has a much larger code and data size.  Note that these values will
11466 vary depending on the efficiency of the compiler and the compiler
11467 options used during generation.
11468
11469   Previous Release
11470     Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
11471     Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
11472   Current Release:
11473     Non-Debug Version:  72.3K Code,   9.5K Data,   81.8K Total
11474     Debug Version:     154.0K Code,  63.4K Data,  217.4K Total
11475
11476
11477 2) Linux
11478
11479 S3 fixes (Ole Rohne)
11480
11481 Update ACPI PHP driver with to use new acpi_walk_resource API
11482 (Bjorn Helgaas)
11483
11484 Add S4BIOS support (Pavel Machek)
11485
11486 Map in entire table before performing checksum (John Stultz)
11487
11488 Expand the mem= cmdline to allow the specification of reserved and
11489 ACPI DATA blocks (Pavel Machek)
11490
11491 Never use ACPI on VISWS
11492
11493 Fix derive_pci_id (Ducrot Bruno, Alvaro Lopez)
11494
11495 Revert a change that allowed P_BLK lengths to be 4 or 5. This is
11496 causing us to think that some systems support C2 when they really
11497 don't.
11498
11499 Do not count processor objects for non-present CPUs (Thanks to
11500 Dominik Brodowski)
11501
11502
11503 3) iASL Compiler:
11504
11505 Fixed a problem where ASL include files could not be found and
11506 opened.
11507
11508 Added support for the _PDC reserved name.
11509
11510
11511 ----------------------------------------
11512 22 January 2003.  Summary of changes for version 20030122.
11513
11514
11515 1) ACPI CA Core Subsystem:
11516
11517 Added a check for constructs of the form:  Store (Local0, Local0)
11518 where Local0 is not initialized.  Apparently, some BIOS
11519 programmers believe that this is a NOOP.  Since this store doesn't
11520 do anything anyway, the new prototype behavior will ignore this
11521 error.  This is a case where we can relax the strict checking in
11522 the interpreter in the name of compatibility.
11523
11524
11525 2) Linux
11526
11527 The AcpiSrc Source Conversion Utility has been released with the
11528 Linux package for the first time.  This is the utility that is
11529 used to convert the ACPI CA base source code to the Linux version.
11530
11531 (Both) Handle P_BLK lengths shorter than 6 more gracefully
11532
11533 (Both) Move more headers to include/acpi, and delete an unused
11534 header.
11535
11536 (Both) Move drivers/acpi/include directory to include/acpi
11537
11538 (Both) Boot functions don't use cmdline, so don't pass it around
11539
11540 (Both) Remove include of unused header (Adrian Bunk)
11541
11542 (Both) acpiphp.h includes both linux/acpi.h and acpi_bus.h. Since
11543 the
11544 former now also includes the latter, acpiphp.h only needs the one,
11545 now.
11546
11547 (2.5) Make it possible to select method of bios restoring after S3
11548 resume. [=> no more ugly ifdefs] (Pavel Machek)
11549
11550 (2.5) Make proc write interfaces work (Pavel Machek)
11551
11552 (2.5) Properly init/clean up in cpufreq/acpi (Dominik Brodowski)
11553
11554 (2.5) Break out ACPI Perf code into its own module, under cpufreq
11555 (Dominik Brodowski)
11556
11557 (2.4) S4BIOS support (Ducrot Bruno)
11558
11559 (2.4) Fix acpiphp_glue.c for latest ACPI struct changes (Sergio
11560 Visinoni)
11561
11562
11563 3) iASL Compiler:
11564
11565 Added support to disassemble SSDT and PSDTs.
11566
11567 Implemented support to obtain SSDTs from the Windows registry if
11568 available.
11569
11570
11571 ----------------------------------------
11572 09 January 2003.  Summary of changes for version 20030109.
11573
11574 1) ACPI CA Core Subsystem:
11575
11576 Changed the behavior of the internal Buffer-to-String conversion
11577 function.  The current ACPI specification states that the contents
11578 of the buffer are "converted to a string of two-character
11579 hexadecimal numbers, each separated by a space".  Unfortunately,
11580 this definition is not backwards compatible with existing ACPI 1.0
11581 implementations (although the behavior was not defined in the ACPI
11582 1.0 specification).  The new behavior simply copies data from the
11583 buffer to the string until a null character is found or the end of
11584 the buffer is reached.  The new String object is always null
11585 terminated.  This problem was seen during the generation of _BIF
11586 battery data where incorrect strings were returned for battery
11587 type, etc.  This will also require an errata to the ACPI
11588 specification.
11589
11590 Renamed all instances of NATIVE_UINT and NATIVE_INT to
11591 ACPI_NATIVE_UINT and ACPI_NATIVE_INT, respectively.
11592
11593 Copyright in all module headers (both Linux and non-Linux) has be
11594 updated to 2003.
11595
11596 Code and Data Size: Current core subsystem library sizes are shown
11597 below.  These are the code and data sizes for the acpica.lib
11598 produced by the Microsoft Visual C++ 6.0 compiler, and these
11599 values do not include any ACPI driver or OSPM code.  The debug
11600 version of the code includes the debug output trace mechanism and
11601 has a much larger code and data size.  Note that these values will
11602 vary depending on the efficiency of the compiler and the compiler
11603 options used during generation.
11604
11605   Previous Release
11606     Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
11607     Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
11608   Current Release:
11609     Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
11610     Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
11611
11612
11613 2) Linux
11614
11615 Fixed an oops on module insertion/removal (Matthew Tippett)
11616
11617 (2.4) Fix to handle dynamic size of mp_irqs (Joerg Prante)
11618
11619 (2.5) Replace pr_debug (Randy Dunlap)
11620
11621 (2.5) Remove usage of CPUFREQ_ALL_CPUS (Dominik Brodowski)
11622
11623 (Both) Eliminate spawning of thread from timer callback, in favor
11624 of schedule_work()
11625
11626 (Both) Show Lid status in /proc (Zdenek OGAR Skalak)
11627
11628 (Both) Added define for Fixed Function HW region (Matthew Wilcox)
11629
11630 (Both) Add missing statics to button.c (Pavel Machek)
11631
11632 Several changes have been made to the source code translation
11633 utility that generates the Linux Code in order to make the code
11634 more "Linux-like":
11635
11636 All typedefs on structs and unions have been removed in keeping
11637 with the Linux coding style.
11638
11639 Removed the non-Linux SourceSafe module revision number from each
11640 module header.
11641
11642 Completed major overhaul of symbols to be lowercased for linux.
11643 Doubled the number of symbols that are lowercased.
11644
11645 Fixed a problem where identifiers within procedure headers and
11646 within quotes were not fully lower cased (they were left with a
11647 starting capital.)
11648
11649 Some C macros whose only purpose is to allow the generation of 16-
11650 bit code are now completely removed in the Linux code, increasing
11651 readability and maintainability.
11652
11653 ----------------------------------------
11654
11655 12 December 2002.  Summary of changes for version 20021212.
11656
11657
11658 1) ACPI CA Core Subsystem:
11659
11660 Fixed a problem where the creation of a zero-length AML Buffer
11661 would cause a fault.
11662
11663 Fixed a problem where a Buffer object that pointed to a static AML
11664 buffer (in an ACPI table) could inadvertently be deleted, causing
11665 memory corruption.
11666
11667 Fixed a problem where a user buffer (passed in to the external
11668 ACPI CA interfaces) could be overwritten if the buffer was too
11669 small to complete the operation, causing memory corruption.
11670
11671 Fixed a problem in the Buffer-to-String conversion code where a
11672 string of length one was always returned, regardless of the size
11673 of the input Buffer object.
11674
11675 Removed the NATIVE_CHAR data type across the entire source due to
11676 lack of need and lack of consistent use.
11677
11678 Code and Data Size: Current core subsystem library sizes are shown
11679 below.  These are the code and data sizes for the acpica.lib
11680 produced by the Microsoft Visual C++ 6.0 compiler, and these
11681 values do not include any ACPI driver or OSPM code.  The debug
11682 version of the code includes the debug output trace mechanism and
11683 has a much larger code and data size.  Note that these values will
11684 vary depending on the efficiency of the compiler and the compiler
11685 options used during generation.
11686
11687   Previous Release
11688     Non-Debug Version:  72.1K Code,   9.5K Data,   81.6K Total
11689     Debug Version:     152.7K Code,  62.7K Data,  215.4K Total
11690   Current Release:
11691     Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
11692     Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
11693
11694
11695 ----------------------------------------
11696 05 December 2002.  Summary of changes for version 20021205.
11697
11698 1) ACPI CA Core Subsystem:
11699
11700 Fixed a problem where a store to a String or Buffer object could
11701 cause corruption of the DSDT if the object type being stored was
11702 the same as the target object type and the length of the object
11703 being stored was equal to or smaller than the original (existing)
11704 target object.  This was seen to cause corruption of battery _BIF
11705 buffers if the _BIF method modified the buffer on the fly.
11706
11707 Fixed a problem where an internal error was generated if a control
11708 method invocation was used in an OperationRegion, Buffer, or
11709 Package declaration.  This was caused by the deferred parsing of
11710 the control method and thus the deferred creation of the internal
11711 method object.  The solution to this problem was to create the
11712 internal method object at the moment the method is encountered in
11713 the first pass - so that subsequent references to the method will
11714 able to obtain the required parameter count and thus properly
11715 parse the method invocation.  This problem presented itself as an
11716 AE_AML_INTERNAL during the pass 1 parse phase during table load.
11717
11718 Fixed a problem where the internal String object copy routine did
11719 not always allocate sufficient memory for the target String object
11720 and caused memory corruption.  This problem was seen to cause
11721 "Allocation already present in list!" errors as memory allocation
11722 became corrupted.
11723
11724 Implemented a new function for the evaluation of namespace objects
11725 that allows the specification of the allowable return object
11726 types.  This simplifies a lot of code that checks for a return
11727 object of one or more specific objects returned from the
11728 evaluation (such as _STA, etc.)  This may become and external
11729 function if it would be useful to ACPI-related drivers.
11730
11731 Completed another round of prefixing #defines with "ACPI_" for
11732 clarity.
11733
11734 Completed additional code restructuring to allow more modular
11735 linking for iASL compiler and AcpiExec.  Several files were split
11736 creating new files.  New files:  nsparse.c dsinit.c evgpe.c
11737
11738 Implemented an abort mechanism to terminate an executing control
11739 method via the AML debugger.  This feature is useful for debugging
11740 control methods that depend (wait) for specific hardware
11741 responses.
11742
11743 Code and Data Size: Current core subsystem library sizes are shown
11744 below.  These are the code and data sizes for the acpica.lib
11745 produced by the Microsoft Visual C++ 6.0 compiler, and these
11746 values do not include any ACPI driver or OSPM code.  The debug
11747 version of the code includes the debug output trace mechanism and
11748 has a much larger code and data size.  Note that these values will
11749 vary depending on the efficiency of the compiler and the compiler
11750 options used during generation.
11751
11752   Previous Release
11753     Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
11754     Debug Version:     152.9K Code,  63.3K Data,  216.2K Total
11755   Current Release:
11756     Non-Debug Version:  72.1K Code,   9.5K Data,   81.6K Total
11757     Debug Version:     152.7K Code,  62.7K Data,  215.4K Total
11758
11759
11760 2) iASL Compiler/Disassembler
11761
11762 Fixed a compiler code generation problem for "Interrupt" Resource
11763 Descriptors.  If specified in the ASL, the optional "Resource
11764 Source Index" and "Resource Source" fields were not inserted into
11765 the correct location within the AML resource descriptor, creating
11766 an invalid descriptor.
11767
11768 Fixed a disassembler problem for "Interrupt" resource descriptors.
11769 The optional "Resource Source Index" and "Resource Source" fields
11770 were ignored.
11771
11772
11773 ----------------------------------------
11774 22 November 2002.  Summary of changes for version 20021122.
11775
11776
11777 1) ACPI CA Core Subsystem:
11778
11779 Fixed a reported problem where an object stored to a Method Local
11780 or Arg was not copied to a new object during the store - the
11781 object pointer was simply copied to the Local/Arg.  This caused
11782 all subsequent operations on the Local/Arg to also affect the
11783 original source of the store operation.
11784
11785 Fixed a problem where a store operation to a Method Local or Arg
11786 was not completed properly if the Local/Arg contained a reference
11787 (from RefOf) to a named field.  The general-purpose store-to-
11788 namespace-node code is now used so that this case is handled
11789 automatically.
11790
11791 Fixed a problem where the internal object copy routine would cause
11792 a protection fault if the object being copied was a Package and
11793 contained either 1) a NULL package element or 2) a nested sub-
11794 package.
11795
11796 Fixed a problem with the GPE initialization that resulted from an
11797 ambiguity in the ACPI specification.  One section of the
11798 specification states that both the address and length of the GPE
11799 block must be zero if the block is not supported.  Another section
11800 implies that only the address need be zero if the block is not
11801 supported.  The code has been changed so that both the address and
11802 the length must be non-zero to indicate a valid GPE block (i.e.,
11803 if either the address or the length is zero, the GPE block is
11804 invalid.)
11805
11806 Code and Data Size: Current core subsystem library sizes are shown
11807 below.  These are the code and data sizes for the acpica.lib
11808 produced by the Microsoft Visual C++ 6.0 compiler, and these
11809 values do not include any ACPI driver or OSPM code.  The debug
11810 version of the code includes the debug output trace mechanism and
11811 has a much larger code and data size.  Note that these values will
11812 vary depending on the efficiency of the compiler and the compiler
11813 options used during generation.
11814
11815   Previous Release
11816     Non-Debug Version:  71.3K Code,   9.0K Data,   80.3K Total
11817     Debug Version:     152.7K Code,  63.2K Data,  215.5K Total
11818   Current Release:
11819     Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
11820     Debug Version:     152.9K Code,  63.3K Data,  216.2K Total
11821
11822
11823 2) Linux
11824
11825 Cleaned up EC driver. Exported an external EC read/write
11826 interface. By going through this, other drivers (most notably
11827 sonypi) will be able to serialize access to the EC.
11828
11829
11830 3) iASL Compiler/Disassembler
11831
11832 Implemented support to optionally generate include files for both
11833 ASM and C (the -i switch).  This simplifies BIOS development by
11834 automatically creating include files that contain external
11835 declarations for the symbols that are created within the
11836
11837 (optionally generated) ASM and C AML source files.
11838
11839
11840 ----------------------------------------
11841 15 November 2002.  Summary of changes for version 20021115.
11842
11843 1) ACPI CA Core Subsystem:
11844
11845 Fixed a memory leak problem where an error during resolution of
11846
11847 method arguments during a method invocation from another method
11848 failed to cleanup properly by deleting all successfully resolved
11849 argument objects.
11850
11851 Fixed a problem where the target of the Index() operator was not
11852 correctly constructed if the source object was a package.  This
11853 problem has not been detected because the use of a target operand
11854 with Index() is very rare.
11855
11856 Fixed a problem with the Index() operator where an attempt was
11857 made to delete the operand objects twice.
11858
11859 Fixed a problem where an attempt was made to delete an operand
11860 twice during execution of the CondRefOf() operator if the target
11861 did not exist.
11862
11863 Implemented the first of perhaps several internal create object
11864 functions that create and initialize a specific object type.  This
11865 consolidates duplicated code wherever the object is created, thus
11866 shrinking the size of the subsystem.
11867
11868 Implemented improved debug/error messages for errors that occur
11869 during nested method invocations.  All executing method pathnames
11870 are displayed (with the error) as the call stack is unwound - thus
11871 simplifying debug.
11872
11873 Fixed a problem introduced in the 10/02 release that caused
11874 premature deletion of a buffer object if a buffer was used as an
11875 ASL operand where an integer operand is required (Thus causing an
11876 implicit object conversion from Buffer to Integer.)  The change in
11877 the 10/02 release was attempting to fix a memory leak (albeit
11878 incorrectly.)
11879
11880 Code and Data Size: Current core subsystem library sizes are shown
11881 below.  These are the code and data sizes for the acpica.lib
11882 produced by the Microsoft Visual C++ 6.0 compiler, and these
11883 values do not include any ACPI driver or OSPM code.  The debug
11884 version of the code includes the debug output trace mechanism and
11885 has a much larger code and data size.  Note that these values will
11886 vary depending on the efficiency of the compiler and the compiler
11887 options used during generation.
11888
11889   Previous Release
11890     Non-Debug Version:  71.9K Code,   9.1K Data,   81.0K Total
11891     Debug Version:     153.1K Code,  63.3K Data,  216.4K Total
11892   Current Release:
11893     Non-Debug Version:  71.3K Code,   9.0K Data,   80.3K Total
11894     Debug Version:     152.7K Code,  63.2K Data,  215.5K Total
11895
11896
11897 2) Linux
11898
11899 Changed the implementation of the ACPI semaphores to use down()
11900 instead of down_interruptable().  It is important that the
11901 execution of ACPI control methods not be interrupted by signals.
11902 Methods must run to completion, or the system may be left in an
11903 unknown/unstable state.
11904
11905 Fixed a compilation error when CONFIG_SOFTWARE_SUSPEND is not set.
11906 (Shawn Starr)
11907
11908
11909 3) iASL Compiler/Disassembler
11910
11911
11912 Changed the default location of output files.  All output files
11913 are now placed in the current directory by default instead of in
11914 the directory of the source file.  This change may affect some
11915 existing makefiles, but it brings the behavior of the compiler in
11916 line with other similar tools.  The location of the output files
11917 can be overridden with the -p command line switch.
11918
11919
11920 ----------------------------------------
11921 11 November 2002.  Summary of changes for version 20021111.
11922
11923
11924 0) ACPI Specification 2.0B is released and is now available at:
11925 http://www.acpi.info/index.html
11926
11927
11928 1) ACPI CA Core Subsystem:
11929
11930 Implemented support for the ACPI 2.0 SMBus Operation Regions.
11931 This includes the early detection and handoff of the request to
11932 the SMBus region handler (avoiding all of the complex field
11933 support code), and support for the bidirectional return packet
11934 from an SMBus write operation.  This paves the way for the
11935 development of SMBus drivers in each host operating system.
11936
11937 Fixed a problem where the semaphore WAIT_FOREVER constant was
11938 defined as 32 bits, but must be 16 bits according to the ACPI
11939 specification.  This had the side effect of causing ASL
11940 Mutex/Event timeouts even though the ASL code requested a wait
11941 forever.  Changed all internal references to the ACPI timeout
11942 parameter to 16 bits to prevent future problems.  Changed the name
11943 of WAIT_FOREVER to ACPI_WAIT_FOREVER.
11944
11945 Code and Data Size: Current core subsystem library sizes are shown
11946 below.  These are the code and data sizes for the acpica.lib
11947 produced by the Microsoft Visual C++ 6.0 compiler, and these
11948 values do not include any ACPI driver or OSPM code.  The debug
11949 version of the code includes the debug output trace mechanism and
11950 has a much larger code and data size.  Note that these values will
11951 vary depending on the efficiency of the compiler and the compiler
11952 options used during generation.
11953
11954   Previous Release
11955     Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
11956     Debug Version:     152.3K Code,  63.0K Data,  215.3K Total
11957   Current Release:
11958     Non-Debug Version:  71.9K Code,   9.1K Data,   81.0K Total
11959     Debug Version:     153.1K Code,  63.3K Data,  216.4K Total
11960
11961
11962 2) Linux
11963
11964 Module loading/unloading fixes (John Cagle)
11965
11966
11967 3) iASL Compiler/Disassembler
11968
11969 Added support for the SMBBlockProcessCall keyword (ACPI 2.0)
11970
11971 Implemented support for the disassembly of all SMBus protocol
11972 keywords (SMBQuick, SMBWord, etc.)
11973
11974 ----------------------------------------
11975 01 November 2002.  Summary of changes for version 20021101.
11976
11977
11978 1) ACPI CA Core Subsystem:
11979
11980 Fixed a problem where platforms that have a GPE1 block but no GPE0
11981 block were not handled correctly.  This resulted in a "GPE
11982 overlap" error message.  GPE0 is no longer required.
11983
11984 Removed code added in the previous release that inserted nodes
11985 into the namespace in alphabetical order.  This caused some side-
11986 effects on various machines.  The root cause of the problem is
11987 still under investigation since in theory, the internal ordering
11988 of the namespace nodes should not matter.
11989
11990
11991 Enhanced error reporting for the case where a named object is not
11992 found during control method execution.  The full ACPI namepath
11993 (name reference) of the object that was not found is displayed in
11994 this case.
11995
11996 Note: as a result of the overhaul of the namespace object types in
11997 the previous release, the namespace nodes for the predefined
11998 scopes (_TZ, _PR, etc.) are now of the type ACPI_TYPE_LOCAL_SCOPE
11999 instead of ACPI_TYPE_ANY.  This simplifies the namespace
12000 management code but may affect code that walks the namespace tree
12001 looking for specific object types.
12002
12003 Code and Data Size: Current core subsystem library sizes are shown
12004 below.  These are the code and data sizes for the acpica.lib
12005 produced by the Microsoft Visual C++ 6.0 compiler, and these
12006 values do not include any ACPI driver or OSPM code.  The debug
12007 version of the code includes the debug output trace mechanism and
12008 has a much larger code and data size.  Note that these values will
12009 vary depending on the efficiency of the compiler and the compiler
12010 options used during generation.
12011
12012   Previous Release
12013     Non-Debug Version:  70.7K Code,   8.6K Data,   79.3K Total
12014     Debug Version:     151.7K Code,  62.4K Data,  214.1K Total
12015   Current Release:
12016     Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
12017     Debug Version:     152.3K Code,  63.0K Data,  215.3K Total
12018
12019
12020 2) Linux
12021
12022 Fixed a problem introduced in the previous release where the
12023 Processor and Thermal objects were not recognized and installed in
12024 /proc.  This was related to the scope type change described above.
12025
12026
12027 3) iASL Compiler/Disassembler
12028
12029 Implemented the -g option to get all of the required ACPI tables
12030 from the registry and save them to files (Windows version of the
12031 compiler only.)  The required tables are the FADT, FACS, and DSDT.
12032
12033 Added ACPI table checksum validation during table disassembly in
12034 order to catch corrupted tables.
12035
12036
12037 ----------------------------------------
12038 22 October 2002.  Summary of changes for version 20021022.
12039
12040 1) ACPI CA Core Subsystem:
12041
12042 Implemented a restriction on the Scope operator that the target
12043 must already exist in the namespace at the time the operator is
12044 encountered (during table load or method execution).  In other
12045 words, forward references are not allowed and Scope() cannot
12046 create a new object. This changes the previous behavior where the
12047 interpreter would create the name if not found.  This new behavior
12048 correctly enables the search-to-root algorithm during namespace
12049 lookup of the target name.  Because of this upsearch, this fixes
12050 the known Compaq _SB_.OKEC problem and makes both the AML
12051 interpreter and iASL compiler compatible with other ACPI
12052 implementations.
12053
12054 Completed a major overhaul of the internal ACPI object types for
12055 the ACPI Namespace and the associated operand objects.  Many of
12056 these types had become obsolete with the introduction of the two-
12057 pass namespace load.  This cleanup simplifies the code and makes
12058 the entire namespace load mechanism much clearer and easier to
12059 understand.
12060
12061 Improved debug output for tracking scope opening/closing to help
12062 diagnose scoping issues.  The old scope name as well as the new
12063 scope name are displayed.  Also improved error messages for
12064 problems with ASL Mutex objects and error messages for GPE
12065 problems.
12066
12067 Cleaned up the namespace dump code, removed obsolete code.
12068
12069 All string output (for all namespace/object dumps) now uses the
12070 common ACPI string output procedure which handles escapes properly
12071 and does not emit non-printable characters.
12072
12073 Fixed some issues with constants in the 64-bit version of the
12074 local C library (utclib.c)
12075
12076
12077 2) Linux
12078
12079 EC Driver:  No longer attempts to acquire the Global Lock at
12080 interrupt level.
12081
12082
12083 3) iASL Compiler/Disassembler
12084
12085 Implemented ACPI 2.0B grammar change that disallows all Type 1 and
12086 2 opcodes outside of a control method.  This means that the
12087 "executable" operators (versus the "namespace" operators) cannot
12088 be used at the table level; they can only be used within a control
12089 method.
12090
12091 Implemented the restriction on the Scope() operator where the
12092 target must already exist in the namespace at the time the
12093 operator is encountered (during ASL compilation). In other words,
12094 forward references are not allowed and Scope() cannot create a new
12095 object.  This makes the iASL compiler compatible with other ACPI
12096 implementations and makes the Scope() implementation adhere to the
12097 ACPI specification.
12098
12099 Fixed a problem where namepath optimization for the Alias operator
12100 was optimizing the wrong path (of the two namepaths.)  This caused
12101 a "Missing alias link" error message.
12102
12103 Fixed a problem where an "unknown reserved name" warning could be
12104 incorrectly generated for names like "_SB" when the trailing
12105 underscore is not used in the original ASL.
12106
12107 Fixed a problem where the reserved name check did not handle
12108 NamePaths with multiple NameSegs correctly.  The first nameseg of
12109 the NamePath was examined instead of the last NameSeg.
12110
12111
12112 ----------------------------------------
12113
12114 02 October 2002.  Summary of changes for this release.
12115
12116
12117 1) ACPI CA Core Subsystem version 20021002:
12118
12119 Fixed a problem where a store/copy of a string to an existing
12120 string did not always set the string length properly in the String
12121 object.
12122
12123 Fixed a reported problem with the ToString operator where the
12124 behavior was identical to the ToHexString operator instead of just
12125 simply converting a raw buffer to a string data type.
12126
12127 Fixed a problem where CopyObject and the other "explicit"
12128 conversion operators were not updating the internal namespace node
12129 type as part of the store operation.
12130
12131 Fixed a memory leak during implicit source operand conversion
12132 where the original object was not deleted if it was converted to a
12133 new object of a different type.
12134
12135 Enhanced error messages for all problems associated with namespace
12136 lookups.  Common procedure generates and prints the lookup name as
12137 well as the formatted status.
12138
12139 Completed implementation of a new design for the Alias support
12140 within the namespace.  The existing design did not handle the case
12141 where a new object was assigned to one of the two names due to the
12142 use of an explicit conversion operator, resulting in the two names
12143 pointing to two different objects.  The new design simply points
12144 the Alias name to the original name node - not to the object.
12145 This results in a level of indirection that must be handled in the
12146 name resolution mechanism.
12147
12148 Code and Data Size: Current core subsystem library sizes are shown
12149 below.  These are the code and data sizes for the acpica.lib
12150 produced by the Microsoft Visual C++ 6.0 compiler, and these
12151 values do not include any ACPI driver or OSPM code.  The debug
12152 version of the code includes the debug output trace mechanism and
12153 has a larger code and data size.  Note that these values will vary
12154 depending on the efficiency of the compiler and the compiler
12155 options used during generation.
12156
12157   Previous Release
12158     Non-Debug Version:  69.6K Code,   8.3K Data,   77.9K Total
12159     Debug Version:     150.0K Code,  61.7K Data,  211.7K Total
12160   Current Release:
12161     Non-Debug Version:  70.7K Code,   8.6K Data,   79.3K Total
12162     Debug Version:     151.7K Code,  62.4K Data,  214.1K Total
12163
12164
12165 2) Linux
12166
12167 Initialize thermal driver's timer before it is used. (Knut
12168 Neumann)
12169
12170 Allow handling negative celsius values. (Kochi Takayoshi)
12171
12172 Fix thermal management and make trip points. R/W (Pavel Machek)
12173
12174 Fix /proc/acpi/sleep. (P. Christeas)
12175
12176 IA64 fixes. (David Mosberger)
12177
12178 Fix reversed logic in blacklist code. (Sergio Monteiro Basto)
12179
12180 Replace ACPI_DEBUG define with ACPI_DEBUG_OUTPUT. (Dominik
12181 Brodowski)
12182
12183
12184 3) iASL Compiler/Disassembler
12185
12186 Clarified some warning/error messages.
12187
12188
12189 ----------------------------------------
12190 18 September 2002.  Summary of changes for this release.
12191
12192
12193 1) ACPI CA Core Subsystem version 20020918:
12194
12195 Fixed a reported problem with reference chaining (via the Index()
12196 and RefOf() operators) in the ObjectType() and SizeOf() operators.
12197 The definition of these operators includes the dereferencing of
12198 all chained references to return information on the base object.
12199
12200 Fixed a problem with stores to indexed package elements - the
12201 existing code would not complete the store if an "implicit
12202 conversion" was not performed.  In other words, if the existing
12203 object (package element) was to be replaced completely, the code
12204 didn't handle this case.
12205
12206 Relaxed typechecking on the ASL "Scope" operator to allow the
12207 target name to refer to an object of type Integer, String, or
12208 Buffer, in addition to the scoping object types (Device,
12209 predefined Scopes, Processor, PowerResource, and ThermalZone.)
12210 This allows existing AML code that has workarounds for a bug in
12211 Windows to function properly.  A warning is issued, however.  This
12212 affects both the AML interpreter and the iASL compiler. Below is
12213 an example of this type of ASL code:
12214
12215       Name(DEB,0x00)
12216       Scope(DEB)
12217       {
12218
12219 Fixed some reported problems with 64-bit integer support in the
12220 local implementation of C library functions (clib.c)
12221
12222
12223 2) Linux
12224
12225 Use ACPI fix map region instead of IOAPIC region, since it is
12226 undefined in non-SMP.
12227
12228 Ensure that the SCI has the proper polarity and trigger, even on
12229 systems that do not have an interrupt override entry in the MADT.
12230
12231 2.5 big driver reorganization (Pat Mochel)
12232
12233 Use early table mapping code from acpitable.c (Andi Kleen)
12234
12235 New blacklist entries (Andi Kleen)
12236
12237 Blacklist improvements. Split blacklist code out into a separate
12238 file. Move checking the blacklist to very early. Previously, we
12239 would use ACPI tables, and then halfway through init, check the
12240 blacklist -- too late. Now, it's early enough to completely fall-
12241 back to non-ACPI.
12242
12243
12244 3) iASL Compiler/Disassembler version 20020918:
12245
12246 Fixed a problem where the typechecking code didn't know that an
12247 alias could point to a method.  In other words, aliases were not
12248 being dereferenced during typechecking.
12249
12250
12251 ----------------------------------------
12252 29 August 2002.  Summary of changes for this release.
12253
12254 1) ACPI CA Core Subsystem Version 20020829:
12255
12256 If the target of a Scope() operator already exists, it must be an
12257 object type that actually opens a scope -- such as a Device,
12258 Method, Scope, etc.  This is a fatal runtime error.  Similar error
12259 check has been added to the iASL compiler also.
12260
12261 Tightened up the namespace load to disallow multiple names in the
12262 same scope.  This previously was allowed if both objects were of
12263 the same type.  (i.e., a lookup was the same as entering a new
12264 name).
12265
12266
12267 2) Linux
12268
12269 Ensure that the ACPI interrupt has the proper trigger and
12270 polarity.
12271
12272 local_irq_disable is extraneous. (Matthew Wilcox)
12273
12274 Make "acpi=off" actually do what it says, and not use the ACPI
12275 interpreter *or* the tables.
12276
12277 Added arch-neutral support for parsing SLIT and SRAT tables (Kochi
12278 Takayoshi)
12279
12280
12281 3) iASL Compiler/Disassembler  Version 20020829:
12282
12283 Implemented namepath optimization for name declarations.  For
12284 example, a declaration like "Method (\_SB_.ABCD)" would get
12285 optimized to "Method (ABCD)" if the declaration is within the
12286 \_SB_ scope.  This optimization is in addition to the named
12287 reference path optimization first released in the previous
12288 version. This would seem to complete all possible optimizations
12289 for namepaths within the ASL/AML.
12290
12291 If the target of a Scope() operator already exists, it must be an
12292 object type that actually opens a scope -- such as a Device,
12293 Method, Scope, etc.
12294
12295 Implemented a check and warning for unreachable code in the same
12296 block below a Return() statement.
12297
12298 Fixed a problem where the listing file was not generated if the
12299 compiler aborted if the maximum error count was exceeded (200).
12300
12301 Fixed a problem where the typechecking of method return values was
12302 broken.  This includes the check for a return value when the
12303 method is invoked as a TermArg (a return value is expected.)
12304
12305 Fixed a reported problem where EOF conditions during a quoted
12306 string or comment caused a fault.
12307
12308
12309 ----------------------------------------
12310 15 August 2002.  Summary of changes for this release.
12311
12312 1) ACPI CA Core Subsystem Version 20020815:
12313
12314 Fixed a reported problem where a Store to a method argument that
12315 contains a reference did not perform the indirect store correctly.
12316 This problem was created during the conversion to the new
12317 reference object model - the indirect store to a method argument
12318 code was not updated to reflect the new model.
12319
12320 Reworked the ACPI mode change code to better conform to ACPI 2.0,
12321 handle corner cases, and improve code legibility (Kochi Takayoshi)
12322
12323 Fixed a problem with the pathname parsing for the carat (^)
12324 prefix.  The heavy use of the carat operator by the new namepath
12325 optimization in the iASL compiler uncovered a problem with the AML
12326 interpreter handling of this prefix.  In the case where one or
12327 more carats precede a single nameseg, the nameseg was treated as
12328 standalone and the search rule (to root) was inadvertently
12329 applied.  This could cause both the iASL compiler and the
12330 interpreter to find the wrong object or to miss the error that
12331 should occur if the object does not exist at that exact pathname.
12332
12333 Found and fixed the problem where the HP Pavilion DSDT would not
12334 load.  This was a relatively minor tweak to the table loading code
12335 (a problem caused by the unexpected encounter with a method
12336 invocation not within a control method), but it does not solve the
12337 overall issue of the execution of AML code at the table level.
12338 This investigation is still ongoing.
12339
12340 Code and Data Size: Current core subsystem library sizes are shown
12341 below.  These are the code and data sizes for the acpica.lib
12342 produced by the Microsoft Visual C++ 6.0 compiler, and these
12343 values do not include any ACPI driver or OSPM code.  The debug
12344 version of the code includes the debug output trace mechanism and
12345 has a larger code and data size.  Note that these values will vary
12346 depending on the efficiency of the compiler and the compiler
12347 options used during generation.
12348
12349   Previous Release
12350     Non-Debug Version:  69.1K Code,   8.2K Data,   77.3K Total
12351     Debug Version:     149.4K Code,  61.6K Data,  211.0K Total
12352   Current Release:
12353     Non-Debug Version:  69.6K Code,   8.3K Data,   77.9K Total
12354     Debug Version:     150.0K Code,  61.7K Data,  211.7K Total
12355
12356
12357 2) Linux
12358
12359 Remove redundant slab.h include (Brad Hards)
12360
12361 Fix several bugs in thermal.c (Herbert Nachtnebel)
12362
12363 Make CONFIG_ACPI_BOOT work properly (Pavel Machek)
12364
12365 Change acpi_system_suspend to use updated irq functions (Pavel
12366 Machek)
12367
12368 Export acpi_get_firmware_table (Matthew Wilcox)
12369
12370 Use proper root proc entry for ACPI (Kochi Takayoshi)
12371
12372 Fix early-boot table parsing (Bjorn Helgaas)
12373
12374
12375 3) iASL Compiler/Disassembler
12376
12377 Reworked the compiler options to make them more consistent and to
12378 use two-letter options where appropriate.  We were running out of
12379 sensible letters.   This may break some makefiles, so check the
12380 current options list by invoking the compiler with no parameters.
12381
12382 Completed the design and implementation of the ASL namepath
12383 optimization option for the compiler.  This option optimizes all
12384 references to named objects to the shortest possible path.  The
12385 first attempt tries to utilize a single nameseg (4 characters) and
12386 the "search-to-root" algorithm used by the interpreter.  If that
12387 cannot be used (because either the name is not in the search path
12388 or there is a conflict with another object with the same name),
12389 the pathname is optimized using the carat prefix (usually a
12390 shorter string than specifying the entire path from the root.)
12391
12392 Implemented support to obtain the DSDT from the Windows registry
12393 (when the disassembly option is specified with no input file).
12394 Added this code as the implementation for AcpiOsTableOverride in
12395 the Windows OSL.  Migrated the 16-bit code (used in the AcpiDump
12396 utility) to scan memory for the DSDT to the AcpiOsTableOverride
12397 function in the DOS OSL to make the disassembler truly OS
12398 independent.
12399
12400 Implemented a new option to disassemble and compile in one step.
12401 When used without an input filename, this option will grab the
12402 DSDT from the local machine, disassemble it, and compile it in one
12403 step.
12404
12405 Added a warning message for invalid escapes (a backslash followed
12406 by any character other than the allowable escapes).  This catches
12407 the quoted string error "\_SB_" (which should be "\\_SB_" ).
12408
12409 Also, there are numerous instances in the ACPI specification where
12410 this error occurs.
12411
12412 Added a compiler option to disable all optimizations.  This is
12413 basically the "compatibility mode" because by using this option,
12414 the AML code will come out exactly the same as other ASL
12415 compilers.
12416
12417 Added error messages for incorrectly ordered dependent resource
12418 functions.  This includes: missing EndDependentFn macro at end of
12419 dependent resource list, nested dependent function macros (both
12420 start and end), and missing StartDependentFn macro.  These are
12421 common errors that should be caught at compile time.
12422
12423 Implemented _OSI support for the disassembler and compiler.  _OSI
12424 must be included in the namespace for proper disassembly (because
12425 the disassembler must know the number of arguments.)
12426
12427 Added an "optimization" message type that is optional (off by
12428 default).  This message is used for all optimizations - including
12429 constant folding, integer optimization, and namepath optimization.
12430
12431 ----------------------------------------
12432 25 July 2002.  Summary of changes for this release.
12433
12434
12435 1) ACPI CA Core Subsystem Version 20020725:
12436
12437 The AML Disassembler has been enhanced to produce compilable ASL
12438 code and has been integrated into the iASL compiler (see below) as
12439 well as the single-step disassembly for the AML debugger and the
12440 disassembler for the AcpiDump utility.  All ACPI 2.0A opcodes,
12441 resource templates and macros are fully supported.  The
12442 disassembler has been tested on over 30 different AML files,
12443 producing identical AML when the resulting disassembled ASL file
12444 is recompiled with the same ASL compiler.
12445
12446 Modified the Resource Manager to allow zero interrupts and zero
12447 dma channels during the GetCurrentResources call.  This was
12448 causing problems on some platforms.
12449
12450 Added the AcpiOsRedirectOutput interface to the OSL to simplify
12451 output redirection for the AcpiOsPrintf and AcpiOsVprintf
12452 interfaces.
12453
12454 Code and Data Size: Current core subsystem library sizes are shown
12455 below.  These are the code and data sizes for the acpica.lib
12456 produced by the Microsoft Visual C++ 6.0 compiler, and these
12457 values do not include any ACPI driver or OSPM code.  The debug
12458 version of the code includes the debug output trace mechanism and
12459 has a larger code and data size.  Note that these values will vary
12460 depending on the efficiency of the compiler and the compiler
12461 options used during generation.
12462
12463   Previous Release
12464     Non-Debug Version:  68.7K Code,   7.4K Data,   76.1K Total
12465     Debug Version:     142.9K Code,  58.7K Data,  201.6K Total
12466   Current Release:
12467     Non-Debug Version:  69.1K Code,   8.2K Data,   77.3K Total
12468     Debug Version:     149.4K Code,  61.6K Data,  211.0K Total
12469
12470
12471 2) Linux
12472
12473 Fixed a panic in the EC driver (Dominik Brodowski)
12474
12475 Implemented checksum of the R/XSDT itself during Linux table scan
12476 (Richard Schaal)
12477
12478
12479 3) iASL compiler
12480
12481 The AML disassembler is integrated into the compiler.  The "-d"
12482 option invokes the disassembler  to completely disassemble an
12483 input AML file, producing as output a text ASL file with the
12484 extension ".dsl" (to avoid name collisions with existing .asl
12485 source files.)  A future enhancement will allow the disassembler
12486 to obtain the BIOS DSDT from the registry under Windows.
12487
12488 Fixed a problem with the VendorShort and VendorLong resource
12489 descriptors where an invalid AML sequence was created.
12490
12491 Implemented a fix for BufferData term in the ASL parser.  It was
12492 inadvertently defined twice, allowing invalid syntax to pass and
12493 causing reduction conflicts.
12494
12495 Fixed a problem where the Ones opcode could get converted to a
12496 value of zero if "Ones" was used where a byte, word or dword value
12497 was expected.  The 64-bit value is now truncated to the correct
12498 size with the correct value.
12499
12500
12501
12502 ----------------------------------------
12503 02 July 2002.  Summary of changes for this release.
12504
12505
12506 1) ACPI CA Core Subsystem Version 20020702:
12507
12508 The Table Manager code has been restructured to add several new
12509 features.  Tables that are not required by the core subsystem
12510 (other than the FADT, DSDT, FACS, PSDTs, etc.) are no longer
12511 validated in any way and are returned from AcpiGetFirmwareTable if
12512 requested.  The AcpiOsTableOverride interface is now called for
12513 each table that is loaded by the subsystem in order to allow the
12514 host to override any table it chooses.  Previously, only the DSDT
12515 could be overridden.  Added one new files, tbrsdt.c and
12516 tbgetall.c.
12517
12518 Fixed a problem with the conversion of internal package objects to
12519 external objects (when a package is returned from a control
12520 method.)  The return buffer length was set to zero instead of the
12521 proper length of the package object.
12522
12523 Fixed a reported problem with the use of the RefOf and DeRefOf
12524 operators when passing reference arguments to control methods.  A
12525 new type of Reference object is used internally for references
12526 produced by the RefOf operator.
12527
12528 Added additional error messages in the Resource Manager to explain
12529 AE_BAD_DATA errors when they occur during resource parsing.
12530
12531 Split the AcpiEnableSubsystem into two primitives to enable a
12532 finer granularity initialization sequence.  These two calls should
12533 be called in this order: AcpiEnableSubsystem (flags),
12534 AcpiInitializeObjects (flags).  The flags parameter remains the
12535 same.
12536
12537
12538 2) Linux
12539
12540 Updated the ACPI utilities module to understand the new style of
12541 fully resolved package objects that are now returned from the core
12542 subsystem.  This eliminates errors of the form:
12543
12544     ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PPB_._PRT]
12545     acpi_utils-0430 [145] acpi_evaluate_reference:
12546         Invalid element in package (not a device reference)
12547
12548 The method evaluation utility uses the new buffer allocation
12549 scheme instead of calling AcpiEvaluate Object twice.
12550
12551 Added support for ECDT. This allows the use of the Embedded
12552
12553 Controller before the namespace has been fully initialized, which
12554 is necessary for ACPI 2.0 support, and for some laptops to
12555 initialize properly. (Laptops using ECDT are still rare, so only
12556 limited testing was performed of the added functionality.)
12557
12558 Fixed memory leaks in the EC driver.
12559
12560 Eliminated a brittle code structure in acpi_bus_init().
12561
12562 Eliminated the acpi_evaluate() helper function in utils.c. It is
12563 no longer needed since acpi_evaluate_object can optionally
12564 allocate memory for the return object.
12565
12566 Implemented fix for keyboard hang when getting battery readings on
12567 some systems (Stephen White)
12568
12569 PCI IRQ routing update (Dominik Brodowski)
12570
12571 Fix an ifdef to allow compilation on UP with LAPIC but no IOAPIC
12572 support
12573
12574 ----------------------------------------
12575 11 June 2002.  Summary of changes for this release.
12576
12577
12578 1) ACPI CA Core Subsystem Version 20020611:
12579
12580 Fixed a reported problem where constants such as Zero and One
12581 appearing within _PRT packages were not handled correctly within
12582 the resource manager code.  Originally reported against the ASL
12583 compiler because the code generator now optimizes integers to
12584 their minimal AML representation (i.e. AML constants if possible.)
12585 The _PRT code now handles all AML constant opcodes correctly
12586 (Zero, One, Ones, Revision).
12587
12588 Fixed a problem with the Concatenate operator in the AML
12589 interpreter where a buffer result object was incorrectly marked as
12590 not fully evaluated, causing a run-time error of AE_AML_INTERNAL.
12591
12592 All package sub-objects are now fully resolved before they are
12593 returned from the external ACPI interfaces.  This means that name
12594 strings are resolved to object handles, and constant operators
12595 (Zero, One, Ones, Revision) are resolved to Integers.
12596
12597 Implemented immediate resolution of the AML Constant opcodes
12598 (Zero, One, Ones, Revision) to Integer objects upon detection
12599 within the AML stream. This has simplified and reduced the
12600 generated code size of the subsystem by eliminating about 10
12601 switch statements for these constants (which previously were
12602 contained in Reference objects.)  The complicating issues are that
12603 the Zero opcode is used as a "placeholder" for unspecified
12604 optional target operands and stores to constants are defined to be
12605 no-ops.
12606
12607 Code and Data Size: Current core subsystem library sizes are shown
12608 below. These are the code and data sizes for the acpica.lib
12609 produced by the Microsoft Visual C++ 6.0 compiler, and these
12610 values do not include any ACPI driver or OSPM code.  The debug
12611 version of the code includes the debug output trace mechanism and
12612 has a larger code and data size.  Note that these values will vary
12613 depending on the efficiency of the compiler and the compiler
12614 options used during generation.
12615
12616   Previous Release
12617     Non-Debug Version:  69.3K Code,   7.4K Data,   76.7K Total
12618     Debug Version:     143.8K Code,  58.8K Data,  202.6K Total
12619   Current Release:
12620     Non-Debug Version:  68.7K Code,   7.4K Data,   76.1K Total
12621     Debug Version:     142.9K Code,  58.7K Data,  201.6K Total
12622
12623
12624 2) Linux
12625
12626
12627 Added preliminary support for obtaining _TRA data for PCI root
12628 bridges (Bjorn Helgaas).
12629
12630
12631 3) iASL Compiler Version X2046:
12632
12633 Fixed a problem where the "_DDN" reserved name was defined to be a
12634 control method with one argument.  There are no arguments, and
12635 _DDN does not have to be a control method.
12636
12637 Fixed a problem with the Linux version of the compiler where the
12638 source lines printed with error messages were the wrong lines.
12639 This turned out to be the "LF versus CR/LF" difference between
12640 Windows and Unix.  This appears to be the longstanding issue
12641 concerning listing output and error messages.
12642
12643 Fixed a problem with the Linux version of compiler where opcode
12644 names within error messages were wrong.  This was caused by a
12645 slight difference in the output of the Flex tool on Linux versus
12646 Windows.
12647
12648 Fixed a problem with the Linux compiler where the hex output files
12649 contained some garbage data caused by an internal buffer overrun.
12650
12651
12652 ----------------------------------------
12653 17 May 2002.  Summary of changes for this release.
12654
12655
12656 1) ACPI CA Core Subsystem Version 20020517:
12657
12658 Implemented a workaround to an BIOS bug discovered on the HP
12659 OmniBook where the FADT revision number and the table size are
12660 inconsistent (ACPI 2.0 revision vs. ACPI 1.0 table size).  The new
12661 behavior is to fallback to using only the ACPI 1.0 fields of the
12662 FADT if the table is too small to be a ACPI 2.0 table as claimed
12663 by the revision number.  Although this is a BIOS bug, this is a
12664 case where the workaround is simple enough and with no side
12665 effects, so it seemed prudent to add it.  A warning message is
12666 issued, however.
12667
12668 Implemented minimum size checks for the fixed-length ACPI tables -
12669 - the FADT and FACS, as well as consistency checks between the
12670 revision number and the table size.
12671
12672 Fixed a reported problem in the table override support where the
12673 new table pointer was incorrectly treated as a physical address
12674 instead of a logical address.
12675
12676 Eliminated the use of the AE_AML_ERROR exception and replaced it
12677 with more descriptive codes.
12678
12679 Fixed a problem where an exception would occur if an ASL Field was
12680 defined with no named Field Units underneath it (used by some
12681 index fields).
12682
12683 Code and Data Size: Current core subsystem library sizes are shown
12684 below.  These are the code and data sizes for the acpica.lib
12685 produced by the Microsoft Visual C++ 6.0 compiler, and these
12686 values do not include any ACPI driver or OSPM code.  The debug
12687 version of the code includes the debug output trace mechanism and
12688 has a larger code and data size.  Note that these values will vary
12689 depending on the efficiency of the compiler and the compiler
12690 options used during generation.
12691
12692   Previous Release
12693     Non-Debug Version:  68.8K Code,   7.1K Data,   75.9K Total
12694     Debug Version:     142.9K Code,  58.4K Data,  201.3K Total
12695   Current Release:
12696     Non-Debug Version:  69.3K Code,   7.4K Data,   76.7K Total
12697     Debug Version:     143.8K Code,  58.8K Data,  202.6K Total
12698
12699
12700
12701 2) Linux
12702
12703 Much work done on ACPI init (MADT and PCI IRQ routing support).
12704 (Paul D. and Dominik Brodowski)
12705
12706 Fix PCI IRQ-related panic on boot (Sam Revitch)
12707
12708 Set BM_ARB_DIS when entering a sleep state (Ducrot Bruno)
12709
12710 Fix "MHz" typo (Dominik Brodowski)
12711
12712 Fix RTC year 2000 issue (Dominik Brodowski)
12713
12714 Preclude multiple button proc entries (Eric Brunet)
12715
12716 Moved arch-specific code out of include/platform/aclinux.h
12717
12718 3) iASL Compiler Version X2044:
12719
12720 Implemented error checking for the string used in the EISAID macro
12721 (Usually used in the definition of the _HID object.)  The code now
12722 strictly enforces the PnP format - exactly 7 characters, 3
12723 uppercase letters and 4 hex digits.
12724
12725 If a raw string is used in the definition of the _HID object
12726 (instead of the EISAID macro), the string must contain all
12727 alphanumeric characters (e.g., "*PNP0011" is not allowed because
12728 of the asterisk.)
12729
12730 Implemented checking for invalid use of ACPI reserved names for
12731 most of the name creation operators (Name, Device, Event, Mutex,
12732 OperationRegion, PowerResource, Processor, and ThermalZone.)
12733 Previously, this check was only performed for control methods.
12734
12735 Implemented an additional check on the Name operator to emit an
12736 error if a reserved name that must be implemented in ASL as a
12737 control method is used.  We know that a reserved name must be a
12738 method if it is defined with input arguments.
12739
12740 The warning emitted when a namespace object reference is not found
12741 during the cross reference phase has been changed into an error.
12742 The "External" directive should be used for names defined in other
12743 modules.
12744
12745
12746 4) Tools and Utilities
12747
12748 The 16-bit tools (adump16 and aexec16) have been regenerated and
12749 tested.
12750
12751 Fixed a problem with the output of both acpidump and adump16 where
12752 the indentation of closing parentheses and brackets was not
12753
12754 aligned properly with the parent block.
12755
12756
12757 ----------------------------------------
12758 03 May 2002.  Summary of changes for this release.
12759
12760
12761 1) ACPI CA Core Subsystem Version 20020503:
12762
12763 Added support a new OSL interface that allows the host operating
12764
12765 system software to override the DSDT found in the firmware -
12766 AcpiOsTableOverride.  With this interface, the OSL can examine the
12767 version of the firmware DSDT and replace it with a different one
12768 if desired.
12769
12770 Added new external interfaces for accessing ACPI registers from
12771 device drivers and other system software - AcpiGetRegister and
12772 AcpiSetRegister.  This was simply an externalization of the
12773 existing AcpiHwBitRegister interfaces.
12774
12775 Fixed a regression introduced in the previous build where the
12776 ASL/AML CreateField operator always returned an error,
12777 "destination must be a NS Node".
12778
12779 Extended the maximum time (before failure) to successfully enable
12780 ACPI mode to 3 seconds.
12781
12782 Code and Data Size: Current core subsystem library sizes are shown
12783 below.  These are the code and data sizes for the acpica.lib
12784 produced by the Microsoft Visual C++ 6.0 compiler, and these
12785 values do not include any ACPI driver or OSPM code.  The debug
12786 version of the code includes the debug output trace mechanism and
12787 has a larger code and data size.  Note that these values will vary
12788 depending on the efficiency of the compiler and the compiler
12789 options used during generation.
12790
12791   Previous Release
12792     Non-Debug Version:  68.5K Code,   7.0K Data,   75.5K Total
12793     Debug Version:     142.4K Code,  58.3K Data,  200.7K Total
12794   Current Release:
12795     Non-Debug Version:  68.8K Code,   7.1K Data,   75.9K Total
12796     Debug Version:     142.9K Code,  58.4K Data,  201.3K Total
12797
12798
12799 2) Linux
12800
12801 Enhanced ACPI init code for SMP. We are now fully MPS and $PIR-
12802 free. While 3 out of 4 of our in-house systems work fine, the last
12803 one still hangs when testing the LAPIC timer.
12804
12805 Renamed many files in 2.5 kernel release to omit "acpi_" from the
12806 name.
12807
12808 Added warning on boot for Presario 711FR.
12809
12810 Sleep improvements (Pavel Machek)
12811
12812 ACPI can now be built without CONFIG_PCI enabled.
12813
12814 IA64: Fixed memory map functions (JI Lee)
12815
12816
12817 3) iASL Compiler Version X2043:
12818
12819 Added support to allow the compiler to be integrated into the MS
12820 VC++ development environment for one-button compilation of single
12821 files or entire projects -- with error-to-source-line mapping.
12822
12823 Implemented support for compile-time constant folding for the
12824 Type3, Type4, and Type5 opcodes first defined in the ACPI 2.0
12825 specification.  This allows the ASL writer to use expressions
12826 instead of Integer/Buffer/String constants in terms that must
12827 evaluate to constants at compile time and will also simplify the
12828 emitted AML in any such sub-expressions that can be folded
12829 (evaluated at compile-time.)  This increases the size of the
12830 compiler significantly because a portion of the ACPI CA AML
12831 interpreter is included within the compiler in order to pre-
12832 evaluate constant expressions.
12833
12834
12835 Fixed a problem with the "Unicode" ASL macro that caused the
12836 compiler to fault.  (This macro is used in conjunction with the
12837 _STR reserved name.)
12838
12839 Implemented an AML opcode optimization to use the Zero, One, and
12840 Ones opcodes where possible to further reduce the size of integer
12841 constants and thus reduce the overall size of the generated AML
12842 code.
12843
12844 Implemented error checking for new reserved terms for ACPI version
12845 2.0A.
12846
12847 Implemented the -qr option to display the current list of ACPI
12848 reserved names known to the compiler.
12849
12850 Implemented the -qc option to display the current list of ASL
12851 operators that are allowed within constant expressions and can
12852 therefore be folded at compile time if the operands are constants.
12853
12854
12855 4) Documentation
12856
12857 Updated the Programmer's Reference for new interfaces, data types,
12858 and memory allocation model options.
12859
12860 Updated the iASL Compiler User Reference to apply new format and
12861 add information about new features and options.
12862
12863 ----------------------------------------
12864 19 April 2002.  Summary of changes for this release.
12865
12866 1) ACPI CA Core Subsystem Version 20020419:
12867
12868 The source code base for the Core Subsystem has been completely
12869 cleaned with PC-lint (FlexLint) for both 32-bit and 64-bit
12870 versions.  The Lint option files used are included in the
12871 /acpi/generate/lint directory.
12872
12873 Implemented enhanced status/error checking across the entire
12874 Hardware manager subsystem.  Any hardware errors (reported from
12875 the OSL) are now bubbled up and will abort a running control
12876 method.
12877
12878
12879 Fixed a problem where the per-ACPI-table integer width (32 or 64)
12880 was stored only with control method nodes, causing a fault when
12881 non-control method code was executed during table loading.  The
12882 solution implemented uses a global variable to indicate table
12883 width across the entire ACPI subsystem.  Therefore, ACPI CA does
12884 not support mixed integer widths across different ACPI tables
12885 (DSDT, SSDT).
12886
12887 Fixed a problem where NULL extended fields (X fields) in an ACPI
12888 2.0 ACPI FADT caused the table load to fail.  Although the
12889 existing ACPI specification is a bit fuzzy on this topic, the new
12890 behavior is to fall back on a ACPI 1.0 field if the corresponding
12891 ACPI 2.0 X field is zero (even though the table revision indicates
12892 a full ACPI 2.0 table.)  The ACPI specification will be updated to
12893 clarify this issue.
12894
12895 Fixed a problem with the SystemMemory operation region handler
12896 where memory was always accessed byte-wise even if the AML-
12897 specified access width was larger than a byte.  This caused
12898 problems on systems with memory-mapped I/O.  Memory is now
12899 accessed with the width specified.  On systems that do not support
12900 non-aligned transfers, a check is made to guarantee proper address
12901 alignment before proceeding in order to avoid an AML-caused
12902 alignment fault within the kernel.
12903
12904
12905 Fixed a problem with the ExtendedIrq resource where only one byte
12906 of the 4-byte Irq field was extracted.
12907
12908 Fixed the AcpiExDigitsNeeded() procedure to support _UID.  This
12909 function was out of date and required a rewrite.
12910
12911 Code and Data Size: Current core subsystem library sizes are shown
12912 below.  These are the code and data sizes for the acpica.lib
12913 produced by the Microsoft Visual C++ 6.0 compiler, and these
12914 values do not include any ACPI driver or OSPM code.  The debug
12915 version of the code includes the debug output trace mechanism and
12916 has a larger code and data size.  Note that these values will vary
12917 depending on the efficiency of the compiler and the compiler
12918 options used during generation.
12919
12920   Previous Release
12921     Non-Debug Version:  66.6K Code,   6.5K Data,   73.1K Total
12922     Debug Version:     139.8K Code,  57.4K Data,  197.2K Total
12923   Current Release:
12924     Non-Debug Version:  68.5K Code,   7.0K Data,   75.5K Total
12925     Debug Version:     142.4K Code,  58.3K Data,  200.7K Total
12926
12927
12928 2) Linux
12929
12930 PCI IRQ routing fixes (Dominik Brodowski)
12931
12932
12933 3) iASL Compiler Version X2042:
12934
12935 Implemented an additional compile-time error check for a field
12936 unit whose size + minimum access width would cause a run-time
12937 access beyond the end-of-region.  Previously, only the field size
12938 itself was checked.
12939
12940 The Core subsystem and iASL compiler now share a common parse
12941 object in preparation for compile-time evaluation of the type
12942 3/4/5 ASL operators.
12943
12944
12945 ----------------------------------------
12946 Summary of changes for this release: 03_29_02
12947
12948 1) ACPI CA Core Subsystem Version 20020329:
12949
12950 Implemented support for late evaluation of TermArg operands to
12951 Buffer and Package objects.  This allows complex expressions to be
12952 used in the declarations of these object types.
12953
12954 Fixed an ACPI 1.0 compatibility issue when reading Fields. In ACPI
12955 1.0, if the field was larger than 32 bits, it was returned as a
12956 buffer - otherwise it was returned as an integer.  In ACPI 2.0,
12957 the field is returned as a buffer only if the field is larger than
12958 64 bits.  The TableRevision is now considered when making this
12959 conversion to avoid incompatibility with existing ASL code.
12960
12961 Implemented logical addressing for AcpiOsGetRootPointer.  This
12962 allows an RSDP with either a logical or physical address.  With
12963 this support, the host OS can now override all ACPI tables with
12964 one logical RSDP.  Includes implementation of  "typed" pointer
12965 support to allow a common data type for both physical and logical
12966 pointers internally.  This required a change to the
12967 AcpiOsGetRootPointer interface.
12968
12969 Implemented the use of ACPI 2.0 Generic Address Structures for all
12970 GPE, Fixed Event, and PM Timer I/O.  This allows the use of memory
12971 mapped I/O for these ACPI features.
12972
12973 Initialization now ignores not only non-required tables (All
12974 tables other than the FADT, FACS, DSDT, and SSDTs), but also does
12975 not validate the table headers of unrecognized tables.
12976
12977 Fixed a problem where a notify handler could only be
12978 installed/removed on an object of type Device.  All "notify"
12979
12980 objects are now supported -- Devices, Processor, Power, and
12981 Thermal.
12982
12983 Removed most verbosity from the ACPI_DB_INFO debug level.  Only
12984 critical information is returned when this debug level is enabled.
12985
12986 Code and Data Size: Current core subsystem library sizes are shown
12987 below.  These are the code and data sizes for the acpica.lib
12988 produced by the Microsoft Visual C++ 6.0 compiler, and these
12989 values do not include any ACPI driver or OSPM code.  The debug
12990 version of the code includes the debug output trace mechanism and
12991 has a larger code and data size.  Note that these values will vary
12992 depending on the efficiency of the compiler and the compiler
12993 options used during generation.
12994
12995   Previous Release
12996     Non-Debug Version:  65.4K Code,   6.2K Data,   71.6K Total
12997     Debug Version:     138.0K Code,  56.6K Data,  194.6K Total
12998   Current Release:
12999     Non-Debug Version:  66.6K Code,   6.5K Data,   73.1K Total
13000     Debug Version:     139.8K Code,  57.4K Data,  197.2K Total
13001
13002
13003 2) Linux:
13004
13005 The processor driver (acpi_processor.c) now fully supports ACPI
13006 2.0-based processor performance control (e.g. Intel(R)
13007 SpeedStep(TM) technology) Note that older laptops that only have
13008 the Intel "applet" interface are not supported through this.  The
13009 'limit' and 'performance' interface (/proc) are fully functional.
13010 [Note that basic policy for controlling performance state
13011 transitions will be included in the next version of ospmd.]  The
13012 idle handler was modified to more aggressively use C2, and PIIX4
13013 errata handling underwent a complete overhaul (big thanks to
13014 Dominik Brodowski).
13015
13016 Added support for ACPI-PCI device binding (acpi_pci_root.c). _ADR-
13017 based devices in the ACPI namespace are now dynamically bound
13018 (associated) with their PCI counterparts (e.g. PCI1->01:00.0).
13019 This allows, among other things, ACPI to resolve bus numbers for
13020 subordinate PCI bridges.
13021
13022 Enhanced PCI IRQ routing to get the proper bus number for _PRT
13023 entries defined underneath PCI bridges.
13024
13025 Added IBM 600E to bad bios list due to invalid _ADR value for
13026 PIIX4 PCI-ISA bridge, resulting in improper PCI IRQ routing.
13027
13028 In the process of adding full MADT support (e.g. IOAPIC) for IA32
13029 (acpi.c, mpparse.c) -- stay tuned.
13030
13031 Added back visual differentiation between fixed-feature and
13032 control-method buttons in dmesg.  Buttons are also subtyped (e.g.
13033 button/power/PWRF) to simplify button identification.
13034
13035 We no longer use -Wno-unused when compiling debug. Please ignore
13036 any "_THIS_MODULE defined but not used" messages.
13037
13038 Can now shut down the system using "magic sysrq" key.
13039
13040
13041 3) iASL Compiler version 2041:
13042
13043 Fixed a problem where conversion errors for hex/octal/decimal
13044 constants were not reported.
13045
13046 Implemented a fix for the General Register template Address field.
13047 This field was 8 bits when it should be 64.
13048
13049 Fixed a problem where errors/warnings were no longer being emitted
13050 within the listing output file.
13051
13052 Implemented the ACPI 2.0A restriction on ACPI Table Signatures to
13053 exactly 4 characters, alphanumeric only.
13054
13055
13056
13057
13058 ----------------------------------------
13059 Summary of changes for this release: 03_08_02
13060
13061
13062 1) ACPI CA Core Subsystem Version 20020308:
13063
13064 Fixed a problem with AML Fields where the use of the "AccessAny"
13065 keyword could cause an interpreter error due to attempting to read
13066 or write beyond the end of the parent Operation Region.
13067
13068 Fixed a problem in the SystemMemory Operation Region handler where
13069 an attempt was made to map memory beyond the end of the region.
13070 This was the root cause of the "AE_ERROR" and "AE_NO_MEMORY"
13071 errors on some Linux systems.
13072
13073 Fixed a problem where the interpreter/namespace "search to root"
13074 algorithm was not functioning for some object types.  Relaxed the
13075 internal restriction on the search to allow upsearches for all
13076 external object types as well as most internal types.
13077
13078
13079 2) Linux:
13080
13081 We now use safe_halt() macro versus individual calls to sti | hlt.
13082
13083 Writing to the processor limit interface should now work. "echo 1"
13084 will increase the limit, 2 will decrease, and 0 will reset to the
13085
13086 default.
13087
13088
13089 3) ASL compiler:
13090
13091 Fixed segfault on Linux version.
13092
13093
13094 ----------------------------------------
13095 Summary of changes for this release: 02_25_02
13096
13097 1) ACPI CA Core Subsystem:
13098
13099
13100 Fixed a problem where the GPE bit masks were not initialized
13101 properly, causing erratic GPE behavior.
13102
13103 Implemented limited support for multiple calling conventions.  The
13104 code can be generated with either the VPL (variable parameter
13105 list, or "C") convention, or the FPL (fixed parameter list, or
13106 "Pascal") convention.  The core subsystem is about 3.4% smaller
13107 when generated with FPL.
13108
13109
13110 2) Linux
13111
13112 Re-add some /proc/acpi/event functionality that was lost during
13113 the rewrite
13114
13115 Resolved issue with /proc events for fixed-feature buttons showing
13116 up as the system device.
13117
13118 Fixed checks on C2/C3 latencies to be inclusive of maximum values.
13119
13120 Replaced AE_ERRORs in acpi_osl.c with more specific error codes.
13121
13122 Changed ACPI PRT option from "pci=noacpi-routing" to "pci=noacpi"
13123
13124 Fixed limit interface & usage to fix bugs with passive cooling
13125 hysterisis.
13126
13127 Restructured PRT support.
13128
13129
13130 ----------------------------------------
13131 Summary of changes for this label: 02_14_02
13132
13133
13134 1) ACPI CA Core Subsystem:
13135
13136 Implemented support in AcpiLoadTable to allow loading of FACS and
13137 FADT tables.
13138
13139 Suport for the now-obsolete interim 0.71 64-bit ACPI tables has
13140 been removed.  All 64-bit platforms should be migrated to the ACPI
13141 2.0 tables.  The actbl71.h header has been removed from the source
13142 tree.
13143
13144 All C macros defined within the subsystem have been prefixed with
13145 "ACPI_" to avoid collision with other system include files.
13146
13147 Removed the return value for the two AcpiOsPrint interfaces, since
13148 it is never used and causes lint warnings for ignoring the return
13149 value.
13150
13151 Added error checking to all internal mutex acquire and release
13152 calls.  Although a failure from one of these interfaces is
13153 probably a fatal system error, these checks will cause the
13154 immediate abort of the currently executing method or interface.
13155
13156 Fixed a problem where the AcpiSetCurrentResources interface could
13157 fault.  This was a side effect of the deployment of the new memory
13158 allocation model.
13159
13160 Fixed a couple of problems with the Global Lock support introduced
13161 in the last major build.  The "common" (1.0/2.0) internal FACS was
13162 being overwritten with the FACS signature and clobbering the
13163 Global Lock pointer.  Also, the actual firmware FACS was being
13164 unmapped after construction of the "common" FACS, preventing
13165 access to the actual Global Lock field within it.  The "common"
13166 internal FACS is no longer installed as an actual ACPI table; it
13167 is used simply as a global.
13168
13169 Code and Data Size: Current core subsystem library sizes are shown
13170 below.  These are the code and data sizes for the acpica.lib
13171 produced by the Microsoft Visual C++ 6.0 compiler, and these
13172 values do not include any ACPI driver or OSPM code.  The debug
13173 version of the code includes the debug output trace mechanism and
13174 has a larger code and data size.  Note that these values will vary
13175 depending on the efficiency of the compiler and the compiler
13176 options used during generation.
13177
13178   Previous Release (02_07_01)
13179     Non-Debug Version:  65.2K Code,   6.2K Data,   71.4K Total
13180     Debug Version:     136.9K Code,  56.4K Data,  193.3K Total
13181   Current Release:
13182     Non-Debug Version:  65.4K Code,   6.2K Data,   71.6K Total
13183     Debug Version:     138.0K Code,  56.6K Data,  194.6K Total
13184
13185
13186 2) Linux
13187
13188 Updated Linux-specific code for core macro and OSL interface
13189 changes described above.
13190
13191 Improved /proc/acpi/event. It now can be opened only once and has
13192 proper poll functionality.
13193
13194 Fixed and restructured power management (acpi_bus).
13195
13196 Only create /proc "view by type" when devices of that class exist.
13197
13198 Fixed "charging/discharging" bug (and others) in acpi_battery.
13199
13200 Improved thermal zone code.
13201
13202
13203 3) ASL Compiler, version X2039:
13204
13205
13206 Implemented the new compiler restriction on ASL String hex/octal
13207 escapes to non-null, ASCII values.  An error results if an invalid
13208 value is used.  (This will require an ACPI 2.0 specification
13209 change.)
13210
13211 AML object labels that are output to the optional C and ASM source
13212 are now prefixed with both the ACPI table signature and table ID
13213 to help guarantee uniqueness within a large BIOS project.
13214
13215
13216 ----------------------------------------
13217 Summary of changes for this label: 02_01_02
13218
13219 1) ACPI CA Core Subsystem:
13220
13221 ACPI 2.0 support is complete in the entire Core Subsystem and the
13222 ASL compiler. All new ACPI 2.0 operators are implemented and all
13223 other changes for ACPI 2.0 support are complete.  With
13224 simultaneous code and data optimizations throughout the subsystem,
13225 ACPI 2.0 support has been implemented with almost no additional
13226 cost in terms of code and data size.
13227
13228 Implemented a new mechanism for allocation of return buffers.  If
13229 the buffer length is set to ACPI_ALLOCATE_BUFFER, the buffer will
13230 be allocated on behalf of the caller.  Consolidated all return
13231 buffer validation and allocation to a common procedure.  Return
13232 buffers will be allocated via the primary OSL allocation interface
13233 since it appears that a separate pool is not needed by most users.
13234 If a separate pool is required for these buffers, the caller can
13235 still use the original mechanism and pre-allocate the buffer(s).
13236
13237 Implemented support for string operands within the DerefOf
13238 operator.
13239
13240 Restructured the Hardware and Event managers to be table driven,
13241 simplifying the source code and reducing the amount of generated
13242 code.
13243
13244 Split the common read/write low-level ACPI register bitfield
13245 procedure into a separate read and write, simplifying the code
13246 considerably.
13247
13248 Obsoleted the AcpiOsCallocate OSL interface.  This interface was
13249 used only a handful of times and didn't have enough critical mass
13250 for a separate interface.  Replaced with a common calloc procedure
13251 in the core.
13252
13253 Fixed a reported problem with the GPE number mapping mechanism
13254 that allows GPE1 numbers to be non-contiguous with GPE0.
13255 Reorganized the GPE information and shrunk a large array that was
13256 originally large enough to hold info for all possible GPEs (256)
13257 to simply large enough to hold all GPEs up to the largest GPE
13258 number on the machine.
13259
13260 Fixed a reported problem with resource structure alignment on 64-
13261 bit platforms.
13262
13263 Changed the AcpiEnableEvent and AcpiDisableEvent external
13264 interfaces to not require any flags for the common case of
13265 enabling/disabling a GPE.
13266
13267 Implemented support to allow a "Notify" on a Processor object.
13268
13269 Most TBDs in comments within the source code have been resolved
13270 and eliminated.
13271
13272
13273 Fixed a problem in the interpreter where a standalone parent
13274 prefix (^) was not handled correctly in the interpreter and
13275 debugger.
13276
13277 Removed obsolete and unnecessary GPE save/restore code.
13278
13279 Implemented Field support in the ASL Load operator.  This allows a
13280 table to be loaded from a named field, in addition to loading a
13281 table directly from an Operation Region.
13282
13283 Implemented timeout and handle support in the external Global Lock
13284 interfaces.
13285
13286 Fixed a problem in the AcpiDump utility where pathnames were no
13287 longer being generated correctly during the dump of named objects.
13288
13289 Modified the AML debugger to give a full display of if/while
13290 predicates instead of just one AML opcode at a time.  (The
13291 predicate can have several nested ASL statements.)  The old method
13292 was confusing during single stepping.
13293
13294 Code and Data Size: Current core subsystem library sizes are shown
13295 below. These are the code and data sizes for the acpica.lib
13296 produced by the Microsoft Visual C++ 6.0 compiler, and these
13297 values do not include any ACPI driver or OSPM code.  The debug
13298 version of the code includes the debug output trace mechanism and
13299 has a larger code and data size.  Note that these values will vary
13300 depending on the efficiency of the compiler and the compiler
13301 options used during generation.
13302
13303   Previous Release (12_18_01)
13304      Non-Debug Version:  66.1K Code,   5.5K Data,   71.6K Total
13305      Debug Version:     138.3K Code,  55.9K Data,  194.2K Total
13306    Current Release:
13307      Non-Debug Version:  65.2K Code,   6.2K Data,   71.4K Total
13308      Debug Version:     136.9K Code,  56.4K Data,  193.3K Total
13309
13310 2) Linux
13311
13312  Implemented fix for PIIX reverse throttling errata (Processor
13313 driver)
13314
13315 Added new Limit interface (Processor and Thermal drivers)
13316
13317 New thermal policy (Thermal driver)
13318
13319 Many updates to /proc
13320
13321 Battery "low" event support (Battery driver)
13322
13323 Supports ACPI PCI IRQ routing (PCI Link and PCI root drivers)
13324
13325 IA32 - IA64 initialization unification, no longer experimental
13326
13327 Menuconfig options redesigned
13328
13329 3) ASL Compiler, version X2037:
13330
13331 Implemented several new output features to simplify integration of
13332 AML code into  firmware: 1) Output the AML in C source code with
13333 labels for each named ASL object.  The    original ASL source code
13334 is interleaved as C comments. 2) Output the AML in ASM source code
13335 with labels and interleaved ASL    source. 3) Output the AML in
13336 raw hex table form, in either C or ASM.
13337
13338 Implemented support for optional string parameters to the
13339 LoadTable operator.
13340
13341 Completed support for embedded escape sequences within string
13342 literals.  The compiler now supports all single character escapes
13343 as well as the Octal and Hex escapes.  Note: the insertion of a
13344 null byte into a string literal (via the hex/octal escape) causes
13345 the string to be immediately terminated.  A warning is issued.
13346
13347 Fixed a problem where incorrect AML was generated for the case
13348 where an ASL namepath consists of a single parent prefix (
13349
13350 ) with no trailing name segments.
13351
13352 The compiler has been successfully generated with a 64-bit C
13353 compiler.
13354
13355
13356
13357
13358 ----------------------------------------
13359 Summary of changes for this label: 12_18_01
13360
13361 1) Linux
13362
13363 Enhanced blacklist with reason and severity fields. Any table's
13364 signature may now be used to identify a blacklisted system.
13365
13366 Call _PIC control method to inform the firmware which interrupt
13367 model the OS is using. Turn on any disabled link devices.
13368
13369 Cleaned up busmgr /proc error handling (Andreas Dilger)
13370
13371  2) ACPI CA Core Subsystem:
13372
13373 Implemented ACPI 2.0 semantics for the "Break" operator (Exit from
13374 while loop)
13375
13376 Completed implementation of the ACPI 2.0 "Continue",
13377 "ConcatenateResTemplate", "DataTableRegion", and "LoadTable"
13378 operators.  All new ACPI 2.0 operators are now implemented in both
13379 the ASL compiler and the AML interpreter.  The only remaining ACPI
13380 2.0 task is support for the String data type in the DerefOf
13381 operator.  Fixed a problem with AcquireMutex where the status code
13382 was lost if the caller had to actually wait for the mutex.
13383
13384 Increased the maximum ASL Field size from 64K bits to 4G bits.
13385
13386 Completed implementation of the external Global Lock interfaces --
13387 AcpiAcquireGlobalLock and AcpiReleaseGlobalLock.  The Timeout and
13388 Handler parameters were added.
13389
13390 Completed another pass at removing warnings and issues when
13391 compiling with 64-bit compilers.  The code now compiles cleanly
13392 with the Intel 64-bit C/C++ compiler.  Most notably, the pointer
13393 add and subtract (diff) macros have changed considerably.
13394
13395
13396 Created and deployed a new ACPI_SIZE type that is 64-bits wide on
13397 64-bit platforms, 32-bits on all others.  This type is used
13398 wherever memory allocation and/or the C sizeof() operator is used,
13399 and affects the OSL memory allocation interfaces AcpiOsAllocate
13400 and AcpiOsCallocate.
13401
13402 Implemented sticky user breakpoints in the AML debugger.
13403
13404 Code and Data Size: Current core subsystem library sizes are shown
13405 below. These are the code and data sizes for the acpica.lib
13406 produced by the Microsoft Visual C++ 6.0 compiler, and these
13407 values do not include any ACPI driver or OSPM code.  The debug
13408 version of the code includes the debug output trace mechanism and
13409 has a larger code and data size. Note that these values will vary
13410 depending on the efficiency of the compiler and the compiler
13411 options used during generation.
13412
13413   Previous Release (12_05_01)
13414      Non-Debug Version:  64.7K Code,   5.3K Data,   70.0K Total
13415      Debug Version:     136.2K Code,  55.6K Data,  191.8K Total
13416    Current Release:
13417      Non-Debug Version:  66.1K Code,   5.5K Data,   71.6K Total
13418      Debug Version:     138.3K Code,  55.9K Data,  194.2K Total
13419
13420  3) ASL Compiler, version X2034:
13421
13422 Now checks for (and generates an error if detected) the use of a
13423 Break or Continue statement without an enclosing While statement.
13424
13425
13426 Successfully generated the compiler with the Intel 64-bit C
13427 compiler.
13428
13429  ----------------------------------------
13430 Summary of changes for this label: 12_05_01
13431
13432  1) ACPI CA Core Subsystem:
13433
13434 The ACPI 2.0 CopyObject operator is fully implemented.  This
13435 operator creates a new copy of an object (and is also used to
13436 bypass the "implicit conversion" mechanism of the Store operator.)
13437
13438 The ACPI 2.0 semantics for the SizeOf operator are fully
13439 implemented.  The change is that performing a SizeOf on a
13440 reference object causes an automatic dereference of the object to
13441 tha actual value before the size is evaluated. This behavior was
13442 undefined in ACPI 1.0.
13443
13444 The ACPI 2.0 semantics for the Extended IRQ resource descriptor
13445 have been implemented.  The interrupt polarity and mode are now
13446 independently set.
13447
13448 Fixed a problem where ASL Constants (Zero, One, Ones, Revision)
13449 appearing in Package objects were not properly converted to
13450 integers when the internal Package was converted to an external
13451 object (via the AcpiEvaluateObject interface.)
13452
13453 Fixed a problem with the namespace object deletion mechanism for
13454 objects created by control methods.  There were two parts to this
13455 problem: 1) Objects created during the initialization phase method
13456 parse were not being deleted, and 2) The object owner ID mechanism
13457 to track objects was broken.
13458
13459 Fixed a problem where the use of the ASL Scope operator within a
13460 control method would result in an invalid opcode exception.
13461
13462 Fixed a problem introduced in the previous label where the buffer
13463 length required for the _PRT structure was not being returned
13464 correctly.
13465
13466 Code and Data Size: Current core subsystem library sizes are shown
13467 below. These are the code and data sizes for the acpica.lib
13468 produced by the Microsoft Visual C++ 6.0 compiler, and these
13469 values do not include any ACPI driver or OSPM code.  The debug
13470 version of the code includes the debug output trace mechanism and
13471 has a larger code and data size.  Note that these values will vary
13472 depending on the efficiency of the compiler and the compiler
13473 options used during generation.
13474
13475   Previous Release (11_20_01)
13476      Non-Debug Version:  64.1K Code,   5.3K Data,   69.4K Total
13477      Debug Version:     135.1K Code,  55.4K Data,  190.5K Total
13478
13479   Current Release:
13480      Non-Debug Version:  64.7K Code,   5.3K Data,   70.0K Total
13481      Debug Version:     136.2K Code,  55.6K Data,  191.8K Total
13482
13483  2) Linux:
13484
13485 Updated all files to apply cleanly against 2.4.16.
13486
13487 Added basic PCI Interrupt Routing Table (PRT) support for IA32
13488 (acpi_pci.c), and unified the PRT code for IA32 and IA64.  This
13489 version supports both static and dyanmic PRT entries, but dynamic
13490 entries are treated as if they were static (not yet
13491 reconfigurable).  Architecture- specific code to use this data is
13492 absent on IA32 but should be available shortly.
13493
13494 Changed the initialization sequence to start the ACPI interpreter
13495 (acpi_init) prior to initialization of the PCI driver (pci_init)
13496 in init/main.c.  This ordering is required to support PRT and
13497 facilitate other (future) enhancement.  A side effect is that the
13498 ACPI bus driver and certain device drivers can no longer be loaded
13499 as modules.
13500
13501 Modified the 'make menuconfig' options to allow PCI Interrupt
13502 Routing support to be included without the ACPI Bus and other
13503 device drivers.
13504
13505  3) ASL Compiler, version X2033:
13506
13507 Fixed some issues with the use of the new CopyObject and
13508 DataTableRegion operators.  Both are fully functional.
13509
13510  ----------------------------------------
13511 Summary of changes for this label: 11_20_01
13512
13513  20 November 2001.  Summary of changes for this release.
13514
13515  1) ACPI CA Core Subsystem:
13516
13517 Updated Index support to match ACPI 2.0 semantics.  Storing a
13518 Integer, String, or Buffer to an Index of a Buffer will store only
13519 the least-significant byte of the source to the Indexed buffer
13520 byte.  Multiple writes are not performed.
13521
13522 Fixed a problem where the access type used in an AccessAs ASL
13523 operator was not recorded correctly into the field object.
13524
13525 Fixed a problem where ASL Event objects were created in a
13526 signalled state. Events are now created in an unsignalled state.
13527
13528 The internal object cache is now purged after table loading and
13529 initialization to reduce the use of dynamic kernel memory -- on
13530 the assumption that object use is greatest during the parse phase
13531 of the entire table (versus the run-time use of individual control
13532 methods.)
13533
13534 ACPI 2.0 variable-length packages are now fully operational.
13535
13536 Code and Data Size: Code and Data optimizations have permitted new
13537 feature development with an actual reduction in the library size.
13538 Current core subsystem library sizes are shown below.  These are
13539 the code and data sizes for the acpica.lib produced by the
13540 Microsoft Visual C++ 6.0 compiler, and these values do not include
13541 any ACPI driver or OSPM code.  The debug version of the code
13542 includes the debug output trace mechanism and has a larger code
13543 and data size.  Note that these values will vary depending on the
13544 efficiency of the compiler and the compiler options used during
13545 generation.
13546
13547   Previous Release (11_09_01):
13548      Non-Debug Version:  63.7K Code,   5.2K Data,   68.9K Total
13549      Debug Version:     134.5K Code,  55.4K Data,  189.9K Total
13550
13551   Current Release:
13552      Non-Debug Version:  64.1K Code,   5.3K Data,   69.4K Total
13553      Debug Version:     135.1K Code,  55.4K Data,  190.5K Total
13554
13555  2) Linux:
13556
13557 Enhanced the ACPI boot-time initialization code to allow the use
13558 of Local APIC tables for processor enumeration on IA-32, and to
13559 pave the way for a fully MPS-free boot (on SMP systems) in the
13560 near future.  This functionality replaces
13561 arch/i386/kernel/acpitables.c, which was introduced in an earlier
13562 2.4.15-preX release.  To enable this feature you must add
13563 "acpi_boot=on" to the kernel command line -- see the help entry
13564 for CONFIG_ACPI_BOOT for more information.  An IA-64 release is in
13565 the works...
13566
13567 Restructured the configuration options to allow boot-time table
13568 parsing support without inclusion of the ACPI Interpreter (and
13569 other) code.
13570
13571 NOTE: This release does not include fixes for the reported events,
13572 power-down, and thermal passive cooling issues (coming soon).
13573
13574  3) ASL Compiler:
13575
13576 Added additional typechecking for Fields within restricted access
13577 Operation Regions.  All fields within EC and CMOS regions must be
13578 declared with ByteAcc. All fields withing SMBus regions must be
13579 declared with the BufferAcc access type.
13580
13581 Fixed a problem where the listing file output of control methods
13582 no longer interleaved the actual AML code with the ASL source
13583 code.
13584
13585
13586
13587
13588 ----------------------------------------
13589 Summary of changes for this label: 11_09_01
13590
13591 1) ACPI CA Core Subsystem:
13592
13593 Implemented ACPI 2.0-defined support for writes to fields with a
13594 Buffer, String, or Integer source operand that is smaller than the
13595 target field. In these cases, the source operand is zero-extended
13596 to fill the target field.
13597
13598 Fixed a problem where a Field starting bit offset (within the
13599 parent operation region) was calculated incorrectly if the
13600
13601 alignment of the field differed from the access width.  This
13602 affected CreateWordField, CreateDwordField, CreateQwordField, and
13603 possibly other fields that use the "AccessAny" keyword.
13604
13605 Fixed a problem introduced in the 11_02_01 release where indirect
13606 stores through method arguments did not operate correctly.
13607
13608 2) Linux:
13609
13610 Implemented boot-time ACPI table parsing support
13611 (CONFIG_ACPI_BOOT) for IA32 and IA64 UP/SMP systems.  This code
13612 facilitates the use of ACPI tables (e.g. MADT, SRAT) rather than
13613 legacy BIOS interfaces (e.g. MPS) for the configuration of system
13614 processors, memory, and interrupts during setup_arch().  Note that
13615 this patch does not include the required architecture-specific
13616 changes required to apply this information -- subsequent patches
13617 will be posted for both IA32 and IA64 to achieve this.
13618
13619 Added low-level sleep support for IA32 platforms, courtesy of Pat
13620 Mochel. This allows IA32 systems to transition to/from various
13621 sleeping states (e.g. S1, S3), although the lack of a centralized
13622 driver model and power-manageable drivers will prevent its
13623 (successful) use on most systems.
13624
13625 Revamped the ACPI 'menuconfig' layout: created new "ACPI Support"
13626 submenu, unified IA32 and IA64 options, added new "Boot using ACPI
13627 tables" option, etc.
13628
13629 Increased the default timeout for the EC driver from 1ms to 10ms
13630 (1000 cycles of 10us) to try to address AE_TIME errors during EC
13631 transactions.
13632
13633  ----------------------------------------
13634 Summary of changes for this label: 11_02_01
13635
13636 1) ACPI CA Core Subsystem:
13637
13638 ACPI 2.0 Support: Implemented ACPI 2.0 64-bit Field access
13639 (QWordAcc keyword). All ACPI 2.0 64-bit support is now
13640 implemented.
13641
13642 OSL Interfaces: Several of the OSL (AcpiOs*) interfaces required
13643 changes to support ACPI 2.0 Qword field access.  Read/Write
13644 PciConfiguration(), Read/Write Memory(), and Read/Write Port() now
13645 accept an ACPI_INTEGER (64 bits) as the value parameter.  Also,
13646 the value parameter for the address space handler interface is now
13647 an ACPI_INTEGER.  OSL implementations of these interfaces must now
13648 handle the case where the Width parameter is 64.
13649
13650 Index Fields: Fixed a problem where unaligned bit assembly and
13651 disassembly for IndexFields was not supported correctly.
13652
13653 Index and Bank Fields:  Nested Index and Bank Fields are now
13654 supported. During field access, a check is performed to ensure
13655 that the value written to an Index or Bank register is not out of
13656 the range of the register.  The Index (or Bank) register is
13657 written before each access to the field data. Future support will
13658 include allowing individual IndexFields to be wider than the
13659 DataRegister width.
13660
13661 Fields: Fixed a problem where the AML interpreter was incorrectly
13662 attempting to write beyond the end of a Field/OpRegion.  This was
13663 a boundary case that occurred when a DWORD field was written to a
13664 BYTE access OpRegion, forcing multiple writes and causing the
13665 interpreter to write one datum too many.
13666
13667 Fields: Fixed a problem with Field/OpRegion access where the
13668 starting bit address of a field was incorrectly calculated if the
13669 current access type was wider than a byte (WordAcc, DwordAcc, or
13670 QwordAcc).
13671
13672 Fields: Fixed a problem where forward references to individual
13673 FieldUnits (individual Field names within a Field definition) were
13674 not resolved during the AML table load.
13675
13676 Fields: Fixed a problem where forward references from a Field
13677 definition to the parent Operation Region definition were not
13678 resolved during the AML table load.
13679
13680 Fields: Duplicate FieldUnit names within a scope are now detected
13681 during AML table load.
13682
13683 Acpi Interfaces: Fixed a problem where the AcpiGetName() interface
13684 returned an incorrect name for the root node.
13685
13686 Code and Data Size: Code and Data optimizations have permitted new
13687 feature development with an actual reduction in the library size.
13688 Current core subsystem library sizes are shown below.  These are
13689 the code and data sizes for the acpica.lib produced by the
13690 Microsoft Visual C++ 6.0 compiler, and these values do not include
13691 any ACPI driver or OSPM code.  The debug version of the code
13692 includes the debug output trace mechanism and has a larger code
13693 and data size.  Note that these values will vary depending on the
13694 efficiency of the compiler and the compiler options used during
13695 generation.
13696
13697   Previous Release (10_18_01):
13698      Non-Debug Version:  63.9K Code,   5.1K Data,   69.0K Total
13699      Debug Version:     136.7K Code,  57.4K Data,  194.2K Total
13700
13701   Current Release:
13702      Non-Debug Version:  63.7K Code,   5.2K Data,   68.9K Total
13703      Debug Version:     134.5K Code,  55.4K Data,  189.9K Total
13704
13705  2) Linux:
13706
13707 Improved /proc processor output (Pavel Machek) Re-added
13708 MODULE_LICENSE("GPL") to all modules.
13709
13710  3) ASL Compiler version X2030:
13711
13712 Duplicate FieldUnit names within a scope are now detected and
13713 flagged as errors.
13714
13715  4) Documentation:
13716
13717 Programmer Reference updated to reflect OSL and address space
13718 handler interface changes described above.
13719
13720 ----------------------------------------
13721 Summary of changes for this label: 10_18_01
13722
13723 ACPI CA Core Subsystem:
13724
13725 Fixed a problem with the internal object reference count mechanism
13726 that occasionally caused premature object deletion. This resolves
13727 all of the outstanding problem reports where an object is deleted
13728 in the middle of an interpreter evaluation.  Although this problem
13729 only showed up in rather obscure cases, the solution to the
13730 problem involved an adjustment of all reference counts involving
13731 objects attached to namespace nodes.
13732
13733 Fixed a problem with Field support in the interpreter where
13734 writing to an aligned field whose length is an exact multiple (2
13735 or greater) of the field access granularity would cause an attempt
13736 to write beyond the end of the field.
13737
13738 The top level AML opcode execution functions within the
13739 interpreter have been renamed with a more meaningful and
13740 consistent naming convention.  The modules exmonad.c and
13741 exdyadic.c were eliminated.  New modules are exoparg1.c,
13742 exoparg2.c, exoparg3.c, and exoparg6.c.
13743
13744 Support for the ACPI 2.0 "Mid" ASL operator has been implemented.
13745
13746 Fixed a problem where the AML debugger was causing some internal
13747 objects to not be deleted during subsystem termination.
13748
13749 Fixed a problem with the external AcpiEvaluateObject interface
13750 where the subsystem would fault if the named object to be
13751 evaluated refered to a constant such as Zero, Ones, etc.
13752
13753 Fixed a problem with IndexFields and BankFields where the
13754 subsystem would fault if the index, data, or bank registers were
13755 not defined in the same scope as the field itself.
13756
13757 Added printf format string checking for compilers that support
13758 this feature.  Corrected more than 50 instances of issues with
13759 format specifiers within invocations of ACPI_DEBUG_PRINT
13760 throughout the core subsystem code.
13761
13762 The ASL "Revision" operator now returns the ACPI support level
13763 implemented in the core - the value "2" since the ACPI 2.0 support
13764 is more than 50% implemented.
13765
13766 Enhanced the output of the AML debugger "dump namespace" command
13767 to output in a more human-readable form.
13768
13769 Current core subsystem library code sizes are shown below.  These
13770
13771 are the code and data sizes for the acpica.lib produced by the
13772 Microsoft Visual C++ 6.0 compiler, and these values do not include
13773 any ACPI driver or OSPM code.  The debug version of the code
13774 includes the full debug trace mechanism -- leading to a much
13775
13776 larger code and data size.  Note that these values will vary
13777 depending on the efficiency of the compiler and the compiler
13778 options used during generation.
13779
13780      Previous Label (09_20_01):
13781      Non-Debug Version:    65K Code,     5K Data,     70K Total
13782      Debug Version:       138K Code,    58K Data,    196K Total
13783
13784      This Label:
13785
13786      Non-Debug Version:  63.9K Code,   5.1K Data,   69.0K Total
13787      Debug Version:     136.7K Code,  57.4K Data,  194.2K Total
13788
13789 Linux:
13790
13791 Implemented a "Bad BIOS Blacklist" to track machines that have
13792 known ASL/AML problems.
13793
13794 Enhanced the /proc interface for the thermal zone driver and added
13795 support for _HOT (the critical suspend trip point).  The 'info'
13796 file now includes threshold/policy information, and allows setting
13797 of _SCP (cooling preference) and _TZP (polling frequency) values
13798 to the 'info' file. Examples: "echo tzp=5 > info" sets the polling
13799 frequency to 5 seconds, and "echo scp=1 > info" sets the cooling
13800 preference to the passive/quiet mode (if supported by the ASL).
13801
13802 Implemented a workaround for a gcc bug that resuted in an OOPs
13803 when loading the control method battery driver.
13804
13805  ----------------------------------------
13806 Summary of changes for this label: 09_20_01
13807
13808  ACPI CA Core Subsystem:
13809
13810 The AcpiEnableEvent and AcpiDisableEvent interfaces have been
13811 modified to allow individual GPE levels to be flagged as wake-
13812 enabled (i.e., these GPEs are to remain enabled when the platform
13813 sleeps.)
13814
13815 The AcpiEnterSleepState and AcpiLeaveSleepState interfaces now
13816 support wake-enabled GPEs.  This means that upon entering the
13817 sleep state, all GPEs that are not wake-enabled are disabled.
13818 When leaving the sleep state, these GPEs are reenabled.
13819
13820 A local double-precision divide/modulo module has been added to
13821 enhance portability to OS kernels where a 64-bit math library is
13822 not available.  The new module is "utmath.c".
13823
13824 Several optimizations have been made to reduce the use of CPU
13825 stack.  Originally over 2K, the maximum stack usage is now below
13826 2K at 1860  bytes (1.82k)
13827
13828 Fixed a problem with the AcpiGetFirmwareTable interface where the
13829 root table pointer was not mapped into a logical address properly.
13830
13831 Fixed a problem where a NULL pointer was being dereferenced in the
13832 interpreter code for the ASL Notify operator.
13833
13834 Fixed a problem where the use of the ASL Revision operator
13835 returned an error. This operator now returns the current version
13836 of the ACPI CA core subsystem.
13837
13838 Fixed a problem where objects passed as control method parameters
13839 to AcpiEvaluateObject were always deleted at method termination.
13840 However, these objects may end up being stored into the namespace
13841 by the called method.  The object reference count mechanism was
13842 applied to these objects instead of a force delete.
13843
13844 Fixed a problem where static strings or buffers (contained in the
13845 AML code) that are declared as package elements within the ASL
13846 code could cause a fault because the interpreter would attempt to
13847 delete them.  These objects are now marked with the "static
13848 object" flag to prevent any attempt to delete them.
13849
13850 Implemented an interpreter optimization to use operands directly
13851 from the state object instead of extracting the operands to local
13852 variables.  This reduces stack use and code size, and improves
13853 performance.
13854
13855 The module exxface.c was eliminated as it was an unnecessary extra
13856 layer of code.
13857
13858 Current core subsystem library code sizes are shown below.  These
13859 are the code and data sizes for the acpica.lib produced by the
13860 Microsoft Visual C++ 6.0 compiler, and these values do not include
13861 any ACPI driver or OSPM code.  The debug version of the code
13862 includes the full debug trace mechanism -- leading to a much
13863 larger code and data size.  Note that these values will vary
13864 depending on the efficiency of the compiler and the compiler
13865 options used during generation.
13866
13867   Non-Debug Version:  65K Code,   5K Data,   70K Total
13868 (Previously 69K)   Debug Version:     138K Code,  58K Data,  196K
13869 Total  (Previously 195K)
13870
13871 Linux:
13872
13873 Support for ACPI 2.0 64-bit integers has been added.   All ACPI
13874 Integer objects are now 64 bits wide
13875
13876 All Acpi data types and structures are now in lower case.  Only
13877 Acpi macros are upper case for differentiation.
13878
13879  Documentation:
13880
13881 Changes to the external interfaces as described above.
13882
13883  ----------------------------------------
13884 Summary of changes for this label: 08_31_01
13885
13886  ACPI CA Core Subsystem:
13887
13888 A bug with interpreter implementation of the ASL Divide operator
13889 was found and fixed.  The implicit function return value (not the
13890 explicit store operands) was returning the remainder instead of
13891 the quotient.  This was a longstanding bug and it fixes several
13892 known outstanding issues on various platforms.
13893
13894 The ACPI_DEBUG_PRINT and function trace entry/exit macros have
13895 been further optimized for size.  There are 700 invocations of the
13896 DEBUG_PRINT macro alone, so each optimization reduces the size of
13897 the debug version of the subsystem significantly.
13898
13899 A stack trace mechanism has been implemented.  The maximum stack
13900 usage is about 2K on 32-bit platforms.  The debugger command "stat
13901 stack" will display the current maximum stack usage.
13902
13903 All public symbols and global variables within the subsystem are
13904 now prefixed with the string "Acpi".  This keeps all of the
13905 symbols grouped together in a kernel map, and avoids conflicts
13906 with other kernel subsystems.
13907
13908 Most of the internal fixed lookup tables have been moved into the
13909 code segment via the const operator.
13910
13911 Several enhancements have been made to the interpreter to both
13912 reduce the code size and improve performance.
13913
13914 Current core subsystem library code sizes are shown below.  These
13915 are the code and data sizes for the acpica.lib produced by the
13916 Microsoft Visual C++ 6.0 compiler, and these values do not include
13917 any ACPI driver or OSPM code.  The debug version of the code
13918 includes the full debug trace mechanism which contains over 700
13919 invocations of the DEBUG_PRINT macro, 500 function entry macro
13920 invocations, and over 900 function exit macro invocations --
13921 leading to a much larger code and data size.  Note that these
13922 values will vary depending on the efficiency of the compiler and
13923 the compiler options used during generation.
13924
13925         Non-Debug Version:  64K Code,   5K Data,   69K Total
13926 Debug Version:     137K Code,  58K Data,  195K Total
13927
13928  Linux:
13929
13930 Implemented wbinvd() macro, pending a kernel-wide definition.
13931
13932 Fixed /proc/acpi/event to handle poll() and short reads.
13933
13934  ASL Compiler, version X2026:
13935
13936 Fixed a problem introduced in the previous label where the AML
13937
13938 code emitted for package objects produced packages with zero
13939 length.
13940
13941  ----------------------------------------
13942 Summary of changes for this label: 08_16_01
13943
13944 ACPI CA Core Subsystem:
13945
13946 The following ACPI 2.0 ASL operators have been implemented in the
13947 AML interpreter (These are already supported by the Intel ASL
13948 compiler):  ToDecimalString, ToHexString, ToString, ToInteger, and
13949 ToBuffer.  Support for 64-bit AML constants is implemented in the
13950 AML parser, debugger, and disassembler.
13951
13952 The internal memory tracking mechanism (leak detection code) has
13953 been upgraded to reduce the memory overhead (a separate tracking
13954 block is no longer allocated for each memory allocation), and now
13955 supports all of the internal object caches.
13956
13957 The data structures and code for the internal object caches have
13958 been coelesced and optimized so that there is a single cache and
13959 memory list data structure and a single group of functions that
13960 implement generic cache management.  This has reduced the code
13961 size in both the debug and release versions of the subsystem.
13962
13963 The DEBUG_PRINT macro(s) have been optimized for size and replaced
13964 by ACPI_DEBUG_PRINT.  The syntax for this macro is slightly
13965 different, because it generates a single call to an internal
13966 function.  This results in a savings of about 90 bytes per
13967 invocation, resulting in an overall code and data savings of about
13968 16% in the debug version of the subsystem.
13969
13970  Linux:
13971
13972 Fixed C3 disk corruption problems and re-enabled C3 on supporting
13973 machines.
13974
13975 Integrated low-level sleep code by Patrick Mochel.
13976
13977 Further tweaked source code Linuxization.
13978
13979 Other minor fixes.
13980
13981  ASL Compiler:
13982
13983 Support for ACPI 2.0 variable length packages is fixed/completed.
13984
13985 Fixed a problem where the optional length parameter for the ACPI
13986 2.0 ToString operator.
13987
13988 Fixed multiple extraneous error messages when a syntax error is
13989 detected within the declaration line of a control method.
13990
13991  ----------------------------------------
13992 Summary of changes for this label: 07_17_01
13993
13994 ACPI CA Core Subsystem:
13995
13996 Added a new interface named AcpiGetFirmwareTable to obtain any
13997 ACPI table via the ACPI signature.  The interface can be called at
13998 any time during kernel initialization, even before the kernel
13999 virtual memory manager is initialized and paging is enabled.  This
14000 allows kernel subsystems to obtain ACPI tables very early, even
14001 before the ACPI CA subsystem is initialized.
14002
14003 Fixed a problem where Fields defined with the AnyAcc attribute
14004 could be resolved to the incorrect address under the following
14005 conditions: 1) the field width is larger than 8 bits and 2) the
14006 parent operation region is not defined on a DWORD boundary.
14007
14008 Fixed a problem where the interpreter is not being locked during
14009 namespace initialization (during execution of the _INI control
14010 methods), causing an error when an attempt is made to release it
14011 later.
14012
14013 ACPI 2.0 support in the AML Interpreter has begun and will be
14014 ongoing throughout the rest of this year.  In this label, The Mod
14015 operator is implemented.
14016
14017 Added a new data type to contain full PCI addresses named
14018 ACPI_PCI_ID. This structure contains the PCI Segment, Bus, Device,
14019 and Function values.
14020
14021  Linux:
14022
14023 Enhanced the Linux version of the source code to change most
14024 capitalized ACPI type names to lowercase. For example, all
14025 instances of ACPI_STATUS are changed to acpi_status.  This will
14026 result in a large diff, but the change is strictly cosmetic and
14027 aligns the CA code closer to the Linux coding standard.
14028
14029 OSL Interfaces:
14030
14031 The interfaces to the PCI configuration space have been changed to
14032 add the PCI Segment number and to split the single 32-bit combined
14033 DeviceFunction field into two 16-bit fields.  This was
14034 accomplished by moving the four values that define an address in
14035 PCI configuration space (segment, bus, device, and function) to
14036 the new ACPI_PCI_ID structure.
14037
14038 The changes to the PCI configuration space interfaces led to a
14039 reexamination of the complete set of address space access
14040 interfaces for PCI, I/O, and Memory.  The previously existing 18
14041 interfaces have proven difficult to maintain (any small change
14042 must be propagated across at least 6 interfaces) and do not easily
14043 allow for future expansion to 64 bits if necessary.  Also, on some
14044 systems, it would not be appropriate to demultiplex the access
14045 width (8, 16, 32,or 64) before calling the OSL if the
14046 corresponding native OS interfaces contain a similar access width
14047 parameter.  For these reasons, the 18 address space interfaces
14048 have been replaced by these 6 new ones:
14049
14050 AcpiOsReadPciConfiguration
14051 AcpiOsWritePciConfiguration
14052 AcpiOsReadMemory
14053 AcpiOsWriteMemory
14054 AcpiOsReadPort
14055 AcpiOsWritePort
14056
14057 Added a new interface named AcpiOsGetRootPointer to allow the OSL
14058 to perform the platform and/or OS-specific actions necessary to
14059 obtain the ACPI RSDP table pointer.  On IA-32 platforms, this
14060 interface will simply call down to the CA core to perform the low-
14061 memory search for the table.  On IA-64, the RSDP is obtained from
14062 EFI.  Migrating this interface to the OSL allows the CA core to
14063
14064 remain OS and platform independent.
14065
14066 Added a new interface named AcpiOsSignal to provide a generic
14067 "function code and pointer" interface for various miscellaneous
14068 signals and notifications that must be made to the host OS.   The
14069 first such signals are intended to support the ASL Fatal and
14070 Breakpoint operators.  In the latter case, the AcpiOsBreakpoint
14071 interface has been obsoleted.
14072
14073 The definition of the AcpiFormatException interface has been
14074 changed to simplify its use.  The caller no longer must supply a
14075 buffer to the call; A pointer to a const string is now returned
14076 directly.  This allows the call to be easily used in printf
14077 statements, etc. since the caller does not have to manage a local
14078 buffer.
14079
14080
14081  ASL Compiler, Version X2025:
14082
14083 The ACPI 2.0 Switch/Case/Default operators have been implemented
14084 and are fully functional.  They will work with all ACPI 1.0
14085 interpreters, since the operators are simply translated to If/Else
14086 pairs.
14087
14088 The ACPI 2.0 ElseIf operator is implemented and will also work
14089 with 1.0 interpreters, for the same reason.
14090
14091 Implemented support for ACPI 2.0 variable-length packages.  These
14092 packages have a separate opcode, and their size is determined by
14093 the interpreter at run-time.
14094
14095 Documentation The ACPI CA Programmer Reference has been updated to
14096 reflect the new interfaces and changes to existing interfaces.
14097
14098  ------------------------------------------
14099 Summary of changes for this label: 06_15_01
14100
14101  ACPI CA Core Subsystem:
14102
14103 Fixed a problem where a DWORD-accessed field within a Buffer
14104 object would get its byte address inadvertently rounded down to
14105 the nearest DWORD.  Buffers are always Byte-accessible.
14106
14107  ASL Compiler, version X2024:
14108
14109 Fixed a problem where the Switch() operator would either fault or
14110 hang the compiler.  Note however, that the AML code for this ACPI
14111 2.0 operator is not yet implemented.
14112
14113 Compiler uses the new AcpiOsGetTimer interface to obtain compile
14114 timings.
14115
14116 Implementation of the CreateField operator automatically converts
14117 a reference to a named field within a resource descriptor from a
14118 byte offset to a bit offset if required.
14119
14120 Added some missing named fields from the resource descriptor
14121 support. These are the names that are automatically created by the
14122 compiler to reference fields within a descriptor.  They are only
14123 valid at compile time and are not passed through to the AML
14124 interpreter.
14125
14126 Resource descriptor named fields are now typed as Integers and
14127 subject to compile-time typechecking when used in expressions.
14128
14129  ------------------------------------------
14130 Summary of changes for this label: 05_18_01
14131
14132  ACPI CA Core Subsystem:
14133
14134 Fixed a couple of problems in the Field support code where bits
14135 from adjacent fields could be returned along with the proper field
14136 bits. Restructured the field support code to improve performance,
14137 readability and maintainability.
14138
14139 New DEBUG_PRINTP macro automatically inserts the procedure name
14140 into the output, saving hundreds of copies of procedure name
14141 strings within the source, shrinking the memory footprint of the
14142 debug version of the core subsystem.
14143
14144  Source Code Structure:
14145
14146 The source code directory tree was restructured to reflect the
14147 current organization of the component architecture.  Some files
14148 and directories have been moved and/or renamed.
14149
14150  Linux:
14151
14152 Fixed leaking kacpidpc processes.
14153
14154 Fixed queueing event data even when /proc/acpi/event is not
14155 opened.
14156
14157  ASL Compiler, version X2020:
14158
14159 Memory allocation performance enhancement - over 24X compile time
14160 improvement on large ASL files.  Parse nodes and namestring
14161 buffers are now allocated from a large internal compiler buffer.
14162
14163 The temporary .SRC file is deleted unless the "-s" option is
14164 specified
14165
14166 The "-d" debug output option now sends all output to the .DBG file
14167 instead of the console.
14168
14169 "External" second parameter is now optional
14170
14171 "ElseIf" syntax now properly allows the predicate
14172
14173 Last operand to "Load" now recognized as a Target operand
14174
14175 Debug object can now be used anywhere as a normal object.
14176
14177 ResourceTemplate now returns an object of type BUFFER
14178
14179 EISAID now returns an object of type INTEGER
14180
14181 "Index" now works with a STRING operand
14182
14183 "LoadTable" now accepts optional parameters
14184
14185 "ToString" length parameter is now optional
14186
14187 "Interrupt (ResourceType," parse error fixed.
14188
14189 "Register" with a user-defined region space parse error fixed
14190
14191 Escaped backslash at the end of a string ("\\") scan/parse error
14192 fixed
14193
14194 "Revision" is now an object of type INTEGER.
14195
14196
14197
14198 ------------------------------------------
14199 Summary of changes for this label: 05_02_01
14200
14201 Linux:
14202
14203 /proc/acpi/event now blocks properly.
14204
14205 Removed /proc/sys/acpi. You can still dump your DSDT from
14206 /proc/acpi/dsdt.
14207
14208  ACPI CA Core Subsystem:
14209
14210 Fixed a problem introduced in the previous label where some of the
14211 "small" resource descriptor types were not recognized.
14212
14213 Improved error messages for the case where an ASL Field is outside
14214 the range of the parent operation region.
14215
14216  ASL Compiler, version X2018:
14217
14218
14219 Added error detection for ASL Fields that extend beyond the length
14220 of the parent operation region (only if the length of the region
14221 is known at compile time.)  This includes fields that have a
14222 minimum access width that is smaller than the parent region, and
14223 individual field units that are partially or entirely beyond the
14224 extent of the parent.
14225
14226
14227
14228 ------------------------------------------
14229 Summary of changes for this label: 04_27_01
14230
14231  ACPI CA Core Subsystem:
14232
14233 Fixed a problem where the namespace mutex could be released at the
14234 wrong time during execution of AcpiRemoveAddressSpaceHandler.
14235
14236 Added optional thread ID output for debug traces, to simplify
14237 debugging of multiple threads.  Added context switch notification
14238 when the debug code realizes that a different thread is now
14239 executing ACPI code.
14240
14241 Some additional external data types have been prefixed with the
14242 string "ACPI_" for consistency.  This may effect existing code.
14243 The data types affected are the external callback typedefs - e.g.,
14244
14245 WALK_CALLBACK becomes ACPI_WALK_CALLBACK.
14246
14247  Linux:
14248
14249 Fixed an issue with the OSL semaphore implementation where a
14250 thread was waking up with an error from receiving a SIGCHLD
14251 signal.
14252
14253 Linux version of ACPI CA now uses the system C library for string
14254 manipulation routines instead of a local implementation.
14255
14256 Cleaned up comments and removed TBDs.
14257
14258  ASL Compiler, version X2017:
14259
14260 Enhanced error detection and reporting for all file I/O
14261 operations.
14262
14263  Documentation:
14264
14265 Programmer Reference updated to version 1.06.
14266
14267
14268
14269 ------------------------------------------
14270 Summary of changes for this label: 04_13_01
14271
14272  ACPI CA Core Subsystem:
14273
14274 Restructured support for BufferFields and RegionFields.
14275 BankFields support is now fully operational.  All known 32-bit
14276 limitations on field sizes have been removed.  Both BufferFields
14277 and (Operation) RegionFields are now supported by the same field
14278 management code.
14279
14280 Resource support now supports QWORD address and IO resources. The
14281 16/32/64 bit address structures and the Extended IRQ structure
14282 have been changed to properly handle Source Resource strings.
14283
14284 A ThreadId of -1 is now used to indicate a "mutex not acquired"
14285 condition internally and must never be returned by AcpiOsThreadId.
14286 This reserved value was changed from 0 since Unix systems allow a
14287 thread ID of 0.
14288
14289 Linux:
14290
14291 Driver code reorganized to enhance portability
14292
14293 Added a kernel configuration option to control ACPI_DEBUG
14294
14295 Fixed the EC driver to honor _GLK.
14296
14297 ASL Compiler, version X2016:
14298
14299 Fixed support for the "FixedHw" keyword.  Previously, the FixedHw
14300 address space was set to 0, not 0x7f as it should be.
14301
14302  ------------------------------------------
14303 Summary of changes for this label: 03_13_01
14304
14305  ACPI CA Core Subsystem:
14306
14307 During ACPI initialization, the _SB_._INI method is now run if
14308 present.
14309
14310 Notify handler fix - notifies are deferred until the parent method
14311 completes execution.  This fixes the "mutex already acquired"
14312 issue seen occasionally.
14313
14314 Part of the "implicit conversion" rules in ACPI 2.0 have been
14315 found to cause compatibility problems with existing ASL/AML.  The
14316 convert "result-to-target-type" implementation has been removed
14317 for stores to method Args and Locals.  Source operand conversion
14318 is still fully implemented.  Possible changes to ACPI 2.0
14319 specification pending.
14320
14321 Fix to AcpiRsCalculatePciRoutingTableLength to return correct
14322 length.
14323
14324 Fix for compiler warnings for 64-bit compiles.
14325
14326  Linux:
14327
14328 /proc output aligned for easier parsing.
14329
14330 Release-version compile problem fixed.
14331
14332 New kernel configuration options documented in Configure.help.
14333
14334 IBM 600E - Fixed Sleep button may generate "Invalid <NULL>
14335 context" message.
14336
14337  OSPM:
14338
14339 Power resource driver integrated with bus manager.
14340
14341 Fixed kernel fault during active cooling for thermal zones.
14342
14343 Source Code:
14344
14345 The source code tree has been restructured.
14346
14347
14348
14349 ------------------------------------------
14350 Summary of changes for this label: 03_02_01
14351
14352  Linux OS Services Layer (OSL):
14353
14354 Major revision of all Linux-specific code.
14355
14356 Modularized all ACPI-specific drivers.
14357
14358 Added new thermal zone and power resource drivers.
14359
14360 Revamped /proc interface (new functionality is under /proc/acpi).
14361
14362 New kernel configuration options.
14363
14364  Linux known issues:
14365
14366 New kernel configuration options not documented in Configure.help
14367 yet.
14368
14369
14370 Module dependencies not currently implemented. If used, they
14371 should be loaded in this order: busmgr, power, ec, system,
14372 processor, battery, ac_adapter, button, thermal.
14373
14374 Modules will not load if CONFIG_MODVERSION is set.
14375
14376 IBM 600E - entering S5 may reboot instead of shutting down.
14377
14378 IBM 600E - Sleep button may generate "Invalid <NULL> context"
14379 message.
14380
14381 Some systems may fail with "execution mutex already acquired"
14382 message.
14383
14384  ACPI CA Core Subsystem:
14385
14386 Added a new OSL Interface, AcpiOsGetThreadId.  This was required
14387 for the  deadlock detection code. Defined to return a non-zero, 32-
14388 bit thread ID for the currently executing thread.  May be a non-
14389 zero constant integer on single-thread systems.
14390
14391 Implemented deadlock detection for internal subsystem mutexes.  We
14392 may add conditional compilation for this code (debug only) later.
14393
14394 ASL/AML Mutex object semantics are now fully supported.  This
14395 includes multiple acquires/releases by owner and support for the
14396
14397 Mutex SyncLevel parameter.
14398
14399 A new "Force Release" mechanism automatically frees all ASL
14400 Mutexes that have been acquired but not released when a thread
14401 exits the interpreter.  This forces conformance to the ACPI spec
14402 ("All mutexes must be released when an invocation exits") and
14403 prevents deadlocked ASL threads.  This mechanism can be expanded
14404 (later) to monitor other resource acquisitions if OEM ASL code
14405 continues to misbehave (which it will).
14406
14407 Several new ACPI exception codes have been added for the Mutex
14408 support.
14409
14410 Recursive method calls are now allowed and supported (the ACPI
14411 spec does in fact allow recursive method calls.)  The number of
14412 recursive calls is subject to the restrictions imposed by the
14413 SERIALIZED method keyword and SyncLevel (ACPI 2.0) method
14414 parameter.
14415
14416 Implemented support for the SyncLevel parameter for control
14417 methods (ACPI 2.0 feature)
14418
14419 Fixed a deadlock problem when multiple threads attempted to use
14420 the interpreter.
14421
14422 Fixed a problem where the string length of a String package
14423 element was not always set in a package returned from
14424 AcpiEvaluateObject.
14425
14426 Fixed a problem where the length of a String package element was
14427 not always included in the length of the overall package returned
14428 from AcpiEvaluateObject.
14429
14430 Added external interfaces (Acpi*) to the ACPI debug memory
14431 manager.  This manager keeps a list of all outstanding
14432 allocations, and can therefore detect memory leaks and attempts to
14433 free memory blocks more than once. Useful for code such as the
14434 power manager, etc.  May not be appropriate for device drivers.
14435 Performance with the debug code enabled is slow.
14436
14437 The ACPI Global Lock is now an optional hardware element.
14438
14439  ASL Compiler Version X2015:
14440
14441 Integrated changes to allow the compiler to be generated on
14442 multiple platforms.
14443
14444 Linux makefile added to generate the compiler on Linux
14445
14446  Source Code:
14447
14448 All platform-specific headers have been moved to their own
14449 subdirectory, Include/Platform.
14450
14451 New source file added, Interpreter/ammutex.c
14452
14453 New header file, Include/acstruct.h
14454
14455  Documentation:
14456
14457 The programmer reference has been updated for the following new
14458 interfaces: AcpiOsGetThreadId AcpiAllocate AcpiCallocate AcpiFree
14459
14460  ------------------------------------------
14461 Summary of changes for this label: 02_08_01
14462
14463 Core ACPI CA Subsystem: Fixed a problem where an error was
14464 incorrectly returned if the return resource buffer was larger than
14465 the actual data (in the resource interfaces).
14466
14467 References to named objects within packages are resolved to the
14468
14469 full pathname string before packages are returned directly (via
14470 the AcpiEvaluateObject interface) or indirectly via the resource
14471 interfaces.
14472
14473 Linux OS Services Layer (OSL):
14474
14475 Improved /proc battery interface.
14476
14477
14478 Added C-state debugging output and other miscellaneous fixes.
14479
14480 ASL Compiler Version X2014:
14481
14482 All defined method arguments can now be used as local variables,
14483 including the ones that are not actually passed in as parameters.
14484 The compiler tracks initialization of the arguments and issues an
14485 exception if they are used without prior assignment (just like
14486 locals).
14487
14488 The -o option now specifies a filename prefix that is used for all
14489 output files, including the AML output file.  Otherwise, the
14490 default behavior is as follows:  1) the AML goes to the file
14491 specified in the DSDT.  2) all other output files use the input
14492 source filename as the base.
14493
14494  ------------------------------------------
14495 Summary of changes for this label: 01_25_01
14496
14497 Core ACPI CA Subsystem: Restructured the implementation of object
14498 store support within the  interpreter.  This includes support for
14499 the Store operator as well  as any ASL operators that include a
14500 target operand.
14501
14502 Partially implemented support for Implicit Result-to-Target
14503 conversion. This is when a result object is converted on the fly
14504 to the type of  an existing target object.  Completion of this
14505 support is pending  further analysis of the ACPI specification
14506 concerning this matter.
14507
14508 CPU-specific code has been removed from the subsystem (hardware
14509 directory).
14510
14511 New Power Management Timer functions added
14512
14513 Linux OS Services Layer (OSL): Moved system state transition code
14514 to the core, fixed it, and modified  Linux OSL accordingly.
14515
14516 Fixed C2 and C3 latency calculations.
14517
14518
14519 We no longer use the compilation date for the version message on
14520 initialization, but retrieve the version from AcpiGetSystemInfo().
14521
14522 Incorporated for fix Sony VAIO machines.
14523
14524 Documentation:  The Programmer Reference has been updated and
14525 reformatted.
14526
14527
14528 ASL Compiler:  Version X2013: Fixed a problem where the line
14529 numbering and error reporting could get out  of sync in the
14530 presence of multiple include files.
14531
14532  ------------------------------------------
14533 Summary of changes for this label: 01_15_01
14534
14535 Core ACPI CA Subsystem:
14536
14537 Implemented support for type conversions in the execution of the
14538 ASL  Concatenate operator (The second operand is converted to
14539 match the type  of the first operand before concatenation.)
14540
14541 Support for implicit source operand conversion is partially
14542 implemented.   The ASL source operand types Integer, Buffer, and
14543 String are freely  interchangeable for most ASL operators and are
14544 converted by the interpreter  on the fly as required.  Implicit
14545 Target operand conversion (where the  result is converted to the
14546 target type before storing) is not yet implemented.
14547
14548 Support for 32-bit and 64-bit BCD integers is implemented.
14549
14550 Problem fixed where a field read on an aligned field could cause a
14551 read  past the end of the field.
14552
14553 New exception, AE_AML_NO_RETURN_VALUE, is returned when a method
14554 does not return a value, but the caller expects one.  (The ASL
14555 compiler flags this as a warning.)
14556
14557 ASL Compiler:
14558
14559 Version X2011:
14560 1. Static typechecking of all operands is implemented. This
14561 prevents the use of invalid objects (such as using a Package where
14562 an Integer is required) at compile time instead of at interpreter
14563 run-time.
14564 2. The ASL source line is printed with ALL errors and warnings.
14565 3. Bug fix for source EOF without final linefeed.
14566 4. Debug option is split into a parse trace and a namespace trace.
14567 5. Namespace output option (-n) includes initial values for
14568 integers and strings.
14569 6. Parse-only option added for quick syntax checking.
14570 7. Compiler checks for duplicate ACPI name declarations
14571
14572 Version X2012:
14573 1. Relaxed typechecking to allow interchangeability between
14574 strings, integers, and buffers.  These types are now converted by
14575 the interpreter at runtime.
14576 2. Compiler reports time taken by each internal subsystem in the
14577 debug         output file.
14578
14579
14580  ------------------------------------------
14581 Summary of changes for this label: 12_14_00
14582
14583 ASL Compiler:
14584
14585 This is the first official release of the compiler. Since the
14586 compiler requires elements of the Core Subsystem, this label
14587 synchronizes everything.
14588
14589 ------------------------------------------
14590 Summary of changes for this label: 12_08_00
14591
14592
14593 Fixed a problem where named references within the ASL definition
14594 of both OperationRegions and CreateXXXFields did not work
14595 properly.  The symptom was an AE_AML_OPERAND_TYPE during
14596 initialization of the region/field. This is similar (but not
14597 related internally) to the problem that was fixed in the last
14598 label.
14599
14600 Implemented both 32-bit and 64-bit support for the BCD ASL
14601 functions ToBCD and FromBCD.
14602
14603 Updated all legal headers to include "2000" in the copyright
14604 years.
14605
14606  ------------------------------------------
14607 Summary of changes for this label: 12_01_00
14608
14609 Fixed a problem where method invocations within the ASL definition
14610 of both OperationRegions and CreateXXXFields did not work
14611 properly.  The symptom was an AE_AML_OPERAND_TYPE during
14612 initialization of the region/field:
14613
14614   nsinit-0209: AE_AML_OPERAND_TYPE while getting region arguments
14615 [DEBG]   ammonad-0284: Exec_monadic2_r/Not: bad operand(s)
14616 (0x3005)
14617
14618 Fixed a problem where operators with more than one nested
14619 subexpression would fail.  The symptoms were varied, by mostly
14620 AE_AML_OPERAND_TYPE errors.  This was actually a rather serious
14621 problem that has gone unnoticed until now.
14622
14623   Subtract (Add (1,2), Multiply (3,4))
14624
14625 Fixed a problem where AcpiGetHandle didn't quite get fixed in the
14626 previous build (The prefix part of a relative path was handled
14627 incorrectly).
14628
14629 Fixed a problem where Operation Region initialization failed if
14630 the operation region name was a "namepath" instead of a simple
14631 "nameseg". Symptom was an AE_NO_OPERAND error.
14632
14633 Fixed a problem where an assignment to a local variable via the
14634 indirect RefOf mechanism only worked for the first such
14635 assignment.  Subsequent assignments were ignored.
14636
14637  ------------------------------------------
14638 Summary of changes for this label: 11_15_00
14639
14640 ACPI 2.0 table support with backwards support for ACPI 1.0 and the
14641 0.71 extensions.  Note: although we can read ACPI 2.0 BIOS tables,
14642 the AML  interpreter does NOT have support for the new 2.0 ASL
14643 grammar terms at this time.
14644
14645 All ACPI hardware access is via the GAS structures in the ACPI 2.0
14646 FADT.
14647
14648 All physical memory addresses across all platforms are now 64 bits
14649 wide. Logical address width remains dependent on the platform
14650 (i.e., "void *").
14651
14652 AcpiOsMapMemory interface changed to a 64-bit physical address.
14653
14654 The AML interpreter integer size is now 64 bits, as per the ACPI
14655 2.0 specification.
14656
14657 For backwards compatibility with ACPI 1.0, ACPI tables with a
14658 revision number less than 2 use 32-bit integers only.
14659
14660 Fixed a problem where the evaluation of OpRegion operands did not
14661 always resolve them to numbers properly.
14662
14663 ------------------------------------------
14664 Summary of changes for this label: 10_20_00
14665
14666 Fix for CBN_._STA issue.  This fix will allow correct access to
14667 CBN_ OpRegions when the _STA returns 0x8.
14668
14669 Support to convert ACPI constants (Ones, Zeros, One) to actual
14670 values before a package object is returned
14671
14672 Fix for method call as predicate to if/while construct causing
14673 incorrect if/while behavior
14674
14675 Fix for Else block package lengths sometimes calculated wrong (if
14676 block > 63 bytes)
14677
14678 Fix for Processor object length field, was always zero
14679
14680 Table load abort if FACP sanity check fails
14681
14682 Fix for problem with Scope(name) if name already exists
14683
14684 Warning emitted if a named object referenced cannot be found
14685 (resolved) during method execution.
14686
14687
14688
14689
14690
14691 ------------------------------------------
14692 Summary of changes for this label: 9_29_00
14693
14694 New table initialization interfaces: AcpiInitializeSubsystem no
14695 longer has any parameters AcpiFindRootPointer - Find the RSDP (if
14696 necessary) AcpiLoadTables (RSDP) - load all tables found at RSDP-
14697 >RSDT Obsolete Interfaces AcpiLoadFirmwareTables - replaced by
14698 AcpiLoadTables
14699
14700 Note: These interface changes require changes to all existing OSDs
14701
14702 The PCI_Config default address space handler is always installed
14703 at the root namespace object.
14704
14705 -------------------------------------------
14706 Summary of changes for this label: 09_15_00
14707
14708 The new initialization architecture is implemented.  New
14709 interfaces are: AcpiInitializeSubsystem (replaces AcpiInitialize)
14710 AcpiEnableSubsystem Obsolete Interfaces: AcpiLoadNamespace
14711
14712 (Namespace is automatically loaded when a table is loaded)
14713
14714 The ACPI_OPERAND_OBJECT has been optimized to shrink its size from
14715 52 bytes to 32 bytes.  There is usually one of these for every
14716 namespace object, so the memory savings is significant.
14717
14718 Implemented just-in-time evaluation of the CreateField operators.
14719
14720 Bug fixes for IA-64 support have been integrated.
14721
14722 Additional code review comments have been implemented
14723
14724 The so-called "third pass parse" has been replaced by a final walk
14725 through the namespace to initialize all operation regions (address
14726 spaces) and fields that have not yet been initialized during the
14727 execution of the various _INI and REG methods.
14728
14729 New file - namespace/nsinit.c
14730
14731 -------------------------------------------
14732 Summary of changes for this label: 09_01_00
14733
14734 Namespace manager data structures have been reworked to change the
14735 primary  object from a table to a single object.  This has
14736 resulted in dynamic memory  savings of 3X within the namespace and
14737 2X overall in the ACPI CA subsystem.
14738
14739 Fixed problem where the call to AcpiEvFindPciRootBuses was
14740 inadvertently left  commented out.
14741
14742 Reduced the warning count when generating the source with the GCC
14743 compiler.
14744
14745 Revision numbers added to each module header showing the
14746 SourceSafe version of the file.  Please refer to this version
14747 number when giving us feedback or comments on individual modules.
14748
14749 The main object types within the subsystem have been renamed to
14750 clarify their  purpose:
14751
14752 ACPI_INTERNAL_OBJECT -> ACPI_OPERAND_OBJECT
14753 ACPI_GENERIC_OP -> ACPI_PARSE_OBJECT
14754 ACPI_NAME_TABLE_ENTRY -> ACPI_NAMESPACE_NODE
14755
14756 NOTE: no changes to the initialization sequence are included in
14757 this label.
14758
14759 -------------------------------------------
14760 Summary of changes for this label: 08_23_00
14761
14762 Fixed problem where TerminateControlMethod was being called
14763 multiple times per  method
14764
14765 Fixed debugger problem where single stepping caused a semaphore to
14766 be  oversignalled
14767
14768 Improved performance through additional parse object caching -
14769 added  ACPI_EXTENDED_OP type
14770
14771 -------------------------------------------
14772 Summary of changes for this label: 08_10_00
14773
14774 Parser/Interpreter integration:  Eliminated the creation of
14775 complete parse trees  for ACPI tables and control methods.
14776 Instead, parse subtrees are created and  then deleted as soon as
14777 they are processed (Either entered into the namespace or  executed
14778 by the interpreter).  This reduces the use of dynamic kernel
14779 memory  significantly. (about 10X)
14780
14781 Exception codes broken into classes and renumbered.  Be sure to
14782 recompile all  code that includes acexcep.h.  Hopefully we won't
14783 have to renumber the codes  again now that they are split into
14784 classes (environment, programmer, AML code,  ACPI table, and
14785 internal).
14786
14787 Fixed some additional alignment issues in the Resource Manager
14788 subcomponent
14789
14790 Implemented semaphore tracking in the AcpiExec utility, and fixed
14791 several places  where mutexes/semaphores were being unlocked
14792 without a corresponding lock  operation.  There are no known
14793 semaphore or mutex "leaks" at this time.
14794
14795 Fixed the case where an ASL Return operator is used to return an
14796 unnamed  package.
14797
14798 -------------------------------------------
14799 Summary of changes for this label: 07_28_00
14800
14801 Fixed a problem with the way addresses were calculated in
14802 AcpiAmlReadFieldData()  and AcpiAmlWriteFieldData(). This problem
14803 manifested itself when a Field was  created with WordAccess or
14804 DwordAccess, but the field unit defined within the  Field was less
14805
14806 than a Word or Dword.
14807
14808 Fixed a problem in AmlDumpOperands() module's loop to pull
14809 operands off of the  operand stack to display information. The
14810 problem manifested itself as a TLB  error on 64-bit systems when
14811 accessing an operand stack with two or more  operands.
14812
14813 Fixed a problem with the PCI configuration space handlers where
14814 context was  getting confused between accesses. This required a
14815 change to the generic address  space handler and address space
14816 setup definitions. Handlers now get both a  global handler context
14817 (this is the one passed in by the user when executing
14818 AcpiInstallAddressSpaceHandler() and a specific region context
14819 that is unique to  each region (For example, the _ADR, _SEG and
14820 _BBN values associated with a  specific region). The generic
14821 function definitions have changed to the  following:
14822
14823 typedef ACPI_STATUS (*ADDRESS_SPACE_HANDLER) ( UINT32 Function,
14824 UINT32 Address, UINT32 BitWidth, UINT32 *Value, void
14825 *HandlerContext, // This used to be void *Context void
14826 *RegionContext); // This is an additional parameter
14827
14828 typedef ACPI_STATUS (*ADDRESS_SPACE_SETUP) ( ACPI_HANDLE
14829 RegionHandle, UINT32 Function, void *HandlerContext,  void
14830 **RegionContext); // This used to be **ReturnContext
14831
14832 -------------------------------------------
14833 Summary of changes for this label: 07_21_00
14834
14835 Major file consolidation and rename.  All files within the
14836 interpreter have been  renamed as well as most header files.  This
14837 was done to prevent collisions with  existing files in the host
14838 OSs -- filenames such as "config.h" and "global.h"  seem to be
14839 quite common.  The VC project files have been updated.  All
14840 makefiles  will require modification.
14841
14842 The parser/interpreter integration continues in Phase 5 with the
14843 implementation  of a complete 2-pass parse (the AML is parsed
14844 twice) for each table;  This  avoids the construction of a huge
14845 parse tree and therefore reduces the amount of  dynamic memory
14846 required by the subsystem.  Greater use of the parse object cache
14847 means that performance is unaffected.
14848
14849 Many comments from the two code reviews have been rolled in.
14850
14851 The 64-bit alignment support is complete.
14852
14853 -------------------------------------------
14854 Summary of changes for this label: 06_30_00
14855
14856 With a nod and a tip of the hat to the technology of yesteryear,
14857 we've added  support in the source code for 80 column output
14858 devices.  The code is now mostly  constrained to 80 columns or
14859 less to support environments and editors that 1)  cannot display
14860 or print more than 80 characters on a single line, and 2) cannot
14861 disable line wrapping.
14862
14863 A major restructuring of the namespace data structure has been
14864 completed.  The  result is 1) cleaner and more
14865 understandable/maintainable code, and 2) a  significant reduction
14866 in the dynamic memory requirement for each named ACPI  object
14867 (almost half).
14868
14869 -------------------------------------------
14870 Summary of changes for this label: 06_23_00
14871
14872 Linux support has been added.  In order to obtain approval to get
14873 the ACPI CA  subsystem into the Linux kernel, we've had to make
14874 quite a few changes to the  base subsystem that will affect all
14875 users (all the changes are generic and OS- independent).  The
14876 effects of these global changes have been somewhat far  reaching.
14877 Files have been merged and/or renamed and interfaces have been
14878 renamed.   The major changes are described below.
14879
14880 Osd* interfaces renamed to AcpiOs* to eliminate namespace
14881 pollution/confusion  within our target kernels.  All OSD
14882 interfaces must be modified to match the new  naming convention.
14883
14884 Files merged across the subsystem.  A number of the smaller source
14885 and header  files have been merged to reduce the file count and
14886 increase the density of the  existing files.  There are too many
14887 to list here.  In general, makefiles that  call out individual
14888 files will require rebuilding.
14889
14890 Interpreter files renamed.  All interpreter files now have the
14891 prefix am*  instead of ie* and is*.
14892
14893 Header files renamed:  The acapi.h file is now acpixf.h.  The
14894 acpiosd.h file is  now acpiosxf.h.  We are removing references to
14895 the acronym "API" since it is  somewhat windowsy. The new name is
14896 "external interface" or xface or xf in the  filenames.j
14897
14898
14899 All manifest constants have been forced to upper case (some were
14900 mixed case.)   Also, the string "ACPI_" has been prepended to many
14901 (not all) of the constants,  typedefs, and structs.
14902
14903 The globals "DebugLevel" and "DebugLayer" have been renamed
14904 "AcpiDbgLevel" and  "AcpiDbgLayer" respectively.
14905
14906 All other globals within the subsystem are now prefixed with
14907 "AcpiGbl_" Internal procedures within the subsystem are now
14908 prefixed with "Acpi" (with only  a few exceptions).  The original
14909 two-letter abbreviation for the subcomponent  remains after "Acpi"
14910 - for example, CmCallocate became AcpiCmCallocate.
14911
14912 Added a source code translation/conversion utility.  Used to
14913 generate the Linux  source code, it can be modified to generate
14914 other types of source as well. Can  also be used to cleanup
14915 existing source by removing extraneous spaces and blank  lines.
14916 Found in tools/acpisrc/*
14917
14918 OsdUnMapMemory was renamed to OsdUnmapMemory and then
14919 AcpiOsUnmapMemory.  (UnMap  became Unmap).
14920
14921 A "MaxUnits" parameter has been added to AcpiOsCreateSemaphore.
14922 When set to  one, this indicates that the caller wants to use the
14923
14924 semaphore as a mutex, not a  counting semaphore.  ACPI CA uses
14925 both types.  However, implementers of this  call may want to use
14926 different OS primitives depending on the type of semaphore
14927 requested.  For example, some operating systems provide separate
14928
14929 "mutex" and  "semaphore" interfaces - where the mutex interface is
14930 much faster because it  doesn't have all the overhead of a full
14931 semaphore implementation.
14932
14933 Fixed a deadlock problem where a method that accesses the PCI
14934 address space can  block forever if it is the first access to the
14935 space.
14936
14937 -------------------------------------------
14938 Summary of changes for this label: 06_02_00
14939
14940 Support for environments that cannot handle unaligned data
14941 accesses (e.g.  firmware and OS environments devoid of alignment
14942 handler technology namely  SAL/EFI and the IA-64 Linux kernel) has
14943 been added (via configurable macros) in  these three areas: -
14944 Transfer of data from the raw AML byte stream is done via byte
14945 moves instead of    word/dword/qword moves. - External objects are
14946 aligned within the user buffer, including package   elements (sub-
14947 objects). - Conversion of name strings to UINT32 Acpi Names is now
14948 done byte-wise.
14949
14950 The Store operator was modified to mimic Microsoft's
14951 implementation when storing  to a Buffer Field.
14952
14953 Added a check of the BM_STS bit before entering C3.
14954
14955 The methods subdirectory has been obsoleted and removed.  A new
14956 file, cmeval.c  subsumes the functionality.
14957
14958 A 16-bit (DOS) version of AcpiExec has been developed.  The
14959 makefile is under  the acpiexec directory.