Merge branch 'vendor/GCC50'
[dragonfly.git] / sys / contrib / dev / acpica / changes.txt
1 ----------------------------------------
2 10 April 2015. Summary of changes for version 20150410:
3
4 Reverted a change introduced in version 20150408 that caused
5 a regression in the disassembler where incorrect operator
6 symbols could be emitted.
7
8 ----------------------------------------
9 08 April 2015. Summary of changes for version 20150408:
10
11
12 1) ACPICA kernel-resident subsystem:
13
14 Permanently set the return value for the _REV predefined name. It now 
15 returns 2 (was 5). This matches other ACPI implementations. _REV will be 
16 deprecated in the future, and is now defined to be 1 for ACPI 1.0, and 2 
17 for ACPI 2.0 and later. It should never be used to differentiate or 
18 identify operating systems.
19
20 Added the "Windows 2015" string to the _OSI support. ACPICA will now 
21 return TRUE to a query with this string.
22
23 Fixed several issues with the local version of the printf function.
24
25 Added the C99 compiler option (-std=c99) to the Unix makefiles.
26
27   Current Release:
28     Non-Debug Version:  99.9K Code, 27.4K Data, 127.3K Total
29     Debug Version:     195.2K Code, 80.7K Data, 275.9K Total
30   Previous Release:
31     Non-Debug Version:  98.8K Code, 27.3K Data, 126.1K Total
32     Debug Version:     192.1K Code, 79.8K Data, 271.9K Total
33
34
35 2) iASL Compiler/Disassembler and Tools:
36
37 iASL: Implemented an enhancement to the constant folding feature to 
38 transform the parse tree to a simple Store operation whenever possible:
39     Add (2, 3, X) ==> is converted to: Store (5, X)
40     X = 2 + 3     ==> is converted to: Store (5, X)
41
42 Updated support for the SLIC table (Software Licensing Description Table) 
43 in both the Data Table compiler and the disassembler. The SLIC table 
44 support now conforms to "Microsoft Software Licensing Tables (SLIC and 
45 MSDM). November 29, 2011. Copyright 2011 Microsoft". Note: Any SLIC data 
46 following the ACPI header is now defined to be "Proprietary Data", and as 
47 such, can only be entered or displayed as a hex data block.
48
49 Implemented full support for the MSDM table as described in the document 
50 above. Note: The format of MSDM is similar to SLIC. Any MSDM data 
51 following the ACPI header is defined to be "Proprietary Data", and can 
52 only be entered or displayed as a hex data block.
53
54 Implemented the -Pn option for the iASL Table Compiler (was only 
55 implemented for the ASL compiler). This option disables the iASL 
56 preprocessor.
57
58 Disassembler: For disassembly of Data Tables, added a comment field 
59 around the Ascii equivalent data that is emitted as part of the "Raw 
60 Table Data" block. This prevents the iASL Preprocessor from possible 
61 confusion if/when the table is compiled.
62
63 Disassembler: Added an option (-df) to force the disassembler to assume 
64 that the table being disassembled contains valid AML. This feature is 
65 useful for disassembling AML files that contain ACPI signatures other 
66 than DSDT or SSDT (such as OEMx or other signatures).
67
68 Changes for the EFI version of the tools:
69 1) Fixed a build error/issue
70 2) Fixed a cast warning
71
72 iASL: Fixed a path issue with the __FILE__ operator by making the 
73 directory prefix optional within the internal SplitInputFilename 
74 function.
75
76 Debugger: Removed some unused global variables.
77
78 Tests: Updated the makefile for proper generation of the AAPITS suite.
79
80 ----------------------------------------
81 04 February 2015. Summary of changes for version 20150204:
82
83 ACPICA kernel-resident subsystem:
84
85 Updated all ACPICA copyrights and signons to 2014. Added the 2014 
86 copyright to all module headers and signons, including the standard Linux 
87 header. This affects virtually every file in the ACPICA core subsystem, 
88 iASL compiler, all ACPICA utilities, and the test suites.
89
90 Events: Introduce ACPI_GPE_DISPATCH_RAW_HANDLER to fix GPE storm issues.
91 A raw gpe handling mechanism was created to allow better handling of GPE
92 storms that aren't easily managed by the normal handler. The raw handler
93 allows disabling/renabling of the the GPE so that interrupt storms can be
94 avoided in cases where events cannot be timely serviced. In this 
95 scenario, handlers should use the AcpiSetGpe() API to disable/enable the 
96 GPE. This API will leave the reference counts undisturbed, thereby 
97 preventing unintentional clearing of the GPE when the intent in only to 
98 temporarily disable it. Raw handlers allow enabling and disabling of a 
99 GPE by removing GPE register locking. As such, raw handlers much provide 
100 their own locks while using GPE API's to protect access to GPE data 
101 structures.
102 Lv Zheng
103
104 Events: Always modify GPE registers under the GPE lock.
105 Applies GPE lock around AcpiFinishGpe() to protect access to GPE register
106 values. Reported as bug by joe.liu@apple.com.
107
108 Unix makefiles: Separate option to disable optimizations and 
109 _FORTIFY_SOURCE. This change removes the _FORTIFY_SOURCE flag from the 
110 NOOPT disable option and creates a separate flag (NOFORTIFY) for this 
111 purpose. Some toolchains may define _FORTIFY_SOURCE which leads redefined 
112 errors when building ACPICA. This allows disabling the option without 
113 also having to disable optimazations.
114 David Box
115
116   Current Release:
117     Non-Debug Version: 101.7K Code, 27.9K Data, 129.6K Total
118     Debug Version:     199.2K Code, 82.4K Data, 281.6K Total
119
120 ----------------------------------------
121 07 November 2014. Summary of changes for version 20141107:
122
123 This release is available at https://acpica.org/downloads
124
125 This release introduces and implements language extensions to ASL that 
126 provide support for symbolic ("C-style") operators and expressions. These 
127 language extensions are known collectively as ASL+.
128
129
130 1) iASL Compiler/Disassembler and Tools:
131
132 Disassembler: Fixed a problem with disassembly of the UartSerialBus 
133 macro. Changed "StopBitsNone" to the correct "StopBitsZero". David E. 
134 Box.
135
136 Disassembler: Fixed the Unicode macro support to add escape sequences. 
137 All non-printable ASCII values are emitted as escape sequences, as well 
138 as the standard escapes for quote and backslash. Ensures that the 
139 disassembled macro can be correctly recompiled.
140
141 iASL: Added Printf/Fprintf macros for formatted output. These macros are 
142 translated to existing AML Concatenate and Store operations. Printf 
143 writes to the ASL Debug object. Fprintf allows the specification of an 
144 ASL name as the target. Only a single format specifier is required, %o, 
145 since the AML interpreter dynamically converts objects to the required 
146 type. David E. Box.
147
148     (old)    Store (Concatenate (Concatenate (Concatenate (Concatenate
149                  (Concatenate (Concatenate (Concatenate ("", Arg0),
150                  ": Unexpected value for "), Arg1), ", "), Arg2),
151                  " at line "), Arg3), Debug)
152
153     (new)    Printf ("%o: Unexpected value for %o, %o at line %o",
154                  Arg0, Arg1, Arg2, Arg3)
155
156     (old)    Store (Concatenate (Concatenate (Concatenate (Concatenate
157                  ("", Arg1), ": "), Arg0), " Successful"), STR1)
158
159     (new)    Fprintf (STR1, "%o: %o Successful", Arg1, Arg0)
160
161 iASL: Added debug options (-bp, -bt) to dynamically prune levels of the 
162 ASL parse tree before the AML code is generated. This allows blocks of 
163 ASL code to be removed in order to help locate and identify problem 
164 devices and/or code. David E. Box.
165
166 AcpiExec: Added support (-fi) for an optional namespace object 
167 initialization file. This file specifies initial values for namespace 
168 objects as necessary for debugging and testing different ASL code paths 
169 that may be taken as a result of BIOS options.
170
171
172 2) Overview of symbolic operator support for ASL (ASL+)
173 -------------------------------------------------------
174
175 As an extension to the ASL language, iASL implements support for symbolic 
176 (C-style) operators for math and logical expressions. This can greatly 
177 simplify ASL code as well as improve both readability and 
178 maintainability. These language extensions can exist concurrently with 
179 all legacy ASL code and expressions.
180
181 The symbolic extensions are 100% compatible with existing AML 
182 interpreters, since no new AML opcodes are created. To implement the 
183 extensions, the iASL compiler transforms the symbolic expressions into 
184 the legacy ASL/AML equivalents at compile time.
185
186 Full symbolic expressions are supported, along with the standard C 
187 precedence and associativity rules.
188
189 Full disassembler support for the symbolic expressions is provided, and 
190 creates an automatic migration path for existing ASL code to ASL+ code 
191 via the disassembly process. By default, the disassembler now emits ASL+ 
192 code with symbolic expressions. An option (-dl) is provided to force the 
193 disassembler to emit legacy ASL code if desired.
194
195 Below is the complete list of the currently supported symbolic operators 
196 with examples. See the iASL User Guide for additional information.
197
198
199 ASL+ Syntax      Legacy ASL Equivalent
200 -----------      ---------------------
201
202     // Math operators
203
204 Z = X + Y        Add (X, Y, Z)
205 Z = X - Y        Subtract (X, Y, Z)
206 Z = X * Y        Multiply (X, Y, Z)
207 Z = X / Y        Divide (X, Y, , Z)
208 Z = X % Y        Mod (X, Y, Z)
209 Z = X << Y       ShiftLeft (X, Y, Z)
210 Z = X >> Y       ShiftRight (X, Y, Z)
211 Z = X & Y        And (X, Y, Z)
212 Z = X | Y        Or (X, Y, Z)
213 Z = X ^ Y        Xor (X, Y, Z)
214 Z = ~X           Not (X, Z)
215 X++              Increment (X)
216 X--              Decrement (X)
217
218     // Logical operators
219
220 (X == Y)         LEqual (X, Y)
221 (X != Y)         LNotEqual (X, Y)
222 (X < Y)          LLess (X, Y)
223 (X > Y)          LGreater (X, Y)
224 (X <= Y)         LLessEqual (X, Y)
225 (X >= Y)         LGreaterEqual (X, Y)
226 (X && Y)         LAnd (X, Y)
227 (X || Y)         LOr (X, Y)
228 (!X)             LNot (X)
229
230     // Assignment and compound assignment operations
231
232 X = Y           Store (Y, X)
233 X += Y          Add (X, Y, X)
234 X -= Y          Subtract (X, Y, X)
235 X *= Y          Multiply (X, Y, X)
236 X /= Y          Divide (X, Y, , X)
237 X %= Y          Mod (X, Y, X)
238 X <<= Y         ShiftLeft (X, Y, X)
239 X >>= Y         ShiftRight (X, Y, X)
240 X &= Y          And (X, Y, X)
241 X |= Y          Or (X, Y, X)
242 X ^= Y          Xor (X, Y, X)
243
244
245 3) ASL+ Examples:
246 -----------------
247
248 Legacy ASL:
249         If (LOr (LOr (LEqual (And (R510, 0x03FB), 0x02E0), LEqual (
250             And (R520, 0x03FB), 0x02E0)), LOr (LEqual (And (R530, 
251 0x03FB), 
252             0x02E0), LEqual (And (R540, 0x03FB), 0x02E0))))
253         {
254             And (MEMB, 0xFFFFFFF0, SRMB)
255             Store (MEMB, Local2)
256             Store (PDBM, Local1)
257             And (PDBM, 0xFFFFFFFFFFFFFFF9, PDBM)
258             Store (SRMB, MEMB)
259             Or (PDBM, 0x02, PDBM)
260         }
261
262 ASL+ version:
263         If (((R510 & 0x03FB) == 0x02E0) ||
264             ((R520 & 0x03FB) == 0x02E0) ||
265             ((R530 & 0x03FB) == 0x02E0) || 
266             ((R540 & 0x03FB) == 0x02E0))
267         {
268             SRMB = (MEMB & 0xFFFFFFF0)
269             Local2 = MEMB
270             Local1 = PDBM
271             PDBM &= 0xFFFFFFFFFFFFFFF9
272             MEMB = SRMB
273             PDBM |= 0x02
274         }
275
276 Legacy ASL:
277         Store (0x1234, Local1)
278         Multiply (Add (Add (Local1, TEST), 0x20), Local2, Local3)
279         Multiply (Local2, Add (Add (Local1, TEST), 0x20), Local3)
280         Add (Local1, Add (TEST, Multiply (0x20, Local2)), Local3)
281         Store (Index (PKG1, 0x03), Local6)
282         Store (Add (Local3, Local2), Debug)
283         Add (Local1, 0x0F, Local2)
284         Add (Local1, Multiply (Local2, Local3), Local2)
285         Multiply (Add (Add (Local1, TEST), 0x20), ToBCD (Local1), Local3)
286
287 ASL+ version:
288         Local1 = 0x1234
289         Local3 = (((Local1 + TEST) + 0x20) * Local2)
290         Local3 = (Local2 * ((Local1 + TEST) + 0x20))
291         Local3 = (Local1 + (TEST + (0x20 * Local2)))
292         Local6 = Index (PKG1, 0x03)
293         Debug = (Local3 + Local2)
294         Local2 = (Local1 + 0x0F)
295         Local2 = (Local1 + (Local2 * Local3))
296         Local3 = (((Local1 + TEST) + 0x20) * ToBCD (Local1))
297
298
299 ----------------------------------------
300 26 September 2014. Summary of changes for version 20140926:
301
302 1) ACPICA kernel-resident subsystem:
303
304 Updated the GPIO operation region handler interface (GeneralPurposeIo). 
305 In order to support GPIO Connection objects with multiple pins, along 
306 with the related Field objects, the following changes to the interface 
307 have been made: The Address is now defined to be the offset in bits of 
308 the field unit from the previous invocation of a Connection. It can be 
309 viewed as a "Pin Number Index" into the connection resource descriptor. 
310 The BitWidth is the exact bit width of the field. It is usually one bit, 
311 but not always. See the ACPICA reference guide (section 8.8.6.2.1) for 
312 additional information and examples.
313
314 GPE support: During ACPICA/GPE initialization, ensure that all GPEs with 
315 corresponding _Lxx/_Exx methods are disabled (they may have been enabled 
316 by the firmware), so that they cannot fire until they are enabled via 
317 AcpiUpdateAllGpes. Rafael J. Wysocki.
318
319 Added a new return flag for the Event/GPE status interfaces -- 
320 AcpiGetEventStatus and AcpiGetGpeStatus. The new 
321 ACPI_EVENT_FLAGS_HAS_HANDLER flag is used to indicate that the event or 
322 GPE currently has a handler associated with it, and can thus actually 
323 affect the system. Lv Zheng.
324
325 Example Code and Data Size: These are the sizes for the OS-independent 
326 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
327 debug version of the code includes the debug output trace mechanism and 
328 has a much larger code and data size.
329
330   Current Release:
331     Non-Debug Version:  99.1K Code, 27.3K Data, 126.4K Total
332     Debug Version:     192.8K Code, 79.9K Data, 272.7K Total
333   Previous Release:
334     Non-Debug Version:  98.8K Code, 27.3K Data, 126.1K Total
335     Debug Version:     192.1K Code, 79.8K Data, 271.9K Total
336
337 2) iASL Compiler/Disassembler and Tools:
338
339 iASL: Fixed a memory allocation/free regression introduced in 20140828 
340 that could cause the compiler to crash. This was introduced inadvertently 
341 during the effort to eliminate compiler memory leaks. ACPICA BZ 1111, 
342 1113.
343
344 iASL: Removed two error messages that have been found to create false 
345 positives, until they can be fixed and fully validated (ACPICA BZ 1112):
346 1) Illegal forward reference within a method
347 2) Illegal reference across two methods
348
349 iASL: Implemented a new option (-lm) to create a hardware mapping file 
350 that summarizes all GPIO, I2C, SPI, and UART connections. This option 
351 works for both the compiler and disassembler. See the iASL compiler user 
352 guide for additional information and examples (section 6.4.6).
353
354 AcpiDump: Added support for the version 1 (ACPI 1.0) RSDP in addition to 
355 version 2. This corrects the AE_BAD_HEADER exception seen on systems with 
356 a version 1 RSDP. Lv Zheng ACPICA BZ 1097.
357
358 AcpiExec: For Unix versions, don't attempt to put STDIN into raw mode 
359 unless STDIN is actually a terminal. Assists with batch-mode processing. 
360 ACPICA BZ 1114.
361
362 Disassembler/AcpiHelp: Added another large group of recognized _HID 
363 values.
364
365
366 ----------------------------------------
367 28 August 2014. Summary of changes for version 20140828:
368
369 1) ACPICA kernel-resident subsystem:
370
371 Fixed a problem related to the internal use of the Timer() operator where 
372 a 64-bit divide could cause an attempted link to a double-precision math 
373 library. This divide is not actually necessary, so the code was 
374 restructured to eliminate it. Lv Zheng.
375
376 ACPI 5.1: Added support for the runtime validation of the _DSD package 
377 (similar to the iASL support).
378
379 ACPI 5.1/Headers: Added support for the GICC affinity subtable to the 
380 SRAT table. Hanjun Guo <hanjun.guo@linaro.org>.
381
382 Example Code and Data Size: These are the sizes for the OS-independent 
383 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
384 debug version of the code includes the debug output trace mechanism and 
385 has a much larger code and data size.
386
387   Current Release:
388     Non-Debug Version:  98.8K Code, 27.3K Data, 126.1K Total
389     Debug Version:     192.1K Code, 79.8K Data, 271.9K Total
390   Previous Release:
391     Non-Debug Version:  98.7K Code, 27.3K Data, 126.0K Total1
392     Debug Version:     192.0K Code, 79.7K Data, 271.7K Total
393
394 2) iASL Compiler/Disassembler and Tools:
395
396 AcpiExec: Fixed a problem on unix systems where the original terminal 
397 state was not always properly restored upon exit. Seen when using the -v 
398 option. ACPICA BZ 1104.
399
400 iASL: Fixed a problem with the validation of the ranges/length within the 
401 Memory24 resource descriptor. There was a boundary condition when the 
402 range was equal to the (length -1) caused by the fact that these values 
403 are defined in 256-byte blocks, not bytes. ACPICA BZ 1098
404
405 Disassembler: Fixed a problem with the GpioInt descriptor interrupt 
406 polarity 
407 flags. The flags are actually 2 bits, not 1, and the "ActiveBoth" keyword 
408 is 
409 now supported properly.
410
411 ACPI 5.1: Added the GICC affinity subtable to the SRAT table. Supported 
412 in the disassembler, data table compiler, and table template generator.
413
414 iASL: Added a requirement for Device() objects that one of either a _HID 
415 or _ADR must exist within the scope of a Device, as per the ACPI 
416 specification. Remove a similar requirement that was incorrectly in place 
417 for the _DSD object.
418
419 iASL: Added error detection for illegal named references within control 
420 methods that would cause runtime failures. Now trapped as errors are: 1) 
421 References to objects within a non-parent control method. 2) Forward 
422 references (within a method) -- for control methods, AML interpreters use 
423 a one-pass parse of control methods. ACPICA BZ 1008.
424
425 iASL: Added error checking for dependencies related to the _PSx power 
426 methods. ACPICA BZ 1029.
427 1) For _PS0, one of these must exist within the same scope: _PS1, _PS2, 
428 _PS3.
429 2) For _PS1, _PS2, and PS3: A _PS0 object must exist within the same 
430 scope.
431
432 iASL and table compiler: Cleanup miscellaneous memory leaks by fully 
433 deploying the existing object and string caches and adding new caches for 
434 the table compiler.
435
436 iASL: Split the huge parser source file into multiple subfiles to improve 
437 manageability. Generation now requires the M4 macro preprocessor, which 
438 is part of the Bison distribution on both unix and windows platforms.
439
440 AcpiSrc: Fixed and removed all extraneous warnings generated during 
441 entire ACPICA source code scan and/or conversion.
442
443
444 ----------------------------------------
445
446 24 July 2014. Summary of changes for version 20140724: 
447
448 The ACPI 5.1 specification has been released and is available at: 
449 http://uefi.org/specs/access
450
451
452 0) ACPI 5.1 support in ACPICA:
453
454 ACPI 5.1 is fully supported in ACPICA as of this release.
455
456 New predefined names. Support includes iASL and runtime ACPICA 
457 validation.
458     _CCA (Cache Coherency Attribute).
459     _DSD (Device-Specific Data). David Box.
460
461 Modifications to existing ACPI tables. Support includes headers, iASL 
462 Data Table compiler, disassembler, and the template generator.
463     FADT - New fields and flags. Graeme Gregory.
464     GTDT - One new subtable and new fields. Tomasz Nowicki.
465     MADT - Two new subtables. Tomasz Nowicki.
466     PCCT - One new subtable.
467
468 Miscellaneous.
469     New notification type for System Resource Affinity change events.
470
471
472 1) ACPICA kernel-resident subsystem:
473
474 Fixed a regression introduced in 20140627 where a fault can happen during 
475 the deletion of Alias AML namespace objects. The problem affected both 
476 the core ACPICA and the ACPICA tools including iASL and AcpiExec.
477
478 Implemented a new GPE public interface, AcpiMarkGpeForWake. Provides a 
479 simple mechanism to enable wake GPEs that have no associated handler or 
480 control method. Rafael Wysocki.
481
482 Updated the AcpiEnableGpe interface to disallow the enable if there is no 
483 handler or control method associated with the particular GPE. This will 
484 help avoid meaningless GPEs and even GPE floods. Rafael Wysocki.
485
486 Updated GPE handling and dispatch by disabling the GPE before clearing 
487 the status bit for edge-triggered GPEs. Lv Zheng.
488
489 Added Timer() support to the AML Debug object. The current timer value is 
490 now displayed with each invocation of (Store to) the debug object to 
491 enable simple generation of execution times for AML code (method 
492 execution for example.) ACPICA BZ 1093.
493
494 Example Code and Data Size: These are the sizes for the OS-independent 
495 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
496 debug version of the code includes the debug output trace mechanism and 
497 has a much larger code and data size.
498
499   Current Release:
500     Non-Debug Version:  98.7K Code, 27.3K Data, 126.0K Total
501     Debug Version:     192.0K Code, 79.7K Data, 271.7K Total
502   Previous Release:
503     Non-Debug Version:  98.7K Code, 27.2K Data, 125.9K Total
504     Debug Version:     191.7K Code, 79.6K Data, 271.3K Total
505
506
507 2) iASL Compiler/Disassembler and Tools:
508
509 Fixed an issue with the recently added local printf implementation, 
510 concerning width/precision specifiers that could cause incorrect output. 
511 Lv Zheng. ACPICA BZ 1094.
512
513 Disassembler: Added support to detect buffers that contain UUIDs and 
514 disassemble them to an invocation of the ToUUID operator. Also emit 
515 commented descriptions of known ACPI-related UUIDs.
516
517 AcpiHelp: Added support to display known ACPI-related UUIDs. New option, 
518 -u. Adds three new files. 
519
520 iASL: Update table compiler and disassembler for DMAR table changes that 
521 were introduced in September 2013. With assistance by David Woodhouse.
522
523 ----------------------------------------
524 27 June 2014. Summary of changes for version 20140627:
525
526 1) ACPICA kernel-resident subsystem:
527
528 Formatted Output: Implemented local versions of standard formatted output 
529 utilities such as printf, etc. Over time, it has been discovered that 
530 there are in fact many portability issues with printf, and the addition 
531 of this feature will fix/prevent these issues once and for all. Some 
532 known issues are summarized below:
533
534 1) Output of 64-bit values is not portable. For example, UINT64 is %ull 
535 for the Linux kernel and is %uI64 for some MSVC versions.
536 2) Invoking printf consistently in a manner that is portable across both 
537 32-bit and 64-bit platforms is difficult at best in many situations.
538 3) The output format for pointers varies from system to system (leading 
539 zeros especially), and leads to inconsistent output from ACPICA across 
540 platforms.
541 4) Certain platform-specific printf formats may conflict with ACPICA use.
542 5) If there is no local C library available, ACPICA now has local support 
543 for printf.
544
545 -- To address these printf issues in a complete manner, ACPICA now 
546 directly implements a small subset of printf format specifiers, only 
547 those that it requires. Adds a new file, utilities/utprint.c. Lv Zheng.
548
549 Implemented support for ACPICA generation within the EFI environment. 
550 Initially, the AcpiDump utility is supported in the UEFI shell 
551 environment. Lv Zheng.
552
553 Added a new external interface, AcpiLogError, to improve ACPICA 
554 portability. This allows the host to redirect error messages from the 
555 ACPICA utilities. Lv Zheng.
556
557 Added and deployed new OSL file I/O interfaces to improve ACPICA 
558 portability:
559   AcpiOsOpenFile
560   AcpiOsCloseFile
561   AcpiOsReadFile
562   AcpiOsWriteFile
563   AcpiOsGetFileOffset
564   AcpiOsSetFileOffset
565 There are C library implementations of these functions in the new file 
566 service_layers/oslibcfs.c -- however, the functions can be implemented by 
567 the local host in any way necessary. Lv Zheng.
568
569 Implemented a mechanism to disable/enable ACPI table checksum validation 
570 at runtime. This can be useful when loading tables very early during OS 
571 initialization when it may not be possible to map the entire table in 
572 order to compute the checksum. Lv Zheng.
573
574 Fixed a buffer allocation issue for the Generic Serial Bus support. 
575 Originally, a fixed buffer length was used. This change allows for 
576 variable-length buffers based upon the protocol indicated by the field 
577 access attributes. Reported by Lan Tianyu. Lv Zheng.
578
579 Fixed a problem where an object detached from a namespace node was not 
580 properly terminated/cleared and could cause a circular list problem if 
581 reattached. ACPICA BZ 1063. David Box.
582
583 Fixed a possible recursive lock acquisition in hwregs.c. Rakib Mullick.
584
585 Fixed a possible memory leak in an error return path within the function 
586 AcpiUtCopyIobjectToIobject. ACPICA BZ 1087. Colin Ian King.
587
588 Example Code and Data Size: These are the sizes for the OS-independent 
589 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
590 debug version of the code includes the debug output trace mechanism and 
591 has a much larger code and data size.
592
593   Current Release:
594     Non-Debug Version:  98.7K Code, 27.2K Data, 125.9K Total
595     Debug Version:     191.7K Code, 79.6K Data, 271.3K Total
596   Previous Release:
597     Non-Debug Version:  96.8K Code, 27.2K Data, 124.0K Total
598     Debug Version:     189.5K Code, 79.7K Data, 269.2K Total
599
600
601 2) iASL Compiler/Disassembler and Tools:
602
603 Disassembler: Add dump of ASCII equivalent text within a comment at the 
604 end of each line of the output for the Buffer() ASL operator.
605
606 AcpiDump: Miscellaneous changes:
607   Fixed repetitive table dump in -n mode.
608   For older EFI platforms, use the ACPI 1.0 GUID during RSDP search if 
609 the ACPI 2.0 GUID fails.
610
611 iASL: Fixed a problem where the compiler could fault if incorrectly given 
612 an acpidump output file as input. ACPICA BZ 1088. David Box.
613
614 AcpiExec/AcpiNames: Fixed a problem where these utilities could fault if 
615 they are invoked without any arguments.
616
617 Debugger: Fixed a possible memory leak in an error return path. ACPICA BZ 
618 1086. Colin Ian King.
619
620 Disassembler: Cleaned up a block of code that extracts a parent Op 
621 object. Added a comment that explains that the parent is guaranteed to be 
622 valid in this case. ACPICA BZ 1069.
623
624 ----------------------------------------
625 24 April 2014. Summary of changes for version 20140424:
626
627 1) ACPICA kernel-resident subsystem:
628
629 Implemented support to skip/ignore NULL address entries in the RSDT/XSDT. 
630 Some of these tables are known to contain a trailing NULL entry. Lv 
631 Zheng.
632
633 Removed an extraneous error message for the case where there are a large 
634 number of system GPEs (> 124). This was the "32-bit FADT register is too 
635 long to convert to GAS struct" message, which is irrelevant for GPEs 
636 since the GPEx_BLK_LEN fields of the FADT are always used instead of the 
637 (limited capacity) GAS bit length. Also, several changes to ensure proper 
638 support for GPE numbers > 255, where some "GPE number" fields were 8-bits 
639 internally.
640
641 Implemented and deployed additional configuration support for the public 
642 ACPICA external interfaces. Entire classes of interfaces can now be 
643 easily modified or configured out, replaced by stubbed inline functions 
644 by default. Lv Zheng.
645
646 Moved all public ACPICA runtime configuration globals to the public 
647 ACPICA external interface file for convenience. Also, removed some 
648 obsolete/unused globals. See the file acpixf.h. Lv Zheng.
649
650 Documentation: Added a new section to the ACPICA reference describing the 
651 maximum number of GPEs that can be supported by the FADT-defined GPEs in 
652 block zero and one. About 1200 total. See section 4.4.1 of the ACPICA 
653 reference.
654
655 Example Code and Data Size: These are the sizes for the OS-independent 
656 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
657 debug version of the code includes the debug output trace mechanism and 
658 has a much larger code and data size.
659
660   Current Release:
661     Non-Debug Version:  96.8K Code, 27.2K Data, 124.0K Total
662     Debug Version:     189.5K Code, 79.7K Data, 269.2K Total
663   Previous Release:
664     Non-Debug Version:  97.0K Code, 27.2K Data, 124.2K Total
665     Debug Version:     189.7K Code, 79.5K Data, 269.2K Total
666
667
668 2) iASL Compiler/Disassembler and Tools:
669
670 iASL and disassembler: Add full support for the LPIT table (Low Power 
671 Idle Table). Includes support in the disassembler, data table compiler, 
672 and template generator.
673
674 AcpiDump utility:
675 1) Add option to force the use of the RSDT (over the XSDT).
676 2) Improve validation of the RSDP signature (use 8 chars instead of 4).
677
678 iASL: Add check for predefined packages that are too large.  For 
679 predefined names that contain subpackages, check if each subpackage is 
680 too large. (Check for too small already exists.)
681
682 Debugger: Updated the GPE command (which simulates a GPE by executing the 
683 GPE code paths in ACPICA). The GPE device is now optional, and defaults 
684 to the GPE 0/1 FADT-defined blocks.
685
686 Unix application OSL: Update line-editing support. Add additional error 
687 checking and take care not to reset terminal attributes on exit if they 
688 were never set. This should help guarantee that the terminal is always 
689 left in the previous state on program exit.
690
691 ----------------------------------------
692 25 March 2014. Summary of changes for version 20140325:
693
694 1) ACPICA kernel-resident subsystem:
695
696 Updated the auto-serialize feature for control methods. This feature 
697 automatically serializes all methods that create named objects in order 
698 to prevent runtime errors. The update adds support to ignore the 
699 currently executing AML SyncLevel when invoking such a method, in order 
700 to prevent disruption of any existing SyncLevel priorities that may exist 
701 in the AML code. Although the use of SyncLevels is relatively rare, this 
702 change fixes a regression where an AE_AML_MUTEX_ORDER exception can 
703 appear on some machines starting with the 20140214 release.
704
705 Added a new external interface to allow the host to install ACPI tables 
706 very early, before the namespace is even created. AcpiInstallTable gives 
707 the host additional flexibility for ACPI table management. Tables can be 
708 installed directly by the host as if they had originally appeared in the 
709 XSDT/RSDT. Installed tables can be SSDTs or other ACPI data tables 
710 (anything except the DSDT and FACS). Adds a new file, tbdata.c, along 
711 with additional internal restructuring and cleanup. See the ACPICA 
712 Reference for interface details. Lv Zheng.
713
714 Added validation of the checksum for all incoming dynamically loaded 
715 tables (via external interfaces or via AML Load/LoadTable operators). Lv 
716 Zheng.
717
718 Updated the use of the AcpiOsWaitEventsComplete interface during Notify 
719 and GPE handler removal. Restructured calls to eliminate possible race 
720 conditions. Lv Zheng.
721
722 Added a warning for the use/execution of the ASL/AML Unload (table) 
723 operator. This will help detect and identify machines that use this 
724 operator if and when it is ever used. This operator has never been seen 
725 in the field and the usage model and possible side-effects of the drastic 
726 runtime action of a full table removal are unknown.
727
728 Reverted the use of #pragma push/pop which was introduced in the 20140214 
729 release. It appears that push and pop are not implemented by enough 
730 compilers to make the use of this feature feasible for ACPICA at this 
731 time. However, these operators may be deployed in a future ACPICA 
732 release.
733
734 Added the missing EXPORT_SYMBOL macros for the install and remove SCI 
735 handler interfaces.
736
737 Source code generation:
738 1) Disabled the use of the "strchr" macro for the gcc-specific 
739 generation. For some versions of gcc, this macro can periodically expose 
740 a compiler bug which in turn causes compile-time error(s).
741 2) Added support for PPC64 compilation. Colin Ian King.
742
743 Example Code and Data Size: These are the sizes for the OS-independent 
744 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
745 debug version of the code includes the debug output trace mechanism and 
746 has a much larger code and data size.
747
748   Current Release:
749     Non-Debug Version:  97.0K Code, 27.2K Data, 124.2K Total
750     Debug Version:     189.7K Code, 79.5K Data, 269.2K Total
751   Previous Release:
752     Non-Debug Version:  96.5K Code, 27.2K Data, 123.7K Total
753     Debug Version:     188.6K Code, 79.0K Data, 267.6K Total
754
755
756 2) iASL Compiler/Disassembler and Tools:
757
758 Disassembler: Added several new features to improve the readability of 
759 the resulting ASL code. Extra information is emitted within comment 
760 fields in the ASL code:
761 1) Known _HID/_CID values are decoded to descriptive text.
762 2) Standard values for the Notify() operator are decoded to descriptive 
763 text.
764 3) Target operands are expanded to full pathnames (in a comment) when 
765 possible.
766
767 Disassembler: Miscellaneous updates for extern() handling:
768 1) Abort compiler if file specified by -fe option does not exist.
769 2) Silence unnecessary warnings about argument count mismatches.
770 3) Update warning messages concerning unresolved method externals.
771 4) Emit "UnknownObj" keyword for externals whose type cannot be 
772 determined.
773
774 AcpiHelp utility:
775 1) Added the -a option to display both the ASL syntax and the AML 
776 encoding for an input ASL operator. This effectively displays all known 
777 information about an ASL operator with one AcpiHelp invocation.
778 2) Added substring match support (similar to a wildcard) for the -i 
779 (_HID/PNP IDs) option.
780
781 iASL/Disassembler: Since this tool does not yet support execution on big-
782 endian machines, added detection of endianness and an error message if 
783 execution is attempted on big-endian. Support for big-endian within iASL 
784 is a feature that is on the ACPICA to-be-done list.
785
786 AcpiBin utility:
787 1) Remove option to extract binary files from an acpidump; this function 
788 is made obsolete by the AcpiXtract utility.
789 2) General cleanup of open files and allocated buffers.
790
791 ----------------------------------------
792 14 February 2014. Summary of changes for version 20140214:
793
794 1) ACPICA kernel-resident subsystem:
795
796 Implemented a new mechanism to proactively prevent problems with ill-
797 behaved reentrant control methods that create named ACPI objects. This 
798 behavior is illegal as per the ACPI specification, but is nonetheless 
799 frequently seen in the field. Previously, this could lead to an 
800 AE_ALREADY_EXISTS exception if the method was actually entered by more 
801 than one thread. This new mechanism detects such methods at table load 
802 time and marks them "serialized" to prevent reentrancy. A new global 
803 option, AcpiGbl_AutoSerializeMethods, has been added to disable this 
804 feature if desired. This mechanism and global option obsoletes and 
805 supersedes the previous AcpiGbl_SerializeAllMethods option.
806
807 Added the "Windows 2013" string to the _OSI support. ACPICA will now 
808 respond TRUE to _OSI queries with this string. It is the stated policy of 
809 ACPICA to add new strings to the _OSI support as soon as possible after 
810 they are defined. See the full ACPICA _OSI policy which has been added to 
811 the utilities/utosi.c file.
812
813 Hardened/updated the _PRT return value auto-repair code:
814 1) Do not abort the repair on a single subpackage failure, continue to 
815 check all subpackages.
816 2) Add check for the minimum subpackage length (4).
817 3) Properly handle extraneous NULL package elements.
818
819 Added support to avoid the possibility of infinite loops when traversing 
820 object linked lists. Never allow an infinite loop, even in the face of 
821 corrupted object lists.
822
823 ACPICA headers: Deployed the use of #pragma pack(push) and #pragma 
824 pack(pop) directives to ensure that the ACPICA headers are independent of 
825 compiler settings or other host headers.
826
827 Example Code and Data Size: These are the sizes for the OS-independent 
828 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
829 debug version of the code includes the debug output trace mechanism and 
830 has a much larger code and data size.
831
832   Current Release:
833     Non-Debug Version:  96.5K Code, 27.2K Data, 123.7K Total
834     Debug Version:     188.6K Code, 79.0K Data, 267.6K Total
835   Previous Release:
836     Non-Debug Version:  96.2K Code, 27.0K Data, 123.2K Total
837     Debug Version:     187.5K Code, 78.3K Data, 265.8K Total
838
839
840 2) iASL Compiler/Disassembler and Tools:
841
842 iASL/Table-compiler: Fixed a problem with support for the SPMI table. The 
843 first reserved field was incorrectly forced to have a value of zero. This 
844 change correctly forces the field to have a value of one. ACPICA BZ 1081.
845
846 Debugger: Added missing support for the "Extra" and "Data" subobjects 
847 when displaying object data.
848
849 Debugger: Added support to display entire object linked lists when 
850 displaying object data.
851
852 iASL: Removed the obsolete -g option to obtain ACPI tables from the 
853 Windows registry. This feature has been superseded by the acpidump 
854 utility. 
855
856 ----------------------------------------
857 14 January 2014. Summary of changes for version 20140114:
858
859 1) ACPICA kernel-resident subsystem:
860
861 Updated all ACPICA copyrights and signons to 2014. Added the 2014 
862 copyright to all module headers and signons, including the standard Linux 
863 header. This affects virtually every file in the ACPICA core subsystem, 
864 iASL compiler, all ACPICA utilities, and the test suites.
865
866 Improved parameter validation for AcpiInstallGpeBlock. Added the 
867 following checks:
868 1) The incoming device handle refers to type ACPI_TYPE_DEVICE.
869 2) There is not already a GPE block attached to the device.
870 Likewise, with AcpiRemoveGpeBlock, ensure that the incoming object is a 
871 device.
872
873 Correctly support "references" in the ACPI_OBJECT. This change fixes the 
874 support to allow references (namespace nodes) to be passed as arguments 
875 to control methods via the evaluate object interface. This is probably 
876 most useful for testing purposes, however.
877
878 Improved support for 32/64 bit physical addresses in printf()-like 
879 output. This change improves the support for physical addresses in printf 
880 debug statements and other output on both 32-bit and 64-bit hosts. It 
881 consistently outputs the appropriate number of bytes for each host. The 
882 %p specifier is unsatisfactory since it does not emit uniform output on 
883 all hosts/clib implementations (on some, leading zeros are not supported, 
884 leading to difficult-to-read output).
885
886 Example Code and Data Size: These are the sizes for the OS-independent 
887 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
888 debug version of the code includes the debug output trace mechanism and 
889 has a much larger code and data size.
890
891   Current Release:
892     Non-Debug Version:  96.2K Code, 27.0K Data, 123.2K Total
893     Debug Version:     187.5K Code, 78.3K Data, 265.8K Total
894   Previous Release:
895     Non-Debug Version:  96.1K Code, 27.0K Data, 123.1K Total
896     Debug Version:     185.6K Code, 77.3K Data, 262.9K Total
897
898
899 2) iASL Compiler/Disassembler and Tools:
900
901 iASL: Fix a possible fault when using the Connection() operator. Fixes a 
902 problem if the parent Field definition for the Connection operator refers 
903 to an operation region that does not exist. ACPICA BZ 1064.
904
905 AcpiExec: Load of local test tables is now optional. The utility has the 
906 capability to load some various tables to test features of ACPICA. 
907 However, there are enough of them that the output of the utility became 
908 confusing. With this change, only the required local tables are displayed 
909 (RSDP, XSDT, etc.) along with the actual tables loaded via the command 
910 line specification. This makes the default output simler and easier to 
911 understand. The -el command line option restores the original behavior 
912 for testing purposes.
913
914 AcpiExec: Added support for overlapping operation regions. This change 
915 expands the simulation of operation regions by supporting regions that 
916 overlap within the given address space. Supports SystemMemory and 
917 SystemIO. ASLTS test suite updated also. David Box. ACPICA BZ 1031.
918
919 AcpiExec: Added region handler support for PCI_Config and EC spaces. This 
920 allows AcpiExec to simulate these address spaces, similar to the current 
921 support for SystemMemory and SystemIO.
922
923 Debugger: Added new command to read/write/compare all namespace objects. 
924 The command "test objects" will exercise the entire namespace by writing 
925 new values to each data object, and ensuring that the write was 
926 successful. The original value is then restored and verified.
927
928 Debugger: Added the "test predefined" command. This change makes this 
929 test public and puts it under the new "test" command. The test executes 
930 each and every predefined name within the current namespace.
931
932 ----------------------------------------
933 18 December 2013. Summary of changes for version 20131218:
934
935 Global note: The ACPI 5.0A specification was released this month. There 
936 are no changes needed for ACPICA since this release of ACPI is an 
937 errata/clarification release. The specification is available at 
938 acpi.info. 
939
940
941 1) ACPICA kernel-resident subsystem:
942
943 Added validation of the XSDT root table if it is present. Some older 
944 platforms contain an XSDT that is ill-formed or otherwise invalid (such 
945 as containing some or all entries that are NULL pointers). This change 
946 adds a new function to validate the XSDT before actually using it. If the 
947 XSDT is found to be invalid, ACPICA will now automatically fall back to 
948 using the RSDT instead. Original implementation by Zhao Yakui. Ported to 
949 ACPICA and enhanced by Lv Zheng and Bob Moore.
950
951 Added a runtime option to ignore the XSDT and force the use of the RSDT. 
952 This change adds a runtime option that will force ACPICA to use the RSDT 
953 instead of the XSDT (AcpiGbl_DoNotUseXsdt). Although the ACPI spec 
954 requires that an XSDT be used instead of the RSDT, the XSDT has been 
955 found to be corrupt or ill-formed on some machines. Lv Zheng.
956
957 Added a runtime option to favor 32-bit FADT register addresses over the 
958 64-bit addresses. This change adds an option to favor 32-bit FADT 
959 addresses when there is a conflict between the 32-bit and 64-bit versions 
960 of the same register. The default behavior is to use the 64-bit version 
961 in accordance with the ACPI specification. This can now be overridden via 
962 the AcpiGbl_Use32BitFadtAddresses flag. ACPICA BZ 885. Lv Zheng.
963
964 During the change above, the internal "Convert FADT" and "Verify FADT" 
965 functions have been merged to simplify the code, making it easier to 
966 understand and maintain. ACPICA BZ 933.
967
968 Improve exception reporting and handling for GPE block installation. 
969 Return an actual status from AcpiEvGetGpeXruptBlock and don't clobber the 
970 status when exiting AcpiEvInstallGpeBlock. ACPICA BZ 1019.
971
972 Added helper macros to extract bus/segment numbers from the HEST table. 
973 This change adds two macros to extract the encoded bus and segment 
974 numbers from the HEST Bus field - ACPI_HEST_BUS and ACPI_HEST_SEGMENT. 
975 Betty Dall <betty.dall@hp.com>
976
977 Removed the unused ACPI_FREE_BUFFER macro. This macro is no longer used 
978 by ACPICA. It is not a public macro, so it should have no effect on 
979 existing OSV code. Lv Zheng.
980
981 Example Code and Data Size: These are the sizes for the OS-independent 
982 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
983 debug version of the code includes the debug output trace mechanism and 
984 has a much larger code and data size.
985
986   Current Release:
987     Non-Debug Version:  96.1K Code, 27.0K Data, 123.1K Total
988     Debug Version:     185.6K Code, 77.3K Data, 262.9K Total
989   Previous Release:
990     Non-Debug Version:  95.9K Code, 27.0K Data, 122.9K Total
991     Debug Version:     185.1K Code, 77.2K Data, 262.3K Total
992
993
994 2) iASL Compiler/Disassembler and Tools:
995
996 Disassembler: Improved pathname support for emitted External() 
997 statements. This change adds full pathname support for external names 
998 that have been resolved internally by the inclusion of additional ACPI 
999 tables (via the iASL -e option). Without this change, the disassembler 
1000 can emit multiple externals for the same object, or it become confused 
1001 when the Scope() operator is used on an external object. Overall, greatly 
1002 improves the ability to actually recompile the emitted ASL code when 
1003 objects a referenced across multiple ACPI tables. Reported by Michael 
1004 Tsirkin (mst@redhat.com).
1005
1006 Tests/ASLTS: Updated functional control suite to execute with no errors. 
1007 David Box. Fixed several errors related to the testing of the interpreter 
1008 slack mode. Lv Zheng.
1009
1010 iASL: Added support to detect names that are declared within a control 
1011 method, but are unused (these are temporary names that are only valid 
1012 during the time the method is executing). A remark is issued for these 
1013 cases. ACPICA BZ 1022.
1014
1015 iASL: Added full support for the DBG2 table. Adds full disassembler, 
1016 table compiler, and template generator support for the DBG2 table (Debug 
1017 Port 2 table).
1018
1019 iASL: Added full support for the PCCT table, update the table definition. 
1020 Updates the PCCT table definition in the actbl3.h header and adds table 
1021 compiler and template generator support.
1022
1023 iASL: Added an option to emit only error messages (no warnings/remarks). 
1024 The -ve option will enable only error messages, warnings and remarks are 
1025 suppressed. This can simplify debugging when only the errors are 
1026 important, such as when an ACPI table is disassembled and there are many 
1027 warnings and remarks -- but only the actual errors are of real interest.
1028
1029 Example ACPICA code (source/tools/examples): Updated the example code so 
1030 that it builds to an actual working program, not just example code. Added 
1031 ACPI tables and execution of an example control method in the DSDT. Added 
1032 makefile support for Unix generation.
1033
1034 ----------------------------------------
1035 15 November 2013. Summary of changes for version 20131115:
1036
1037 This release is available at https://acpica.org/downloads
1038
1039
1040 1) ACPICA kernel-resident subsystem:
1041
1042 Resource Manager: Fixed loop termination for the "get AML length" 
1043 function. The loop previously had an error termination on a NULL resource 
1044 pointer, which can never happen since the loop simply increments a valid 
1045 resource pointer. This fix changes the loop to terminate with an error on 
1046 an invalid end-of-buffer condition. The problem can be seen as an 
1047 infinite loop by callers to AcpiSetCurrentResources with an invalid or 
1048 corrupted resource descriptor, or a resource descriptor that is missing 
1049 an END_TAG descriptor. Reported by Dan Carpenter 
1050 <dan.carpenter@oracle.com>. Lv Zheng, Bob Moore.
1051
1052 Table unload and ACPICA termination: Delete all attached data objects 
1053 during namespace node deletion. This fix updates namespace node deletion 
1054 to delete the entire list of attached objects (attached via 
1055 AcpiAttachObject) instead of just one of the attached items. ACPICA BZ 
1056 1024. Tomasz Nowicki (tomasz.nowicki@linaro.org).
1057
1058 ACPICA termination: Added support to delete all objects attached to the 
1059 root namespace node. This fix deletes any and all objects that have been 
1060 attached to the root node via AcpiAttachData. Previously, none of these 
1061 objects were deleted. Reported by Tomasz Nowicki. ACPICA BZ 1026.
1062
1063 Debug output: Do not emit the function nesting level for the in-kernel 
1064 build. The nesting level is really only useful during a single-thread 
1065 execution. Therefore, only enable this output for the AcpiExec utility. 
1066 Also, only emit the thread ID when executing under AcpiExec (Context 
1067 switches are still always detected and a message is emitted). ACPICA BZ 
1068 972.
1069
1070 Example Code and Data Size: These are the sizes for the OS-independent 
1071 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1072 debug version of the code includes the debug output trace mechanism and 
1073 has a much larger code and data size.
1074
1075   Current Release:
1076     Non-Debug Version:  95.9K Code, 27.0K Data, 122.9K Total
1077     Debug Version:     185.1K Code, 77.2K Data, 262.3K Total
1078   Previous Release:
1079     Non-Debug Version:  95.8K Code, 27.0K Data, 122.8K Total
1080     Debug Version:     185.2K Code, 77.2K Data, 262.4K Total
1081
1082
1083 2) iASL Compiler/Disassembler and Tools:
1084
1085 AcpiExec/Unix-OSL: Use <termios.h> instead of <termio.h>. This is the 
1086 correct portable POSIX header for terminal control functions.
1087
1088 Disassembler: Fixed control method invocation issues related to the use 
1089 of the CondRefOf() operator. The problem is seen in the disassembly where 
1090 control method invocations may not be disassembled properly if the 
1091 control method name has been used previously as an argument to CondRefOf. 
1092 The solution is to not attempt to emit an external declaration for the 
1093 CondRefOf target (it is not necessary in the first place). This prevents 
1094 disassembler object type confusion. ACPICA BZ 988.
1095
1096 Unix Makefiles: Added an option to disable compiler optimizations and the 
1097 _FORTIFY_SOURCE flag. Some older compilers have problems compiling ACPICA 
1098 with optimizations (reportedly, gcc 4.4 for example). This change adds a 
1099 command line option for make (NOOPT) that disables all compiler 
1100 optimizations and the _FORTIFY_SOURCE compiler flag. The default 
1101 optimization is -O2 with the _FORTIFY_SOURCE flag specified. ACPICA BZ 
1102 1034. Lv Zheng, Bob Moore.
1103
1104 Tests/ASLTS: Added options to specify individual test cases and modes. 
1105 This allows testers running aslts.sh to optionally specify individual 
1106 test modes and test cases. Also added an option to disable the forced 
1107 generation of the ACPICA tools from source if desired. Lv Zheng.
1108
1109 ----------------------------------------
1110 27 September 2013. Summary of changes for version 20130927:
1111
1112 This release is available at https://acpica.org/downloads
1113
1114
1115 1) ACPICA kernel-resident subsystem:
1116
1117 Fixed a problem with store operations to reference objects. This change 
1118 fixes a problem where a Store operation to an ArgX object that contained 
1119
1120 reference to a field object did not complete the automatic dereference 
1121 and 
1122 then write to the actual field object. Instead, the object type of the 
1123 field object was inadvertently changed to match the type of the source 
1124 operand. The new behavior will actually write to the field object (buffer 
1125 field or field unit), thus matching the correct ACPI-defined behavior.
1126
1127 Implemented support to allow the host to redefine individual OSL 
1128 prototypes. This change enables the host to redefine OSL prototypes found 
1129 in the acpiosxf.h file. This allows the host to implement OSL interfaces 
1130 with a macro or inlined function. Further, it allows the host to add any 
1131 additional required modifiers such as __iomem, __init, __exit, etc., as 
1132 necessary on a per-interface basis. Enables maximum flexibility for the 
1133 OSL interfaces. Lv Zheng.
1134
1135 Hardcoded the access width for the FADT-defined reset register. The ACPI 
1136 specification requires the reset register width to be 8 bits. ACPICA now 
1137 hardcodes the width to 8 and ignores the FADT width value. This provides 
1138 compatibility with other ACPI implementations that have allowed BIOS code 
1139 with bad register width values to go unnoticed. Matthew Garett, Bob 
1140 Moore, 
1141 Lv Zheng.
1142
1143 Changed the position/use of the ACPI_PRINTF_LIKE macro. This macro is 
1144 used 
1145 in the OSL header (acpiosxf). The change modifies the position of this 
1146 macro in each instance where it is used (AcpiDebugPrint, etc.) to avoid 
1147 build issues if the OSL defines the implementation of the interface to be 
1148 an inline stub function. Lv Zheng.
1149
1150 Deployed a new macro ACPI_EXPORT_SYMBOL_INIT for the main ACPICA 
1151 initialization interfaces. This change adds a new macro for the main init 
1152 and terminate external interfaces in order to support hosts that require 
1153 additional or different processing for these functions. Changed from 
1154 ACPI_EXPORT_SYMBOL to ACPI_EXPORT_SYMBOL_INIT for these functions. Lv 
1155 Zheng, Bob Moore.
1156
1157 Cleaned up the memory allocation macros for configurability. In the 
1158 common 
1159 case, the ACPI_ALLOCATE and related macros now resolve directly to their 
1160 respective AcpiOs* OSL interfaces. Two options:
1161 1) The ACPI_ALLOCATE_ZEROED macro uses a simple local implementation by 
1162 default, unless overridden by the USE_NATIVE_ALLOCATE_ZEROED define.
1163 2) For AcpiExec (and for debugging), the macros can optionally be 
1164 resolved 
1165 to the local ACPICA interfaces that track each allocation (local tracking 
1166 is used to immediately detect memory leaks).
1167 Lv Zheng.
1168
1169 Simplified the configuration for ACPI_REDUCED_HARDWARE. Allows the kernel 
1170 to predefine this macro to either TRUE or FALSE during the system build.
1171
1172 Replaced __FUNCTION_ with __func__ in the gcc-specific header.
1173
1174 Example Code and Data Size: These are the sizes for the OS-independent 
1175 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1176 debug version of the code includes the debug output trace mechanism and 
1177 has a much larger code and data size.
1178
1179   Current Release:
1180     Non-Debug Version:  95.8K Code, 27.0K Data, 122.8K Total
1181     Debug Version:     185.2K Code, 77.2K Data, 262.4K Total
1182   Previous Release:
1183     Non-Debug Version:  96.7K Code, 27.1K Data, 123.9K Total
1184     Debug Version:     184.4K Code, 76.8K Data, 261.2K Total
1185
1186
1187 2) iASL Compiler/Disassembler and Tools:
1188
1189 iASL: Implemented wildcard support for the -e option. This simplifies use 
1190 when there are many SSDTs that must be included to resolve external 
1191 method 
1192 declarations. ACPICA BZ 1041. Example:
1193     iasl -e ssdt*.dat -d dsdt.dat
1194
1195 AcpiExec: Add history/line-editing for Unix/Linux systems. This change 
1196 adds a portable module that implements full history and limited line 
1197 editing for Unix and Linux systems. It does not use readline() due to 
1198 portability issues. Instead it uses the POSIX termio interface to put the 
1199 terminal in raw input mode so that the various special keys can be 
1200 trapped 
1201 (such as up/down-arrow for history support and left/right-arrow for line 
1202 editing). Uses the existing debugger history mechanism. ACPICA BZ 1036.
1203
1204 AcpiXtract: Add support to handle (ignore) "empty" lines containing only 
1205 one or more spaces. This provides compatible with early or different 
1206 versions of the AcpiDump utility. ACPICA BZ 1044.
1207
1208 AcpiDump: Do not ignore tables that contain only an ACPI table header. 
1209 Apparently, some BIOSs create SSDTs that contain an ACPI table header but 
1210 no other data. This change adds support to dump these tables. Any tables 
1211 shorter than the length of an ACPI table header remain in error (an error 
1212 message is emitted). Reported by Yi Li.
1213
1214 Debugger: Echo actual command along with the "unknown command" message.
1215
1216 ----------------------------------------
1217 23 August 2013. Summary of changes for version 20130823:
1218
1219 1) ACPICA kernel-resident subsystem:
1220
1221 Implemented support for host-installed System Control Interrupt (SCI) 
1222 handlers. Certain ACPI functionality requires the host to handle raw 
1223 SCIs. For example, the "SCI Doorbell" that is defined for memory power 
1224 state support requires the host device driver to handle SCIs to examine 
1225 if the doorbell has been activated. Multiple SCI handlers can be 
1226 installed to allow for future expansion. New external interfaces are 
1227 AcpiInstallSciHandler, AcpiRemoveSciHandler; see the ACPICA reference for 
1228 details. Lv Zheng, Bob Moore. ACPICA BZ 1032.
1229
1230 Operation region support: Never locally free the handler "context" 
1231 pointer. This change removes some dangerous code that attempts to free 
1232 the handler context pointer in some (rare) circumstances. The owner of 
1233 the handler owns this pointer and the ACPICA code should never touch it. 
1234 Although not seen to be an issue in any kernel, it did show up as a 
1235 problem (fault) under AcpiExec. Also, set the internal storage field for 
1236 the context pointer to zero when the region is deactivated, simply for 
1237 sanity. David Box. ACPICA BZ 1039.
1238
1239 AcpiRead: On error, do not modify the return value target location. If an 
1240 error happens in the middle of a split 32/32 64-bit I/O operation, do not 
1241 modify the target of the return value pointer. Makes the code consistent 
1242 with the rest of ACPICA. Bjorn Helgaas.
1243
1244 Example Code and Data Size: These are the sizes for the OS-independent 
1245 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1246 debug version of the code includes the debug output trace mechanism and 
1247 has a much larger code and data size.
1248
1249   Current Release:
1250     Non-Debug Version:  96.7K Code, 27.1K Data, 123.9K Total
1251     Debug Version:     184.4K Code, 76.8K Data, 261.2K Total
1252   Previous Release:
1253     Non-Debug Version:  96.2K Code, 27.1K Data, 123.3K Total
1254     Debug Version:     185.4K Code, 77.1K Data, 262.5K Total
1255
1256
1257 2) iASL Compiler/Disassembler and Tools:
1258
1259 AcpiDump: Implemented several new features and fixed some problems:
1260 1) Added support to dump the RSDP, RSDT, and XSDT tables.
1261 2) Added support for multiple table instances (SSDT, UEFI).
1262 3) Added option to dump "customized" (overridden) tables (-c).
1263 4) Fixed a problem where some table filenames were improperly 
1264 constructed.
1265 5) Improved some error messages, removed some unnecessary messages.
1266
1267 iASL: Implemented additional support for disassembly of ACPI tables that 
1268 contain invocations of external control methods. The -fe<file> option 
1269 allows the import of a file that specifies the external methods along 
1270 with the required number of arguments for each -- allowing for the 
1271 correct disassembly of the table. This is a workaround for a limitation 
1272 of AML code where the disassembler often cannot determine the number of 
1273 arguments required for an external control method and generates incorrect 
1274 ASL code. See the iASL reference for details. ACPICA BZ 1030.
1275
1276 Debugger: Implemented a new command (paths) that displays the full 
1277 pathnames (namepaths) and object types of all objects in the namespace. 
1278 This is an alternative to the namespace command.
1279
1280 Debugger: Implemented a new command (sci) that invokes the SCI dispatch 
1281 mechanism and any installed handlers.
1282
1283 iASL: Fixed a possible segfault for "too many parent prefixes" condition. 
1284 This can occur if there are too many parent prefixes in a namepath (for 
1285 example, ^^^^^^PCI0.ECRD). ACPICA BZ 1035.
1286
1287 Application OSLs: Set the return value for the PCI read functions. These 
1288 functions simply return AE_OK, but should set the return value to zero 
1289 also. This change implements this. ACPICA BZ 1038.
1290
1291 Debugger: Prevent possible command line buffer overflow. Increase the 
1292 size of a couple of the debugger line buffers, and ensure that overflow 
1293 cannot happen. ACPICA BZ 1037.
1294
1295 iASL: Changed to abort immediately on serious errors during the parsing 
1296 phase. Due to the nature of ASL, there is no point in attempting to 
1297 compile these types of errors, and they typically end up causing a 
1298 cascade of hundreds of errors which obscure the original problem.
1299
1300 ----------------------------------------
1301 25 July 2013. Summary of changes for version 20130725:
1302
1303 1) ACPICA kernel-resident subsystem:
1304
1305 Fixed a problem with the DerefOf operator where references to FieldUnits 
1306 and BufferFields incorrectly returned the parent object, not the actual 
1307 value of the object. After this change, a dereference of a FieldUnit 
1308 reference results in a read operation on the field to get the value, and 
1309 likewise, the appropriate BufferField value is extracted from the target 
1310 buffer.
1311
1312 Fixed a problem where the _WAK method could cause a fault under these 
1313 circumstances: 1) Interpreter slack mode was not enabled, and 2) the _WAK 
1314 method returned no value. The problem is rarely seen because most kernels 
1315 run ACPICA in slack mode.
1316
1317 For the DerefOf operator, a fatal error now results if an attempt is made 
1318 to dereference a reference (created by the Index operator) to a NULL 
1319 package element. Provides compatibility with other ACPI implementations, 
1320 and this behavior will be added to a future version of the ACPI 
1321 specification.
1322
1323 The ACPI Power Management Timer (defined in the FADT) is now optional. 
1324 This provides compatibility with other ACPI implementations and will 
1325 appear in the next version of the ACPI specification. If there is no PM 
1326 Timer on the platform, AcpiGetTimer returns AE_SUPPORT. An address of 
1327 zero in the FADT indicates no PM timer.
1328
1329 Implemented a new interface for _OSI support, AcpiUpdateInterfaces. This 
1330 allows the host to globally enable/disable all vendor strings, all 
1331 feature strings, or both. Intended to be primarily used for debugging 
1332 purposes only. Lv Zheng.
1333
1334 Expose the collected _OSI data to the host via a global variable. This 
1335 data tracks the highest level vendor ID that has been invoked by the BIOS 
1336 so that the host (and potentially ACPICA itself) can change behaviors 
1337 based upon the age of the BIOS.
1338
1339 Example Code and Data Size: These are the sizes for the OS-independent 
1340 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1341 debug version of the code includes the debug output trace mechanism and 
1342 has a much larger code and data size.
1343
1344   Current Release:
1345     Non-Debug Version:  96.2K Code, 27.1K Data, 123.3K Total
1346     Debug Version:     184.4K Code, 76.8K Data, 261.2K Total
1347   Previous Release:
1348     Non-Debug Version:  95.9K Code, 26.9K Data, 122.8K Total
1349     Debug Version:     184.1K Code, 76.7K Data, 260.8K Total
1350
1351
1352 2) iASL Compiler/Disassembler and Tools:
1353
1354 iASL: Created the following enhancements for the -so option (create 
1355 offset table):
1356 1)Add offsets for the last nameseg in each namepath for every supported 
1357 object type
1358 2)Add support for Processor, Device, Thermal Zone, and Scope objects
1359 3)Add the actual AML opcode for the parent object of every supported 
1360 object type
1361 4)Add support for the ZERO/ONE/ONES AML opcodes for integer objects
1362
1363 Disassembler: Emit all unresolved external symbols in a single block. 
1364 These are external references to control methods that could not be 
1365 resolved, and thus, the disassembler had to make a guess at the number of 
1366 arguments to parse.
1367
1368 iASL: The argument to the -T option (create table template) is now 
1369 optional. If not specified, the default table is a DSDT, typically the 
1370 most common case.
1371
1372 ----------------------------------------
1373 26 June 2013. Summary of changes for version 20130626:
1374
1375 1) ACPICA kernel-resident subsystem:
1376
1377 Fixed an issue with runtime repair of the _CST object. Null or invalid 
1378 elements were not always removed properly. Lv Zheng. 
1379
1380 Removed an arbitrary restriction of 256 GPEs per GPE block (such as the 
1381 FADT-defined GPE0 and GPE1). For GPE0, GPE1, and each GPE Block Device, 
1382 the maximum number of GPEs is 1016. Use of multiple GPE block devices 
1383 makes the system-wide number of GPEs essentially unlimited.
1384
1385 Example Code and Data Size: These are the sizes for the OS-independent 
1386 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1387 debug version of the code includes the debug output trace mechanism and 
1388 has a much larger code and data size.
1389
1390   Current Release:
1391     Non-Debug Version:  95.9K Code, 26.9K Data, 122.8K Total
1392     Debug Version:     184.1K Code, 76.7K Data, 260.8K Total
1393   Previous Release:
1394     Non-Debug Version:  96.0K Code, 27.0K Data, 123.0K Total
1395     Debug Version:     184.1K Code, 76.8K Data, 260.9K Total
1396
1397
1398 2) iASL Compiler/Disassembler and Tools:
1399
1400 Portable AcpiDump: Implemented full support for the Linux and FreeBSD 
1401 hosts. Now supports Linux, FreeBSD, and Windows.
1402
1403 Disassembler: Added some missing types for the HEST and EINJ tables: "Set 
1404 Error Type With Address", "CMCI", "MCE", and "Flush Cacheline".
1405
1406 iASL/Preprocessor: Implemented full support for nested 
1407 #if/#else/#elif/#endif blocks. Allows arbitrary depth of nested blocks.
1408
1409 Disassembler: Expanded maximum output string length to 64K. Was 256 bytes 
1410 max. The original purpose of this constraint was to limit the amount of 
1411 debug output. However, the string function in question (UtPrintString) is 
1412 now used for the disassembler also, where 256 bytes is insufficient. 
1413 Reported by RehabMan@GitHub.
1414
1415 iASL/DataTables: Fixed some problems and issues with compilation of DMAR 
1416 tables. ACPICA BZ 999. Lv Zheng.
1417
1418 iASL: Fixed a couple of error exit issues that could result in a "Could 
1419 not delete <file>" message during ASL compilation.
1420
1421 AcpiDump: Allow "FADT" and "MADT" as valid table signatures, even though 
1422 the actual signatures for these tables are "FACP" and "APIC", 
1423 respectively.
1424
1425 AcpiDump: Added support for multiple UEFI tables. Only SSDT and UEFI 
1426 tables are allowed to have multiple instances.
1427
1428 ----------------------------------------
1429 17 May 2013. Summary of changes for version 20130517:
1430
1431 1) ACPICA kernel-resident subsystem:
1432
1433 Fixed a regression introduced in version 20130328 for _INI methods. This 
1434 change fixes a problem introduced in 20130328 where _INI methods are no 
1435 longer executed properly because of a memory block that was not 
1436 initialized correctly. ACPICA BZ 1016. Tomasz Nowicki 
1437 <tomasz.nowicki@linaro.org>.
1438
1439 Fixed a possible problem with the new extended sleep registers in the 
1440 ACPI 
1441 5.0 FADT. Do not use these registers (even if populated) unless the HW-
1442 reduced bit is set in the FADT (as per the ACPI specification). ACPICA BZ 
1443 1020. Lv Zheng.
1444
1445 Implemented return value repair code for _CST predefined objects: Sort 
1446 the 
1447 list and detect/remove invalid entries. ACPICA BZ 890. Lv Zheng.
1448
1449 Implemented a debug-only option to disable loading of SSDTs from the 
1450 RSDT/XSDT during ACPICA initialization. This can be useful for debugging 
1451 ACPI problems on some machines. Set AcpiGbl_DisableSsdtTableLoad in 
1452 acglobal.h - ACPICA BZ 1005. Lv Zheng.
1453
1454 Fixed some issues in the ACPICA initialization and termination code: 
1455 Tomasz Nowicki <tomasz.nowicki@linaro.org>
1456 1) Clear events initialized flag upon event component termination. ACPICA 
1457 BZ 1013.
1458 2) Fixed a possible memory leak in GPE init error path. ACPICA BZ 1018. 
1459 3) Delete global lock pending lock during termination. ACPICA BZ 1012.
1460 4) Clear debug buffer global on termination to prevent possible multiple 
1461 delete. ACPICA BZ 1010.
1462
1463 Standardized all switch() blocks across the entire source base. After 
1464 many 
1465 years, different formatting for switch() had crept in. This change makes 
1466 the formatting of every switch block identical. ACPICA BZ 997. Chao Guan.
1467
1468 Split some files to enhance ACPICA modularity and configurability:
1469 1) Split buffer dump routines into utilities/utbuffer.c
1470 2) Split internal error message routines into utilities/uterror.c
1471 3) Split table print utilities into tables/tbprint.c
1472 4) Split iASL command-line option processing into asloptions.c
1473
1474 Makefile enhancements:
1475 1) Support for all new files above.
1476 2) Abort make on errors from any subcomponent. Chao Guan.
1477 3) Add build support for Apple Mac OS X. Liang Qi.
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   Current Release:
1485     Non-Debug Version:  96.0K Code, 27.0K Data, 123.0K Total
1486     Debug Version:     184.1K Code, 76.8K Data, 260.9K Total
1487   Previous Release:
1488     Non-Debug Version:  95.6K Code, 26.8K Data, 122.4K Total
1489     Debug Version:     183.5K Code, 76.6K Data, 260.1K Total
1490
1491
1492 2) iASL Compiler/Disassembler and Tools:
1493
1494 New utility: Implemented an easily portable version of the acpidump 
1495 utility to extract ACPI tables from the system (or a file) in an ASCII 
1496 hex 
1497 dump format. The top-level code implements the various command line 
1498 options, file I/O, and table dump routines. To port to a new host, only 
1499 three functions need to be implemented to get tables -- since this 
1500 functionality is OS-dependent. See the tools/acpidump/apmain.c module and 
1501 the ACPICA reference for porting instructions. ACPICA BZ 859. Notes:
1502 1) The Windows version obtains the ACPI tables from the Registry.
1503 2) The Linux version is under development.
1504 3) Other hosts - If an OS-dependent module is submitted, it will be 
1505 distributed with ACPICA.
1506
1507 iASL: Fixed a regression for -D preprocessor option (define symbol). A 
1508 restructuring/change to the initialization sequence caused this option to 
1509 no longer work properly.
1510
1511 iASL: Implemented a mechanism to disable specific warnings and remarks. 
1512 Adds a new command line option, "-vw <messageid> as well as "#pragma 
1513 disable <messageid>". ACPICA BZ 989. Chao Guan, Bob Moore.
1514
1515 iASL: Fix for too-strict package object validation. The package object 
1516 validation for return values from the predefined names is a bit too 
1517 strict, it does not allow names references within the package (which will 
1518 be resolved at runtime.) These types of references cannot be validated at 
1519 compile time. This change ignores named references within package objects 
1520 for names that return or define static packages.
1521
1522 Debugger: Fixed the 80-character command line limitation for the History 
1523 command. Now allows lines of arbitrary length. ACPICA BZ 1000. Chao Guan.
1524
1525 iASL: Added control method and package support for the -so option 
1526 (generates AML offset table for BIOS support.)
1527
1528 iASL: issue a remark if a non-serialized method creates named objects. If 
1529 a thread blocks within the method for any reason, and another thread 
1530 enters the method, the method will fail because an attempt will be made 
1531 to 
1532 create the same (named) object twice. In this case, issue a remark that 
1533 the method should be marked serialized. NOTE: may become a warning later. 
1534 ACPICA BZ 909.
1535
1536 ----------------------------------------
1537 18 April 2013. Summary of changes for version 20130418:
1538
1539 1) ACPICA kernel-resident subsystem:
1540
1541 Fixed a possible buffer overrun during some rare but specific field unit 
1542 read operations. This overrun can only happen if the DSDT version is 1 -- 
1543 meaning that all AML integers are 32 bits -- and the field length is 
1544 between 33 and 55 bits long. During the read, an internal buffer object 
1545 is 
1546 created for the field unit because the field is larger than an integer 
1547 (32 
1548 bits). However, in this case, the buffer will be incorrectly written 
1549 beyond the end because the buffer length is less than the internal 
1550 minimum 
1551 of 64 bits (8 bytes) long. The buffer will be either 5, 6, or 7 bytes 
1552 long, but a full 8 bytes will be written.
1553
1554 Updated the Embedded Controller "orphan" _REG method support. This refers 
1555 to _REG methods under the EC device that have no corresponding operation 
1556 region. This is allowed by the ACPI specification. This update removes a 
1557 dependency on the existence an ECDT table. It will execute an orphan _REG 
1558 method as long as the operation region handler for the EC is installed at 
1559 the EC device node and not the namespace root. Rui Zhang (original 
1560 update), Bob Moore (update/integrate).
1561
1562 Implemented run-time argument typechecking for all predefined ACPI names 
1563 (_STA, _BIF, etc.) This change performs object typechecking on all 
1564 incoming arguments for all predefined names executed via 
1565 AcpiEvaluateObject. This ensures that ACPI-related device drivers are 
1566 passing correct object types as well as the correct number of arguments 
1567 (therefore identifying any issues immediately). Also, the ASL/namespace 
1568 definition of the predefined name is checked against the ACPI 
1569 specification for the proper argument count. Adds one new file, 
1570 nsarguments.c
1571
1572 Changed an exception code for the ASL UnLoad() operator. Changed the 
1573 exception code for the case where the input DdbHandle is invalid, from 
1574 AE_BAD_PARAMETER to the more appropriate AE_AML_OPERAND_TYPE.
1575
1576 Unix/Linux makefiles: Removed the use of the -O2 optimization flag in the 
1577 global makefile. The use of this flag causes compiler errors on earlier 
1578 versions of GCC, so it has been removed for compatibility.
1579
1580 Miscellaneous cleanup:
1581 1) Removed some unused/obsolete macros
1582 2) Fixed a possible memory leak in the _OSI support
1583 3) Removed an unused variable in the predefined name support
1584 4) Windows OSL: remove obsolete reference to a memory list field
1585
1586 Example Code and Data Size: These are the sizes for the OS-independent 
1587 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1588 debug version of the code includes the debug output trace mechanism and 
1589 has a much larger code and data size.
1590
1591   Current Release:
1592     Non-Debug Version:  95.2K Code, 26.4K Data, 121.6K Total
1593     Debug Version:     183.0K Code, 76.0K Data, 259.0K Total
1594   Previous Release:
1595     Non-Debug Version:  95.6K Code, 26.8K Data, 122.4K Total
1596     Debug Version:     183.5K Code, 76.6K Data, 260.1K Total
1597
1598
1599 2) iASL Compiler/Disassembler and Tools:
1600
1601 AcpiExec: Added installation of a handler for the SystemCMOS address 
1602 space. This prevents control method abort if a method accesses this 
1603 space.
1604
1605 AcpiExec: Added support for multiple EC devices, and now install EC 
1606 operation region handler(s) at the actual EC device instead of the 
1607 namespace root. This reflects the typical behavior of host operating 
1608 systems.
1609
1610 AcpiExec: Updated to ensure that all operation region handlers are 
1611 installed before the _REG methods are executed. This prevents a _REG 
1612 method from aborting if it accesses an address space has no handler. 
1613 AcpiExec installs a handler for every possible address space.
1614
1615 Debugger: Enhanced the "handlers" command to display non-root handlers. 
1616 This change enhances the handlers command to display handlers associated 
1617 with individual devices throughout the namespace, in addition to the 
1618 currently supported display of handlers associated with the root 
1619 namespace 
1620 node.
1621
1622 ASL Test Suite: Several test suite errors have been identified and 
1623 resolved, reducing the total error count during execution. Chao Guan.
1624
1625 ----------------------------------------
1626 28 March 2013. Summary of changes for version 20130328:
1627
1628 1) ACPICA kernel-resident subsystem:
1629
1630 Fixed several possible race conditions with the internal object reference 
1631 counting mechanism. Some of the external ACPICA interfaces update object 
1632 reference counts without holding the interpreter or namespace lock. This 
1633 change adds a spinlock to protect reference count updates on the internal 
1634 ACPICA objects. Reported by and with assistance from Andriy Gapon 
1635 (avg@FreeBSD.org).
1636
1637 FADT support: Removed an extraneous warning for very large GPE register 
1638 sets. This change removes a size mismatch warning if the legacy length 
1639 field for a GPE register set is larger than the 64-bit GAS structure can 
1640 accommodate. GPE register sets can be larger than the 255-bit width 
1641 limitation of the GAS structure. Linn Crosetto (linn@hp.com).
1642
1643 _OSI Support: handle any errors from AcpiOsAcquireMutex. Check for error 
1644 return from this interface. Handles a possible timeout case if 
1645 ACPI_WAIT_FOREVER is modified by the host to be a value less than 
1646 "forever". Jung-uk Kim.
1647
1648 Predefined name support: Add allowed/required argument type information 
1649 to 
1650 the master predefined info table. This change adds the infrastructure to 
1651 enable typechecking on incoming arguments for all predefined 
1652 methods/objects. It does not actually contain the code that will fully 
1653 utilize this information, this is still under development. Also condenses 
1654 some duplicate code for the predefined names into a new module, 
1655 utilities/utpredef.c
1656
1657 Example Code and Data Size: These are the sizes for the OS-independent 
1658 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1659 debug version of the code includes the debug output trace mechanism and 
1660 has a much larger code and data size.
1661
1662   Previous Release:
1663     Non-Debug Version:  95.0K Code, 25.9K Data, 120.9K Total
1664     Debug Version:     182.9K Code, 75.6K Data, 258.5K Total
1665   Current Release:
1666     Non-Debug Version:  95.2K Code, 26.4K Data, 121.6K Total
1667     Debug Version:     183.0K Code, 76.0K Data, 259.0K Total
1668
1669
1670 2) iASL Compiler/Disassembler and Tools:
1671
1672 iASL: Implemented a new option to simplify the development of ACPI-
1673 related 
1674 BIOS code. Adds support for a new "offset table" output file. The -so 
1675 option will create a C table containing the AML table offsets of various 
1676 named objects in the namespace so that BIOS code can modify them easily 
1677 at 
1678 boot time. This can simplify BIOS runtime code by eliminating expensive 
1679 searches for "magic values", enhancing boot times and adding greater 
1680 reliability. With assistance from Lee Hamel.
1681
1682 iASL: Allow additional predefined names to return zero-length packages. 
1683 Now, all predefined names that are defined by the ACPI specification to 
1684 return a "variable-length package of packages" are allowed to return a 
1685 zero length top-level package. This allows the BIOS to tell the host that 
1686 the requested feature is not supported, and supports existing BIOS/ASL 
1687 code and practices.
1688
1689 iASL: Changed the "result not used" warning to an error. This is the case 
1690 where an ASL operator is effectively a NOOP because the result of the 
1691 operation is not stored anywhere. For example:
1692     Add (4, Local0)
1693 There is no target (missing 3rd argument), nor is the function return 
1694 value used. This is potentially a very serious problem -- since the code 
1695 was probably intended to do something, but for whatever reason, the value 
1696 was not stored. Therefore, this issue has been upgraded from a warning to 
1697 an error.
1698
1699 AcpiHelp: Added allowable/required argument types to the predefined names 
1700 info display. This feature utilizes the recent update to the predefined 
1701 names table (above).
1702
1703 ----------------------------------------
1704 14 February 2013. Summary of changes for version 20130214:
1705
1706 1) ACPICA Kernel-resident Subsystem:
1707
1708 Fixed a possible regression on some hosts: Reinstated the safe return 
1709 macros (return_ACPI_STATUS, etc.) that ensure that the argument is 
1710 evaluated only once. Although these macros are not needed for the ACPICA 
1711 code itself, they are often used by ACPI-related host device drivers 
1712 where 
1713 the safe feature may be necessary.
1714
1715 Fixed several issues related to the ACPI 5.0 reduced hardware support 
1716 (SOC): Now ensure that if the platform declares itself as hardware-
1717 reduced 
1718 via the FADT, the following functions become NOOPs (and always return 
1719 AE_OK) because ACPI is always enabled by definition on these machines:
1720   AcpiEnable
1721   AcpiDisable
1722   AcpiHwGetMode
1723   AcpiHwSetMode
1724
1725 Dynamic Object Repair: Implemented additional runtime repairs for 
1726 predefined name return values. Both of these repairs can simplify code in 
1727 the related device drivers that invoke these methods:
1728 1) For the _STR and _MLS names, automatically repair/convert an ASCII 
1729 string to a Unicode buffer. 
1730 2) For the _CRS, _PRS, and _DMA names, return a resource descriptor with 
1731
1732 lone end tag descriptor in the following cases: A Return(0) was executed, 
1733 a null buffer was returned, or no object at all was returned (non-slack 
1734 mode only). Adds a new file, nsconvert.c
1735 ACPICA BZ 998. Bob Moore, Lv Zheng.
1736
1737 Resource Manager: Added additional code to prevent possible infinite 
1738 loops 
1739 while traversing corrupted or ill-formed resource template buffers. Check 
1740 for zero-length resource descriptors in all code that loops through 
1741 resource templates (the length field is used to index through the 
1742 template). This change also hardens the external AcpiWalkResources and 
1743 AcpiWalkResourceBuffer interfaces.
1744
1745 Local Cache Manager: Enhanced the main data structure to eliminate an 
1746 unnecessary mechanism to access the next object in the list. Actually 
1747 provides a small performance enhancement for hosts that use the local 
1748 ACPICA cache manager. Jung-uk Kim.
1749
1750 Example Code and Data Size: These are the sizes for the OS-independent 
1751 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1752 debug version of the code includes the debug output trace mechanism and 
1753 has a much larger code and data size.
1754
1755   Previous Release:
1756     Non-Debug Version:  94.5K Code, 25.4K Data, 119.9K Total
1757     Debug Version:     182.3K Code, 75.0K Data, 257.3K Total
1758   Current Release:
1759     Non-Debug Version:  95.0K Code, 25.9K Data, 120.9K Total
1760     Debug Version:     182.9K Code, 75.6K Data, 258.5K Total
1761
1762
1763 2) iASL Compiler/Disassembler and Tools:
1764
1765 iASL/Disassembler: Fixed several issues with the definition of the ACPI 
1766 5.0 RASF table (RAS Feature Table). This change incorporates late changes 
1767 that were made to the ACPI 5.0 specification.
1768
1769 iASL/Disassembler: Added full support for the following new ACPI tables:
1770   1) The MTMR table (MID Timer Table)
1771   2) The VRTC table (Virtual Real Time Clock Table).
1772 Includes header file, disassembler, table compiler, and template support 
1773 for both tables.
1774
1775 iASL: Implemented compile-time validation of package objects returned by 
1776 predefined names. This new feature validates static package objects 
1777 returned by the various predefined names defined to return packages. Both 
1778 object types and package lengths are validated, for both parent packages 
1779 and sub-packages, if any. The code is similar in structure and behavior 
1780 to 
1781 the runtime repair mechanism within the AML interpreter and uses the 
1782 existing predefined name information table. Adds a new file, aslprepkg.c. 
1783 ACPICA BZ 938.
1784
1785 iASL: Implemented auto-detection of binary ACPI tables for disassembly. 
1786 This feature detects a binary file with a valid ACPI table header and 
1787 invokes the disassembler automatically. Eliminates the need to 
1788 specifically invoke the disassembler with the -d option. ACPICA BZ 862.
1789
1790 iASL/Disassembler: Added several warnings for the case where there are 
1791 unresolved control methods during the disassembly. This can potentially 
1792 cause errors when the output file is compiled, because the disassembler 
1793 assumes zero method arguments in these cases (it cannot determine the 
1794 actual number of arguments without resolution/definition of the method).
1795
1796 Debugger: Added support to display all resources with a single command. 
1797 Invocation of the resources command with no arguments will now display 
1798 all 
1799 resources within the current namespace.
1800
1801 AcpiHelp: Added descriptive text for each ACPICA exception code displayed 
1802 via the -e option.
1803
1804 ----------------------------------------
1805 17 January 2013. Summary of changes for version 20130117:
1806
1807 1) ACPICA Kernel-resident Subsystem:
1808
1809 Updated the AcpiGetSleepTypeData interface: Allow the \_Sx methods to 
1810 return either 1 or 2 integers. Although the ACPI spec defines the \_Sx 
1811 objects to return a package containing one integer, most BIOS code 
1812 returns 
1813 two integers and the previous code reflects that. However, we also need 
1814 to 
1815 support BIOS code that actually implements to the ACPI spec, and this 
1816 change reflects this.
1817
1818 Fixed two issues with the ACPI_DEBUG_PRINT macros:
1819 1) Added the ACPI_DO_WHILE macro to the main DEBUG_PRINT helper macro for 
1820 C compilers that require this support.
1821 2) Renamed the internal ACPI_DEBUG macro to ACPI_DO_DEBUG_PRINT since 
1822 ACPI_DEBUG is already used by many of the various hosts.
1823
1824 Updated all ACPICA copyrights and signons to 2013. Added the 2013 
1825 copyright to all module headers and signons, including the standard Linux 
1826 header. This affects virtually every file in the ACPICA core subsystem, 
1827 iASL compiler, all ACPICA utilities, and the test suites.
1828
1829 Example Code and Data Size: These are the sizes for the OS-independent 
1830 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1831 debug version of the code includes the debug output trace mechanism and 
1832 has a much larger code and data size.
1833
1834   Previous Release:
1835     Non-Debug Version:  94.5K Code, 25.5K Data, 120.0K Total
1836     Debug Version:     182.2K Code, 74.9K Data, 257.1K Total
1837   Current Release:
1838     Non-Debug Version:  94.5K Code, 25.4K Data, 119.9K Total
1839     Debug Version:     182.3K Code, 75.0K Data, 257.3K Total
1840
1841
1842 2) iASL Compiler/Disassembler and Tools:
1843
1844 Generic Unix OSL: Use a buffer to eliminate multiple vfprintf()s and 
1845 prevent a possible fault on some hosts. Some C libraries modify the arg 
1846 pointer parameter to vfprintf making it difficult to call it twice in the 
1847 AcpiOsVprintf function. Use a local buffer to workaround this issue. This 
1848 does not affect the Windows OSL since the Win C library does not modify 
1849 the arg pointer. Chao Guan, Bob Moore.
1850
1851 iASL: Fixed a possible infinite loop when the maximum error count is 
1852 reached. If an output file other than the .AML file is specified (such as 
1853 a listing file), and the maximum number of errors is reached, do not 
1854 attempt to flush data to the output file(s) as the compiler is aborting. 
1855 This can cause an infinite loop as the max error count code essentially 
1856 keeps calling itself.
1857
1858 iASL/Disassembler: Added an option (-in) to ignore NOOP 
1859 opcodes/operators. 
1860 Implemented for both the compiler and the disassembler. Often, the NOOP 
1861 opcode is used as padding for packages that are changed dynamically by 
1862 the 
1863 BIOS. When disassembled and recompiled, these NOOPs will cause syntax 
1864 errors. This option causes the disassembler to ignore all NOOP opcodes 
1865 (0xA3), and it also causes the compiler to ignore all ASL source code 
1866 NOOP 
1867 statements as well.
1868
1869 Debugger: Enhanced the Sleep command to execute all sleep states. This 
1870 change allows Sleep to be invoked with no arguments and causes the 
1871 debugger to execute all of the sleep states, 0-5, automatically.
1872
1873 ----------------------------------------
1874 20 December 2012. Summary of changes for version 20121220:
1875
1876 1) ACPICA Kernel-resident Subsystem:
1877
1878 Implemented a new interface, AcpiWalkResourceBuffer. This interface is an 
1879 alternate entry point for AcpiWalkResources and improves the usability of 
1880 the resource manager by accepting as input a buffer containing the output 
1881 of either a _CRS, _PRS, or _AEI method. The key functionality is that the 
1882 input buffer is not deleted by this interface so that it can be used by 
1883 the host later. See the ACPICA reference for details.
1884
1885 Interpreter: Add a warning if a 64-bit constant appears in a 32-bit table 
1886 (DSDT version < 2). The constant will be truncated and this warning 
1887 reflects that behavior.
1888
1889 Resource Manager: Add support for the new ACPI 5.0 wake bit in the IRQ, 
1890 ExtendedInterrupt, and GpioInt descriptors. This change adds support to 
1891 both get and set the new wake bit in these descriptors, separately from 
1892 the existing share bit. Reported by Aaron Lu.
1893
1894 Interpreter: Fix Store() when an implicit conversion is not possible. For 
1895 example, in the cases such as a store of a string to an existing package 
1896 object, implement the store as a CopyObject(). This is a small departure 
1897 from the ACPI specification which states that the control method should 
1898 be 
1899 aborted in this case. However, the ASLTS suite depends on this behavior.
1900
1901 Performance improvement for the various FUNCTION_TRACE and DEBUG_PRINT 
1902 macros: check if debug output is currently enabled as soon as possible to 
1903 minimize performance impact if debug is in fact not enabled.
1904
1905 Source code restructuring: Cleanup to improve modularity. The following 
1906 new files have been added: dbconvert.c, evhandler.c, nsprepkg.c, 
1907 psopinfo.c, psobject.c, rsdumpinfo.c, utstring.c, and utownerid.c. 
1908 Associated makefiles and project files have been updated.
1909
1910 Changed an exception code for LoadTable operator. For the case where one 
1911 of the input strings is too long, change the returned exception code from 
1912 AE_BAD_PARAMETER to AE_AML_STRING_LIMIT.
1913
1914 Fixed a possible memory leak in dispatcher error path. On error, delete 
1915 the mutex object created during method mutex creation. Reported by 
1916 tim.gardner@canonical.com.
1917
1918 Example Code and Data Size: These are the sizes for the OS-independent 
1919 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1920 debug version of the code includes the debug output trace mechanism and 
1921 has a much larger code and data size.
1922
1923   Previous Release:
1924     Non-Debug Version:  94.3K Code, 25.3K Data, 119.6K Total
1925     Debug Version:     175.5K Code, 74.5K Data, 250.0K Total
1926   Current Release:
1927     Non-Debug Version:  94.5K Code, 25.5K Data, 120.0K Total
1928     Debug Version:     182.2K Code, 74.9K Data, 257.1K Total
1929
1930
1931 2) iASL Compiler/Disassembler and Tools:
1932
1933 iASL: Disallow a method call as argument to the ObjectType ASL operator. 
1934 This change tracks an errata to the ACPI 5.0 document. The AML grammar 
1935 will not allow the interpreter to differentiate between a method and a 
1936 method invocation when these are used as an argument to the ObjectType 
1937 operator. The ACPI specification change is to disallow a method 
1938 invocation 
1939 (UserTerm) for the ObjectType operator.
1940
1941 Finish support for the TPM2 and CSRT tables in the headers, table 
1942 compiler, and disassembler.
1943
1944 Unix user-space OSL: Fix a problem with WaitSemaphore where the timeout 
1945 always expires immediately if the semaphore is not available. The 
1946 original 
1947 code was using a relative-time timeout, but sem_timedwait requires the 
1948 use 
1949 of an absolute time.
1950
1951 iASL: Added a remark if the Timer() operator is used within a 32-bit 
1952 table. This operator returns a 64-bit time value that will be truncated 
1953 within a 32-bit table.
1954
1955 iASL Source code restructuring: Cleanup to improve modularity. The 
1956 following new files have been added: aslhex.c, aslxref.c, aslnamesp.c, 
1957 aslmethod.c, and aslfileio.c. Associated makefiles and project files have 
1958 been updated.
1959
1960
1961 ----------------------------------------
1962 14 November 2012. Summary of changes for version 20121114:
1963
1964 1) ACPICA Kernel-resident Subsystem:
1965
1966 Implemented a performance enhancement for ACPI/AML Package objects. This 
1967 change greatly increases the performance of Package objects within the 
1968 interpreter. It changes the processing of reference counts for packages 
1969 by 
1970 optimizing for the most common case where the package sub-objects are 
1971 either Integers, Strings, or Buffers. Increases the overall performance 
1972 of 
1973 the ASLTS test suite by 1.5X (Increases the Slack Mode performance by 
1974 2X.) 
1975 Chao Guan. ACPICA BZ 943.
1976
1977 Implemented and deployed common macros to extract flag bits from resource 
1978 descriptors. Improves readability and maintainability of the code. Fixes 
1979
1980 problem with the UART serial bus descriptor for the number of data bits 
1981 flags (was incorrectly 2 bits, should be 3).
1982
1983 Enhanced the ACPI_GETx and ACPI_SETx macros. Improved the implementation 
1984 of the macros and changed the SETx macros to the style of (destination, 
1985 source). Also added ACPI_CASTx companion macros. Lv Zheng.
1986
1987 Example Code and Data Size: These are the sizes for the OS-independent 
1988 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1989 debug version of the code includes the debug output trace mechanism and 
1990 has a much larger code and data size.
1991
1992   Previous Release:
1993     Non-Debug Version:  93.9K Code, 25.2K Data, 119.1K Total
1994     Debug Version:     175.5K Code, 74.5K Data, 250.0K Total
1995   Current Release:
1996     Non-Debug Version:  94.3K Code, 25.3K Data, 119.6K Total
1997     Debug Version:     175.5K Code, 74.5K Data, 250.0K Total
1998
1999
2000 2) iASL Compiler/Disassembler and Tools:
2001
2002 Disassembler: Added the new ACPI 5.0 interrupt sharing flags. This change 
2003 adds the ShareAndWake and ExclusiveAndWake flags which were added to the 
2004 Irq, Interrupt, and Gpio resource descriptors in ACPI 5.0. ACPICA BZ 986.
2005
2006 Disassembler: Fixed a problem with external declaration generation. Fixes 
2007 a problem where an incorrect pathname could be generated for an external 
2008 declaration if the original reference to the object includes leading 
2009 carats (^). ACPICA BZ 984.
2010
2011 Debugger: Completed a major update for the Disassemble<method> command. 
2012 This command was out-of-date and did not properly disassemble control 
2013 methods that had any reasonable complexity. This fix brings the command 
2014 up 
2015 to the same level as the rest of the disassembler. Adds one new file, 
2016 dmdeferred.c, which is existing code that is now common with the main 
2017 disassembler and the debugger disassemble command. ACPICA MZ 978.
2018
2019 iASL: Moved the parser entry prototype to avoid a duplicate declaration. 
2020 Newer versions of Bison emit this prototype, so moved the prototype out 
2021 of 
2022 the iASL header to where it is actually used in order to avoid a 
2023 duplicate 
2024 declaration.
2025
2026 iASL/Tools: Standardized use of the stream I/O functions:
2027   1) Ensure check for I/O error after every fopen/fread/fwrite
2028   2) Ensure proper order of size/count arguments for fread/fwrite
2029   3) Use test of (Actual != Requested) after all fwrite, and most fread
2030   4) Standardize I/O error messages
2031 Improves reliability and maintainability of the code. Bob Moore, Lv 
2032 Zheng. 
2033 ACPICA BZ 981.
2034
2035 Disassembler: Prevent duplicate External() statements. During generation 
2036 of external statements, detect similar pathnames that are actually 
2037 duplicates such as these:
2038   External (\ABCD)
2039   External (ABCD)
2040 Remove all leading '\' characters from pathnames during the external 
2041 statement generation so that duplicates will be detected and tossed. 
2042 ACPICA BZ 985.
2043
2044 Tools: Replace low-level I/O with stream I/O functions. Replace 
2045 open/read/write/close with the stream I/O equivalents 
2046 fopen/fread/fwrite/fclose for portability and performance. Lv Zheng, Bob 
2047 Moore.
2048
2049 AcpiBin: Fix for the dump-to-hex function. Now correctly output the table 
2050 name header so that AcpiXtract recognizes the output file/table.
2051
2052 iASL: Remove obsolete -2 option flag. Originally intended to force the 
2053 compiler/disassembler into an ACPI 2.0 mode, this was never implemented 
2054 and the entire concept is now obsolete.
2055
2056 ----------------------------------------
2057 18 October 2012. Summary of changes for version 20121018:
2058
2059
2060 1) ACPICA Kernel-resident Subsystem:
2061
2062 Updated support for the ACPI 5.0 MPST table. Fixes some problems 
2063 introduced by late changes to the table as it was added to the ACPI 5.0 
2064 specification. Includes header, disassembler, and data table compiler 
2065 support as well as a new version of the MPST template.
2066
2067 AcpiGetObjectInfo: Enhanced the device object support to include the ACPI 
2068 5.0 _SUB method. Now calls _SUB in addition to the other PNP-related ID 
2069 methods: _HID, _CID, and _UID.
2070
2071 Changed ACPI_DEVICE_ID to ACPI_PNP_DEVICE_ID. Also changed 
2072 ACPI_DEVICE_ID_LIST to ACPI_PNP_DEVICE_ID_LIST. These changes prevent 
2073 name collisions on hosts that reserve the *_DEVICE_ID (or *DeviceId) 
2074 names for their various drivers. Affects the AcpiGetObjectInfo external 
2075 interface, and other internal interfaces as well.
2076
2077 Added and deployed a new macro for ACPI_NAME management: ACPI_MOVE_NAME. 
2078 This macro resolves to a simple 32-bit move of the 4-character ACPI_NAME 
2079 on machines that support non-aligned transfers. Optimizes for this case 
2080 rather than using a strncpy. With assistance from Zheng Lv.
2081
2082 Resource Manager: Small fix for buffer size calculation. Fixed a one byte 
2083 error in the output buffer calculation. Feng Tang. ACPICA BZ 849.
2084
2085 Added a new debug print message for AML mutex objects that are force-
2086 released. At control method termination, any currently acquired mutex 
2087 objects are force-released. Adds a new debug-only message for each one 
2088 that is released.
2089
2090 Audited/updated all ACPICA return macros and the function debug depth 
2091 counter: 1) Ensure that all functions that use the various TRACE macros 
2092 also use the appropriate ACPICA return macros. 2) Ensure that all normal 
2093 return statements surround the return expression (value) with parens to 
2094 ensure consistency across the ACPICA code base. Guan Chao, Tang Feng, 
2095 Zheng Lv, Bob Moore. ACPICA Bugzilla 972.
2096
2097 Global source code changes/maintenance: All extra lines at the start and 
2098 end of each source file have been removed for consistency. Also, within 
2099 comments, all new sentences start with a single space instead of a double 
2100 space, again for consistency across the code base.
2101
2102 Example Code and Data Size: These are the sizes for the OS-independent 
2103 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
2104 debug version of the code includes the debug output trace mechanism and 
2105 has a much larger code and data size.
2106
2107   Previous Release:
2108     Non-Debug Version:  93.7K Code, 25.3K Data, 119.0K Total
2109     Debug Version:     175.0K Code, 74.4K Data, 249.4K Total
2110   Current Release:
2111     Non-Debug Version:  93.9K Code, 25.2K Data, 119.1K Total
2112     Debug Version:     175.5K Code, 74.5K Data, 250.0K Total
2113
2114
2115 2) iASL Compiler/Disassembler and Tools:
2116
2117 AcpiExec: Improved the algorithm used for memory leak/corruption 
2118 detection. Added some intelligence to the code that maintains the global 
2119 list of allocated memory. The list is now ordered by allocated memory 
2120 address, significantly improving performance. When running AcpiExec on 
2121 the ASLTS test suite, speed improvements of 3X to 5X are seen, depending 
2122 on the platform and/or the environment. Note, this performance 
2123 enhancement affects the AcpiExec utility only, not the kernel-resident 
2124 ACPICA code.
2125
2126 Enhanced error reporting for invalid AML opcodes and bad ACPI_NAMEs. For 
2127 the disassembler, dump the 48 bytes surrounding the invalid opcode. Fix 
2128 incorrect table offset reported for invalid opcodes. Report the original 
2129 32-bit value for bad ACPI_NAMEs (as well as the repaired name.)
2130
2131 Disassembler: Enhanced the -vt option to emit the binary table data in 
2132 hex format to assist with debugging.
2133
2134 Fixed a potential filename buffer overflow in osunixdir.c. Increased the 
2135 size of file structure. Colin Ian King.
2136
2137 ----------------------------------------
2138 13 September 2012. Summary of changes for version 20120913:
2139
2140
2141 1) ACPICA Kernel-resident Subsystem:
2142
2143 ACPI 5.0: Added two new notify types for the Hardware Error Notification 
2144 Structure within the Hardware Error Source Table (HEST) table -- CMCI(5) 
2145 and 
2146 MCE(6).
2147  
2148 Table Manager: Merged/removed duplicate code in the root table resize 
2149 functions. One function is external, the other is internal. Lv Zheng, 
2150 ACPICA 
2151 BZ 846.
2152
2153 Makefiles: Completely removed the obsolete "Linux" makefiles under 
2154 acpica/generate/linux. These makefiles are obsolete and have been 
2155 replaced 
2156 by 
2157 the generic unix makefiles under acpica/generate/unix.
2158
2159 Makefiles: Ensure that binary files always copied properly. Minor rule 
2160 change 
2161 to ensure that the final binary output files are always copied up to the 
2162 appropriate binary directory (bin32 or bin64.)
2163
2164 Example Code and Data Size: These are the sizes for the OS-independent 
2165 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
2166 debug 
2167 version of the code includes the debug output trace mechanism and has a 
2168 much 
2169 larger code and data size.
2170
2171   Previous Release:
2172     Non-Debug Version:  93.8K Code, 25.3K Data, 119.1K Total
2173     Debug Version:     175.7K Code, 74.8K Data, 250.5K Total
2174   Current Release:
2175     Non-Debug Version:  93.7K Code, 25.3K Data, 119.0K Total
2176     Debug Version:     175.0K Code, 74.4K Data, 249.4K Total
2177
2178
2179 2) iASL Compiler/Disassembler and Tools:
2180
2181 Disassembler: Fixed a possible fault during the disassembly of resource 
2182 descriptors when a second parse is required because of the invocation of 
2183 external control methods within the table. With assistance from 
2184 adq@lidskialf.net. ACPICA BZ 976.
2185
2186 iASL: Fixed a namepath optimization problem. An error can occur if the 
2187 parse 
2188 node that contains the namepath to be optimized does not have a parent 
2189 node 
2190 that is a named object. This change fixes the problem.
2191
2192 iASL: Fixed a regression where the AML file is not deleted on errors. The 
2193 AML 
2194 output file should be deleted if there are any errors during the 
2195 compiler. 
2196 The 
2197 only exception is if the -f (force output) option is used. ACPICA BZ 974.
2198
2199 iASL: Added a feature to automatically increase internal line buffer 
2200 sizes. 
2201 Via realloc(), automatically increase the internal line buffer sizes as 
2202 necessary to support very long source code lines. The current version of 
2203 the 
2204 preprocessor requires a buffer long enough to contain full source code 
2205 lines. 
2206 This change increases the line buffer(s) if the input lines go beyond the 
2207 current buffer size. This eliminates errors that occurred when a source 
2208 code 
2209 line was longer than the buffer.
2210
2211 iASL: Fixed a problem with constant folding in method declarations. The 
2212 SyncLevel term is a ByteConstExpr, and incorrect code would be generated 
2213 if a 
2214 Type3 opcode was used.
2215
2216 Debugger: Improved command help support. For incorrect argument count, 
2217 display 
2218 full help for the command. For help command itself, allow an argument to 
2219 specify a command.
2220
2221 Test Suites: Several bug fixes for the ASLTS suite reduces the number of 
2222 errors during execution of the suite. Guan Chao.
2223
2224 ----------------------------------------
2225 16 August 2012. Summary of changes for version 20120816:
2226
2227
2228 1) ACPICA Kernel-resident Subsystem:
2229
2230 Removed all use of the deprecated _GTS and _BFS predefined methods. The 
2231 _GTS 
2232 (Going To Sleep) and _BFS (Back From Sleep) methods are essentially 
2233 deprecated and will probably be removed from the ACPI specification. 
2234 Windows 
2235 does not invoke them, and reportedly never will. The final nail in the 
2236 coffin 
2237 is that the ACPI specification states that these methods must be run with 
2238 interrupts off, which is not going to happen in a kernel interpreter. 
2239 Note: 
2240 Linux has removed all use of the methods also. It was discovered that 
2241 invoking these functions caused failures on some machines, probably 
2242 because 
2243 they were never tested since Windows does not call them. Affects two 
2244 external 
2245 interfaces, AcpiEnterSleepState and AcpiLeaveSleepStatePrep. Tang Feng. 
2246 ACPICA BZ 969.
2247
2248 Implemented support for complex bit-packed buffers returned from the _PLD 
2249 (Physical Location of Device) predefined method. Adds a new external 
2250 interface, AcpiDecodePldBuffer that parses the buffer into a more usable 
2251
2252 structure. Note: C Bitfields cannot be used for this type of predefined 
2253 structure since the memory layout of individual bitfields is not defined 
2254 by 
2255 the C language. In addition, there are endian concerns where a compiler 
2256 will 
2257 change the bitfield ordering based on the machine type. The new ACPICA 
2258 interface eliminates these issues, and should be called after _PLD is 
2259 executed. ACPICA BZ 954.
2260
2261 Implemented a change to allow a scope change to root (via "Scope (\)") 
2262 during 
2263 execution of module-level ASL code (code that is executed at table load 
2264 time.) Lin Ming.
2265
2266 Added the Windows8/Server2012 string for the _OSI method. This change 
2267 adds 
2268
2269 new _OSI string, "Windows 2012" for both Windows 8 and Windows Server 
2270 2012.
2271
2272 Added header support for the new ACPI tables DBG2 (Debug Port Table Type 
2273 2) 
2274 and CSRT (Core System Resource Table).
2275
2276 Added struct header support for the _FDE, _GRT, _GTM, and _SRT predefined 
2277 names. This simplifies access to the buffers returned by these predefined 
2278 names. Adds a new file, include/acbuffer.h. ACPICA BZ 956.
2279
2280 GPE support: Removed an extraneous parameter from the various low-level 
2281 internal GPE functions. Tang Feng.
2282
2283 Removed the linux makefiles from the unix packages. The generate/linux 
2284 makefiles are obsolete and have been removed from the unix tarball 
2285 release 
2286 packages. The replacement makefiles are under generate/unix, and there is 
2287
2288 top-level makefile under the main acpica directory. ACPICA BZ 967, 912.
2289
2290 Updates for Unix makefiles:
2291 1) Add -D_FORTIFY_SOURCE=2 for gcc generation. Arjan van de Ven.
2292 2) Update linker flags (move to end of command line) for AcpiExec 
2293 utility. 
2294 Guan Chao.
2295
2296 Split ACPICA initialization functions to new file, utxfinit.c. Split from 
2297 utxface.c to improve modularity and reduce file size.
2298
2299 Example Code and Data Size: These are the sizes for the OS-independent 
2300 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
2301 debug version of the code includes the debug output trace mechanism and 
2302 has a 
2303 much larger code and data size.
2304
2305   Previous Release:
2306     Non-Debug Version:  93.5K Code, 25.3K Data, 118.8K Total
2307     Debug Version:     173.7K Code, 74.0K Data, 247.7K Total
2308   Current Release:
2309     Non-Debug Version:  93.8K Code, 25.3K Data, 119.1K Total
2310     Debug Version:     175.7K Code, 74.8K Data, 250.5K Total
2311
2312
2313 2) iASL Compiler/Disassembler and Tools:
2314
2315 iASL: Fixed a problem with constant folding for fixed-length constant 
2316 expressions. The constant-folding code was not being invoked for constant 
2317 expressions that allow the use of type 3/4/5 opcodes to generate 
2318 constants 
2319 for expressions such as ByteConstExpr, WordConstExpr, etc. This could 
2320 result 
2321 in the generation of invalid AML bytecode. ACPICA BZ 970.
2322
2323 iASL: Fixed a generation issue on newer versions of Bison. Newer versions 
2324 apparently automatically emit some of the necessary externals. This 
2325 change 
2326 handles these versions in order to eliminate generation warnings.
2327
2328 Disassembler: Added support to decode the DBG2 and CSRT ACPI tables.
2329
2330 Disassembler: Add support to decode _PLD buffers. The decoded buffer 
2331 appears 
2332 within comments in the output file.
2333
2334 Debugger: Fixed a regression with the "Threads" command where 
2335 AE_BAD_PARAMETER was always returned.
2336
2337 ----------------------------------------
2338 11 July 2012. Summary of changes for version 20120711:
2339
2340 1) ACPICA Kernel-resident Subsystem:
2341
2342 Fixed a possible fault in the return package object repair code. Fixes a 
2343 problem that can occur when a lone package object is wrapped with an 
2344 outer 
2345 package object in order to force conformance to the ACPI specification. 
2346 Can 
2347 affect these predefined names: _ALR, _MLS, _PSS, _TRT, _TSS, _PRT, _HPX, 
2348 _DLM, 
2349 _CSD, _PSD, _TSD.
2350
2351 Removed code to disable/enable bus master arbitration (ARB_DIS bit in the 
2352 PM2_CNT register) in the ACPICA sleep/wake interfaces. Management of the 
2353 ARB_DIS bit must be implemented in the host-dependent C3 processor power 
2354 state 
2355 support. Note, ARB_DIS is obsolete and only applies to older chipsets, 
2356 both 
2357 Intel and other vendors. (for Intel: ICH4-M and earlier)
2358
2359 This change removes the code to disable/enable bus master arbitration 
2360 during 
2361 suspend/resume. Use of the ARB_DIS bit in the optional PM2_CNT register 
2362 causes 
2363 resume problems on some machines. The change has been in use for over 
2364 seven 
2365 years within Linux.
2366
2367 Implemented two new external interfaces to support host-directed dynamic 
2368 ACPI 
2369 table load and unload. They are intended to simplify the host 
2370 implementation 
2371 of hot-plug support:
2372   AcpiLoadTable: Load an SSDT from a buffer into the namespace.
2373   AcpiUnloadParentTable: Unload an SSDT via a named object owned by the 
2374 table.
2375 See the ACPICA reference for additional details. Adds one new file, 
2376 components/tables/tbxfload.c
2377
2378 Implemented and deployed two new interfaces for errors and warnings that 
2379 are 
2380 known to be caused by BIOS/firmware issues:
2381   AcpiBiosError: Prints "ACPI Firmware Error" message.
2382   AcpiBiosWarning: Prints "ACPI Firmware Warning" message.
2383 Deployed these new interfaces in the ACPICA Table Manager code for ACPI 
2384 table 
2385 and FADT errors. Additional deployment to be completed as appropriate in 
2386 the 
2387 future. The associated conditional macros are ACPI_BIOS_ERROR and 
2388 ACPI_BIOS_WARNING. See the ACPICA reference for additional details. 
2389 ACPICA 
2390 BZ 
2391 843.
2392
2393 Implicit notify support: ensure that no memory allocation occurs within a 
2394 critical region. This fix moves a memory allocation outside of the time 
2395 that a 
2396 spinlock is held. Fixes issues on systems that do not allow this 
2397 behavior. 
2398 Jung-uk Kim.
2399
2400 Split exception code utilities and tables into a new file, 
2401 utilities/utexcep.c
2402
2403 Example Code and Data Size: These are the sizes for the OS-independent 
2404 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
2405 debug 
2406 version of the code includes the debug output trace mechanism and has a 
2407 much 
2408 larger code and data size.
2409
2410   Previous Release:
2411     Non-Debug Version:  93.1K Code, 25.1K Data, 118.2K Total
2412     Debug Version:     172.9K Code, 73.6K Data, 246.5K Total
2413   Current Release:
2414     Non-Debug Version:  93.5K Code, 25.3K Data, 118.8K Total
2415     Debug Version:     173.7K Code, 74.0K Data, 247.7K Total
2416
2417
2418 2) iASL Compiler/Disassembler and Tools:
2419
2420 iASL: Fixed a parser problem for hosts where EOF is defined as -1 instead 
2421 of 
2422 0. Jung-uk Kim.
2423
2424 Debugger: Enhanced the "tables" command to emit additional information 
2425 about 
2426 the current set of ACPI tables, including the owner ID and flags decode.
2427
2428 Debugger: Reimplemented the "unload" command to use the new 
2429 AcpiUnloadParentTable external interface. This command was disable 
2430 previously 
2431 due to need for an unload interface.
2432
2433 AcpiHelp: Added a new option to decode ACPICA exception codes. The -e 
2434 option 
2435 will decode 16-bit hex status codes (ACPI_STATUS) to name strings.
2436
2437 ----------------------------------------
2438 20 June 2012. Summary of changes for version 20120620:
2439
2440
2441 1) ACPICA Kernel-resident Subsystem:
2442
2443 Implemented support to expand the "implicit notify" feature to allow 
2444 multiple 
2445 devices to be notified by a single GPE. This feature automatically 
2446 generates a 
2447 runtime device notification in the absence of a BIOS-provided GPE control 
2448 method (_Lxx/_Exx) or a host-installed handler for the GPE. Implicit 
2449 notify is 
2450 provided by ACPICA for Windows compatibility, and is a workaround for 
2451 BIOS 
2452 AML 
2453 code errors. See the description of the AcpiSetupGpeForWake interface in 
2454 the 
2455 APCICA reference. Bob Moore, Rafael Wysocki. ACPICA BZ 918.
2456
2457 Changed some comments and internal function names to simplify and ensure 
2458 correctness of the Linux code translation. No functional changes.
2459
2460 Example Code and Data Size: These are the sizes for the OS-independent 
2461 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
2462 debug 
2463 version of the code includes the debug output trace mechanism and has a 
2464 much 
2465 larger code and data size.
2466
2467   Previous Release:
2468     Non-Debug Version:  93.0K Code, 25.1K Data, 118.1K Total
2469     Debug Version:     172.7K Code, 73.6K Data, 246.3K Total
2470   Current Release:
2471     Non-Debug Version:  93.1K Code, 25.1K Data, 118.2K Total
2472     Debug Version:     172.9K Code, 73.6K Data, 246.5K Total
2473
2474
2475 2) iASL Compiler/Disassembler and Tools:
2476
2477 Disassembler: Added support to emit short, commented descriptions for the 
2478 ACPI 
2479 predefined names in order to improve the readability of the disassembled 
2480 output. ACPICA BZ 959. Changes include:
2481   1) Emit descriptions for all standard predefined names (_INI, _STA, 
2482 _PRW, 
2483 etc.)
2484   2) Emit generic descriptions for the special names (_Exx, _Qxx, etc.)
2485   3) Emit descriptions for the resource descriptor names (_MIN, _LEN, 
2486 etc.)
2487
2488 AcpiSrc: Fixed several long-standing Linux code translation issues. 
2489 Argument 
2490 descriptions in function headers are now translated properly to lower 
2491 case 
2492 and 
2493 underscores. ACPICA BZ 961. Also fixes translation problems such as 
2494 these: 
2495 (old -> new)
2496   i_aSL -> iASL
2497   00-7_f -> 00-7F
2498   16_k -> 16K
2499   local_fADT -> local_FADT
2500   execute_oSI -> execute_OSI
2501
2502 iASL: Fixed a problem where null bytes were inadvertently emitted into 
2503 some 
2504 listing files.
2505
2506 iASL: Added the existing debug options to the standard help screen. There 
2507 are 
2508 no longer two different help screens. ACPICA BZ 957.
2509
2510 AcpiHelp: Fixed some typos in the various predefined name descriptions. 
2511 Also 
2512 expand some of the descriptions where appropriate.
2513
2514 iASL: Fixed the -ot option (display compile times/statistics). Was not 
2515 working 
2516 properly for standard output; only worked for the debug file case.
2517
2518 ----------------------------------------
2519 18 May 2012. Summary of changes for version 20120518:
2520
2521
2522 1) ACPICA Core Subsystem:
2523
2524 Added a new OSL interface, AcpiOsWaitEventsComplete. This interface is 
2525 defined 
2526 to block until asynchronous events such as notifies and GPEs have 
2527 completed. 
2528 Within ACPICA, it is only called before a notify or GPE handler is 
2529 removed/uninstalled. It also may be useful for the host OS within related 
2530 drivers such as the Embedded Controller driver. See the ACPICA reference 
2531 for 
2532 additional information. ACPICA BZ 868.
2533
2534 ACPI Tables: Added a new error message for a possible overflow failure 
2535 during 
2536 the conversion of FADT 32-bit legacy register addresses to internal 
2537 common 
2538 64-
2539 bit GAS structure representation. The GAS has a one-byte "bit length" 
2540 field, 
2541 thus limiting the register length to 255 bits. ACPICA BZ 953.
2542
2543 Example Code and Data Size: These are the sizes for the OS-independent 
2544 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
2545 debug 
2546 version of the code includes the debug output trace mechanism and has a 
2547 much 
2548 larger code and data size.
2549
2550   Previous Release:
2551     Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
2552     Debug Version:     172.6K Code, 73.4K Data, 246.0K Total
2553   Current Release:
2554     Non-Debug Version:  93.0K Code, 25.1K Data, 118.1K Total
2555     Debug Version:     172.7K Code, 73.6K Data, 246.3K Total
2556
2557
2558 2) iASL Compiler/Disassembler and Tools:
2559
2560 iASL: Added the ACPI 5.0 "PCC" keyword for use in the Register() ASL 
2561 macro. 
2562 This keyword was added late in the ACPI 5.0 release cycle and was not 
2563 implemented until now.
2564
2565 Disassembler: Added support for Operation Region externals. Adds missing 
2566 support for operation regions that are defined in another table, and 
2567 referenced locally via a Field or BankField ASL operator. Now generates 
2568 the 
2569 correct External statement.
2570
2571 Disassembler: Several additional fixes for the External() statement 
2572 generation 
2573 related to some ASL operators. Also, order the External() statements 
2574 alphabetically in the disassembler output. Fixes the External() 
2575 generation 
2576 for 
2577 the Create* field, Alias, and Scope operators:
2578  1) Create* buffer field operators - fix type mismatch warning on 
2579 disassembly
2580  2) Alias - implement missing External support
2581  3) Scope - fix to make sure all necessary externals are emitted.
2582
2583 iASL: Improved pathname support. For include files, merge the prefix 
2584 pathname 
2585 with the file pathname and eliminate unnecessary components. Convert 
2586 backslashes in all pathnames to forward slashes, for readability. Include 
2587 file 
2588 pathname changes affect both #include and Include() type operators.
2589
2590 iASL/DTC/Preprocessor: Gracefully handle early EOF. Handle an EOF at the 
2591 end 
2592 of a valid line by inserting a newline and then returning the EOF during 
2593 the 
2594 next call to GetNextLine. Prevents the line from being ignored due to EOF 
2595 condition.
2596
2597 iASL: Implemented some changes to enhance the IDE support (-vi option.) 
2598 Error 
2599 and Warning messages are now correctly recognized for both the source 
2600 code 
2601 browser and the global error and warning counts.
2602
2603 ----------------------------------------
2604 20 April 2012. Summary of changes for version 20120420:
2605
2606
2607 1) ACPICA Core Subsystem:
2608
2609 Implemented support for multiple notify handlers. This change adds 
2610 support 
2611 to 
2612 allow multiple system and device notify handlers on Device, Thermal Zone, 
2613 and 
2614 Processor objects. This can simplify the host OS notification 
2615 implementation. 
2616 Also re-worked and restructured the entire notify support code to 
2617 simplify 
2618 handler installation, handler removal, notify event queuing, and notify 
2619 dispatch to handler(s). Note: there can still only be two global notify 
2620 handlers - one for system notifies and one for device notifies. There are 
2621 no 
2622 changes to the existing handler install/remove interfaces. Lin Ming, Bob 
2623 Moore, Rafael Wysocki.
2624
2625 Fixed a regression in the package repair code where the object reference 
2626 count was calculated incorrectly. Regression was introduced in the commit 
2627 "Support to add Package wrappers".
2628
2629 Fixed a couple possible memory leaks in the AML parser, in the error 
2630 recovery 
2631 path. Jesper Juhl, Lin Ming.
2632
2633 Example Code and Data Size: These are the sizes for the OS-independent 
2634 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
2635 debug version of the code includes the debug output trace mechanism and 
2636 has a 
2637 much larger code and data size.
2638
2639   Previous Release:
2640     Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
2641     Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
2642   Current Release:
2643     Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
2644     Debug Version:     172.6K Code, 73.4K Data, 246.0K Total
2645
2646
2647 2) iASL Compiler/Disassembler and Tools:
2648
2649 iASL: Fixed a problem with the resource descriptor support where the 
2650 length 
2651 of the StartDependentFn and StartDependentFnNoPrio descriptors were not 
2652 included in cumulative descriptor offset, resulting in incorrect values 
2653 for 
2654 resource tags within resource descriptors appearing after a 
2655 StartDependent* 
2656 descriptor. Reported by Petr Vandrovec. ACPICA BZ 949.
2657
2658 iASL and Preprocessor: Implemented full support for the #line directive 
2659 to 
2660 correctly track original source file line numbers through the .i 
2661 preprocessor 
2662 output file - for error and warning messages.
2663
2664 iASL: Expand the allowable byte constants for address space IDs. 
2665 Previously, 
2666 the allowable range was 0x80-0xFF (user-defined spaces), now the range is 
2667 0x0A-0xFF to allow for custom and new IDs without changing the compiler.
2668
2669 iASL: Add option to treat all warnings as errors (-we). ACPICA BZ 948.
2670
2671 iASL: Add option to completely disable the preprocessor (-Pn).
2672
2673 iASL: Now emit all error/warning messages to standard error (stderr) by 
2674 default (instead of the previous stdout).
2675
2676 ASL Test Suite (ASLTS): Reduce iASL warnings due to use of Switch(). 
2677 Update 
2678 for resource descriptor offset fix above. Update/cleanup error output 
2679 routines. Enable and send iASL errors/warnings to an error logfile 
2680 (error.txt). Send all other iASL output to a logfile (compiler.txt). 
2681 Fixed 
2682 several extraneous "unrecognized operator" messages.
2683
2684 ----------------------------------------
2685 20 March 2012. Summary of changes for version 20120320:
2686
2687
2688 1) ACPICA Core Subsystem:
2689
2690 Enhanced the sleep/wake interfaces to optionally execute the _GTS method 
2691 (Going To Sleep) and the _BFS method (Back From Sleep). Windows 
2692 apparently 
2693 does not execute these methods, and therefore these methods are often 
2694 untested. It has been seen on some systems where the execution of these 
2695 methods causes errors and also prevents the machine from entering S5. It 
2696 is 
2697 therefore suggested that host operating systems do not execute these 
2698 methods 
2699 by default. In the future, perhaps these methods can be optionally 
2700 executed 
2701 based on the age of the system and/or what is the newest version of 
2702 Windows 
2703 that the BIOS asks for via _OSI. Changed interfaces: AcpiEnterSleepState 
2704 and 
2705 AcpileaveSleepStatePrep. See the ACPICA reference and Linux BZ 13041. Lin 
2706 Ming.
2707
2708 Fixed a problem where the length of the local/common FADT was set too 
2709 early. 
2710 The local FADT table length cannot be set to the common length until the 
2711 original length has been examined. There is code that checks the table 
2712 length 
2713 and sets various fields appropriately. This can affect older machines 
2714 with 
2715 early FADT versions. For example, this can cause inadvertent writes to 
2716 the 
2717 CST_CNT register. Julian Anastasov.
2718
2719 Fixed a mapping issue related to a physical table override. Use the 
2720 deferred 
2721 mapping mechanism for tables loaded via the physical override OSL 
2722 interface. 
2723 This allows for early mapping before the virtual memory manager is 
2724 available. 
2725 Thomas Renninger, Bob Moore.
2726
2727 Enhanced the automatic return-object repair code: Repair a common problem 
2728 with 
2729 predefined methods that are defined to return a variable-length Package 
2730 of 
2731 sub-objects. If there is only one sub-object, some BIOS ASL code 
2732 mistakenly 
2733 simply returns the single object instead of a Package with one sub-
2734 object. 
2735 This new support will repair this error by wrapping a Package object 
2736 around 
2737 the original object, creating the correct and expected Package with one 
2738 sub-
2739 object. Names that can be repaired in this manner include: _ALR, _CSD, 
2740 _HPX, 
2741 _MLS, _PLD, _PRT, _PSS, _TRT, _TSS, _BCL, _DOD, _FIX, and _Sx. ACPICA BZ 
2742 939.
2743
2744 Changed the exception code returned for invalid ACPI paths passed as 
2745 parameters to external interfaces such as AcpiEvaluateObject. Was 
2746 AE_BAD_PARAMETER, now is the more sensible AE_BAD_PATHNAME.
2747
2748 Example Code and Data Size: These are the sizes for the OS-independent 
2749 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
2750 debug 
2751 version of the code includes the debug output trace mechanism and has a 
2752 much 
2753 larger code and data size.
2754
2755   Previous Release:
2756     Non-Debug Version:  93.0K Code, 25.0K Data, 118.0K Total
2757     Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
2758   Current Release:
2759     Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
2760     Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
2761
2762
2763 2) iASL Compiler/Disassembler and Tools:
2764
2765 iASL: Added the infrastructure and initial implementation of a integrated 
2766 C-
2767 like preprocessor. This will simplify BIOS development process by 
2768 eliminating 
2769 the need for a separate preprocessing step during builds. On Windows, it 
2770 also 
2771 eliminates the need to install a separate C compiler. ACPICA BZ 761. Some 
2772 features including full #define() macro support are still under 
2773 development. 
2774 These preprocessor directives are supported:
2775     #define
2776     #elif
2777     #else
2778     #endif
2779     #error
2780     #if
2781     #ifdef
2782     #ifndef
2783     #include
2784     #pragma message
2785     #undef
2786     #warning
2787 In addition, these new command line options are supported:
2788     -D <symbol> Define symbol for preprocessor use
2789     -li         Create preprocessed output file (*.i)
2790     -P          Preprocess only and create preprocessor output file (*.i)
2791
2792 Table Compiler: Fixed a problem where the equals operator within an 
2793 expression 
2794 did not work properly.
2795
2796 Updated iASL to use the current versions of Bison/Flex. Updated the 
2797 Windows 
2798 project file to invoke these tools from the standard location. ACPICA BZ 
2799 904. 
2800 Versions supported:
2801     Flex for Windows:  V2.5.4
2802     Bison for Windows: V2.4.1
2803
2804 ----------------------------------------
2805 15 February 2012. Summary of changes for version 20120215:
2806
2807
2808 1) ACPICA Core Subsystem:
2809
2810 There have been some major changes to the sleep/wake support code, as 
2811 described below (a - e).
2812
2813 a) The AcpiLeaveSleepState has been split into two interfaces, similar to 
2814 AcpiEnterSleepStatePrep and AcpiEnterSleepState. The new interface is 
2815 AcpiLeaveSleepStatePrep. This allows the host to perform actions between 
2816 the 
2817 time the _BFS method is called and the _WAK method is called. NOTE: all 
2818 hosts 
2819 must update their wake/resume code or else sleep/wake will not work 
2820 properly. 
2821 Rafael Wysocki.
2822
2823 b) In AcpiLeaveSleepState, now enable all runtime GPEs before calling the 
2824 _WAK 
2825 method. Some machines require that the GPEs are enabled before the _WAK 
2826 method 
2827 is executed. Thomas Renninger.
2828
2829 c) In AcpiLeaveSleepState, now always clear the WAK_STS (wake status) 
2830 bit. 
2831 Some BIOS code assumes that WAK_STS will be cleared on resume and use it 
2832 to 
2833 determine whether the system is rebooting or resuming. Matthew Garrett.
2834
2835 d) Move the invocations of _GTS (Going To Sleep) and _BFS (Back From 
2836 Sleep) to 
2837 match the ACPI specification requirement. Rafael Wysocki.
2838
2839 e) Implemented full support for the ACPI 5.0 SleepStatus and SleepControl 
2840 registers within the V5 FADT. This support adds two new files: 
2841 hardware/hwesleep.c implements the support for the new registers. Moved 
2842 all 
2843 sleep/wake external interfaces to hardware/hwxfsleep.c.
2844
2845
2846 Added a new OSL interface for ACPI table overrides, 
2847 AcpiOsPhysicalTableOverride. This interface allows the host to override a 
2848 table via a physical address, instead of the logical address required by 
2849 AcpiOsTableOverride. This simplifies the host implementation. Initial 
2850 implementation by Thomas Renninger. The ACPICA implementation creates a 
2851 single 
2852 shared function for table overrides that attempts both a logical and a 
2853 physical override.
2854
2855 Expanded the OSL memory read/write interfaces to 64-bit data 
2856 (AcpiOsReadMemory, AcpiOsWriteMemory.) This enables full 64-bit memory 
2857 transfer support for GAS register structures passed to AcpiRead and 
2858 AcpiWrite.
2859
2860 Implemented the ACPI_REDUCED_HARDWARE option to allow the creation of a 
2861 custom 
2862 build of ACPICA that supports only the ACPI 5.0 reduced hardware (SoC) 
2863 model. 
2864 See the ACPICA reference for details. ACPICA BZ 942. This option removes 
2865 about 
2866 10% of the code and 5% of the static data, and the following hardware 
2867 ACPI 
2868 features become unavailable:
2869     PM Event and Control registers
2870     SCI interrupt (and handler)
2871     Fixed Events
2872     General Purpose Events (GPEs)
2873     Global Lock
2874     ACPI PM timer
2875     FACS table (Waking vectors and Global Lock)
2876
2877 Updated the unix tarball directory structure to match the ACPICA git 
2878 source 
2879 tree. This ensures that the generic unix makefiles work properly (in 
2880 generate/unix).  Also updated the Linux makefiles to match. ACPICA BZ 
2881 867.
2882
2883 Updated the return value of the _REV predefined method to integer value 5 
2884 to 
2885 reflect ACPI 5.0 support.
2886
2887 Moved the external ACPI PM timer interface prototypes to the public 
2888 acpixf.h 
2889 file where they belong.
2890
2891 Example Code and Data Size: These are the sizes for the OS-independent 
2892 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
2893 debug 
2894 version of the code includes the debug output trace mechanism and has a 
2895 much 
2896 larger code and data size.
2897
2898   Previous Release:
2899     Non-Debug Version:  92.8K Code, 24.9K Data, 117.7K Total
2900     Debug Version:     171.7K Code, 72.9K Data, 244.5K Total
2901   Current Release:
2902     Non-Debug Version:  93.0K Code, 25.0K Data, 118.0K Total
2903     Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
2904
2905
2906 2) iASL Compiler/Disassembler and Tools:
2907
2908 Disassembler: Fixed a problem with the new ACPI 5.0 serial resource 
2909 descriptors (I2C, SPI, UART) where the resource produce/consumer bit was 
2910 incorrectly displayed.
2911
2912 AcpiHelp: Add display of ACPI/PNP device IDs that are defined in the ACPI 
2913 specification.
2914
2915 ----------------------------------------
2916 11 January 2012. Summary of changes for version 20120111:
2917
2918
2919 1) ACPICA Core Subsystem:
2920
2921 Implemented a new mechanism to allow host device drivers to check for 
2922 address 
2923 range conflicts with ACPI Operation Regions. Both SystemMemory and 
2924 SystemIO 
2925 address spaces are supported. A new external interface, 
2926 AcpiCheckAddressRange, 
2927 allows drivers to check an address range against the ACPI namespace. See 
2928 the 
2929 ACPICA reference for additional details. Adds one new file, 
2930 utilities/utaddress.c. Lin Ming, Bob Moore.
2931
2932 Fixed several issues with the ACPI 5.0 FADT support: Add the sleep 
2933 Control 
2934 and 
2935 Status registers, update the ACPI 5.0 flags, and update internal data 
2936 structures to handle an FADT larger than 256 bytes. The size of the ACPI 
2937 5.0 
2938 FADT is 268 bytes.
2939
2940 Updated all ACPICA copyrights and signons to 2012. Added the 2012 
2941 copyright to 
2942 all module headers and signons, including the standard Linux header. This 
2943 affects virtually every file in the ACPICA core subsystem, iASL compiler, 
2944 and 
2945 all ACPICA utilities.
2946
2947 Example Code and Data Size: These are the sizes for the OS-independent 
2948 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
2949 debug 
2950 version of the code includes the debug output trace mechanism and has a 
2951 much 
2952 larger code and data size.
2953
2954   Previous Release:
2955     Non-Debug Version:  92.3K Code, 24.9K Data, 117.2K Total
2956     Debug Version:     170.8K Code, 72.6K Data, 243.4K Total
2957   Current Release:
2958     Non-Debug Version:  92.8K Code, 24.9K Data, 117.7K Total
2959     Debug Version:     171.7K Code, 72.9K Data, 244.5K Total
2960
2961
2962 2) iASL Compiler/Disassembler and Tools:
2963
2964 Disassembler: fixed a problem with the automatic resource tag generation 
2965 support. Fixes a problem where the resource tags are inadvertently not 
2966 constructed if the table being disassembled contains external references 
2967 to 
2968 control methods. Moved the actual construction of the tags to after the 
2969 final 
2970 namespace is constructed (after 2nd parse is invoked due to external 
2971 control 
2972 method references.) ACPICA BZ 941.
2973
2974 Table Compiler: Make all "generic" operators caseless. These are the 
2975 operators 
2976 like UINT8, String, etc. Making these caseless improves ease-of-use. 
2977 ACPICA BZ 
2978 934.
2979
2980 ----------------------------------------
2981 23 November 2011. Summary of changes for version 20111123:
2982
2983 0) ACPI 5.0 Support:
2984
2985 This release contains full support for the ACPI 5.0 specification, as 
2986 summarized below.
2987
2988 Reduced Hardware Support:
2989 -------------------------
2990
2991 This support allows for ACPI systems without the usual ACPI hardware. 
2992 This 
2993 support is enabled by a flag in the revision 5 FADT. If it is set, ACPICA 
2994 will 
2995 not attempt to initialize or use any of the usual ACPI hardware. Note, 
2996 when 
2997 this flag is set, all of the following ACPI hardware is assumed to be not 
2998 present and is not initialized or accessed:
2999
3000     General Purpose Events (GPEs)
3001     Fixed Events (PM1a/PM1b and PM Control)
3002     Power Management Timer and Console Buttons (power/sleep)
3003     Real-time Clock Alarm
3004     Global Lock
3005     System Control Interrupt (SCI)
3006     The FACS is assumed to be non-existent
3007
3008 ACPI Tables:
3009 ------------
3010
3011 All new tables and updates to existing tables are fully supported in the 
3012 ACPICA headers (for use by device drivers), the disassembler, and the 
3013 iASL 
3014 Data Table Compiler. ACPI 5.0 defines these new tables:
3015
3016     BGRT        /* Boot Graphics Resource Table */
3017     DRTM        /* Dynamic Root of Trust for Measurement table */
3018     FPDT        /* Firmware Performance Data Table */
3019     GTDT        /* Generic Timer Description Table */
3020     MPST        /* Memory Power State Table */
3021     PCCT        /* Platform Communications Channel Table */
3022     PMTT        /* Platform Memory Topology Table */
3023     RASF        /* RAS Feature table */
3024
3025 Operation Regions/SpaceIDs:
3026 ---------------------------
3027
3028 All new operation regions are fully supported by the iASL compiler, the 
3029 disassembler, and the ACPICA runtime code (for dispatch to region 
3030 handlers.) 
3031 The new operation region Space IDs are:
3032
3033     GeneralPurposeIo
3034     GenericSerialBus
3035
3036 Resource Descriptors:
3037 ---------------------
3038
3039 All new ASL resource descriptors are fully supported by the iASL 
3040 compiler, 
3041 the 
3042 ASL/AML disassembler, and the ACPICA runtime Resource Manager code 
3043 (including 
3044 all new predefined resource tags). New descriptors are:
3045
3046     FixedDma
3047     GpioIo
3048     GpioInt
3049     I2cSerialBus
3050     SpiSerialBus
3051     UartSerialBus
3052
3053 ASL/AML Operators, New and Modified:
3054 ------------------------------------
3055
3056 One new operator is added, the Connection operator, which is used to 
3057 associate 
3058 a GeneralPurposeIo or GenericSerialBus resource descriptor with 
3059 individual 
3060 field objects within an operation region. Several new protocols are 
3061 associated 
3062 with the AccessAs operator. All are fully supported by the iASL compiler, 
3063 disassembler, and runtime ACPICA AML interpreter:
3064
3065     Connection                      // Declare Field Connection 
3066 attributes
3067     AccessAs: AttribBytes (n)           // Read/Write N-Bytes Protocol
3068     AccessAs: AttribRawBytes (n)        // Raw Read/Write N-Bytes 
3069 Protocol
3070     AccessAs: AttribRawProcessBytes (n) // Raw Process Call Protocol
3071     RawDataBuffer                       // Data type for Vendor Data 
3072 fields
3073
3074 Predefined ASL/AML Objects:
3075 ---------------------------
3076
3077 All new predefined objects/control-methods are supported by the iASL 
3078 compiler 
3079 and the ACPICA runtime validation/repair (arguments and return values.) 
3080 New 
3081 predefined names include the following:
3082
3083 Standard Predefined Names (Objects or Control Methods):
3084     _AEI, _CLS, _CPC, _CWS, _DEP,
3085     _DLM, _EVT, _GCP, _CRT, _GWS,
3086     _HRV, _PRE, _PSE, _SRT, _SUB.
3087
3088 Resource Tags (Names used to access individual fields within resource 
3089 descriptors):
3090     _DBT, _DPL, _DRS, _END, _FLC,
3091     _IOR, _LIN, _MOD, _PAR, _PHA,
3092     _PIN, _PPI, _POL, _RXL, _SLV,
3093     _SPE, _STB, _TXL, _VEN.
3094
3095 ACPICA External Interfaces:
3096 ---------------------------
3097
3098 Several new interfaces have been defined for use by ACPI-related device 
3099 drivers and other host OS services:
3100
3101 AcpiAcquireMutex and AcpiReleaseMutex: These interfaces allow the host OS 
3102 to 
3103 acquire and release AML mutexes that are defined in the DSDT/SSDT tables 
3104 provided by the BIOS. They are intended to be used in conjunction with 
3105 the 
3106 ACPI 5.0 _DLM (Device Lock Method) in order to provide transaction-level 
3107 mutual exclusion with the AML code/interpreter.
3108
3109 AcpiGetEventResources: Returns the (formatted) resource descriptors as 
3110 defined 
3111 by the ACPI 5.0 _AEI object (ACPI Event Information).  This object 
3112 provides 
3113 resource descriptors associated with hardware-reduced platform events, 
3114 similar 
3115 to the AcpiGetCurrentResources interface.
3116
3117 Operation Region Handlers: For General Purpose IO and Generic Serial Bus 
3118 operation regions, information about the Connection() object and any 
3119 optional 
3120 length information is passed to the region handler within the Context 
3121 parameter.
3122
3123 AcpiBufferToResource: This interface converts a raw AML buffer containing 
3124
3125 resource template or resource descriptor to the ACPI_RESOURCE internal 
3126 format 
3127 suitable for use by device drivers. Can be used by an operation region 
3128 handler 
3129 to convert the Connection() buffer object into a ACPI_RESOURCE.
3130
3131 Miscellaneous/Tools/TestSuites: 
3132 -------------------------------
3133
3134 Support for extended _HID names (Four alpha characters instead of three).
3135 Support for ACPI 5.0 features in the AcpiExec and AcpiHelp utilities.
3136 Support for ACPI 5.0 features in the ASLTS test suite.
3137 Fully updated documentation (ACPICA and iASL reference documents.)
3138
3139 ACPI Table Definition Language:
3140 -------------------------------
3141
3142 Support for this language was implemented and released as a subsystem of 
3143 the 
3144 iASL compiler in 2010. (See the iASL compiler User Guide.)
3145
3146
3147 Non-ACPI 5.0 changes for this release:
3148 --------------------------------------
3149
3150 1) ACPICA Core Subsystem:
3151
3152 Fix a problem with operation region declarations where a failure can 
3153 occur 
3154 if 
3155 the region name and an argument that evaluates to an object (such as the 
3156 region address) are in different namespace scopes. Lin Ming, ACPICA BZ 
3157 937.
3158
3159 Do not abort an ACPI table load if an invalid space ID is found within. 
3160 This 
3161 will be caught later if the offending method is executed. ACPICA BZ 925.
3162
3163 Fixed an issue with the FFixedHW space ID where the ID was not always 
3164 recognized properly (Both ACPICA and iASL). ACPICA BZ 926.
3165
3166 Fixed a problem with the 32-bit generation of the unix-specific OSL 
3167 (osunixxf.c). Lin Ming, ACPICA BZ 936.
3168
3169 Several changes made to enable generation with the GCC 4.6 compiler. 
3170 ACPICA BZ 
3171 935.
3172
3173 New error messages: Unsupported I/O requests (not 8/16/32 bit), and 
3174 Index/Bank 
3175 field registers out-of-range.
3176
3177 2) iASL Compiler/Disassembler and Tools:
3178
3179 iASL: Implemented the __PATH__ operator, which returns the full pathname 
3180 of 
3181 the current source file.
3182
3183 AcpiHelp: Automatically display expanded keyword information for all ASL 
3184 operators.
3185
3186 Debugger: Add "Template" command to disassemble/dump resource template 
3187 buffers.
3188
3189 Added a new master script to generate and execute the ASLTS test suite. 
3190 Automatically handles 32- and 64-bit generation. See tests/aslts.sh
3191
3192 iASL: Fix problem with listing generation during processing of the 
3193 Switch() 
3194 operator where AML listing was disabled until the entire Switch block was 
3195 completed.
3196
3197 iASL: Improve support for semicolon statement terminators. Fix "invalid 
3198 character" message for some cases when the semicolon is used. Semicolons 
3199 are 
3200 now allowed after every <Term> grammar element. ACPICA BZ 927.
3201
3202 iASL: Fixed some possible aliasing warnings during generation. ACPICA BZ 
3203 923.
3204
3205 Disassembler: Fix problem with disassembly of the DataTableRegion 
3206 operator 
3207 where an inadvertent "Unhandled deferred opcode" message could be 
3208 generated.
3209
3210 3) Example Code and Data Size
3211
3212 These are the sizes for the OS-independent acpica.lib produced by the 
3213 Microsoft Visual C++ 9.0 32-bit compiler. The debug version of the code 
3214 includes the debug output trace mechanism and has a much larger code and 
3215 data 
3216 size.
3217
3218   Previous Release:
3219     Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
3220     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
3221   Current Release:
3222     Non-Debug Version:  92.3K Code, 24.9K Data, 117.2K Total
3223     Debug Version:     170.8K Code, 72.6K Data, 243.4K Total
3224
3225 ----------------------------------------
3226 22 September 2011. Summary of changes for version 20110922:
3227
3228 0) ACPI 5.0 News:
3229
3230 Support for ACPI 5.0 in ACPICA has been underway for several months and 
3231 will 
3232 be released at the same time that ACPI 5.0 is officially released.
3233
3234 The ACPI 5.0 specification is on track for release in the next few 
3235 months.
3236  
3237 1) ACPICA Core Subsystem:
3238
3239 Fixed a problem where the maximum sleep time for the Sleep() operator was 
3240 intended to be limited to two seconds, but was inadvertently limited to 
3241 20 
3242 seconds instead.
3243
3244 Linux and Unix makefiles: Added header file dependencies to ensure 
3245 correct 
3246 generation of ACPICA core code and utilities. Also simplified the 
3247 makefiles 
3248 considerably through the use of the vpath variable to specify search 
3249 paths. 
3250 ACPICA BZ 924.
3251
3252 2) iASL Compiler/Disassembler and Tools:
3253
3254 iASL: Implemented support to check the access length for all fields 
3255 created to 
3256 access named Resource Descriptor fields. For example, if a resource field 
3257 is 
3258 defined to be two bits, a warning is issued if a CreateXxxxField() is 
3259 used 
3260 with an incorrect bit length. This is implemented for all current 
3261 resource 
3262 descriptor names. ACPICA BZ 930.
3263   
3264 Disassembler: Fixed a byte ordering problem with the output of 24-bit and 
3265 56-
3266 bit integers.
3267
3268 iASL: Fixed a couple of issues associated with variable-length package 
3269 objects. 1) properly handle constants like One, Ones, Zero -- do not make 
3270
3271 VAR_PACKAGE when these are used as a package length. 2) Allow the 
3272 VAR_PACKAGE 
3273 opcode (in addition to PACKAGE) when validating object types for 
3274 predefined 
3275 names.
3276
3277 iASL: Emit statistics for all output files (instead of just the ASL input 
3278 and 
3279 AML output). Includes listings, hex files, etc.
3280
3281 iASL: Added -G option to the table compiler to allow the compilation of 
3282 custom 
3283 ACPI tables. The only part of a table that is required is the standard 
3284 36-
3285 byte 
3286 ACPI header.
3287
3288 AcpiXtract: Ported to the standard ACPICA environment (with ACPICA 
3289 headers), 
3290 which also adds correct 64-bit support. Also, now all output filenames 
3291 are 
3292 completely lower case.
3293
3294 AcpiExec: Ignore any non-AML tables (tables other than DSDT or SSDT) when 
3295 loading table files. A warning is issued for any such tables. The only 
3296 exception is an FADT. This also fixes a possible fault when attempting to 
3297 load 
3298 non-AML tables. ACPICA BZ 932.
3299
3300 AcpiHelp: Added the AccessAs and Offset operators. Fixed a problem where 
3301
3302 missing table terminator could cause a fault when using the -p option.
3303
3304 AcpiSrc: Fixed a possible divide-by-zero fault when generating file 
3305 statistics.
3306
3307 3) Example Code and Data Size
3308
3309 These are the sizes for the OS-independent acpica.lib produced by the 
3310 Microsoft Visual C++ 9.0 32-bit compiler. The debug version of the code 
3311 includes the debug output trace mechanism and has a much larger code and 
3312 data 
3313 size.
3314
3315   Previous Release (VC 9.0):
3316     Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
3317     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
3318   Current Release (VC 9.0):
3319     Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
3320     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
3321
3322
3323 ----------------------------------------
3324 23 June 2011. Summary of changes for version 20110623:
3325
3326 1) ACPI CA Core Subsystem:
3327
3328 Updated the predefined name repair mechanism to not attempt repair of a 
3329 _TSS 
3330 return object if a _PSS object is present. We can only sort the _TSS 
3331 return 
3332 package if there is no _PSS within the same scope. This is because if 
3333 _PSS 
3334 is 
3335 present, the ACPI specification dictates that the _TSS Power Dissipation 
3336 field 
3337 is to be ignored, and therefore some BIOSs leave garbage values in the 
3338 _TSS 
3339 Power field(s). In this case, it is best to just return the _TSS package 
3340 as-
3341 is. Reported by, and fixed with assistance from Fenghua Yu.
3342
3343 Added an option to globally disable the control method return value 
3344 validation 
3345 and repair. This runtime option can be used to disable return value 
3346 repair 
3347 if 
3348 this is causing a problem on a particular machine. Also added an option 
3349 to 
3350 AcpiExec (-dr) to set this disable flag.
3351
3352 All makefiles and project files: Major changes to improve generation of 
3353 ACPICA 
3354 tools. ACPICA BZ 912:
3355     Reduce default optimization levels to improve compatibility
3356     For Linux, add strict-aliasing=0 for gcc 4
3357     Cleanup and simplify use of command line defines
3358     Cleanup multithread library support
3359     Improve usage messages
3360
3361 Linux-specific header: update handling of THREAD_ID and pthread. For the 
3362 32-
3363 bit case, improve casting to eliminate possible warnings, especially with 
3364 the 
3365 acpica tools.
3366
3367 Example Code and Data Size: These are the sizes for the OS-independent 
3368 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
3369 debug 
3370 version of the code includes the debug output trace mechanism and has a 
3371 much 
3372 larger code and data size.
3373
3374   Previous Release (VC 9.0):
3375     Non-Debug Version:  90.1K Code, 23.9K Data, 114.0K Total
3376     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
3377   Current Release (VC 9.0):
3378     Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
3379     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
3380
3381 2) iASL Compiler/Disassembler and Tools:
3382
3383 With this release, a new utility named "acpihelp" has been added to the 
3384 ACPICA 
3385 package. This utility summarizes the ACPI specification chapters for the 
3386 ASL 
3387 and AML languages. It generates under Linux/Unix as well as Windows, and 
3388 provides the following functionality:
3389     Find/display ASL operator(s) -- with description and syntax.
3390     Find/display ASL keyword(s) -- with exact spelling and descriptions.
3391     Find/display ACPI predefined name(s) -- with description, number
3392         of arguments, and the return value data type.
3393     Find/display AML opcode name(s) -- with opcode, arguments, and 
3394 grammar.
3395     Decode/display AML opcode -- with opcode name, arguments, and 
3396 grammar.
3397
3398 Service Layers: Make multi-thread support configurable. Conditionally 
3399 compile 
3400 the multi-thread support so that threading libraries will not be linked 
3401 if 
3402 not 
3403 necessary. The only tool that requires multi-thread support is AcpiExec.
3404
3405 iASL: Update yyerrror/AslCompilerError for "const" errors. Newer versions 
3406 of 
3407 Bison appear to want the interface to yyerror to be a const char * (or at 
3408 least this is a problem when generating iASL on some systems.) ACPICA BZ 
3409 923 
3410 Pierre Lejeune.
3411
3412 Tools: Fix for systems where O_BINARY is not defined. Only used for 
3413 Windows 
3414 versions of the tools.
3415
3416 ----------------------------------------
3417 27 May 2011. Summary of changes for version 20110527:
3418
3419 1) ACPI CA Core Subsystem:
3420
3421 ASL Load() operator: Reinstate most restrictions on the incoming ACPI 
3422 table 
3423 signature. Now, only allow SSDT, OEMx, and a null signature. History:
3424     1) Originally, we checked the table signature for "SSDT" or "PSDT".
3425        (PSDT is now obsolete.)
3426     2) We added support for OEMx tables, signature "OEM" plus a fourth
3427        "don't care" character.
3428     3) Valid tables were encountered with a null signature, so we just
3429        gave up on validating the signature, (05/2008).
3430     4) We encountered non-AML tables such as the MADT, which caused
3431        interpreter errors and kernel faults. So now, we once again allow
3432        only SSDT, OEMx, and now, also a null signature. (05/2011).
3433
3434 Added the missing _TDL predefined name to the global name list in order 
3435 to 
3436 enable validation. Affects both the core ACPICA code and the iASL 
3437 compiler.
3438
3439 Example Code and Data Size: These are the sizes for the OS-independent 
3440 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
3441 debug 
3442 version of the code includes the debug output trace mechanism and has a 
3443 much 
3444 larger code and data size.
3445
3446   Previous Release (VC 9.0):
3447     Non-Debug Version:  90.0K Code, 23.8K Data, 113.8K Total
3448     Debug Version:     164.5K Code, 68.0K Data, 232.5K Total
3449   Current Release (VC 9.0):
3450     Non-Debug Version:  90.1K Code, 23.9K Data, 114.0K Total
3451     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
3452
3453 2) iASL Compiler/Disassembler and Tools:
3454
3455 Debugger/AcpiExec: Implemented support for "complex" method arguments on 
3456 the 
3457 debugger command line. This adds support beyond simple integers -- 
3458 including 
3459 Strings, Buffers, and Packages. Includes support for nested packages. 
3460 Increased the default command line buffer size to accommodate these 
3461 arguments. 
3462 See the ACPICA reference for details and syntax. ACPICA BZ 917.
3463  
3464 Debugger/AcpiExec: Implemented support for "default" method arguments for 
3465 the 
3466 Execute/Debug command. Now, the debugger will always invoke a control 
3467 method 
3468 with the required number of arguments -- even if the command line 
3469 specifies 
3470 none or insufficient arguments. It uses default integer values for any 
3471 missing 
3472 arguments. Also fixes a bug where only six method arguments maximum were 
3473 supported instead of the required seven.
3474
3475 Debugger/AcpiExec: Add a maximum buffer length parameter to AcpiOsGetLine 
3476 and 
3477 also return status in order to prevent buffer overruns. See the ACPICA 
3478 reference for details and syntax. ACPICA BZ 921
3479
3480 iASL: Cleaned up support for Berkeley yacc. A general cleanup of code and 
3481 makefiles to simplify support for the two different but similar parser 
3482 generators, bison and yacc.
3483
3484 Updated the generic unix makefile for gcc 4. The default gcc version is 
3485 now 
3486 expected to be 4 or greater, since options specific to gcc 4 are used.
3487
3488 ----------------------------------------
3489 13 April 2011. Summary of changes for version 20110413:
3490
3491 1) ACPI CA Core Subsystem:
3492
3493 Implemented support to execute a so-called "orphan" _REG method under the 
3494 EC 
3495 device. This change will force the execution of a _REG method underneath 
3496 the 
3497 EC 
3498 device even if there is no corresponding operation region of type 
3499 EmbeddedControl. Fixes a problem seen on some machines and apparently is 
3500 compatible with Windows behavior. ACPICA BZ 875.
3501
3502 Added more predefined methods that are eligible for automatic NULL 
3503 package 
3504 element removal. This change adds another group of predefined names to 
3505 the 
3506 list 
3507 of names that can be repaired by having NULL package elements dynamically 
3508 removed. This group are those methods that return a single variable-
3509 length 
3510 package containing simple data types such as integers, buffers, strings. 
3511 This 
3512 includes: _ALx, _BCL, _CID,_ DOD, _EDL, _FIX, _PCL, _PLD, _PMD, _PRx, 
3513 _PSL, 
3514 _Sx, 
3515 and _TZD. ACPICA BZ 914.
3516
3517 Split and segregated all internal global lock functions to a new file, 
3518 evglock.c.
3519
3520 Updated internal address SpaceID for DataTable regions. Moved this 
3521 internal 
3522 space 
3523 id in preparation for ACPI 5.0 changes that will include some new space 
3524 IDs. 
3525 This 
3526 change should not affect user/host code.
3527
3528 Example Code and Data Size: These are the sizes for the OS-independent 
3529 acpica.lib 
3530 produced by the Microsoft Visual C++ 9.0 32-bit compiler. The debug 
3531 version of 
3532 the code includes the debug output trace mechanism and has a much larger 
3533 code 
3534 and 
3535 data size.
3536
3537   Previous Release (VC 9.0):
3538     Non-Debug Version:  89.8K Code, 23.8K Data, 113.6K Total
3539     Debug Version:     164.2K Code, 67.9K Data, 232.1K Total
3540   Current Release (VC 9.0):
3541     Non-Debug Version:  90.0K Code, 23.8K Data, 113.8K Total
3542     Debug Version:     164.5K Code, 68.0K Data, 232.5K Total
3543
3544 2) iASL Compiler/Disassembler and Tools:
3545
3546 iASL/DTC: Major update for new grammar features. Allow generic data types 
3547 in 
3548 custom ACPI tables. Field names are now optional. Any line can be split 
3549 to 
3550 multiple lines using the continuation char (\). Large buffers now use 
3551 line-
3552 continuation character(s) and no colon on the continuation lines. See the 
3553 grammar 
3554 update in the iASL compiler reference. ACPI BZ 910,911. Lin Ming, Bob 
3555 Moore.
3556
3557 iASL: Mark ASL "Return()" and the simple "Return" as "Null" return 
3558 statements. 
3559 Since the parser stuffs a "zero" as the return value for these statements 
3560 (due 
3561 to 
3562 the underlying AML grammar), they were seen as "return with value" by the 
3563 iASL 
3564 semantic checking. They are now seen correctly as "null" return 
3565 statements.
3566
3567 iASL: Check if a_REG declaration has a corresponding Operation Region. 
3568 Adds a 
3569 check for each _REG to ensure that there is in fact a corresponding 
3570 operation 
3571 region declaration in the same scope. If not, the _REG method is not very 
3572 useful 
3573 since it probably won't be executed. ACPICA BZ 915.
3574
3575 iASL/DTC: Finish support for expression evaluation. Added a new 
3576 expression 
3577 parser 
3578 that implements c-style operator precedence and parenthesization. ACPICA 
3579 bugzilla 
3580 908.
3581
3582 Disassembler/DTC: Remove support for () and <> style comments in data 
3583 tables. 
3584 Now 
3585 that DTC has full expression support, we don't want to have comment 
3586 strings 
3587 that 
3588 start with a parentheses or a less-than symbol. Now, only the standard /* 
3589 and 
3590 // 
3591 comments are supported, as well as the bracket [] comments.
3592
3593 AcpiXtract: Fix for RSDP and dynamic SSDT extraction. These tables have 
3594 "unusual" 
3595 headers in the acpidump file. Update the header validation to support 
3596 these 
3597 tables. Problem introduced in previous AcpiXtract version in the change 
3598 to 
3599 support "wrong checksum" error messages emitted by acpidump utility.
3600
3601 iASL: Add a * option to generate all template files (as a synonym for 
3602 ALL) 
3603 as 
3604 in 
3605 "iasl -T *" or "iasl -T ALL".
3606
3607 iASL/DTC: Do not abort compiler on fatal errors. We do not want to 
3608 completely 
3609 abort the compiler on "fatal" errors, simply should abort the current 
3610 compile. 
3611 This allows multiple compiles with a single (possibly wildcard) compiler 
3612 invocation.
3613
3614 ----------------------------------------
3615 16 March 2011. Summary of changes for version 20110316:
3616
3617 1) ACPI CA Core Subsystem:
3618
3619 Fixed a problem caused by a _PRW method appearing at the namespace root 
3620 scope 
3621 during the setup of wake GPEs. A fault could occur if a _PRW directly 
3622 under 
3623 the 
3624 root object was passed to the AcpiSetupGpeForWake interface. Lin Ming.
3625
3626 Implemented support for "spurious" Global Lock interrupts. On some 
3627 systems, a 
3628 global lock interrupt can occur without the pending flag being set. Upon 
3629
3630 GL 
3631 interrupt, we now ensure that a thread is actually waiting for the lock 
3632 before 
3633 signaling GL availability. Rafael Wysocki, Bob Moore.
3634
3635 Example Code and Data Size: These are the sizes for the OS-independent 
3636 acpica.lib 
3637 produced by the Microsoft Visual C++ 9.0 32-bit compiler. The debug 
3638 version of 
3639 the code includes the debug output trace mechanism and has a much larger 
3640 code 
3641 and 
3642 data size.
3643
3644   Previous Release (VC 9.0):
3645     Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
3646     Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
3647   Current Release (VC 9.0):
3648     Non-Debug Version:  89.8K Code, 23.8K Data, 113.6K Total
3649     Debug Version:     164.2K Code, 67.9K Data, 232.1K Total
3650
3651 2) iASL Compiler/Disassembler and Tools:
3652
3653 Implemented full support for the "SLIC" ACPI table. Includes support in 
3654 the 
3655 header files, disassembler, table compiler, and template generator. Bob 
3656 Moore, 
3657 Lin Ming.
3658
3659 AcpiXtract: Correctly handle embedded comments and messages from 
3660 AcpiDump. 
3661 Apparently some or all versions of acpidump will occasionally emit a 
3662 comment 
3663 like 
3664 "Wrong checksum", etc., into the dump file. This was causing problems for 
3665 AcpiXtract. ACPICA BZ 905.
3666
3667 iASL: Fix the Linux makefile by removing an inadvertent double file 
3668 inclusion. 
3669 ACPICA BZ 913.
3670
3671 AcpiExec: Update installation of operation region handlers. Install one 
3672 handler 
3673 for a user-defined address space. This is used by the ASL test suite 
3674 (ASLTS).
3675
3676 ----------------------------------------
3677 11 February 2011. Summary of changes for version 20110211:
3678
3679 1) ACPI CA Core Subsystem:
3680
3681 Added a mechanism to defer _REG methods for some early-installed 
3682 handlers. 
3683 Most user handlers should be installed before call to 
3684 AcpiEnableSubsystem. 
3685 However, Event handlers and region handlers should be installed after 
3686 AcpiInitializeObjects. Override handlers for the "default" regions should 
3687 be 
3688 installed early, however. This change executes all _REG methods for the 
3689 default regions (Memory/IO/PCI/DataTable) simultaneously to prevent any 
3690 chicken/egg issues between them. ACPICA BZ 848.
3691
3692 Implemented an optimization for GPE detection. This optimization will 
3693 simply 
3694 ignore GPE registers that contain no enabled GPEs -- there is no need to 
3695 read the register since this information is available internally. This 
3696 becomes more important on machines with a large GPE space. ACPICA 
3697 bugzilla 
3698 884. Lin Ming. Suggestion from Joe Liu.
3699
3700 Removed all use of the highly unreliable FADT revision field. The 
3701 revision 
3702 number in the FADT has been found to be completely unreliable and cannot 
3703 be 
3704 trusted. Only the actual table length can be used to infer the version. 
3705 This 
3706 change updates the ACPICA core and the disassembler so that both no 
3707 longer 
3708 even look at the FADT version and instead depend solely upon the FADT 
3709 length.
3710
3711 Fix an unresolved name issue for the no-debug and no-error-message source 
3712 generation cases. The _AcpiModuleName was left undefined in these cases, 
3713 but 
3714 it is actually needed as a parameter to some interfaces. Define 
3715 _AcpiModuleName as a null string in these cases. ACPICA Bugzilla 888.
3716
3717 Split several large files (makefiles and project files updated)
3718   utglobal.c   -> utdecode.c
3719   dbcomds.c    -> dbmethod.c dbnames.c
3720   dsopcode.c   -> dsargs.c dscontrol.c
3721   dsload.c     -> dsload2.c
3722   aslanalyze.c -> aslbtypes.c aslwalks.c
3723
3724 Example Code and Data Size: These are the sizes for the OS-independent 
3725 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
3726 debug version of the code includes the debug output trace mechanism and 
3727 has 
3728 a much larger code and data size.
3729
3730   Previous Release (VC 9.0):
3731     Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
3732     Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
3733   Current Release (VC 9.0):
3734     Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
3735     Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
3736
3737 2) iASL Compiler/Disassembler and Tools:
3738
3739 iASL: Implemented the predefined macros __LINE__, __FILE__, and __DATE__. 
3740 These are useful C-style macros with the standard definitions. ACPICA 
3741 bugzilla 898.
3742
3743 iASL/DTC: Added support for integer expressions and labels. Support for 
3744 full 
3745 expressions for all integer fields in all ACPI tables. Support for labels 
3746 in 
3747 "generic" portions of tables such as UEFI. See the iASL reference manual.
3748
3749 Debugger: Added a command to display the status of global handlers. The 
3750 "handlers" command will display op region, fixed event, and miscellaneous 
3751 global handlers. installation status -- and for op regions, whether 
3752 default 
3753 or user-installed handler will be used.
3754
3755 iASL: Warn if reserved method incorrectly returns a value. Many 
3756 predefined 
3757 names are defined such that they do not return a value. If implemented as 
3758
3759 method, issue a warning if such a name explicitly returns a value. ACPICA 
3760 Bugzilla 855.
3761
3762 iASL: Added detection of GPE method name conflicts. Detects a conflict 
3763 where 
3764 there are two GPE methods of the form _Lxy and _Exy in the same scope. 
3765 (For 
3766 example, _L1D and _E1D in the same scope.) ACPICA bugzilla 848.
3767
3768 iASL/DTC: Fixed a couple input scanner issues with comments and line 
3769 numbers. Comment remover could get confused and miss a comment ending. 
3770 Fixed 
3771 a problem with line counter maintenance.
3772
3773 iASL/DTC: Reduced the severity of some errors from fatal to error. There 
3774 is 
3775 no need to abort on simple errors within a field definition.
3776
3777 Debugger: Simplified the output of the help command. All help output now 
3778 in 
3779 a single screen, instead of help subcommands. ACPICA Bugzilla 897.
3780
3781 ----------------------------------------
3782 12 January 2011. Summary of changes for version 20110112:
3783
3784 1) ACPI CA Core Subsystem:
3785
3786 Fixed a race condition between method execution and namespace walks that 
3787 can 
3788 possibly cause a fault. The problem was apparently introduced in version 
3789 20100528 as a result of a performance optimization that reduces the 
3790 number 
3791 of 
3792 namespace walks upon method exit by using the delete_namespace_subtree 
3793 function instead of the delete_namespace_by_owner function used 
3794 previously. 
3795 Bug is a missing namespace lock in the delete_namespace_subtree function. 
3796 dana.myers@oracle.com
3797
3798 Fixed several issues and a possible fault with the automatic "serialized" 
3799 method support. History: This support changes a method to "serialized" on 
3800 the 
3801 fly if the method generates an AE_ALREADY_EXISTS error, indicating the 
3802 possibility that it cannot handle reentrancy. This fix repairs a couple 
3803 of 
3804 issues seen in the field, especially on machines with many cores:
3805
3806     1) Delete method children only upon the exit of the last thread,
3807        so as to not delete objects out from under other running threads
3808       (and possibly causing a fault.)
3809     2) Set the "serialized" bit for the method only upon the exit of the
3810        Last thread, so as to not cause deadlock when running threads
3811        attempt to exit.
3812     3) Cleanup the use of the AML "MethodFlags" and internal method flags
3813        so that there is no longer any confusion between the two.
3814
3815     Lin Ming, Bob Moore. Reported by dana.myers@oracle.com.
3816
3817 Debugger: Now lock the namespace for duration of a namespace dump. 
3818 Prevents 
3819 issues if the namespace is changing dynamically underneath the debugger. 
3820 Especially affects temporary namespace nodes, since the debugger displays 
3821 these also.
3822
3823 Updated the ordering of include files. The ACPICA headers should appear 
3824 before any compiler-specific headers (stdio.h, etc.) so that acenv.h can 
3825 set 
3826 any necessary compiler-specific defines, etc. Affects the ACPI-related 
3827 tools 
3828 and utilities.
3829
3830 Updated all ACPICA copyrights and signons to 2011. Added the 2011 
3831 copyright 
3832 to all module headers and signons, including the Linux header. This 
3833 affects 
3834 virtually every file in the ACPICA core subsystem, iASL compiler, and all 
3835 utilities.
3836
3837 Added project files for MS Visual Studio 2008 (VC++ 9.0). The original 
3838 project files for VC++ 6.0 are now obsolete. New project files can be 
3839 found 
3840 under acpica/generate/msvc9. See acpica/generate/msvc9/readme.txt for 
3841 details.
3842
3843 Example Code and Data Size: These are the sizes for the OS-independent 
3844 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
3845 debug version of the code includes the debug output trace mechanism and 
3846 has a 
3847 much larger code and data size.
3848
3849   Previous Release (VC 6.0):
3850     Non-Debug Version:  89.8K Code, 18.9K Data, 108.7K Total
3851     Debug Version:     166.6K Code, 52.1K Data, 218.7K Total
3852   Current Release (VC 9.0):
3853     Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
3854     Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
3855
3856 2) iASL Compiler/Disassembler and Tools:
3857
3858 iASL: Added generic data types to the Data Table compiler. Add "generic" 
3859 data 
3860 types such as UINT32, String, Unicode, etc., to simplify the generation 
3861 of 
3862 platform-defined tables such as UEFI. Lin Ming.
3863
3864 iASL: Added listing support for the Data Table Compiler. Adds listing 
3865 support 
3866 (-l) to display actual binary output for each line of input code.
3867
3868 ----------------------------------------
3869 09 December 2010. Summary of changes for version 20101209:
3870
3871 1) ACPI CA Core Subsystem:
3872
3873 Completed the major overhaul of the GPE support code that was begun in 
3874 July 
3875 2010. Major features include: removal of _PRW execution in ACPICA (host 
3876 executes _PRWs anyway), cleanup of "wake" GPE interfaces and processing, 
3877 changes to existing interfaces, simplification of GPE handler operation, 
3878 and 
3879 a handful of new interfaces:
3880
3881     AcpiUpdateAllGpes
3882     AcpiFinishGpe
3883     AcpiSetupGpeForWake
3884     AcpiSetGpeWakeMask
3885     One new file, evxfgpe.c to consolidate all external GPE interfaces.
3886
3887 See the ACPICA Programmer Reference for full details and programming 
3888 information. See the new section 4.4 "General Purpose Event (GPE) 
3889 Support" 
3890 for a full overview, and section 8.7 "ACPI General Purpose Event 
3891 Management" 
3892 for programming details. ACPICA BZ 858,870,877. Matthew Garrett, Lin 
3893 Ming, 
3894 Bob Moore, Rafael Wysocki.
3895
3896 Implemented a new GPE feature for Windows compatibility, the "Implicit 
3897 Wake 
3898 GPE Notify". This feature will automatically issue a Notify(2) on a 
3899 device 
3900 when a Wake GPE is received if there is no corresponding GPE method or 
3901 handler. ACPICA BZ 870.
3902
3903 Fixed a problem with the Scope() operator during table parse and load 
3904 phase. 
3905 During load phase (table load or method execution), the scope operator 
3906 should 
3907 not enter the target into the namespace. Instead, it should open a new 
3908 scope 
3909 at the target location. Linux BZ 19462, ACPICA BZ 882.
3910
3911 Example Code and Data Size: These are the sizes for the OS-independent 
3912 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3913 debug version of the code includes the debug output trace mechanism and 
3914 has a 
3915 much larger code and data size.
3916
3917   Previous Release:
3918     Non-Debug Version:  89.8K Code, 18.9K Data, 108.7K Total
3919     Debug Version:     166.6K Code, 52.1K Data, 218.7K Total
3920   Current Release:
3921     Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
3922     Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
3923
3924 2) iASL Compiler/Disassembler and Tools:
3925
3926 iASL: Relax the alphanumeric restriction on _CID strings. These strings 
3927 are 
3928 "bus-specific" per the ACPI specification, and therefore any characters 
3929 are 
3930 acceptable. The only checks that can be performed are for a null string 
3931 and 
3932 perhaps for a leading asterisk. ACPICA BZ 886.
3933
3934 iASL: Fixed a problem where a syntax error that caused a premature EOF 
3935 condition on the source file emitted a very confusing error message. The 
3936 premature EOF is now detected correctly. ACPICA BZ 891.
3937
3938 Disassembler: Decode the AccessSize within a Generic Address Structure 
3939 (byte 
3940 access, word access, etc.) Note, this field does not allow arbitrary bit 
3941 access, the size is encoded as 1=byte, 2=word, 3=dword, and 4=qword.
3942
3943 New: AcpiNames utility - Example namespace dump utility. Shows an example 
3944 of 
3945 ACPICA configuration for a minimal namespace dump utility. Uses table and 
3946 namespace managers, but no AML interpreter. Does not add any 
3947 functionality 
3948 over AcpiExec, it is a subset of AcpiExec. The purpose is to show how to 
3949 partition and configure ACPICA. ACPICA BZ 883.
3950
3951 AML Debugger: Increased the debugger buffer size for method return 
3952 objects. 
3953 Was 4K, increased to 16K. Also enhanced error messages for debugger 
3954 method 
3955 execution, including the buffer overflow case.
3956
3957 ----------------------------------------
3958 13 October 2010. Summary of changes for version 20101013:
3959
3960 1) ACPI CA Core Subsystem:
3961
3962 Added support to clear the PCIEXP_WAKE event. When clearing ACPI events, 
3963 now 
3964 clear the PCIEXP_WAKE_STS bit in the ACPI PM1 Status Register, via 
3965 HwClearAcpiStatus. Original change from Colin King. ACPICA BZ 880.
3966
3967 Changed the type of the predefined namespace object _TZ from ThermalZone 
3968 to 
3969 Device. This was found to be confusing to the host software that 
3970 processes 
3971 the various thermal zones, since _TZ is not really a ThermalZone. 
3972 However, 
3973
3974 Notify() can still be performed on it. ACPICA BZ 876. Suggestion from Rui 
3975 Zhang.
3976
3977 Added Windows Vista SP2 to the list of supported _OSI strings. The actual 
3978 string is "Windows 2006 SP2".
3979
3980 Eliminated duplicate code in AcpiUtExecute* functions. Now that the 
3981 nsrepair 
3982 code automatically repairs _HID-related strings, this type of code is no 
3983 longer needed in Execute_HID, Execute_CID, and Execute_UID. ACPICA BZ 
3984 878.
3985
3986 Example Code and Data Size: These are the sizes for the OS-independent 
3987 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3988 debug version of the code includes the debug output trace mechanism and 
3989 has a 
3990 much larger code and data size.
3991
3992   Previous Release:
3993     Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
3994     Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
3995   Current Release:
3996     Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
3997     Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
3998
3999 2) iASL Compiler/Disassembler and Tools:
4000
4001 iASL: Implemented additional compile-time validation for _HID strings. 
4002 The 
4003 non-hex prefix (such as "PNP" or "ACPI") must be uppercase, and the 
4004 length 
4005 of 
4006 the string must be exactly seven or eight characters. For both _HID and 
4007 _CID 
4008 strings, all characters must be alphanumeric. ACPICA BZ 874.
4009
4010 iASL: Allow certain "null" resource descriptors. Some BIOS code creates 
4011 descriptors that are mostly or all zeros, with the expectation that they 
4012 will 
4013 be filled in at runtime. iASL now allows this as long as there is a 
4014 "resource 
4015 tag" (name) associated with the descriptor, which gives the ASL a handle 
4016 needed to modify the descriptor. ACPICA BZ 873.
4017
4018 Added single-thread support to the generic Unix application OSL. 
4019 Primarily 
4020 for iASL support, this change removes the use of semaphores in the 
4021 single-
4022 threaded ACPICA tools/applications - increasing performance. The 
4023 _MULTI_THREADED option was replaced by the (reverse) ACPI_SINGLE_THREADED 
4024 option. ACPICA BZ 879.
4025
4026 AcpiExec: several fixes for the 64-bit version. Adds XSDT support and 
4027 support 
4028 for 64-bit DSDT/FACS addresses in the FADT. Lin Ming.
4029
4030 iASL: Moved all compiler messages to a new file, aslmessages.h.
4031
4032 ----------------------------------------
4033 15 September 2010. Summary of changes for version 20100915:
4034
4035 1) ACPI CA Core Subsystem:
4036
4037 Removed the AcpiOsDerivePciId OSL interface. The various host 
4038 implementations 
4039 of this function were not OS-dependent and are now obsolete and can be 
4040 removed from all host OSLs. This function has been replaced by 
4041 AcpiHwDerivePciId, which is now part of the ACPICA core code. 
4042 AcpiHwDerivePciId has been implemented without recursion. Adds one new 
4043 module, hwpci.c. ACPICA BZ 857.
4044
4045 Implemented a dynamic repair for _HID and _CID strings. The following 
4046 problems are now repaired at runtime: 1) Remove a leading asterisk in the 
4047 string, and 2) the entire string is uppercased. Both repairs are in 
4048 accordance with the ACPI specification and will simplify host driver 
4049 code. 
4050 ACPICA BZ 871.
4051
4052 The ACPI_THREAD_ID type is no longer configurable, internally it is now 
4053 always UINT64. This simplifies the ACPICA code, especially any printf 
4054 output. 
4055 UINT64 is the only common data type for all thread_id types across all 
4056 operating systems. It is now up to the host OSL to cast the native 
4057 thread_id 
4058 type to UINT64 before returning the value to ACPICA (via 
4059 AcpiOsGetThreadId). 
4060 Lin Ming, Bob Moore.
4061
4062 Added the ACPI_INLINE type to enhance the ACPICA configuration. The 
4063 "inline" 
4064 keyword is not standard across compilers, and this type allows inline to 
4065 be 
4066 configured on a per-compiler basis. Lin Ming.
4067
4068 Made the system global AcpiGbl_SystemAwakeAndRunning publically 
4069 available. 
4070 Added an extern for this boolean in acpixf.h. Some hosts utilize this 
4071 value 
4072 during suspend/restore operations. ACPICA BZ 869.
4073
4074 All code that implements error/warning messages with the "ACPI:" prefix 
4075 has 
4076 been moved to a new module, utxferror.c.
4077
4078 The UINT64_OVERLAY was moved to utmath.c, which is the only module where 
4079 it 
4080 is used. ACPICA BZ 829. Lin Ming, Bob Moore.
4081
4082 Example Code and Data Size: These are the sizes for the OS-independent 
4083 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4084 debug version of the code includes the debug output trace mechanism and 
4085 has a 
4086 much larger code and data size.
4087
4088   Previous Release:
4089     Non-Debug Version:  89.1K Code, 19.0K Data, 108.1K Total
4090     Debug Version:     165.1K Code, 51.9K Data, 217.0K Total
4091   Current Release:
4092     Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
4093     Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
4094
4095 2) iASL Compiler/Disassembler and Tools:
4096
4097 iASL/Disassembler: Write ACPI errors to stderr instead of the output 
4098 file. 
4099 This keeps the output files free of random error messages that may 
4100 originate 
4101 from within the namespace/interpreter code. Used this opportunity to 
4102 merge 
4103 all ACPI:-style messages into a single new module, utxferror.c. ACPICA BZ 
4104 866. Lin Ming, Bob Moore.
4105
4106 Tools: update some printfs for ansi warnings on size_t. Handle width 
4107 change 
4108 of size_t on 32-bit versus 64-bit generations. Lin Ming.
4109
4110 ----------------------------------------
4111 06 August 2010. Summary of changes for version 20100806:
4112
4113 1) ACPI CA Core Subsystem:
4114
4115 Designed and implemented a new host interface to the _OSI support code. 
4116 This 
4117 will allow the host to dynamically add or remove multiple _OSI strings, 
4118 as 
4119 well as install an optional handler that is called for each _OSI 
4120 invocation. 
4121 Also added a new AML debugger command, 'osi' to display and modify the 
4122 global 
4123 _OSI string table, and test support in the AcpiExec utility. See the 
4124 ACPICA 
4125 reference manual for full details. Lin Ming, Bob Moore. ACPICA BZ 836.
4126 New Functions:
4127     AcpiInstallInterface - Add an _OSI string.
4128     AcpiRemoveInterface - Delete an _OSI string.
4129     AcpiInstallInterfaceHandler - Install optional _OSI handler.
4130 Obsolete Functions:
4131     AcpiOsValidateInterface - no longer used.
4132 New Files:
4133     source/components/utilities/utosi.c
4134
4135 Re-introduced the support to enable multi-byte transfers for Embedded 
4136 Controller (EC) operation regions. A reported problem was found to be a 
4137 bug 
4138 in the host OS, not in the multi-byte support. Previously, the maximum 
4139 data 
4140 size passed to the EC operation region handler was a single byte. There 
4141 are 
4142 often EC Fields larger than one byte that need to be transferred, and it 
4143 is 
4144 useful for the EC driver to lock these as a single transaction. This 
4145 change 
4146 enables single transfers larger than 8 bits. This effectively changes the 
4147 access to the EC space from ByteAcc to AnyAcc, and will probably require 
4148 changes to the host OS Embedded Controller driver to enable 16/32/64/256-
4149 bit 
4150 transfers in addition to 8-bit transfers. Alexey Starikovskiy, Lin Ming.
4151
4152 Fixed a problem with the prototype for AcpiOsReadPciConfiguration. The 
4153 prototype in acpiosxf.h had the output value pointer as a (void *).
4154 It should be a (UINT64 *). This may affect some host OSL code.
4155
4156 Fixed a couple problems with the recently modified Linux makefiles for 
4157 iASL 
4158 and AcpiExec. These new makefiles place the generated object files in the 
4159 local directory so that there can be no collisions between the files that 
4160 are 
4161 shared between them that are compiled with different options.
4162
4163 Example Code and Data Size: These are the sizes for the OS-independent 
4164 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4165 debug version of the code includes the debug output trace mechanism and 
4166 has a 
4167 much larger code and data size.
4168
4169   Previous Release:
4170     Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
4171     Debug Version:     164.0K Code, 51.5K Data, 215.5K Total
4172   Current Release:
4173     Non-Debug Version:  89.1K Code, 19.0K Data, 108.1K Total
4174     Debug Version:     165.1K Code, 51.9K Data, 217.0K Total
4175
4176 2) iASL Compiler/Disassembler and Tools:
4177
4178 iASL/Disassembler: Added a new option (-da, "disassemble all") to load 
4179 the 
4180 namespace from and disassemble an entire group of AML files. Useful for 
4181 loading all of the AML tables for a given machine (DSDT, SSDT1...SSDTn) 
4182 and 
4183 disassembling with one simple command. ACPICA BZ 865. Lin Ming.
4184
4185 iASL: Allow multiple invocations of -e option. This change allows 
4186 multiple 
4187 uses of -e on the command line: "-e ssdt1.dat -e ssdt2.dat". ACPICA BZ 
4188 834. 
4189 Lin Ming.
4190
4191 ----------------------------------------
4192 02 July 2010. Summary of changes for version 20100702:
4193
4194 1) ACPI CA Core Subsystem:
4195
4196 Implemented several updates to the recently added GPE reference count 
4197 support. The model for "wake" GPEs is changing to give the host OS 
4198 complete 
4199 control of these GPEs. Eventually, the ACPICA core will not execute any 
4200 _PRW 
4201 methods, since the host already must execute them. Also, additional 
4202 changes 
4203 were made to help ensure that the reference counts are kept in proper 
4204 synchronization with reality. Rafael J. Wysocki.
4205
4206 1) Ensure that GPEs are not enabled twice during initialization.
4207 2) Ensure that GPE enable masks stay in sync with the reference count.
4208 3) Do not inadvertently enable GPEs when writing GPE registers.
4209 4) Remove the internal wake reference counter and add new AcpiGpeWakeup 
4210 interface. This interface will set or clear individual GPEs for wakeup.
4211 5) Remove GpeType argument from AcpiEnable and AcpiDisable. These 
4212 interfaces 
4213 are now used for "runtime" GPEs only.
4214
4215 Changed the behavior of the GPE install/remove handler interfaces. The 
4216 GPE 
4217 is 
4218 no longer disabled during this process, as it was found to cause problems 
4219 on 
4220 some machines. Rafael J. Wysocki.
4221
4222 Reverted a change introduced in version 20100528 to enable Embedded 
4223 Controller multi-byte transfers. This change was found to cause problems 
4224 with 
4225 Index Fields and possibly Bank Fields. It will be reintroduced when these 
4226 problems have been resolved.
4227
4228 Fixed a problem with references to Alias objects within Package Objects. 
4229
4230 reference to an Alias within the definition of a Package was not always 
4231 resolved properly. Aliases to objects like Processors, Thermal zones, 
4232 etc. 
4233 were resolved to the actual object instead of a reference to the object 
4234 as 
4235 it 
4236 should be. Package objects are only allowed to contain integer, string, 
4237 buffer, package, and reference objects. Redhat bugzilla 608648.
4238
4239 Example Code and Data Size: These are the sizes for the OS-independent 
4240 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4241 debug version of the code includes the debug output trace mechanism and 
4242 has a 
4243 much larger code and data size.
4244
4245   Previous Release:
4246     Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
4247     Debug Version:     164.1K Code, 51.5K Data, 215.6K Total
4248   Current Release:
4249     Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
4250     Debug Version:     164.0K Code, 51.5K Data, 215.5K Total
4251
4252 2) iASL Compiler/Disassembler and Tools:
4253
4254 iASL: Implemented a new compiler subsystem to allow definition and 
4255 compilation of the non-AML ACPI tables such as FADT, MADT, SRAT, etc. 
4256 These 
4257 are called "ACPI Data Tables", and the new compiler is the "Data Table 
4258 Compiler". This compiler is intended to simplify the existing error-prone 
4259 process of creating these tables for the BIOS, as well as allowing the 
4260 disassembly, modification, recompilation, and override of existing ACPI 
4261 data 
4262 tables. See the iASL User Guide for detailed information.
4263
4264 iASL: Implemented a new Template Generator option in support of the new 
4265 Data 
4266 Table Compiler. This option will create examples of all known ACPI tables 
4267 that can be used as the basis for table development. See the iASL 
4268 documentation and the -T option.
4269
4270 Disassembler and headers: Added support for the WDDT ACPI table (Watchdog 
4271 Descriptor Table).
4272
4273 Updated the Linux makefiles for iASL and AcpiExec to place the generated 
4274 object files in the local directory so that there can be no collisions 
4275 between the shared files between them that are generated with different 
4276 options.
4277
4278 Added support for Mac OS X in the Unix OSL used for iASL and AcpiExec. 
4279 Use 
4280 the #define __APPLE__ to enable this support.
4281
4282 ----------------------------------------
4283 28 May 2010. Summary of changes for version 20100528:
4284
4285 Note: The ACPI 4.0a specification was released on April 5, 2010 and is 
4286 available at www.acpi.info. This is primarily an errata release.
4287
4288 1) ACPI CA Core Subsystem:
4289
4290 Undefined ACPI tables: We are looking for the definitions for the 
4291 following 
4292 ACPI tables that have been seen in the field: ATKG, IEIT, GSCI.
4293
4294 Implemented support to enable multi-byte transfers for Embedded 
4295 Controller 
4296 (EC) operation regions. Previously, the maximum data size passed to the 
4297 EC 
4298 operation region handler was a single byte. There are often EC Fields 
4299 larger 
4300 than one byte that need to be transferred, and it is useful for the EC 
4301 driver 
4302 to lock these as a single transaction. This change enables single 
4303 transfers 
4304 larger than 8 bits. This effectively changes the access to the EC space 
4305 from 
4306 ByteAcc to AnyAcc, and will probably require changes to the host OS 
4307 Embedded 
4308 Controller driver to enable 16/32/64/256-bit transfers in addition to 8-
4309 bit 
4310 transfers. Alexey Starikovskiy, Lin Ming
4311
4312 Implemented a performance enhancement for namespace search and access. 
4313 This 
4314 change enhances the performance of namespace searches and walks by adding 
4315
4316 backpointer to the parent in each namespace node. On large namespaces, 
4317 this 
4318 change can improve overall ACPI performance by up to 9X. Adding a pointer 
4319 to 
4320 each namespace node increases the overall size of the internal namespace 
4321 by 
4322 about 5%, since each namespace entry usually consists of both a namespace 
4323 node and an ACPI operand object. However, this is the first growth of the 
4324 namespace in ten years. ACPICA bugzilla 817. Alexey Starikovskiy.
4325
4326 Implemented a performance optimization that reduces the number of 
4327 namespace 
4328 walks. On control method exit, only walk the namespace if the method is 
4329 known 
4330 to have created namespace objects outside of its local scope. Previously, 
4331 the 
4332 entire namespace was traversed on each control method exit. This change 
4333 can 
4334 improve overall ACPI performance by up to 3X. Alexey Starikovskiy, Bob 
4335 Moore.
4336
4337 Added support to truncate I/O addresses to 16 bits for Windows 
4338 compatibility. 
4339 Some ASL code has been seen in the field that inadvertently has bits set 
4340 above bit 15. This feature is optional and is enabled if the BIOS 
4341 requests 
4342 any Windows OSI strings. It can also be enabled by the host OS. Matthew 
4343 Garrett, Bob Moore.
4344
4345 Added support to limit the maximum time for the ASL Sleep() operator. To 
4346 prevent accidental deep sleeps, limit the maximum time that Sleep() will 
4347 actually sleep. Configurable, the default maximum is two seconds. ACPICA 
4348 bugzilla 854.
4349
4350 Added run-time validation support for the _WDG and_WED Microsoft 
4351 predefined 
4352 methods. These objects are defined by "Windows Instrumentation", and are 
4353 not 
4354 part of the ACPI spec. ACPICA BZ 860.
4355
4356 Expanded all statistic counters used during namespace and device 
4357 initialization from 16 to 32 bits in order to support very large 
4358 namespaces.
4359
4360 Replaced all instances of %d in printf format specifiers with %u since 
4361 nearly 
4362 all integers in ACPICA are unsigned.
4363
4364 Fixed the exception namestring for AE_WAKE_ONLY_GPE. Was incorrectly 
4365 returned 
4366 as AE_NO_HANDLER.
4367
4368 Example Code and Data Size: These are the sizes for the OS-independent 
4369 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4370 debug version of the code includes the debug output trace mechanism and 
4371 has a 
4372 much larger code and data size.
4373
4374   Previous Release:
4375     Non-Debug Version:  88.4K Code, 18.8K Data, 107.2K Total
4376     Debug Version:     164.2K Code, 51.5K Data, 215.7K Total
4377   Current Release:
4378     Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
4379     Debug Version:     164.1K Code, 51.5K Data, 215.6K Total
4380
4381 2) iASL Compiler/Disassembler and Tools:
4382
4383 iASL: Added compiler support for the _WDG and_WED Microsoft predefined 
4384 methods. These objects are defined by "Windows Instrumentation", and are 
4385 not 
4386 part of the ACPI spec. ACPICA BZ 860.
4387
4388 AcpiExec: added option to disable the memory tracking mechanism. The -dt 
4389 option will disable the tracking mechanism, which improves performance 
4390 considerably.
4391
4392 AcpiExec: Restructured the command line options into -d (disable) and -e 
4393 (enable) options.
4394
4395 ----------------------------------------
4396 28 April 2010. Summary of changes for version 20100428:
4397
4398 1) ACPI CA Core Subsystem:
4399
4400 Implemented GPE support for dynamically loaded ACPI tables. For all GPEs, 
4401 including FADT-based and GPE Block Devices, execute any _PRW methods in 
4402 the 
4403 new table, and process any _Lxx/_Exx GPE methods in the new table. Any 
4404 runtime GPE that is referenced by an _Lxx/_Exx method in the new table is 
4405 immediately enabled. Handles the FADT-defined GPEs as well as GPE Block 
4406 Devices. Provides compatibility with other ACPI implementations. Two new 
4407 files added, evgpeinit.c and evgpeutil.c. ACPICA BZ 833. Lin Ming, Bob 
4408 Moore.
4409
4410 Fixed a regression introduced in version 20100331 within the table 
4411 manager 
4412 where initial table loading could fail. This was introduced in the fix 
4413 for 
4414 AcpiReallocateRootTable. Also, renamed some of fields in the table 
4415 manager 
4416 data structures to clarify their meaning and use.
4417
4418 Fixed a possible allocation overrun during internal object copy in 
4419 AcpiUtCopySimpleObject. The original code did not correctly handle the 
4420 case 
4421 where the object to be copied was a namespace node. Lin Ming. ACPICA BZ 
4422 847.
4423
4424 Updated the allocation dump routine, AcpiUtDumpAllocation and fixed a 
4425 possible access beyond end-of-allocation. Also, now fully validate 
4426 descriptor 
4427 (size and type) before output. Lin Ming, Bob Moore. ACPICA BZ 847
4428
4429 Example Code and Data Size: These are the sizes for the OS-independent 
4430 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4431 debug version of the code includes the debug output trace mechanism and 
4432 has a 
4433 much larger code and data size.
4434
4435   Previous Release:
4436     Non-Debug Version:  87.9K Code, 18.6K Data, 106.5K Total
4437     Debug Version:     163.5K Code, 51.3K Data, 214.8K Total
4438   Current Release:
4439     Non-Debug Version:  88.4K Code, 18.8K Data, 107.2K Total
4440     Debug Version:     164.2K Code, 51.5K Data, 215.7K Total
4441
4442 2) iASL Compiler/Disassembler and Tools:
4443
4444 iASL: Implemented Min/Max/Len/Gran validation for address resource 
4445 descriptors. This change implements validation for the address fields 
4446 that 
4447 are common to all address-type resource descriptors. These checks are 
4448 implemented: Checks for valid Min/Max, length within the Min/Max window, 
4449 valid granularity, Min/Max a multiple of granularity, and _MIF/_MAF as 
4450 per 
4451 table 6-40 in the ACPI 4.0a specification. Also split the large 
4452 aslrestype1.c 
4453 and aslrestype2.c files into five new files. ACPICA BZ 840.
4454
4455 iASL: Added support for the _Wxx predefined names. This support was 
4456 missing 
4457 and these names were not recognized by the compiler as valid predefined 
4458 names. ACPICA BZ 851.
4459
4460 iASL: Added an error for all predefined names that are defined to return 
4461 no 
4462 value and thus must be implemented as Control Methods. These include all 
4463 of 
4464 the _Lxx, _Exx, _Wxx, and _Qxx names, as well as some other miscellaneous 
4465 names such as _DIS, _INI, _IRC, _OFF, _ON, and _PSx. ACPICA BZ 850, 856.
4466
4467 iASL: Implemented the -ts option to emit hex AML data in ASL format, as 
4468 an 
4469 ASL Buffer. Allows ACPI tables to be easily included within ASL files, to 
4470 be 
4471 dynamically loaded via the Load() operator. Also cleaned up output for 
4472 the 
4473 -
4474 ta and -tc options. ACPICA BZ 853.
4475
4476 Tests: Added a new file with examples of extended iASL error checking. 
4477 Demonstrates the advanced error checking ability of the iASL compiler. 
4478 Available at tests/misc/badcode.asl.
4479
4480 ----------------------------------------
4481 31 March 2010. Summary of changes for version 20100331:
4482
4483 1) ACPI CA Core Subsystem:
4484
4485 Completed a major update for the GPE support in order to improve support 
4486 for 
4487 shared GPEs and to simplify both host OS and ACPICA code. Added a 
4488 reference 
4489 count mechanism to support shared GPEs that require multiple device 
4490 drivers. 
4491 Several external interfaces have changed. One external interface has been 
4492 removed. One new external interface was added. Most of the GPE external 
4493 interfaces now use the GPE spinlock instead of the events mutex (and the 
4494 Flags parameter for many GPE interfaces has been removed.) See the 
4495 updated 
4496 ACPICA Programmer Reference for details. Matthew Garrett, Bob Moore, 
4497 Rafael 
4498 Wysocki. ACPICA BZ 831.
4499
4500 Changed:
4501     AcpiEnableGpe, AcpiDisableGpe, AcpiClearGpe, AcpiGetGpeStatus
4502 Removed:
4503     AcpiSetGpeType
4504 New:
4505     AcpiSetGpe
4506
4507 Implemented write support for DataTable operation regions. These regions 
4508 are 
4509 defined via the DataTableRegion() operator. Previously, only read support 
4510 was 
4511 implemented. The ACPI specification allows DataTableRegions to be 
4512 read/write, 
4513 however.
4514
4515 Implemented a new subsystem option to force a copy of the DSDT to local 
4516 memory. Optionally copy the entire DSDT to local memory (instead of 
4517 simply 
4518 mapping it.) There are some (albeit very rare) BIOSs that corrupt or 
4519 replace 
4520 the original DSDT, creating the need for this option. Default is FALSE, 
4521 do 
4522 not copy the DSDT.
4523
4524 Implemented detection of a corrupted or replaced DSDT. This change adds 
4525 support to detect a DSDT that has been corrupted and/or replaced from 
4526 outside 
4527 the OS (by firmware). This is typically catastrophic for the system, but 
4528 has 
4529 been seen on some machines. Once this problem has been detected, the DSDT 
4530 copy option can be enabled via system configuration. Lin Ming, Bob Moore.
4531
4532 Fixed two problems with AcpiReallocateRootTable during the root table 
4533 copy. 
4534 When copying the root table to the new allocation, the length used was 
4535 incorrect. The new size was used instead of the current table size, 
4536 meaning 
4537 too much data was copied. Also, the count of available slots for ACPI 
4538 tables 
4539 was not set correctly. Alexey Starikovskiy, Bob Moore.
4540
4541 Example Code and Data Size: These are the sizes for the OS-independent 
4542 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4543 debug version of the code includes the debug output trace mechanism and 
4544 has a 
4545 much larger code and data size.
4546
4547   Previous Release:
4548     Non-Debug Version:  87.5K Code, 18.4K Data, 105.9K Total
4549     Debug Version:     163.4K Code, 51.1K Data, 214.5K Total
4550   Current Release:
4551     Non-Debug Version:  87.9K Code, 18.6K Data, 106.5K Total
4552     Debug Version:     163.5K Code, 51.3K Data, 214.8K Total
4553
4554 2) iASL Compiler/Disassembler and Tools:
4555
4556 iASL: Implement limited typechecking for values returned from predefined 
4557 control methods. The type of any returned static (unnamed) object is now 
4558 validated. For example, Return(1). ACPICA BZ 786.
4559
4560 iASL: Fixed a predefined name object verification regression. Fixes a 
4561 problem 
4562 introduced in version 20100304. An error is incorrectly generated if a 
4563 predefined name is declared as a static named object with a value defined 
4564 using the keywords "Zero", "One", or "Ones". Lin Ming.
4565
4566 iASL: Added Windows 7 support for the -g option (get local ACPI tables) 
4567 by 
4568 reducing the requested registry access rights. ACPICA BZ 842.
4569
4570 Disassembler: fixed a possible fault when generating External() 
4571 statements. 
4572 Introduced in commit ae7d6fd: Properly handle externals with parent-
4573 prefix 
4574 (carat). Fixes a string length allocation calculation. Lin Ming.
4575
4576 ----------------------------------------
4577 04 March 2010. Summary of changes for version 20100304:
4578
4579 1) ACPI CA Core Subsystem:
4580
4581 Fixed a possible problem with the AML Mutex handling function 
4582 AcpiExReleaseMutex where the function could fault under the very rare 
4583 condition when the interpreter has blocked, the interpreter lock is 
4584 released, 
4585 the interpreter is then reentered via the same thread, and attempts to 
4586 acquire an AML mutex that was previously acquired. FreeBSD report 140979. 
4587 Lin 
4588 Ming.
4589
4590 Implemented additional configuration support for the AML "Debug Object". 
4591 Output from the debug object can now be enabled via a global variable, 
4592 AcpiGbl_EnableAmlDebugObject. This will assist with remote machine 
4593 debugging. 
4594 This debug output is now available in the release version of ACPICA 
4595 instead 
4596 of just the debug version. Also, the entire debug output module can now 
4597 be 
4598 configured out of the ACPICA build if desired. One new file added, 
4599 executer/exdebug.c. Lin Ming, Bob Moore.
4600
4601 Added header support for the ACPI MCHI table (Management Controller Host 
4602 Interface Table). This table was added in ACPI 4.0, but the defining 
4603 document 
4604 has only recently become available.
4605
4606 Standardized output of integer values for ACPICA warnings/errors. Always 
4607 use 
4608 0x prefix for hex output, always use %u for unsigned integer decimal 
4609 output. 
4610 Affects ACPI_INFO, ACPI_ERROR, ACPI_EXCEPTION, and ACPI_WARNING (about 
4611 400 
4612 invocations.) These invocations were converted from the original 
4613 ACPI_DEBUG_PRINT invocations and were not consistent. ACPICA BZ 835.
4614
4615 Example Code and Data Size: These are the sizes for the OS-independent 
4616 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4617 debug version of the code includes the debug output trace mechanism and 
4618 has a 
4619 much larger code and data size.
4620
4621   Previous Release:
4622     Non-Debug Version:  87.1K Code, 18.0K Data, 105.1K Total
4623     Debug Version:     163.5K Code, 50.9K Data, 214.4K Total
4624   Current Release:
4625     Non-Debug Version:  87.5K Code, 18.4K Data, 105.9K Total
4626     Debug Version:     163.4K Code, 51.1K Data, 214.5K Total
4627
4628 2) iASL Compiler/Disassembler and Tools:
4629
4630 iASL: Implemented typechecking support for static (non-control method) 
4631 predefined named objects that are declared with the Name() operator. For 
4632 example, the type of this object is now validated to be of type Integer: 
4633 Name(_BBN, 1). This change migrates the compiler to using the core 
4634 predefined 
4635 name table instead of maintaining a local version. Added a new file, 
4636 aslpredef.c. ACPICA BZ 832.
4637
4638 Disassembler: Added support for the ACPI 4.0 MCHI table.
4639
4640 ----------------------------------------
4641 21 January 2010. Summary of changes for version 20100121:
4642
4643 1) ACPI CA Core Subsystem:
4644
4645 Added the 2010 copyright to all module headers and signons. This affects 
4646 virtually every file in the ACPICA core subsystem, the iASL compiler, the 
4647 tools/utilities, and the test suites.
4648
4649 Implemented a change to the AcpiGetDevices interface to eliminate 
4650 unnecessary 
4651 invocations of the _STA method. In the case where a specific _HID is 
4652 requested, do not run _STA until a _HID match is found. This eliminates 
4653 potentially dozens of _STA calls during a search for a particular 
4654 device/HID, 
4655 which in turn can improve boot times. ACPICA BZ 828. Lin Ming.
4656
4657 Implemented an additional repair for predefined method return values. 
4658 Attempt 
4659 to repair unexpected NULL elements within returned Package objects. 
4660 Create 
4661 an 
4662 Integer of value zero, a NULL String, or a zero-length Buffer as 
4663 appropriate. 
4664 ACPICA BZ 818. Lin Ming, Bob Moore.
4665
4666 Removed the obsolete ACPI_INTEGER data type. This type was introduced as 
4667 the 
4668 code was migrated from ACPI 1.0 (with 32-bit AML integers) to ACPI 2.0 
4669 (with 
4670 64-bit AML integers). It is now obsolete and this change removes it from 
4671 the 
4672 ACPICA code base, replaced by UINT64. The original typedef has been 
4673 retained 
4674 for now for compatibility with existing device driver code. ACPICA BZ 
4675 824.
4676
4677 Removed the unused UINT32_STRUCT type, and the obsolete Integer64 field 
4678 in 
4679 the parse tree object.
4680
4681 Added additional warning options for the gcc-4 generation. Updated the 
4682 source 
4683 accordingly. This includes some code restructuring to eliminate 
4684 unreachable 
4685 code, elimination of some gotos, elimination of unused return values, 
4686 some 
4687 additional casting, and removal of redundant declarations.
4688
4689 Example Code and Data Size: These are the sizes for the OS-independent 
4690 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4691 debug version of the code includes the debug output trace mechanism and 
4692 has a 
4693 much larger code and data size.
4694
4695   Previous Release:
4696     Non-Debug Version:  87.0K Code, 18.0K Data, 105.0K Total
4697     Debug Version:     163.4K Code, 50.8K Data, 214.2K Total
4698   Current Release:
4699     Non-Debug Version:  87.1K Code, 18.0K Data, 105.1K Total
4700     Debug Version:     163.5K Code, 50.9K Data, 214.4K Total
4701
4702 2) iASL Compiler/Disassembler and Tools:
4703
4704 No functional changes for this release.
4705
4706 ----------------------------------------
4707 14 December 2009. Summary of changes for version 20091214:
4708
4709 1) ACPI CA Core Subsystem:
4710
4711 Enhanced automatic data type conversions for predefined name repairs. 
4712 This 
4713 change expands the automatic repairs/conversions for predefined name 
4714 return 
4715 values to make Integers, Strings, and Buffers fully interchangeable. 
4716 Also, 
4717
4718 Buffer can be converted to a Package of Integers if necessary. The 
4719 nsrepair.c 
4720 module was completely restructured. Lin Ming, Bob Moore.
4721
4722 Implemented automatic removal of null package elements during predefined 
4723 name 
4724 repairs. This change will automatically remove embedded and trailing NULL 
4725 package elements from returned package objects that are defined to 
4726 contain 
4727
4728 variable number of sub-packages. The driver is then presented with a 
4729 package 
4730 with no null elements to deal with. ACPICA BZ 819.
4731
4732 Implemented a repair for the predefined _FDE and _GTM names. The expected 
4733 return value for both names is a Buffer of 5 DWORDs. This repair fixes 
4734 two 
4735 possible problems (both seen in the field), where a package of integers 
4736 is 
4737 returned, or a buffer of BYTEs is returned. With assistance from Jung-uk 
4738 Kim.
4739
4740 Implemented additional module-level code support. This change will 
4741 properly 
4742 execute module-level code that is not at the root of the namespace (under 
4743
4744 Device object, etc.). Now executes the code within the current scope 
4745 instead 
4746 of the root. ACPICA BZ 762. Lin Ming.
4747
4748 Fixed possible mutex acquisition errors when running _REG methods. Fixes 
4749
4750 problem where mutex errors can occur when running a _REG method that is 
4751 in 
4752 the same scope as a method-defined operation region or an operation 
4753 region 
4754 under a module-level IF block. This type of code is rare, so the problem 
4755 has 
4756 not been seen before. ACPICA BZ 826. Lin Ming, Bob Moore.
4757
4758 Fixed a possible memory leak during module-level code execution. An 
4759 object 
4760 could be leaked for each block of executed module-level code if the 
4761 interpreter slack mode is enabled This change deletes any implicitly 
4762 returned 
4763 object from the module-level code block. Lin Ming.
4764
4765 Removed messages for successful predefined repair(s). The repair 
4766 mechanism 
4767 was considered too wordy. Now, messages are only unconditionally emitted 
4768 if 
4769 the return object cannot be repaired. Existing messages for successful 
4770 repairs were converted to ACPI_DEBUG_PRINT messages for now. ACPICA BZ 
4771 827.
4772
4773 Example Code and Data Size: These are the sizes for the OS-independent 
4774 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4775 debug version of the code includes the debug output trace mechanism and 
4776 has a 
4777 much larger code and data size.
4778
4779   Previous Release:
4780     Non-Debug Version:  86.6K Code, 18.2K Data, 104.8K Total
4781     Debug Version:     162.7K Code, 50.8K Data, 213.5K Total
4782   Current Release:
4783     Non-Debug Version:  87.0K Code, 18.0K Data, 105.0K Total
4784     Debug Version:     163.4K Code, 50.8K Data, 214.2K Total
4785
4786 2) iASL Compiler/Disassembler and Tools:
4787
4788 iASL: Fixed a regression introduced in 20091112 where intermediate .SRC 
4789 files 
4790 were no longer automatically removed at the termination of the compile.
4791
4792 acpiexec: Implemented the -f option to specify default region fill value. 
4793 This option specifies the value used to initialize buffers that simulate 
4794 operation regions. Default value is zero. Useful for debugging problems 
4795 that 
4796 depend on a specific initial value for a region or field.
4797
4798 ----------------------------------------
4799 12 November 2009. Summary of changes for version 20091112:
4800
4801 1) ACPI CA Core Subsystem:
4802
4803 Implemented a post-order callback to AcpiWalkNamespace. The existing 
4804 interface only has a pre-order callback. This change adds an additional 
4805 parameter for a post-order callback which will be more useful for bus 
4806 scans. 
4807 ACPICA BZ 779. Lin Ming. Updated the ACPICA Programmer Reference.
4808
4809 Modified the behavior of the operation region memory mapping cache for 
4810 SystemMemory. Ensure that the memory mappings created for operation 
4811 regions 
4812 do not cross 4K page boundaries. Crossing a page boundary while mapping 
4813 regions can cause kernel warnings on some hosts if the pages have 
4814 different 
4815 attributes. Such regions are probably BIOS bugs, and this is the 
4816 workaround. 
4817 Linux BZ 14445. Lin Ming.
4818
4819 Implemented an automatic repair for predefined methods that must return 
4820 sorted lists. This change will repair (by sorting) packages returned by 
4821 _ALR, 
4822 _PSS, and _TSS. Drivers can now assume that the packages are correctly 
4823 sorted 
4824 and do not contain NULL package elements. Adds one new file, 
4825 namespace/nsrepair2.c. ACPICA BZ 784. Lin Ming, Bob Moore.
4826
4827 Fixed a possible fault during predefined name validation if a return 
4828 Package 
4829 object contains NULL elements. Also adds a warning if a NULL element is 
4830 followed by any non-null elements. ACPICA BZ 813, 814. Future enhancement 
4831 may 
4832 include repair or removal of all such NULL elements where possible.
4833
4834 Implemented additional module-level executable AML code support. This 
4835 change 
4836 will execute module-level code that is not at the root of the namespace 
4837 (under a Device object, etc.) at table load time. Module-level executable 
4838 AML 
4839 code has been illegal since ACPI 2.0. ACPICA BZ 762. Lin Ming.
4840
4841 Implemented a new internal function to create Integer objects. This 
4842 function 
4843 simplifies miscellaneous object creation code. ACPICA BZ 823.
4844
4845 Reduced the severity of predefined repair messages, Warning to Info. 
4846 Since 
4847 the object was successfully repaired, a warning is too severe. Reduced to 
4848 an 
4849 info message for now. These messages may eventually be changed to debug-
4850 only. 
4851 ACPICA BZ 812.
4852
4853 Example Code and Data Size: These are the sizes for the OS-independent 
4854 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4855 debug version of the code includes the debug output trace mechanism and 
4856 has a 
4857 much larger code and data size.
4858
4859   Previous Release:
4860     Non-Debug Version:  85.8K Code, 18.0K Data, 103.8K Total
4861     Debug Version:     161.8K Code, 50.6K Data, 212.4K Total
4862   Current Release:
4863     Non-Debug Version:  86.6K Code, 18.2K Data, 104.8K Total
4864     Debug Version:     162.7K Code, 50.8K Data, 213.5K Total
4865
4866 2) iASL Compiler/Disassembler and Tools:
4867
4868 iASL: Implemented Switch() with While(1) so that Break works correctly. 
4869 This 
4870 change correctly implements the Switch operator with a surrounding 
4871 While(1) 
4872 so that the Break operator works as expected. ACPICA BZ 461. Lin Ming.
4873
4874 iASL: Added a message if a package initializer list is shorter than 
4875 package 
4876 length. Adds a new remark for a Package() declaration if an initializer 
4877 list 
4878 exists, but is shorter than the declared length of the package. Although 
4879 technically legal, this is probably a coding error and it is seen in the 
4880 field. ACPICA BZ 815. Lin Ming, Bob Moore.
4881
4882 iASL: Fixed a problem where the compiler could fault after the maximum 
4883 number 
4884 of errors was reached (200).
4885
4886 acpixtract: Fixed a possible warning for pointer cast if the compiler 
4887 warning 
4888 level set very high.
4889
4890 ----------------------------------------
4891 13 October 2009. Summary of changes for version 20091013:
4892
4893 1) ACPI CA Core Subsystem:
4894
4895 Fixed a problem where an Operation Region _REG method could be executed 
4896 more 
4897 than once. If a custom address space handler is installed by the host 
4898 before 
4899 the "initialize operation regions" phase of the ACPICA initialization, 
4900 any 
4901 _REG methods for that address space could be executed twice. This change 
4902 fixes the problem. ACPICA BZ 427. Lin Ming.
4903
4904 Fixed a possible memory leak for the Scope() ASL operator. When the exact 
4905 invocation of "Scope(\)" is executed (change scope to root), one internal 
4906 operand object was leaked. Lin Ming.
4907
4908 Implemented a run-time repair for the _MAT predefined method. If the _MAT 
4909 return value is defined as a Field object in the AML, and the field
4910 size is less than or equal to the default width of an integer (32 or 
4911 64),_MAT 
4912 can incorrectly return an Integer instead of a Buffer. ACPICA now 
4913 automatically repairs this problem. ACPICA BZ 810.
4914
4915 Implemented a run-time repair for the _BIF and _BIX predefined methods. 
4916 The 
4917 "OEM Information" field is often incorrectly returned as an Integer with 
4918 value zero if the field is not supported by the platform. This is due to 
4919 an 
4920 ambiguity in the ACPI specification. The field should always be a string. 
4921 ACPICA now automatically repairs this problem by returning a NULL string 
4922 within the returned Package. ACPICA BZ 807.
4923
4924 Example Code and Data Size: These are the sizes for the OS-independent 
4925 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4926 debug version of the code includes the debug output trace mechanism and 
4927 has a 
4928 much larger code and data size.
4929
4930   Previous Release:
4931     Non-Debug Version:  85.6K Code, 18.0K Data, 103.6K Total
4932     Debug Version:     161.7K Code, 50.9K Data, 212.6K Total
4933   Current Release:
4934     Non-Debug Version:  85.8K Code, 18.0K Data, 103.8K Total
4935     Debug Version:     161.8K Code, 50.6K Data, 212.4K Total
4936
4937 2) iASL Compiler/Disassembler and Tools:
4938
4939 Disassembler: Fixed a problem where references to external symbols that 
4940 contained one or more parent-prefixes (carats) were not handled 
4941 correctly, 
4942 possibly causing a fault. ACPICA BZ 806. Lin Ming.
4943
4944 Disassembler: Restructured the code so that all functions that handle 
4945 external symbols are in a single module. One new file is added, 
4946 common/dmextern.c.
4947
4948 AML Debugger: Added a max count argument for the Batch command (which 
4949 executes multiple predefined methods within the namespace.)
4950
4951 iASL: Updated the compiler documentation (User Reference.) Available at 
4952 http://www.acpica.org/documentation/. ACPICA BZ 750.
4953
4954 AcpiXtract: Updated for Lint and other formatting changes. Close all open 
4955 files.
4956
4957 ----------------------------------------
4958 03 September 2009. Summary of changes for version 20090903:
4959
4960 1) ACPI CA Core Subsystem:
4961
4962 For Windows Vista compatibility, added the automatic execution of an _INI 
4963 method located at the namespace root (\_INI). This method is executed at 
4964 table load time. This support is in addition to the automatic execution 
4965 of 
4966 \_SB._INI. Lin Ming.
4967
4968 Fixed a possible memory leak in the interpreter for AML package objects 
4969 if 
4970 the package initializer list is longer than the defined size of the 
4971 package. 
4972 This apparently can only happen if the BIOS changes the package size on 
4973 the 
4974 fly (seen in a _PSS object), as ASL compilers do not allow this. The 
4975 interpreter will truncate the package to the defined size (and issue an 
4976 error 
4977 message), but previously could leave the extra objects undeleted if they 
4978 were 
4979 pre-created during the argument processing (such is the case if the 
4980 package 
4981 consists of a number of sub-packages as in the _PSS.) ACPICA BZ 805.
4982
4983 Fixed a problem seen when a Buffer or String is stored to itself via ASL. 
4984 This has been reported in the field. Previously, ACPICA would zero out 
4985 the 
4986 buffer/string. Now, the operation is treated as a noop. Provides Windows 
4987 compatibility. ACPICA BZ 803. Lin Ming.
4988
4989 Removed an extraneous error message for ASL constructs of the form 
4990 Store(LocalX,LocalX) when LocalX is uninitialized. These curious 
4991 statements 
4992 are seen in many BIOSs and are once again treated as NOOPs and no error 
4993 is 
4994 emitted when they are encountered. ACPICA BZ 785.
4995
4996 Fixed an extraneous warning message if a _DSM reserved method returns a 
4997 Package object. _DSM can return any type of object, so validation on the 
4998 return type cannot be performed. ACPICA BZ 802.
4999
5000 Example Code and Data Size: These are the sizes for the OS-independent 
5001 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5002 debug version of the code includes the debug output trace mechanism and 
5003 has a 
5004 much larger code and data size.
5005
5006   Previous Release:
5007     Non-Debug Version:  85.5K Code, 18.0K Data, 103.5K Total
5008     Debug Version:     161.6K Code, 50.9K Data, 212.5K Total
5009   Current Release:
5010     Non-Debug Version:  85.6K Code, 18.0K Data, 103.6K Total
5011     Debug Version:     161.7K Code, 50.9K Data, 212.6K Total
5012
5013 2) iASL Compiler/Disassembler and Tools:
5014
5015 iASL: Fixed a problem with the use of the Alias operator and Resource 
5016 Templates. The correct alias is now constructed and no error is emitted. 
5017 ACPICA BZ 738.
5018
5019 iASL: Implemented the -I option to specify additional search directories 
5020 for 
5021 include files. Allows multiple additional search paths for include files. 
5022 Directories are searched in the order specified on the command line 
5023 (after 
5024 the local directory is searched.) ACPICA BZ 800.
5025
5026 iASL: Fixed a problem where the full pathname for include files was not 
5027 emitted for warnings/errors. This caused the IDE support to not work 
5028 properly. ACPICA BZ 765.
5029
5030 iASL: Implemented the -@ option to specify a Windows-style response file 
5031 containing additional command line options. ACPICA BZ 801.
5032
5033 AcpiExec: Added support to load multiple AML files simultaneously (such 
5034 as 
5035
5036 DSDT and multiple SSDTs). Also added support for wildcards within the AML 
5037 pathname. These features allow all machine tables to be easily loaded and 
5038 debugged together. ACPICA BZ 804.
5039
5040 Disassembler: Added missing support for disassembly of HEST table Error 
5041 Bank 
5042 subtables. 
5043
5044 ----------------------------------------
5045 30 July 2009. Summary of changes for version 20090730:
5046
5047 The ACPI 4.0 implementation for ACPICA is complete with this release.
5048
5049 1) ACPI CA Core Subsystem:
5050
5051 ACPI 4.0: Added header file support for all new and changed ACPI tables. 
5052 Completely new tables are: IBFT, IVRS, MSCT, and WAET. Tables that are 
5053 new 
5054 for ACPI 4.0, but have previously been supported in ACPICA are: CPEP, 
5055 BERT, 
5056 EINJ, ERST, and HEST. Other newly supported tables are: UEFI and WDAT. 
5057 There 
5058 have been some ACPI 4.0 changes to other existing tables. Split the large 
5059 actbl1.h header into the existing actbl2.h header. ACPICA BZ 774.
5060
5061 ACPI 4.0: Implemented predefined name validation for all new names. There 
5062 are 
5063 31 new names in ACPI 4.0. The predefined validation module was split into 
5064 two 
5065 files. The new file is namespace/nsrepair.c. ACPICA BZ 770.
5066
5067 Implemented support for so-called "module-level executable code". This is 
5068 executable AML code that exists outside of any control method and is 
5069 intended 
5070 to be executed at table load time. Although illegal since ACPI 2.0, this 
5071 type 
5072 of code still exists and is apparently still being created. Blocks of 
5073 this 
5074 code are now detected and executed as intended. Currently, the code 
5075 blocks 
5076 must exist under either an If, Else, or While construct; these are the 
5077 typical cases seen in the field. ACPICA BZ 762. Lin Ming.
5078
5079 Implemented an automatic dynamic repair for predefined names that return 
5080 nested Package objects. This applies to predefined names that are defined 
5081 to 
5082 return a variable-length Package of sub-packages. If the number of sub-
5083 packages is one, BIOS code is occasionally seen that creates a simple 
5084 single 
5085 package with no sub-packages. This code attempts to fix the problem by 
5086 wrapping a new package object around the existing package. These methods 
5087 can 
5088 be repaired: _ALR, _CSD, _HPX, _MLS, _PRT, _PSS, _TRT, and _TSS. ACPICA 
5089 BZ 
5090 790.
5091
5092 Fixed a regression introduced in 20090625 for the AcpiGetDevices 
5093 interface. 
5094 The _HID/_CID matching was broken and no longer matched IDs correctly. 
5095 ACPICA 
5096 BZ 793.
5097
5098 Fixed a problem with AcpiReset where the reset would silently fail if the 
5099 register was one of the protected I/O ports. AcpiReset now bypasses the 
5100 port 
5101 validation mechanism. This may eventually be driven into the 
5102 AcpiRead/Write 
5103 interfaces.
5104
5105 Fixed a regression related to the recent update of the AcpiRead/Write 
5106 interfaces. A sleep/suspend could fail if the optional PM2 Control 
5107 register 
5108 does not exist during an attempt to write the Bus Master Arbitration bit. 
5109 (However, some hosts already delete the code that writes this bit, and 
5110 the 
5111 code may in fact be obsolete at this date.) ACPICA BZ 799.
5112
5113 Fixed a problem where AcpiTerminate could fault if inadvertently called 
5114 twice 
5115 in succession. ACPICA BZ 795.
5116
5117 Example Code and Data Size: These are the sizes for the OS-independent 
5118 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5119 debug version of the code includes the debug output trace mechanism and 
5120 has a 
5121 much larger code and data size.
5122
5123   Previous Release:
5124     Non-Debug Version:  84.7K Code, 17.8K Data, 102.5K Total
5125     Debug Version:     160.5K Code, 50.6K Data, 211.1K Total
5126   Current Release:
5127     Non-Debug Version:  85.5K Code, 18.0K Data, 103.5K Total
5128     Debug Version:     161.6K Code, 50.9K Data, 212.5K Total
5129
5130 2) iASL Compiler/Disassembler and Tools:
5131
5132 ACPI 4.0: Implemented disassembler support for all new ACPI tables and 
5133 changes to existing tables. ACPICA BZ 775.
5134
5135 ----------------------------------------
5136 25 June 2009. Summary of changes for version 20090625:
5137
5138 The ACPI 4.0 Specification was released on June 16 and is available at 
5139 www.acpi.info. ACPICA implementation of ACPI 4.0 is underway and will 
5140 continue for the next few releases.
5141
5142 1) ACPI CA Core Subsystem:
5143
5144 ACPI 4.0: Implemented interpreter support for the IPMI operation region 
5145 address space. Includes support for bi-directional data buffers and an 
5146 IPMI 
5147 address space handler (to be installed by an IPMI device driver.) ACPICA 
5148 BZ 
5149 773. Lin Ming.
5150
5151 ACPI 4.0: Added changes for existing ACPI tables - FACS and SRAT. 
5152 Includes 
5153 support in both the header files and the disassembler.
5154
5155 Completed a major update for the AcpiGetObjectInfo external interface. 
5156 Changes include:
5157  - Support for variable, unlimited length HID, UID, and CID strings.
5158  - Support Processor objects the same as Devices (HID,UID,CID,ADR,STA, 
5159 etc.)
5160  - Call the _SxW power methods on behalf of a device object.
5161  - Determine if a device is a PCI root bridge.
5162  - Change the ACPI_BUFFER parameter to ACPI_DEVICE_INFO.
5163 These changes will require an update to all callers of this interface. 
5164 See 
5165 the updated ACPICA Programmer Reference for details. One new source file 
5166 has 
5167 been added - utilities/utids.c. ACPICA BZ 368, 780.
5168
5169 Updated the AcpiRead and AcpiWrite external interfaces to support 64-bit 
5170 transfers. The Value parameter has been extended from 32 bits to 64 bits 
5171 in 
5172 order to support new ACPI 4.0 tables. These changes will require an 
5173 update 
5174 to 
5175 all callers of these interfaces. See the ACPICA Programmer Reference for 
5176 details. ACPICA BZ 768.
5177
5178 Fixed several problems with AcpiAttachData. The handler was not invoked 
5179 when 
5180 the host node was deleted. The data sub-object was not automatically 
5181 deleted 
5182 when the host node was deleted. The interface to the handler had an 
5183 unused 
5184 parameter, this was removed. ACPICA BZ 778.
5185
5186 Enhanced the function that dumps ACPI table headers. All non-printable 
5187 characters in the string fields are now replaced with '?' (Signature, 
5188 OemId, 
5189 OemTableId, and CompilerId.) ACPI tables with non-printable characters in 
5190 these fields are occasionally seen in the field. ACPICA BZ 788.
5191
5192 Fixed a problem with predefined method repair code where the code that 
5193 attempts to repair/convert an object of incorrect type is only executed 
5194 on 
5195 the first time the predefined method is called. The mechanism that 
5196 disables 
5197 warnings on subsequent calls was interfering with the repair mechanism. 
5198 ACPICA BZ 781.
5199
5200 Fixed a possible memory leak in the predefined validation/repair code 
5201 when 
5202
5203 buffer is automatically converted to an expected string object.
5204
5205 Removed obsolete 16-bit files from the distribution and from the current 
5206 git 
5207 tree head. ACPICA BZ 776.
5208
5209 Example Code and Data Size: These are the sizes for the OS-independent 
5210 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5211 debug version of the code includes the debug output trace mechanism and 
5212 has a 
5213 much larger code and data size.
5214
5215   Previous Release:
5216     Non-Debug Version:  83.4K Code, 17.5K Data, 100.9K Total
5217     Debug Version:     158.9K Code, 50.0K Data, 208.9K Total
5218   Current Release:
5219     Non-Debug Version:  84.7K Code, 17.8K Data, 102.5K Total
5220     Debug Version:     160.5K Code, 50.6K Data, 211.1K Total
5221
5222 2) iASL Compiler/Disassembler and Tools:
5223
5224 ACPI 4.0: iASL and Disassembler - implemented support for the new IPMI 
5225 operation region keyword. ACPICA BZ 771, 772. Lin Ming.
5226
5227 ACPI 4.0: iASL - implemented compile-time validation support for all new 
5228 predefined names and control methods (31 total). ACPICA BZ 769.
5229
5230 ----------------------------------------
5231 21 May 2009. Summary of changes for version 20090521:
5232
5233 1) ACPI CA Core Subsystem:
5234
5235 Disabled the preservation of the SCI enable bit in the PM1 control 
5236 register. 
5237 The SCI enable bit (bit 0, SCI_EN) is defined by the ACPI specification 
5238 to 
5239 be 
5240 a "preserved" bit - "OSPM always preserves this bit position", section 
5241 4.7.3.2.1. However, some machines fail if this bit is in fact preserved 
5242 because the bit needs to be explicitly set by the OS as a workaround. No 
5243 machines fail if the bit is not preserved. Therefore, ACPICA no longer 
5244 attempts to preserve this bit.
5245
5246 Fixed a problem in AcpiRsGetPciRoutingTableLength where an invalid or 
5247 incorrectly formed _PRT package could cause a fault. Added validation to 
5248 ensure that each package element is actually a sub-package.
5249
5250 Implemented a new interface to install or override a single control 
5251 method, 
5252 AcpiInstallMethod. This interface is useful when debugging in order to 
5253 repair 
5254 an existing method or to install a missing method without having to 
5255 override 
5256 the entire ACPI table. See the ACPICA Programmer Reference for use and 
5257 examples. Lin Ming, Bob Moore.
5258
5259 Fixed several reference count issues with the DdbHandle object that is 
5260 created from a Load or LoadTable operator. Prevent premature deletion of 
5261 the 
5262 object. Also, mark the object as invalid once the table has been 
5263 unloaded. 
5264 This is needed because the handle itself may not be deleted after the 
5265 table 
5266 unload, depending on whether it has been stored in a named object by the 
5267 caller. Lin Ming.
5268
5269 Fixed a problem with Mutex Sync Levels. Fixed a problem where if multiple 
5270 mutexes of the same sync level are acquired but then not released in 
5271 strict 
5272 opposite order, the internally maintained Current Sync Level becomes 
5273 confused 
5274 and can cause subsequent execution errors. ACPICA BZ 471.
5275
5276 Changed the allowable release order for ASL mutex objects. The ACPI 4.0 
5277 specification has been changed to make the SyncLevel for mutex objects 
5278 more 
5279 useful. When releasing a mutex, the SyncLevel of the mutex must now be 
5280 the 
5281 same as the current sync level. This makes more sense than the previous 
5282 rule 
5283 (SyncLevel less than or equal). This change updates the code to match the 
5284 specification.
5285
5286 Fixed a problem with the local version of the AcpiOsPurgeCache function. 
5287 The 
5288 (local) cache must be locked during all cache object deletions. Andrew 
5289 Baumann.
5290
5291 Updated the Load operator to use operation region interfaces. This 
5292 replaces 
5293 direct memory mapping with region access calls. Now, all region accesses 
5294 go 
5295 through the installed region handler as they should.
5296
5297 Simplified and optimized the NsGetNextNode function. Reduced parameter 
5298 count 
5299 and reduced code for this frequently used function.
5300
5301 Example Code and Data Size: These are the sizes for the OS-independent 
5302 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5303 debug version of the code includes the debug output trace mechanism and 
5304 has a 
5305 much larger code and data size.
5306
5307   Previous Release:
5308     Non-Debug Version:  82.8K Code, 17.5K Data, 100.3K Total
5309     Debug Version:     158.0K Code, 49.9K Data, 207.9K Total
5310   Current Release:
5311     Non-Debug Version:  83.4K Code, 17.5K Data, 100.9K Total
5312     Debug Version:     158.9K Code, 50.0K Data, 208.9K Total
5313
5314 2) iASL Compiler/Disassembler and Tools:
5315
5316 Disassembler: Fixed some issues with DMAR, HEST, MADT tables. Some 
5317 problems 
5318 with sub-table disassembly and handling invalid sub-tables. Attempt 
5319 recovery 
5320 after an invalid sub-table ID.
5321
5322 ----------------------------------------
5323 22 April 2009. Summary of changes for version 20090422:
5324
5325 1) ACPI CA Core Subsystem:
5326
5327 Fixed a compatibility issue with the recently released I/O port 
5328 protection 
5329 mechanism. For windows compatibility, 1) On a port protection violation, 
5330 simply ignore the request and do not return an exception (allow the 
5331 control 
5332 method to continue execution.) 2) If only part of the request overlaps a 
5333 protected port, read/write the individual ports that are not protected. 
5334 Linux 
5335 BZ 13036. Lin Ming
5336
5337 Enhanced the execution of the ASL/AML BreakPoint operator so that it 
5338 actually 
5339 breaks into the AML debugger if the debugger is present. This matches the 
5340 ACPI-defined behavior.
5341
5342 Fixed several possible warnings related to the use of the configurable 
5343 ACPI_THREAD_ID. This type can now be configured as either an integer or a 
5344 pointer with no warnings. Also fixes several warnings in printf-like 
5345 statements for the 64-bit build when the type is configured as a pointer. 
5346 ACPICA BZ 766, 767.
5347
5348 Fixed a number of possible warnings when compiling with gcc 4+ (depending 
5349 on 
5350 warning options.) Examples include printf formats, aliasing, unused 
5351 globals, 
5352 missing prototypes, missing switch default statements, use of non-ANSI 
5353 library functions, use of non-ANSI constructs. See generate/unix/Makefile 
5354 for 
5355 a list of warning options used with gcc 3 and 4. ACPICA BZ 735.
5356
5357 Example Code and Data Size: These are the sizes for the OS-independent 
5358 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5359 debug version of the code includes the debug output trace mechanism and 
5360 has a 
5361 much larger code and data size.
5362
5363   Previous Release:
5364     Non-Debug Version:  82.6K Code, 17.6K Data, 100.2K Total
5365     Debug Version:     157.7K Code, 49.9K Data, 207.6K Total
5366   Current Release:
5367     Non-Debug Version:  82.8K Code, 17.5K Data, 100.3K Total
5368     Debug Version:     158.0K Code, 49.9K Data, 207.9K Total
5369
5370 2) iASL Compiler/Disassembler and Tools:
5371
5372 iASL: Fixed a generation warning from Bison 2.3 and fixed several 
5373 warnings 
5374 on 
5375 the 64-bit build.
5376
5377 iASL: Fixed a problem where the Unix/Linux versions of the compiler could 
5378 not 
5379 correctly digest Windows/DOS formatted files (with CR/LF).
5380
5381 iASL: Added a new option for "quiet mode" (-va) that produces only the 
5382 compilation summary, not individual errors and warnings. Useful for large 
5383 batch compilations.
5384
5385 AcpiExec: Implemented a new option (-z) to enable a forced 
5386 semaphore/mutex 
5387 timeout that can be used to detect hang conditions during execution of 
5388 AML 
5389 code (includes both internal semaphores and AML-defined mutexes and 
5390 events.)
5391
5392 Added new makefiles for the generation of acpica in a generic unix-like 
5393 environment. These makefiles are intended to generate the acpica tools 
5394 and 
5395 utilities from the original acpica git source tree structure.
5396
5397 Test Suites: Updated and cleaned up the documentation files. Updated the 
5398 copyrights to 2009, affecting all source files. Use the new version of 
5399 iASL 
5400 with quiet mode. Increased the number of available semaphores in the 
5401 Windows 
5402 OSL, allowing the aslts to execute fully on Windows. For the Unix OSL, 
5403 added 
5404 an alternate implementation of the semaphore timeout to allow aslts to 
5405 execute fully on Cygwin.
5406
5407 ----------------------------------------
5408 20 March 2009. Summary of changes for version 20090320:
5409
5410 1) ACPI CA Core Subsystem:
5411
5412 Fixed a possible race condition between AcpiWalkNamespace and dynamic 
5413 table 
5414 unloads. Added a reader/writer locking mechanism to allow multiple 
5415 concurrent 
5416 namespace walks (readers), but block a dynamic table unload until it can 
5417 gain 
5418 exclusive write access to the namespace. This fixes a problem where a 
5419 table 
5420 unload could (possibly catastrophically) delete the portion of the 
5421 namespace 
5422 that is currently being examined by a walk. Adds a new file, utlock.c, 
5423 that 
5424 implements the reader/writer lock mechanism. ACPICA BZ 749.
5425
5426 Fixed a regression introduced in version 20090220 where a change to the 
5427 FADT 
5428 handling could cause the ACPICA subsystem to access non-existent I/O 
5429 ports.
5430
5431 Modified the handling of FADT register and table (FACS/DSDT) addresses. 
5432 The 
5433 FADT can contain both 32-bit and 64-bit versions of these addresses. 
5434 Previously, the 64-bit versions were favored, meaning that if both 32 and 
5435 64 
5436 versions were valid, but not equal, the 64-bit version was used. This was 
5437 found to cause some machines to fail. Now, in this case, the 32-bit 
5438 version 
5439 is used instead. This now matches the Windows behavior.
5440
5441 Implemented a new mechanism to protect certain I/O ports. Provides 
5442 Microsoft 
5443 compatibility and protects the standard PC I/O ports from access via AML 
5444 code. Adds a new file, hwvalid.c
5445
5446 Fixed a possible extraneous warning message from the FADT support. The 
5447 message warns of a 32/64 length mismatch between the legacy and GAS 
5448 definitions for a register.
5449
5450 Removed the obsolete AcpiOsValidateAddress OSL interface. This interface 
5451 is 
5452 made obsolete by the port protection mechanism above. It was previously 
5453 used 
5454 to validate the entire address range of an operation region, which could 
5455 be 
5456 incorrect if the range included illegal ports, but fields within the 
5457 operation region did not actually access those ports. Validation is now 
5458 performed on a per-field basis instead of the entire region.
5459
5460 Modified the handling of the PM1 Status Register ignored bit (bit 11.) 
5461 Ignored bits must be "preserved" according to the ACPI spec. Usually, 
5462 this 
5463 means a read/modify/write when writing to the register. However, for 
5464 status 
5465 registers, writing a one means clear the event. Writing a zero means 
5466 preserve 
5467 the event (do not clear.) This behavior is clarified in the ACPI 4.0 
5468 spec, 
5469 and the ACPICA code now simply always writes a zero to the ignored bit.
5470
5471 Modified the handling of ignored bits for the PM1 A/B Control Registers. 
5472 As 
5473 per the ACPI specification, for the control registers, preserve 
5474 (read/modify/write) all bits that are defined as either reserved or 
5475 ignored.
5476
5477 Updated the handling of write-only bits in the PM1 A/B Control Registers. 
5478 When reading the register, zero the write-only bits as per the ACPI spec. 
5479 ACPICA BZ 443. Lin Ming.
5480
5481 Removed "Linux" from the list of supported _OSI strings. Linux no longer 
5482 wants to reply true to this request. The Windows strings are the only 
5483 paths 
5484 through the AML that are tested and known to work properly.
5485
5486   Previous Release:
5487     Non-Debug Version:  82.0K Code, 17.5K Data,  99.5K Total
5488     Debug Version:     156.9K Code, 49.8K Data, 206.7K Total
5489   Current Release:
5490     Non-Debug Version:  82.6K Code, 17.6K Data, 100.2K Total
5491     Debug Version:     157.7K Code, 49.9K Data, 207.6K Total
5492
5493 2) iASL Compiler/Disassembler and Tools:
5494
5495 Acpiexec: Split the large aeexec.c file into two new files, aehandlers.c 
5496 and 
5497 aetables.c
5498
5499 ----------------------------------------
5500 20 February 2009. Summary of changes for version 20090220:
5501
5502 1) ACPI CA Core Subsystem:
5503
5504 Optimized the ACPI register locking. Removed locking for reads from the 
5505 ACPI 
5506 bit registers in PM1 Status, Enable, Control, and PM2 Control. The lock 
5507 is 
5508 not required when reading the single-bit registers. The 
5509 AcpiGetRegisterUnlocked function is no longer needed and has been 
5510 removed. 
5511 This will improve performance for reads on these registers. ACPICA BZ 
5512 760.
5513
5514 Fixed the parameter validation for AcpiRead/Write. Now return 
5515 AE_BAD_PARAMETER if the input register pointer is null, and 
5516 AE_BAD_ADDRESS 
5517 if 
5518 the register has an address of zero. Previously, these cases simply 
5519 returned 
5520 AE_OK. For optional registers such as PM1B status/enable/control, the 
5521 caller 
5522 should check for a valid register address before calling. ACPICA BZ 748.
5523
5524 Renamed the external ACPI bit register access functions. Renamed 
5525 AcpiGetRegister and AcpiSetRegister to clarify the purpose of these 
5526 functions. The new names are AcpiReadBitRegister and 
5527 AcpiWriteBitRegister. 
5528 Also, restructured the code for these functions by simplifying the code 
5529 path 
5530 and condensing duplicate code to reduce code size.
5531
5532 Added new functions to transparently handle the possibly split PM1 A/B 
5533 registers. AcpiHwReadMultiple and AcpiHwWriteMultiple. These two 
5534 functions 
5535 now handle the split registers for PM1 Status, Enable, and Control. 
5536 ACPICA 
5537 BZ 
5538 746.
5539
5540 Added a function to handle the PM1 control registers, 
5541 AcpiHwWritePm1Control. 
5542 This function writes both of the PM1 control registers (A/B). These 
5543 registers 
5544 are different than the PM1 A/B status and enable registers in that 
5545 different 
5546 values can be written to the A/B registers. Most notably, the SLP_TYP 
5547 bits 
5548 can be different, as per the values returned from the _Sx predefined 
5549 methods.
5550
5551 Removed an extra register write within AcpiHwClearAcpiStatus. This 
5552 function 
5553 was writing an optional PM1B status register twice. The existing call to 
5554 the 
5555 low-level AcpiHwRegisterWrite automatically handles a possibly split PM1 
5556 A/B 
5557 register. ACPICA BZ 751.
5558
5559 Split out the PM1 Status registers from the FADT. Added new globals for 
5560 these 
5561 registers (A/B), similar to the way the PM1 Enable registers are handled. 
5562 Instead of overloading the FADT Event Register blocks. This makes the 
5563 code 
5564 clearer and less prone to error.
5565
5566 Fixed the warning message for when the platform contains too many ACPI 
5567 tables 
5568 for the default size of the global root table data structure. The 
5569 calculation 
5570 for the truncation value was incorrect.
5571
5572 Removed the ACPI_GET_OBJECT_TYPE macro. Removed all instances of this 
5573 obsolete macro, since it is now a simple reference to ->common.type. 
5574 There 
5575 were about 150 invocations of the macro across 41 files. ACPICA BZ 755.
5576
5577 Removed the redundant ACPI_BITREG_SLEEP_TYPE_B. This type is the same as 
5578 TYPE_A. Removed this and all related instances. Renamed SLEEP_TYPE_A to 
5579 simply SLEEP_TYPE. ACPICA BZ 754.
5580
5581 Conditionally compile the AcpiSetFirmwareWakingVector64 function. This 
5582 function is only needed on 64-bit host operating systems and is thus not 
5583 included for 32-bit hosts.
5584
5585 Debug output: print the input and result for invocations of the _OSI 
5586 reserved 
5587 control method via the ACPI_LV_INFO debug level. Also, reduced some of 
5588 the 
5589 verbosity of this debug level. Len Brown.
5590
5591 Example Code and Data Size: These are the sizes for the OS-independent 
5592 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5593 debug version of the code includes the debug output trace mechanism and 
5594 has a 
5595 much larger code and data size.
5596
5597   Previous Release:
5598     Non-Debug Version:  82.3K Code, 17.5K Data,  99.8K Total
5599     Debug Version:     157.3K Code, 49.8K Data, 207.1K Total
5600   Current Release:
5601     Non-Debug Version:  82.0K Code, 17.5K Data,  99.5K Total
5602     Debug Version:     156.9K Code, 49.8K Data, 206.7K Total
5603
5604 2) iASL Compiler/Disassembler and Tools:
5605
5606 Disassembler: Decode the FADT PM_Profile field. Emit ascii names for the 
5607 various legal performance profiles.
5608
5609 ----------------------------------------
5610 23 January 2009. Summary of changes for version 20090123:
5611
5612 1) ACPI CA Core Subsystem:
5613
5614 Added the 2009 copyright to all module headers and signons. This affects 
5615 virtually every file in the ACPICA core subsystem, the iASL compiler, and 
5616 the tools/utilities.
5617
5618 Implemented a change to allow the host to override any ACPI table, 
5619 including 
5620 dynamically loaded tables. Previously, only the DSDT could be replaced by 
5621 the 
5622 host. With this change, the AcpiOsTableOverride interface is called for 
5623 each 
5624 table found in the RSDT/XSDT during ACPICA initialization, and also 
5625 whenever 
5626 a table is dynamically loaded via the AML Load operator.
5627
5628 Updated FADT flag definitions, especially the Boot Architecture flags.
5629
5630 Debugger: For the Find command, automatically pad the input ACPI name 
5631 with 
5632 underscores if the name is shorter than 4 characters. This enables a 
5633 match 
5634 with the actual namespace entry which is itself padded with underscores.
5635
5636 Example Code and Data Size: These are the sizes for the OS-independent 
5637 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5638 debug version of the code includes the debug output trace mechanism and 
5639 has a 
5640 much larger code and data size.
5641
5642   Previous Release:
5643     Non-Debug Version:  82.3K Code, 17.4K Data,  99.7K Total
5644     Debug Version:     157.1K Code, 49.7K Data, 206.8K Total
5645   Current Release:
5646     Non-Debug Version:  82.3K Code, 17.5K Data,  99.8K Total
5647     Debug Version:     157.3K Code, 49.8K Data, 207.1K Total
5648
5649 2) iASL Compiler/Disassembler and Tools:
5650
5651 Fix build error under Bison-2.4.
5652
5653 Dissasembler: Enhanced FADT support. Added decoding of the Boot 
5654 Architecture 
5655 flags. Now decode all flags, regardless of the FADT version. Flag output 
5656 includes the FADT version which first defined each flag.
5657
5658 The iASL -g option now dumps the RSDT to a file (in addition to the FADT 
5659 and 
5660 DSDT). Windows only.
5661
5662 ----------------------------------------
5663 04 December 2008. Summary of changes for version 20081204:
5664
5665 1) ACPI CA Core Subsystem:
5666
5667 The ACPICA Programmer Reference has been completely updated and revamped 
5668 for 
5669 this release. This includes updates to the external interfaces, OSL 
5670 interfaces, the overview sections, and the debugger reference.
5671
5672 Several new ACPICA interfaces have been implemented and documented in the 
5673 programmer reference:
5674 AcpiReset - Writes the reset value to the FADT-defined reset register.
5675 AcpiDisableAllGpes - Disable all available GPEs.
5676 AcpiEnableAllRuntimeGpes - Enable all available runtime GPEs.
5677 AcpiGetGpeDevice - Get the GPE block device associated with a GPE.
5678 AcpiGbl_CurrentGpeCount - Tracks the current number of available GPEs.
5679 AcpiRead - Low-level read ACPI register (was HwLowLevelRead.)
5680 AcpiWrite - Low-level write ACPI register (was HwLowLevelWrite.)
5681
5682 Most of the public ACPI hardware-related interfaces have been moved to a 
5683 new 
5684 file, components/hardware/hwxface.c
5685
5686 Enhanced the FADT parsing and low-level ACPI register access: The ACPI 
5687 register lengths within the FADT are now used, and the low level ACPI 
5688 register access no longer hardcodes the ACPI register lengths. Given that 
5689 there may be some risk in actually trusting the FADT register lengths, a 
5690 run-
5691 time option was added to fall back to the default hardcoded lengths if 
5692 the 
5693 FADT proves to contain incorrect values - UseDefaultRegisterWidths. This 
5694 option is set to true for now, and a warning is issued if a suspicious 
5695 FADT 
5696 register length is overridden with the default value.
5697
5698 Fixed a reference count issue in NsRepairObject. This problem was 
5699 introduced 
5700 in version 20081031 as part of a fix to repair Buffer objects within 
5701 Packages. Lin Ming.
5702
5703 Added semaphore support to the Linux/Unix application OS-services layer 
5704 (OSL). ACPICA BZ 448. Lin Ming.
5705
5706 Added the ACPI_MUTEX_TYPE configuration option to select whether mutexes 
5707 will 
5708 be implemented in the OSL, or will binary semaphores be used instead.
5709
5710 Example Code and Data Size: These are the sizes for the OS-independent 
5711 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5712 debug version of the code includes the debug output trace mechanism and 
5713 has a 
5714 much larger code and data size.
5715
5716   Previous Release:
5717     Non-Debug Version:  81.7K Code, 17.3K Data,  99.0K Total
5718     Debug Version:     156.4K Code, 49.4K Data, 205.8K Total
5719   Current Release:
5720     Non-Debug Version:  82.3K Code, 17.4K Data,  99.7K Total
5721     Debug Version:     157.1K Code, 49.7K Data, 206.8K Total
5722
5723 2) iASL Compiler/Disassembler and Tools:
5724
5725 iASL: Completed the '-e' option to include additional ACPI tables in 
5726 order 
5727 to 
5728 aid with disassembly and External statement generation. ACPICA BZ 742. 
5729 Lin 
5730 Ming.
5731
5732 iASL: Removed the "named object in while loop" error. The compiler cannot 
5733 determine how many times a loop will execute. ACPICA BZ 730.
5734
5735 Disassembler: Implemented support for FADT revision 2 (MS extension). 
5736 ACPICA 
5737 BZ 743.
5738
5739 Disassembler: Updates for several ACPI data tables (HEST, EINJ, and 
5740 MCFG).
5741
5742 ----------------------------------------
5743 31 October 2008. Summary of changes for version 20081031:
5744
5745 1) ACPI CA Core Subsystem:
5746
5747 Restructured the ACPICA header files into public/private. acpi.h now 
5748 includes 
5749 only the "public" acpica headers. All other acpica headers are "private" 
5750 and 
5751 should not be included by acpica users. One new file, accommon.h is used 
5752 to 
5753 include the commonly used private headers for acpica code generation. 
5754 Future 
5755 plans include moving all private headers to a new subdirectory.
5756
5757 Implemented an automatic Buffer->String return value conversion for 
5758 predefined ACPI methods. For these methods (such as _BIF), added 
5759 automatic 
5760 conversion for return objects that are required to be a String, but a 
5761 Buffer 
5762 was found instead. This can happen when reading string battery data from 
5763 an 
5764 operation region, because it used to be difficult to convert the data 
5765 from 
5766 buffer to string from within the ASL. Ensures that the host OS is 
5767 provided 
5768 with a valid null-terminated string. Linux BZ 11822.
5769
5770 Updated the FACS waking vector interfaces. Split 
5771 AcpiSetFirmwareWakingVector 
5772 into two: one for the 32-bit vector, another for the 64-bit vector. This 
5773 is 
5774 required because the host OS must setup the wake much differently for 
5775 each 
5776 vector (real vs. protected mode, etc.) and the interface itself should 
5777 not 
5778 be 
5779 deciding which vector to use. Also, eliminated the 
5780 GetFirmwareWakingVector 
5781 interface, as it served no purpose (only the firmware reads the vector, 
5782 OS 
5783 only writes the vector.) ACPICA BZ 731.
5784
5785 Implemented a mechanism to escape infinite AML While() loops. Added a 
5786 loop 
5787 counter to force exit from AML While loops if the count becomes too 
5788 large. 
5789 This can occur in poorly written AML when the hardware does not respond 
5790 within a while loop and the loop does not implement a timeout. The 
5791 maximum 
5792 loop count is configurable. A new exception code is returned when a loop 
5793 is 
5794 broken, AE_AML_INFINITE_LOOP. Alexey Starikovskiy, Bob Moore.
5795
5796 Optimized the execution of AML While loops. Previously, a control state 
5797 object was allocated and freed for each execution of the loop. The 
5798 optimization is to simply reuse the control state for each iteration. 
5799 This 
5800 speeds up the raw loop execution time by about 5%.
5801
5802 Enhanced the implicit return mechanism. For Windows compatibility, return 
5803 an 
5804 implicit integer of value zero for methods that contain no executable 
5805 code. 
5806 Such methods are seen in the field as stubs (presumably), and can cause 
5807 drivers to fail if they expect a return value. Lin Ming.
5808
5809 Allow multiple backslashes as root prefixes in namepaths. In a fully 
5810 qualified namepath, allow multiple backslash prefixes. This can happen 
5811 (and 
5812 is seen in the field) because of the use of a double-backslash in strings 
5813 (since backslash is the escape character) causing confusion. ACPICA BZ 
5814 739 
5815 Lin Ming.
5816
5817 Emit a warning if two different FACS or DSDT tables are discovered in the 
5818 FADT. Checks if there are two valid but different addresses for the FACS 
5819 and 
5820 DSDT within the FADT (mismatch between the 32-bit and 64-bit fields.)
5821
5822 Consolidated the method argument count validation code. Merged the code 
5823 that 
5824 validates control method argument counts into the predefined validation 
5825 module. Eliminates possible multiple warnings for incorrect argument 
5826 counts.
5827
5828 Implemented ACPICA example code. Includes code for ACPICA initialization, 
5829 handler installation, and calling a control method. Available at 
5830 source/tools/examples.
5831
5832 Added a global pointer for FACS table to simplify internal FACS access. 
5833 Use 
5834 the global pointer instead of using AcpiGetTableByIndex for each FACS 
5835 access. 
5836 This simplifies the code for the Global Lock and the Firmware Waking 
5837 Vector(s).
5838
5839 Example Code and Data Size: These are the sizes for the OS-independent 
5840 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5841 debug version of the code includes the debug output trace mechanism and 
5842 has a 
5843 much larger code and data size.
5844
5845   Previous Release:
5846     Non-Debug Version:  81.2K Code, 17.0K Data,  98.2K Total
5847     Debug Version:     155.8K Code, 49.1K Data, 204.9K Total
5848   Current Release:
5849     Non-Debug Version:  81.7K Code, 17.3K Data,  99.0K Total
5850     Debug Version:     156.4K Code, 49.4K Data, 205.8K Total
5851
5852 2) iASL Compiler/Disassembler and Tools:
5853
5854 iASL: Improved disassembly of external method calls. Added the -e option 
5855 to 
5856 allow the inclusion of additional ACPI tables to help with the 
5857 disassembly 
5858 of 
5859 method invocations and the generation of external declarations during the 
5860 disassembly. Certain external method invocations cannot be disassembled 
5861 properly without the actual declaration of the method. Use the -e option 
5862 to 
5863 include the table where the external method(s) are actually declared. 
5864 Most 
5865 useful for disassembling SSDTs that make method calls back to the master 
5866 DSDT. Lin Ming. Example: To disassemble an SSDT with calls to DSDT:  iasl 
5867 -d 
5868 -e dsdt.aml ssdt1.aml
5869
5870 iASL: Fix to allow references to aliases within ASL namepaths. Fixes a 
5871 problem where the use of an alias within a namepath would result in a not 
5872 found error or cause the compiler to fault. Also now allows forward 
5873 references from the Alias operator itself. ACPICA BZ 738.
5874
5875 ----------------------------------------
5876 26 September 2008. Summary of changes for version 20080926:
5877
5878 1) ACPI CA Core Subsystem:
5879
5880 Designed and implemented a mechanism to validate predefined ACPI methods 
5881 and 
5882 objects. This code validates the predefined ACPI objects (objects whose 
5883 names 
5884 start with underscore) that appear in the namespace, at the time they are 
5885 evaluated. The argument count and the type of the returned object are 
5886 validated against the ACPI specification. The purpose of this validation 
5887 is 
5888 to detect problems with the BIOS-implemented predefined ACPI objects 
5889 before 
5890 the results are returned to the ACPI-related drivers. Future enhancements 
5891 may 
5892 include actual repair of incorrect return objects where possible. Two new 
5893 files are nspredef.c and acpredef.h.
5894
5895 Fixed a fault in the AML parser if a memory allocation fails during the 
5896 Op 
5897 completion routine AcpiPsCompleteThisOp. Lin Ming. ACPICA BZ 492.
5898
5899 Fixed an issue with implicit return compatibility. This change improves 
5900 the 
5901 implicit return mechanism to be more compatible with the MS interpreter. 
5902 Lin 
5903 Ming, ACPICA BZ 349.
5904
5905 Implemented support for zero-length buffer-to-string conversions. Allow 
5906 zero 
5907 length strings during interpreter buffer-to-string conversions. For 
5908 example, 
5909 during the ToDecimalString and ToHexString operators, as well as implicit 
5910 conversions. Fiodor Suietov, ACPICA BZ 585.
5911
5912 Fixed two possible memory leaks in the error exit paths of 
5913 AcpiUtUpdateObjectReference and AcpiUtWalkPackageTree. These functions 
5914 are 
5915 similar in that they use a stack of state objects in order to eliminate 
5916 recursion. The stack must be fully unwound and deallocated if an error 
5917 occurs. Lin Ming. ACPICA BZ 383.
5918
5919 Removed the unused ACPI_BITREG_WAKE_ENABLE definition and entry in the 
5920 global 
5921 ACPI register table. This bit does not exist and is unused. Lin Ming, Bob 
5922 Moore ACPICA BZ 442.
5923
5924 Removed the obsolete version number in module headers. Removed the 
5925 "$Revision" number that appeared in each module header. This version 
5926 number 
5927 was useful under SourceSafe and CVS, but has no meaning under git. It is 
5928 not 
5929 only incorrect, it could also be misleading.
5930
5931 Example Code and Data Size: These are the sizes for the OS-independent 
5932 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5933 debug version of the code includes the debug output trace mechanism and 
5934 has a 
5935 much larger code and data size.
5936
5937   Previous Release:
5938     Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
5939     Debug Version:     153.7K Code, 48.2K Data, 201.9K Total
5940   Current Release:
5941     Non-Debug Version:  81.2K Code, 17.0K Data,  98.2K Total
5942     Debug Version:     155.8K Code, 49.1K Data, 204.9K Total
5943
5944 ----------------------------------------
5945 29 August 2008. Summary of changes for version 20080829:
5946
5947 1) ACPI CA Core Subsystem:
5948
5949 Completed a major cleanup of the internal ACPI_OPERAND_OBJECT of type 
5950 Reference. Changes include the elimination of cheating on the Object 
5951 field 
5952 for the DdbHandle subtype, addition of a reference class field to 
5953 differentiate the various reference types (instead of an AML opcode), and 
5954 the 
5955 cleanup of debug output for this object. Lin Ming, Bob Moore. BZ 723
5956
5957 Reduce an error to a warning for an incorrect method argument count. 
5958 Previously aborted with an error if too few arguments were passed to a 
5959 control method via the external ACPICA interface. Now issue a warning 
5960 instead 
5961 and continue. Handles the case where the method inadvertently declares 
5962 too 
5963 many arguments, but does not actually use the extra ones. Applies mainly 
5964 to 
5965 the predefined methods. Lin Ming. Linux BZ 11032.
5966
5967 Disallow the evaluation of named object types with no intrinsic value. 
5968 Return 
5969 AE_TYPE for objects that have no value and therefore evaluation is 
5970 undefined: 
5971 Device, Event, Mutex, Region, Thermal, and Scope. Previously, evaluation 
5972 of 
5973 these types were allowed, but an exception would be generated at some 
5974 point 
5975 during the evaluation. Now, the error is generated up front.
5976
5977 Fixed a possible memory leak in the AcpiNsGetExternalPathname function 
5978 (nsnames.c). Fixes a leak in the error exit path.
5979
5980 Removed the obsolete debug levels ACPI_DB_WARN and ACPI_DB_ERROR. These 
5981 debug 
5982 levels were made obsolete by the ACPI_WARNING, ACPI_ERROR, and 
5983 ACPI_EXCEPTION 
5984 interfaces. Also added ACPI_DB_EVENTS to correspond with the existing 
5985 ACPI_LV_EVENTS.
5986
5987 Removed obsolete and/or unused exception codes from the acexcep.h header. 
5988 There is the possibility that certain device drivers may be affected if 
5989 they 
5990 use any of these exceptions.
5991
5992 The ACPICA documentation has been added to the public git source tree, 
5993 under 
5994 acpica/documents. Included are the ACPICA programmer reference, the iASL 
5995 compiler reference, and the changes.txt release logfile.
5996
5997 Example Code and Data Size: These are the sizes for the OS-independent 
5998 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5999 debug version of the code includes the debug output trace mechanism and 
6000 has a 
6001 much larger code and data size.
6002
6003   Previous Release:
6004     Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
6005     Debug Version:     153.9K Code, 48.4K Data, 202.3K Total
6006   Current Release:
6007     Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
6008     Debug Version:     153.7K Code, 48.2K Data, 201.9K Total
6009
6010 2) iASL Compiler/Disassembler and Tools:
6011
6012 Allow multiple argument counts for the predefined _SCP method. ACPI 3.0 
6013 defines _SCP with 3 arguments. Previous versions defined it with only 1 
6014 argument. iASL now allows both definitions.
6015
6016 iASL/disassembler: avoid infinite loop on bad ACPI tables. Check for 
6017 zero-
6018 length subtables when disassembling ACPI tables. Also fixed a couple of 
6019 errors where a full 16-bit table type field was not extracted from the 
6020 input 
6021 properly.
6022
6023 acpisrc: Improve comment counting mechanism for generating source code 
6024 statistics. Count first and last lines of multi-line comments as 
6025 whitespace, 
6026 not comment lines. Handle Linux legal header in addition to standard 
6027 acpica 
6028 header.
6029
6030 ----------------------------------------
6031
6032 29 July 2008. Summary of changes for version 20080729:
6033
6034 1) ACPI CA Core Subsystem:
6035
6036 Fix a possible deadlock in the GPE dispatch. Remove call to 
6037 AcpiHwDisableAllGpes during wake in AcpiEvGpeDispatch. This call will 
6038 attempt 
6039 to acquire the GPE lock but can deadlock since the GPE lock is already 
6040 held 
6041 at dispatch time. This code was introduced in version 20060831 as a 
6042 response 
6043 to Linux BZ 6881 and has since been removed from Linux.
6044
6045 Add a function to dereference returned reference objects. Examines the 
6046 return 
6047 object from a call to AcpiEvaluateObject. Any Index or RefOf references 
6048 are 
6049 automatically dereferenced in an attempt to return something useful 
6050 (these 
6051 reference types cannot be converted into an external ACPI_OBJECT.) 
6052 Provides 
6053 MS compatibility. Lin Ming, Bob Moore. Linux BZ 11105
6054
6055 x2APIC support: changes for MADT and SRAT ACPI tables. There are 2 new 
6056 subtables for the MADT and one new subtable for the SRAT. Includes 
6057 disassembler and AcpiSrc support. Data from the Intel 64 Architecture 
6058 x2APIC 
6059 Specification, June 2008.
6060
6061 Additional error checking for pathname utilities. Add error check after 
6062 all 
6063 calls to AcpiNsGetPathnameLength. Add status return from 
6064 AcpiNsBuildExternalPath and check after all calls. Add parameter 
6065 validation 
6066 to AcpiUtInitializeBuffer. Reported by and initial patch by Ingo Molnar.
6067
6068 Return status from the global init function AcpiUtGlobalInitialize. This 
6069 is 
6070 used by both the kernel subsystem and the utilities such as iASL 
6071 compiler. 
6072 The function could possibly fail when the caches are initialized. Yang 
6073 Yi.
6074
6075 Add a function to decode reference object types to strings. Created for 
6076 improved error messages. 
6077
6078 Improve object conversion error messages. Better error messages during 
6079 object 
6080 conversion from internal to the external ACPI_OBJECT. Used for external 
6081 calls 
6082 to AcpiEvaluateObject.
6083
6084 Example Code and Data Size: These are the sizes for the OS-independent 
6085 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6086 debug version of the code includes the debug output trace mechanism and 
6087 has a 
6088 much larger code and data size.
6089
6090   Previous Release:
6091     Non-Debug Version:  79.6K Code, 16.2K Data,  95.8K Total
6092     Debug Version:     153.5K Code, 48.2K Data, 201.7K Total
6093   Current Release:
6094     Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
6095     Debug Version:     153.9K Code, 48.4K Data, 202.3K Total
6096
6097 2) iASL Compiler/Disassembler and Tools:
6098
6099 Debugger: fix a possible hang when evaluating non-methods. Fixes a 
6100 problem 
6101 introduced in version 20080701. If the object being evaluated (via 
6102 execute 
6103 command) is not a method, the debugger can hang while trying to obtain 
6104 non-
6105 existent parameters.
6106
6107 iASL: relax error for using reserved "_T_x" identifiers. These names can 
6108 appear in a disassembled ASL file if they were emitted by the original 
6109 compiler. Instead of issuing an error or warning and forcing the user to 
6110 manually change these names, issue a remark instead.
6111
6112 iASL: error if named object created in while loop. Emit an error if any 
6113 named 
6114 object is created within a While loop. If allowed, this code will 
6115 generate 
6116
6117 run-time error on the second iteration of the loop when an attempt is 
6118 made 
6119 to 
6120 create the same named object twice. ACPICA bugzilla 730.
6121
6122 iASL: Support absolute pathnames for include files. Add support for 
6123 absolute 
6124 pathnames within the Include operator. previously, only relative 
6125 pathnames 
6126 were supported.
6127
6128 iASL: Enforce minimum 1 interrupt in interrupt macro and Resource 
6129 Descriptor. 
6130 The ACPI spec requires one interrupt minimum. BZ 423
6131
6132 iASL: Handle a missing ResourceSource arg, with a present SourceIndex. 
6133 Handles the case for the Interrupt Resource Descriptor where
6134 the ResourceSource argument is omitted but ResourceSourceIndex
6135 is present. Now leave room for the Index. BZ 426
6136
6137 iASL: Prevent error message if CondRefOf target does not exist. Fixes 
6138 cases 
6139 where an error message is emitted if the target does not exist. BZ 516
6140
6141 iASL: Fix broken -g option (get Windows ACPI tables). Fixes the -g option 
6142 (get ACPI tables on Windows). This was apparently broken in version 
6143 20070919.
6144
6145 AcpiXtract: Handle EOF while extracting data. Correctly handle the case 
6146 where 
6147 the EOF happens immediately after the last table in the input file. Print 
6148 completion message. Previously, no message was displayed in this case.
6149
6150 ----------------------------------------
6151 01 July 2008. Summary of changes for version 20080701:
6152
6153 0) Git source tree / acpica.org
6154
6155 Fixed a problem where a git-clone from http would not transfer the entire 
6156 source tree.
6157
6158 1) ACPI CA Core Subsystem:
6159
6160 Implemented a "careful" GPE disable in AcpiEvDisableGpe, only modify one 
6161 enable bit. Now performs a read-change-write of the enable register 
6162 instead 
6163 of simply writing out the cached enable mask. This will prevent 
6164 inadvertent 
6165 enabling of GPEs if a rogue GPE is received during initialization (before 
6166 GPE 
6167 handlers are installed.)
6168
6169 Implemented a copy for dynamically loaded tables. Previously, dynamically 
6170 loaded tables were simply mapped - but on some machines this memory is 
6171 corrupted after suspend. Now copy the table to a local buffer. For the 
6172 OpRegion case, added checksum verify. Use the table length from the table 
6173 header, not the region length. For the Buffer case, use the table length 
6174 also. Dennis Noordsij, Bob Moore. BZ 10734
6175
6176 Fixed a problem where the same ACPI table could not be dynamically loaded 
6177 and 
6178 unloaded more than once. Without this change, a table cannot be loaded 
6179 again 
6180 once it has been loaded/unloaded one time. The current mechanism does not 
6181 unregister a table upon an unload. During a load, if the same table is 
6182 found, 
6183 this no longer returns an exception. BZ 722
6184
6185 Fixed a problem where the wrong descriptor length was calculated for the 
6186 EndTag descriptor in 64-bit mode. The "minimal" descriptors such as 
6187 EndTag 
6188 are calculated as 12 bytes long, but the actual length in the internal 
6189 descriptor is 16 because of the round-up to 8 on the 64-bit build. 
6190 Reported 
6191 by Linn Crosetto. BZ 728
6192
6193 Fixed a possible memory leak in the Unload operator. The DdbHandle 
6194 returned 
6195 by Load() did not have its reference count decremented during unload, 
6196 leading 
6197 to a memory leak. Lin Ming. BZ 727
6198
6199 Fixed a possible memory leak when deleting thermal/processor objects. Any 
6200 associated notify handlers (and objects) were not being deleted. Fiodor 
6201 Suietov. BZ 506
6202
6203 Fixed the ordering of the ASCII names in the global mutex table to match 
6204 the 
6205 actual mutex IDs. Used by AcpiUtGetMutexName, a function used for debug 
6206 only. 
6207 Vegard Nossum. BZ 726
6208
6209 Enhanced the AcpiGetObjectInfo interface to return the number of required 
6210 arguments if the object is a control method. Added this call to the 
6211 debugger 
6212 so the proper number of default arguments are passed to a method. This 
6213 prevents a warning when executing methods from AcpiExec.
6214
6215 Added a check for an invalid handle in AcpiGetObjectInfo. Return 
6216 AE_BAD_PARAMETER if input handle is invalid. BZ 474
6217
6218 Fixed an extraneous warning from exconfig.c on the 64-bit build.
6219
6220 Example Code and Data Size: These are the sizes for the OS-independent 
6221 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6222 debug version of the code includes the debug output trace mechanism and 
6223 has a 
6224 much larger code and data size.
6225
6226   Previous Release:
6227     Non-Debug Version:  79.3K Code, 16.2K Data,  95.5K Total
6228     Debug Version:     153.0K Code, 48.2K Data, 201.2K Total
6229   Current Release:
6230     Non-Debug Version:  79.6K Code, 16.2K Data,  95.8K Total
6231     Debug Version:     153.5K Code, 48.2K Data, 201.7K Total
6232
6233 2) iASL Compiler/Disassembler and Tools:
6234
6235 iASL: Added two missing ACPI reserved names. Added _MTP and _ASZ, both 
6236 resource descriptor names.
6237
6238 iASL: Detect invalid ASCII characters in input (windows version). Removed 
6239 the 
6240 "-CF" flag from the flex compile, enables correct detection of non-ASCII 
6241 characters in the input. BZ 441
6242
6243 iASL: Eliminate warning when result of LoadTable is not used. Eliminate 
6244 the 
6245 "result of operation not used" warning when the DDB handle returned from 
6246 LoadTable is not used. The warning is not needed. BZ 590
6247
6248 AcpiExec: Add support for dynamic table load/unload. Now calls _CFG 
6249 method 
6250 to 
6251 pass address of table to the AML. Added option to disable OpRegion 
6252 simulation 
6253 to allow creation of an OpRegion with a real address that was passed to 
6254 _CFG. 
6255 All of this allows testing of the Load and Unload operators from 
6256 AcpiExec.
6257
6258 Debugger: update tables command for unloaded tables. Handle unloaded 
6259 tables 
6260 and use the standard table header output routine.
6261
6262 ----------------------------------------
6263 09 June 2008. Summary of changes for version 20080609:
6264
6265 1) ACPI CA Core Subsystem:
6266
6267 Implemented a workaround for reversed _PRT entries. A significant number 
6268 of 
6269 BIOSs erroneously reverse the _PRT SourceName and the SourceIndex. This 
6270 change dynamically detects and repairs this problem. Provides 
6271 compatibility 
6272 with MS ACPI. BZ 6859
6273
6274 Simplified the internal ACPI hardware interfaces to eliminate the locking 
6275 flag parameter from Register Read/Write. Added a new external interface, 
6276 AcpiGetRegisterUnlocked.
6277
6278 Fixed a problem where the invocation of a GPE control method could hang. 
6279 This 
6280 was a regression introduced in 20080514. The new method argument count 
6281 validation mechanism can enter an infinite loop when a GPE method is 
6282 dispatched. Problem fixed by removing the obsolete code that passed GPE 
6283 block 
6284 information to the notify handler via the control method parameter 
6285 pointer.
6286
6287 Fixed a problem where the _SST execution status was incorrectly returned 
6288 to 
6289 the caller of AcpiEnterSleepStatePrep. This was a regression introduced 
6290 in 
6291 20080514. _SST is optional and a NOT_FOUND exception should never be 
6292 returned. BZ 716
6293
6294 Fixed a problem where a deleted object could be accessed from within the 
6295 AML 
6296 parser. This was a regression introduced in version 20080123 as a fix for 
6297 the 
6298 Unload operator. Lin Ming. BZ 10669
6299
6300 Cleaned up the debug operand dump mechanism. Eliminated unnecessary 
6301 operands 
6302 and eliminated the use of a negative index in a loop. Operands are now 
6303 displayed in the correct order, not backwards. This also fixes a 
6304 regression 
6305 introduced in 20080514 on 64-bit systems where the elimination of 
6306 ACPI_NATIVE_UINT caused the negative index to go large and positive. BZ 
6307 715
6308
6309 Fixed a possible memory leak in EvPciConfigRegionSetup where the error 
6310 exit 
6311 path did not delete a locally allocated structure.
6312
6313 Updated definitions for the DMAR and SRAT tables to synchronize with the 
6314 current specifications. Includes disassembler support.
6315
6316 Fixed a problem in the mutex debug code (in utmutex.c) where an incorrect 
6317 loop termination value was used. Loop terminated on iteration early, 
6318 missing 
6319 one mutex. Linn Crosetto
6320
6321 Example Code and Data Size: These are the sizes for the OS-independent 
6322 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6323 debug version of the code includes the debug output trace mechanism and 
6324 has a 
6325 much larger code and data size.
6326
6327   Previous Release:
6328     Non-Debug Version:  79.5K Code, 16.2K Data,  95.7K Total
6329     Debug Version:     153.3K Code, 48.3K Data, 201.6K Total
6330   Current Release:
6331     Non-Debug Version:  79.3K Code, 16.2K Data,  95.5K Total
6332     Debug Version:     153.0K Code, 48.2K Data, 201.2K Total
6333
6334 2) iASL Compiler/Disassembler and Tools:
6335
6336 Disassembler: Implemented support for EisaId() within _CID objects. Now 
6337 disassemble integer _CID objects back to EisaId invocations, including 
6338 multiple integers within _CID packages. Includes single-step support for 
6339 debugger also.
6340
6341 Disassembler: Added support for DMAR and SRAT table definition changes.
6342
6343 ----------------------------------------
6344 14 May 2008. Summary of changes for version 20080514:
6345
6346 1) ACPI CA Core Subsystem:
6347
6348 Fixed a problem where GPEs were enabled too early during the ACPICA 
6349 initialization. This could lead to "handler not installed" errors on some 
6350 machines. Moved GPE enable until after _REG/_STA/_INI methods are run. 
6351 This 
6352 ensures that all operation regions and devices throughout the namespace 
6353 have 
6354 been initialized before GPEs are enabled. Alexey Starikovskiy, BZ 9916.
6355
6356 Implemented a change to the enter sleep code. Moved execution of the _GTS 
6357 method to just before setting sleep enable bit. The execution was moved 
6358 from 
6359 AcpiEnterSleepStatePrep to AcpiEnterSleepState. _GTS is now executed 
6360 immediately before the SLP_EN bit is set, as per the ACPI specification. 
6361 Luming Yu, BZ 1653.
6362
6363 Implemented a fix to disable unknown GPEs (2nd version). Now always 
6364 disable 
6365 the GPE, even if ACPICA thinks that that it is already disabled. It is 
6366 possible that the AML or some other code has enabled the GPE unbeknownst 
6367 to 
6368 the ACPICA code.
6369
6370 Fixed a problem with the Field operator where zero-length fields would 
6371 return 
6372 an AE_AML_NO_OPERAND exception during table load. Fix enables zero-length 
6373 ASL 
6374 field declarations in Field(), BankField(), and IndexField(). BZ 10606.
6375
6376 Implemented a fix for the Load operator, now load the table at the 
6377 namespace 
6378 root. This reverts a change introduced in version 20071019. The table is 
6379 now 
6380 loaded at the namespace root even though this goes against the ACPI 
6381 specification. This provides compatibility with other ACPI 
6382 implementations. 
6383 The ACPI specification will be updated to reflect this in ACPI 4.0. Lin 
6384 Ming.
6385
6386 Fixed a problem where ACPICA would not Load() tables with unusual 
6387 signatures. 
6388 Now ignore ACPI table signature for Load() operator. Only "SSDT" is 
6389 acceptable to the ACPI spec, but tables are seen with OEMx and null sigs. 
6390 Therefore, signature validation is worthless. Apparently MS ACPI accepts 
6391 such 
6392 signatures, ACPICA must be compatible. BZ 10454.
6393
6394 Fixed a possible negative array index in AcpiUtValidateException. Added 
6395 NULL 
6396 fields to the exception string arrays to eliminate a -1 subtraction on 
6397 the 
6398 SubStatus field.
6399
6400 Updated the debug tracking macros to reduce overall code and data size. 
6401 Changed ACPI_MODULE_NAME and ACPI_FUNCTION_NAME to use arrays of strings 
6402 instead of pointers to static strings. Jan Beulich and Bob Moore.
6403
6404 Implemented argument count checking in control method invocation via 
6405 AcpiEvaluateObject. Now emit an error if too few arguments, warning if 
6406 too 
6407 many. This applies only to extern programmatic control method execution, 
6408 not 
6409 method-to-method calls within the AML. Lin Ming.
6410
6411 Eliminated the ACPI_NATIVE_UINT type across all ACPICA code. This type is 
6412 no 
6413 longer needed, especially with the removal of 16-bit support. It was 
6414 replaced 
6415 mostly with UINT32, but also ACPI_SIZE where a type that changes 32/64 
6416 bit 
6417 on 
6418 32/64-bit platforms is required.
6419
6420 Added the C const qualifier for appropriate string constants -- mostly 
6421 MODULE_NAME and printf format strings. Jan Beulich.
6422
6423 Example Code and Data Size: These are the sizes for the OS-independent 
6424 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6425 debug version of the code includes the debug output trace mechanism and 
6426 has a 
6427 much larger code and data size.
6428
6429   Previous Release:
6430     Non-Debug Version:  80.0K Code, 17.4K Data,  97.4K Total
6431     Debug Version:     159.4K Code, 64.4K Data, 223.8K Total
6432   Current Release:
6433     Non-Debug Version:  79.5K Code, 16.2K Data,  95.7K Total
6434     Debug Version:     153.3K Code, 48.3K Data, 201.6K Total
6435
6436 2) iASL Compiler/Disassembler and Tools:
6437
6438 Implemented ACPI table revision ID validation in the disassembler. Zero 
6439 is 
6440 always invalid. For DSDTs, the ID controls the interpreter integer width. 
6441
6442 means 32-bit and this is unusual. 2 or greater is 64-bit.
6443
6444 ----------------------------------------
6445 21 March 2008. Summary of changes for version 20080321:
6446
6447 1) ACPI CA Core Subsystem:
6448
6449 Implemented an additional change to the GPE support in order to suppress 
6450 spurious or stray GPEs. The AcpiEvDisableGpe function will now 
6451 permanently 
6452 disable incoming GPEs that are neither enabled nor disabled -- meaning 
6453 that 
6454 the GPE is unknown to the system. This should prevent future interrupt 
6455 floods 
6456 from that GPE. BZ 6217 (Zhang Rui)
6457
6458 Fixed a problem where NULL package elements were not returned to the 
6459 AcpiEvaluateObject interface correctly. The element was simply ignored 
6460 instead of returning a NULL ACPI_OBJECT package element, potentially 
6461 causing 
6462 a buffer overflow and/or confusing the caller who expected a fixed number 
6463 of 
6464 elements. BZ 10132 (Lin Ming, Bob Moore)
6465
6466 Fixed a problem with the CreateField, CreateXXXField (Bit, Byte, Word, 
6467 Dword, 
6468 Qword), Field, BankField, and IndexField operators when invoked from 
6469 inside 
6470 an executing control method. In this case, these operators created 
6471 namespace 
6472 nodes that were incorrectly left marked as permanent nodes instead of 
6473 temporary nodes. This could cause a problem if there is race condition 
6474 between an exiting control method and a running namespace walk. (Reported 
6475 by 
6476 Linn Crosetto)
6477
6478 Fixed a problem where the CreateField and CreateXXXField operators would 
6479 incorrectly allow duplicate names (the name of the field) with no 
6480 exception 
6481 generated.
6482
6483 Implemented several changes for Notify handling. Added support for new 
6484 Notify 
6485 values (ACPI 2.0+) and improved the Notify debug output. Notify on 
6486 PowerResource objects is no longer allowed, as per the ACPI 
6487 specification. 
6488 (Bob Moore, Zhang Rui)
6489
6490 All Reference Objects returned via the AcpiEvaluateObject interface are 
6491 now 
6492 marked as type "REFERENCE" instead of "ANY". The type ANY is now reserved 
6493 for 
6494 NULL objects - either NULL package elements or unresolved named 
6495 references.
6496
6497 Fixed a problem where an extraneous debug message was produced for 
6498 package 
6499 objects (when debugging enabled). The message "Package List length larger 
6500 than NumElements count" is now produced in the correct case, and is now 
6501 an 
6502 error message rather than a debug message. Added a debug message for the 
6503 opposite case, where NumElements is larger than the Package List (the 
6504 package 
6505 will be padded out with NULL elements as per the ACPI spec.)
6506
6507 Implemented several improvements for the output of the ASL "Debug" object 
6508 to 
6509 clarify and keep all data for a given object on one output line.
6510
6511 Fixed two size calculation issues with the variable-length Start 
6512 Dependent 
6513 resource descriptor.
6514
6515 Example Code and Data Size: These are the sizes for the OS-independent 
6516 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6517 debug version of the code includes the debug output trace mechanism and 
6518 has 
6519 a much larger code and data size.
6520
6521   Previous Release:
6522     Non-Debug Version:  79.7K Code, 17.3K Data,  97.0K Total
6523     Debug Version:     158.9K Code, 64.0K Data, 222.9K Total
6524   Current Release:
6525     Non-Debug Version:  80.0K Code, 17.4K Data,  97.4K Total
6526     Debug Version:     159.4K Code, 64.4K Data, 223.8K Total
6527
6528 2) iASL Compiler/Disassembler and Tools:
6529
6530 Fixed a problem with the use of the Switch operator where execution of 
6531 the 
6532 containing method by multiple concurrent threads could cause an 
6533 AE_ALREADY_EXISTS exception. This is caused by the fact that there is no 
6534 actual Switch opcode, it must be simulated with local named temporary 
6535 variables and if/else pairs. The solution chosen was to mark any method 
6536 that 
6537 uses Switch as Serialized, thus preventing multiple thread entries. BZ 
6538 469.
6539
6540 ----------------------------------------
6541 13 February 2008. Summary of changes for version 20080213:
6542
6543 1) ACPI CA Core Subsystem:
6544
6545 Implemented another MS compatibility design change for GPE/Notify 
6546 handling. 
6547 GPEs are now cleared/enabled asynchronously to allow all pending notifies 
6548 to 
6549 complete first. It is expected that the OSL will queue the enable request 
6550 behind all pending notify requests (may require changes to the local host 
6551 OSL 
6552 in AcpiOsExecute). Alexey Starikovskiy.
6553
6554 Fixed a problem where buffer and package objects passed as arguments to a 
6555 control method via the external AcpiEvaluateObject interface could cause 
6556 an 
6557 AE_AML_INTERNAL exception depending on the order and type of operators 
6558 executed by the target control method.
6559
6560 Fixed a problem where resource descriptor size optimization could cause a 
6561 problem when a _CRS resource template is passed to a _SRS method. The 
6562 _SRS 
6563 resource template must use the same descriptors (with the same size) as 
6564 returned from _CRS. This change affects the following resource 
6565 descriptors: 
6566 IRQ / IRQNoFlags and StartDependendentFn / StartDependentFnNoPri. (BZ 
6567 9487)
6568
6569 Fixed a problem where a CopyObject to RegionField, BankField, and 
6570 IndexField 
6571 objects did not perform an implicit conversion as it should. These types 
6572 must 
6573 retain their initial type permanently as per the ACPI specification. 
6574 However, 
6575 a CopyObject to all other object types should not perform an implicit 
6576 conversion, as per the ACPI specification. (Lin Ming, Bob Moore) BZ 388
6577
6578 Fixed a problem with the AcpiGetDevices interface where the mechanism to 
6579 match device CIDs did not examine the entire list of available CIDs, but 
6580 instead aborted on the first non-matching CID. Andrew Patterson.
6581
6582 Fixed a regression introduced in version 20071114. The ACPI_HIDWORD macro 
6583 was 
6584 inadvertently changed to return a 16-bit value instead of a 32-bit value, 
6585 truncating the upper dword of a 64-bit value. This macro is only used to 
6586 display debug output, so no incorrect calculations were made. Also, 
6587 reimplemented the macro so that a 64-bit shift is not performed by 
6588 inefficient compilers.
6589
6590 Added missing va_end statements that should correspond with each va_start 
6591 statement.
6592
6593 Example Code and Data Size: These are the sizes for the OS-independent 
6594 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6595 debug version of the code includes the debug output trace mechanism and 
6596 has 
6597 a much larger code and data size.
6598
6599   Previous Release:
6600     Non-Debug Version:  79.5K Code, 17.2K Data,  96.7K Total
6601     Debug Version:     159.0K Code, 63.8K Data, 222.8K Total
6602   Current Release:
6603     Non-Debug Version:  79.7K Code, 17.3K Data,  97.0K Total
6604     Debug Version:     158.9K Code, 64.0K Data, 222.9K Total
6605
6606 2) iASL Compiler/Disassembler and Tools:
6607
6608 Implemented full disassembler support for the following new ACPI tables: 
6609 BERT, EINJ, and ERST. Implemented partial disassembler support for the 
6610 complicated HEST table. These tables support the Windows Hardware Error 
6611 Architecture (WHEA).
6612
6613 ----------------------------------------
6614 23 January 2008. Summary of changes for version 20080123:
6615
6616 1) ACPI CA Core Subsystem:
6617
6618 Added the 2008 copyright to all module headers and signons. This affects 
6619 virtually every file in the ACPICA core subsystem, the iASL compiler, and 
6620 the tools/utilities.
6621
6622 Fixed a problem with the SizeOf operator when used with Package and 
6623 Buffer 
6624 objects. These objects have deferred execution for some arguments, and 
6625 the 
6626 execution is now completed before the SizeOf is executed. This problem 
6627 caused 
6628 unexpected AE_PACKAGE_LIMIT errors on some systems (Lin Ming, Bob Moore) 
6629 BZ 
6630 9558
6631
6632 Implemented an enhancement to the interpreter "slack mode". In the 
6633 absence 
6634 of 
6635 an explicit return or an implicitly returned object from the last 
6636 executed 
6637 opcode, a control method will now implicitly return an integer of value 0 
6638 for 
6639 Microsoft compatibility. (Lin Ming) BZ 392
6640
6641 Fixed a problem with the Load operator where an exception was not 
6642 returned 
6643 in 
6644 the case where the table is already loaded. (Lin Ming) BZ 463
6645
6646 Implemented support for the use of DDBHandles as an Indexed Reference, as 
6647 per 
6648 the ACPI spec. (Lin Ming) BZ 486
6649
6650 Implemented support for UserTerm (Method invocation) for the Unload 
6651 operator 
6652 as per the ACPI spec. (Lin Ming) BZ 580
6653
6654 Fixed a problem with the LoadTable operator where the OemId and 
6655 OemTableId 
6656 input strings could cause unexpected failures if they were shorter than 
6657 the 
6658 maximum lengths allowed. (Lin Ming, Bob Moore) BZ 576
6659
6660 Implemented support for UserTerm (Method invocation) for the Unload 
6661 operator 
6662 as per the ACPI spec. (Lin Ming) BZ 580
6663
6664 Implemented header file support for new ACPI tables - BERT, ERST, EINJ, 
6665 HEST, 
6666 IBFT, UEFI, WDAT. Disassembler support is forthcoming.
6667
6668 Example Code and Data Size: These are the sizes for the OS-independent 
6669 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6670 debug version of the code includes the debug output trace mechanism and 
6671 has 
6672 a much larger code and data size.
6673
6674   Previous Release:
6675     Non-Debug Version:  79.3K Code, 17.2K Data,  96.5K Total
6676     Debug Version:     158.6K Code, 63.8K Data, 222.4K Total
6677   Current Release:
6678     Non-Debug Version:  79.5K Code, 17.2K Data,  96.7K Total
6679     Debug Version:     159.0K Code, 63.8K Data, 222.8K Total
6680
6681 2) iASL Compiler/Disassembler and Tools:
6682
6683 Implemented support in the disassembler for checksum validation on 
6684 incoming 
6685 binary DSDTs and SSDTs. If incorrect, a message is displayed within the 
6686 table 
6687 header dump at the start of the disassembly.
6688
6689 Implemented additional debugging information in the namespace listing 
6690 file 
6691 created during compilation. In addition to the namespace hierarchy, the 
6692 full 
6693 pathname to each namespace object is displayed.
6694
6695 Fixed a problem with the disassembler where invalid ACPI tables could 
6696 cause 
6697 faults or infinite loops.
6698
6699 Fixed an unexpected parse error when using the optional "parameter types" 
6700 list in a control method declaration. (Lin Ming) BZ 397
6701
6702 Fixed a problem where two External declarations with the same name did 
6703 not 
6704 cause an error (Lin Ming) BZ 509
6705
6706 Implemented support for full TermArgs (adding Argx, Localx and method 
6707 invocation) for the ParameterData parameter to the LoadTable operator. 
6708 (Lin 
6709 Ming) BZ 583,587
6710
6711 ----------------------------------------
6712 19 December 2007. Summary of changes for version 20071219:
6713
6714 1) ACPI CA Core Subsystem:
6715
6716 Implemented full support for deferred execution for the TermArg string 
6717 arguments for DataTableRegion. This enables forward references and full 
6718 operand resolution for the three string arguments. Similar to 
6719 OperationRegion 
6720 deferred argument execution.) Lin Ming. BZ 430
6721
6722 Implemented full argument resolution support for the BankValue argument 
6723 to 
6724 BankField. Previously, only constants were supported, now any TermArg may 
6725 be 
6726 used. Lin Ming BZ 387, 393
6727
6728 Fixed a problem with AcpiGetDevices where the search of a branch of the 
6729 device tree could be terminated prematurely. In accordance with the ACPI 
6730 specification, the search down the current branch is terminated if a 
6731 device 
6732 is both not present and not functional (instead of just not present.) 
6733 Yakui 
6734 Zhao.
6735
6736 Fixed a problem where "unknown" GPEs could be allowed to fire repeatedly 
6737 if 
6738 the underlying AML code changed the GPE enable registers. Now, any 
6739 unknown 
6740 incoming GPE (no _Lxx/_Exx method and not the EC GPE) is immediately 
6741 disabled 
6742 instead of simply ignored. Rui Zhang.
6743
6744 Fixed a problem with Index Fields where the Index register was 
6745 incorrectly 
6746 limited to a maximum of 32 bits. Now any size may be used.
6747
6748 Fixed a couple memory leaks associated with "implicit return" objects 
6749 when 
6750 the AML Interpreter slack mode is enabled. Lin Ming BZ 349
6751
6752 Example Code and Data Size: These are the sizes for the OS-independent 
6753 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6754 debug version of the code includes the debug output trace mechanism and 
6755 has 
6756 a much larger code and data size.
6757
6758   Previous Release:
6759     Non-Debug Version:  79.0K Code, 17.2K Data,  96.2K Total
6760     Debug Version:     157.9K Code, 63.6K Data, 221.5K Total
6761   Current Release:
6762     Non-Debug Version:  79.3K Code, 17.2K Data,  96.5K Total
6763     Debug Version:     158.6K Code, 63.8K Data, 222.4K Total
6764
6765 ----------------------------------------
6766 14 November 2007. Summary of changes for version 20071114:
6767
6768 1) ACPI CA Core Subsystem:
6769
6770 Implemented event counters for each of the Fixed Events, the ACPI SCI 
6771 (interrupt) itself, and control methods executed. Named 
6772 AcpiFixedEventCount[], AcpiSciCount, and AcpiMethodCount respectively. 
6773 These 
6774 should be useful for debugging and statistics.
6775
6776 Implemented a new external interface, AcpiGetStatistics, to retrieve the 
6777 contents of the various event counters. Returns the current values for 
6778 AcpiSciCount, AcpiGpeCount, the AcpiFixedEventCount array, and 
6779 AcpiMethodCount. The interface can be expanded in the future if new 
6780 counters 
6781 are added. Device drivers should use this interface rather than access 
6782 the 
6783 counters directly.
6784
6785 Fixed a problem with the FromBCD and ToBCD operators. With some 
6786 compilers, 
6787 the ShortDivide function worked incorrectly, causing problems with the 
6788 BCD 
6789 functions with large input values. A truncation from 64-bit to 32-bit 
6790 inadvertently occurred. Internal BZ 435. Lin Ming
6791
6792 Fixed a problem with Index references passed as method arguments. 
6793 References 
6794 passed as arguments to control methods were dereferenced immediately 
6795 (before 
6796 control was passed to the called method). The references are now 
6797 correctly 
6798 passed directly to the called method. BZ 5389. Lin Ming
6799
6800 Fixed a problem with CopyObject used in conjunction with the Index 
6801 operator. 
6802 The reference was incorrectly dereferenced before the copy. The reference 
6803 is 
6804 now correctly copied. BZ 5391. Lin Ming
6805
6806 Fixed a problem with Control Method references within Package objects. 
6807 These 
6808 references are now correctly generated. This completes the package 
6809 construction overhaul that began in version 20071019.
6810
6811 Example Code and Data Size: These are the sizes for the OS-independent 
6812 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6813 debug version of the code includes the debug output trace mechanism and 
6814 has 
6815 a much larger code and data size.
6816
6817   Previous Release:
6818     Non-Debug Version:  78.8K Code, 17.2K Data,  96.0K Total
6819     Debug Version:     157.2K Code, 63.4K Data, 220.6K Total
6820   Current Release:
6821     Non-Debug Version:  79.0K Code, 17.2K Data,  96.2K Total
6822     Debug Version:     157.9K Code, 63.6K Data, 221.5K Total
6823
6824
6825 2) iASL Compiler/Disassembler and Tools:
6826
6827 The AcpiExec utility now installs handlers for all of the predefined 
6828 Operation Region types. New types supported are: PCI_Config, CMOS, and 
6829 PCIBARTarget.
6830
6831 Fixed a problem with the 64-bit version of AcpiExec where the extended 
6832 (64-
6833 bit) address fields for the DSDT and FACS within the FADT were not being 
6834 used, causing truncation of the upper 32-bits of these addresses. Lin 
6835 Ming 
6836 and Bob Moore
6837
6838 ----------------------------------------
6839 19 October 2007. Summary of changes for version 20071019:
6840
6841 1) ACPI CA Core Subsystem:
6842
6843 Fixed a problem with the Alias operator when the target of the alias is a 
6844 named ASL operator that opens a new scope -- Scope, Device, 
6845 PowerResource, 
6846 Processor, and ThermalZone. In these cases, any children of the original 
6847 operator could not be accessed via the alias, potentially causing 
6848 unexpected 
6849 AE_NOT_FOUND exceptions. (BZ 9067)
6850
6851 Fixed a problem with the Package operator where all named references were 
6852 created as object references and left otherwise unresolved. According to 
6853 the 
6854 ACPI specification, a Package can only contain Data Objects or references 
6855 to 
6856 control methods. The implication is that named references to Data Objects 
6857 (Integer, Buffer, String, Package, BufferField, Field) should be resolved 
6858 immediately upon package creation. This is the approach taken with this 
6859 change. References to all other named objects (Methods, Devices, Scopes, 
6860 etc.) are all now properly created as reference objects. (BZ 5328)
6861
6862 Reverted a change to Notify handling that was introduced in version 
6863 20070508. This version changed the Notify handling from asynchronous to 
6864 fully synchronous (Device driver Notify handling with respect to the 
6865 Notify 
6866 ASL operator). It was found that this change caused more problems than it 
6867 solved and was removed by most users.
6868
6869 Fixed a problem with the Increment and Decrement operators where the type 
6870 of 
6871 the target object could be unexpectedly and incorrectly changed. (BZ 353) 
6872 Lin Ming.
6873
6874 Fixed a problem with the Load and LoadTable operators where the table 
6875 location within the namespace was ignored. Instead, the table was always 
6876 loaded into the root or current scope. Lin Ming.
6877
6878 Fixed a problem with the Load operator when loading a table from a buffer 
6879 object. The input buffer was prematurely zeroed and/or deleted. (BZ 577)
6880
6881 Fixed a problem with the Debug object where a store of a DdbHandle 
6882 reference 
6883 object to the Debug object could cause a fault.
6884
6885 Added a table checksum verification for the Load operator, in the case 
6886 where 
6887 the load is from a buffer. (BZ 578).
6888
6889 Implemented additional parameter validation for the LoadTable operator. 
6890 The 
6891 length of the input strings SignatureString, OemIdString, and OemTableId 
6892 are 
6893 now checked for maximum lengths. (BZ 582) Lin Ming.
6894
6895 Example Code and Data Size: These are the sizes for the OS-independent 
6896 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6897 debug version of the code includes the debug output trace mechanism and 
6898 has 
6899 a much larger code and data size.
6900
6901   Previous Release:
6902     Non-Debug Version:  78.5K Code, 17.1K Data,  95.6K Total
6903     Debug Version:     156.7K Code, 63.2K Data, 219.9K Total
6904   Current Release:
6905     Non-Debug Version:  78.8K Code, 17.2K Data,  96.0K Total
6906     Debug Version:     157.2K Code, 63.4K Data, 220.6K Total
6907
6908
6909 2) iASL Compiler/Disassembler:
6910
6911 Fixed a problem where if a single file was specified and the file did not 
6912 exist, no error message was emitted. (Introduced with wildcard support in 
6913 version 20070917.)
6914
6915 ----------------------------------------
6916 19 September 2007. Summary of changes for version 20070919:
6917
6918 1) ACPI CA Core Subsystem:
6919
6920 Designed and implemented new external interfaces to install and remove 
6921 handlers for ACPI table-related events. Current events that are defined 
6922 are 
6923 LOAD and UNLOAD. These interfaces allow the host to track ACPI tables as 
6924 they are dynamically loaded and unloaded. See AcpiInstallTableHandler and 
6925 AcpiRemoveTableHandler. (Lin Ming and Bob Moore)
6926
6927 Fixed a problem where the use of the AcpiGbl_AllMethodsSerialized flag 
6928 (acpi_serialized option on Linux) could cause some systems to hang during 
6929 initialization. (Bob Moore) BZ 8171
6930
6931 Fixed a problem where objects of certain types (Device, ThermalZone, 
6932 Processor, PowerResource) can be not found if they are declared and 
6933 referenced from within the same control method (Lin Ming) BZ 341
6934
6935 Example Code and Data Size: These are the sizes for the OS-independent 
6936 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6937 debug version of the code includes the debug output trace mechanism and 
6938 has 
6939 a much larger code and data size.
6940
6941   Previous Release:
6942     Non-Debug Version:  78.3K Code, 17.0K Data,  95.3K Total
6943     Debug Version:     156.3K Code, 63.1K Data, 219.4K Total
6944   Current Release:
6945     Non-Debug Version:  78.5K Code, 17.1K Data,  95.6K Total
6946     Debug Version:     156.7K Code, 63.2K Data, 219.9K Total
6947
6948
6949 2) iASL Compiler/Disassembler:
6950
6951 Implemented support to allow multiple files to be compiled/disassembled 
6952 in 
6953
6954 single invocation. This includes command line wildcard support for both 
6955 the 
6956 Windows and Unix versions of the compiler. This feature simplifies the 
6957 disassembly and compilation of multiple ACPI tables in a single 
6958 directory.
6959
6960 ----------------------------------------
6961 08 May 2007. Summary of changes for version 20070508:
6962
6963 1) ACPI CA Core Subsystem:
6964
6965 Implemented a Microsoft compatibility design change for the handling of 
6966 the 
6967 Notify AML operator. Previously, notify handlers were dispatched and 
6968 executed completely asynchronously in a deferred thread. The new design 
6969 still executes the notify handlers in a different thread, but the 
6970 original 
6971 thread that executed the Notify() now waits at a synchronization point 
6972 for 
6973 the notify handler to complete. Some machines depend on a synchronous 
6974 Notify 
6975 operator in order to operate correctly.
6976
6977 Implemented support to allow Package objects to be passed as method 
6978 arguments to the external AcpiEvaluateObject interface. Previously, this 
6979 would return the AE_NOT_IMPLEMENTED exception. This feature had not been 
6980 implemented since there were no reserved control methods that required it 
6981 until recently.
6982
6983 Fixed a problem with the internal FADT conversion where ACPI 1.0 FADTs 
6984 that 
6985 contained invalid non-zero values in reserved fields could cause later 
6986 failures because these fields have meaning in later revisions of the 
6987 FADT. 
6988 For incoming ACPI 1.0 FADTs, these fields are now always zeroed. (The 
6989 fields 
6990 are: Preferred_PM_Profile, PSTATE_CNT, CST_CNT, and IAPC_BOOT_FLAGS.)
6991
6992 Fixed a problem where the Global Lock handle was not properly updated if 
6993
6994 thread that acquired the Global Lock via executing AML code then 
6995 attempted 
6996 to acquire the lock via the AcpiAcquireGlobalLock interface. Reported by 
6997 Joe 
6998 Liu.
6999
7000 Fixed a problem in AcpiEvDeleteGpeXrupt where the global interrupt list 
7001 could be corrupted if the interrupt being removed was at the head of the 
7002 list. Reported by Linn Crosetto.
7003
7004 Example Code and Data Size: These are the sizes for the OS-independent 
7005 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
7006 debug version of the code includes the debug output trace mechanism and 
7007 has 
7008 a much larger code and data size.
7009
7010   Previous Release:
7011     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
7012     Debug Version:     155.9K Code, 63.1K Data, 219.0K Total
7013   Current Release:
7014     Non-Debug Version:  78.3K Code, 17.0K Data,  95.3K Total
7015     Debug Version:     156.3K Code, 63.1K Data, 219.4K Total
7016
7017 ----------------------------------------
7018 20 March 2007. Summary of changes for version 20070320:
7019
7020 1) ACPI CA Core Subsystem:
7021
7022 Implemented a change to the order of interpretation and evaluation of AML 
7023 operand objects within the AML interpreter. The interpreter now evaluates 
7024 operands in the order that they appear in the AML stream (and the 
7025 corresponding ASL code), instead of in the reverse order (after the 
7026 entire 
7027 operand list has been parsed). The previous behavior caused several 
7028 subtle 
7029 incompatibilities with the Microsoft AML interpreter as well as being 
7030 somewhat non-intuitive. BZ 7871, local BZ 263. Valery Podrezov.
7031
7032 Implemented a change to the ACPI Global Lock support. All interfaces to 
7033 the 
7034 global lock now allow the same thread to acquire the lock multiple times. 
7035 This affects the AcpiAcquireGlobalLock external interface to the global 
7036 lock 
7037 as well as the internal use of the global lock to support AML fields -- a 
7038 control method that is holding the global lock can now simultaneously 
7039 access 
7040 AML fields that require global lock protection. Previously, in both 
7041 cases, 
7042 this would have resulted in an AE_ALREADY_ACQUIRED exception. The change 
7043 to 
7044 AcpiAcquireGlobalLock is of special interest to drivers for the Embedded 
7045 Controller. There is no change to the behavior of the AML Acquire 
7046 operator, 
7047 as this can already be used to acquire a mutex multiple times by the same 
7048 thread. BZ 8066. With assistance from Alexey Starikovskiy.
7049
7050 Fixed a problem where invalid objects could be referenced in the AML 
7051 Interpreter after error conditions. During operand evaluation, ensure 
7052 that 
7053 the internal "Return Object" field is cleared on error and only valid 
7054 pointers are stored there. Caused occasional access to deleted objects 
7055 that 
7056 resulted in "large reference count" warning messages. Valery Podrezov.
7057
7058 Fixed a problem where an AE_STACK_OVERFLOW internal exception could occur 
7059 on 
7060 deeply nested control method invocations. BZ 7873, local BZ 487. Valery 
7061 Podrezov.
7062
7063 Fixed an internal problem with the handling of result objects on the 
7064 interpreter result stack. BZ 7872. Valery Podrezov.
7065
7066 Removed obsolete code that handled the case where AML_NAME_OP is the 
7067 target 
7068 of a reference (Reference.Opcode). This code was no longer necessary. BZ 
7069 7874. Valery Podrezov.
7070
7071 Removed obsolete ACPI_NO_INTEGER64_SUPPORT from two header files. This 
7072 was 
7073
7074 remnant from the previously discontinued 16-bit support.
7075
7076 Example Code and Data Size: These are the sizes for the OS-independent 
7077 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
7078 debug version of the code includes the debug output trace mechanism and 
7079 has 
7080 a much larger code and data size.
7081
7082   Previous Release:
7083     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
7084     Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
7085   Current Release:
7086     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
7087     Debug Version:     155.9K Code, 63.1K Data, 219.0K Total
7088
7089 ----------------------------------------
7090 26 January 2007. Summary of changes for version 20070126:
7091
7092 1) ACPI CA Core Subsystem:
7093
7094 Added the 2007 copyright to all module headers and signons. This affects 
7095 virtually every file in the ACPICA core subsystem, the iASL compiler, and 
7096 the utilities.
7097
7098 Implemented a fix for an incorrect parameter passed to AcpiTbDeleteTable 
7099 during a table load. A bad pointer was passed in the case where the DSDT 
7100 is 
7101 overridden, causing a fault in this case.
7102
7103 Example Code and Data Size: These are the sizes for the OS-independent 
7104 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
7105 debug version of the code includes the debug output trace mechanism and 
7106 has 
7107 a much larger code and data size.
7108
7109   Previous Release:
7110     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
7111     Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
7112   Current Release:
7113     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
7114     Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
7115
7116 ----------------------------------------
7117 15 December 2006. Summary of changes for version 20061215:
7118
7119 1) ACPI CA Core Subsystem:
7120
7121 Support for 16-bit ACPICA has been completely removed since it is no 
7122 longer 
7123 necessary and it clutters the code. All 16-bit macros, types, and 
7124 conditional compiles have been removed, cleaning up and simplifying the 
7125 code 
7126 across the entire subsystem. DOS support is no longer needed since the 
7127 bootable Linux firmware kit is now available.
7128
7129 The handler for the Global Lock is now removed during AcpiTerminate to 
7130 enable a clean subsystem restart, via the implementation of the 
7131 AcpiEvRemoveGlobalLockHandler function. (With assistance from Joel Bretz, 
7132 HP)
7133
7134 Implemented enhancements to the multithreading support within the 
7135 debugger 
7136 to enable improved multithreading debugging and evaluation of the 
7137 subsystem. 
7138 (Valery Podrezov)
7139
7140 Debugger: Enhanced the Statistics/Memory command to emit the total 
7141 (maximum) 
7142 memory used during the execution, as well as the maximum memory consumed 
7143 by 
7144 each of the various object types. (Valery Podrezov)
7145
7146 Example Code and Data Size: These are the sizes for the OS-independent 
7147 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
7148 debug version of the code includes the debug output trace mechanism and 
7149 has 
7150 a much larger code and data size.
7151
7152   Previous Release:
7153     Non-Debug Version:  77.9K Code, 17.0K Data,  94.9K Total
7154     Debug Version:     155.2K Code, 63.1K Data, 218.3K Total
7155   Current Release:
7156     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
7157     Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
7158
7159
7160 2) iASL Compiler/Disassembler and Tools:
7161
7162 AcpiExec: Implemented a new option (-m) to display full memory use 
7163 statistics upon subsystem/program termination. (Valery Podrezov)
7164
7165 ----------------------------------------
7166 09 November 2006. Summary of changes for version 20061109:
7167
7168 1) ACPI CA Core Subsystem:
7169
7170 Optimized the Load ASL operator in the case where the source operand is 
7171 an 
7172 operation region. Simply map the operation region memory, instead of 
7173 performing a bytewise read. (Region must be of type SystemMemory, see 
7174 below.)
7175
7176 Fixed the Load ASL operator for the case where the source operand is a 
7177 region field. A buffer object is also allowed as the source operand. BZ 
7178 480
7179
7180 Fixed a problem where the Load ASL operator allowed the source operand to 
7181 be 
7182 an operation region of any type. It is now restricted to regions of type 
7183 SystemMemory, as per the ACPI specification. BZ 481
7184
7185 Additional cleanup and optimizations for the new Table Manager code.
7186
7187 AcpiEnable will now fail if all of the required ACPI tables are not 
7188 loaded 
7189 (FADT, FACS, DSDT). BZ 477
7190
7191 Added #pragma pack(8/4) to acobject.h to ensure that the structures in 
7192 this 
7193 header are always compiled as aligned. The ACPI_OPERAND_OBJECT has been 
7194 manually optimized to be aligned and will not work if it is byte-packed. 
7195
7196 Example Code and Data Size: These are the sizes for the OS-independent 
7197 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
7198 debug version of the code includes the debug output trace mechanism and 
7199 has 
7200 a much larger code and data size.
7201
7202   Previous Release:
7203     Non-Debug Version:  78.1K Code, 17.1K Data,  95.2K Total
7204     Debug Version:     155.4K Code, 63.1K Data, 218.5K Total
7205   Current Release:
7206     Non-Debug Version:  77.9K Code, 17.0K Data,  94.9K Total
7207     Debug Version:     155.2K Code, 63.1K Data, 218.3K Total
7208
7209
7210 2) iASL Compiler/Disassembler and Tools:
7211
7212 Fixed a problem where the presence of the _OSI predefined control method 
7213 within complex expressions could cause an internal compiler error.
7214
7215 AcpiExec: Implemented full region support for multiple address spaces. 
7216 SpaceId is now part of the REGION object. BZ 429
7217
7218 ----------------------------------------
7219 11 October 2006. Summary of changes for version 20061011:
7220
7221 1) ACPI CA Core Subsystem:
7222
7223 Completed an AML interpreter performance enhancement for control method 
7224 execution. Previously a 2-pass parse/execution, control methods are now 
7225 completely parsed and executed in a single pass. This improves overall 
7226 interpreter performance by ~25%, reduces code size, and reduces CPU stack 
7227 use. (Valery Podrezov + interpreter changes in version 20051202 that 
7228 eliminated namespace loading during the pass one parse.)
7229
7230 Implemented _CID support for PCI Root Bridge detection. If the _HID does 
7231 not 
7232 match the predefined PCI Root Bridge IDs, the _CID list (if present) is 
7233 now 
7234 obtained and also checked for an ID match.
7235
7236 Implemented additional support for the PCI _ADR execution: upsearch until 
7237
7238 device scope is found before executing _ADR. This allows PCI_Config 
7239 operation regions to be declared locally within control methods 
7240 underneath 
7241 PCI device objects.
7242
7243 Fixed a problem with a possible race condition between threads executing 
7244 AcpiWalkNamespace and the AML interpreter. This condition was removed by 
7245 modifying AcpiWalkNamespace to (by default) ignore all temporary 
7246 namespace 
7247 entries created during any concurrent control method execution. An 
7248 additional namespace race condition is known to exist between 
7249 AcpiWalkNamespace and the Load/Unload ASL operators and is still under 
7250 investigation.
7251
7252 Restructured the AML ParseLoop function, breaking it into several 
7253 subfunctions in order to reduce CPU stack use and improve 
7254 maintainability. 
7255 (Mikhail Kouzmich)
7256
7257 AcpiGetHandle: Fix for parameter validation to detect invalid 
7258 combinations 
7259 of prefix handle and pathname. BZ 478
7260
7261 Example Code and Data Size: These are the sizes for the OS-independent 
7262 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
7263 debug version of the code includes the debug output trace mechanism and 
7264 has 
7265 a much larger code and data size.
7266
7267   Previous Release:
7268     Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
7269     Debug Version:     154.6K Code, 63.0K Data, 217.6K Total
7270   Current Release:
7271     Non-Debug Version:  78.1K Code, 17.1K Data,  95.2K Total
7272     Debug Version:     155.4K Code, 63.1K Data, 218.5K Total
7273
7274 2) iASL Compiler/Disassembler and Tools:
7275
7276 Ported the -g option (get local ACPI tables) to the new ACPICA Table 
7277 Manager 
7278 to restore original behavior.
7279
7280 ----------------------------------------
7281 27 September 2006. Summary of changes for version 20060927:
7282
7283 1) ACPI CA Core Subsystem:
7284
7285 Removed the "Flags" parameter from AcpiGetRegister and AcpiSetRegister. 
7286 These functions now use a spinlock for mutual exclusion and the interrupt 
7287 level indication flag is not needed.
7288
7289 Fixed a problem with the Global Lock where the lock could appear to be 
7290 obtained before it is actually obtained. The global lock semaphore was 
7291 inadvertently created with one unit instead of zero units. (BZ 464) 
7292 Fiodor 
7293 Suietov.
7294
7295 Fixed a possible memory leak and fault in AcpiExResolveObjectToValue 
7296 during 
7297 a read from a buffer or region field. (BZ 458) Fiodor Suietov.
7298
7299 Example Code and Data Size: These are the sizes for the OS-independent 
7300 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
7301 debug version of the code includes the debug output trace mechanism and 
7302 has 
7303 a much larger code and data size.
7304
7305   Previous Release:
7306     Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
7307     Debug Version:     154.7K Code, 63.0K Data, 217.7K Total
7308   Current Release:
7309     Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
7310     Debug Version:     154.6K Code, 63.0K Data, 217.6K Total
7311
7312
7313 2) iASL Compiler/Disassembler and Tools:
7314
7315 Fixed a compilation problem with the pre-defined Resource Descriptor 
7316 field 
7317 names where an "object does not exist" error could be incorrectly 
7318 generated 
7319 if the parent ResourceTemplate pathname places the template within a 
7320 different namespace scope than the current scope. (BZ 7212)
7321
7322 Fixed a problem where the compiler could hang after syntax errors 
7323 detected 
7324 in an ElseIf construct. (BZ 453)
7325
7326 Fixed a problem with the AmlFilename parameter to the DefinitionBlock() 
7327 operator. An incorrect output filename was produced when this parameter 
7328 was 
7329 a null string (""). Now, the original input filename is used as the AML 
7330 output filename, with an ".aml" extension.
7331
7332 Implemented a generic batch command mode for the AcpiExec utility 
7333 (execute 
7334 any AML debugger command) (Valery Podrezov).
7335
7336 ----------------------------------------
7337 12 September 2006. Summary of changes for version 20060912:
7338
7339 1) ACPI CA Core Subsystem:
7340
7341 Enhanced the implementation of the "serialized mode" of the interpreter 
7342 (enabled via the AcpiGbl_AllMethodsSerialized flag.) When this mode is 
7343 specified, instead of creating a serialization semaphore per control 
7344 method, 
7345 the interpreter lock is simply no longer released before a blocking 
7346 operation during control method execution. This effectively makes the AML 
7347 Interpreter single-threaded. The overhead of a semaphore per-method is 
7348 eliminated.
7349
7350 Fixed a regression where an error was no longer emitted if a control 
7351 method 
7352 attempts to create 2 objects of the same name. This once again returns 
7353 AE_ALREADY_EXISTS. When this exception occurs, it invokes the mechanism 
7354 that 
7355 will dynamically serialize the control method to possible prevent future 
7356 errors. (BZ 440)
7357
7358 Integrated a fix for a problem with PCI Express HID detection in the PCI 
7359 Config Space setup procedure. (BZ 7145)
7360
7361 Moved all FADT-related functions to a new file, tbfadt.c. Eliminated the 
7362 AcpiHwInitialize function - the FADT registers are now validated when the 
7363 table is loaded.
7364
7365 Added two new warnings during FADT verification - 1) if the FADT is 
7366 larger 
7367 than the largest known FADT version, and 2) if there is a mismatch 
7368 between 
7369
7370 32-bit block address and the 64-bit X counterpart (when both are non-
7371 zero.)
7372
7373 Example Code and Data Size: These are the sizes for the OS-independent 
7374 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
7375 debug version of the code includes the debug output trace mechanism and 
7376 has 
7377 a much larger code and data size.
7378
7379   Previous Release:
7380     Non-Debug Version:  77.9K Code, 16.7K Data,  94.6K Total
7381     Debug Version:     154.9K Code, 62.6K Data, 217.5K Total
7382   Current Release:
7383     Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
7384     Debug Version:     154.7K Code, 63.0K Data, 217.7K Total
7385
7386
7387 2) iASL Compiler/Disassembler and Tools:
7388
7389 Fixed a problem with the implementation of the Switch() operator where 
7390 the 
7391 temporary variable was declared too close to the actual Switch, instead 
7392 of 
7393 at method level. This could cause a problem if the Switch() operator is 
7394 within a while loop, causing an error on the second iteration. (BZ 460)
7395
7396 Disassembler - fix for error emitted for unknown type for target of scope 
7397 operator. Now, ignore it and continue.
7398
7399 Disassembly of an FADT now verifies the input FADT and reports any errors 
7400 found. Fix for proper disassembly of full-sized (ACPI 2.0) FADTs.
7401
7402 Disassembly of raw data buffers with byte initialization data now 
7403 prefixes 
7404 each output line with the current buffer offset.
7405
7406 Disassembly of ASF! table now includes all variable-length data fields at 
7407 the end of some of the subtables.
7408
7409 The disassembler now emits a comment if a buffer appears to be a 
7410 ResourceTemplate, but cannot be disassembled as such because the EndTag 
7411 does 
7412 not appear at the very end of the buffer.
7413
7414 AcpiExec - Added the "-t" command line option to enable the serialized 
7415 mode 
7416 of the AML interpreter.
7417
7418 ----------------------------------------
7419 31 August 2006. Summary of changes for version 20060831:
7420
7421 1) ACPI CA Core Subsystem:
7422
7423 Miscellaneous fixes for the Table Manager:
7424 - Correctly initialize internal common FADT for all 64-bit "X" fields
7425 - Fixed a couple table mapping issues during table load
7426 - Fixed a couple alignment issues for IA64
7427 - Initialize input array to zero in AcpiInitializeTables
7428 - Additional parameter validation for AcpiGetTable, AcpiGetTableHeader, 
7429 AcpiGetTableByIndex
7430
7431 Change for GPE support: when a "wake" GPE is received, all wake GPEs are 
7432 now 
7433 immediately disabled to prevent the waking GPE from firing again and to 
7434 prevent other wake GPEs from interrupting the wake process.
7435
7436 Added the AcpiGpeCount global that tracks the number of processed GPEs, 
7437 to 
7438 be used for debugging systems with a large number of ACPI interrupts.
7439
7440 Implemented support for the "DMAR" ACPI table (DMA Redirection Table) in 
7441 both the ACPICA headers and the disassembler.
7442
7443 Example Code and Data Size: These are the sizes for the OS-independent 
7444 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
7445 debug version of the code includes the debug output trace mechanism and 
7446 has 
7447 a much larger code and data size.
7448
7449   Previous Release:
7450     Non-Debug Version:  77.8K Code, 16.5K Data,  94.3K Total
7451     Debug Version:     154.6K Code, 62.3K Data, 216.9K Total
7452   Current Release:
7453     Non-Debug Version:  77.9K Code, 16.7K Data,  94.6K Total
7454     Debug Version:     154.9K Code, 62.6K Data, 217.5K Total
7455
7456
7457 2) iASL Compiler/Disassembler and Tools:
7458
7459 Disassembler support for the DMAR ACPI table.
7460
7461 ----------------------------------------
7462 23 August 2006. Summary of changes for version 20060823:
7463
7464 1) ACPI CA Core Subsystem:
7465
7466 The Table Manager component has been completely redesigned and 
7467 reimplemented. The new design is much simpler, and reduces the overall 
7468 code 
7469 and data size of the kernel-resident ACPICA by approximately 5%. Also, it 
7470 is 
7471 now possible to obtain the ACPI tables very early during kernel 
7472 initialization, even before dynamic memory management is initialized. 
7473 (Alexey Starikovskiy, Fiodor Suietov, Bob Moore)
7474
7475 Obsolete ACPICA interfaces:
7476
7477 - AcpiGetFirmwareTable: Use AcpiGetTable instead (works at early kernel 
7478 init 
7479 time).
7480 - AcpiLoadTable: Not needed.
7481 - AcpiUnloadTable: Not needed.
7482
7483 New ACPICA interfaces:
7484
7485 - AcpiInitializeTables: Must be called before the table manager can be 
7486 used.
7487 - AcpiReallocateRootTable: Used to transfer the root table to dynamically 
7488 allocated memory after it becomes available.
7489 - AcpiGetTableByIndex: Allows the host to easily enumerate all ACPI 
7490 tables 
7491 in the RSDT/XSDT.
7492
7493 Other ACPICA changes:
7494
7495 - AcpiGetTableHeader returns the actual mapped table header, not a copy. 
7496 Use 
7497 AcpiOsUnmapMemory to free this mapping.
7498 - AcpiGetTable returns the actual mapped table. The mapping is managed 
7499 internally and must not be deleted by the caller. Use of this interface 
7500 causes no additional dynamic memory allocation.
7501 - AcpiFindRootPointer: Support for physical addressing has been 
7502 eliminated, 
7503 it appeared to be unused.
7504 - The interface to AcpiOsMapMemory has changed to be consistent with the 
7505 other allocation interfaces.
7506 - The interface to AcpiOsGetRootPointer has changed to eliminate 
7507 unnecessary 
7508 parameters.
7509 - ACPI_PHYSICAL_ADDRESS is now 32 bits on 32-bit platforms, 64 bits on 
7510 64-
7511 bit platforms. Was previously 64 bits on all platforms.
7512 - The interface to the ACPI Global Lock acquire/release macros have 
7513 changed 
7514 slightly since ACPICA no longer keeps a local copy of the FACS with a 
7515 constructed pointer to the actual global lock.
7516
7517 Porting to the new table manager:
7518
7519 - AcpiInitializeTables: Must be called once, and can be called anytime 
7520 during the OS initialization process. It allows the host to specify an 
7521 area 
7522 of memory to be used to store the internal version of the RSDT/XSDT (root 
7523 table). This allows the host to access ACPI tables before memory 
7524 management 
7525 is initialized and running.
7526 - AcpiReallocateRootTable: Can be called after memory management is 
7527 running 
7528 to copy the root table to a dynamically allocated array, freeing up the 
7529 scratch memory specified in the call to AcpiInitializeTables.
7530 - AcpiSubsystemInitialize: This existing interface is independent of the 
7531 Table Manager, and does not have to be called before the Table Manager 
7532 can 
7533 be used, it only must be called before the rest of ACPICA can be used.
7534 - ACPI Tables: Some changes have been made to the names and structure of 
7535 the 
7536 actbl.h and actbl1.h header files and may require changes to existing 
7537 code. 
7538 For example, bitfields have been completely removed because of their lack 
7539 of 
7540 portability across C compilers.
7541 - Update interfaces to the Global Lock acquire/release macros if local 
7542 versions are used. (see acwin.h)
7543
7544 Obsolete files: tbconvrt.c, tbget.c, tbgetall.c, tbrsdt.c
7545
7546 New files: tbfind.c
7547
7548 Example Code and Data Size: These are the sizes for the OS-independent 
7549 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
7550 debug version of the code includes the debug output trace mechanism and 
7551 has 
7552 a much larger code and data size.
7553
7554   Previous Release:
7555     Non-Debug Version:  80.7K Code, 17.9K Data,  98.6K Total
7556     Debug Version:     161.0K Code, 65.1K Data, 226.1K Total
7557   Current Release:
7558     Non-Debug Version:  77.8K Code, 16.5K Data,  94.3K Total
7559     Debug Version:     154.6K Code, 62.3K Data, 216.9K Total
7560
7561
7562 2) iASL Compiler/Disassembler and Tools:
7563
7564 No changes for this release.
7565
7566 ----------------------------------------
7567 21 July 2006. Summary of changes for version 20060721:
7568
7569 1) ACPI CA Core Subsystem:
7570
7571 The full source code for the ASL test suite used to validate the iASL 
7572 compiler and the ACPICA core subsystem is being released with the ACPICA 
7573 source for the first time. The source is contained in a separate package 
7574 and 
7575 consists of over 1100 files that exercise all ASL/AML operators. The 
7576 package 
7577 should appear on the Intel/ACPI web site shortly. (Valery Podrezov, 
7578 Fiodor 
7579 Suietov)
7580
7581 Completed a new design and implementation for support of the ACPI Global 
7582 Lock. On the OS side, the global lock is now treated as a standard AML 
7583 mutex. Previously, multiple OS threads could "acquire" the global lock 
7584 simultaneously. However, this could cause the BIOS to be starved out of 
7585 the 
7586 lock - especially in cases such as the Embedded Controller driver where 
7587 there is a tight coupling between the OS and the BIOS.
7588
7589 Implemented an optimization for the ACPI Global Lock interrupt mechanism. 
7590 The Global Lock interrupt handler no longer queues the execution of a 
7591 separate thread to signal the global lock semaphore. Instead, the 
7592 semaphore 
7593 is signaled directly from the interrupt handler.
7594
7595 Implemented support within the AML interpreter for package objects that 
7596 contain a larger AML length (package list length) than the package 
7597 element 
7598 count. In this case, the length of the package is truncated to match the 
7599 package element count. Some BIOS code apparently modifies the package 
7600 length 
7601 on the fly, and this change supports this behavior. Provides 
7602 compatibility 
7603 with the MS AML interpreter. (With assistance from Fiodor Suietov)
7604
7605 Implemented a temporary fix for the BankValue parameter of a Bank Field 
7606 to 
7607 support all constant values, now including the Zero and One opcodes. 
7608 Evaluation of this parameter must eventually be converted to a full 
7609 TermArg 
7610 evaluation. A not-implemented error is now returned (temporarily) for 
7611 non-
7612 constant values for this parameter.
7613
7614 Fixed problem reports (Fiodor Suietov) integrated:
7615 - Fix for premature object deletion after CopyObject on Operation Region 
7616 (BZ 
7617 350)
7618
7619 Example Code and Data Size: These are the sizes for the OS-independent 
7620 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
7621 debug version of the code includes the debug output trace mechanism and 
7622 has 
7623 a much larger code and data size.
7624
7625   Previous Release:
7626     Non-Debug Version:  80.7K Code, 18.0K Data,  98.7K Total
7627     Debug Version:     160.9K Code, 65.1K Data, 226.0K Total
7628   Current Release:
7629     Non-Debug Version:  80.7K Code, 17.9K Data,  98.6K Total
7630     Debug Version:     161.0K Code, 65.1K Data, 226.1K Total
7631
7632
7633 2) iASL Compiler/Disassembler and Tools:
7634
7635 No changes for this release.
7636
7637 ----------------------------------------
7638 07 July 2006. Summary of changes for version 20060707:
7639
7640 1) ACPI CA Core Subsystem:
7641
7642 Added the ACPI_PACKED_POINTERS_NOT_SUPPORTED macro to support C compilers 
7643 that do not allow the initialization of address pointers within packed 
7644 structures - even though the hardware itself may support misaligned 
7645 transfers. Some of the debug data structures are packed by default to 
7646 minimize size.
7647
7648 Added an error message for the case where AcpiOsGetThreadId() returns 
7649 zero. 
7650 A non-zero value is required by the core ACPICA code to ensure the proper 
7651 operation of AML mutexes and recursive control methods.
7652
7653 The DSDT is now the only ACPI table that determines whether the AML 
7654 interpreter is in 32-bit or 64-bit mode. Not really a functional change, 
7655 but 
7656 the hooks for per-table 32/64 switching have been removed from the code. 
7657
7658 clarification to the ACPI specification is forthcoming in ACPI 3.0B.
7659
7660 Fixed a possible leak of an OwnerID in the error path of 
7661 AcpiTbInitTableDescriptor (tbinstal.c), and migrated all table OwnerID 
7662 deletion to a single place in AcpiTbUninstallTable to correct possible 
7663 leaks 
7664 when using the AcpiTbDeleteTablesByType interface (with assistance from 
7665 Lance Ortiz.)
7666
7667 Fixed a problem with Serialized control methods where the semaphore 
7668 associated with the method could be over-signaled after multiple method 
7669 invocations.
7670
7671 Fixed two issues with the locking of the internal namespace data 
7672 structure. 
7673 Both the Unload() operator and AcpiUnloadTable interface now lock the 
7674 namespace during the namespace deletion associated with the table unload 
7675 (with assistance from Linn Crosetto.)
7676
7677 Fixed problem reports (Valery Podrezov) integrated:
7678 - Eliminate unnecessary memory allocation for CreateXxxxField (BZ 5426)
7679
7680 Fixed problem reports (Fiodor Suietov) integrated:
7681 - Incomplete cleanup branches in AcpiTbGetTableRsdt (BZ 369)
7682 - On Address Space handler deletion, needless deactivation call (BZ 374)
7683 - AcpiRemoveAddressSpaceHandler: validate Device handle parameter (BZ 
7684 375)
7685 - Possible memory leak, Notify sub-objects of Processor, Power, 
7686 ThermalZone 
7687 (BZ 376)
7688 - AcpiRemoveAddressSpaceHandler: validate Handler parameter (BZ 378)
7689 - Minimum Length of RSDT should be validated (BZ 379)
7690 - AcpiRemoveNotifyHandler: return AE_NOT_EXIST if Processor Obj has no 
7691 Handler (BZ (380)
7692 - AcpiUnloadTable: return AE_NOT_EXIST if no table of specified type 
7693 loaded 
7694 (BZ 381)
7695
7696 Example Code and Data Size: These are the sizes for the OS-independent 
7697 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
7698 debug version of the code includes the debug output trace mechanism and 
7699 has 
7700 a much larger code and data size.
7701
7702   Previous Release:
7703     Non-Debug Version:  80.5K Code, 17.8K Data,  98.3K Total
7704     Debug Version:     160.8K Code, 64.8K Data, 225.6K Total
7705   Current Release:
7706     Non-Debug Version:  80.7K Code, 17.9K Data,  98.6K Total
7707     Debug Version:     161.0K Code, 65.1K Data, 226.1K Total
7708
7709
7710 2) iASL Compiler/Disassembler and Tools:
7711
7712 Fixed problem reports:
7713 Compiler segfault when ASL contains a long (>1024) String declaration (BZ 
7714 436)
7715
7716 ----------------------------------------
7717 23 June 2006. Summary of changes for version 20060623:
7718
7719 1) ACPI CA Core Subsystem:
7720
7721 Implemented a new ACPI_SPINLOCK type for the OSL lock interfaces. This 
7722 allows the type to be customized to the host OS for improved efficiency 
7723 (since a spinlock is usually a very small object.)
7724
7725 Implemented support for "ignored" bits in the ACPI registers. According 
7726 to 
7727 the ACPI specification, these bits should be preserved when writing the 
7728 registers via a read/modify/write cycle. There are 3 bits preserved in 
7729 this 
7730 manner: PM1_CONTROL[0] (SCI_EN), PM1_CONTROL[9], and PM1_STATUS[11].
7731
7732 Implemented the initial deployment of new OSL mutex interfaces. Since 
7733 some 
7734 host operating systems have separate mutex and semaphore objects, this 
7735 feature was requested. The base code now uses mutexes (and the new mutex 
7736 interfaces) wherever a binary semaphore was used previously. However, for 
7737 the current release, the mutex interfaces are defined as macros to map 
7738 them 
7739 to the existing semaphore interfaces. Therefore, no OSL changes are 
7740 required 
7741 at this time. (See acpiosxf.h)
7742
7743 Fixed several problems with the support for the control method SyncLevel 
7744 parameter. The SyncLevel now works according to the ACPI specification 
7745 and 
7746 in concert with the Mutex SyncLevel parameter, since the current 
7747 SyncLevel 
7748 is a property of the executing thread. Mutual exclusion for control 
7749 methods 
7750 is now implemented with a mutex instead of a semaphore.
7751
7752 Fixed three instances of the use of the C shift operator in the bitfield 
7753 support code (exfldio.c) to avoid the use of a shift value larger than 
7754 the 
7755 target data width. The behavior of C compilers is undefined in this case 
7756 and 
7757 can cause unpredictable results, and therefore the case must be detected 
7758 and 
7759 avoided. (Fiodor Suietov)
7760
7761 Added an info message whenever an SSDT or OEM table is loaded dynamically 
7762 via the Load() or LoadTable() ASL operators. This should improve 
7763 debugging 
7764 capability since it will show exactly what tables have been loaded 
7765 (beyond 
7766 the tables present in the RSDT/XSDT.)
7767
7768 Example Code and Data Size: These are the sizes for the OS-independent 
7769 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
7770 debug version of the code includes the debug output trace mechanism and 
7771 has 
7772 a much larger code and data size.
7773
7774   Previous Release:
7775     Non-Debug Version:  80.0K Code, 17.6K Data,  97.6K Total
7776     Debug Version:     160.2K Code, 64.7K Data, 224.9K Total
7777   Current Release:
7778     Non-Debug Version:  80.5K Code, 17.8K Data,  98.3K Total
7779     Debug Version:     160.8K Code, 64.8K Data, 225.6K Total
7780
7781
7782 2) iASL Compiler/Disassembler and Tools:
7783
7784 No changes for this release.
7785
7786 ----------------------------------------
7787 08 June 2006. Summary of changes for version 20060608:
7788
7789 1) ACPI CA Core Subsystem:
7790
7791 Converted the locking mutex used for the ACPI hardware to a spinlock. 
7792 This 
7793 change should eliminate all problems caused by attempting to acquire a 
7794 semaphore at interrupt level, and it means that all ACPICA external 
7795 interfaces that directly access the ACPI hardware can be safely called 
7796 from 
7797 interrupt level. OSL code that implements the semaphore interfaces should 
7798 be 
7799 able to eliminate any workarounds for being called at interrupt level.
7800
7801 Fixed a regression introduced in 20060526 where the ACPI device 
7802 initialization could be prematurely aborted with an AE_NOT_FOUND if a 
7803 device 
7804 did not have an optional _INI method.
7805
7806 Fixed an IndexField issue where a write to the Data Register should be 
7807 limited in size to the AccessSize (width) of the IndexField itself. (BZ 
7808 433, 
7809 Fiodor Suietov)
7810
7811 Fixed problem reports (Valery Podrezov) integrated:
7812 - Allow store of ThermalZone objects to Debug object (BZ 5369/5370)
7813
7814 Fixed problem reports (Fiodor Suietov) integrated:
7815 - AcpiGetTableHeader doesn't handle multiple instances correctly (BZ 364)
7816
7817 Removed four global mutexes that were obsolete and were no longer being 
7818 used.
7819
7820 Example Code and Data Size: These are the sizes for the OS-independent 
7821 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
7822 debug version of the code includes the debug output trace mechanism and 
7823 has 
7824 a much larger code and data size.
7825
7826   Previous Release:
7827     Non-Debug Version:  80.0K Code, 17.7K Data,  97.7K Total
7828     Debug Version:     160.3K Code, 64.9K Data, 225.2K Total
7829   Current Release:
7830     Non-Debug Version:  80.0K Code, 17.6K Data,  97.6K Total
7831     Debug Version:     160.2K Code, 64.7K Data, 224.9K Total
7832
7833
7834 2) iASL Compiler/Disassembler and Tools:
7835
7836 Fixed a fault when using -g option (get tables from registry) on Windows 
7837 machines.
7838
7839 Fixed problem reports integrated:
7840 - Generate error if CreateField NumBits parameter is zero. (BZ 405)
7841 - Fault if Offset/Length in Field unit is very large (BZ 432, Fiodor 
7842 Suietov)
7843 - Global table revision override (-r) is ignored (BZ 413)
7844
7845 ----------------------------------------
7846 26 May 2006. Summary of changes for version 20060526:
7847
7848 1) ACPI CA Core Subsystem:
7849
7850 Restructured, flattened, and simplified the internal interfaces for 
7851 namespace object evaluation - resulting in smaller code, less CPU stack 
7852 use, 
7853 and fewer interfaces. (With assistance from Mikhail Kouzmich)
7854
7855 Fixed a problem with the CopyObject operator where the first parameter 
7856 was 
7857 not typed correctly for the parser, interpreter, compiler, and 
7858 disassembler. 
7859 Caused various errors and unexpected behavior.
7860
7861 Fixed a problem where a ShiftLeft or ShiftRight of more than 64 bits 
7862 produced incorrect results with some C compilers. Since the behavior of C 
7863 compilers when the shift value is larger than the datatype width is 
7864 apparently not well defined, the interpreter now detects this condition 
7865 and 
7866 simply returns zero as expected in all such cases. (BZ 395)
7867
7868 Fixed problem reports (Valery Podrezov) integrated:
7869 - Update String-to-Integer conversion to match ACPI 3.0A spec (BZ 5329)
7870 - Allow interpreter to handle nested method declarations (BZ 5361)
7871
7872 Fixed problem reports (Fiodor Suietov) integrated:
7873 - AcpiTerminate doesn't free debug memory allocation list objects (BZ 
7874 355)
7875 - After Core Subsystem shutdown, AcpiSubsystemStatus returns AE_OK (BZ 
7876 356)
7877 - AcpiOsUnmapMemory for RSDP can be invoked inconsistently (BZ 357)
7878 - Resource Manager should return AE_TYPE for non-device objects (BZ 358)
7879 - Incomplete cleanup branch in AcpiNsEvaluateRelative (BZ 359)
7880 - Use AcpiOsFree instead of ACPI_FREE in AcpiRsSetSrsMethodData (BZ 360)
7881 - Incomplete cleanup branch in AcpiPsParseAml (BZ 361)
7882 - Incomplete cleanup branch in AcpiDsDeleteWalkState (BZ 362)
7883 - AcpiGetTableHeader returns AE_NO_ACPI_TABLES until DSDT is loaded (BZ 
7884 365)
7885 - Status of the Global Initialization Handler call not used (BZ 366)
7886 - Incorrect object parameter to Global Initialization Handler (BZ 367)
7887
7888 Example Code and Data Size: These are the sizes for the OS-independent 
7889 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
7890 debug version of the code includes the debug output trace mechanism and 
7891 has 
7892 a much larger code and data size.
7893
7894   Previous Release:
7895     Non-Debug Version:  79.8K Code, 17.7K Data,  97.5K Total
7896     Debug Version:     160.5K Code, 65.1K Data, 225.6K Total
7897   Current Release:
7898     Non-Debug Version:  80.0K Code, 17.7K Data,  97.7K Total
7899     Debug Version:     160.3K Code, 64.9K Data, 225.2K Total
7900
7901
7902 2) iASL Compiler/Disassembler and Tools:
7903
7904 Modified the parser to allow the names IO, DMA, and IRQ to be used as 
7905 namespace identifiers with no collision with existing resource descriptor 
7906 macro names. This provides compatibility with other ASL compilers and is 
7907 most useful for disassembly/recompilation of existing tables without 
7908 parse 
7909 errors. (With assistance from Thomas Renninger)
7910
7911 Disassembler: fixed an incorrect disassembly problem with the 
7912 DataTableRegion and CopyObject operators. Fixed a possible fault during 
7913 disassembly of some Alias operators.
7914
7915 ----------------------------------------
7916 12 May 2006. Summary of changes for version 20060512:
7917
7918 1) ACPI CA Core Subsystem:
7919
7920 Replaced the AcpiOsQueueForExecution interface with a new interface named 
7921 AcpiOsExecute. The major difference is that the new interface does not 
7922 have 
7923 a Priority parameter, this appeared to be useless and has been replaced 
7924 by 
7925
7926 Type parameter. The Type tells the host what type of execution is being 
7927 requested, such as global lock handler, notify handler, GPE handler, etc. 
7928 This allows the host to queue and execute the request as appropriate for 
7929 the 
7930 request type, possibly using different work queues and different 
7931 priorities 
7932 for the various request types. This enables fixes for multithreading 
7933 deadlock problems such as BZ #5534, and will require changes to all 
7934 existing 
7935 OS interface layers. (Alexey Starikovskiy and Bob Moore)
7936
7937 Fixed a possible memory leak associated with the support for the so-
7938 called 
7939 "implicit return" ACPI extension. Reported by FreeBSD, BZ #6514. (Fiodor 
7940 Suietov)
7941
7942 Fixed a problem with the Load() operator where a table load from an 
7943 operation region could overwrite an internal table buffer by up to 7 
7944 bytes 
7945 and cause alignment faults on IPF systems. (With assistance from Luming 
7946 Yu)
7947
7948 Example Code and Data Size: These are the sizes for the OS-independent 
7949 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
7950 debug version of the code includes the debug output trace mechanism and 
7951 has 
7952 a much larger code and data size.
7953
7954   Previous Release:
7955     Non-Debug Version:  79.7K Code, 17.7K Data,  97.4K Total
7956     Debug Version:     160.1K Code, 65.2K Data, 225.3K Total
7957   Current Release:
7958     Non-Debug Version:  79.8K Code, 17.7K Data,  97.5K Total
7959     Debug Version:     160.5K Code, 65.1K Data, 225.6K Total
7960
7961
7962
7963 2) iASL Compiler/Disassembler and Tools:
7964
7965 Disassembler: Implemented support to cross reference the internal 
7966 namespace 
7967 and automatically generate ASL External() statements for symbols not 
7968 defined 
7969 within the current table being disassembled. This will simplify the 
7970 disassembly and recompilation of interdependent tables such as SSDTs 
7971 since 
7972 these statements will no longer have to be added manually.
7973
7974 Disassembler: Implemented experimental support to automatically detect 
7975 invocations of external control methods and generate appropriate 
7976 External() 
7977 statements. This is problematic because the AML cannot be correctly 
7978 parsed 
7979 until the number of arguments for each control method is known. 
7980 Currently, 
7981 standalone method invocations and invocations as the source operand of a 
7982 Store() statement are supported.
7983
7984 Disassembler: Implemented support for the ASL pseudo-operators LNotEqual, 
7985 LLessEqual, and LGreaterEqual. Previously disassembled as LNot(LEqual()), 
7986 LNot(LGreater()), and LNot(LLess()), this makes the disassembled ASL code 
7987 more readable and likely closer to the original ASL source.
7988
7989 ----------------------------------------
7990 21 April 2006. Summary of changes for version 20060421:
7991
7992 1) ACPI CA Core Subsystem:
7993
7994 Removed a device initialization optimization introduced in 20051216 where 
7995 the _STA method was not run unless an _INI was also present for the same 
7996 device. This optimization could cause problems because it could allow 
7997 _INI 
7998 methods to be run within a not-present device subtree. (If a not-present 
7999 device had no _INI, _STA would not be run, the not-present status would 
8000 not 
8001 be discovered, and the children of the device would be incorrectly 
8002 traversed.)
8003
8004 Implemented a new _STA optimization where namespace subtrees that do not 
8005 contain _INI are identified and ignored during device initialization. 
8006 Selectively running _STA can significantly improve boot time on large 
8007 machines (with assistance from Len Brown.)
8008
8009 Implemented support for the device initialization case where the returned 
8010 _STA flags indicate a device not-present but functioning. In this case, 
8011 _INI 
8012 is not run, but the device children are examined for presence, as per the 
8013 ACPI specification.
8014
8015 Implemented an additional change to the IndexField support in order to 
8016 conform to MS behavior. The value written to the Index Register is not 
8017 simply a byte offset, it is a byte offset in units of the access width of 
8018 the parent Index Field. (Fiodor Suietov)
8019
8020 Defined and deployed a new OSL interface, AcpiOsValidateAddress. This 
8021 interface is called during the creation of all AML operation regions, and 
8022 allows the host OS to exert control over what addresses it will allow the 
8023 AML code to access. Operation Regions whose addresses are disallowed will 
8024 cause a runtime exception when they are actually accessed (will not 
8025 affect 
8026 or abort table loading.) See oswinxf or osunixxf for an example 
8027 implementation.
8028
8029 Defined and deployed a new OSL interface, AcpiOsValidateInterface. This 
8030 interface allows the host OS to match the various "optional" 
8031 interface/behavior strings for the _OSI predefined control method as 
8032 appropriate (with assistance from Bjorn Helgaas.) See oswinxf or osunixxf 
8033 for an example implementation.
8034
8035 Restructured and corrected various problems in the exception handling 
8036 code 
8037 paths within DsCallControlMethod and DsTerminateControlMethod in dsmethod 
8038 (with assistance from Takayoshi Kochi.)
8039
8040 Modified the Linux source converter to ignore quoted string literals 
8041 while 
8042 converting identifiers from mixed to lower case. This will correct 
8043 problems 
8044 with the disassembler and other areas where such strings must not be 
8045 modified.
8046
8047 The ACPI_FUNCTION_* macros no longer require quotes around the function 
8048 name. This allows the Linux source converter to convert the names, now 
8049 that 
8050 the converter ignores quoted strings.
8051
8052 Example Code and Data Size: These are the sizes for the OS-independent 
8053 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
8054 debug version of the code includes the debug output trace mechanism and 
8055 has 
8056 a much larger code and data size.
8057
8058   Previous Release:
8059
8060     Non-Debug Version:  81.1K Code, 17.7K Data,  98.8K Total
8061     Debug Version:     158.9K Code, 64.9K Data, 223.8K Total
8062   Current Release:
8063     Non-Debug Version:  79.7K Code, 17.7K Data,  97.4K Total
8064     Debug Version:     160.1K Code, 65.2K Data, 225.3K Total
8065
8066
8067 2) iASL Compiler/Disassembler and Tools:
8068
8069 Implemented 3 new warnings for iASL, and implemented multiple warning 
8070 levels 
8071 (w2 flag).
8072
8073 1) Ignored timeouts: If the TimeoutValue parameter to Wait or Acquire is 
8074 not 
8075 WAIT_FOREVER (0xFFFF) and the code does not examine the return value to 
8076 check for the possible timeout, a warning is issued.
8077
8078 2) Useless operators: If an ASL operator does not specify an optional 
8079 target 
8080 operand and it also does not use the function return value from the 
8081 operator, a warning is issued since the operator effectively does 
8082 nothing.
8083
8084 3) Unreferenced objects: If a namespace object is created, but never 
8085 referenced, a warning is issued. This is a warning level 2 since there 
8086 are 
8087 cases where this is ok, such as when a secondary table is loaded that 
8088 uses 
8089 the unreferenced objects. Even so, care is taken to only flag objects 
8090 that 
8091 don't look like they will ever be used. For example, the reserved methods 
8092 (starting with an underscore) are usually not referenced because it is 
8093 expected that the OS will invoke them.
8094
8095 ----------------------------------------
8096 31 March 2006. Summary of changes for version 20060331:
8097
8098 1) ACPI CA Core Subsystem:
8099
8100 Implemented header file support for the following additional ACPI tables: 
8101 ASF!, BOOT, CPEP, DBGP, MCFG, SPCR, SPMI, TCPA, and WDRT. With this 
8102 support, 
8103 all current and known ACPI tables are now defined in the ACPICA headers 
8104 and 
8105 are available for use by device drivers and other software.
8106
8107 Implemented support to allow tables that contain ACPI names with invalid 
8108 characters to be loaded. Previously, this would cause the table load to 
8109 fail, but since there are several known cases of such tables on existing 
8110 machines, this change was made to enable ACPI support for them. Also, 
8111 this 
8112 matches the behavior of the Microsoft ACPI implementation.
8113
8114 Fixed a couple regressions introduced during the memory optimization in 
8115 the 
8116 20060317 release. The namespace node definition required additional 
8117 reorganization and an internal datatype that had been changed to 8-bit 
8118 was 
8119 restored to 32-bit. (Valery Podrezov)
8120
8121 Fixed a problem where a null pointer passed to AcpiUtDeleteGenericState 
8122 could be passed through to AcpiOsReleaseObject which is unexpected. Such 
8123 null pointers are now trapped and ignored, matching the behavior of the 
8124 previous implementation before the deployment of AcpiOsReleaseObject.
8125 (Valery Podrezov, Fiodor Suietov)
8126
8127 Fixed a memory mapping leak during the deletion of a SystemMemory 
8128 operation 
8129 region where a cached memory mapping was not deleted. This became a 
8130 noticeable problem for operation regions that are defined within 
8131 frequently 
8132 used control methods. (Dana Meyers)
8133
8134 Reorganized the ACPI table header files into two main files: one for the 
8135 ACPI tables consumed by the ACPICA core, and another for the 
8136 miscellaneous 
8137 ACPI tables that are consumed by the drivers and other software. The 
8138 various 
8139 FADT definitions were merged into one common section and three different 
8140 tables (ACPI 1.0, 1.0+, and 2.0)
8141
8142 Example Code and Data Size: These are the sizes for the OS-independent 
8143 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
8144 debug version of the code includes the debug output trace mechanism and 
8145 has 
8146 a much larger code and data size.
8147
8148   Previous Release:
8149     Non-Debug Version:  80.9K Code, 17.7K Data,  98.6K Total
8150     Debug Version:     158.7K Code, 64.8K Data, 223.5K Total
8151   Current Release:
8152     Non-Debug Version:  81.1K Code, 17.7K Data,  98.8K Total
8153     Debug Version:     158.9K Code, 64.9K Data, 223.8K Total
8154
8155
8156 2) iASL Compiler/Disassembler and Tools:
8157
8158 Disassembler: Implemented support to decode and format all non-AML ACPI 
8159 tables (tables other than DSDTs and SSDTs.) This includes the new tables 
8160 added to the ACPICA headers, therefore all current and known ACPI tables 
8161 are 
8162 supported.
8163
8164 Disassembler: The change to allow ACPI names with invalid characters also 
8165 enables the disassembly of such tables. Invalid characters within names 
8166 are 
8167 changed to '*' to make the name printable; the iASL compiler will still 
8168 generate an error for such names, however, since this is an invalid ACPI 
8169 character.
8170
8171 Implemented an option for AcpiXtract (-a) to extract all tables found in 
8172 the 
8173 input file. The default invocation extracts only the DSDTs and SSDTs.
8174
8175 Fixed a couple of gcc generation issues for iASL and AcpiExec and added a 
8176 makefile for the AcpiXtract utility.
8177
8178 ----------------------------------------
8179 17 March 2006. Summary of changes for version 20060317:
8180
8181 1) ACPI CA Core Subsystem:
8182
8183 Implemented the use of a cache object for all internal namespace nodes. 
8184 Since there are about 1000 static nodes in a typical system, this will 
8185 decrease memory use for cache implementations that minimize per-
8186 allocation 
8187 overhead (such as a slab allocator.)
8188
8189 Removed the reference count mechanism for internal namespace nodes, since 
8190 it 
8191 was deemed unnecessary. This reduces the size of each namespace node by 
8192 about 5%-10% on all platforms. Nodes are now 20 bytes for the 32-bit 
8193 case, 
8194 and 32 bytes for the 64-bit case.
8195
8196 Optimized several internal data structures to reduce object size on 64-
8197 bit 
8198 platforms by packing data within the 64-bit alignment. This includes the 
8199 frequently used ACPI_OPERAND_OBJECT, of which there can be ~1000 static 
8200 instances corresponding to the namespace objects.
8201
8202 Added two new strings for the predefined _OSI method: "Windows 2001.1 
8203 SP1" 
8204 and "Windows 2006".
8205
8206 Split the allocation tracking mechanism out to a separate file, from 
8207 utalloc.c to uttrack.c. This mechanism appears to be only useful for 
8208 application-level code. Kernels may wish to not include uttrack.c in 
8209 distributions.
8210
8211 Removed all remnants of the obsolete ACPI_REPORT_* macros and the 
8212 associated 
8213 code. (These macros have been replaced by the ACPI_ERROR and ACPI_WARNING 
8214 macros.)
8215
8216 Code and Data Size: These are the sizes for the acpica.lib produced by 
8217 the 
8218 Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any 
8219 ACPI 
8220 driver or OSPM code. The debug version of the code includes the debug 
8221 output 
8222 trace mechanism and has a much larger code and data size. Note that these 
8223 values will vary depending on the efficiency of the compiler and the 
8224 compiler options used during generation.
8225
8226   Previous Release:
8227     Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
8228     Debug Version:     161.6K Code, 65.7K Data, 227.3K Total
8229   Current Release:
8230     Non-Debug Version:  80.9K Code, 17.7K Data,  98.6K Total
8231     Debug Version:     158.7K Code, 64.8K Data, 223.5K Total
8232
8233
8234 2) iASL Compiler/Disassembler and Tools:
8235
8236 Implemented an ANSI C version of the acpixtract utility. This version 
8237 will 
8238 automatically extract the DSDT and all SSDTs from the input acpidump text 
8239 file and dump the binary output to separate files. It can also display a 
8240 summary of the input file including the headers for each table found and 
8241 will extract any single ACPI table, with any signature. (See 
8242 source/tools/acpixtract)
8243
8244 ----------------------------------------
8245 10 March 2006. Summary of changes for version 20060310:
8246
8247 1) ACPI CA Core Subsystem:
8248
8249 Tagged all external interfaces to the subsystem with the new 
8250 ACPI_EXPORT_SYMBOL macro. This macro can be defined as necessary to 
8251 assist 
8252 kernel integration. For Linux, the macro resolves to the EXPORT_SYMBOL 
8253 macro. The default definition is NULL.
8254
8255 Added the ACPI_THREAD_ID type for the return value from 
8256 AcpiOsGetThreadId. 
8257 This allows the host to define this as necessary to simplify kernel 
8258 integration. The default definition is ACPI_NATIVE_UINT.
8259
8260 Fixed two interpreter problems related to error processing, the deletion 
8261 of 
8262 objects, and placing invalid pointers onto the internal operator result 
8263 stack. BZ 6028, 6151 (Valery Podrezov)
8264
8265 Increased the reference count threshold where a warning is emitted for 
8266 large 
8267 reference counts in order to eliminate unnecessary warnings on systems 
8268 with 
8269 large namespaces (especially 64-bit.) Increased the value from 0x400 to 
8270 0x800.
8271
8272 Due to universal disagreement as to the meaning of the 'c' in the 
8273 calloc() 
8274 function, the ACPI_MEM_CALLOCATE macro has been renamed to 
8275 ACPI_ALLOCATE_ZEROED so that the purpose of the interface is 'clear'. 
8276 ACPI_MEM_ALLOCATE and ACPI_MEM_FREE are renamed to ACPI_ALLOCATE and 
8277 ACPI_FREE.
8278
8279 Code and Data Size: These are the sizes for the acpica.lib produced by 
8280 the 
8281 Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any 
8282 ACPI 
8283 driver or OSPM code. The debug version of the code includes the debug 
8284 output 
8285 trace mechanism and has a much larger code and data size. Note that these 
8286 values will vary depending on the efficiency of the compiler and the 
8287 compiler options used during generation.
8288
8289   Previous Release:
8290     Non-Debug Version:  81.0K Code, 17.8K Data,  98.8K Total
8291     Debug Version:     161.4K Code, 65.7K Data, 227.1K Total
8292   Current Release:
8293     Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
8294     Debug Version:     161.6K Code, 65.7K Data, 227.3K Total
8295
8296
8297 2) iASL Compiler/Disassembler:
8298
8299 Disassembler: implemented support for symbolic resource descriptor 
8300 references. If a CreateXxxxField operator references a fixed offset 
8301 within 
8302
8303 resource descriptor, a name is assigned to the descriptor and the offset 
8304 is 
8305 translated to the appropriate resource tag and pathname. The addition of 
8306 this support brings the disassembled code very close to the original ASL 
8307 source code and helps eliminate run-time errors when the disassembled 
8308 code 
8309 is modified (and recompiled) in such a way as to invalidate the original 
8310 fixed offsets.
8311
8312 Implemented support for a Descriptor Name as the last parameter to the 
8313 ASL 
8314 Register() macro. This parameter was inadvertently left out of the ACPI 
8315 specification, and will be added for ACPI 3.0b.
8316
8317 Fixed a problem where the use of the "_OSI" string (versus the full path 
8318 "\_OSI") caused an internal compiler error. ("No back ptr to op")
8319
8320 Fixed a problem with the error message that occurs when an invalid string 
8321 is 
8322 used for a _HID object (such as one with an embedded asterisk: 
8323 "*PNP010A".) 
8324 The correct message is now displayed.
8325
8326 ----------------------------------------
8327 17 February 2006. Summary of changes for version 20060217:
8328
8329 1) ACPI CA Core Subsystem:
8330
8331 Implemented a change to the IndexField support to match the behavior of 
8332 the 
8333 Microsoft AML interpreter. The value written to the Index register is now 
8334
8335 byte offset, no longer an index based upon the width of the Data 
8336 register. 
8337 This should fix IndexField problems seen on some machines where the Data 
8338 register is not exactly one byte wide. The ACPI specification will be 
8339 clarified on this point.
8340
8341 Fixed a problem where several resource descriptor types could overrun the 
8342 internal descriptor buffer due to size miscalculation: VendorShort, 
8343 VendorLong, and Interrupt. This was noticed on IA64 machines, but could 
8344 affect all platforms.
8345
8346 Fixed a problem where individual resource descriptors were misaligned 
8347 within 
8348 the internal buffer, causing alignment faults on IA64 platforms.
8349
8350 Code and Data Size: These are the sizes for the acpica.lib produced by 
8351 the 
8352 Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any 
8353 ACPI 
8354 driver or OSPM code. The debug version of the code includes the debug 
8355 output 
8356 trace mechanism and has a much larger code and data size. Note that these 
8357 values will vary depending on the efficiency of the compiler and the 
8358 compiler options used during generation.
8359
8360   Previous Release:
8361     Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
8362     Debug Version:     161.3K Code, 65.6K Data, 226.9K Total
8363   Current Release:
8364     Non-Debug Version:  81.0K Code, 17.8K Data,  98.8K Total
8365     Debug Version:     161.4K Code, 65.7K Data, 227.1K Total
8366
8367
8368 2) iASL Compiler/Disassembler:
8369
8370 Implemented support for new reserved names: _WDG and _WED are Microsoft 
8371 extensions for Windows Instrumentation Management, _TDL is a new ACPI-
8372 defined method (Throttling Depth Limit.)
8373
8374 Fixed a problem where a zero-length VendorShort or VendorLong resource 
8375 descriptor was incorrectly emitted as a descriptor of length one.
8376
8377 ----------------------------------------
8378 10 February 2006. Summary of changes for version 20060210:
8379
8380 1) ACPI CA Core Subsystem:
8381
8382 Removed a couple of extraneous ACPI_ERROR messages that appeared during 
8383 normal execution. These became apparent after the conversion from 
8384 ACPI_DEBUG_PRINT.
8385
8386 Fixed a problem where the CreateField operator could hang if the BitIndex 
8387 or 
8388 NumBits parameter referred to a named object. (Valery Podrezov, BZ 5359)
8389
8390 Fixed a problem where a DeRefOf operation on a buffer object incorrectly 
8391 failed with an exception. This also fixes a couple of related RefOf and 
8392 DeRefOf issues. (Valery Podrezov, BZ 5360/5392/5387)
8393
8394 Fixed a problem where the AE_BUFFER_LIMIT exception was returned instead 
8395 of 
8396 AE_STRING_LIMIT on an out-of-bounds Index() operation. (Valery Podrezov, 
8397 BZ 
8398 5480)
8399
8400 Implemented a memory cleanup at the end of the execution of each 
8401 iteration 
8402 of an AML While() loop, preventing the accumulation of outstanding 
8403 objects. 
8404 (Valery Podrezov, BZ 5427)
8405
8406 Eliminated a chunk of duplicate code in the object resolution code. 
8407 (Valery 
8408 Podrezov, BZ 5336)
8409
8410 Fixed several warnings during the 64-bit code generation.
8411
8412 The AcpiSrc source code conversion tool now inserts one line of 
8413 whitespace 
8414 after an if() statement that is followed immediately by a comment, 
8415 improving 
8416 readability of the Linux code.
8417
8418 Code and Data Size: The current and previous library sizes for the core 
8419 subsystem are shown below. These are the code and data sizes for the 
8420 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
8421 These 
8422 values do not include any ACPI driver or OSPM code. The debug version of 
8423 the 
8424 code includes the debug output trace mechanism and has a much larger code 
8425 and data size. Note that these values will vary depending on the 
8426 efficiency 
8427 of the compiler and the compiler options used during generation.
8428
8429   Previous Release:
8430     Non-Debug Version:  81.0K Code, 17.9K Data,  98.9K Total
8431     Debug Version:     161.3K Code, 65.7K Data, 227.0K Total
8432   Current Release:
8433     Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
8434     Debug Version:     161.3K Code, 65.6K Data, 226.9K Total
8435
8436
8437 2) iASL Compiler/Disassembler:
8438
8439 Fixed a problem with the disassembly of a BankField operator with a 
8440 complex 
8441 expression for the BankValue parameter.
8442
8443 ----------------------------------------
8444 27 January 2006. Summary of changes for version 20060127:
8445
8446 1) ACPI CA Core Subsystem:
8447
8448 Implemented support in the Resource Manager to allow unresolved 
8449 namestring 
8450 references within resource package objects for the _PRT method. This 
8451 support 
8452 is in addition to the previously implemented unresolved reference support 
8453 within the AML parser. If the interpreter slack mode is enabled, these 
8454 unresolved references will be passed through to the caller as a NULL 
8455 package 
8456 entry.
8457
8458 Implemented and deployed new macros and functions for error and warning 
8459 messages across the subsystem. These macros are simpler and generate less 
8460 code than their predecessors. The new macros ACPI_ERROR, ACPI_EXCEPTION, 
8461 ACPI_WARNING, and ACPI_INFO replace the ACPI_REPORT_* macros. The older 
8462 macros remain defined to allow ACPI drivers time to migrate to the new 
8463 macros.
8464
8465 Implemented the ACPI_CPU_FLAGS type to simplify host OS integration of 
8466 the 
8467 Acquire/Release Lock OSL interfaces.
8468
8469 Fixed a problem where Alias ASL operators are sometimes not correctly 
8470 resolved, in both the interpreter and the iASL compiler.
8471
8472 Fixed several problems with the implementation of the 
8473 ConcatenateResTemplate 
8474 ASL operator. As per the ACPI specification, zero length buffers are now 
8475 treated as a single EndTag. One-length buffers always cause a fatal 
8476 exception. Non-zero length buffers that do not end with a full 2-byte 
8477 EndTag 
8478 cause a fatal exception.
8479
8480 Fixed a possible structure overwrite in the AcpiGetObjectInfo external 
8481 interface. (With assistance from Thomas Renninger)
8482
8483 Code and Data Size: The current and previous library sizes for the core 
8484 subsystem are shown below. These are the code and data sizes for the 
8485 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
8486 These 
8487 values do not include any ACPI driver or OSPM code. The debug version of 
8488 the 
8489 code includes the debug output trace mechanism and has a much larger code 
8490 and data size. Note that these values will vary depending on the 
8491 efficiency 
8492 of the compiler and the compiler options used during generation.
8493
8494   Previous Release:
8495     Non-Debug Version:  83.1K Code, 18.4K Data, 101.5K Total
8496     Debug Version:     163.2K Code, 66.2K Data, 229.4K Total
8497   Current Release:
8498     Non-Debug Version:  81.0K Code, 17.9K Data,  98.9K Total
8499     Debug Version:     161.3K Code, 65.7K Data, 227.0K Total
8500
8501
8502 2) iASL Compiler/Disassembler:
8503
8504 Fixed an internal error that was generated for any forward references to 
8505 ASL 
8506 Alias objects.
8507
8508 ----------------------------------------
8509 13 January 2006. Summary of changes for version 20060113:
8510
8511 1) ACPI CA Core Subsystem:
8512
8513 Added 2006 copyright to all module headers and signons. This affects 
8514 virtually every file in the ACPICA core subsystem, iASL compiler, and the 
8515 utilities.
8516  
8517 Enhanced the ACPICA error reporting in order to simplify user migration 
8518 to 
8519 the non-debug version of ACPICA. Replaced all instances of the 
8520 ACPI_DEBUG_PRINT macro invoked at the ACPI_DB_ERROR and ACPI_DB_WARN 
8521 debug 
8522 levels with the ACPI_REPORT_ERROR and ACPI_REPORT_WARNING macros, 
8523 respectively. This preserves all error and warning messages in the non-
8524 debug 
8525 version of the ACPICA code (this has been referred to as the "debug lite" 
8526 option.) Over 200 cases were converted to create a total of over 380 
8527 error/warning messages across the ACPICA code. This increases the code 
8528 and 
8529 data size of the default non-debug version of the code somewhat (about 
8530 13K), 
8531 but all error/warning reporting may be disabled if desired (and code 
8532 eliminated) by specifying the ACPI_NO_ERROR_MESSAGES compile-time 
8533 configuration option. The size of the debug version of ACPICA remains 
8534 about 
8535 the same.
8536
8537 Fixed a memory leak within the AML Debugger "Set" command. One object was 
8538 not properly deleted for every successful invocation of the command.
8539
8540 Code and Data Size: The current and previous library sizes for the core 
8541 subsystem are shown below. These are the code and data sizes for the 
8542 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
8543 These 
8544 values do not include any ACPI driver or OSPM code. The debug version of 
8545 the 
8546 code includes the debug output trace mechanism and has a much larger code 
8547 and data size. Note that these values will vary depending on the 
8548 efficiency 
8549 of the compiler and the compiler options used during generation.
8550
8551   Previous Release:
8552     Non-Debug Version:  76.6K Code, 12.3K Data,  88.9K Total
8553     Debug Version:     163.7K Code, 67.5K Data, 231.2K Total
8554   Current Release:
8555     Non-Debug Version:  83.1K Code, 18.4K Data, 101.5K Total
8556     Debug Version:     163.2K Code, 66.2K Data, 229.4K Total
8557
8558
8559 2) iASL Compiler/Disassembler:
8560
8561 The compiler now officially supports the ACPI 3.0a specification that was 
8562 released on December 30, 2005. (Specification is available at 
8563 www.acpi.info)
8564
8565 ----------------------------------------
8566 16 December 2005. Summary of changes for version 20051216:
8567
8568 1) ACPI CA Core Subsystem:
8569
8570 Implemented optional support to allow unresolved names within ASL Package 
8571 objects. A null object is inserted in the package when a named reference 
8572 cannot be located in the current namespace. Enabled via the interpreter 
8573 slack flag, this should eliminate AE_NOT_FOUND exceptions seen on 
8574 machines 
8575 that contain such code.
8576
8577 Implemented an optimization to the initialization sequence that can 
8578 improve 
8579 boot time. During ACPI device initialization, the _STA method is now run 
8580 if 
8581 and only if the _INI method exists. The _STA method is used to determine 
8582 if 
8583 the device is present; An _INI can only be run if _STA returns present, 
8584 but 
8585 it is a waste of time to run the _STA method if the _INI does not exist. 
8586 (Prototype and assistance from Dong Wei)
8587
8588 Implemented use of the C99 uintptr_t for the pointer casting macros if it 
8589 is 
8590 available in the current compiler. Otherwise, the default (void *) cast 
8591 is 
8592 used as before.
8593
8594 Fixed some possible memory leaks found within the execution path of the 
8595 Break, Continue, If, and CreateField operators. (Valery Podrezov)
8596
8597 Fixed a problem introduced in the 20051202 release where an exception is 
8598 generated during method execution if a control method attempts to declare 
8599 another method.
8600
8601 Moved resource descriptor string constants that are used by both the AML 
8602 disassembler and AML debugger to the common utilities directory so that 
8603 these components are independent.
8604
8605 Implemented support in the AcpiExec utility (-e switch) to globally 
8606 ignore 
8607 exceptions during control method execution (method is not aborted.)
8608
8609 Added the rsinfo.c source file to the AcpiExec makefile for Linux/Unix 
8610 generation.
8611
8612 Code and Data Size: The current and previous library sizes for the core 
8613 subsystem are shown below. These are the code and data sizes for the 
8614 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
8615 These 
8616 values do not include any ACPI driver or OSPM code. The debug version of 
8617 the 
8618 code includes the debug output trace mechanism and has a much larger code 
8619 and data size. Note that these values will vary depending on the 
8620 efficiency 
8621 of the compiler and the compiler options used during generation.
8622
8623   Previous Release:
8624     Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
8625     Debug Version:     163.2K Code, 67.4K Data, 230.6K Total
8626   Current Release:
8627     Non-Debug Version:  76.6K Code, 12.3K Data,  88.9K Total
8628     Debug Version:     163.7K Code, 67.5K Data, 231.2K Total
8629
8630
8631 2) iASL Compiler/Disassembler:
8632
8633 Fixed a problem where a CPU stack overflow fault could occur if a 
8634 recursive 
8635 method call was made from within a Return statement.
8636
8637 ----------------------------------------
8638 02 December 2005. Summary of changes for version 20051202:
8639
8640 1) ACPI CA Core Subsystem:
8641
8642 Modified the parsing of control methods to no longer create namespace 
8643 objects during the first pass of the parse. Objects are now created only 
8644 during the execute phase, at the moment the namespace creation operator 
8645 is 
8646 encountered in the AML (Name, OperationRegion, CreateByteField, etc.) 
8647 This 
8648 should eliminate ALREADY_EXISTS exceptions seen on some machines where 
8649 reentrant control methods are protected by an AML mutex. The mutex will 
8650 now 
8651 correctly block multiple threads from attempting to create the same 
8652 object 
8653 more than once.
8654
8655 Increased the number of available Owner Ids for namespace object tracking 
8656 from 32 to 255. This should eliminate the OWNER_ID_LIMIT exceptions seen 
8657 on 
8658 some machines with a large number of ACPI tables (either static or 
8659 dynamic).
8660
8661 Fixed a problem with the AcpiExec utility where a fault could occur when 
8662 the 
8663 -b switch (batch mode) is used.
8664
8665 Enhanced the namespace dump routine to output the owner ID for each 
8666 namespace object.
8667
8668 Code and Data Size: The current and previous library sizes for the core 
8669 subsystem are shown below. These are the code and data sizes for the 
8670 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
8671 These 
8672 values do not include any ACPI driver or OSPM code. The debug version of 
8673 the 
8674 code includes the debug output trace mechanism and has a much larger code 
8675 and data size. Note that these values will vary depending on the 
8676 efficiency 
8677 of the compiler and the compiler options used during generation.
8678
8679   Previous Release:
8680     Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
8681     Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
8682   Current Release:
8683     Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
8684     Debug Version:     163.2K Code, 67.4K Data, 230.6K Total
8685
8686
8687 2) iASL Compiler/Disassembler:
8688
8689 Fixed a parse error during compilation of certain Switch/Case constructs. 
8690 To 
8691 simplify the parse, the grammar now allows for multiple Default 
8692 statements 
8693 and this error is now detected and flagged during the analysis phase.
8694
8695 Disassembler: The disassembly now includes the contents of the original 
8696 table header within a comment at the start of the file. This includes the 
8697 name and version of the original ASL compiler.
8698
8699 ----------------------------------------
8700 17 November 2005. Summary of changes for version 20051117:
8701
8702 1) ACPI CA Core Subsystem:
8703
8704 Fixed a problem in the AML parser where the method thread count could be 
8705 decremented below zero if any errors occurred during the method parse 
8706 phase. 
8707 This should eliminate AE_AML_METHOD_LIMIT exceptions seen on some 
8708 machines. 
8709 This also fixed a related regression with the mechanism that detects and 
8710 corrects methods that cannot properly handle reentrancy (related to the 
8711 deployment of the new OwnerId mechanism.)
8712
8713 Eliminated the pre-parsing of control methods (to detect errors) during 
8714 table load. Related to the problem above, this was causing unwind issues 
8715 if 
8716 any errors occurred during the parse, and it seemed to be overkill. A 
8717 table 
8718 load should not be aborted if there are problems with any single control 
8719 method, thus rendering this feature rather pointless.
8720
8721 Fixed a problem with the new table-driven resource manager where an 
8722 internal 
8723 buffer overflow could occur for small resource templates.
8724
8725 Implemented a new external interface, AcpiGetVendorResource. This 
8726 interface 
8727 will find and return a vendor-defined resource descriptor within a _CRS 
8728 or 
8729 _PRS method via an ACPI 3.0 UUID match. With assistance from Bjorn 
8730 Helgaas.
8731
8732 Removed the length limit (200) on string objects as per the upcoming ACPI 
8733 3.0A specification. This affects the following areas of the interpreter: 
8734 1) 
8735 any implicit conversion of a Buffer to a String, 2) a String object 
8736 result 
8737 of the ASL Concatentate operator, 3) the String object result of the ASL 
8738 ToString operator.
8739
8740 Fixed a problem in the Windows OS interface layer (OSL) where a 
8741 WAIT_FOREVER 
8742 on a semaphore object would incorrectly timeout. This allows the 
8743 multithreading features of the AcpiExec utility to work properly under 
8744 Windows.
8745
8746 Updated the Linux makefiles for the iASL compiler and AcpiExec to include 
8747 the recently added file named "utresrc.c".
8748
8749 Code and Data Size: The current and previous library sizes for the core 
8750 subsystem are shown below. These are the code and data sizes for the 
8751 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
8752 These 
8753 values do not include any ACPI driver or OSPM code. The debug version of 
8754 the 
8755 code includes the debug output trace mechanism and has a much larger code 
8756 and data size. Note that these values will vary depending on the 
8757 efficiency 
8758 of the compiler and the compiler options used during generation.
8759
8760   Previous Release:
8761     Non-Debug Version:  76.2K Code, 12.3K Data,  88.5K Total
8762     Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
8763   Current Release:
8764     Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
8765     Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
8766
8767
8768 2) iASL Compiler/Disassembler:
8769
8770 Removed the limit (200) on string objects as per the upcoming ACPI 3.0A 
8771 specification. For the iASL compiler, this means that string literals 
8772 within 
8773 the source ASL can be of any length. 
8774
8775 Enhanced the listing output to dump the AML code for resource descriptors 
8776 immediately after the ASL code for each descriptor, instead of in a block 
8777 at 
8778 the end of the entire resource template.
8779
8780 Enhanced the compiler debug output to dump the entire original parse tree 
8781 constructed during the parse phase, before any transforms are applied to 
8782 the 
8783 tree. The transformed tree is dumped also.
8784
8785 ----------------------------------------
8786 02 November 2005. Summary of changes for version 20051102:
8787
8788 1) ACPI CA Core Subsystem:
8789
8790 Modified the subsystem initialization sequence to improve GPE support. 
8791 The 
8792 GPE initialization has been split into two parts in order to defer 
8793 execution 
8794 of the _PRW methods (Power Resources for Wake) until after the hardware 
8795 is 
8796 fully initialized and the SCI handler is installed. This allows the _PRW 
8797 methods to access fields protected by the Global Lock. This will fix 
8798 systems 
8799 where a NO_GLOBAL_LOCK exception has been seen during initialization.
8800
8801 Converted the ACPI internal object disassemble and display code within 
8802 the 
8803 AML debugger to fully table-driven operation, reducing code size and 
8804 increasing maintainability.
8805
8806 Fixed a regression with the ConcatenateResTemplate() ASL operator 
8807 introduced 
8808 in the 20051021 release.
8809
8810 Implemented support for "local" internal ACPI object types within the 
8811 debugger "Object" command and the AcpiWalkNamespace external interfaces. 
8812 These local types include RegionFields, BankFields, IndexFields, Alias, 
8813 and 
8814 reference objects.
8815
8816 Moved common AML resource handling code into a new file, "utresrc.c". 
8817 This 
8818 code is shared by both the Resource Manager and the AML Debugger.
8819
8820 Code and Data Size: The current and previous library sizes for the core 
8821 subsystem are shown below. These are the code and data sizes for the 
8822 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
8823 These 
8824 values do not include any ACPI driver or OSPM code. The debug version of 
8825 the 
8826 code includes the debug output trace mechanism and has a much larger code 
8827 and data size. Note that these values will vary depending on the 
8828 efficiency 
8829 of the compiler and the compiler options used during generation.
8830
8831   Previous Release:
8832     Non-Debug Version:  76.1K Code, 12.2K Data,  88.3K Total
8833     Debug Version:     163.5K Code, 67.0K Data, 230.5K Total
8834   Current Release:
8835     Non-Debug Version:  76.2K Code, 12.3K Data,  88.5K Total
8836     Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
8837
8838
8839 2) iASL Compiler/Disassembler:
8840
8841 Fixed a problem with very large initializer lists (more than 4000 
8842 elements) 
8843 for both Buffer and Package objects where the parse stack could overflow.
8844
8845 Enhanced the pre-compile source code scan for non-ASCII characters to 
8846 ignore 
8847 characters within comment fields. The scan is now always performed and is 
8848 no 
8849 longer optional, detecting invalid characters within a source file 
8850 immediately rather than during the parse phase or later.
8851
8852 Enhanced the ASL grammar definition to force early reductions on all 
8853 list-
8854 style grammar elements so that the overall parse stack usage is greatly 
8855 reduced. This should improve performance and reduce the possibility of 
8856 parse 
8857 stack overflow.
8858
8859 Eliminated all reduce/reduce conflicts in the iASL parser generation. 
8860 Also, 
8861 with the addition of a %expected statement, the compiler generates from 
8862 source with no warnings.
8863
8864 Fixed a possible segment fault in the disassembler if the input filename 
8865 does not contain a "dot" extension (Thomas Renninger).
8866
8867 ----------------------------------------
8868 21 October 2005. Summary of changes for version 20051021:
8869
8870 1) ACPI CA Core Subsystem:
8871
8872 Implemented support for the EM64T and other x86-64 processors. This 
8873 essentially entails recognizing that these processors support non-aligned 
8874 memory transfers. Previously, all 64-bit processors were assumed to lack 
8875 hardware support for non-aligned transfers.
8876
8877 Completed conversion of the Resource Manager to nearly full table-driven 
8878 operation. Specifically, the resource conversion code (convert AML to 
8879 internal format and the reverse) and the debug code to dump internal 
8880 resource descriptors are fully table-driven, reducing code and data size 
8881 and 
8882 improving maintainability.
8883
8884 The OSL interfaces for Acquire and Release Lock now use a 64-bit flag 
8885 word 
8886 on 64-bit processors instead of a fixed 32-bit word. (With assistance 
8887 from 
8888 Alexey Starikovskiy)
8889
8890 Implemented support within the resource conversion code for the Type-
8891 Specific byte within the various ACPI 3.0 *WordSpace macros.
8892
8893 Fixed some issues within the resource conversion code for the type-
8894 specific 
8895 flags for both Memory and I/O address resource descriptors. For Memory, 
8896 implemented support for the MTP and TTP flags. For I/O, split the TRS and 
8897 TTP flags into two separate fields.
8898
8899 Code and Data Size: The current and previous library sizes for the core 
8900 subsystem are shown below. These are the code and data sizes for the 
8901 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
8902 These 
8903 values do not include any ACPI driver or OSPM code. The debug version of 
8904 the 
8905 code includes the debug output trace mechanism and has a much larger code 
8906 and data size. Note that these values will vary depending on the 
8907 efficiency 
8908 of the compiler and the compiler options used during generation.
8909
8910   Previous Release:
8911     Non-Debug Version:  77.1K Code, 12.1K Data,  89.2K Total
8912     Debug Version:     168.0K Code, 68.3K Data, 236.3K Total
8913   Current Release:
8914     Non-Debug Version:  76.1K Code, 12.2K Data,  88.3K Total
8915     Debug Version:     163.5K Code, 67.0K Data, 230.5K Total
8916
8917
8918
8919 2) iASL Compiler/Disassembler:
8920
8921 Relaxed a compiler restriction that disallowed a ResourceIndex byte if 
8922 the 
8923 corresponding ResourceSource string was not also present in a resource 
8924 descriptor declaration. This restriction caused problems with existing 
8925 AML/ASL code that includes the Index byte without the string. When such 
8926 AML 
8927 was disassembled, it could not be compiled without modification. Further, 
8928 the modified code created a resource template with a different size than 
8929 the 
8930 original, breaking code that used fixed offsets into the resource 
8931 template 
8932 buffer.
8933
8934 Removed a recent feature of the disassembler to ignore a lone 
8935 ResourceIndex 
8936 byte. This byte is now emitted if present so that the exact AML can be 
8937 reproduced when the disassembled code is recompiled.
8938
8939 Improved comments and text alignment for the resource descriptor code 
8940 emitted by the disassembler.
8941
8942 Implemented disassembler support for the ACPI 3.0 AccessSize field within 
8943
8944 Register() resource descriptor.
8945
8946 ----------------------------------------
8947 30 September 2005. Summary of changes for version 20050930:
8948
8949 1) ACPI CA Core Subsystem:
8950
8951 Completed a major overhaul of the Resource Manager code - specifically, 
8952 optimizations in the area of the AML/internal resource conversion code. 
8953 The 
8954 code has been optimized to simplify and eliminate duplicated code, CPU 
8955 stack 
8956 use has been decreased by optimizing function parameters and local 
8957 variables, and naming conventions across the manager have been 
8958 standardized 
8959 for clarity and ease of maintenance (this includes function, parameter, 
8960 variable, and struct/typedef names.) The update may force changes in some 
8961 driver code, depending on how resources are handled by the host OS.
8962
8963 All Resource Manager dispatch and information tables have been moved to a 
8964 single location for clarity and ease of maintenance. One new file was 
8965 created, named "rsinfo.c".
8966
8967 The ACPI return macros (return_ACPI_STATUS, etc.) have been modified to 
8968 guarantee that the argument is not evaluated twice, making them less 
8969 prone 
8970 to macro side-effects. However, since there exists the possibility of 
8971 additional stack use if a particular compiler cannot optimize them (such 
8972 as 
8973 in the debug generation case), the original macros are optionally 
8974 available.  
8975 Note that some invocations of the return_VALUE macro may now cause size 
8976 mismatch warnings; the return_UINT8 and return_UINT32 macros are provided 
8977 to 
8978 eliminate these. (From Randy Dunlap)
8979
8980 Implemented a new mechanism to enable debug tracing for individual 
8981 control 
8982 methods. A new external interface, AcpiDebugTrace, is provided to enable 
8983 this mechanism. The intent is to allow the host OS to easily enable and 
8984 disable tracing for problematic control methods. This interface can be 
8985 easily exposed to a user or debugger interface if desired. See the file 
8986 psxface.c for details.
8987
8988 AcpiUtCallocate will now return a valid pointer if a length of zero is 
8989 specified - a length of one is used and a warning is issued. This matches 
8990 the behavior of AcpiUtAllocate.
8991
8992 Code and Data Size: The current and previous library sizes for the core 
8993 subsystem are shown below. These are the code and data sizes for the 
8994 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
8995 These 
8996 values do not include any ACPI driver or OSPM code. The debug version of 
8997 the 
8998 code includes the debug output trace mechanism and has a much larger code 
8999 and data size. Note that these values will vary depending on the 
9000 efficiency 
9001 of the compiler and the compiler options used during generation.
9002
9003   Previous Release:
9004     Non-Debug Version:  77.5K Code, 12.0K Data,  89.5K Total
9005     Debug Version:     168.1K Code, 68.4K Data, 236.5K Total
9006   Current Release:
9007     Non-Debug Version:  77.1K Code, 12.1K Data,  89.2K Total
9008     Debug Version:     168.0K Code, 68.3K Data, 236.3K Total
9009
9010
9011 2) iASL Compiler/Disassembler:
9012
9013 A remark is issued if the effective compile-time length of a package or 
9014 buffer is zero. Previously, this was a warning.
9015
9016 ----------------------------------------
9017 16 September 2005. Summary of changes for version 20050916:
9018
9019 1) ACPI CA Core Subsystem:
9020
9021 Fixed a problem within the Resource Manager where support for the Generic 
9022 Register descriptor was not fully implemented. This descriptor is now 
9023 fully 
9024 recognized, parsed, disassembled, and displayed.
9025
9026 Completely restructured the Resource Manager code to utilize table-driven 
9027 dispatch and lookup, eliminating many of the large switch() statements. 
9028 This 
9029 reduces overall subsystem code size and code complexity. Affects the 
9030 resource parsing and construction, disassembly, and debug dump output.
9031
9032 Cleaned up and restructured the debug dump output for all resource 
9033 descriptors. Improved readability of the output and reduced code size.
9034
9035 Fixed a problem where changes to internal data structures caused the 
9036 optional ACPI_MUTEX_DEBUG code to fail compilation if specified.
9037
9038 Code and Data Size: The current and previous library sizes for the core 
9039 subsystem are shown below. These are the code and data sizes for the 
9040 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. 
9041 These 
9042 values do not include any ACPI driver or OSPM code. The debug version of 
9043 the 
9044 code includes the debug output trace mechanism and has a much larger code 
9045 and data size. Note that these values will vary depending on the 
9046 efficiency 
9047 of the compiler and the compiler options used during generation.
9048
9049   Previous Release:
9050     Non-Debug Version:  78.4K Code, 11.8K Data,  90.2K Total
9051     Debug Version:     169.6K Code, 69.9K Data, 239.5K Total
9052   Current Release:
9053     Non-Debug Version:  77.5K Code, 12.0K Data,  89.5K Total
9054     Debug Version:     168.1K Code, 68.4K Data, 236.5K Total
9055
9056
9057 2) iASL Compiler/Disassembler:
9058
9059 Updated the disassembler to automatically insert an EndDependentFn() 
9060 macro 
9061 into the ASL stream if this macro is missing in the original AML code, 
9062 simplifying compilation of the resulting ASL module.
9063
9064 Fixed a problem in the disassembler where a disassembled ResourceSource 
9065 string (within a large resource descriptor) was not surrounded by quotes 
9066 and 
9067 not followed by a comma, causing errors when the resulting ASL module was 
9068 compiled. Also, escape sequences within a ResourceSource string are now 
9069 handled correctly (especially "\\")
9070
9071 ----------------------------------------
9072 02 September 2005. Summary of changes for version 20050902:
9073
9074 1) ACPI CA Core Subsystem:
9075
9076 Fixed a problem with the internal Owner ID allocation and deallocation 
9077 mechanisms for control method execution and recursive method invocation. 
9078 This should eliminate the OWNER_ID_LIMIT exceptions and "Invalid OwnerId" 
9079 messages seen on some systems. Recursive method invocation depth is 
9080 currently limited to 255. (Alexey Starikovskiy)
9081
9082 Completely eliminated all vestiges of support for the "module-level 
9083 executable code" until this support is fully implemented and debugged. 
9084 This 
9085 should eliminate the NO_RETURN_VALUE exceptions seen during table load on 
9086 some systems that invoke this support.
9087
9088 Fixed a problem within the resource manager code where the transaction 
9089 flags 
9090 for a 64-bit address descriptor were handled incorrectly in the type-
9091 specific flag byte.
9092
9093 Consolidated duplicate code within the address descriptor resource 
9094 manager 
9095 code, reducing overall subsystem code size.
9096
9097 Fixed a fault when using the AML debugger "disassemble" command to 
9098 disassemble individual control methods.
9099
9100 Removed references to the "release_current" directory within the Unix 
9101 release package.
9102
9103 Code and Data Size: The current and previous core subsystem library sizes 
9104 are shown below. These are the code and data sizes for the acpica.lib 
9105 produced by the Microsoft Visual C++ 6.0 compiler. These values do not 
9106 include any ACPI driver or OSPM code. The debug version of the code 
9107 includes 
9108 the debug output trace mechanism and has a much larger code and data 
9109 size. 
9110 Note that these values will vary depending on the efficiency of the 
9111 compiler 
9112 and the compiler options used during generation.
9113
9114   Previous Release:
9115     Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
9116     Debug Version:     170.0K Code, 69.9K Data, 239.9K Total
9117   Current Release:
9118     Non-Debug Version:  78.4K Code, 11.8K Data,  90.2K Total
9119     Debug Version:     169.6K Code, 69.9K Data, 239.5K Total
9120
9121
9122 2) iASL Compiler/Disassembler:
9123
9124 Implemented an error check for illegal duplicate values in the interrupt 
9125 and 
9126 dma lists for the following ASL macros: Dma(), Irq(), IrqNoFlags(), and 
9127 Interrupt().
9128
9129 Implemented error checking for the Irq() and IrqNoFlags() macros to 
9130 detect 
9131 too many values in the interrupt list (16 max) and invalid values in the 
9132 list (range 0 - 15)
9133
9134 The maximum length string literal within an ASL file is now restricted to 
9135 200 characters as per the ACPI specification.
9136
9137 Fixed a fault when using the -ln option (generate namespace listing).
9138
9139 Implemented an error check to determine if a DescriptorName within a 
9140 resource descriptor has already been used within the current scope.
9141
9142 ----------------------------------------
9143 15 August 2005.  Summary of changes for version 20050815:
9144  
9145 1) ACPI CA Core Subsystem:
9146  
9147 Implemented a full bytewise compare to determine if a table load request 
9148 is 
9149 attempting to load a duplicate table. The compare is performed if the 
9150 table 
9151 signatures and table lengths match. This will allow different tables with 
9152 the same OEM Table ID and revision to be loaded - probably against the 
9153 ACPI 
9154 specification, but discovered in the field nonetheless.
9155  
9156 Added the changes.txt logfile to each of the zipped release packages.
9157  
9158 Code and Data Size: Current and previous core subsystem library sizes are 
9159 shown below. These are the code and data sizes for the acpica.lib 
9160 produced 
9161 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9162 any ACPI driver or OSPM code. The debug version of the code includes the 
9163 debug output trace mechanism and has a much larger code and data size. 
9164 Note 
9165 that these values will vary depending on the efficiency of the compiler 
9166 and 
9167 the compiler options used during generation.
9168  
9169   Previous Release:
9170     Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
9171     Debug Version:     167.0K Code, 69.9K Data, 236.9K Total
9172   Current Release:
9173     Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
9174     Debug Version:     170.0K Code, 69.9K Data, 239.9K Total
9175  
9176  
9177 2) iASL Compiler/Disassembler:
9178  
9179 Fixed a problem where incorrect AML code could be generated for Package 
9180 objects if optimization is disabled (via the -oa switch).
9181  
9182 Fixed a problem with where incorrect AML code is generated for variable-
9183 length packages when the package length is not specified and the number 
9184 of 
9185 initializer values is greater than 255.
9186  
9187
9188 ----------------------------------------
9189 29 July 2005.  Summary of changes for version 20050729:
9190
9191 1) ACPI CA Core Subsystem:
9192
9193 Implemented support to ignore an attempt to install/load a particular 
9194 ACPI 
9195 table more than once. Apparently there exists BIOS code that repeatedly 
9196 attempts to load the same SSDT upon certain events. With assistance from 
9197 Venkatesh Pallipadi.
9198
9199 Restructured the main interface to the AML parser in order to correctly 
9200 handle all exceptional conditions. This will prevent leakage of the 
9201 OwnerId 
9202 resource and should eliminate the AE_OWNER_ID_LIMIT exceptions seen on 
9203 some 
9204 machines. With assistance from Alexey Starikovskiy.
9205
9206 Support for "module level code" has been disabled in this version due to 
9207
9208 number of issues that have appeared on various machines. The support can 
9209 be 
9210 enabled by defining ACPI_ENABLE_MODULE_LEVEL_CODE during subsystem 
9211 compilation. When the issues are fully resolved, the code will be enabled 
9212 by 
9213 default again.
9214
9215 Modified the internal functions for debug print support to define the 
9216 FunctionName parameter as a (const char *) for compatibility with 
9217 compiler 
9218 built-in macros such as __FUNCTION__, etc.
9219
9220 Linted the entire ACPICA source tree for both 32-bit and 64-bit.
9221
9222 Implemented support to display an object count summary for the AML 
9223 Debugger 
9224 commands Object and Methods.
9225
9226 Code and Data Size: Current and previous core subsystem library sizes are 
9227 shown below. These are the code and data sizes for the acpica.lib 
9228 produced 
9229 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9230 any ACPI driver or OSPM code. The debug version of the code includes the 
9231 debug output trace mechanism and has a much larger code and data size. 
9232 Note 
9233 that these values will vary depending on the efficiency of the compiler 
9234 and 
9235 the compiler options used during generation.
9236
9237   Previous Release:
9238     Non-Debug Version:  78.6K Code, 11.6K Data,  90.2K Total
9239     Debug Version:     170.0K Code, 69.7K Data, 239.7K Total
9240   Current Release:
9241     Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
9242     Debug Version:     167.0K Code, 69.9K Data, 236.9K Total
9243
9244
9245 2) iASL Compiler/Disassembler:
9246
9247 Fixed a regression that appeared in the 20050708 version of the compiler 
9248 where an error message was inadvertently emitted for invocations of the 
9249 _OSI 
9250 reserved control method.
9251
9252 ----------------------------------------
9253 08 July 2005.  Summary of changes for version 20050708:
9254
9255 1) ACPI CA Core Subsystem:
9256
9257 The use of the CPU stack in the debug version of the subsystem has been 
9258 considerably reduced. Previously, a debug structure was declared in every 
9259 function that used the debug macros. This structure has been removed in 
9260 favor of declaring the individual elements as parameters to the debug 
9261 functions. This reduces the cumulative stack use during nested execution 
9262 of 
9263 ACPI function calls at the cost of a small increase in the code size of 
9264 the 
9265 debug version of the subsystem. With assistance from Alexey Starikovskiy 
9266 and 
9267 Len Brown.
9268
9269 Added the ACPI_GET_FUNCTION_NAME macro to enable the compiler-dependent 
9270 headers to define a macro that will return the current function name at 
9271 runtime (such as __FUNCTION__ or _func_, etc.) The function name is used 
9272 by 
9273 the debug trace output. If ACPI_GET_FUNCTION_NAME is not defined in the 
9274 compiler-dependent header, the function name is saved on the CPU stack 
9275 (one 
9276 pointer per function.) This mechanism is used because apparently there 
9277 exists no standard ANSI-C defined macro that that returns the function 
9278 name.
9279
9280 Redesigned and reimplemented the "Owner ID" mechanism used to track 
9281 namespace objects created/deleted by ACPI tables and control method 
9282 execution. A bitmap is now used to allocate and free the IDs, thus 
9283 solving 
9284 the wraparound problem present in the previous implementation. The size 
9285 of 
9286 the namespace node descriptor was reduced by 2 bytes as a result (Alexey 
9287 Starikovskiy).
9288
9289 Removed the UINT32_BIT and UINT16_BIT types that were used for the 
9290 bitfield 
9291 flag definitions within the headers for the predefined ACPI tables. These 
9292 have been replaced by UINT8_BIT in order to increase the code portability 
9293 of 
9294 the subsystem. If the use of UINT8 remains a problem, we may be forced to 
9295 eliminate bitfields entirely because of a lack of portability.
9296
9297 Enhanced the performance of the AcpiUtUpdateObjectReference procedure. 
9298 This 
9299 is a frequently used function and this improvement increases the 
9300 performance 
9301 of the entire subsystem (Alexey Starikovskiy).
9302
9303 Fixed several possible memory leaks and the inverse - premature object 
9304 deletion (Alexey Starikovskiy).
9305
9306 Code and Data Size: Current and previous core subsystem library sizes are 
9307 shown below. These are the code and data sizes for the acpica.lib 
9308 produced 
9309 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9310 any ACPI driver or OSPM code. The debug version of the code includes the 
9311 debug output trace mechanism and has a much larger code and data size. 
9312 Note 
9313 that these values will vary depending on the efficiency of the compiler 
9314 and 
9315 the compiler options used during generation.
9316
9317   Previous Release:
9318     Non-Debug Version:  78.6K Code, 11.5K Data,  90.1K Total
9319     Debug Version:     165.2K Code, 69.6K Data, 234.8K Total
9320   Current Release:
9321     Non-Debug Version:  78.6K Code, 11.6K Data,  90.2K Total
9322     Debug Version:     170.0K Code, 69.7K Data, 239.7K Total
9323
9324 ----------------------------------------
9325 24 June 2005.  Summary of changes for version 20050624:
9326
9327 1) ACPI CA Core Subsystem:
9328
9329 Modified the new OSL cache interfaces to use ACPI_CACHE_T as the type for 
9330 the host-defined cache object. This allows the OSL implementation to 
9331 define 
9332 and type this object in any manner desired, simplifying the OSL 
9333 implementation. For example, ACPI_CACHE_T is defined as kmem_cache_t for 
9334 Linux, and should be defined in the OS-specific header file for other 
9335 operating systems as required.
9336
9337 Changed the interface to AcpiOsAcquireObject to directly return the 
9338 requested object as the function return (instead of ACPI_STATUS.) This 
9339 change was made for performance reasons, since this is the purpose of the 
9340 interface in the first place. AcpiOsAcquireObject is now similar to the 
9341 AcpiOsAllocate interface.
9342
9343 Implemented a new AML debugger command named Businfo. This command 
9344 displays 
9345 information about all devices that have an associate _PRT object. The 
9346 _ADR, 
9347 _HID, _UID, and _CID are displayed for these devices.
9348
9349 Modified the initialization sequence in AcpiInitializeSubsystem to call 
9350 the 
9351 OSL interface AcpiOslInitialize first, before any local initialization. 
9352 This 
9353 change was required because the global initialization now calls OSL 
9354 interfaces.
9355
9356 Enhanced the Dump command to display the entire contents of Package 
9357 objects 
9358 (including all sub-objects and their values.) 
9359
9360 Restructured the code base to split some files because of size and/or 
9361 because the code logically belonged in a separate file. New files are 
9362 listed 
9363 below. All makefiles and project files included in the ACPI CA release 
9364 have 
9365 been updated.
9366     utilities/utcache.c           /* Local cache interfaces */
9367     utilities/utmutex.c           /* Local mutex support */
9368     utilities/utstate.c           /* State object support */
9369     interpreter/parser/psloop.c   /* Main AML parse loop */
9370
9371 Code and Data Size: Current and previous core subsystem library sizes are 
9372 shown below. These are the code and data sizes for the acpica.lib 
9373 produced 
9374 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9375 any ACPI driver or OSPM code. The debug version of the code includes the 
9376 debug output trace mechanism and has a much larger code and data size. 
9377 Note 
9378 that these values will vary depending on the efficiency of the compiler 
9379 and 
9380 the compiler options used during generation.
9381
9382   Previous Release:
9383     Non-Debug Version:  78.3K Code, 11.6K Data,  89.9K Total
9384     Debug Version:     164.0K Code, 69.1K Data, 233.1K Total
9385   Current Release:
9386     Non-Debug Version:  78.6K Code, 11.5K Data,  90.1K Total
9387     Debug Version:     165.2K Code, 69.6K Data, 234.8K Total
9388
9389
9390 2) iASL Compiler/Disassembler:
9391
9392 Fixed a regression introduced in version 20050513 where the use of a 
9393 Package 
9394 object within a Case() statement caused a compile time exception. The 
9395 original behavior has been restored (a Match() operator is emitted.)
9396
9397 ----------------------------------------
9398 17 June 2005.  Summary of changes for version 20050617:
9399
9400 1) ACPI CA Core Subsystem:
9401
9402 Moved the object cache operations into the OS interface layer (OSL) to 
9403 allow 
9404 the host OS to handle these operations if desired (for example, the Linux 
9405 OSL will invoke the slab allocator). This support is optional; the 
9406 compile 
9407 time define ACPI_USE_LOCAL_CACHE may be used to utilize the original 
9408 cache 
9409 code in the ACPI CA core. The new OSL interfaces are shown below. See 
9410 utalloc.c for an example implementation, and acpiosxf.h for the exact 
9411 interface definitions. With assistance from Alexey Starikovskiy.
9412     AcpiOsCreateCache
9413     AcpiOsDeleteCache
9414     AcpiOsPurgeCache
9415     AcpiOsAcquireObject
9416     AcpiOsReleaseObject
9417
9418 Modified the interfaces to AcpiOsAcquireLock and AcpiOsReleaseLock to 
9419 return 
9420 and restore a flags parameter. This fits better with many OS lock models. 
9421 Note: the current execution state (interrupt handler or not) is no longer 
9422 passed to these interfaces. If necessary, the OSL must determine this 
9423 state 
9424 by itself, a simple and fast operation. With assistance from Alexey 
9425 Starikovskiy.
9426
9427 Fixed a problem in the ACPI table handling where a valid XSDT was assumed 
9428 present if the revision of the RSDP was 2 or greater. According to the 
9429 ACPI 
9430 specification, the XSDT is optional in all cases, and the table manager 
9431 therefore now checks for both an RSDP >=2 and a valid XSDT pointer. 
9432 Otherwise, the RSDT pointer is used. Some ACPI 2.0 compliant BIOSs 
9433 contain 
9434 only the RSDT.
9435
9436 Fixed an interpreter problem with the Mid() operator in the case of an 
9437 input 
9438 string where the resulting output string is of zero length. It now 
9439 correctly 
9440 returns a valid, null terminated string object instead of a string object 
9441 with a null pointer.
9442
9443 Fixed a problem with the control method argument handling to allow a 
9444 store 
9445 to an Arg object that already contains an object of type Device. The 
9446 Device 
9447 object is now correctly overwritten. Previously, an error was returned.
9448
9449
9450 Enhanced the debugger Find command to emit object values in addition to 
9451 the 
9452 found object pathnames. The output format is the same as the dump 
9453 namespace 
9454 command.
9455
9456 Enhanced the debugger Set command. It now has the ability to set the 
9457 value 
9458 of any Named integer object in the namespace (Previously, only method 
9459 locals 
9460 and args could be set.)
9461
9462 Code and Data Size: Current and previous core subsystem library sizes are 
9463 shown below. These are the code and data sizes for the acpica.lib 
9464 produced 
9465 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9466 any ACPI driver or OSPM code. The debug version of the code includes the 
9467 debug output trace mechanism and has a much larger code and data size. 
9468 Note 
9469 that these values will vary depending on the efficiency of the compiler 
9470 and 
9471 the compiler options used during generation.
9472
9473   Previous Release:
9474     Non-Debug Version:  78.1K Code, 11.6K Data,  89.7K Total
9475     Debug Version:     164.0K Code, 69.3K Data, 233.3K Total
9476   Current Release:
9477     Non-Debug Version:  78.3K Code, 11.6K Data,  89.9K Total
9478     Debug Version:     164.0K Code, 69.1K Data, 233.1K Total
9479
9480
9481 2) iASL Compiler/Disassembler:
9482
9483 Fixed a regression in the disassembler where if/else/while constructs 
9484 were 
9485 output incorrectly. This problem was introduced in the previous release 
9486 (20050526). This problem also affected the single-step disassembly in the 
9487 debugger.
9488
9489 Fixed a problem where compiling the reserved _OSI method would randomly 
9490 (but 
9491 rarely) produce compile errors.
9492
9493 Enhanced the disassembler to emit compilable code in the face of 
9494 incorrect 
9495 AML resource descriptors. If the optional ResourceSourceIndex is present, 
9496 but the ResourceSource is not, do not emit the ResourceSourceIndex in the 
9497 disassembly. Otherwise, the resulting code cannot be compiled without 
9498 errors.
9499
9500 ----------------------------------------
9501 26 May 2005.  Summary of changes for version 20050526:
9502
9503 1) ACPI CA Core Subsystem:
9504
9505 Implemented support to execute Type 1 and Type 2 AML opcodes appearing at 
9506 the module level (not within a control method.) These opcodes are 
9507 executed 
9508 exactly once at the time the table is loaded. This type of code was legal 
9509 up 
9510 until the release of ACPI 2.0B (2002) and is now supported within ACPI CA 
9511 in 
9512 order to provide backwards compatibility with earlier BIOS 
9513 implementations. 
9514 This eliminates the "Encountered executable code at module level" warning 
9515 that was previously generated upon detection of such code.
9516
9517 Fixed a problem in the interpreter where an AE_NOT_FOUND exception could 
9518 inadvertently be generated during the lookup of namespace objects in the 
9519 second pass parse of ACPI tables and control methods. It appears that 
9520 this 
9521 problem could occur during the resolution of forward references to 
9522 namespace 
9523 objects.
9524
9525 Added the ACPI_MUTEX_DEBUG #ifdef to the AcpiUtReleaseMutex function, 
9526 corresponding to the same #ifdef in the AcpiUtAcquireMutex function. This 
9527 allows the deadlock detection debug code to be compiled out in the normal 
9528 case, improving mutex performance (and overall subsystem performance) 
9529 considerably.
9530
9531 Implemented a handful of miscellaneous fixes for possible memory leaks on 
9532 error conditions and error handling control paths. These fixes were 
9533 suggested by FreeBSD and the Coverity Prevent source code analysis tool.
9534
9535 Added a check for a null RSDT pointer in AcpiGetFirmwareTable 
9536 (tbxfroot.c) 
9537 to prevent a fault in this error case.
9538
9539 Code and Data Size: Current and previous core subsystem library sizes are 
9540 shown below. These are the code and data sizes for the acpica.lib 
9541 produced 
9542 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9543 any ACPI driver or OSPM code. The debug version of the code includes the 
9544 debug output trace mechanism and has a much larger code and data size. 
9545 Note 
9546 that these values will vary depending on the efficiency of the compiler 
9547 and 
9548 the compiler options used during generation.
9549
9550   Previous Release:
9551     Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
9552     Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
9553   Current Release:
9554     Non-Debug Version:  78.1K Code, 11.6K Data,  89.7K Total
9555     Debug Version:     164.0K Code, 69.3K Data, 233.3K Total
9556
9557
9558 2) iASL Compiler/Disassembler:
9559
9560 Implemented support to allow Type 1 and Type 2 ASL operators to appear at 
9561 the module level (not within a control method.) These operators will be 
9562 executed once at the time the table is loaded. This type of code was 
9563 legal 
9564 up until the release of ACPI 2.0B (2002) and is now supported by the iASL 
9565 compiler in order to provide backwards compatibility with earlier BIOS 
9566 ASL 
9567 code.
9568
9569 The ACPI integer width (specified via the table revision ID or the -r 
9570 override, 32 or 64 bits) is now used internally during compile-time 
9571 constant 
9572 folding to ensure that constants are truncated to 32 bits if necessary. 
9573 Previously, the revision ID value was only emitted in the AML table 
9574 header.
9575
9576 An error message is now generated for the Mutex and Method operators if 
9577 the 
9578 SyncLevel parameter is outside the legal range of 0 through 15.
9579
9580 Fixed a problem with the Method operator ParameterTypes list handling 
9581 (ACPI 
9582 3.0). Previously, more than 2 types or 2 arguments generated a syntax 
9583 error.  
9584 The actual underlying implementation of method argument typechecking is 
9585 still under development, however.
9586
9587 ----------------------------------------
9588 13 May 2005.  Summary of changes for version 20050513:
9589
9590 1) ACPI CA Core Subsystem:
9591
9592 Implemented support for PCI Express root bridges -- added support for 
9593 device 
9594 PNP0A08 in the root bridge search within AcpiEvPciConfigRegionSetup.
9595
9596 The interpreter now automatically truncates incoming 64-bit constants to 
9597 32 
9598 bits if currently executing out of a 32-bit ACPI table (Revision < 2). 
9599 This 
9600 also affects the iASL compiler constant folding. (Note: as per below, the 
9601 iASL compiler no longer allows 64-bit constants within 32-bit tables.)
9602
9603 Fixed a problem where string and buffer objects with "static" pointers 
9604 (pointers to initialization data within an ACPI table) were not handled 
9605 consistently. The internal object copy operation now always copies the 
9606 data 
9607 to a newly allocated buffer, regardless of whether the source object is 
9608 static or not.
9609
9610 Fixed a problem with the FromBCD operator where an implicit result 
9611 conversion was improperly performed while storing the result to the 
9612 target 
9613 operand. Since this is an "explicit conversion" operator, the implicit 
9614 conversion should never be performed on the output.
9615
9616 Fixed a problem with the CopyObject operator where a copy to an existing 
9617 named object did not always completely overwrite the existing object 
9618 stored 
9619 at name. Specifically, a buffer-to-buffer copy did not delete the 
9620 existing 
9621 buffer.
9622
9623 Replaced "InterruptLevel" with "InterruptNumber" in all GPE interfaces 
9624 and 
9625 structs for consistency.
9626
9627 Code and Data Size: Current and previous core subsystem library sizes are 
9628 shown below. These are the code and data sizes for the acpica.lib 
9629 produced 
9630 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9631 any ACPI driver or OSPM code. The debug version of the code includes the 
9632 debug output trace mechanism and has a much larger code and data size. 
9633 Note 
9634 that these values will vary depending on the efficiency of the compiler 
9635 and 
9636 the compiler options used during generation.
9637
9638   Previous Release:
9639     Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
9640     Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
9641   Current Release: (Same sizes)
9642     Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
9643     Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
9644
9645
9646 2) iASL Compiler/Disassembler:
9647
9648 The compiler now emits a warning if an attempt is made to generate a 64-
9649 bit 
9650 integer constant from within a 32-bit ACPI table (Revision < 2). The 
9651 integer 
9652 is truncated to 32 bits.
9653
9654 Fixed a problem with large package objects: if the static length of the 
9655 package is greater than 255, the "variable length package" opcode is 
9656 emitted. Previously, this caused an error. This requires an update to the 
9657 ACPI spec, since it currently (incorrectly) states that packages larger 
9658 than 
9659 255 elements are not allowed.
9660
9661 The disassembler now correctly handles variable length packages and 
9662 packages 
9663 larger than 255 elements.
9664
9665 ----------------------------------------
9666 08 April 2005.  Summary of changes for version 20050408:
9667
9668 1) ACPI CA Core Subsystem:
9669
9670 Fixed three cases in the interpreter where an "index" argument to an ASL 
9671 function was still (internally) 32 bits instead of the required 64 bits. 
9672 This was the Index argument to the Index, Mid, and Match operators.
9673
9674 The "strupr" function is now permanently local (AcpiUtStrupr), since this 
9675 is 
9676 not a POSIX-defined function and not present in most kernel-level C 
9677 libraries. All references to the C library strupr function have been 
9678 removed 
9679 from the headers.
9680
9681 Completed the deployment of static functions/prototypes. All prototypes 
9682 with 
9683 the static attribute have been moved from the headers to the owning C 
9684 file.
9685
9686 Implemented an extract option (-e) for the AcpiBin utility (AML binary 
9687 utility). This option allows the utility to extract individual ACPI 
9688 tables 
9689 from the output of AcpiDmp. It provides the same functionality of the 
9690 acpixtract.pl perl script without the worry of setting the correct perl 
9691 options. AcpiBin runs on Windows and has not yet been generated/validated 
9692 in 
9693 the Linux/Unix environment (but should be soon).
9694  
9695 Updated and fixed the table dump option for AcpiBin (-d). This option 
9696 converts a single ACPI table to a hex/ascii file, similar to the output 
9697 of 
9698 AcpiDmp.
9699
9700 Code and Data Size: Current and previous core subsystem library sizes are 
9701 shown below. These are the code and data sizes for the acpica.lib 
9702 produced 
9703 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9704 any ACPI driver or OSPM code. The debug version of the code includes the 
9705 debug output trace mechanism and has a much larger code and data size. 
9706 Note 
9707 that these values will vary depending on the efficiency of the compiler 
9708 and 
9709 the compiler options used during generation.
9710
9711   Previous Release:
9712     Non-Debug Version:  78.0K Code, 11.6K Data,  89.6K Total
9713     Debug Version:     163.5K Code, 69.3K Data, 232.8K Total
9714   Current Release:
9715     Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
9716     Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
9717
9718
9719 2) iASL Compiler/Disassembler:
9720
9721 Disassembler fix: Added a check to ensure that the table length found in 
9722 the 
9723 ACPI table header within the input file is not longer than the actual 
9724 input 
9725 file size. This indicates some kind of file or table corruption.
9726
9727 ----------------------------------------
9728 29 March 2005.  Summary of changes for version 20050329:
9729
9730 1) ACPI CA Core Subsystem:
9731
9732 An error is now generated if an attempt is made to create a Buffer Field 
9733 of 
9734 length zero (A CreateField with a length operand of zero.)
9735
9736 The interpreter now issues a warning whenever executable code at the 
9737 module 
9738 level is detected during ACPI table load. This will give some idea of the 
9739 prevalence of this type of code.
9740
9741 Implemented support for references to named objects (other than control 
9742 methods) within package objects.
9743
9744 Enhanced package object output for the debug object. Package objects are 
9745 now 
9746 completely dumped, showing all elements.
9747
9748 Enhanced miscellaneous object output for the debug object. Any object can 
9749 now be written to the debug object (for example, a device object can be 
9750 written, and the type of the object will be displayed.)
9751
9752 The "static" qualifier has been added to all local functions across both 
9753 the 
9754 core subsystem and the iASL compiler.
9755
9756 The number of "long" lines (> 80 chars) within the source has been 
9757 significantly reduced, by about 1/3.
9758
9759 Cleaned up all header files to ensure that all CA/iASL functions are 
9760 prototyped (even static functions) and the formatting is consistent.
9761
9762 Two new header files have been added, acopcode.h and acnames.h.
9763
9764 Removed several obsolete functions that were no longer used.
9765
9766 Code and Data Size: Current and previous core subsystem library sizes are 
9767 shown below. These are the code and data sizes for the acpica.lib 
9768 produced 
9769 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9770 any ACPI driver or OSPM code. The debug version of the code includes the 
9771 debug output trace mechanism and has a much larger code and data size. 
9772 Note 
9773 that these values will vary depending on the efficiency of the compiler 
9774 and 
9775 the compiler options used during generation.
9776
9777   Previous Release:
9778     Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
9779     Debug Version:     165.4K Code, 69.7K Data, 236.1K Total
9780   Current Release:
9781     Non-Debug Version:  78.0K Code, 11.6K Data,  89.6K Total
9782     Debug Version:     163.5K Code, 69.3K Data, 232.8K Total
9783
9784
9785
9786 2) iASL Compiler/Disassembler:
9787
9788 Fixed a problem with the resource descriptor generation/support. For the 
9789 ResourceSourceIndex and the ResourceSource fields, both must be present, 
9790 or 
9791 both must be not present - can't have one without the other.
9792
9793 The compiler now returns non-zero from the main procedure if any errors 
9794 have 
9795 occurred during the compilation.
9796
9797
9798 ----------------------------------------
9799 09 March 2005.  Summary of changes for version 20050309:
9800
9801 1) ACPI CA Core Subsystem:
9802
9803 The string-to-buffer implicit conversion code has been modified again 
9804 after 
9805 a change to the ACPI specification.  In order to match the behavior of 
9806 the 
9807 other major ACPI implementation, the target buffer is no longer truncated 
9808 if 
9809 the source string is smaller than an existing target buffer. This change 
9810 requires an update to the ACPI spec, and should eliminate the recent 
9811 AE_AML_BUFFER_LIMIT issues.
9812
9813 The "implicit return" support was rewritten to a new algorithm that 
9814 solves 
9815 the general case. Rather than attempt to determine when a method is about 
9816 to 
9817 exit, the result of every ASL operator is saved momentarily until the 
9818 very 
9819 next ASL operator is executed. Therefore, no matter how the method exits, 
9820 there will always be a saved implicit return value. This feature is only 
9821 enabled with the AcpiGbl_EnableInterpreterSlack flag, and should 
9822 eliminate 
9823 AE_AML_NO_RETURN_VALUE errors when enabled.
9824
9825 Implemented implicit conversion support for the predicate (operand) of 
9826 the 
9827 If, Else, and While operators. String and Buffer arguments are 
9828 automatically 
9829 converted to Integers.
9830
9831 Changed the string-to-integer conversion behavior to match the new ACPI 
9832 errata: "If no integer object exists, a new integer is created. The ASCII 
9833 string is interpreted as a hexadecimal constant. Each string character is 
9834 interpreted as a hexadecimal value ('0'-'9', 'A'-'F', 'a', 'f'), starting 
9835 with the first character as the most significant digit, and ending with 
9836 the 
9837 first non-hexadecimal character or end-of-string." This means that the 
9838 first 
9839 non-hex character terminates the conversion and this is the code that was 
9840 changed.
9841
9842 Fixed a problem where the ObjectType operator would fail (fault) when 
9843 used 
9844 on an Index of a Package which pointed to a null package element. The 
9845 operator now properly returns zero (Uninitialized) in this case.
9846
9847 Fixed a problem where the While operator used excessive memory by not 
9848 properly popping the result stack during execution. There was no memory 
9849 leak 
9850 after execution, however. (Code provided by Valery Podrezov.)
9851
9852 Fixed a problem where references to control methods within Package 
9853 objects 
9854 caused the method to be invoked, instead of producing a reference object 
9855 pointing to the method.
9856
9857 Restructured and simplified the pswalk.c module (AcpiPsDeleteParseTree) 
9858 to 
9859 improve performance and reduce code size. (Code provided by Alexey 
9860 Starikovskiy.)
9861
9862 Code and Data Size: Current and previous core subsystem library sizes are 
9863 shown below. These are the code and data sizes for the acpica.lib 
9864 produced 
9865 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9866 any ACPI driver or OSPM code. The debug version of the code includes the 
9867 debug output trace mechanism and has a much larger code and data size. 
9868 Note 
9869 that these values will vary depending on the efficiency of the compiler 
9870 and 
9871 the compiler options used during generation.
9872
9873   Previous Release:
9874     Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
9875     Debug Version:     165.4K Code, 69.6K Data, 236.0K Total
9876   Current Release:
9877     Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
9878     Debug Version:     165.4K Code, 69.7K Data, 236.1K Total
9879
9880
9881 2) iASL Compiler/Disassembler:
9882
9883 Fixed a problem with the Return operator with no arguments. Since the AML 
9884 grammar for the byte encoding requires an operand for the Return opcode, 
9885 the 
9886 compiler now emits a Return(Zero) for this case.  An ACPI specification 
9887 update has been written for this case.
9888
9889 For tables other than the DSDT, namepath optimization is automatically 
9890 disabled. This is because SSDTs can be loaded anywhere in the namespace, 
9891 the 
9892 compiler has no knowledge of where, and thus cannot optimize namepaths.
9893
9894 Added "ProcessorObj" to the ObjectTypeKeyword list. This object type was 
9895 inadvertently omitted from the ACPI specification, and will require an 
9896 update to the spec.
9897
9898 The source file scan for ASCII characters is now optional (-a). This 
9899 change 
9900 was made because some vendors place non-ascii characters within comments. 
9901 However, the scan is simply a brute-force byte compare to ensure all 
9902 characters in the file are in the range 0x00 to 0x7F.
9903
9904 Fixed a problem with the CondRefOf operator where the compiler was 
9905 inappropriately checking for the existence of the target. Since the point 
9906 of 
9907 the operator is to check for the existence of the target at run-time, the 
9908 compiler no longer checks for the target existence.
9909
9910 Fixed a problem where errors generated from the internal AML interpreter 
9911 during constant folding were not handled properly, causing a fault.
9912
9913 Fixed a problem with overly aggressive range checking for the Stall 
9914 operator. The valid range (max 255) is now only checked if the operand is 
9915 of 
9916 type Integer. All other operand types cannot be statically checked.
9917
9918 Fixed a problem where control method references within the RefOf, 
9919 DeRefOf, 
9920 and ObjectType operators were not treated properly. They are now treated 
9921 as 
9922 actual references, not method invocations.
9923
9924 Fixed and enhanced the "list namespace" option (-ln). This option was 
9925 broken 
9926 a number of releases ago.
9927
9928 Improved error handling for the Field, IndexField, and BankField 
9929 operators. 
9930 The compiler now cleanly reports and recovers from errors in the field 
9931 component (FieldUnit) list.
9932
9933 Fixed a disassembler problem where the optional ResourceDescriptor fields 
9934 TRS and TTP were not always handled correctly.
9935
9936 Disassembler - Comments in output now use "//" instead of "/*"
9937
9938 ----------------------------------------
9939 28 February 2005.  Summary of changes for version 20050228:
9940
9941 1) ACPI CA Core Subsystem:
9942
9943 Fixed a problem where the result of an Index() operator (an object 
9944 reference) must increment the reference count on the target object for 
9945 the 
9946 life of the object reference.
9947
9948 Implemented AML Interpreter and Debugger support for the new ACPI 3.0 
9949 Extended Address (IO, Memory, Space), QwordSpace, DwordSpace, and 
9950 WordSpace 
9951 resource descriptors.
9952
9953 Implemented support in the _OSI method for the ACPI 3.0 "Extended Address 
9954 Space Descriptor" string, indicating interpreter support for the 
9955 descriptors 
9956 above.
9957
9958 Implemented header support for the new ACPI 3.0 FADT flag bits.
9959
9960 Implemented header support for the new ACPI 3.0 PCI Express bits for the 
9961 PM1 
9962 status/enable registers.
9963
9964 Updated header support for the MADT processor local Apic struct and MADT 
9965 platform interrupt source struct for new ACPI 3.0 fields.
9966
9967 Implemented header support for the SRAT and SLIT ACPI tables.
9968
9969 Implemented the -s switch in AcpiExec to enable the "InterpreterSlack" 
9970 flag 
9971 at runtime.
9972
9973 Code and Data Size: Current and previous core subsystem library sizes are 
9974 shown below. These are the code and data sizes for the acpica.lib 
9975 produced 
9976 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9977 any ACPI driver or OSPM code. The debug version of the code includes the 
9978 debug output trace mechanism and has a much larger code and data size. 
9979 Note 
9980 that these values will vary depending on the efficiency of the compiler 
9981 and 
9982 the compiler options used during generation.
9983
9984   Previous Release:
9985     Non-Debug Version:  78.2K Code, 11.5K Data,  89.7K Total
9986     Debug Version:     164.9K Code, 69.2K Data, 234.1K Total
9987   Current Release:
9988     Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
9989     Debug Version:     165.4K Code, 69.6K Data, 236.0K Total
9990
9991
9992 2) iASL Compiler/Disassembler:
9993
9994 Fixed a problem with the internal 64-bit String-to-integer conversion 
9995 with 
9996 strings less than two characters long.
9997
9998 Fixed a problem with constant folding where the result of the Index() 
9999 operator can not be considered a constant. This means that Index() cannot 
10000 be 
10001 a type3 opcode and this will require an update to the ACPI specification.
10002
10003 Disassembler: Implemented support for the TTP, MTP, and TRS resource 
10004 descriptor fields. These fields were inadvertently ignored and not output 
10005 in 
10006 the disassembly of the resource descriptor.
10007
10008
10009  ----------------------------------------
10010 11 February 2005.  Summary of changes for version 20050211:
10011
10012 1) ACPI CA Core Subsystem:
10013
10014 Implemented ACPI 3.0 support for implicit conversion within the Match() 
10015 operator. MatchObjects can now be of type integer, buffer, or string 
10016 instead 
10017 of just type integer.  Package elements are implicitly converted to the 
10018 type 
10019 of the MatchObject. This change aligns the behavior of Match() with the 
10020 behavior of the other logical operators (LLess(), etc.) It also requires 
10021 an 
10022 errata change to the ACPI specification as this support was intended for 
10023 ACPI 3.0, but was inadvertently omitted.
10024
10025 Fixed a problem with the internal implicit "to buffer" conversion. 
10026 Strings 
10027 that are converted to buffers will cause buffer truncation if the string 
10028 is 
10029 smaller than the target buffer. Integers that are converted to buffers 
10030 will 
10031 not cause buffer truncation, only zero extension (both as per the ACPI 
10032 spec.) The problem was introduced when code was added to truncate the 
10033 buffer, but this should not be performed in all cases, only the string 
10034 case.
10035
10036 Fixed a problem with the Buffer and Package operators where the 
10037 interpreter 
10038 would get confused if two such operators were used as operands to an ASL 
10039 operator (such as LLess(Buffer(1){0},Buffer(1){1}). The internal result 
10040 stack was not being popped after the execution of these operators, 
10041 resulting 
10042 in an AE_NO_RETURN_VALUE exception.
10043
10044 Fixed a problem with constructs of the form Store(Index(...),...). The 
10045 reference object returned from Index was inadvertently resolved to an 
10046 actual 
10047 value. This problem was introduced in version 20050114 when the behavior 
10048 of 
10049 Store() was modified to restrict the object types that can be used as the 
10050 source operand (to match the ACPI specification.)
10051
10052 Reduced excessive stack use within the AcpiGetObjectInfo procedure.
10053
10054 Added a fix to aclinux.h to allow generation of AcpiExec on Linux.
10055
10056 Updated the AcpiSrc utility to add the FADT_DESCRIPTOR_REV2_MINUS struct.
10057
10058 Code and Data Size: Current and previous core subsystem library sizes are 
10059 shown below. These are the code and data sizes for the acpica.lib 
10060 produced 
10061 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10062 any ACPI driver or OSPM code. The debug version of the code includes the 
10063 debug output trace mechanism and has a much larger code and data size. 
10064 Note 
10065 that these values will vary depending on the efficiency of the compiler 
10066 and 
10067 the compiler options used during generation.
10068
10069   Previous Release:
10070     Non-Debug Version:  78.1K Code, 11.5K Data,  89.6K Total
10071     Debug Version:     164.8K Code, 69.2K Data, 234.0K Total
10072   Current Release:
10073     Non-Debug Version:  78.2K Code, 11.5K Data,  89.7K Total
10074     Debug Version:     164.9K Code, 69.2K Data, 234.1K Total
10075
10076
10077 2) iASL Compiler/Disassembler:
10078
10079 Fixed a code generation problem in the constant folding optimization code 
10080 where incorrect code was generated if a constant was reduced to a buffer 
10081 object (i.e., a reduced type 5 opcode.)
10082
10083 Fixed a typechecking problem for the ToBuffer operator. Caused by an 
10084 incorrect return type in the internal opcode information table.
10085
10086 ----------------------------------------
10087 25 January 2005.  Summary of changes for version 20050125:
10088
10089 1) ACPI CA Core Subsystem:
10090
10091 Fixed a recently introduced problem with the Global Lock where the 
10092 underlying semaphore was not created.  This problem was introduced in 
10093 version 20050114, and caused an AE_AML_NO_OPERAND exception during an 
10094 Acquire() operation on _GL.
10095
10096 The local object cache is now optional, and is disabled by default. Both 
10097 AcpiExec and the iASL compiler enable the cache because they run in user 
10098 mode and this enhances their performance. #define 
10099 ACPI_ENABLE_OBJECT_CACHE 
10100 to enable the local cache.
10101
10102 Fixed an issue in the internal function AcpiUtEvaluateObject concerning 
10103 the 
10104 optional "implicit return" support where an error was returned if no 
10105 return 
10106 object was expected, but one was implicitly returned. AE_OK is now 
10107 returned 
10108 in this case and the implicitly returned object is deleted. 
10109 AcpiUtEvaluateObject is only occasionally used, and only to execute 
10110 reserved 
10111 methods such as _STA and _INI where the return type is known up front.
10112
10113 Fixed a few issues with the internal convert-to-integer code. It now 
10114 returns 
10115 an error if an attempt is made to convert a null string, a string of only 
10116 blanks/tabs, or a zero-length buffer. This affects both implicit 
10117 conversion 
10118 and explicit conversion via the ToInteger() operator.
10119
10120 The internal debug code in AcpiUtAcquireMutex has been commented out. It 
10121 is 
10122 not needed for normal operation and should increase the performance of 
10123 the 
10124 entire subsystem. The code remains in case it is needed for debug 
10125 purposes 
10126 again.
10127
10128 The AcpiExec source and makefile are included in the Unix/Linux package 
10129 for 
10130 the first time.
10131
10132 Code and Data Size: Current and previous core subsystem library sizes are 
10133 shown below. These are the code and data sizes for the acpica.lib 
10134 produced 
10135 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10136 any ACPI driver or OSPM code. The debug version of the code includes the 
10137 debug output trace mechanism and has a much larger code and data size. 
10138 Note 
10139 that these values will vary depending on the efficiency of the compiler 
10140 and 
10141 the compiler options used during generation.
10142
10143   Previous Release:
10144     Non-Debug Version:  78.4K Code,  11.5K Data,   89.9K Total
10145     Debug Version:     165.4K Code,  69.4K Data,  234.8K Total
10146   Current Release:
10147     Non-Debug Version:  78.1K Code,  11.5K Data,   89.6K Total
10148     Debug Version:     164.8K Code,  69.2K Data,  234.0K Total
10149
10150 2) iASL Compiler/Disassembler:
10151
10152 Switch/Case support: A warning is now issued if the type of the Switch 
10153 value 
10154 cannot be determined at compile time. For example, Switch(Arg0) will 
10155 generate the warning, and the type is assumed to be an integer. As per 
10156 the 
10157 ACPI spec, use a construct such as Switch(ToInteger(Arg0)) to eliminate 
10158 the 
10159 warning.
10160
10161 Switch/Case support: Implemented support for buffer and string objects as 
10162 the switch value.  This is an ACPI 3.0 feature, now that LEqual supports 
10163 buffers and strings.
10164
10165 Switch/Case support: The emitted code for the LEqual() comparisons now 
10166 uses 
10167 the switch value as the first operand, not the second. The case value is 
10168 now 
10169 the second operand, and this allows the case value to be implicitly 
10170 converted to the type of the switch value, not the other way around.
10171
10172 Switch/Case support: Temporary variables are now emitted immediately 
10173 within 
10174 the control method, not at the global level. This means that there are 
10175 now 
10176 36 temps available per-method, not 36 temps per-module as was the case 
10177 with 
10178 the earlier implementation (_T_0 through _T_9 and _T_A through _T_Z.)
10179
10180 ----------------------------------------
10181 14 January 2005.  Summary of changes for version 20050114:
10182
10183 Added 2005 copyright to all module headers.  This affects every module in 
10184 the core subsystem, iASL compiler, and the utilities.
10185
10186 1) ACPI CA Core Subsystem:
10187
10188 Fixed an issue with the String-to-Buffer conversion code where the string 
10189 null terminator was not included in the buffer after conversion, but 
10190 there 
10191 is existing ASL that assumes the string null terminator is included. This 
10192 is 
10193 the root of the ACPI_AML_BUFFER_LIMIT regression. This problem was 
10194 introduced in the previous version when the code was updated to correctly 
10195 set the converted buffer size as per the ACPI specification. The ACPI 
10196 spec 
10197 is ambiguous and will be updated to specify that the null terminator must 
10198 be 
10199 included in the converted buffer. This also affects the ToBuffer() ASL 
10200 operator.
10201
10202 Fixed a problem with the Mid() ASL/AML operator where it did not work 
10203 correctly on Buffer objects. Newly created sub-buffers were not being 
10204 marked 
10205 as initialized.
10206
10207
10208 Fixed a problem in AcpiTbFindTable where incorrect string compares were 
10209 performed on the OemId and OemTableId table header fields.  These fields 
10210 are 
10211 not null terminated, so strncmp is now used instead of strcmp.
10212
10213 Implemented a restriction on the Store() ASL/AML operator to align the 
10214 behavior with the ACPI specification.  Previously, any object could be 
10215 used 
10216 as the source operand.  Now, the only objects that may be used are 
10217 Integers, 
10218 Buffers, Strings, Packages, Object References, and DDB Handles.  If 
10219 necessary, the original behavior can be restored by enabling the 
10220 EnableInterpreterSlack flag.
10221
10222 Enhanced the optional "implicit return" support to allow an implicit 
10223 return 
10224 value from methods that are invoked externally via the AcpiEvaluateObject 
10225 interface.  This enables implicit returns from the _STA and _INI methods, 
10226 for example.
10227
10228 Changed the Revision() ASL/AML operator to return the current version of 
10229 the 
10230 AML interpreter, in the YYYYMMDD format. Previously, it incorrectly 
10231 returned 
10232 the supported ACPI version (This is the function of the _REV method).
10233
10234 Updated the _REV predefined method to return the currently supported 
10235 version 
10236 of ACPI, now 3.
10237
10238 Implemented batch mode option for the AcpiExec utility (-b).
10239
10240 Code and Data Size: Current and previous core subsystem library sizes are 
10241 shown below. These are the code and data sizes for the acpica.lib 
10242 produced 
10243 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10244 any ACPI driver or OSPM code. The debug version of the code includes the 
10245 debug output trace mechanism and has a much larger code and data size. 
10246 Note 
10247 that these values will vary depending on the efficiency of the compiler 
10248 and 
10249 the compiler options used during generation.
10250
10251   Previous Release:
10252     Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
10253     Debug Version:     165.3K Code,  69.4K Data,  234.7K Total
10254   Current Release:
10255     Non-Debug Version:  78.4K Code,  11.5K Data,   89.9K Total
10256     Debug Version:     165.4K Code,  69.4K Data,  234.8K Total
10257
10258 ----------------------------------------
10259 10 December 2004.  Summary of changes for version 20041210:
10260
10261 ACPI 3.0 support is nearing completion in both the iASL compiler and the 
10262 ACPI CA core subsystem.
10263
10264 1) ACPI CA Core Subsystem:
10265
10266 Fixed a problem in the ToDecimalString operator where the resulting 
10267 string 
10268 length was incorrectly calculated. The length is now calculated exactly, 
10269 eliminating incorrect AE_STRING_LIMIT exceptions.
10270
10271 Fixed a problem in the ToHexString operator to allow a maximum 200 
10272 character 
10273 string to be produced.
10274
10275 Fixed a problem in the internal string-to-buffer and buffer-to-buffer 
10276 copy 
10277 routine where the length of the resulting buffer was not truncated to the 
10278 new size (if the target buffer already existed).
10279
10280 Code and Data Size: Current and previous core subsystem library sizes are 
10281 shown below. These are the code and data sizes for the acpica.lib 
10282 produced 
10283 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10284 any ACPI driver or OSPM code. The debug version of the code includes the 
10285 debug output trace mechanism and has a much larger code and data size. 
10286 Note 
10287 that these values will vary depending on the efficiency of the compiler 
10288 and 
10289 the compiler options used during generation.
10290
10291   Previous Release:
10292     Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
10293     Debug Version:     164.7K Code,  68.5K Data,  233.2K Total
10294   Current Release:
10295     Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
10296     Debug Version:     165.3K Code,  69.4K Data,  234.7K Total
10297
10298
10299 2) iASL Compiler/Disassembler:
10300
10301 Implemented the new ACPI 3.0 resource template macros - DWordSpace, 
10302 ExtendedIO, ExtendedMemory, ExtendedSpace, QWordSpace, and WordSpace. 
10303 Includes support in the disassembler.
10304
10305 Implemented support for the new (ACPI 3.0) parameter to the Register 
10306 macro, 
10307 AccessSize.
10308
10309 Fixed a problem where the _HE resource name for the Interrupt macro was 
10310 referencing bit 0 instead of bit 1.
10311
10312 Implemented check for maximum 255 interrupts in the Interrupt macro.
10313
10314 Fixed a problem with the predefined resource descriptor names where 
10315 incorrect AML code was generated if the offset within the resource buffer 
10316 was 0 or 1.  The optimizer shortened the AML code to a single byte opcode 
10317 but did not update the surrounding package lengths.
10318
10319 Changes to the Dma macro:  All channels within the channel list must be 
10320 in 
10321 the range 0-7.  Maximum 8 channels can be specified. BusMaster operand is 
10322 optional (default is BusMaster).
10323
10324 Implemented check for maximum 7 data bytes for the VendorShort macro.
10325
10326 The ReadWrite parameter is now optional for the Memory32 and similar 
10327 macros.
10328
10329 ----------------------------------------
10330 03 December 2004.  Summary of changes for version 20041203:
10331
10332 1) ACPI CA Core Subsystem:
10333
10334 The low-level field insertion/extraction code (exfldio) has been 
10335 completely 
10336 rewritten to eliminate unnecessary complexity, bugs, and boundary 
10337 conditions.
10338
10339 Fixed a problem in the ToInteger, ToBuffer, ToHexString, and 
10340 ToDecimalString 
10341 operators where the input operand could be inadvertently deleted if no 
10342 conversion was necessary (e.g., if the input to ToInteger was an Integer 
10343 object.)
10344
10345 Fixed a problem with the ToDecimalString and ToHexString where an 
10346 incorrect 
10347 exception code was returned if the resulting string would be > 200 chars.  
10348 AE_STRING_LIMIT is now returned.
10349
10350 Fixed a problem with the Concatenate operator where AE_OK was always 
10351 returned, even if the operation failed.
10352
10353 Fixed a problem in oswinxf (used by AcpiExec and iASL) to allow > 128 
10354 semaphores to be allocated.
10355
10356 Code and Data Size: Current and previous core subsystem library sizes are 
10357 shown below. These are the code and data sizes for the acpica.lib 
10358 produced 
10359 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10360 any ACPI driver or OSPM code. The debug version of the code includes the 
10361 debug output trace mechanism and has a much larger code and data size. 
10362 Note 
10363 that these values will vary depending on the efficiency of the compiler 
10364 and 
10365 the compiler options used during generation.
10366
10367   Previous Release:
10368     Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
10369     Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
10370   Current Release:
10371     Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
10372     Debug Version:     164.7K Code,  68.5K Data,  233.2K Total
10373
10374
10375 2) iASL Compiler/Disassembler:
10376
10377 Fixed typechecking for the ObjectType and SizeOf operators.  Problem was 
10378 recently introduced in 20041119.
10379
10380 Fixed a problem with the ToUUID macro where the upper nybble of each 
10381 buffer 
10382 byte was inadvertently set to zero.
10383
10384 ----------------------------------------
10385 19 November 2004.  Summary of changes for version 20041119:
10386
10387 1) ACPI CA Core Subsystem:
10388
10389 Fixed a problem in the internal ConvertToInteger routine where new 
10390 integers 
10391 were not truncated to 32 bits for 32-bit ACPI tables. This routine 
10392 converts 
10393 buffers and strings to integers.
10394
10395 Implemented support to store a value to an Index() on a String object. 
10396 This 
10397 is an ACPI 2.0 feature that had not yet been implemented.
10398
10399 Implemented new behavior for storing objects to individual package 
10400 elements 
10401 (via the Index() operator). The previous behavior was to invoke the 
10402 implicit 
10403 conversion rules if an object was already present at the index.  The new 
10404 behavior is to simply delete any existing object and directly store the 
10405 new 
10406 object. Although the ACPI specification seems unclear on this subject, 
10407 other 
10408 ACPI implementations behave in this manner.  (This is the root of the 
10409 AE_BAD_HEX_CONSTANT issue.)
10410
10411 Modified the RSDP memory scan mechanism to support the extended checksum 
10412 for 
10413 ACPI 2.0 (and above) RSDPs. Note that the search continues until a valid 
10414 RSDP signature is found with a valid checksum.
10415
10416 Code and Data Size: Current and previous core subsystem library sizes are 
10417 shown below. These are the code and data sizes for the acpica.lib 
10418 produced 
10419 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10420 any ACPI driver or OSPM code. The debug version of the code includes the 
10421 debug output trace mechanism and has a much larger code and data size. 
10422 Note 
10423 that these values will vary depending on the efficiency of the compiler 
10424 and 
10425 the compiler options used during generation.
10426
10427   Previous Release:
10428     Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
10429     Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
10430   Current Release:
10431     Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
10432     Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
10433
10434
10435 2) iASL Compiler/Disassembler:
10436
10437 Fixed a missing semicolon in the aslcompiler.y file.
10438
10439 ----------------------------------------
10440 05 November 2004.  Summary of changes for version 20041105:
10441
10442 1) ACPI CA Core Subsystem:
10443
10444 Implemented support for FADT revision 2.  This was an interim table 
10445 (between 
10446 ACPI 1.0 and ACPI 2.0) that adds support for the FADT reset register.
10447
10448 Implemented optional support to allow uninitialized LocalX and ArgX 
10449 variables in a control method.  The variables are initialized to an 
10450 Integer 
10451 object with a value of zero.  This support is enabled by setting the 
10452 AcpiGbl_EnableInterpreterSlack flag to TRUE.
10453
10454 Implemented support for Integer objects for the SizeOf operator.  Either 
10455
10456 or 8 is returned, depending on the current integer size (32-bit or 64-
10457 bit, 
10458 depending on the parent table revision).
10459
10460 Fixed a problem in the implementation of the SizeOf and ObjectType 
10461 operators 
10462 where the operand was resolved to a value too early, causing incorrect 
10463 return values for some objects.
10464
10465 Fixed some possible memory leaks during exceptional conditions.
10466
10467 Code and Data Size: Current and previous core subsystem library sizes are 
10468 shown below. These are the code and data sizes for the acpica.lib 
10469 produced 
10470 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10471 any ACPI driver or OSPM code. The debug version of the code includes the 
10472 debug output trace mechanism and has a much larger code and data size. 
10473 Note 
10474 that these values will vary depending on the efficiency of the compiler 
10475 and 
10476 the compiler options used during generation.
10477
10478   Previous Release:
10479     Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
10480     Debug Version:     164.8K Code,  68.6K Data,  233.4K Total
10481   Current Release:
10482     Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
10483     Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
10484
10485
10486 2) iASL Compiler/Disassembler:
10487
10488 Implemented support for all ACPI 3.0 reserved names and methods.
10489
10490 Implemented all ACPI 3.0 grammar elements in the front-end, including 
10491 support for semicolons.
10492
10493 Implemented the ACPI 3.0 Function() and ToUUID() macros
10494
10495 Fixed a problem in the disassembler where a Scope() operator would not be 
10496 emitted properly if the target of the scope was in another table.
10497
10498 ----------------------------------------
10499 15 October 2004.  Summary of changes for version 20041015:
10500
10501 Note:  ACPI CA is currently undergoing an in-depth and complete formal 
10502 evaluation to test/verify the following areas. Other suggestions are 
10503 welcome. This will result in an increase in the frequency of releases and 
10504 the number of bug fixes in the next few months.
10505   - Functional tests for all ASL/AML operators
10506   - All implicit/explicit type conversions
10507   - Bit fields and operation regions
10508   - 64-bit math support and 32-bit-only "truncated" math support
10509   - Exceptional conditions, both compiler and interpreter
10510   - Dynamic object deletion and memory leaks
10511   - ACPI 3.0 support when implemented
10512   - External interfaces to the ACPI subsystem
10513
10514
10515 1) ACPI CA Core Subsystem:
10516
10517 Fixed two alignment issues on 64-bit platforms - within debug statements 
10518 in 
10519 AcpiEvGpeDetect and AcpiEvCreateGpeBlock. Removed references to the 
10520 Address 
10521 field within the non-aligned ACPI generic address structure.
10522
10523 Fixed a problem in the Increment and Decrement operators where incorrect 
10524 operand resolution could result in the inadvertent modification of the 
10525 original integer when the integer is passed into another method as an 
10526 argument and the arg is then incremented/decremented.
10527
10528 Fixed a problem in the FromBCD operator where the upper 32-bits of a 64-
10529 bit 
10530 BCD number were truncated during conversion.
10531
10532 Fixed a problem in the ToDecimal operator where the length of the 
10533 resulting 
10534 string could be set incorrectly too long if the input operand was a 
10535 Buffer 
10536 object.
10537
10538 Fixed a problem in the Logical operators (LLess, etc.) where a NULL byte 
10539 (0) 
10540 within a buffer would prematurely terminate a compare between buffer 
10541 objects.
10542
10543 Added a check for string overflow (>200 characters as per the ACPI 
10544 specification) during the Concatenate operator with two string operands.
10545
10546 Code and Data Size: Current and previous core subsystem library sizes are 
10547 shown below. These are the code and data sizes for the acpica.lib 
10548 produced 
10549 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10550 any ACPI driver or OSPM code. The debug version of the code includes the 
10551 debug output trace mechanism and has a much larger code and data size. 
10552 Note 
10553 that these values will vary depending on the efficiency of the compiler 
10554 and 
10555 the compiler options used during generation.
10556
10557   Previous Release:
10558     Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
10559     Debug Version:     164.6K Code,  68.5K Data,  233.1K Total
10560   Current Release:
10561     Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
10562     Debug Version:     164.8K Code,  68.6K Data,  233.4K Total
10563
10564
10565
10566 2) iASL Compiler/Disassembler:
10567
10568 Allow the use of the ObjectType operator on uninitialized Locals and Args 
10569 (returns 0 as per the ACPI specification).
10570
10571 Fixed a problem where the compiler would fault if there was a syntax 
10572 error 
10573 in the FieldName of all of the various CreateXXXField operators.
10574
10575 Disallow the use of lower case letters within the EISAID macro, as per 
10576 the 
10577 ACPI specification.  All EISAID strings must be of the form "UUUNNNN" 
10578 Where 
10579 U is an uppercase letter and N is a hex digit.
10580
10581
10582 ----------------------------------------
10583 06 October 2004.  Summary of changes for version 20041006:
10584
10585 1) ACPI CA Core Subsystem:
10586
10587 Implemented support for the ACPI 3.0 Timer operator. This ASL function 
10588 implements a 64-bit timer with 100 nanosecond granularity.
10589
10590 Defined a new OSL interface, AcpiOsGetTimer. This interface is used to 
10591 implement the ACPI 3.0 Timer operator.  This allows the host OS to 
10592 implement 
10593 the timer with the best clock available. Also, it keeps the core 
10594 subsystem 
10595 out of the clock handling business, since the host OS (usually) performs 
10596 this function.
10597
10598 Fixed an alignment issue on 64-bit platforms. The HwLowLevelRead(Write) 
10599 functions use a 64-bit address which is part of the packed ACPI Generic 
10600 Address Structure. Since the structure is non-aligned, the alignment 
10601 macros 
10602 are now used to extract the address to a local variable before use.
10603
10604 Fixed a problem where the ToInteger operator assumed all input strings 
10605 were 
10606 hexadecimal. The operator now handles both decimal strings and hex 
10607 strings 
10608 (prefixed with "0x").
10609
10610 Fixed a problem where the string length in the string object created as a 
10611 result of the internal ConvertToString procedure could be incorrect. This 
10612 potentially affected all implicit conversions and also the 
10613 ToDecimalString 
10614 and ToHexString operators.
10615
10616 Fixed two problems in the ToString operator. If the length parameter was 
10617 zero, an incorrect string object was created and the value of the input 
10618 length parameter was inadvertently changed from zero to Ones.
10619
10620 Fixed a problem where the optional ResourceSource string in the 
10621 ExtendedIRQ 
10622 resource macro was ignored.
10623
10624 Simplified the interfaces to the internal division functions, reducing 
10625 code 
10626 size and complexity.
10627
10628 Code and Data Size: Current and previous core subsystem library sizes are 
10629 shown below. These are the code and data sizes for the acpica.lib 
10630 produced 
10631 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10632 any ACPI driver or OSPM code. The debug version of the code includes the 
10633 debug output trace mechanism and has a much larger code and data size. 
10634 Note 
10635 that these values will vary depending on the efficiency of the compiler 
10636 and 
10637 the compiler options used during generation.
10638
10639   Previous Release:
10640     Non-Debug Version:  77.9K Code,  11.4K Data,   89.3K Total
10641     Debug Version:     164.5K Code,  68.3K Data,  232.8K Total
10642   Current Release:
10643     Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
10644     Debug Version:     164.6K Code,  68.5K Data,  233.1K Total
10645
10646
10647 2) iASL Compiler/Disassembler:
10648
10649 Implemented support for the ACPI 3.0 Timer operator.
10650
10651 Fixed a problem where the Default() operator was inadvertently ignored in 
10652
10653 Switch/Case block.  This was a problem in the translation of the Switch 
10654 statement to If...Else pairs.
10655
10656 Added support to allow a standalone Return operator, with no parentheses 
10657 (or 
10658 operands).
10659
10660 Fixed a problem with code generation for the ElseIf operator where the 
10661 translated Else...If parse tree was improperly constructed leading to the 
10662 loss of some code.
10663
10664 ----------------------------------------
10665 22 September 2004.  Summary of changes for version 20040922:
10666
10667 1) ACPI CA Core Subsystem:
10668
10669 Fixed a problem with the implementation of the LNot() operator where 
10670 "Ones" 
10671 was not returned for the TRUE case. Changed the code to return Ones 
10672 instead 
10673 of (!Arg) which was usually 1. This change affects iASL constant folding 
10674 for 
10675 this operator also.
10676
10677 Fixed a problem in AcpiUtInitializeBuffer where an existing buffer was 
10678 not 
10679 initialized properly -- Now zero the entire buffer in this case where the 
10680 buffer already exists.
10681
10682 Changed the interface to AcpiOsSleep from (UINT32 Seconds, UINT32 
10683 Milliseconds) to simply (ACPI_INTEGER Milliseconds). This simplifies all 
10684 related code considerably. This will require changes/updates to all OS 
10685 interface layers (OSLs.)
10686
10687 Implemented a new external interface, AcpiInstallExceptionHandler, to 
10688 allow 
10689 a system exception handler to be installed. This handler is invoked upon 
10690 any 
10691 run-time exception that occurs during control method execution.
10692
10693 Added support for the DSDT in AcpiTbFindTable. This allows the 
10694 DataTableRegion() operator to access the local copy of the DSDT.
10695
10696 Code and Data Size: Current and previous core subsystem library sizes are 
10697 shown below. These are the code and data sizes for the acpica.lib 
10698 produced 
10699 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10700 any ACPI driver or OSPM code. The debug version of the code includes the 
10701 debug output trace mechanism and has a much larger code and data size. 
10702 Note 
10703 that these values will vary depending on the efficiency of the compiler 
10704 and 
10705 the compiler options used during generation.
10706
10707   Previous Release:
10708     Non-Debug Version:  77.8K Code,  11.4K Data,   89.2K Total
10709     Debug Version:     164.2K Code,  68.2K Data,  232.4K Total
10710   Current Release:
10711     Non-Debug Version:  77.9K Code,  11.4K Data,   89.3K Total
10712     Debug Version:     164.5K Code,  68.3K Data,  232.8K Total
10713
10714
10715 2) iASL Compiler/Disassembler:
10716
10717 Fixed a problem with constant folding and the LNot operator. LNot was 
10718 returning 1 in the TRUE case, not Ones as per the ACPI specification. 
10719 This 
10720 could result in the generation of an incorrect folded/reduced constant.
10721
10722 End-Of-File is now allowed within a "//"-style comment.  A parse error no 
10723 longer occurs if such a comment is at the very end of the input ASL 
10724 source 
10725 file.
10726
10727 Implemented the "-r" option to override the Revision in the table header. 
10728 The initial use of this option will be to simplify the evaluation of the 
10729 AML 
10730 interpreter by allowing a single ASL source module to be compiled for 
10731 either 
10732 32-bit or 64-bit integers.
10733
10734
10735 ----------------------------------------
10736 27 August 2004.  Summary of changes for version 20040827:
10737
10738 1) ACPI CA Core Subsystem:
10739
10740 - Implemented support for implicit object conversion in the non-numeric 
10741 logical operators (LEqual, LGreater, LGreaterEqual, LLess, LLessEqual, 
10742 and 
10743 LNotEqual.)  Any combination of Integers/Strings/Buffers may now be used; 
10744 the second operand is implicitly converted on the fly to match the type 
10745 of 
10746 the first operand.  For example:
10747
10748     LEqual (Source1, Source2)
10749
10750 Source1 and Source2 must each evaluate to an integer, a string, or a 
10751 buffer. 
10752 The data type of Source1 dictates the required type of Source2. Source2 
10753 is 
10754 implicitly converted if necessary to match the type of Source1.
10755
10756 - Updated and corrected the behavior of the string conversion support.  
10757 The 
10758 rules concerning conversion of buffers to strings (according to the ACPI 
10759 specification) are as follows:
10760
10761 ToDecimalString - explicit byte-wise conversion of buffer to string of 
10762 decimal values (0-255) separated by commas. ToHexString - explicit byte-
10763 wise 
10764 conversion of buffer to string of hex values (0-FF) separated by commas. 
10765 ToString - explicit byte-wise conversion of buffer to string.  Byte-by-
10766 byte 
10767 copy with no transform except NULL terminated. Any other implicit buffer-
10768 to-
10769 string conversion - byte-wise conversion of buffer to string of hex 
10770 values 
10771 (0-FF) separated by spaces.
10772
10773 - Fixed typo in definition of AcpiGbl_EnableInterpreterSlack.
10774
10775 - Fixed a problem in AcpiNsGetPathnameLength where the returned length 
10776 was 
10777 one byte too short in the case of a node in the root scope.  This could 
10778 cause a fault during debug output.
10779
10780 - Code and Data Size: Current and previous core subsystem library sizes 
10781 are 
10782 shown below.  These are the code and data sizes for the acpica.lib 
10783 produced 
10784 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10785 any ACPI driver or OSPM code.  The debug version of the code includes the 
10786 debug output trace mechanism and has a much larger code and data size.  
10787 Note 
10788 that these values will vary depending on the efficiency of the compiler 
10789 and 
10790 the compiler options used during generation.
10791
10792   Previous Release:
10793     Non-Debug Version:  77.9K Code,  11.5K Data,   89.4K Total
10794     Debug Version:     164.1K Code,  68.3K Data,  232.4K Total
10795   Current Release:
10796     Non-Debug Version:  77.8K Code,  11.4K Data,   89.2K Total
10797     Debug Version:     164.2K Code,  68.2K Data,  232.4K Total
10798
10799
10800 2) iASL Compiler/Disassembler:
10801
10802 - Fixed a Linux generation error.
10803
10804
10805 ----------------------------------------
10806 16 August 2004.  Summary of changes for version 20040816:
10807
10808 1) ACPI CA Core Subsystem:
10809
10810 Designed and implemented support within the AML interpreter for the so-
10811 called "implicit return".  This support returns the result of the last 
10812 ASL 
10813 operation within a control method, in the absence of an explicit Return() 
10814 operator.  A few machines depend on this behavior, even though it is not 
10815 explicitly supported by the ASL language.  It is optional support that 
10816 can 
10817 be enabled at runtime via the AcpiGbl_EnableInterpreterSlack flag.
10818
10819 Removed support for the PCI_Config address space from the internal low 
10820 level 
10821 hardware interfaces (AcpiHwLowLevelRead and AcpiHwLowLevelWrite).  This 
10822 support was not used internally, and would not work correctly anyway 
10823 because 
10824 the PCI bus number and segment number were not supported.  There are 
10825 separate interfaces for PCI configuration space access because of the 
10826 unique 
10827 interface.
10828
10829 Code and Data Size: Current and previous core subsystem library sizes are 
10830 shown below.  These are the code and data sizes for the acpica.lib 
10831 produced 
10832 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10833 any ACPI driver or OSPM code.  The debug version of the code includes the 
10834 debug output trace mechanism and has a much larger code and data size.  
10835 Note 
10836 that these values will vary depending on the efficiency of the compiler 
10837 and 
10838 the compiler options used during generation.
10839
10840   Previous Release:
10841     Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
10842     Debug Version:     164.1K Code,  68.2K Data,  232.3K Total
10843   Current Release:
10844     Non-Debug Version:  77.9K Code,  11.5K Data,   89.4K Total
10845     Debug Version:     164.1K Code,  68.3K Data,  232.4K Total
10846
10847
10848 2) iASL Compiler/Disassembler:
10849
10850 Fixed a problem where constants in ASL expressions at the root level (not 
10851 within a control method) could be inadvertently truncated during code 
10852 generation.  This problem was introduced in the 20040715 release.
10853
10854
10855 ----------------------------------------
10856 15 July 2004.  Summary of changes for version 20040715:
10857
10858 1) ACPI CA Core Subsystem:
10859
10860 Restructured the internal HW GPE interfaces to pass/track the current 
10861 state 
10862 of interrupts (enabled/disabled) in order to avoid possible deadlock and 
10863 increase flexibility of the interfaces.
10864
10865 Implemented a "lexicographical compare" for String and Buffer objects 
10866 within 
10867 the logical operators -- LGreater, LLess, LGreaterEqual, and LLessEqual -
10868
10869 as per further clarification to the ACPI specification.  Behavior is 
10870 similar 
10871 to C library "strcmp".
10872
10873 Completed a major reduction in CPU stack use for the AcpiGetFirmwareTable 
10874 external function.  In the 32-bit non-debug case, the stack use has been 
10875 reduced from 168 bytes to 32 bytes.
10876
10877 Deployed a new run-time configuration flag, 
10878 AcpiGbl_EnableInterpreterSlack, 
10879 whose purpose is to allow the AML interpreter to forgive certain bad AML 
10880 constructs.  Default setting is FALSE.
10881
10882 Implemented the first use of AcpiGbl_EnableInterpreterSlack in the Field 
10883 IO 
10884 support code.  If enabled, it allows field access to go beyond the end of 
10885
10886 region definition if the field is within the region length rounded up to 
10887 the 
10888 next access width boundary (a common coding error.)
10889
10890 Renamed OSD_HANDLER to ACPI_OSD_HANDLER, and OSD_EXECUTION_CALLBACK to 
10891 ACPI_OSD_EXEC_CALLBACK for consistency with other ACPI symbols.  Also, 
10892 these 
10893 symbols are lowercased by the latest version of the AcpiSrc tool.
10894
10895 The prototypes for the PCI interfaces in acpiosxf.h have been updated to 
10896 rename "Register" to simply "Reg" to prevent certain compilers from 
10897 complaining.
10898
10899 Code and Data Size: Current and previous core subsystem library sizes are 
10900 shown below.  These are the code and data sizes for the acpica.lib 
10901 produced 
10902 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10903 any ACPI driver or OSPM code.  The debug version of the code includes the 
10904 debug output trace mechanism and has a much larger code and data size.  
10905 Note 
10906 that these values will vary depending on the efficiency of the compiler 
10907 and 
10908 the compiler options used during generation.
10909
10910   Previous Release:
10911     Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
10912     Debug Version:     163.8K Code,  68.2K Data,  232.0K Total
10913   Current Release:
10914     Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
10915     Debug Version:     164.1K Code,  68.2K Data,  232.3K Total
10916
10917
10918 2) iASL Compiler/Disassembler:
10919
10920 Implemented full support for Package objects within the Case() operator.  
10921 Note: The Break() operator is currently not supported within Case blocks 
10922 (TermLists) as there is some question about backward compatibility with 
10923 ACPI 
10924 1.0 interpreters.
10925
10926
10927 Fixed a problem where complex terms were not supported properly within 
10928 the 
10929 Switch() operator.
10930
10931 Eliminated extraneous warning for compiler-emitted reserved names of the 
10932 form "_T_x".  (Used in Switch/Case operators.)
10933
10934 Eliminated optimization messages for "_T_x" objects and small constants 
10935 within the DefinitionBlock operator.
10936
10937
10938 ----------------------------------------
10939 15 June 2004.  Summary of changes for version 20040615:
10940
10941 1) ACPI CA Core Subsystem:
10942
10943 Implemented support for Buffer and String objects (as per ACPI 2.0) for 
10944 the 
10945 following ASL operators:  LEqual, LGreater, LLess, LGreaterEqual, and 
10946 LLessEqual.
10947
10948 All directory names in the entire source package are lower case, as they 
10949 were in earlier releases.
10950
10951 Implemented "Disassemble" command in the AML debugger that will 
10952 disassemble 
10953 a single control method.
10954
10955 Code and Data Size: Current and previous core subsystem library sizes are 
10956 shown below.  These are the code and data sizes for the acpica.lib 
10957 produced 
10958 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
10959 any ACPI driver or OSPM code.  The debug version of the code includes the 
10960 debug output trace mechanism and has a much larger code and data size.  
10961 Note 
10962 that these values will vary depending on the efficiency of the compiler 
10963 and 
10964 the compiler options used during generation.
10965
10966   Previous Release:
10967     Non-Debug Version:  77.7K Code,  11.5K Data,   89.2K Total
10968     Debug Version:     163.3K Code,  67.2K Data,  230.5K Total
10969
10970   Current Release:
10971     Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
10972     Debug Version:     163.8K Code,  68.2K Data,  232.0K Total
10973
10974
10975 2) iASL Compiler/Disassembler:
10976
10977 Implemented support for Buffer and String objects (as per ACPI 2.0) for 
10978 the 
10979 following ASL operators:  LEqual, LGreater, LLess, LGreaterEqual, and 
10980 LLessEqual.
10981
10982 All directory names in the entire source package are lower case, as they 
10983 were in earlier releases.
10984
10985 Fixed a fault when using the -g or -d<nofilename> options if the FADT was 
10986 not found.
10987
10988 Fixed an issue with the Windows version of the compiler where later 
10989 versions 
10990 of Windows place the FADT in the registry under the name "FADT" and not 
10991 "FACP" as earlier versions did.  This applies when using the -g or -
10992 d<nofilename> options.  The compiler now looks for both strings as 
10993 necessary.
10994
10995 Fixed a problem with compiler namepath optimization where a namepath 
10996 within 
10997 the Scope() operator could not be optimized if the namepath was a subpath 
10998 of 
10999 the current scope path.
11000
11001 ----------------------------------------
11002 27 May 2004.  Summary of changes for version 20040527:
11003
11004 1) ACPI CA Core Subsystem:
11005
11006 Completed a new design and implementation for EBDA (Extended BIOS Data 
11007 Area) 
11008 support in the RSDP scan code.  The original code improperly scanned for 
11009 the 
11010 EBDA by simply scanning from memory location 0 to 0x400.  The correct 
11011 method 
11012 is to first obtain the EBDA pointer from within the BIOS data area, then 
11013 scan 1K of memory starting at the EBDA pointer.  There appear to be few 
11014 if 
11015 any machines that place the RSDP in the EBDA, however.
11016
11017 Integrated a fix for a possible fault during evaluation of BufferField 
11018 arguments.  Obsolete code that was causing the problem was removed.
11019
11020 Found and fixed a problem in the Field Support Code where data could be 
11021 corrupted on a bit field read that starts on an aligned boundary but does 
11022 not end on an aligned boundary.  Merged the read/write "datum length" 
11023 calculation code into a common procedure.
11024
11025 Rolled in a couple of changes to the FreeBSD-specific header.
11026
11027
11028 Code and Data Size: Current and previous core subsystem library sizes are 
11029 shown below.  These are the code and data sizes for the acpica.lib 
11030 produced 
11031 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
11032 any ACPI driver or OSPM code.  The debug version of the code includes the 
11033 debug output trace mechanism and has a much larger code and data size.  
11034 Note 
11035 that these values will vary depending on the efficiency of the compiler 
11036 and 
11037 the compiler options used during generation.
11038
11039   Previous Release:
11040     Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
11041     Debug Version:     163.2K Code,  67.2K Data,  230.4K Total
11042   Current Release:
11043     Non-Debug Version:  77.7K Code,  11.5K Data,   89.2K Total
11044     Debug Version:     163.3K Code,  67.2K Data,  230.5K Total
11045
11046
11047 2) iASL Compiler/Disassembler:
11048
11049 Fixed a generation warning produced by some overly-verbose compilers for 
11050
11051 64-bit constant.
11052
11053 ----------------------------------------
11054 14 May 2004.  Summary of changes for version 20040514:
11055
11056 1) ACPI CA Core Subsystem:
11057
11058 Fixed a problem where hardware GPE enable bits sometimes not set properly 
11059 during and after GPE method execution.  Result of 04/27 changes.
11060
11061 Removed extra "clear all GPEs" when sleeping/waking.
11062
11063 Removed AcpiHwEnableGpe and AcpiHwDisableGpe, replaced by the single 
11064 AcpiHwWriteGpeEnableReg. Changed a couple of calls to the functions above 
11065 to 
11066 the new AcpiEv* calls as appropriate.
11067
11068 ACPI_OS_NAME was removed from the OS-specific headers.  The default name 
11069 is 
11070 now "Microsoft Windows NT" for maximum compatibility.  However this can 
11071 be 
11072 changed by modifying the acconfig.h file.
11073
11074 Allow a single invocation of AcpiInstallNotifyHandler for a handler that 
11075 traps both types of notifies (System, Device).  Use ACPI_ALL_NOTIFY flag. 
11076
11077 Run _INI methods on ThermalZone objects.  This is against the ACPI 
11078 specification, but there is apparently ASL code in the field that has 
11079 these 
11080 _INI methods, and apparently "other" AML interpreters execute them.
11081
11082 Performed a full 16/32/64 bit lint that resulted in some small changes.
11083
11084 Added a sleep simulation command to the AML debugger to test sleep code. 
11085
11086 Code and Data Size: Current and previous core subsystem library sizes are 
11087 shown below.  These are the code and data sizes for the acpica.lib 
11088 produced 
11089 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
11090 any ACPI driver or OSPM code.  The debug version of the code includes the 
11091 debug output trace mechanism and has a much larger code and data size.  
11092 Note 
11093 that these values will vary depending on the efficiency of the compiler 
11094 and 
11095 the compiler options used during generation.
11096
11097   Previous Release:
11098     Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
11099     Debug Version:     162.9K Code,  67.0K Data,  229.9K Total
11100   Current Release:
11101     Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
11102     Debug Version:     163.2K Code,  67.2K Data,  230.4K Total
11103
11104 ----------------------------------------
11105 27 April 2004.  Summary of changes for version 20040427:
11106
11107 1) ACPI CA Core Subsystem:
11108
11109 Completed a major overhaul of the GPE handling within ACPI CA.  There are 
11110 now three types of GPEs:  wake-only, runtime-only, and combination 
11111 wake/run.  
11112 The only GPEs allowed to be combination wake/run are for button-style 
11113 devices such as a control-method power button, control-method sleep 
11114 button, 
11115 or a notebook lid switch.  GPEs that have an _Lxx or _Exx method and are 
11116 not 
11117 referenced by any _PRW methods are marked for "runtime" and hardware 
11118 enabled.  Any GPE that is referenced by a _PRW method is marked for 
11119 "wake" 
11120 (and disabled at runtime).  However, at sleep time, only those GPEs that 
11121 have been specifically enabled for wake via the AcpiEnableGpe interface 
11122 will 
11123 actually be hardware enabled.
11124
11125 A new external interface has been added, AcpiSetGpeType(), that is meant 
11126 to 
11127 be used by device drivers to force a GPE to a particular type.  It will 
11128 be 
11129 especially useful for the drivers for the button devices mentioned above.
11130
11131 Completed restructuring of the ACPI CA initialization sequence so that 
11132 default operation region handlers are installed before GPEs are 
11133 initialized 
11134 and the _PRW methods are executed.  This will prevent errors when the 
11135 _PRW 
11136 methods attempt to access system memory or I/O space.
11137
11138 GPE enable/disable no longer reads the GPE enable register.  We now keep 
11139 the 
11140 enable info for runtime and wake separate and in the GPE_EVENT_INFO.  We 
11141 thus no longer depend on the hardware to maintain these bits.
11142
11143 Always clear the wake status and fixed/GPE status bits before sleep, even 
11144 for state S5.
11145
11146 Improved the AML debugger output for displaying the GPE blocks and their 
11147 current status.
11148
11149 Added new strings for the _OSI method, of the form "Windows 2001 SPx" 
11150 where 
11151 x = 0,1,2,3,4.
11152
11153 Fixed a problem where the physical address was incorrectly calculated 
11154 when 
11155 the Load() operator was used to directly load from an Operation Region 
11156 (vs. 
11157 loading from a Field object.)  Also added check for minimum table length 
11158 for 
11159 this case.
11160
11161 Fix for multiple mutex acquisition.  Restore original thread SyncLevel on 
11162 mutex release.
11163
11164 Added ACPI_VALID_SXDS flag to the AcpiGetObjectInfo interface for 
11165 consistency with the other fields returned.
11166
11167 Shrunk the ACPI_GPE_EVENT_INFO structure by 40%.  There is one such 
11168 structure for each GPE in the system, so the size of this structure is 
11169 important.
11170
11171 CPU stack requirement reduction:  Cleaned up the method execution and 
11172 object 
11173 evaluation paths so that now a parameter structure is passed, instead of 
11174 copying the various method parameters over and over again.
11175
11176 In evregion.c:  Correctly exit and reenter the interpreter region if and 
11177 only if dispatching an operation region request to a user-installed 
11178 handler.  
11179 Do not exit/reenter when dispatching to a default handler (e.g., default 
11180 system memory or I/O handlers)
11181
11182
11183 Notes for updating drivers for the new GPE support.  The following 
11184 changes 
11185 must be made to ACPI-related device drivers that are attached to one or 
11186 more 
11187 GPEs: (This information will be added to the ACPI CA Programmer 
11188 Reference.)
11189
11190 1) AcpiInstallGpeHandler no longer automatically enables the GPE, you 
11191 must 
11192 explicitly call AcpiEnableGpe.
11193 2) There is a new interface called AcpiSetGpeType. This should be called 
11194 before enabling the GPE.  Also, this interface will automatically disable 
11195 the GPE if it is currently enabled.
11196 3) AcpiEnableGpe no longer supports a GPE type flag.
11197
11198 Specific drivers that must be changed:
11199 1) EC driver:
11200     AcpiInstallGpeHandler (NULL, GpeNum, ACPI_GPE_EDGE_TRIGGERED, 
11201 AeGpeHandler, NULL);
11202     AcpiSetGpeType (NULL, GpeNum, ACPI_GPE_TYPE_RUNTIME);
11203     AcpiEnableGpe (NULL, GpeNum, ACPI_NOT_ISR);
11204
11205 2) Button Drivers (Power, Lid, Sleep):
11206 Run _PRW method under parent device
11207 If _PRW exists: /* This is a control-method button */
11208     Extract GPE number and possibly GpeDevice
11209     AcpiSetGpeType (GpeDevice, GpeNum, ACPI_GPE_TYPE_WAKE_RUN);
11210     AcpiEnableGpe (GpeDevice, GpeNum, ACPI_NOT_ISR);
11211
11212 For all other devices that have _PRWs, we automatically set the GPE type 
11213 to 
11214 ACPI_GPE_TYPE_WAKE, but the GPE is NOT automatically (wake) enabled.  
11215 This 
11216 must be done on a selective basis, usually requiring some kind of user 
11217 app 
11218 to allow the user to pick the wake devices.
11219
11220
11221 Code and Data Size: Current and previous core subsystem library sizes are 
11222 shown below.  These are the code and data sizes for the acpica.lib 
11223 produced 
11224 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
11225 any ACPI driver or OSPM code.  The debug version of the code includes the 
11226 debug output trace mechanism and has a much larger code and data size.  
11227 Note 
11228 that these values will vary depending on the efficiency of the compiler 
11229 and 
11230 the compiler options used during generation.
11231
11232   Previous Release:
11233     Non-Debug Version:  77.0K Code,  11.4K Data,   88.4K Total
11234     Debug Version:     161.0K Code,  66.3K Data,  227.3K Total
11235   Current Release:
11236
11237     Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
11238     Debug Version:     162.9K Code,  67.0K Data,  229.9K Total
11239
11240
11241
11242 ----------------------------------------
11243 02 April 2004.  Summary of changes for version 20040402:
11244
11245 1) ACPI CA Core Subsystem:
11246
11247 Fixed an interpreter problem where an indirect store through an ArgX 
11248 parameter was incorrectly applying the "implicit conversion rules" during 
11249 the store.  From the ACPI specification: "If the target is a method local 
11250 or 
11251 argument (LocalX or ArgX), no conversion is performed and the result is 
11252 stored directly to the target".  The new behavior is to disable implicit 
11253 conversion during ALL stores to an ArgX.
11254
11255 Changed the behavior of the _PRW method scan to ignore any and all errors 
11256 returned by a given _PRW.  This prevents the scan from aborting from the 
11257 failure of any single _PRW.
11258
11259 Moved the runtime configuration parameters from the global init procedure 
11260 to 
11261 static variables in acglobal.h.  This will allow the host to override the 
11262 default values easily.
11263
11264 Code and Data Size: Current and previous core subsystem library sizes are 
11265 shown below.  These are the code and data sizes for the acpica.lib 
11266 produced 
11267 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
11268 any ACPI driver or OSPM code.  The debug version of the code includes the 
11269 debug output trace mechanism and has a much larger code and data size.  
11270 Note 
11271 that these values will vary depending on the efficiency of the compiler 
11272 and 
11273 the compiler options used during generation.
11274
11275   Previous Release:
11276     Non-Debug Version:  76.9K Code,  11.4K Data,   88.3K Total
11277     Debug Version:     160.8K Code,  66.1K Data,  226.9K Total
11278   Current Release:
11279     Non-Debug Version:  77.0K Code,  11.4K Data,   88.4K Total
11280     Debug Version:     161.0K Code,  66.3K Data,  227.3K Total
11281
11282
11283 2) iASL Compiler/Disassembler:
11284
11285 iASL now fully disassembles SSDTs.  However, External() statements are 
11286 not 
11287 generated automatically for unresolved symbols at this time.  This is a 
11288 planned feature for future implementation.
11289
11290 Fixed a scoping problem in the disassembler that occurs when the type of 
11291 the 
11292 target of a Scope() operator is overridden.  This problem caused an 
11293 incorrectly nested internal namespace to be constructed.
11294
11295 Any warnings or errors that are emitted during disassembly are now 
11296 commented 
11297 out automatically so that the resulting file can be recompiled without 
11298 any 
11299 hand editing.
11300
11301 ----------------------------------------
11302 26 March 2004.  Summary of changes for version 20040326:
11303
11304 1) ACPI CA Core Subsystem:
11305
11306 Implemented support for "wake" GPEs via interaction between GPEs and the 
11307 _PRW methods.  Every GPE that is pointed to by one or more _PRWs is 
11308 identified as a WAKE GPE and by default will no longer be enabled at 
11309 runtime.  Previously, we were blindly enabling all GPEs with a 
11310 corresponding 
11311 _Lxx or _Exx method - but most of these turn out to be WAKE GPEs anyway.  
11312 We 
11313 believe this has been the cause of thousands of "spurious" GPEs on some 
11314 systems.
11315
11316 This new GPE behavior is can be reverted to the original behavior (enable 
11317 ALL GPEs at runtime) via a runtime flag.
11318
11319 Fixed a problem where aliased control methods could not access objects 
11320 properly.  The proper scope within the namespace was not initialized 
11321 (transferred to the target of the aliased method) before executing the 
11322 target method.
11323
11324 Fixed a potential race condition on internal object deletion on the 
11325 return 
11326 object in AcpiEvaluateObject. 
11327
11328 Integrated a fix for resource descriptors where both _MEM and _MTP were 
11329 being extracted instead of just _MEM.  (i.e. bitmask was incorrectly too 
11330 wide, 0x0F instead of 0x03.)
11331
11332 Added a special case for ACPI_ROOT_OBJECT in AcpiUtGetNodeName, 
11333 preventing 
11334
11335 fault in some cases.
11336
11337 Updated Notify() values for debug statements in evmisc.c
11338
11339 Return proper status from AcpiUtMutexInitialize, not just simply AE_OK.
11340
11341 Code and Data Size: Current and previous core subsystem library sizes are 
11342 shown below.  These are the code and data sizes for the acpica.lib 
11343 produced 
11344 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
11345 any ACPI driver or OSPM code.  The debug version of the code includes the 
11346 debug output trace mechanism and has a much larger code and data size.  
11347 Note 
11348 that these values will vary depending on the efficiency of the compiler 
11349 and 
11350 the compiler options used during generation.
11351
11352   Previous Release:
11353
11354     Non-Debug Version:  76.5K Code,  11.3K Data,   87.8K Total
11355     Debug Version:     160.3K Code,  66.0K Data,  226.3K Total
11356   Current Release:
11357     Non-Debug Version:  76.9K Code,  11.4K Data,   88.3K Total
11358     Debug Version:     160.8K Code,  66.1K Data,  226.9K Total
11359
11360 ----------------------------------------
11361 11 March 2004.  Summary of changes for version 20040311:
11362
11363 1) ACPI CA Core Subsystem:
11364
11365 Fixed a problem where errors occurring during the parse phase of control 
11366 method execution did not abort cleanly.  For example, objects created and 
11367 installed in the namespace were not deleted.  This caused all subsequent 
11368 invocations of the method to return the AE_ALREADY_EXISTS exception.
11369
11370 Implemented a mechanism to force a control method to "Serialized" 
11371 execution 
11372 if the method attempts to create namespace objects. (The root of the 
11373 AE_ALREADY_EXISTS problem.)
11374
11375 Implemented support for the predefined _OSI "internal" control method.  
11376 Initial supported strings are "Linux", "Windows 2000", "Windows 2001", 
11377 and 
11378 "Windows 2001.1", and can be easily upgraded for new strings as 
11379 necessary.  
11380 This feature will allow "other" operating systems to execute the fully 
11381 tested, "Windows" code path through the ASL code
11382
11383 Global Lock Support:  Now allows multiple acquires and releases with any 
11384 internal thread.  Removed concept of "owning thread" for this special 
11385 mutex.
11386
11387 Fixed two functions that were inappropriately declaring large objects on 
11388 the 
11389 CPU stack:  PsParseLoop, NsEvaluateRelative.  Reduces the stack usage 
11390 during 
11391 method execution considerably.
11392
11393 Fixed a problem in the ACPI 2.0 FACS descriptor (actbl2.h) where the 
11394 S4Bios_f field was incorrectly defined as UINT32 instead of UINT32_BIT.
11395
11396 Fixed a problem where AcpiEvGpeDetect would fault if there were no GPEs 
11397 defined on the machine.
11398
11399 Implemented two runtime options:  One to force all control method 
11400 execution 
11401 to "Serialized" to mimic Windows behavior, another to disable _OSI 
11402 support 
11403 if it causes problems on a given machine.
11404
11405 Code and Data Size: Current and previous core subsystem library sizes are 
11406 shown below.  These are the code and data sizes for the acpica.lib 
11407 produced 
11408 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
11409 any ACPI driver or OSPM code.  The debug version of the code includes the 
11410 debug output trace mechanism and has a much larger code and data size.  
11411 Note 
11412 that these values will vary depending on the efficiency of the compiler 
11413 and 
11414 the compiler options used during generation.
11415
11416   Previous Release:
11417     Non-Debug Version:  74.8K Code,  10.1K Data,   84.9K Total
11418     Debug Version:     158.7K Code,  65.1K Data,  223.8K Total
11419   Current Release:
11420     Non-Debug Version:  76.5K Code,  11.3K Data,   87.8K Total
11421     Debug Version:     160.3K Code,  66.0K Data,  226.3K Total
11422
11423 2) iASL Compiler/Disassembler:
11424
11425 Fixed an array size problem for FreeBSD that would cause the compiler to 
11426 fault.
11427
11428 ----------------------------------------
11429 20 February 2004.  Summary of changes for version 20040220:
11430
11431
11432 1) ACPI CA Core Subsystem:
11433
11434 Implemented execution of _SxD methods for Device objects in the 
11435 GetObjectInfo interface.
11436
11437 Fixed calls to _SST method to pass the correct arguments.
11438
11439 Added a call to _SST on wake to restore to "working" state.
11440
11441 Check for End-Of-Buffer failure case in the WalkResources interface.
11442
11443 Integrated fix for 64-bit alignment issue in acglobal.h by moving two 
11444 structures to the beginning of the file.
11445
11446 After wake, clear GPE status register(s) before enabling GPEs.
11447
11448 After wake, clear/enable power button.  (Perhaps we should clear/enable 
11449 all 
11450 fixed events upon wake.)
11451
11452 Fixed a couple of possible memory leaks in the Namespace manager.
11453
11454 Integrated latest acnetbsd.h file.
11455
11456 ----------------------------------------
11457 11 February 2004.  Summary of changes for version 20040211:
11458
11459
11460 1) ACPI CA Core Subsystem:
11461
11462 Completed investigation and implementation of the call-by-reference 
11463 mechanism for control method arguments.
11464
11465 Fixed a problem where a store of an object into an indexed package could 
11466 fail if the store occurs within a different method than the method that 
11467 created the package.
11468
11469 Fixed a problem where the ToDecimal operator could return incorrect 
11470 results.
11471
11472 Fixed a problem where the CopyObject operator could fail on some of the 
11473 more 
11474 obscure objects (e.g., Reference objects.)
11475
11476 Improved the output of the Debug object to display buffer, package, and 
11477 index objects.
11478
11479 Fixed a problem where constructs of the form "RefOf (ArgX)" did not 
11480 return 
11481 the expected result.
11482
11483 Added permanent ACPI_REPORT_ERROR macros for all instances of the 
11484 ACPI_AML_INTERNAL exception.
11485
11486 Integrated latest version of acfreebsd.h
11487
11488 ----------------------------------------
11489 16 January 2004.  Summary of changes for version 20040116:
11490
11491 The purpose of this release is primarily to update the copyright years in 
11492 each module, thus causing a huge number of diffs.  There are a few small 
11493 functional changes, however.
11494
11495 1) ACPI CA Core Subsystem:
11496
11497 Improved error messages when there is a problem finding one or more of 
11498 the 
11499 required base ACPI tables
11500
11501 Reintroduced the definition of APIC_HEADER in actbl.h
11502
11503 Changed definition of MADT_ADDRESS_OVERRIDE to 64 bits (actbl.h)
11504
11505 Removed extraneous reference to NewObj in dsmthdat.c
11506
11507 2) iASL compiler
11508
11509 Fixed a problem introduced in December that disabled the correct 
11510 disassembly 
11511 of Resource Templates
11512
11513
11514 ----------------------------------------
11515 03 December 2003.  Summary of changes for version 20031203:
11516
11517 1) ACPI CA Core Subsystem:
11518
11519 Changed the initialization of Operation Regions during subsystem
11520 init to perform two entire walks of the ACPI namespace; The first
11521 to initialize the regions themselves, the second to execute the
11522 _REG methods.  This fixed some interdependencies across _REG
11523 methods found on some machines.
11524
11525 Fixed a problem where a Store(Local0, Local1) could simply update
11526 the object reference count, and not create a new copy of the
11527 object if the Local1 is uninitialized.
11528
11529 Implemented support for the _SST reserved method during sleep
11530 transitions.
11531
11532 Implemented support to clear the SLP_TYP and SLP_EN bits when
11533 waking up, this is apparently required by some machines.
11534
11535 When sleeping, clear the wake status only if SleepState is not S5.
11536
11537 Fixed a problem in AcpiRsExtendedIrqResource() where an incorrect
11538 pointer arithmetic advanced a string pointer too far.
11539
11540 Fixed a problem in AcpiTbGetTablePtr() where a garbage pointer
11541 could be returned if the requested table has not been loaded.
11542
11543 Within the support for IRQ resources, restructured the handling of
11544 the active and edge/level bits.
11545
11546 Fixed a few problems in AcpiPsxExecute() where memory could be
11547 leaked under certain error conditions.
11548
11549 Improved error messages for the cases where the ACPI mode could
11550 not be entered.
11551
11552 Code and Data Size: Current and previous core subsystem library
11553 sizes are shown below.  These are the code and data sizes for the
11554 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
11555 these values do not include any ACPI driver or OSPM code.  The
11556 debug version of the code includes the debug output trace
11557 mechanism and has a much larger code and data size.  Note that
11558 these values will vary depending on the efficiency of the compiler
11559 and the compiler options used during generation.
11560
11561   Previous Release (20031029):
11562     Non-Debug Version:  74.4K Code,  10.1K Data,   84.5K Total
11563     Debug Version:     158.3K Code,  65.0K Data,  223.3K Total
11564   Current Release:
11565     Non-Debug Version:  74.8K Code,  10.1K Data,   84.9K Total
11566     Debug Version:     158.7K Code,  65.1K Data,  223.8K Total
11567
11568 2) iASL Compiler/Disassembler:
11569
11570 Implemented a fix for the iASL disassembler where a bad index was
11571 generated.  This was most noticeable on 64-bit platforms
11572
11573
11574 ----------------------------------------
11575 29 October 2003.  Summary of changes for version 20031029:
11576
11577 1) ACPI CA Core Subsystem:
11578
11579
11580 Fixed a problem where a level-triggered GPE with an associated
11581 _Lxx control method was incorrectly cleared twice.
11582
11583 Fixed a problem with the Field support code where an access can
11584 occur beyond the end-of-region if the field is non-aligned but
11585 extends to the very end of the parent region (resulted in an
11586 AE_AML_REGION_LIMIT exception.)
11587
11588 Fixed a problem with ACPI Fixed Events where an RT Clock handler
11589 would not get invoked on an RTC event.  The RTC event bitmasks for
11590 the PM1 registers were not being initialized properly.
11591
11592 Implemented support for executing _STA and _INI methods for
11593 Processor objects.  Although this is currently not part of the
11594 ACPI specification, there is existing ASL code that depends on the
11595 init-time execution of these methods.
11596
11597 Implemented and deployed a GetDescriptorName function to decode
11598 the various types of internal descriptors.  Guards against null
11599 descriptors during debug output also.
11600
11601 Implemented and deployed a GetNodeName function to extract the 4-
11602 character namespace node name.  This function simplifies the debug
11603 and error output, as well as guarding against null pointers during
11604 output.
11605
11606 Implemented and deployed the ACPI_FORMAT_UINT64 helper macro to
11607 simplify the debug and error output of 64-bit integers.  This
11608 macro replaces the HIDWORD and LODWORD macros for dumping these
11609 integers.
11610
11611 Updated the implementation of the Stall() operator to only call
11612 AcpiOsStall(), and also return an error if the operand is larger
11613 than 255.  This preserves the required behavior of not
11614 relinquishing the processor, as would happen if AcpiOsSleep() was
11615 called for "long stalls".
11616
11617 Constructs of the form "Store(LocalX,LocalX)" where LocalX is not
11618 initialized are now treated as NOOPs.
11619
11620 Cleaned up a handful of warnings during 64-bit generation.
11621
11622 Fixed a reported error where and incorrect GPE number was passed
11623 to the GPE dispatch handler.  This value is only used for error
11624 output, however.  Used this opportunity to clean up and streamline
11625 the GPE dispatch code.
11626
11627 Code and Data Size: Current and previous core subsystem library
11628 sizes are shown below.  These are the code and data sizes for the
11629 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
11630 these values do not include any ACPI driver or OSPM code.  The
11631
11632 debug version of the code includes the debug output trace
11633 mechanism and has a much larger code and data size.  Note that
11634 these values will vary depending on the efficiency of the compiler
11635 and the compiler options used during generation.
11636
11637   Previous Release (20031002):
11638     Non-Debug Version:  74.1K Code,   9.7K Data,   83.8K Total
11639     Debug Version:     157.9K Code,  64.8K Data,  222.7K Total
11640   Current Release:
11641     Non-Debug Version:  74.4K Code,  10.1K Data,   84.5K Total
11642     Debug Version:     158.3K Code,  65.0K Data,  223.3K Total
11643
11644
11645 2) iASL Compiler/Disassembler:
11646
11647 Updated the iASL compiler to return an error if the operand to the
11648 Stall() operator is larger than 255.
11649
11650
11651 ----------------------------------------
11652 02 October 2003.  Summary of changes for version 20031002:
11653
11654
11655 1) ACPI CA Core Subsystem:
11656
11657 Fixed a problem with Index Fields where the index was not
11658 incremented for fields that require multiple writes to the
11659 index/data registers (Fields that are wider than the data
11660 register.)
11661
11662 Fixed a problem with all Field objects where a write could go
11663 beyond the end-of-field if the field was larger than the access
11664 granularity and therefore required multiple writes to complete the
11665 request.  An extra write beyond the end of the field could happen
11666 inadvertently.
11667
11668 Fixed a problem with Index Fields where a BUFFER_OVERFLOW error
11669 would incorrectly be returned if the width of the Data Register
11670 was larger than the specified field access width.
11671
11672 Completed fixes for LoadTable() and Unload() and verified their
11673 operation.  Implemented full support for the "DdbHandle" object
11674 throughout the ACPI CA subsystem.
11675
11676 Implemented full support for the MADT and ECDT tables in the ACPI
11677 CA header files.  Even though these tables are not directly
11678 consumed by ACPI CA, the header definitions are useful for ACPI
11679 device drivers.
11680
11681 Integrated resource descriptor fixes posted to the Linux ACPI
11682 list.  This included checks for minimum descriptor length, and
11683 support for trailing NULL strings within descriptors that have
11684 optional string elements.
11685
11686 Code and Data Size: Current and previous core subsystem library
11687 sizes are shown below.  These are the code and data sizes for the
11688 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
11689 these values do not include any ACPI driver or OSPM code.  The
11690 debug version of the code includes the debug output trace
11691 mechanism and has a much larger code and data size.  Note that
11692 these values will vary depending on the efficiency of the compiler
11693 and the compiler options used during generation.
11694
11695   Previous Release (20030918):
11696     Non-Debug Version:  73.9K Code,   9.7K Data,   83.6K Total
11697     Debug Version:     157.3K Code,  64.5K Data,  221.8K Total
11698   Current Release:
11699     Non-Debug Version:  74.1K Code,   9.7K Data,   83.8K Total
11700     Debug Version:     157.9K Code,  64.8K Data,  222.7K Total
11701
11702
11703 2) iASL Compiler:
11704
11705 Implemented detection of non-ASCII characters within the input
11706 source ASL file.  This catches attempts to compile binary (AML)
11707 files early in the compile, with an informative error message.
11708
11709 Fixed a problem where the disassembler would fault if the output
11710 filename could not be generated or if the output file could not be
11711 opened.
11712
11713 ----------------------------------------
11714 18 September 2003.  Summary of changes for version 20030918:
11715
11716
11717 1) ACPI CA Core Subsystem:
11718
11719 Found and fixed a longstanding problem with the late execution of
11720 the various deferred AML opcodes (such as Operation Regions,
11721 Buffer Fields, Buffers, and Packages).  If the name string
11722 specified for the name of the new object placed the object in a
11723 scope other than the current scope, the initialization/execution
11724 of the opcode failed.  The solution to this problem was to
11725 implement a mechanism where the late execution of such opcodes
11726 does not attempt to lookup/create the name a second time in an
11727 incorrect scope.  This fixes the "region size computed
11728 incorrectly" problem.
11729
11730 Fixed a call to AcpiHwRegisterWrite in hwregs.c that was causing a
11731 Global Lock AE_BAD_PARAMETER error.
11732
11733 Fixed several 64-bit issues with prototypes, casting and data
11734 types.
11735
11736 Removed duplicate prototype from acdisasm.h
11737
11738 Fixed an issue involving EC Operation Region Detach (Shaohua Li)
11739
11740 Code and Data Size: Current and previous core subsystem library
11741 sizes are shown below.  These are the code and data sizes for the
11742 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
11743 these values do not include any ACPI driver or OSPM code.  The
11744 debug version of the code includes the debug output trace
11745 mechanism and has a much larger code and data size.  Note that
11746 these values will vary depending on the efficiency of the compiler
11747 and the compiler options used during generation.
11748
11749   Previous Release:
11750
11751     Non-Debug Version:  73.7K Code,   9.7K Data,   83.4K Total
11752     Debug Version:     156.9K Code,  64.2K Data,  221.1K Total
11753   Current Release:
11754     Non-Debug Version:  73.9K Code,   9.7K Data,   83.6K Total
11755     Debug Version:     157.3K Code,  64.5K Data,  221.8K Total
11756
11757
11758 2) Linux:
11759
11760 Fixed the AcpiOsSleep implementation in osunixxf.c to pass the
11761 correct sleep time in seconds.
11762
11763 ----------------------------------------
11764 14 July 2003.  Summary of changes for version 20030619:
11765
11766 1) ACPI CA Core Subsystem:
11767
11768 Parse SSDTs in order discovered, as opposed to reverse order
11769 (Hrvoje Habjanic)
11770
11771 Fixes from FreeBSD and NetBSD. (Frank van der Linden, Thomas
11772 Klausner,
11773    Nate Lawson)
11774
11775
11776 2) Linux:
11777
11778 Dynamically allocate SDT list (suggested by Andi Kleen)
11779
11780 proc function return value cleanups (Andi Kleen)
11781
11782 Correctly handle NMI watchdog during long stalls (Andrew Morton)
11783
11784 Make it so acpismp=force works (reported by Andrew Morton)
11785
11786
11787 ----------------------------------------
11788 19 June 2003.  Summary of changes for version 20030619:
11789
11790 1) ACPI CA Core Subsystem:
11791
11792 Fix To/FromBCD, eliminating the need for an arch-specific #define.
11793
11794 Do not acquire a semaphore in the S5 shutdown path.
11795
11796 Fix ex_digits_needed for 0. (Takayoshi Kochi)
11797
11798 Fix sleep/stall code reversal. (Andi Kleen)
11799
11800 Revert a change having to do with control method calling
11801 semantics.
11802
11803 2) Linux:
11804
11805 acpiphp update (Takayoshi Kochi)
11806
11807 Export acpi_disabled for sonypi (Stelian Pop)
11808
11809 Mention acpismp=force in config help
11810
11811 Re-add acpitable.c and acpismp=force. This improves backwards
11812
11813 compatibility and also cleans up the code to a significant degree.
11814
11815 Add ASUS Value-add driver (Karol Kozimor and Julien Lerouge)
11816
11817 ----------------------------------------
11818 22 May 2003.  Summary of changes for version 20030522:
11819
11820 1) ACPI CA Core Subsystem:
11821
11822 Found and fixed a reported problem where an AE_NOT_FOUND error
11823 occurred occasionally during _BST evaluation.  This turned out to
11824 be an Owner ID allocation issue where a called method did not get
11825 a new ID assigned to it.  Eventually, (after 64k calls), the Owner
11826 ID UINT16 would wraparound so that the ID would be the same as the
11827 caller's and the called method would delete the caller's
11828 namespace.
11829
11830 Implemented extended error reporting for control methods that are
11831 aborted due to a run-time exception.  Output includes the exact
11832 AML instruction that caused the method abort, a dump of the method
11833 locals and arguments at the time of the abort, and a trace of all
11834 nested control method calls.
11835
11836 Modified the interpreter to allow the creation of buffers of zero
11837 length from the AML code. Implemented new code to ensure that no
11838 attempt is made to actually allocate a memory buffer (of length
11839 zero) - instead, a simple buffer object with a NULL buffer pointer
11840 and length zero is created.  A warning is no longer issued when
11841 the AML attempts to create a zero-length buffer.
11842
11843 Implemented a workaround for the "leading asterisk issue" in
11844 _HIDs, _UIDs, and _CIDs in the AML interpreter.  One leading
11845 asterisk is automatically removed if present in any HID, UID, or
11846 CID strings.  The iASL compiler will still flag this asterisk as
11847 an error, however.
11848
11849 Implemented full support for _CID methods that return a package of
11850 multiple CIDs (Compatible IDs).  The AcpiGetObjectInfo() interface
11851 now additionally returns a device _CID list if present.  This
11852 required a change to the external interface in order to pass an
11853 ACPI_BUFFER object as a parameter since the _CID list is of
11854 variable length.
11855
11856 Fixed a problem with the new AE_SAME_HANDLER exception where
11857 handler initialization code did not know about this exception.
11858
11859 Code and Data Size: Current and previous core subsystem library
11860 sizes are shown below.  These are the code and data sizes for the
11861 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
11862 these values do not include any ACPI driver or OSPM code.  The
11863 debug version of the code includes the debug output trace
11864 mechanism and has a much larger code and data size.  Note that
11865 these values will vary depending on the efficiency of the compiler
11866 and the compiler options used during generation.
11867
11868   Previous Release (20030509):
11869     Non-Debug Version:  73.4K Code,   9.7K Data,   83.1K Total
11870     Debug Version:     156.1K Code,  63.9K Data,  220.0K Total
11871   Current Release:
11872     Non-Debug Version:  73.7K Code,   9.7K Data,   83.4K Total
11873     Debug Version:     156.9K Code,  64.2K Data,  221.1K Total
11874
11875
11876 2) Linux:
11877
11878 Fixed a bug in which we would reinitialize the ACPI interrupt
11879 after it was already working, thus disabling all ACPI and the IRQs
11880 for any other device sharing the interrupt. (Thanks to Stian
11881 Jordet)
11882
11883 Toshiba driver update (John Belmonte)
11884
11885 Return only 0 or 1 for our interrupt handler status (Andrew
11886 Morton)
11887
11888
11889 3) iASL Compiler:
11890
11891 Fixed a reported problem where multiple (nested) ElseIf()
11892 statements were not handled correctly by the compiler, resulting
11893 in incorrect warnings and incorrect AML code.  This was a problem
11894 in both the ASL parser and the code generator.
11895
11896
11897 4) Documentation:
11898
11899 Added changes to existing interfaces, new exception codes, and new
11900 text concerning reference count object management versus garbage
11901 collection.
11902
11903 ----------------------------------------
11904 09 May 2003.  Summary of changes for version 20030509.
11905
11906
11907 1) ACPI CA Core Subsystem:
11908
11909 Changed the subsystem initialization sequence to hold off
11910 installation of address space handlers until the hardware has been
11911 initialized and the system has entered ACPI mode.  This is because
11912 the installation of space handlers can cause _REG methods to be
11913 run.  Previously, the _REG methods could potentially be run before
11914 ACPI mode was enabled.
11915
11916 Fixed some memory leak issues related to address space handler and
11917 notify handler installation.  There were some problems with the
11918 reference count mechanism caused by the fact that the handler
11919 objects are shared across several namespace objects.
11920
11921 Fixed a reported problem where reference counts within the
11922 namespace were not properly updated when named objects created by
11923 method execution were deleted.
11924
11925 Fixed a reported problem where multiple SSDTs caused a deletion
11926 issue during subsystem termination.  Restructured the table data
11927 structures to simplify the linked lists and the related code.
11928
11929 Fixed a problem where the table ID associated with secondary
11930 tables (SSDTs) was not being propagated into the namespace objects
11931 created by those tables.  This would only present a problem for
11932 tables that are unloaded at run-time, however.
11933
11934 Updated AcpiOsReadable and AcpiOsWritable to use the ACPI_SIZE
11935 type as the length parameter (instead of UINT32).
11936
11937 Solved a long-standing problem where an ALREADY_EXISTS error
11938 appears on various systems.  This problem could happen when there
11939 are multiple PCI_Config operation regions under a single PCI root
11940 bus.  This doesn't happen very frequently, but there are some
11941 systems that do this in the ASL.
11942
11943 Fixed a reported problem where the internal DeleteNode function
11944 was incorrectly handling the case where a namespace node was the
11945 first in the parent's child list, and had additional peers (not
11946 the only child, but first in the list of children.)
11947
11948 Code and Data Size: Current core subsystem library sizes are shown
11949 below.  These are the code and data sizes for the acpica.lib
11950 produced by the Microsoft Visual C++ 6.0 compiler, and these
11951 values do not include any ACPI driver or OSPM code.  The debug
11952 version of the code includes the debug output trace mechanism and
11953 has a much larger code and data size.  Note that these values will
11954 vary depending on the efficiency of the compiler and the compiler
11955 options used during generation.
11956
11957   Previous Release
11958     Non-Debug Version:  73.7K Code,   9.5K Data,   83.2K Total
11959     Debug Version:     156.1K Code,  63.6K Data,  219.7K Total
11960   Current Release:
11961     Non-Debug Version:  73.4K Code,   9.7K Data,   83.1K Total
11962     Debug Version:     156.1K Code,  63.9K Data,  220.0K Total
11963
11964
11965 2) Linux:
11966
11967 Allow ":" in OS override string (Ducrot Bruno)
11968
11969 Kobject fix (Greg KH)
11970
11971
11972 3 iASL Compiler/Disassembler:
11973
11974 Fixed a problem in the generation of the C source code files (AML
11975 is emitted in C source statements for BIOS inclusion) where the
11976 Ascii dump that appears within a C comment at the end of each line
11977 could cause a compile time error if the AML sequence happens to
11978 have an open comment or close comment sequence embedded.
11979
11980
11981 ----------------------------------------
11982 24 April 2003.  Summary of changes for version 20030424.
11983
11984
11985 1) ACPI CA Core Subsystem:
11986
11987 Support for big-endian systems has been implemented.  Most of the
11988 support has been invisibly added behind big-endian versions of the
11989 ACPI_MOVE_* macros.
11990
11991 Fixed a problem in AcpiHwDisableGpeBlock() and
11992 AcpiHwClearGpeBlock() where an incorrect offset was passed to the
11993 low level hardware write routine.  The offset parameter was
11994 actually eliminated from the low level read/write routines because
11995 they had become obsolete.
11996
11997 Fixed a problem where a handler object was deleted twice during
11998 the removal of a fixed event handler.
11999
12000
12001 2) Linux:
12002
12003 A fix for SMP systems with link devices was contributed by
12004
12005 Compaq's Dan Zink.
12006
12007 (2.5) Return whether we handled the interrupt in our IRQ handler.
12008 (Linux ISRs no longer return void, so we can propagate the handler
12009 return value from the ACPI CA core back to the OS.)
12010
12011
12012
12013 3) Documentation:
12014
12015 The ACPI CA Programmer Reference has been updated to reflect new
12016 interfaces and changes to existing interfaces.
12017
12018 ----------------------------------------
12019 28 March 2003.  Summary of changes for version 20030328.
12020
12021 1) ACPI CA Core Subsystem:
12022
12023 The GPE Block Device support has been completed.  New interfaces
12024 are AcpiInstallGpeBlock and AcpiRemoveGpeBlock.  The Event
12025 interfaces (enable, disable, clear, getstatus) have been split
12026 into separate interfaces for Fixed Events and General Purpose
12027 Events (GPEs) in order to support GPE Block Devices properly.
12028
12029 Fixed a problem where the error message "Failed to acquire
12030 semaphore" would appear during operations on the embedded
12031 controller (EC).
12032
12033 Code and Data Size: Current core subsystem library sizes are shown
12034 below.  These are the code and data sizes for the acpica.lib
12035 produced by the Microsoft Visual C++ 6.0 compiler, and these
12036 values do not include any ACPI driver or OSPM code.  The debug
12037 version of the code includes the debug output trace mechanism and
12038 has a much larger code and data size.  Note that these values will
12039 vary depending on the efficiency of the compiler and the compiler
12040 options used during generation.
12041
12042   Previous Release
12043     Non-Debug Version:  72.3K Code,   9.5K Data,   81.8K Total
12044     Debug Version:     154.0K Code,  63.4K Data,  217.4K Total
12045   Current Release:
12046     Non-Debug Version:  73.7K Code,   9.5K Data,   83.2K Total
12047     Debug Version:     156.1K Code,  63.6K Data,  219.7K Total
12048
12049
12050 ----------------------------------------
12051 28 February 2003.  Summary of changes for version 20030228.
12052
12053
12054 1) ACPI CA Core Subsystem:
12055
12056 The GPE handling and dispatch code has been completely overhauled
12057 in preparation for support of GPE Block Devices (ID ACPI0006).
12058 This affects internal data structures and code only; there should
12059 be no differences visible externally.  One new file has been
12060 added, evgpeblk.c
12061
12062 The FADT fields GPE0_BLK_LEN and GPE1_BLK_LEN are now the only
12063 fields that are used to determine the GPE block lengths.  The
12064 REGISTER_BIT_WIDTH field of the X_GPEx_BLK extended address
12065 structures are ignored.  This is per the ACPI specification but it
12066 isn't very clear.  The full 256 Block 0/1 GPEs are now supported
12067 (the use of REGISTER_BIT_WIDTH limited the number of GPEs to 128).
12068
12069 In the SCI interrupt handler, removed the read of the PM1_CONTROL
12070 register to look at the SCI_EN bit.  On some machines, this read
12071 causes an SMI event and greatly slows down SCI events.  (This may
12072 in fact be the cause of slow battery status response on some
12073 systems.)
12074
12075 Fixed a problem where a store of a NULL string to a package object
12076 could cause the premature deletion of the object.  This was seen
12077 during execution of the battery _BIF method on some systems,
12078 resulting in no battery data being returned.
12079
12080 Added AcpiWalkResources interface to simplify parsing of resource
12081 lists.
12082
12083 Code and Data Size: Current core subsystem library sizes are shown
12084 below.  These are the code and data sizes for the acpica.lib
12085 produced by the Microsoft Visual C++ 6.0 compiler, and these
12086 values do not include any ACPI driver or OSPM code.  The debug
12087 version of the code includes the debug output trace mechanism and
12088 has a much larger code and data size.  Note that these values will
12089 vary depending on the efficiency of the compiler and the compiler
12090 options used during generation.
12091
12092   Previous Release
12093     Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
12094     Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
12095   Current Release:
12096     Non-Debug Version:  72.3K Code,   9.5K Data,   81.8K Total
12097     Debug Version:     154.0K Code,  63.4K Data,  217.4K Total
12098
12099
12100 2) Linux
12101
12102 S3 fixes (Ole Rohne)
12103
12104 Update ACPI PHP driver with to use new acpi_walk_resource API
12105 (Bjorn Helgaas)
12106
12107 Add S4BIOS support (Pavel Machek)
12108
12109 Map in entire table before performing checksum (John Stultz)
12110
12111 Expand the mem= cmdline to allow the specification of reserved and
12112 ACPI DATA blocks (Pavel Machek)
12113
12114 Never use ACPI on VISWS
12115
12116 Fix derive_pci_id (Ducrot Bruno, Alvaro Lopez)
12117
12118 Revert a change that allowed P_BLK lengths to be 4 or 5. This is
12119 causing us to think that some systems support C2 when they really
12120 don't.
12121
12122 Do not count processor objects for non-present CPUs (Thanks to
12123 Dominik Brodowski)
12124
12125
12126 3) iASL Compiler:
12127
12128 Fixed a problem where ASL include files could not be found and
12129 opened.
12130
12131 Added support for the _PDC reserved name.
12132
12133
12134 ----------------------------------------
12135 22 January 2003.  Summary of changes for version 20030122.
12136
12137
12138 1) ACPI CA Core Subsystem:
12139
12140 Added a check for constructs of the form:  Store (Local0, Local0)
12141 where Local0 is not initialized.  Apparently, some BIOS
12142 programmers believe that this is a NOOP.  Since this store doesn't
12143 do anything anyway, the new prototype behavior will ignore this
12144 error.  This is a case where we can relax the strict checking in
12145 the interpreter in the name of compatibility.
12146
12147
12148 2) Linux
12149
12150 The AcpiSrc Source Conversion Utility has been released with the
12151 Linux package for the first time.  This is the utility that is
12152 used to convert the ACPI CA base source code to the Linux version.
12153
12154 (Both) Handle P_BLK lengths shorter than 6 more gracefully
12155
12156 (Both) Move more headers to include/acpi, and delete an unused
12157 header.
12158
12159 (Both) Move drivers/acpi/include directory to include/acpi
12160
12161 (Both) Boot functions don't use cmdline, so don't pass it around
12162
12163 (Both) Remove include of unused header (Adrian Bunk)
12164
12165 (Both) acpiphp.h includes both linux/acpi.h and acpi_bus.h. Since
12166 the
12167 former now also includes the latter, acpiphp.h only needs the one,
12168 now.
12169
12170 (2.5) Make it possible to select method of bios restoring after S3
12171 resume. [=> no more ugly ifdefs] (Pavel Machek)
12172
12173 (2.5) Make proc write interfaces work (Pavel Machek)
12174
12175 (2.5) Properly init/clean up in cpufreq/acpi (Dominik Brodowski)
12176
12177 (2.5) Break out ACPI Perf code into its own module, under cpufreq
12178 (Dominik Brodowski)
12179
12180 (2.4) S4BIOS support (Ducrot Bruno)
12181
12182 (2.4) Fix acpiphp_glue.c for latest ACPI struct changes (Sergio
12183 Visinoni)
12184
12185
12186 3) iASL Compiler:
12187
12188 Added support to disassemble SSDT and PSDTs.
12189
12190 Implemented support to obtain SSDTs from the Windows registry if
12191 available.
12192
12193
12194 ----------------------------------------
12195 09 January 2003.  Summary of changes for version 20030109.
12196
12197 1) ACPI CA Core Subsystem:
12198
12199 Changed the behavior of the internal Buffer-to-String conversion
12200 function.  The current ACPI specification states that the contents
12201 of the buffer are "converted to a string of two-character
12202 hexadecimal numbers, each separated by a space".  Unfortunately,
12203 this definition is not backwards compatible with existing ACPI 1.0
12204 implementations (although the behavior was not defined in the ACPI
12205 1.0 specification).  The new behavior simply copies data from the
12206 buffer to the string until a null character is found or the end of
12207 the buffer is reached.  The new String object is always null
12208 terminated.  This problem was seen during the generation of _BIF
12209 battery data where incorrect strings were returned for battery
12210 type, etc.  This will also require an errata to the ACPI
12211 specification.
12212
12213 Renamed all instances of NATIVE_UINT and NATIVE_INT to
12214 ACPI_NATIVE_UINT and ACPI_NATIVE_INT, respectively.
12215
12216 Copyright in all module headers (both Linux and non-Linux) has be
12217 updated to 2003.
12218
12219 Code and Data Size: Current core subsystem library sizes are shown
12220 below.  These are the code and data sizes for the acpica.lib
12221 produced by the Microsoft Visual C++ 6.0 compiler, and these
12222 values do not include any ACPI driver or OSPM code.  The debug
12223 version of the code includes the debug output trace mechanism and
12224 has a much larger code and data size.  Note that these values will
12225 vary depending on the efficiency of the compiler and the compiler
12226 options used during generation.
12227
12228   Previous Release
12229     Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
12230     Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
12231   Current Release:
12232     Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
12233     Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
12234
12235
12236 2) Linux
12237
12238 Fixed an oops on module insertion/removal (Matthew Tippett)
12239
12240 (2.4) Fix to handle dynamic size of mp_irqs (Joerg Prante)
12241
12242 (2.5) Replace pr_debug (Randy Dunlap)
12243
12244 (2.5) Remove usage of CPUFREQ_ALL_CPUS (Dominik Brodowski)
12245
12246 (Both) Eliminate spawning of thread from timer callback, in favor
12247 of schedule_work()
12248
12249 (Both) Show Lid status in /proc (Zdenek OGAR Skalak)
12250
12251 (Both) Added define for Fixed Function HW region (Matthew Wilcox)
12252
12253 (Both) Add missing statics to button.c (Pavel Machek)
12254
12255 Several changes have been made to the source code translation
12256 utility that generates the Linux Code in order to make the code
12257 more "Linux-like":
12258
12259 All typedefs on structs and unions have been removed in keeping
12260 with the Linux coding style.
12261
12262 Removed the non-Linux SourceSafe module revision number from each
12263 module header.
12264
12265 Completed major overhaul of symbols to be lowercased for linux.
12266 Doubled the number of symbols that are lowercased.
12267
12268 Fixed a problem where identifiers within procedure headers and
12269 within quotes were not fully lower cased (they were left with a
12270 starting capital.)
12271
12272 Some C macros whose only purpose is to allow the generation of 16-
12273 bit code are now completely removed in the Linux code, increasing
12274 readability and maintainability.
12275
12276 ----------------------------------------
12277
12278 12 December 2002.  Summary of changes for version 20021212.
12279
12280
12281 1) ACPI CA Core Subsystem:
12282
12283 Fixed a problem where the creation of a zero-length AML Buffer
12284 would cause a fault.
12285
12286 Fixed a problem where a Buffer object that pointed to a static AML
12287 buffer (in an ACPI table) could inadvertently be deleted, causing
12288 memory corruption.
12289
12290 Fixed a problem where a user buffer (passed in to the external
12291 ACPI CA interfaces) could be overwritten if the buffer was too
12292 small to complete the operation, causing memory corruption.
12293
12294 Fixed a problem in the Buffer-to-String conversion code where a
12295 string of length one was always returned, regardless of the size
12296 of the input Buffer object.
12297
12298 Removed the NATIVE_CHAR data type across the entire source due to
12299 lack of need and lack of consistent use.
12300
12301 Code and Data Size: Current core subsystem library sizes are shown
12302 below.  These are the code and data sizes for the acpica.lib
12303 produced by the Microsoft Visual C++ 6.0 compiler, and these
12304 values do not include any ACPI driver or OSPM code.  The debug
12305 version of the code includes the debug output trace mechanism and
12306 has a much larger code and data size.  Note that these values will
12307 vary depending on the efficiency of the compiler and the compiler
12308 options used during generation.
12309
12310   Previous Release
12311     Non-Debug Version:  72.1K Code,   9.5K Data,   81.6K Total
12312     Debug Version:     152.7K Code,  62.7K Data,  215.4K Total
12313   Current Release:
12314     Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
12315     Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
12316
12317
12318 ----------------------------------------
12319 05 December 2002.  Summary of changes for version 20021205.
12320
12321 1) ACPI CA Core Subsystem:
12322
12323 Fixed a problem where a store to a String or Buffer object could
12324 cause corruption of the DSDT if the object type being stored was
12325 the same as the target object type and the length of the object
12326 being stored was equal to or smaller than the original (existing)
12327 target object.  This was seen to cause corruption of battery _BIF
12328 buffers if the _BIF method modified the buffer on the fly.
12329
12330 Fixed a problem where an internal error was generated if a control
12331 method invocation was used in an OperationRegion, Buffer, or
12332 Package declaration.  This was caused by the deferred parsing of
12333 the control method and thus the deferred creation of the internal
12334 method object.  The solution to this problem was to create the
12335 internal method object at the moment the method is encountered in
12336 the first pass - so that subsequent references to the method will
12337 able to obtain the required parameter count and thus properly
12338 parse the method invocation.  This problem presented itself as an
12339 AE_AML_INTERNAL during the pass 1 parse phase during table load.
12340
12341 Fixed a problem where the internal String object copy routine did
12342 not always allocate sufficient memory for the target String object
12343 and caused memory corruption.  This problem was seen to cause
12344 "Allocation already present in list!" errors as memory allocation
12345 became corrupted.
12346
12347 Implemented a new function for the evaluation of namespace objects
12348 that allows the specification of the allowable return object
12349 types.  This simplifies a lot of code that checks for a return
12350 object of one or more specific objects returned from the
12351 evaluation (such as _STA, etc.)  This may become and external
12352 function if it would be useful to ACPI-related drivers.
12353
12354 Completed another round of prefixing #defines with "ACPI_" for
12355 clarity.
12356
12357 Completed additional code restructuring to allow more modular
12358 linking for iASL compiler and AcpiExec.  Several files were split
12359 creating new files.  New files:  nsparse.c dsinit.c evgpe.c
12360
12361 Implemented an abort mechanism to terminate an executing control
12362 method via the AML debugger.  This feature is useful for debugging
12363 control methods that depend (wait) for specific hardware
12364 responses.
12365
12366 Code and Data Size: Current core subsystem library sizes are shown
12367 below.  These are the code and data sizes for the acpica.lib
12368 produced by the Microsoft Visual C++ 6.0 compiler, and these
12369 values do not include any ACPI driver or OSPM code.  The debug
12370 version of the code includes the debug output trace mechanism and
12371 has a much larger code and data size.  Note that these values will
12372 vary depending on the efficiency of the compiler and the compiler
12373 options used during generation.
12374
12375   Previous Release
12376     Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
12377     Debug Version:     152.9K Code,  63.3K Data,  216.2K Total
12378   Current Release:
12379     Non-Debug Version:  72.1K Code,   9.5K Data,   81.6K Total
12380     Debug Version:     152.7K Code,  62.7K Data,  215.4K Total
12381
12382
12383 2) iASL Compiler/Disassembler
12384
12385 Fixed a compiler code generation problem for "Interrupt" Resource
12386 Descriptors.  If specified in the ASL, the optional "Resource
12387 Source Index" and "Resource Source" fields were not inserted into
12388 the correct location within the AML resource descriptor, creating
12389 an invalid descriptor.
12390
12391 Fixed a disassembler problem for "Interrupt" resource descriptors.
12392 The optional "Resource Source Index" and "Resource Source" fields
12393 were ignored.
12394
12395
12396 ----------------------------------------
12397 22 November 2002.  Summary of changes for version 20021122.
12398
12399
12400 1) ACPI CA Core Subsystem:
12401
12402 Fixed a reported problem where an object stored to a Method Local
12403 or Arg was not copied to a new object during the store - the
12404 object pointer was simply copied to the Local/Arg.  This caused
12405 all subsequent operations on the Local/Arg to also affect the
12406 original source of the store operation.
12407
12408 Fixed a problem where a store operation to a Method Local or Arg
12409 was not completed properly if the Local/Arg contained a reference
12410 (from RefOf) to a named field.  The general-purpose store-to-
12411 namespace-node code is now used so that this case is handled
12412 automatically.
12413
12414 Fixed a problem where the internal object copy routine would cause
12415 a protection fault if the object being copied was a Package and
12416 contained either 1) a NULL package element or 2) a nested sub-
12417 package.
12418
12419 Fixed a problem with the GPE initialization that resulted from an
12420 ambiguity in the ACPI specification.  One section of the
12421 specification states that both the address and length of the GPE
12422 block must be zero if the block is not supported.  Another section
12423 implies that only the address need be zero if the block is not
12424 supported.  The code has been changed so that both the address and
12425 the length must be non-zero to indicate a valid GPE block (i.e.,
12426 if either the address or the length is zero, the GPE block is
12427 invalid.)
12428
12429 Code and Data Size: Current core subsystem library sizes are shown
12430 below.  These are the code and data sizes for the acpica.lib
12431 produced by the Microsoft Visual C++ 6.0 compiler, and these
12432 values do not include any ACPI driver or OSPM code.  The debug
12433 version of the code includes the debug output trace mechanism and
12434 has a much larger code and data size.  Note that these values will
12435 vary depending on the efficiency of the compiler and the compiler
12436 options used during generation.
12437
12438   Previous Release
12439     Non-Debug Version:  71.3K Code,   9.0K Data,   80.3K Total
12440     Debug Version:     152.7K Code,  63.2K Data,  215.5K Total
12441   Current Release:
12442     Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
12443     Debug Version:     152.9K Code,  63.3K Data,  216.2K Total
12444
12445
12446 2) Linux
12447
12448 Cleaned up EC driver. Exported an external EC read/write
12449 interface. By going through this, other drivers (most notably
12450 sonypi) will be able to serialize access to the EC.
12451
12452
12453 3) iASL Compiler/Disassembler
12454
12455 Implemented support to optionally generate include files for both
12456 ASM and C (the -i switch).  This simplifies BIOS development by
12457 automatically creating include files that contain external
12458 declarations for the symbols that are created within the
12459
12460 (optionally generated) ASM and C AML source files.
12461
12462
12463 ----------------------------------------
12464 15 November 2002.  Summary of changes for version 20021115.
12465
12466 1) ACPI CA Core Subsystem:
12467
12468 Fixed a memory leak problem where an error during resolution of
12469
12470 method arguments during a method invocation from another method
12471 failed to cleanup properly by deleting all successfully resolved
12472 argument objects.
12473
12474 Fixed a problem where the target of the Index() operator was not
12475 correctly constructed if the source object was a package.  This
12476 problem has not been detected because the use of a target operand
12477 with Index() is very rare.
12478
12479 Fixed a problem with the Index() operator where an attempt was
12480 made to delete the operand objects twice.
12481
12482 Fixed a problem where an attempt was made to delete an operand
12483 twice during execution of the CondRefOf() operator if the target
12484 did not exist.
12485
12486 Implemented the first of perhaps several internal create object
12487 functions that create and initialize a specific object type.  This
12488 consolidates duplicated code wherever the object is created, thus
12489 shrinking the size of the subsystem.
12490
12491 Implemented improved debug/error messages for errors that occur
12492 during nested method invocations.  All executing method pathnames
12493 are displayed (with the error) as the call stack is unwound - thus
12494 simplifying debug.
12495
12496 Fixed a problem introduced in the 10/02 release that caused
12497 premature deletion of a buffer object if a buffer was used as an
12498 ASL operand where an integer operand is required (Thus causing an
12499 implicit object conversion from Buffer to Integer.)  The change in
12500 the 10/02 release was attempting to fix a memory leak (albeit
12501 incorrectly.)
12502
12503 Code and Data Size: Current core subsystem library sizes are shown
12504 below.  These are the code and data sizes for the acpica.lib
12505 produced by the Microsoft Visual C++ 6.0 compiler, and these
12506 values do not include any ACPI driver or OSPM code.  The debug
12507 version of the code includes the debug output trace mechanism and
12508 has a much larger code and data size.  Note that these values will
12509 vary depending on the efficiency of the compiler and the compiler
12510 options used during generation.
12511
12512   Previous Release
12513     Non-Debug Version:  71.9K Code,   9.1K Data,   81.0K Total
12514     Debug Version:     153.1K Code,  63.3K Data,  216.4K Total
12515   Current Release:
12516     Non-Debug Version:  71.3K Code,   9.0K Data,   80.3K Total
12517     Debug Version:     152.7K Code,  63.2K Data,  215.5K Total
12518
12519
12520 2) Linux
12521
12522 Changed the implementation of the ACPI semaphores to use down()
12523 instead of down_interruptable().  It is important that the
12524 execution of ACPI control methods not be interrupted by signals.
12525 Methods must run to completion, or the system may be left in an
12526 unknown/unstable state.
12527
12528 Fixed a compilation error when CONFIG_SOFTWARE_SUSPEND is not set.
12529 (Shawn Starr)
12530
12531
12532 3) iASL Compiler/Disassembler
12533
12534
12535 Changed the default location of output files.  All output files
12536 are now placed in the current directory by default instead of in
12537 the directory of the source file.  This change may affect some
12538 existing makefiles, but it brings the behavior of the compiler in
12539 line with other similar tools.  The location of the output files
12540 can be overridden with the -p command line switch.
12541
12542
12543 ----------------------------------------
12544 11 November 2002.  Summary of changes for version 20021111.
12545
12546
12547 0) ACPI Specification 2.0B is released and is now available at:
12548 http://www.acpi.info/index.html
12549
12550
12551 1) ACPI CA Core Subsystem:
12552
12553 Implemented support for the ACPI 2.0 SMBus Operation Regions.
12554 This includes the early detection and handoff of the request to
12555 the SMBus region handler (avoiding all of the complex field
12556 support code), and support for the bidirectional return packet
12557 from an SMBus write operation.  This paves the way for the
12558 development of SMBus drivers in each host operating system.
12559
12560 Fixed a problem where the semaphore WAIT_FOREVER constant was
12561 defined as 32 bits, but must be 16 bits according to the ACPI
12562 specification.  This had the side effect of causing ASL
12563 Mutex/Event timeouts even though the ASL code requested a wait
12564 forever.  Changed all internal references to the ACPI timeout
12565 parameter to 16 bits to prevent future problems.  Changed the name
12566 of WAIT_FOREVER to ACPI_WAIT_FOREVER.
12567
12568 Code and Data Size: Current core subsystem library sizes are shown
12569 below.  These are the code and data sizes for the acpica.lib
12570 produced by the Microsoft Visual C++ 6.0 compiler, and these
12571 values do not include any ACPI driver or OSPM code.  The debug
12572 version of the code includes the debug output trace mechanism and
12573 has a much larger code and data size.  Note that these values will
12574 vary depending on the efficiency of the compiler and the compiler
12575 options used during generation.
12576
12577   Previous Release
12578     Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
12579     Debug Version:     152.3K Code,  63.0K Data,  215.3K Total
12580   Current Release:
12581     Non-Debug Version:  71.9K Code,   9.1K Data,   81.0K Total
12582     Debug Version:     153.1K Code,  63.3K Data,  216.4K Total
12583
12584
12585 2) Linux
12586
12587 Module loading/unloading fixes (John Cagle)
12588
12589
12590 3) iASL Compiler/Disassembler
12591
12592 Added support for the SMBBlockProcessCall keyword (ACPI 2.0)
12593
12594 Implemented support for the disassembly of all SMBus protocol
12595 keywords (SMBQuick, SMBWord, etc.)
12596
12597 ----------------------------------------
12598 01 November 2002.  Summary of changes for version 20021101.
12599
12600
12601 1) ACPI CA Core Subsystem:
12602
12603 Fixed a problem where platforms that have a GPE1 block but no GPE0
12604 block were not handled correctly.  This resulted in a "GPE
12605 overlap" error message.  GPE0 is no longer required.
12606
12607 Removed code added in the previous release that inserted nodes
12608 into the namespace in alphabetical order.  This caused some side-
12609 effects on various machines.  The root cause of the problem is
12610 still under investigation since in theory, the internal ordering
12611 of the namespace nodes should not matter.
12612
12613
12614 Enhanced error reporting for the case where a named object is not
12615 found during control method execution.  The full ACPI namepath
12616 (name reference) of the object that was not found is displayed in
12617 this case.
12618
12619 Note: as a result of the overhaul of the namespace object types in
12620 the previous release, the namespace nodes for the predefined
12621 scopes (_TZ, _PR, etc.) are now of the type ACPI_TYPE_LOCAL_SCOPE
12622 instead of ACPI_TYPE_ANY.  This simplifies the namespace
12623 management code but may affect code that walks the namespace tree
12624 looking for specific object types.
12625
12626 Code and Data Size: Current core subsystem library sizes are shown
12627 below.  These are the code and data sizes for the acpica.lib
12628 produced by the Microsoft Visual C++ 6.0 compiler, and these
12629 values do not include any ACPI driver or OSPM code.  The debug
12630 version of the code includes the debug output trace mechanism and
12631 has a much larger code and data size.  Note that these values will
12632 vary depending on the efficiency of the compiler and the compiler
12633 options used during generation.
12634
12635   Previous Release
12636     Non-Debug Version:  70.7K Code,   8.6K Data,   79.3K Total
12637     Debug Version:     151.7K Code,  62.4K Data,  214.1K Total
12638   Current Release:
12639     Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
12640     Debug Version:     152.3K Code,  63.0K Data,  215.3K Total
12641
12642
12643 2) Linux
12644
12645 Fixed a problem introduced in the previous release where the
12646 Processor and Thermal objects were not recognized and installed in
12647 /proc.  This was related to the scope type change described above.
12648
12649
12650 3) iASL Compiler/Disassembler
12651
12652 Implemented the -g option to get all of the required ACPI tables
12653 from the registry and save them to files (Windows version of the
12654 compiler only.)  The required tables are the FADT, FACS, and DSDT.
12655
12656 Added ACPI table checksum validation during table disassembly in
12657 order to catch corrupted tables.
12658
12659
12660 ----------------------------------------
12661 22 October 2002.  Summary of changes for version 20021022.
12662
12663 1) ACPI CA Core Subsystem:
12664
12665 Implemented a restriction on the Scope operator that the target
12666 must already exist in the namespace at the time the operator is
12667 encountered (during table load or method execution).  In other
12668 words, forward references are not allowed and Scope() cannot
12669 create a new object. This changes the previous behavior where the
12670 interpreter would create the name if not found.  This new behavior
12671 correctly enables the search-to-root algorithm during namespace
12672 lookup of the target name.  Because of this upsearch, this fixes
12673 the known Compaq _SB_.OKEC problem and makes both the AML
12674 interpreter and iASL compiler compatible with other ACPI
12675 implementations.
12676
12677 Completed a major overhaul of the internal ACPI object types for
12678 the ACPI Namespace and the associated operand objects.  Many of
12679 these types had become obsolete with the introduction of the two-
12680 pass namespace load.  This cleanup simplifies the code and makes
12681 the entire namespace load mechanism much clearer and easier to
12682 understand.
12683
12684 Improved debug output for tracking scope opening/closing to help
12685 diagnose scoping issues.  The old scope name as well as the new
12686 scope name are displayed.  Also improved error messages for
12687 problems with ASL Mutex objects and error messages for GPE
12688 problems.
12689
12690 Cleaned up the namespace dump code, removed obsolete code.
12691
12692 All string output (for all namespace/object dumps) now uses the
12693 common ACPI string output procedure which handles escapes properly
12694 and does not emit non-printable characters.
12695
12696 Fixed some issues with constants in the 64-bit version of the
12697 local C library (utclib.c)
12698
12699
12700 2) Linux
12701
12702 EC Driver:  No longer attempts to acquire the Global Lock at
12703 interrupt level.
12704
12705
12706 3) iASL Compiler/Disassembler
12707
12708 Implemented ACPI 2.0B grammar change that disallows all Type 1 and
12709 2 opcodes outside of a control method.  This means that the
12710 "executable" operators (versus the "namespace" operators) cannot
12711 be used at the table level; they can only be used within a control
12712 method.
12713
12714 Implemented the restriction on the Scope() operator where the
12715 target must already exist in the namespace at the time the
12716 operator is encountered (during ASL compilation). In other words,
12717 forward references are not allowed and Scope() cannot create a new
12718 object.  This makes the iASL compiler compatible with other ACPI
12719 implementations and makes the Scope() implementation adhere to the
12720 ACPI specification.
12721
12722 Fixed a problem where namepath optimization for the Alias operator
12723 was optimizing the wrong path (of the two namepaths.)  This caused
12724 a "Missing alias link" error message.
12725
12726 Fixed a problem where an "unknown reserved name" warning could be
12727 incorrectly generated for names like "_SB" when the trailing
12728 underscore is not used in the original ASL.
12729
12730 Fixed a problem where the reserved name check did not handle
12731 NamePaths with multiple NameSegs correctly.  The first nameseg of
12732 the NamePath was examined instead of the last NameSeg.
12733
12734
12735 ----------------------------------------
12736
12737 02 October 2002.  Summary of changes for this release.
12738
12739
12740 1) ACPI CA Core Subsystem version 20021002:
12741
12742 Fixed a problem where a store/copy of a string to an existing
12743 string did not always set the string length properly in the String
12744 object.
12745
12746 Fixed a reported problem with the ToString operator where the
12747 behavior was identical to the ToHexString operator instead of just
12748 simply converting a raw buffer to a string data type.
12749
12750 Fixed a problem where CopyObject and the other "explicit"
12751 conversion operators were not updating the internal namespace node
12752 type as part of the store operation.
12753
12754 Fixed a memory leak during implicit source operand conversion
12755 where the original object was not deleted if it was converted to a
12756 new object of a different type.
12757
12758 Enhanced error messages for all problems associated with namespace
12759 lookups.  Common procedure generates and prints the lookup name as
12760 well as the formatted status.
12761
12762 Completed implementation of a new design for the Alias support
12763 within the namespace.  The existing design did not handle the case
12764 where a new object was assigned to one of the two names due to the
12765 use of an explicit conversion operator, resulting in the two names
12766 pointing to two different objects.  The new design simply points
12767 the Alias name to the original name node - not to the object.
12768 This results in a level of indirection that must be handled in the
12769 name resolution mechanism.
12770
12771 Code and Data Size: Current core subsystem library sizes are shown
12772 below.  These are the code and data sizes for the acpica.lib
12773 produced by the Microsoft Visual C++ 6.0 compiler, and these
12774 values do not include any ACPI driver or OSPM code.  The debug
12775 version of the code includes the debug output trace mechanism and
12776 has a larger code and data size.  Note that these values will vary
12777 depending on the efficiency of the compiler and the compiler
12778 options used during generation.
12779
12780   Previous Release
12781     Non-Debug Version:  69.6K Code,   8.3K Data,   77.9K Total
12782     Debug Version:     150.0K Code,  61.7K Data,  211.7K Total
12783   Current Release:
12784     Non-Debug Version:  70.7K Code,   8.6K Data,   79.3K Total
12785     Debug Version:     151.7K Code,  62.4K Data,  214.1K Total
12786
12787
12788 2) Linux
12789
12790 Initialize thermal driver's timer before it is used. (Knut
12791 Neumann)
12792
12793 Allow handling negative celsius values. (Kochi Takayoshi)
12794
12795 Fix thermal management and make trip points. R/W (Pavel Machek)
12796
12797 Fix /proc/acpi/sleep. (P. Christeas)
12798
12799 IA64 fixes. (David Mosberger)
12800
12801 Fix reversed logic in blacklist code. (Sergio Monteiro Basto)
12802
12803 Replace ACPI_DEBUG define with ACPI_DEBUG_OUTPUT. (Dominik
12804 Brodowski)
12805
12806
12807 3) iASL Compiler/Disassembler
12808
12809 Clarified some warning/error messages.
12810
12811
12812 ----------------------------------------
12813 18 September 2002.  Summary of changes for this release.
12814
12815
12816 1) ACPI CA Core Subsystem version 20020918:
12817
12818 Fixed a reported problem with reference chaining (via the Index()
12819 and RefOf() operators) in the ObjectType() and SizeOf() operators.
12820 The definition of these operators includes the dereferencing of
12821 all chained references to return information on the base object.
12822
12823 Fixed a problem with stores to indexed package elements - the
12824 existing code would not complete the store if an "implicit
12825 conversion" was not performed.  In other words, if the existing
12826 object (package element) was to be replaced completely, the code
12827 didn't handle this case.
12828
12829 Relaxed typechecking on the ASL "Scope" operator to allow the
12830 target name to refer to an object of type Integer, String, or
12831 Buffer, in addition to the scoping object types (Device,
12832 predefined Scopes, Processor, PowerResource, and ThermalZone.)
12833 This allows existing AML code that has workarounds for a bug in
12834 Windows to function properly.  A warning is issued, however.  This
12835 affects both the AML interpreter and the iASL compiler. Below is
12836 an example of this type of ASL code:
12837
12838       Name(DEB,0x00)
12839       Scope(DEB)
12840       {
12841
12842 Fixed some reported problems with 64-bit integer support in the
12843 local implementation of C library functions (clib.c)
12844
12845
12846 2) Linux
12847
12848 Use ACPI fix map region instead of IOAPIC region, since it is
12849 undefined in non-SMP.
12850
12851 Ensure that the SCI has the proper polarity and trigger, even on
12852 systems that do not have an interrupt override entry in the MADT.
12853
12854 2.5 big driver reorganization (Pat Mochel)
12855
12856 Use early table mapping code from acpitable.c (Andi Kleen)
12857
12858 New blacklist entries (Andi Kleen)
12859
12860 Blacklist improvements. Split blacklist code out into a separate
12861 file. Move checking the blacklist to very early. Previously, we
12862 would use ACPI tables, and then halfway through init, check the
12863 blacklist -- too late. Now, it's early enough to completely fall-
12864 back to non-ACPI.
12865
12866
12867 3) iASL Compiler/Disassembler version 20020918:
12868
12869 Fixed a problem where the typechecking code didn't know that an
12870 alias could point to a method.  In other words, aliases were not
12871 being dereferenced during typechecking.
12872
12873
12874 ----------------------------------------
12875 29 August 2002.  Summary of changes for this release.
12876
12877 1) ACPI CA Core Subsystem Version 20020829:
12878
12879 If the target of a Scope() operator already exists, it must be an
12880 object type that actually opens a scope -- such as a Device,
12881 Method, Scope, etc.  This is a fatal runtime error.  Similar error
12882 check has been added to the iASL compiler also.
12883
12884 Tightened up the namespace load to disallow multiple names in the
12885 same scope.  This previously was allowed if both objects were of
12886 the same type.  (i.e., a lookup was the same as entering a new
12887 name).
12888
12889
12890 2) Linux
12891
12892 Ensure that the ACPI interrupt has the proper trigger and
12893 polarity.
12894
12895 local_irq_disable is extraneous. (Matthew Wilcox)
12896
12897 Make "acpi=off" actually do what it says, and not use the ACPI
12898 interpreter *or* the tables.
12899
12900 Added arch-neutral support for parsing SLIT and SRAT tables (Kochi
12901 Takayoshi)
12902
12903
12904 3) iASL Compiler/Disassembler  Version 20020829:
12905
12906 Implemented namepath optimization for name declarations.  For
12907 example, a declaration like "Method (\_SB_.ABCD)" would get
12908 optimized to "Method (ABCD)" if the declaration is within the
12909 \_SB_ scope.  This optimization is in addition to the named
12910 reference path optimization first released in the previous
12911 version. This would seem to complete all possible optimizations
12912 for namepaths within the ASL/AML.
12913
12914 If the target of a Scope() operator already exists, it must be an
12915 object type that actually opens a scope -- such as a Device,
12916 Method, Scope, etc.
12917
12918 Implemented a check and warning for unreachable code in the same
12919 block below a Return() statement.
12920
12921 Fixed a problem where the listing file was not generated if the
12922 compiler aborted if the maximum error count was exceeded (200).
12923
12924 Fixed a problem where the typechecking of method return values was
12925 broken.  This includes the check for a return value when the
12926 method is invoked as a TermArg (a return value is expected.)
12927
12928 Fixed a reported problem where EOF conditions during a quoted
12929 string or comment caused a fault.
12930
12931
12932 ----------------------------------------
12933 15 August 2002.  Summary of changes for this release.
12934
12935 1) ACPI CA Core Subsystem Version 20020815:
12936
12937 Fixed a reported problem where a Store to a method argument that
12938 contains a reference did not perform the indirect store correctly.
12939 This problem was created during the conversion to the new
12940 reference object model - the indirect store to a method argument
12941 code was not updated to reflect the new model.
12942
12943 Reworked the ACPI mode change code to better conform to ACPI 2.0,
12944 handle corner cases, and improve code legibility (Kochi Takayoshi)
12945
12946 Fixed a problem with the pathname parsing for the carat (^)
12947 prefix.  The heavy use of the carat operator by the new namepath
12948 optimization in the iASL compiler uncovered a problem with the AML
12949 interpreter handling of this prefix.  In the case where one or
12950 more carats precede a single nameseg, the nameseg was treated as
12951 standalone and the search rule (to root) was inadvertently
12952 applied.  This could cause both the iASL compiler and the
12953 interpreter to find the wrong object or to miss the error that
12954 should occur if the object does not exist at that exact pathname.
12955
12956 Found and fixed the problem where the HP Pavilion DSDT would not
12957 load.  This was a relatively minor tweak to the table loading code
12958 (a problem caused by the unexpected encounter with a method
12959 invocation not within a control method), but it does not solve the
12960 overall issue of the execution of AML code at the table level.
12961 This investigation is still ongoing.
12962
12963 Code and Data Size: Current core subsystem library sizes are shown
12964 below.  These are the code and data sizes for the acpica.lib
12965 produced by the Microsoft Visual C++ 6.0 compiler, and these
12966 values do not include any ACPI driver or OSPM code.  The debug
12967 version of the code includes the debug output trace mechanism and
12968 has a larger code and data size.  Note that these values will vary
12969 depending on the efficiency of the compiler and the compiler
12970 options used during generation.
12971
12972   Previous Release
12973     Non-Debug Version:  69.1K Code,   8.2K Data,   77.3K Total
12974     Debug Version:     149.4K Code,  61.6K Data,  211.0K Total
12975   Current Release:
12976     Non-Debug Version:  69.6K Code,   8.3K Data,   77.9K Total
12977     Debug Version:     150.0K Code,  61.7K Data,  211.7K Total
12978
12979
12980 2) Linux
12981
12982 Remove redundant slab.h include (Brad Hards)
12983
12984 Fix several bugs in thermal.c (Herbert Nachtnebel)
12985
12986 Make CONFIG_ACPI_BOOT work properly (Pavel Machek)
12987
12988 Change acpi_system_suspend to use updated irq functions (Pavel
12989 Machek)
12990
12991 Export acpi_get_firmware_table (Matthew Wilcox)
12992
12993 Use proper root proc entry for ACPI (Kochi Takayoshi)
12994
12995 Fix early-boot table parsing (Bjorn Helgaas)
12996
12997
12998 3) iASL Compiler/Disassembler
12999
13000 Reworked the compiler options to make them more consistent and to
13001 use two-letter options where appropriate.  We were running out of
13002 sensible letters.   This may break some makefiles, so check the
13003 current options list by invoking the compiler with no parameters.
13004
13005 Completed the design and implementation of the ASL namepath
13006 optimization option for the compiler.  This option optimizes all
13007 references to named objects to the shortest possible path.  The
13008 first attempt tries to utilize a single nameseg (4 characters) and
13009 the "search-to-root" algorithm used by the interpreter.  If that
13010 cannot be used (because either the name is not in the search path
13011 or there is a conflict with another object with the same name),
13012 the pathname is optimized using the carat prefix (usually a
13013 shorter string than specifying the entire path from the root.)
13014
13015 Implemented support to obtain the DSDT from the Windows registry
13016 (when the disassembly option is specified with no input file).
13017 Added this code as the implementation for AcpiOsTableOverride in
13018 the Windows OSL.  Migrated the 16-bit code (used in the AcpiDump
13019 utility) to scan memory for the DSDT to the AcpiOsTableOverride
13020 function in the DOS OSL to make the disassembler truly OS
13021 independent.
13022
13023 Implemented a new option to disassemble and compile in one step.
13024 When used without an input filename, this option will grab the
13025 DSDT from the local machine, disassemble it, and compile it in one
13026 step.
13027
13028 Added a warning message for invalid escapes (a backslash followed
13029 by any character other than the allowable escapes).  This catches
13030 the quoted string error "\_SB_" (which should be "\\_SB_" ).
13031
13032 Also, there are numerous instances in the ACPI specification where
13033 this error occurs.
13034
13035 Added a compiler option to disable all optimizations.  This is
13036 basically the "compatibility mode" because by using this option,
13037 the AML code will come out exactly the same as other ASL
13038 compilers.
13039
13040 Added error messages for incorrectly ordered dependent resource
13041 functions.  This includes: missing EndDependentFn macro at end of
13042 dependent resource list, nested dependent function macros (both
13043 start and end), and missing StartDependentFn macro.  These are
13044 common errors that should be caught at compile time.
13045
13046 Implemented _OSI support for the disassembler and compiler.  _OSI
13047 must be included in the namespace for proper disassembly (because
13048 the disassembler must know the number of arguments.)
13049
13050 Added an "optimization" message type that is optional (off by
13051 default).  This message is used for all optimizations - including
13052 constant folding, integer optimization, and namepath optimization.
13053
13054 ----------------------------------------
13055 25 July 2002.  Summary of changes for this release.
13056
13057
13058 1) ACPI CA Core Subsystem Version 20020725:
13059
13060 The AML Disassembler has been enhanced to produce compilable ASL
13061 code and has been integrated into the iASL compiler (see below) as
13062 well as the single-step disassembly for the AML debugger and the
13063 disassembler for the AcpiDump utility.  All ACPI 2.0A opcodes,
13064 resource templates and macros are fully supported.  The
13065 disassembler has been tested on over 30 different AML files,
13066 producing identical AML when the resulting disassembled ASL file
13067 is recompiled with the same ASL compiler.
13068
13069 Modified the Resource Manager to allow zero interrupts and zero
13070 dma channels during the GetCurrentResources call.  This was
13071 causing problems on some platforms.
13072
13073 Added the AcpiOsRedirectOutput interface to the OSL to simplify
13074 output redirection for the AcpiOsPrintf and AcpiOsVprintf
13075 interfaces.
13076
13077 Code and Data Size: Current core subsystem library sizes are shown
13078 below.  These are the code and data sizes for the acpica.lib
13079 produced by the Microsoft Visual C++ 6.0 compiler, and these
13080 values do not include any ACPI driver or OSPM code.  The debug
13081 version of the code includes the debug output trace mechanism and
13082 has a larger code and data size.  Note that these values will vary
13083 depending on the efficiency of the compiler and the compiler
13084 options used during generation.
13085
13086   Previous Release
13087     Non-Debug Version:  68.7K Code,   7.4K Data,   76.1K Total
13088     Debug Version:     142.9K Code,  58.7K Data,  201.6K Total
13089   Current Release:
13090     Non-Debug Version:  69.1K Code,   8.2K Data,   77.3K Total
13091     Debug Version:     149.4K Code,  61.6K Data,  211.0K Total
13092
13093
13094 2) Linux
13095
13096 Fixed a panic in the EC driver (Dominik Brodowski)
13097
13098 Implemented checksum of the R/XSDT itself during Linux table scan
13099 (Richard Schaal)
13100
13101
13102 3) iASL compiler
13103
13104 The AML disassembler is integrated into the compiler.  The "-d"
13105 option invokes the disassembler  to completely disassemble an
13106 input AML file, producing as output a text ASL file with the
13107 extension ".dsl" (to avoid name collisions with existing .asl
13108 source files.)  A future enhancement will allow the disassembler
13109 to obtain the BIOS DSDT from the registry under Windows.
13110
13111 Fixed a problem with the VendorShort and VendorLong resource
13112 descriptors where an invalid AML sequence was created.
13113
13114 Implemented a fix for BufferData term in the ASL parser.  It was
13115 inadvertently defined twice, allowing invalid syntax to pass and
13116 causing reduction conflicts.
13117
13118 Fixed a problem where the Ones opcode could get converted to a
13119 value of zero if "Ones" was used where a byte, word or dword value
13120 was expected.  The 64-bit value is now truncated to the correct
13121 size with the correct value.
13122
13123
13124
13125 ----------------------------------------
13126 02 July 2002.  Summary of changes for this release.
13127
13128
13129 1) ACPI CA Core Subsystem Version 20020702:
13130
13131 The Table Manager code has been restructured to add several new
13132 features.  Tables that are not required by the core subsystem
13133 (other than the FADT, DSDT, FACS, PSDTs, etc.) are no longer
13134 validated in any way and are returned from AcpiGetFirmwareTable if
13135 requested.  The AcpiOsTableOverride interface is now called for
13136 each table that is loaded by the subsystem in order to allow the
13137 host to override any table it chooses.  Previously, only the DSDT
13138 could be overridden.  Added one new files, tbrsdt.c and
13139 tbgetall.c.
13140
13141 Fixed a problem with the conversion of internal package objects to
13142 external objects (when a package is returned from a control
13143 method.)  The return buffer length was set to zero instead of the
13144 proper length of the package object.
13145
13146 Fixed a reported problem with the use of the RefOf and DeRefOf
13147 operators when passing reference arguments to control methods.  A
13148 new type of Reference object is used internally for references
13149 produced by the RefOf operator.
13150
13151 Added additional error messages in the Resource Manager to explain
13152 AE_BAD_DATA errors when they occur during resource parsing.
13153
13154 Split the AcpiEnableSubsystem into two primitives to enable a
13155 finer granularity initialization sequence.  These two calls should
13156 be called in this order: AcpiEnableSubsystem (flags),
13157 AcpiInitializeObjects (flags).  The flags parameter remains the
13158 same.
13159
13160
13161 2) Linux
13162
13163 Updated the ACPI utilities module to understand the new style of
13164 fully resolved package objects that are now returned from the core
13165 subsystem.  This eliminates errors of the form:
13166
13167     ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PPB_._PRT]
13168     acpi_utils-0430 [145] acpi_evaluate_reference:
13169         Invalid element in package (not a device reference)
13170
13171 The method evaluation utility uses the new buffer allocation
13172 scheme instead of calling AcpiEvaluate Object twice.
13173
13174 Added support for ECDT. This allows the use of the Embedded
13175
13176 Controller before the namespace has been fully initialized, which
13177 is necessary for ACPI 2.0 support, and for some laptops to
13178 initialize properly. (Laptops using ECDT are still rare, so only
13179 limited testing was performed of the added functionality.)
13180
13181 Fixed memory leaks in the EC driver.
13182
13183 Eliminated a brittle code structure in acpi_bus_init().
13184
13185 Eliminated the acpi_evaluate() helper function in utils.c. It is
13186 no longer needed since acpi_evaluate_object can optionally
13187 allocate memory for the return object.
13188
13189 Implemented fix for keyboard hang when getting battery readings on
13190 some systems (Stephen White)
13191
13192 PCI IRQ routing update (Dominik Brodowski)
13193
13194 Fix an ifdef to allow compilation on UP with LAPIC but no IOAPIC
13195 support
13196
13197 ----------------------------------------
13198 11 June 2002.  Summary of changes for this release.
13199
13200
13201 1) ACPI CA Core Subsystem Version 20020611:
13202
13203 Fixed a reported problem where constants such as Zero and One
13204 appearing within _PRT packages were not handled correctly within
13205 the resource manager code.  Originally reported against the ASL
13206 compiler because the code generator now optimizes integers to
13207 their minimal AML representation (i.e. AML constants if possible.)
13208 The _PRT code now handles all AML constant opcodes correctly
13209 (Zero, One, Ones, Revision).
13210
13211 Fixed a problem with the Concatenate operator in the AML
13212 interpreter where a buffer result object was incorrectly marked as
13213 not fully evaluated, causing a run-time error of AE_AML_INTERNAL.
13214
13215 All package sub-objects are now fully resolved before they are
13216 returned from the external ACPI interfaces.  This means that name
13217 strings are resolved to object handles, and constant operators
13218 (Zero, One, Ones, Revision) are resolved to Integers.
13219
13220 Implemented immediate resolution of the AML Constant opcodes
13221 (Zero, One, Ones, Revision) to Integer objects upon detection
13222 within the AML stream. This has simplified and reduced the
13223 generated code size of the subsystem by eliminating about 10
13224 switch statements for these constants (which previously were
13225 contained in Reference objects.)  The complicating issues are that
13226 the Zero opcode is used as a "placeholder" for unspecified
13227 optional target operands and stores to constants are defined to be
13228 no-ops.
13229
13230 Code and Data Size: Current core subsystem library sizes are shown
13231 below. These are the code and data sizes for the acpica.lib
13232 produced by the Microsoft Visual C++ 6.0 compiler, and these
13233 values do not include any ACPI driver or OSPM code.  The debug
13234 version of the code includes the debug output trace mechanism and
13235 has a larger code and data size.  Note that these values will vary
13236 depending on the efficiency of the compiler and the compiler
13237 options used during generation.
13238
13239   Previous Release
13240     Non-Debug Version:  69.3K Code,   7.4K Data,   76.7K Total
13241     Debug Version:     143.8K Code,  58.8K Data,  202.6K Total
13242   Current Release:
13243     Non-Debug Version:  68.7K Code,   7.4K Data,   76.1K Total
13244     Debug Version:     142.9K Code,  58.7K Data,  201.6K Total
13245
13246
13247 2) Linux
13248
13249
13250 Added preliminary support for obtaining _TRA data for PCI root
13251 bridges (Bjorn Helgaas).
13252
13253
13254 3) iASL Compiler Version X2046:
13255
13256 Fixed a problem where the "_DDN" reserved name was defined to be a
13257 control method with one argument.  There are no arguments, and
13258 _DDN does not have to be a control method.
13259
13260 Fixed a problem with the Linux version of the compiler where the
13261 source lines printed with error messages were the wrong lines.
13262 This turned out to be the "LF versus CR/LF" difference between
13263 Windows and Unix.  This appears to be the longstanding issue
13264 concerning listing output and error messages.
13265
13266 Fixed a problem with the Linux version of compiler where opcode
13267 names within error messages were wrong.  This was caused by a
13268 slight difference in the output of the Flex tool on Linux versus
13269 Windows.
13270
13271 Fixed a problem with the Linux compiler where the hex output files
13272 contained some garbage data caused by an internal buffer overrun.
13273
13274
13275 ----------------------------------------
13276 17 May 2002.  Summary of changes for this release.
13277
13278
13279 1) ACPI CA Core Subsystem Version 20020517:
13280
13281 Implemented a workaround to an BIOS bug discovered on the HP
13282 OmniBook where the FADT revision number and the table size are
13283 inconsistent (ACPI 2.0 revision vs. ACPI 1.0 table size).  The new
13284 behavior is to fallback to using only the ACPI 1.0 fields of the
13285 FADT if the table is too small to be a ACPI 2.0 table as claimed
13286 by the revision number.  Although this is a BIOS bug, this is a
13287 case where the workaround is simple enough and with no side
13288 effects, so it seemed prudent to add it.  A warning message is
13289 issued, however.
13290
13291 Implemented minimum size checks for the fixed-length ACPI tables -
13292 - the FADT and FACS, as well as consistency checks between the
13293 revision number and the table size.
13294
13295 Fixed a reported problem in the table override support where the
13296 new table pointer was incorrectly treated as a physical address
13297 instead of a logical address.
13298
13299 Eliminated the use of the AE_AML_ERROR exception and replaced it
13300 with more descriptive codes.
13301
13302 Fixed a problem where an exception would occur if an ASL Field was
13303 defined with no named Field Units underneath it (used by some
13304 index fields).
13305
13306 Code and Data Size: Current core subsystem library sizes are shown
13307 below.  These are the code and data sizes for the acpica.lib
13308 produced by the Microsoft Visual C++ 6.0 compiler, and these
13309 values do not include any ACPI driver or OSPM code.  The debug
13310 version of the code includes the debug output trace mechanism and
13311 has a larger code and data size.  Note that these values will vary
13312 depending on the efficiency of the compiler and the compiler
13313 options used during generation.
13314
13315   Previous Release
13316     Non-Debug Version:  68.8K Code,   7.1K Data,   75.9K Total
13317     Debug Version:     142.9K Code,  58.4K Data,  201.3K Total
13318   Current Release:
13319     Non-Debug Version:  69.3K Code,   7.4K Data,   76.7K Total
13320     Debug Version:     143.8K Code,  58.8K Data,  202.6K Total
13321
13322
13323
13324 2) Linux
13325
13326 Much work done on ACPI init (MADT and PCI IRQ routing support).
13327 (Paul D. and Dominik Brodowski)
13328
13329 Fix PCI IRQ-related panic on boot (Sam Revitch)
13330
13331 Set BM_ARB_DIS when entering a sleep state (Ducrot Bruno)
13332
13333 Fix "MHz" typo (Dominik Brodowski)
13334
13335 Fix RTC year 2000 issue (Dominik Brodowski)
13336
13337 Preclude multiple button proc entries (Eric Brunet)
13338
13339 Moved arch-specific code out of include/platform/aclinux.h
13340
13341 3) iASL Compiler Version X2044:
13342
13343 Implemented error checking for the string used in the EISAID macro
13344 (Usually used in the definition of the _HID object.)  The code now
13345 strictly enforces the PnP format - exactly 7 characters, 3
13346 uppercase letters and 4 hex digits.
13347
13348 If a raw string is used in the definition of the _HID object
13349 (instead of the EISAID macro), the string must contain all
13350 alphanumeric characters (e.g., "*PNP0011" is not allowed because
13351 of the asterisk.)
13352
13353 Implemented checking for invalid use of ACPI reserved names for
13354 most of the name creation operators (Name, Device, Event, Mutex,
13355 OperationRegion, PowerResource, Processor, and ThermalZone.)
13356 Previously, this check was only performed for control methods.
13357
13358 Implemented an additional check on the Name operator to emit an
13359 error if a reserved name that must be implemented in ASL as a
13360 control method is used.  We know that a reserved name must be a
13361 method if it is defined with input arguments.
13362
13363 The warning emitted when a namespace object reference is not found
13364 during the cross reference phase has been changed into an error.
13365 The "External" directive should be used for names defined in other
13366 modules.
13367
13368
13369 4) Tools and Utilities
13370
13371 The 16-bit tools (adump16 and aexec16) have been regenerated and
13372 tested.
13373
13374 Fixed a problem with the output of both acpidump and adump16 where
13375 the indentation of closing parentheses and brackets was not
13376
13377 aligned properly with the parent block.
13378
13379
13380 ----------------------------------------
13381 03 May 2002.  Summary of changes for this release.
13382
13383
13384 1) ACPI CA Core Subsystem Version 20020503:
13385
13386 Added support a new OSL interface that allows the host operating
13387
13388 system software to override the DSDT found in the firmware -
13389 AcpiOsTableOverride.  With this interface, the OSL can examine the
13390 version of the firmware DSDT and replace it with a different one
13391 if desired.
13392
13393 Added new external interfaces for accessing ACPI registers from
13394 device drivers and other system software - AcpiGetRegister and
13395 AcpiSetRegister.  This was simply an externalization of the
13396 existing AcpiHwBitRegister interfaces.
13397
13398 Fixed a regression introduced in the previous build where the
13399 ASL/AML CreateField operator always returned an error,
13400 "destination must be a NS Node".
13401
13402 Extended the maximum time (before failure) to successfully enable
13403 ACPI mode to 3 seconds.
13404
13405 Code and Data Size: Current core subsystem library sizes are shown
13406 below.  These are the code and data sizes for the acpica.lib
13407 produced by the Microsoft Visual C++ 6.0 compiler, and these
13408 values do not include any ACPI driver or OSPM code.  The debug
13409 version of the code includes the debug output trace mechanism and
13410 has a larger code and data size.  Note that these values will vary
13411 depending on the efficiency of the compiler and the compiler
13412 options used during generation.
13413
13414   Previous Release
13415     Non-Debug Version:  68.5K Code,   7.0K Data,   75.5K Total
13416     Debug Version:     142.4K Code,  58.3K Data,  200.7K Total
13417   Current Release:
13418     Non-Debug Version:  68.8K Code,   7.1K Data,   75.9K Total
13419     Debug Version:     142.9K Code,  58.4K Data,  201.3K Total
13420
13421
13422 2) Linux
13423
13424 Enhanced ACPI init code for SMP. We are now fully MPS and $PIR-
13425 free. While 3 out of 4 of our in-house systems work fine, the last
13426 one still hangs when testing the LAPIC timer.
13427
13428 Renamed many files in 2.5 kernel release to omit "acpi_" from the
13429 name.
13430
13431 Added warning on boot for Presario 711FR.
13432
13433 Sleep improvements (Pavel Machek)
13434
13435 ACPI can now be built without CONFIG_PCI enabled.
13436
13437 IA64: Fixed memory map functions (JI Lee)
13438
13439
13440 3) iASL Compiler Version X2043:
13441
13442 Added support to allow the compiler to be integrated into the MS
13443 VC++ development environment for one-button compilation of single
13444 files or entire projects -- with error-to-source-line mapping.
13445
13446 Implemented support for compile-time constant folding for the
13447 Type3, Type4, and Type5 opcodes first defined in the ACPI 2.0
13448 specification.  This allows the ASL writer to use expressions
13449 instead of Integer/Buffer/String constants in terms that must
13450 evaluate to constants at compile time and will also simplify the
13451 emitted AML in any such sub-expressions that can be folded
13452 (evaluated at compile-time.)  This increases the size of the
13453 compiler significantly because a portion of the ACPI CA AML
13454 interpreter is included within the compiler in order to pre-
13455 evaluate constant expressions.
13456
13457
13458 Fixed a problem with the "Unicode" ASL macro that caused the
13459 compiler to fault.  (This macro is used in conjunction with the
13460 _STR reserved name.)
13461
13462 Implemented an AML opcode optimization to use the Zero, One, and
13463 Ones opcodes where possible to further reduce the size of integer
13464 constants and thus reduce the overall size of the generated AML
13465 code.
13466
13467 Implemented error checking for new reserved terms for ACPI version
13468 2.0A.
13469
13470 Implemented the -qr option to display the current list of ACPI
13471 reserved names known to the compiler.
13472
13473 Implemented the -qc option to display the current list of ASL
13474 operators that are allowed within constant expressions and can
13475 therefore be folded at compile time if the operands are constants.
13476
13477
13478 4) Documentation
13479
13480 Updated the Programmer's Reference for new interfaces, data types,
13481 and memory allocation model options.
13482
13483 Updated the iASL Compiler User Reference to apply new format and
13484 add information about new features and options.
13485
13486 ----------------------------------------
13487 19 April 2002.  Summary of changes for this release.
13488
13489 1) ACPI CA Core Subsystem Version 20020419:
13490
13491 The source code base for the Core Subsystem has been completely
13492 cleaned with PC-lint (FlexLint) for both 32-bit and 64-bit
13493 versions.  The Lint option files used are included in the
13494 /acpi/generate/lint directory.
13495
13496 Implemented enhanced status/error checking across the entire
13497 Hardware manager subsystem.  Any hardware errors (reported from
13498 the OSL) are now bubbled up and will abort a running control
13499 method.
13500
13501
13502 Fixed a problem where the per-ACPI-table integer width (32 or 64)
13503 was stored only with control method nodes, causing a fault when
13504 non-control method code was executed during table loading.  The
13505 solution implemented uses a global variable to indicate table
13506 width across the entire ACPI subsystem.  Therefore, ACPI CA does
13507 not support mixed integer widths across different ACPI tables
13508 (DSDT, SSDT).
13509
13510 Fixed a problem where NULL extended fields (X fields) in an ACPI
13511 2.0 ACPI FADT caused the table load to fail.  Although the
13512 existing ACPI specification is a bit fuzzy on this topic, the new
13513 behavior is to fall back on a ACPI 1.0 field if the corresponding
13514 ACPI 2.0 X field is zero (even though the table revision indicates
13515 a full ACPI 2.0 table.)  The ACPI specification will be updated to
13516 clarify this issue.
13517
13518 Fixed a problem with the SystemMemory operation region handler
13519 where memory was always accessed byte-wise even if the AML-
13520 specified access width was larger than a byte.  This caused
13521 problems on systems with memory-mapped I/O.  Memory is now
13522 accessed with the width specified.  On systems that do not support
13523 non-aligned transfers, a check is made to guarantee proper address
13524 alignment before proceeding in order to avoid an AML-caused
13525 alignment fault within the kernel.
13526
13527
13528 Fixed a problem with the ExtendedIrq resource where only one byte
13529 of the 4-byte Irq field was extracted.
13530
13531 Fixed the AcpiExDigitsNeeded() procedure to support _UID.  This
13532 function was out of date and required a rewrite.
13533
13534 Code and Data Size: Current core subsystem library sizes are shown
13535 below.  These are the code and data sizes for the acpica.lib
13536 produced by the Microsoft Visual C++ 6.0 compiler, and these
13537 values do not include any ACPI driver or OSPM code.  The debug
13538 version of the code includes the debug output trace mechanism and
13539 has a larger code and data size.  Note that these values will vary
13540 depending on the efficiency of the compiler and the compiler
13541 options used during generation.
13542
13543   Previous Release
13544     Non-Debug Version:  66.6K Code,   6.5K Data,   73.1K Total
13545     Debug Version:     139.8K Code,  57.4K Data,  197.2K Total
13546   Current Release:
13547     Non-Debug Version:  68.5K Code,   7.0K Data,   75.5K Total
13548     Debug Version:     142.4K Code,  58.3K Data,  200.7K Total
13549
13550
13551 2) Linux
13552
13553 PCI IRQ routing fixes (Dominik Brodowski)
13554
13555
13556 3) iASL Compiler Version X2042:
13557
13558 Implemented an additional compile-time error check for a field
13559 unit whose size + minimum access width would cause a run-time
13560 access beyond the end-of-region.  Previously, only the field size
13561 itself was checked.
13562
13563 The Core subsystem and iASL compiler now share a common parse
13564 object in preparation for compile-time evaluation of the type
13565 3/4/5 ASL operators.
13566
13567
13568 ----------------------------------------
13569 Summary of changes for this release: 03_29_02
13570
13571 1) ACPI CA Core Subsystem Version 20020329:
13572
13573 Implemented support for late evaluation of TermArg operands to
13574 Buffer and Package objects.  This allows complex expressions to be
13575 used in the declarations of these object types.
13576
13577 Fixed an ACPI 1.0 compatibility issue when reading Fields. In ACPI
13578 1.0, if the field was larger than 32 bits, it was returned as a
13579 buffer - otherwise it was returned as an integer.  In ACPI 2.0,
13580 the field is returned as a buffer only if the field is larger than
13581 64 bits.  The TableRevision is now considered when making this
13582 conversion to avoid incompatibility with existing ASL code.
13583
13584 Implemented logical addressing for AcpiOsGetRootPointer.  This
13585 allows an RSDP with either a logical or physical address.  With
13586 this support, the host OS can now override all ACPI tables with
13587 one logical RSDP.  Includes implementation of  "typed" pointer
13588 support to allow a common data type for both physical and logical
13589 pointers internally.  This required a change to the
13590 AcpiOsGetRootPointer interface.
13591
13592 Implemented the use of ACPI 2.0 Generic Address Structures for all
13593 GPE, Fixed Event, and PM Timer I/O.  This allows the use of memory
13594 mapped I/O for these ACPI features.
13595
13596 Initialization now ignores not only non-required tables (All
13597 tables other than the FADT, FACS, DSDT, and SSDTs), but also does
13598 not validate the table headers of unrecognized tables.
13599
13600 Fixed a problem where a notify handler could only be
13601 installed/removed on an object of type Device.  All "notify"
13602
13603 objects are now supported -- Devices, Processor, Power, and
13604 Thermal.
13605
13606 Removed most verbosity from the ACPI_DB_INFO debug level.  Only
13607 critical information is returned when this debug level is enabled.
13608
13609 Code and Data Size: Current core subsystem library sizes are shown
13610 below.  These are the code and data sizes for the acpica.lib
13611 produced by the Microsoft Visual C++ 6.0 compiler, and these
13612 values do not include any ACPI driver or OSPM code.  The debug
13613 version of the code includes the debug output trace mechanism and
13614 has a larger code and data size.  Note that these values will vary
13615 depending on the efficiency of the compiler and the compiler
13616 options used during generation.
13617
13618   Previous Release
13619     Non-Debug Version:  65.4K Code,   6.2K Data,   71.6K Total
13620     Debug Version:     138.0K Code,  56.6K Data,  194.6K Total
13621   Current Release:
13622     Non-Debug Version:  66.6K Code,   6.5K Data,   73.1K Total
13623     Debug Version:     139.8K Code,  57.4K Data,  197.2K Total
13624
13625
13626 2) Linux:
13627
13628 The processor driver (acpi_processor.c) now fully supports ACPI
13629 2.0-based processor performance control (e.g. Intel(R)
13630 SpeedStep(TM) technology) Note that older laptops that only have
13631 the Intel "applet" interface are not supported through this.  The
13632 'limit' and 'performance' interface (/proc) are fully functional.
13633 [Note that basic policy for controlling performance state
13634 transitions will be included in the next version of ospmd.]  The
13635 idle handler was modified to more aggressively use C2, and PIIX4
13636 errata handling underwent a complete overhaul (big thanks to
13637 Dominik Brodowski).
13638
13639 Added support for ACPI-PCI device binding (acpi_pci_root.c). _ADR-
13640 based devices in the ACPI namespace are now dynamically bound
13641 (associated) with their PCI counterparts (e.g. PCI1->01:00.0).
13642 This allows, among other things, ACPI to resolve bus numbers for
13643 subordinate PCI bridges.
13644
13645 Enhanced PCI IRQ routing to get the proper bus number for _PRT
13646 entries defined underneath PCI bridges.
13647
13648 Added IBM 600E to bad bios list due to invalid _ADR value for
13649 PIIX4 PCI-ISA bridge, resulting in improper PCI IRQ routing.
13650
13651 In the process of adding full MADT support (e.g. IOAPIC) for IA32
13652 (acpi.c, mpparse.c) -- stay tuned.
13653
13654 Added back visual differentiation between fixed-feature and
13655 control-method buttons in dmesg.  Buttons are also subtyped (e.g.
13656 button/power/PWRF) to simplify button identification.
13657
13658 We no longer use -Wno-unused when compiling debug. Please ignore
13659 any "_THIS_MODULE defined but not used" messages.
13660
13661 Can now shut down the system using "magic sysrq" key.
13662
13663
13664 3) iASL Compiler version 2041:
13665
13666 Fixed a problem where conversion errors for hex/octal/decimal
13667 constants were not reported.
13668
13669 Implemented a fix for the General Register template Address field.
13670 This field was 8 bits when it should be 64.
13671
13672 Fixed a problem where errors/warnings were no longer being emitted
13673 within the listing output file.
13674
13675 Implemented the ACPI 2.0A restriction on ACPI Table Signatures to
13676 exactly 4 characters, alphanumeric only.
13677
13678
13679
13680
13681 ----------------------------------------
13682 Summary of changes for this release: 03_08_02
13683
13684
13685 1) ACPI CA Core Subsystem Version 20020308:
13686
13687 Fixed a problem with AML Fields where the use of the "AccessAny"
13688 keyword could cause an interpreter error due to attempting to read
13689 or write beyond the end of the parent Operation Region.
13690
13691 Fixed a problem in the SystemMemory Operation Region handler where
13692 an attempt was made to map memory beyond the end of the region.
13693 This was the root cause of the "AE_ERROR" and "AE_NO_MEMORY"
13694 errors on some Linux systems.
13695
13696 Fixed a problem where the interpreter/namespace "search to root"
13697 algorithm was not functioning for some object types.  Relaxed the
13698 internal restriction on the search to allow upsearches for all
13699 external object types as well as most internal types.
13700
13701
13702 2) Linux:
13703
13704 We now use safe_halt() macro versus individual calls to sti | hlt.
13705
13706 Writing to the processor limit interface should now work. "echo 1"
13707 will increase the limit, 2 will decrease, and 0 will reset to the
13708
13709 default.
13710
13711
13712 3) ASL compiler:
13713
13714 Fixed segfault on Linux version.
13715
13716
13717 ----------------------------------------
13718 Summary of changes for this release: 02_25_02
13719
13720 1) ACPI CA Core Subsystem:
13721
13722
13723 Fixed a problem where the GPE bit masks were not initialized
13724 properly, causing erratic GPE behavior.
13725
13726 Implemented limited support for multiple calling conventions.  The
13727 code can be generated with either the VPL (variable parameter
13728 list, or "C") convention, or the FPL (fixed parameter list, or
13729 "Pascal") convention.  The core subsystem is about 3.4% smaller
13730 when generated with FPL.
13731
13732
13733 2) Linux
13734
13735 Re-add some /proc/acpi/event functionality that was lost during
13736 the rewrite
13737
13738 Resolved issue with /proc events for fixed-feature buttons showing
13739 up as the system device.
13740
13741 Fixed checks on C2/C3 latencies to be inclusive of maximum values.
13742
13743 Replaced AE_ERRORs in acpi_osl.c with more specific error codes.
13744
13745 Changed ACPI PRT option from "pci=noacpi-routing" to "pci=noacpi"
13746
13747 Fixed limit interface & usage to fix bugs with passive cooling
13748 hysterisis.
13749
13750 Restructured PRT support.
13751
13752
13753 ----------------------------------------
13754 Summary of changes for this label: 02_14_02
13755
13756
13757 1) ACPI CA Core Subsystem:
13758
13759 Implemented support in AcpiLoadTable to allow loading of FACS and
13760 FADT tables.
13761
13762 Suport for the now-obsolete interim 0.71 64-bit ACPI tables has
13763 been removed.  All 64-bit platforms should be migrated to the ACPI
13764 2.0 tables.  The actbl71.h header has been removed from the source
13765 tree.
13766
13767 All C macros defined within the subsystem have been prefixed with
13768 "ACPI_" to avoid collision with other system include files.
13769
13770 Removed the return value for the two AcpiOsPrint interfaces, since
13771 it is never used and causes lint warnings for ignoring the return
13772 value.
13773
13774 Added error checking to all internal mutex acquire and release
13775 calls.  Although a failure from one of these interfaces is
13776 probably a fatal system error, these checks will cause the
13777 immediate abort of the currently executing method or interface.
13778
13779 Fixed a problem where the AcpiSetCurrentResources interface could
13780 fault.  This was a side effect of the deployment of the new memory
13781 allocation model.
13782
13783 Fixed a couple of problems with the Global Lock support introduced
13784 in the last major build.  The "common" (1.0/2.0) internal FACS was
13785 being overwritten with the FACS signature and clobbering the
13786 Global Lock pointer.  Also, the actual firmware FACS was being
13787 unmapped after construction of the "common" FACS, preventing
13788 access to the actual Global Lock field within it.  The "common"
13789 internal FACS is no longer installed as an actual ACPI table; it
13790 is used simply as a global.
13791
13792 Code and Data Size: Current core subsystem library sizes are shown
13793 below.  These are the code and data sizes for the acpica.lib
13794 produced by the Microsoft Visual C++ 6.0 compiler, and these
13795 values do not include any ACPI driver or OSPM code.  The debug
13796 version of the code includes the debug output trace mechanism and
13797 has a larger code and data size.  Note that these values will vary
13798 depending on the efficiency of the compiler and the compiler
13799 options used during generation.
13800
13801   Previous Release (02_07_01)
13802     Non-Debug Version:  65.2K Code,   6.2K Data,   71.4K Total
13803     Debug Version:     136.9K Code,  56.4K Data,  193.3K Total
13804   Current Release:
13805     Non-Debug Version:  65.4K Code,   6.2K Data,   71.6K Total
13806     Debug Version:     138.0K Code,  56.6K Data,  194.6K Total
13807
13808
13809 2) Linux
13810
13811 Updated Linux-specific code for core macro and OSL interface
13812 changes described above.
13813
13814 Improved /proc/acpi/event. It now can be opened only once and has
13815 proper poll functionality.
13816
13817 Fixed and restructured power management (acpi_bus).
13818
13819 Only create /proc "view by type" when devices of that class exist.
13820
13821 Fixed "charging/discharging" bug (and others) in acpi_battery.
13822
13823 Improved thermal zone code.
13824
13825
13826 3) ASL Compiler, version X2039:
13827
13828
13829 Implemented the new compiler restriction on ASL String hex/octal
13830 escapes to non-null, ASCII values.  An error results if an invalid
13831 value is used.  (This will require an ACPI 2.0 specification
13832 change.)
13833
13834 AML object labels that are output to the optional C and ASM source
13835 are now prefixed with both the ACPI table signature and table ID
13836 to help guarantee uniqueness within a large BIOS project.
13837
13838
13839 ----------------------------------------
13840 Summary of changes for this label: 02_01_02
13841
13842 1) ACPI CA Core Subsystem:
13843
13844 ACPI 2.0 support is complete in the entire Core Subsystem and the
13845 ASL compiler. All new ACPI 2.0 operators are implemented and all
13846 other changes for ACPI 2.0 support are complete.  With
13847 simultaneous code and data optimizations throughout the subsystem,
13848 ACPI 2.0 support has been implemented with almost no additional
13849 cost in terms of code and data size.
13850
13851 Implemented a new mechanism for allocation of return buffers.  If
13852 the buffer length is set to ACPI_ALLOCATE_BUFFER, the buffer will
13853 be allocated on behalf of the caller.  Consolidated all return
13854 buffer validation and allocation to a common procedure.  Return
13855 buffers will be allocated via the primary OSL allocation interface
13856 since it appears that a separate pool is not needed by most users.
13857 If a separate pool is required for these buffers, the caller can
13858 still use the original mechanism and pre-allocate the buffer(s).
13859
13860 Implemented support for string operands within the DerefOf
13861 operator.
13862
13863 Restructured the Hardware and Event managers to be table driven,
13864 simplifying the source code and reducing the amount of generated
13865 code.
13866
13867 Split the common read/write low-level ACPI register bitfield
13868 procedure into a separate read and write, simplifying the code
13869 considerably.
13870
13871 Obsoleted the AcpiOsCallocate OSL interface.  This interface was
13872 used only a handful of times and didn't have enough critical mass
13873 for a separate interface.  Replaced with a common calloc procedure
13874 in the core.
13875
13876 Fixed a reported problem with the GPE number mapping mechanism
13877 that allows GPE1 numbers to be non-contiguous with GPE0.
13878 Reorganized the GPE information and shrunk a large array that was
13879 originally large enough to hold info for all possible GPEs (256)
13880 to simply large enough to hold all GPEs up to the largest GPE
13881 number on the machine.
13882
13883 Fixed a reported problem with resource structure alignment on 64-
13884 bit platforms.
13885
13886 Changed the AcpiEnableEvent and AcpiDisableEvent external
13887 interfaces to not require any flags for the common case of
13888 enabling/disabling a GPE.
13889
13890 Implemented support to allow a "Notify" on a Processor object.
13891
13892 Most TBDs in comments within the source code have been resolved
13893 and eliminated.
13894
13895
13896 Fixed a problem in the interpreter where a standalone parent
13897 prefix (^) was not handled correctly in the interpreter and
13898 debugger.
13899
13900 Removed obsolete and unnecessary GPE save/restore code.
13901
13902 Implemented Field support in the ASL Load operator.  This allows a
13903 table to be loaded from a named field, in addition to loading a
13904 table directly from an Operation Region.
13905
13906 Implemented timeout and handle support in the external Global Lock
13907 interfaces.
13908
13909 Fixed a problem in the AcpiDump utility where pathnames were no
13910 longer being generated correctly during the dump of named objects.
13911
13912 Modified the AML debugger to give a full display of if/while
13913 predicates instead of just one AML opcode at a time.  (The
13914 predicate can have several nested ASL statements.)  The old method
13915 was confusing during single stepping.
13916
13917 Code and Data Size: Current core subsystem library sizes are shown
13918 below. These are the code and data sizes for the acpica.lib
13919 produced by the Microsoft Visual C++ 6.0 compiler, and these
13920 values do not include any ACPI driver or OSPM code.  The debug
13921 version of the code includes the debug output trace mechanism and
13922 has a larger code and data size.  Note that these values will vary
13923 depending on the efficiency of the compiler and the compiler
13924 options used during generation.
13925
13926   Previous Release (12_18_01)
13927      Non-Debug Version:  66.1K Code,   5.5K Data,   71.6K Total
13928      Debug Version:     138.3K Code,  55.9K Data,  194.2K Total
13929    Current Release:
13930      Non-Debug Version:  65.2K Code,   6.2K Data,   71.4K Total
13931      Debug Version:     136.9K Code,  56.4K Data,  193.3K Total
13932
13933 2) Linux
13934
13935  Implemented fix for PIIX reverse throttling errata (Processor
13936 driver)
13937
13938 Added new Limit interface (Processor and Thermal drivers)
13939
13940 New thermal policy (Thermal driver)
13941
13942 Many updates to /proc
13943
13944 Battery "low" event support (Battery driver)
13945
13946 Supports ACPI PCI IRQ routing (PCI Link and PCI root drivers)
13947
13948 IA32 - IA64 initialization unification, no longer experimental
13949
13950 Menuconfig options redesigned
13951
13952 3) ASL Compiler, version X2037:
13953
13954 Implemented several new output features to simplify integration of
13955 AML code into  firmware: 1) Output the AML in C source code with
13956 labels for each named ASL object.  The    original ASL source code
13957 is interleaved as C comments. 2) Output the AML in ASM source code
13958 with labels and interleaved ASL    source. 3) Output the AML in
13959 raw hex table form, in either C or ASM.
13960
13961 Implemented support for optional string parameters to the
13962 LoadTable operator.
13963
13964 Completed support for embedded escape sequences within string
13965 literals.  The compiler now supports all single character escapes
13966 as well as the Octal and Hex escapes.  Note: the insertion of a
13967 null byte into a string literal (via the hex/octal escape) causes
13968 the string to be immediately terminated.  A warning is issued.
13969
13970 Fixed a problem where incorrect AML was generated for the case
13971 where an ASL namepath consists of a single parent prefix (
13972
13973 ) with no trailing name segments.
13974
13975 The compiler has been successfully generated with a 64-bit C
13976 compiler.
13977
13978
13979
13980
13981 ----------------------------------------
13982 Summary of changes for this label: 12_18_01
13983
13984 1) Linux
13985
13986 Enhanced blacklist with reason and severity fields. Any table's
13987 signature may now be used to identify a blacklisted system.
13988
13989 Call _PIC control method to inform the firmware which interrupt
13990 model the OS is using. Turn on any disabled link devices.
13991
13992 Cleaned up busmgr /proc error handling (Andreas Dilger)
13993
13994  2) ACPI CA Core Subsystem:
13995
13996 Implemented ACPI 2.0 semantics for the "Break" operator (Exit from
13997 while loop)
13998
13999 Completed implementation of the ACPI 2.0 "Continue",
14000 "ConcatenateResTemplate", "DataTableRegion", and "LoadTable"
14001 operators.  All new ACPI 2.0 operators are now implemented in both
14002 the ASL compiler and the AML interpreter.  The only remaining ACPI
14003 2.0 task is support for the String data type in the DerefOf
14004 operator.  Fixed a problem with AcquireMutex where the status code
14005 was lost if the caller had to actually wait for the mutex.
14006
14007 Increased the maximum ASL Field size from 64K bits to 4G bits.
14008
14009 Completed implementation of the external Global Lock interfaces --
14010 AcpiAcquireGlobalLock and AcpiReleaseGlobalLock.  The Timeout and
14011 Handler parameters were added.
14012
14013 Completed another pass at removing warnings and issues when
14014 compiling with 64-bit compilers.  The code now compiles cleanly
14015 with the Intel 64-bit C/C++ compiler.  Most notably, the pointer
14016 add and subtract (diff) macros have changed considerably.
14017
14018
14019 Created and deployed a new ACPI_SIZE type that is 64-bits wide on
14020 64-bit platforms, 32-bits on all others.  This type is used
14021 wherever memory allocation and/or the C sizeof() operator is used,
14022 and affects the OSL memory allocation interfaces AcpiOsAllocate
14023 and AcpiOsCallocate.
14024
14025 Implemented sticky user breakpoints in the AML debugger.
14026
14027 Code and Data Size: Current core subsystem library sizes are shown
14028 below. These are the code and data sizes for the acpica.lib
14029 produced by the Microsoft Visual C++ 6.0 compiler, and these
14030 values do not include any ACPI driver or OSPM code.  The debug
14031 version of the code includes the debug output trace mechanism and
14032 has a larger code and data size. Note that these values will vary
14033 depending on the efficiency of the compiler and the compiler
14034 options used during generation.
14035
14036   Previous Release (12_05_01)
14037      Non-Debug Version:  64.7K Code,   5.3K Data,   70.0K Total
14038      Debug Version:     136.2K Code,  55.6K Data,  191.8K Total
14039    Current Release:
14040      Non-Debug Version:  66.1K Code,   5.5K Data,   71.6K Total
14041      Debug Version:     138.3K Code,  55.9K Data,  194.2K Total
14042
14043  3) ASL Compiler, version X2034:
14044
14045 Now checks for (and generates an error if detected) the use of a
14046 Break or Continue statement without an enclosing While statement.
14047
14048
14049 Successfully generated the compiler with the Intel 64-bit C
14050 compiler.
14051
14052  ----------------------------------------
14053 Summary of changes for this label: 12_05_01
14054
14055  1) ACPI CA Core Subsystem:
14056
14057 The ACPI 2.0 CopyObject operator is fully implemented.  This
14058 operator creates a new copy of an object (and is also used to
14059 bypass the "implicit conversion" mechanism of the Store operator.)
14060
14061 The ACPI 2.0 semantics for the SizeOf operator are fully
14062 implemented.  The change is that performing a SizeOf on a
14063 reference object causes an automatic dereference of the object to
14064 tha actual value before the size is evaluated. This behavior was
14065 undefined in ACPI 1.0.
14066
14067 The ACPI 2.0 semantics for the Extended IRQ resource descriptor
14068 have been implemented.  The interrupt polarity and mode are now
14069 independently set.
14070
14071 Fixed a problem where ASL Constants (Zero, One, Ones, Revision)
14072 appearing in Package objects were not properly converted to
14073 integers when the internal Package was converted to an external
14074 object (via the AcpiEvaluateObject interface.)
14075
14076 Fixed a problem with the namespace object deletion mechanism for
14077 objects created by control methods.  There were two parts to this
14078 problem: 1) Objects created during the initialization phase method
14079 parse were not being deleted, and 2) The object owner ID mechanism
14080 to track objects was broken.
14081
14082 Fixed a problem where the use of the ASL Scope operator within a
14083 control method would result in an invalid opcode exception.
14084
14085 Fixed a problem introduced in the previous label where the buffer
14086 length required for the _PRT structure was not being returned
14087 correctly.
14088
14089 Code and Data Size: Current core subsystem library sizes are shown
14090 below. These are the code and data sizes for the acpica.lib
14091 produced by the Microsoft Visual C++ 6.0 compiler, and these
14092 values do not include any ACPI driver or OSPM code.  The debug
14093 version of the code includes the debug output trace mechanism and
14094 has a larger code and data size.  Note that these values will vary
14095 depending on the efficiency of the compiler and the compiler
14096 options used during generation.
14097
14098   Previous Release (11_20_01)
14099      Non-Debug Version:  64.1K Code,   5.3K Data,   69.4K Total
14100      Debug Version:     135.1K Code,  55.4K Data,  190.5K Total
14101
14102   Current Release:
14103      Non-Debug Version:  64.7K Code,   5.3K Data,   70.0K Total
14104      Debug Version:     136.2K Code,  55.6K Data,  191.8K Total
14105
14106  2) Linux:
14107
14108 Updated all files to apply cleanly against 2.4.16.
14109
14110 Added basic PCI Interrupt Routing Table (PRT) support for IA32
14111 (acpi_pci.c), and unified the PRT code for IA32 and IA64.  This
14112 version supports both static and dyanmic PRT entries, but dynamic
14113 entries are treated as if they were static (not yet
14114 reconfigurable).  Architecture- specific code to use this data is
14115 absent on IA32 but should be available shortly.
14116
14117 Changed the initialization sequence to start the ACPI interpreter
14118 (acpi_init) prior to initialization of the PCI driver (pci_init)
14119 in init/main.c.  This ordering is required to support PRT and
14120 facilitate other (future) enhancement.  A side effect is that the
14121 ACPI bus driver and certain device drivers can no longer be loaded
14122 as modules.
14123
14124 Modified the 'make menuconfig' options to allow PCI Interrupt
14125 Routing support to be included without the ACPI Bus and other
14126 device drivers.
14127
14128  3) ASL Compiler, version X2033:
14129
14130 Fixed some issues with the use of the new CopyObject and
14131 DataTableRegion operators.  Both are fully functional.
14132
14133  ----------------------------------------
14134 Summary of changes for this label: 11_20_01
14135
14136  20 November 2001.  Summary of changes for this release.
14137
14138  1) ACPI CA Core Subsystem:
14139
14140 Updated Index support to match ACPI 2.0 semantics.  Storing a
14141 Integer, String, or Buffer to an Index of a Buffer will store only
14142 the least-significant byte of the source to the Indexed buffer
14143 byte.  Multiple writes are not performed.
14144
14145 Fixed a problem where the access type used in an AccessAs ASL
14146 operator was not recorded correctly into the field object.
14147
14148 Fixed a problem where ASL Event objects were created in a
14149 signalled state. Events are now created in an unsignalled state.
14150
14151 The internal object cache is now purged after table loading and
14152 initialization to reduce the use of dynamic kernel memory -- on
14153 the assumption that object use is greatest during the parse phase
14154 of the entire table (versus the run-time use of individual control
14155 methods.)
14156
14157 ACPI 2.0 variable-length packages are now fully operational.
14158
14159 Code and Data Size: Code and Data optimizations have permitted new
14160 feature development with an actual reduction in the library size.
14161 Current core subsystem library sizes are shown below.  These are
14162 the code and data sizes for the acpica.lib produced by the
14163 Microsoft Visual C++ 6.0 compiler, and these values do not include
14164 any ACPI driver or OSPM code.  The debug version of the code
14165 includes the debug output trace mechanism and has a larger code
14166 and data size.  Note that these values will vary depending on the
14167 efficiency of the compiler and the compiler options used during
14168 generation.
14169
14170   Previous Release (11_09_01):
14171      Non-Debug Version:  63.7K Code,   5.2K Data,   68.9K Total
14172      Debug Version:     134.5K Code,  55.4K Data,  189.9K Total
14173
14174   Current Release:
14175      Non-Debug Version:  64.1K Code,   5.3K Data,   69.4K Total
14176      Debug Version:     135.1K Code,  55.4K Data,  190.5K Total
14177
14178  2) Linux:
14179
14180 Enhanced the ACPI boot-time initialization code to allow the use
14181 of Local APIC tables for processor enumeration on IA-32, and to
14182 pave the way for a fully MPS-free boot (on SMP systems) in the
14183 near future.  This functionality replaces
14184 arch/i386/kernel/acpitables.c, which was introduced in an earlier
14185 2.4.15-preX release.  To enable this feature you must add
14186 "acpi_boot=on" to the kernel command line -- see the help entry
14187 for CONFIG_ACPI_BOOT for more information.  An IA-64 release is in
14188 the works...
14189
14190 Restructured the configuration options to allow boot-time table
14191 parsing support without inclusion of the ACPI Interpreter (and
14192 other) code.
14193
14194 NOTE: This release does not include fixes for the reported events,
14195 power-down, and thermal passive cooling issues (coming soon).
14196
14197  3) ASL Compiler:
14198
14199 Added additional typechecking for Fields within restricted access
14200 Operation Regions.  All fields within EC and CMOS regions must be
14201 declared with ByteAcc. All fields withing SMBus regions must be
14202 declared with the BufferAcc access type.
14203
14204 Fixed a problem where the listing file output of control methods
14205 no longer interleaved the actual AML code with the ASL source
14206 code.
14207
14208
14209
14210
14211 ----------------------------------------
14212 Summary of changes for this label: 11_09_01
14213
14214 1) ACPI CA Core Subsystem:
14215
14216 Implemented ACPI 2.0-defined support for writes to fields with a
14217 Buffer, String, or Integer source operand that is smaller than the
14218 target field. In these cases, the source operand is zero-extended
14219 to fill the target field.
14220
14221 Fixed a problem where a Field starting bit offset (within the
14222 parent operation region) was calculated incorrectly if the
14223
14224 alignment of the field differed from the access width.  This
14225 affected CreateWordField, CreateDwordField, CreateQwordField, and
14226 possibly other fields that use the "AccessAny" keyword.
14227
14228 Fixed a problem introduced in the 11_02_01 release where indirect
14229 stores through method arguments did not operate correctly.
14230
14231 2) Linux:
14232
14233 Implemented boot-time ACPI table parsing support
14234 (CONFIG_ACPI_BOOT) for IA32 and IA64 UP/SMP systems.  This code
14235 facilitates the use of ACPI tables (e.g. MADT, SRAT) rather than
14236 legacy BIOS interfaces (e.g. MPS) for the configuration of system
14237 processors, memory, and interrupts during setup_arch().  Note that
14238 this patch does not include the required architecture-specific
14239 changes required to apply this information -- subsequent patches
14240 will be posted for both IA32 and IA64 to achieve this.
14241
14242 Added low-level sleep support for IA32 platforms, courtesy of Pat
14243 Mochel. This allows IA32 systems to transition to/from various
14244 sleeping states (e.g. S1, S3), although the lack of a centralized
14245 driver model and power-manageable drivers will prevent its
14246 (successful) use on most systems.
14247
14248 Revamped the ACPI 'menuconfig' layout: created new "ACPI Support"
14249 submenu, unified IA32 and IA64 options, added new "Boot using ACPI
14250 tables" option, etc.
14251
14252 Increased the default timeout for the EC driver from 1ms to 10ms
14253 (1000 cycles of 10us) to try to address AE_TIME errors during EC
14254 transactions.
14255
14256  ----------------------------------------
14257 Summary of changes for this label: 11_02_01
14258
14259 1) ACPI CA Core Subsystem:
14260
14261 ACPI 2.0 Support: Implemented ACPI 2.0 64-bit Field access
14262 (QWordAcc keyword). All ACPI 2.0 64-bit support is now
14263 implemented.
14264
14265 OSL Interfaces: Several of the OSL (AcpiOs*) interfaces required
14266 changes to support ACPI 2.0 Qword field access.  Read/Write
14267 PciConfiguration(), Read/Write Memory(), and Read/Write Port() now
14268 accept an ACPI_INTEGER (64 bits) as the value parameter.  Also,
14269 the value parameter for the address space handler interface is now
14270 an ACPI_INTEGER.  OSL implementations of these interfaces must now
14271 handle the case where the Width parameter is 64.
14272
14273 Index Fields: Fixed a problem where unaligned bit assembly and
14274 disassembly for IndexFields was not supported correctly.
14275
14276 Index and Bank Fields:  Nested Index and Bank Fields are now
14277 supported. During field access, a check is performed to ensure
14278 that the value written to an Index or Bank register is not out of
14279 the range of the register.  The Index (or Bank) register is
14280 written before each access to the field data. Future support will
14281 include allowing individual IndexFields to be wider than the
14282 DataRegister width.
14283
14284 Fields: Fixed a problem where the AML interpreter was incorrectly
14285 attempting to write beyond the end of a Field/OpRegion.  This was
14286 a boundary case that occurred when a DWORD field was written to a
14287 BYTE access OpRegion, forcing multiple writes and causing the
14288 interpreter to write one datum too many.
14289
14290 Fields: Fixed a problem with Field/OpRegion access where the
14291 starting bit address of a field was incorrectly calculated if the
14292 current access type was wider than a byte (WordAcc, DwordAcc, or
14293 QwordAcc).
14294
14295 Fields: Fixed a problem where forward references to individual
14296 FieldUnits (individual Field names within a Field definition) were
14297 not resolved during the AML table load.
14298
14299 Fields: Fixed a problem where forward references from a Field
14300 definition to the parent Operation Region definition were not
14301 resolved during the AML table load.
14302
14303 Fields: Duplicate FieldUnit names within a scope are now detected
14304 during AML table load.
14305
14306 Acpi Interfaces: Fixed a problem where the AcpiGetName() interface
14307 returned an incorrect name for the root node.
14308
14309 Code and Data Size: Code and Data optimizations have permitted new
14310 feature development with an actual reduction in the library size.
14311 Current core subsystem library sizes are shown below.  These are
14312 the code and data sizes for the acpica.lib produced by the
14313 Microsoft Visual C++ 6.0 compiler, and these values do not include
14314 any ACPI driver or OSPM code.  The debug version of the code
14315 includes the debug output trace mechanism and has a larger code
14316 and data size.  Note that these values will vary depending on the
14317 efficiency of the compiler and the compiler options used during
14318 generation.
14319
14320   Previous Release (10_18_01):
14321      Non-Debug Version:  63.9K Code,   5.1K Data,   69.0K Total
14322      Debug Version:     136.7K Code,  57.4K Data,  194.2K Total
14323
14324   Current Release:
14325      Non-Debug Version:  63.7K Code,   5.2K Data,   68.9K Total
14326      Debug Version:     134.5K Code,  55.4K Data,  189.9K Total
14327
14328  2) Linux:
14329
14330 Improved /proc processor output (Pavel Machek) Re-added
14331 MODULE_LICENSE("GPL") to all modules.
14332
14333  3) ASL Compiler version X2030:
14334
14335 Duplicate FieldUnit names within a scope are now detected and
14336 flagged as errors.
14337
14338  4) Documentation:
14339
14340 Programmer Reference updated to reflect OSL and address space
14341 handler interface changes described above.
14342
14343 ----------------------------------------
14344 Summary of changes for this label: 10_18_01
14345
14346 ACPI CA Core Subsystem:
14347
14348 Fixed a problem with the internal object reference count mechanism
14349 that occasionally caused premature object deletion. This resolves
14350 all of the outstanding problem reports where an object is deleted
14351 in the middle of an interpreter evaluation.  Although this problem
14352 only showed up in rather obscure cases, the solution to the
14353 problem involved an adjustment of all reference counts involving
14354 objects attached to namespace nodes.
14355
14356 Fixed a problem with Field support in the interpreter where
14357 writing to an aligned field whose length is an exact multiple (2
14358 or greater) of the field access granularity would cause an attempt
14359 to write beyond the end of the field.
14360
14361 The top level AML opcode execution functions within the
14362 interpreter have been renamed with a more meaningful and
14363 consistent naming convention.  The modules exmonad.c and
14364 exdyadic.c were eliminated.  New modules are exoparg1.c,
14365 exoparg2.c, exoparg3.c, and exoparg6.c.
14366
14367 Support for the ACPI 2.0 "Mid" ASL operator has been implemented.
14368
14369 Fixed a problem where the AML debugger was causing some internal
14370 objects to not be deleted during subsystem termination.
14371
14372 Fixed a problem with the external AcpiEvaluateObject interface
14373 where the subsystem would fault if the named object to be
14374 evaluated refered to a constant such as Zero, Ones, etc.
14375
14376 Fixed a problem with IndexFields and BankFields where the
14377 subsystem would fault if the index, data, or bank registers were
14378 not defined in the same scope as the field itself.
14379
14380 Added printf format string checking for compilers that support
14381 this feature.  Corrected more than 50 instances of issues with
14382 format specifiers within invocations of ACPI_DEBUG_PRINT
14383 throughout the core subsystem code.
14384
14385 The ASL "Revision" operator now returns the ACPI support level
14386 implemented in the core - the value "2" since the ACPI 2.0 support
14387 is more than 50% implemented.
14388
14389 Enhanced the output of the AML debugger "dump namespace" command
14390 to output in a more human-readable form.
14391
14392 Current core subsystem library code sizes are shown below.  These
14393
14394 are the code and data sizes for the acpica.lib produced by the
14395 Microsoft Visual C++ 6.0 compiler, and these values do not include
14396 any ACPI driver or OSPM code.  The debug version of the code
14397 includes the full debug trace mechanism -- leading to a much
14398
14399 larger code and data size.  Note that these values will vary
14400 depending on the efficiency of the compiler and the compiler
14401 options used during generation.
14402
14403      Previous Label (09_20_01):
14404      Non-Debug Version:    65K Code,     5K Data,     70K Total
14405      Debug Version:       138K Code,    58K Data,    196K Total
14406
14407      This Label:
14408
14409      Non-Debug Version:  63.9K Code,   5.1K Data,   69.0K Total
14410      Debug Version:     136.7K Code,  57.4K Data,  194.2K Total
14411
14412 Linux:
14413
14414 Implemented a "Bad BIOS Blacklist" to track machines that have
14415 known ASL/AML problems.
14416
14417 Enhanced the /proc interface for the thermal zone driver and added
14418 support for _HOT (the critical suspend trip point).  The 'info'
14419 file now includes threshold/policy information, and allows setting
14420 of _SCP (cooling preference) and _TZP (polling frequency) values
14421 to the 'info' file. Examples: "echo tzp=5 > info" sets the polling
14422 frequency to 5 seconds, and "echo scp=1 > info" sets the cooling
14423 preference to the passive/quiet mode (if supported by the ASL).
14424
14425 Implemented a workaround for a gcc bug that resuted in an OOPs
14426 when loading the control method battery driver.
14427
14428  ----------------------------------------
14429 Summary of changes for this label: 09_20_01
14430
14431  ACPI CA Core Subsystem:
14432
14433 The AcpiEnableEvent and AcpiDisableEvent interfaces have been
14434 modified to allow individual GPE levels to be flagged as wake-
14435 enabled (i.e., these GPEs are to remain enabled when the platform
14436 sleeps.)
14437
14438 The AcpiEnterSleepState and AcpiLeaveSleepState interfaces now
14439 support wake-enabled GPEs.  This means that upon entering the
14440 sleep state, all GPEs that are not wake-enabled are disabled.
14441 When leaving the sleep state, these GPEs are reenabled.
14442
14443 A local double-precision divide/modulo module has been added to
14444 enhance portability to OS kernels where a 64-bit math library is
14445 not available.  The new module is "utmath.c".
14446
14447 Several optimizations have been made to reduce the use of CPU
14448 stack.  Originally over 2K, the maximum stack usage is now below
14449 2K at 1860  bytes (1.82k)
14450
14451 Fixed a problem with the AcpiGetFirmwareTable interface where the
14452 root table pointer was not mapped into a logical address properly.
14453
14454 Fixed a problem where a NULL pointer was being dereferenced in the
14455 interpreter code for the ASL Notify operator.
14456
14457 Fixed a problem where the use of the ASL Revision operator
14458 returned an error. This operator now returns the current version
14459 of the ACPI CA core subsystem.
14460
14461 Fixed a problem where objects passed as control method parameters
14462 to AcpiEvaluateObject were always deleted at method termination.
14463 However, these objects may end up being stored into the namespace
14464 by the called method.  The object reference count mechanism was
14465 applied to these objects instead of a force delete.
14466
14467 Fixed a problem where static strings or buffers (contained in the
14468 AML code) that are declared as package elements within the ASL
14469 code could cause a fault because the interpreter would attempt to
14470 delete them.  These objects are now marked with the "static
14471 object" flag to prevent any attempt to delete them.
14472
14473 Implemented an interpreter optimization to use operands directly
14474 from the state object instead of extracting the operands to local
14475 variables.  This reduces stack use and code size, and improves
14476 performance.
14477
14478 The module exxface.c was eliminated as it was an unnecessary extra
14479 layer of code.
14480
14481 Current core subsystem library code sizes are shown below.  These
14482 are the code and data sizes for the acpica.lib produced by the
14483 Microsoft Visual C++ 6.0 compiler, and these values do not include
14484 any ACPI driver or OSPM code.  The debug version of the code
14485 includes the full debug trace mechanism -- leading to a much
14486 larger code and data size.  Note that these values will vary
14487 depending on the efficiency of the compiler and the compiler
14488 options used during generation.
14489
14490   Non-Debug Version:  65K Code,   5K Data,   70K Total
14491 (Previously 69K)   Debug Version:     138K Code,  58K Data,  196K
14492 Total  (Previously 195K)
14493
14494 Linux:
14495
14496 Support for ACPI 2.0 64-bit integers has been added.   All ACPI
14497 Integer objects are now 64 bits wide
14498
14499 All Acpi data types and structures are now in lower case.  Only
14500 Acpi macros are upper case for differentiation.
14501
14502  Documentation:
14503
14504 Changes to the external interfaces as described above.
14505
14506  ----------------------------------------
14507 Summary of changes for this label: 08_31_01
14508
14509  ACPI CA Core Subsystem:
14510
14511 A bug with interpreter implementation of the ASL Divide operator
14512 was found and fixed.  The implicit function return value (not the
14513 explicit store operands) was returning the remainder instead of
14514 the quotient.  This was a longstanding bug and it fixes several
14515 known outstanding issues on various platforms.
14516
14517 The ACPI_DEBUG_PRINT and function trace entry/exit macros have
14518 been further optimized for size.  There are 700 invocations of the
14519 DEBUG_PRINT macro alone, so each optimization reduces the size of
14520 the debug version of the subsystem significantly.
14521
14522 A stack trace mechanism has been implemented.  The maximum stack
14523 usage is about 2K on 32-bit platforms.  The debugger command "stat
14524 stack" will display the current maximum stack usage.
14525
14526 All public symbols and global variables within the subsystem are
14527 now prefixed with the string "Acpi".  This keeps all of the
14528 symbols grouped together in a kernel map, and avoids conflicts
14529 with other kernel subsystems.
14530
14531 Most of the internal fixed lookup tables have been moved into the
14532 code segment via the const operator.
14533
14534 Several enhancements have been made to the interpreter to both
14535 reduce the code size and improve performance.
14536
14537 Current core subsystem library code sizes are shown below.  These
14538 are the code and data sizes for the acpica.lib produced by the
14539 Microsoft Visual C++ 6.0 compiler, and these values do not include
14540 any ACPI driver or OSPM code.  The debug version of the code
14541 includes the full debug trace mechanism which contains over 700
14542 invocations of the DEBUG_PRINT macro, 500 function entry macro
14543 invocations, and over 900 function exit macro invocations --
14544 leading to a much larger code and data size.  Note that these
14545 values will vary depending on the efficiency of the compiler and
14546 the compiler options used during generation.
14547
14548         Non-Debug Version:  64K Code,   5K Data,   69K Total
14549 Debug Version:     137K Code,  58K Data,  195K Total
14550
14551  Linux:
14552
14553 Implemented wbinvd() macro, pending a kernel-wide definition.
14554
14555 Fixed /proc/acpi/event to handle poll() and short reads.
14556
14557  ASL Compiler, version X2026:
14558
14559 Fixed a problem introduced in the previous label where the AML
14560
14561 code emitted for package objects produced packages with zero
14562 length.
14563
14564  ----------------------------------------
14565 Summary of changes for this label: 08_16_01
14566
14567 ACPI CA Core Subsystem:
14568
14569 The following ACPI 2.0 ASL operators have been implemented in the
14570 AML interpreter (These are already supported by the Intel ASL
14571 compiler):  ToDecimalString, ToHexString, ToString, ToInteger, and
14572 ToBuffer.  Support for 64-bit AML constants is implemented in the
14573 AML parser, debugger, and disassembler.
14574
14575 The internal memory tracking mechanism (leak detection code) has
14576 been upgraded to reduce the memory overhead (a separate tracking
14577 block is no longer allocated for each memory allocation), and now
14578 supports all of the internal object caches.
14579
14580 The data structures and code for the internal object caches have
14581 been coelesced and optimized so that there is a single cache and
14582 memory list data structure and a single group of functions that
14583 implement generic cache management.  This has reduced the code
14584 size in both the debug and release versions of the subsystem.
14585
14586 The DEBUG_PRINT macro(s) have been optimized for size and replaced
14587 by ACPI_DEBUG_PRINT.  The syntax for this macro is slightly
14588 different, because it generates a single call to an internal
14589 function.  This results in a savings of about 90 bytes per
14590 invocation, resulting in an overall code and data savings of about
14591 16% in the debug version of the subsystem.
14592
14593  Linux:
14594
14595 Fixed C3 disk corruption problems and re-enabled C3 on supporting
14596 machines.
14597
14598 Integrated low-level sleep code by Patrick Mochel.
14599
14600 Further tweaked source code Linuxization.
14601
14602 Other minor fixes.
14603
14604  ASL Compiler:
14605
14606 Support for ACPI 2.0 variable length packages is fixed/completed.
14607
14608 Fixed a problem where the optional length parameter for the ACPI
14609 2.0 ToString operator.
14610
14611 Fixed multiple extraneous error messages when a syntax error is
14612 detected within the declaration line of a control method.
14613
14614  ----------------------------------------
14615 Summary of changes for this label: 07_17_01
14616
14617 ACPI CA Core Subsystem:
14618
14619 Added a new interface named AcpiGetFirmwareTable to obtain any
14620 ACPI table via the ACPI signature.  The interface can be called at
14621 any time during kernel initialization, even before the kernel
14622 virtual memory manager is initialized and paging is enabled.  This
14623 allows kernel subsystems to obtain ACPI tables very early, even
14624 before the ACPI CA subsystem is initialized.
14625
14626 Fixed a problem where Fields defined with the AnyAcc attribute
14627 could be resolved to the incorrect address under the following
14628 conditions: 1) the field width is larger than 8 bits and 2) the
14629 parent operation region is not defined on a DWORD boundary.
14630
14631 Fixed a problem where the interpreter is not being locked during
14632 namespace initialization (during execution of the _INI control
14633 methods), causing an error when an attempt is made to release it
14634 later.
14635
14636 ACPI 2.0 support in the AML Interpreter has begun and will be
14637 ongoing throughout the rest of this year.  In this label, The Mod
14638 operator is implemented.
14639
14640 Added a new data type to contain full PCI addresses named
14641 ACPI_PCI_ID. This structure contains the PCI Segment, Bus, Device,
14642 and Function values.
14643
14644  Linux:
14645
14646 Enhanced the Linux version of the source code to change most
14647 capitalized ACPI type names to lowercase. For example, all
14648 instances of ACPI_STATUS are changed to acpi_status.  This will
14649 result in a large diff, but the change is strictly cosmetic and
14650 aligns the CA code closer to the Linux coding standard.
14651
14652 OSL Interfaces:
14653
14654 The interfaces to the PCI configuration space have been changed to
14655 add the PCI Segment number and to split the single 32-bit combined
14656 DeviceFunction field into two 16-bit fields.  This was
14657 accomplished by moving the four values that define an address in
14658 PCI configuration space (segment, bus, device, and function) to
14659 the new ACPI_PCI_ID structure.
14660
14661 The changes to the PCI configuration space interfaces led to a
14662 reexamination of the complete set of address space access
14663 interfaces for PCI, I/O, and Memory.  The previously existing 18
14664 interfaces have proven difficult to maintain (any small change
14665 must be propagated across at least 6 interfaces) and do not easily
14666 allow for future expansion to 64 bits if necessary.  Also, on some
14667 systems, it would not be appropriate to demultiplex the access
14668 width (8, 16, 32,or 64) before calling the OSL if the
14669 corresponding native OS interfaces contain a similar access width
14670 parameter.  For these reasons, the 18 address space interfaces
14671 have been replaced by these 6 new ones:
14672
14673 AcpiOsReadPciConfiguration
14674 AcpiOsWritePciConfiguration
14675 AcpiOsReadMemory
14676 AcpiOsWriteMemory
14677 AcpiOsReadPort
14678 AcpiOsWritePort
14679
14680 Added a new interface named AcpiOsGetRootPointer to allow the OSL
14681 to perform the platform and/or OS-specific actions necessary to
14682 obtain the ACPI RSDP table pointer.  On IA-32 platforms, this
14683 interface will simply call down to the CA core to perform the low-
14684 memory search for the table.  On IA-64, the RSDP is obtained from
14685 EFI.  Migrating this interface to the OSL allows the CA core to
14686
14687 remain OS and platform independent.
14688
14689 Added a new interface named AcpiOsSignal to provide a generic
14690 "function code and pointer" interface for various miscellaneous
14691 signals and notifications that must be made to the host OS.   The
14692 first such signals are intended to support the ASL Fatal and
14693 Breakpoint operators.  In the latter case, the AcpiOsBreakpoint
14694 interface has been obsoleted.
14695
14696 The definition of the AcpiFormatException interface has been
14697 changed to simplify its use.  The caller no longer must supply a
14698 buffer to the call; A pointer to a const string is now returned
14699 directly.  This allows the call to be easily used in printf
14700 statements, etc. since the caller does not have to manage a local
14701 buffer.
14702
14703
14704  ASL Compiler, Version X2025:
14705
14706 The ACPI 2.0 Switch/Case/Default operators have been implemented
14707 and are fully functional.  They will work with all ACPI 1.0
14708 interpreters, since the operators are simply translated to If/Else
14709 pairs.
14710
14711 The ACPI 2.0 ElseIf operator is implemented and will also work
14712 with 1.0 interpreters, for the same reason.
14713
14714 Implemented support for ACPI 2.0 variable-length packages.  These
14715 packages have a separate opcode, and their size is determined by
14716 the interpreter at run-time.
14717
14718 Documentation The ACPI CA Programmer Reference has been updated to
14719 reflect the new interfaces and changes to existing interfaces.
14720
14721  ------------------------------------------
14722 Summary of changes for this label: 06_15_01
14723
14724  ACPI CA Core Subsystem:
14725
14726 Fixed a problem where a DWORD-accessed field within a Buffer
14727 object would get its byte address inadvertently rounded down to
14728 the nearest DWORD.  Buffers are always Byte-accessible.
14729
14730  ASL Compiler, version X2024:
14731
14732 Fixed a problem where the Switch() operator would either fault or
14733 hang the compiler.  Note however, that the AML code for this ACPI
14734 2.0 operator is not yet implemented.
14735
14736 Compiler uses the new AcpiOsGetTimer interface to obtain compile
14737 timings.
14738
14739 Implementation of the CreateField operator automatically converts
14740 a reference to a named field within a resource descriptor from a
14741 byte offset to a bit offset if required.
14742
14743 Added some missing named fields from the resource descriptor
14744 support. These are the names that are automatically created by the
14745 compiler to reference fields within a descriptor.  They are only
14746 valid at compile time and are not passed through to the AML
14747 interpreter.
14748
14749 Resource descriptor named fields are now typed as Integers and
14750 subject to compile-time typechecking when used in expressions.
14751
14752  ------------------------------------------
14753 Summary of changes for this label: 05_18_01
14754
14755  ACPI CA Core Subsystem:
14756
14757 Fixed a couple of problems in the Field support code where bits
14758 from adjacent fields could be returned along with the proper field
14759 bits. Restructured the field support code to improve performance,
14760 readability and maintainability.
14761
14762 New DEBUG_PRINTP macro automatically inserts the procedure name
14763 into the output, saving hundreds of copies of procedure name
14764 strings within the source, shrinking the memory footprint of the
14765 debug version of the core subsystem.
14766
14767  Source Code Structure:
14768
14769 The source code directory tree was restructured to reflect the
14770 current organization of the component architecture.  Some files
14771 and directories have been moved and/or renamed.
14772
14773  Linux:
14774
14775 Fixed leaking kacpidpc processes.
14776
14777 Fixed queueing event data even when /proc/acpi/event is not
14778 opened.
14779
14780  ASL Compiler, version X2020:
14781
14782 Memory allocation performance enhancement - over 24X compile time
14783 improvement on large ASL files.  Parse nodes and namestring
14784 buffers are now allocated from a large internal compiler buffer.
14785
14786 The temporary .SRC file is deleted unless the "-s" option is
14787 specified
14788
14789 The "-d" debug output option now sends all output to the .DBG file
14790 instead of the console.
14791
14792 "External" second parameter is now optional
14793
14794 "ElseIf" syntax now properly allows the predicate
14795
14796 Last operand to "Load" now recognized as a Target operand
14797
14798 Debug object can now be used anywhere as a normal object.
14799
14800 ResourceTemplate now returns an object of type BUFFER
14801
14802 EISAID now returns an object of type INTEGER
14803
14804 "Index" now works with a STRING operand
14805
14806 "LoadTable" now accepts optional parameters
14807
14808 "ToString" length parameter is now optional
14809
14810 "Interrupt (ResourceType," parse error fixed.
14811
14812 "Register" with a user-defined region space parse error fixed
14813
14814 Escaped backslash at the end of a string ("\\") scan/parse error
14815 fixed
14816
14817 "Revision" is now an object of type INTEGER.
14818
14819
14820
14821 ------------------------------------------
14822 Summary of changes for this label: 05_02_01
14823
14824 Linux:
14825
14826 /proc/acpi/event now blocks properly.
14827
14828 Removed /proc/sys/acpi. You can still dump your DSDT from
14829 /proc/acpi/dsdt.
14830
14831  ACPI CA Core Subsystem:
14832
14833 Fixed a problem introduced in the previous label where some of the
14834 "small" resource descriptor types were not recognized.
14835
14836 Improved error messages for the case where an ASL Field is outside
14837 the range of the parent operation region.
14838
14839  ASL Compiler, version X2018:
14840
14841
14842 Added error detection for ASL Fields that extend beyond the length
14843 of the parent operation region (only if the length of the region
14844 is known at compile time.)  This includes fields that have a
14845 minimum access width that is smaller than the parent region, and
14846 individual field units that are partially or entirely beyond the
14847 extent of the parent.
14848
14849
14850
14851 ------------------------------------------
14852 Summary of changes for this label: 04_27_01
14853
14854  ACPI CA Core Subsystem:
14855
14856 Fixed a problem where the namespace mutex could be released at the
14857 wrong time during execution of AcpiRemoveAddressSpaceHandler.
14858
14859 Added optional thread ID output for debug traces, to simplify
14860 debugging of multiple threads.  Added context switch notification
14861 when the debug code realizes that a different thread is now
14862 executing ACPI code.
14863
14864 Some additional external data types have been prefixed with the
14865 string "ACPI_" for consistency.  This may effect existing code.
14866 The data types affected are the external callback typedefs - e.g.,
14867
14868 WALK_CALLBACK becomes ACPI_WALK_CALLBACK.
14869
14870  Linux:
14871
14872 Fixed an issue with the OSL semaphore implementation where a
14873 thread was waking up with an error from receiving a SIGCHLD
14874 signal.
14875
14876 Linux version of ACPI CA now uses the system C library for string
14877 manipulation routines instead of a local implementation.
14878
14879 Cleaned up comments and removed TBDs.
14880
14881  ASL Compiler, version X2017:
14882
14883 Enhanced error detection and reporting for all file I/O
14884 operations.
14885
14886  Documentation:
14887
14888 Programmer Reference updated to version 1.06.
14889
14890
14891
14892 ------------------------------------------
14893 Summary of changes for this label: 04_13_01
14894
14895  ACPI CA Core Subsystem:
14896
14897 Restructured support for BufferFields and RegionFields.
14898 BankFields support is now fully operational.  All known 32-bit
14899 limitations on field sizes have been removed.  Both BufferFields
14900 and (Operation) RegionFields are now supported by the same field
14901 management code.
14902
14903 Resource support now supports QWORD address and IO resources. The
14904 16/32/64 bit address structures and the Extended IRQ structure
14905 have been changed to properly handle Source Resource strings.
14906
14907 A ThreadId of -1 is now used to indicate a "mutex not acquired"
14908 condition internally and must never be returned by AcpiOsThreadId.
14909 This reserved value was changed from 0 since Unix systems allow a
14910 thread ID of 0.
14911
14912 Linux:
14913
14914 Driver code reorganized to enhance portability
14915
14916 Added a kernel configuration option to control ACPI_DEBUG
14917
14918 Fixed the EC driver to honor _GLK.
14919
14920 ASL Compiler, version X2016:
14921
14922 Fixed support for the "FixedHw" keyword.  Previously, the FixedHw
14923 address space was set to 0, not 0x7f as it should be.
14924
14925  ------------------------------------------
14926 Summary of changes for this label: 03_13_01
14927
14928  ACPI CA Core Subsystem:
14929
14930 During ACPI initialization, the _SB_._INI method is now run if
14931 present.
14932
14933 Notify handler fix - notifies are deferred until the parent method
14934 completes execution.  This fixes the "mutex already acquired"
14935 issue seen occasionally.
14936
14937 Part of the "implicit conversion" rules in ACPI 2.0 have been
14938 found to cause compatibility problems with existing ASL/AML.  The
14939 convert "result-to-target-type" implementation has been removed
14940 for stores to method Args and Locals.  Source operand conversion
14941 is still fully implemented.  Possible changes to ACPI 2.0
14942 specification pending.
14943
14944 Fix to AcpiRsCalculatePciRoutingTableLength to return correct
14945 length.
14946
14947 Fix for compiler warnings for 64-bit compiles.
14948
14949  Linux:
14950
14951 /proc output aligned for easier parsing.
14952
14953 Release-version compile problem fixed.
14954
14955 New kernel configuration options documented in Configure.help.
14956
14957 IBM 600E - Fixed Sleep button may generate "Invalid <NULL>
14958 context" message.
14959
14960  OSPM:
14961
14962 Power resource driver integrated with bus manager.
14963
14964 Fixed kernel fault during active cooling for thermal zones.
14965
14966 Source Code:
14967
14968 The source code tree has been restructured.
14969
14970
14971
14972 ------------------------------------------
14973 Summary of changes for this label: 03_02_01
14974
14975  Linux OS Services Layer (OSL):
14976
14977 Major revision of all Linux-specific code.
14978
14979 Modularized all ACPI-specific drivers.
14980
14981 Added new thermal zone and power resource drivers.
14982
14983 Revamped /proc interface (new functionality is under /proc/acpi).
14984
14985 New kernel configuration options.
14986
14987  Linux known issues:
14988
14989 New kernel configuration options not documented in Configure.help
14990 yet.
14991
14992
14993 Module dependencies not currently implemented. If used, they
14994 should be loaded in this order: busmgr, power, ec, system,
14995 processor, battery, ac_adapter, button, thermal.
14996
14997 Modules will not load if CONFIG_MODVERSION is set.
14998
14999 IBM 600E - entering S5 may reboot instead of shutting down.
15000
15001 IBM 600E - Sleep button may generate "Invalid <NULL> context"
15002 message.
15003
15004 Some systems may fail with "execution mutex already acquired"
15005 message.
15006
15007  ACPI CA Core Subsystem:
15008
15009 Added a new OSL Interface, AcpiOsGetThreadId.  This was required
15010 for the  deadlock detection code. Defined to return a non-zero, 32-
15011 bit thread ID for the currently executing thread.  May be a non-
15012 zero constant integer on single-thread systems.
15013
15014 Implemented deadlock detection for internal subsystem mutexes.  We
15015 may add conditional compilation for this code (debug only) later.
15016
15017 ASL/AML Mutex object semantics are now fully supported.  This
15018 includes multiple acquires/releases by owner and support for the
15019
15020 Mutex SyncLevel parameter.
15021
15022 A new "Force Release" mechanism automatically frees all ASL
15023 Mutexes that have been acquired but not released when a thread
15024 exits the interpreter.  This forces conformance to the ACPI spec
15025 ("All mutexes must be released when an invocation exits") and
15026 prevents deadlocked ASL threads.  This mechanism can be expanded
15027 (later) to monitor other resource acquisitions if OEM ASL code
15028 continues to misbehave (which it will).
15029
15030 Several new ACPI exception codes have been added for the Mutex
15031 support.
15032
15033 Recursive method calls are now allowed and supported (the ACPI
15034 spec does in fact allow recursive method calls.)  The number of
15035 recursive calls is subject to the restrictions imposed by the
15036 SERIALIZED method keyword and SyncLevel (ACPI 2.0) method
15037 parameter.
15038
15039 Implemented support for the SyncLevel parameter for control
15040 methods (ACPI 2.0 feature)
15041
15042 Fixed a deadlock problem when multiple threads attempted to use
15043 the interpreter.
15044
15045 Fixed a problem where the string length of a String package
15046 element was not always set in a package returned from
15047 AcpiEvaluateObject.
15048
15049 Fixed a problem where the length of a String package element was
15050 not always included in the length of the overall package returned
15051 from AcpiEvaluateObject.
15052
15053 Added external interfaces (Acpi*) to the ACPI debug memory
15054 manager.  This manager keeps a list of all outstanding
15055 allocations, and can therefore detect memory leaks and attempts to
15056 free memory blocks more than once. Useful for code such as the
15057 power manager, etc.  May not be appropriate for device drivers.
15058 Performance with the debug code enabled is slow.
15059
15060 The ACPI Global Lock is now an optional hardware element.
15061
15062  ASL Compiler Version X2015:
15063
15064 Integrated changes to allow the compiler to be generated on
15065 multiple platforms.
15066
15067 Linux makefile added to generate the compiler on Linux
15068
15069  Source Code:
15070
15071 All platform-specific headers have been moved to their own
15072 subdirectory, Include/Platform.
15073
15074 New source file added, Interpreter/ammutex.c
15075
15076 New header file, Include/acstruct.h
15077
15078  Documentation:
15079
15080 The programmer reference has been updated for the following new
15081 interfaces: AcpiOsGetThreadId AcpiAllocate AcpiCallocate AcpiFree
15082
15083  ------------------------------------------
15084 Summary of changes for this label: 02_08_01
15085
15086 Core ACPI CA Subsystem: Fixed a problem where an error was
15087 incorrectly returned if the return resource buffer was larger than
15088 the actual data (in the resource interfaces).
15089
15090 References to named objects within packages are resolved to the
15091
15092 full pathname string before packages are returned directly (via
15093 the AcpiEvaluateObject interface) or indirectly via the resource
15094 interfaces.
15095
15096 Linux OS Services Layer (OSL):
15097
15098 Improved /proc battery interface.
15099
15100
15101 Added C-state debugging output and other miscellaneous fixes.
15102
15103 ASL Compiler Version X2014:
15104
15105 All defined method arguments can now be used as local variables,
15106 including the ones that are not actually passed in as parameters.
15107 The compiler tracks initialization of the arguments and issues an
15108 exception if they are used without prior assignment (just like
15109 locals).
15110
15111 The -o option now specifies a filename prefix that is used for all
15112 output files, including the AML output file.  Otherwise, the
15113 default behavior is as follows:  1) the AML goes to the file
15114 specified in the DSDT.  2) all other output files use the input
15115 source filename as the base.
15116
15117  ------------------------------------------
15118 Summary of changes for this label: 01_25_01
15119
15120 Core ACPI CA Subsystem: Restructured the implementation of object
15121 store support within the  interpreter.  This includes support for
15122 the Store operator as well  as any ASL operators that include a
15123 target operand.
15124
15125 Partially implemented support for Implicit Result-to-Target
15126 conversion. This is when a result object is converted on the fly
15127 to the type of  an existing target object.  Completion of this
15128 support is pending  further analysis of the ACPI specification
15129 concerning this matter.
15130
15131 CPU-specific code has been removed from the subsystem (hardware
15132 directory).
15133
15134 New Power Management Timer functions added
15135
15136 Linux OS Services Layer (OSL): Moved system state transition code
15137 to the core, fixed it, and modified  Linux OSL accordingly.
15138
15139 Fixed C2 and C3 latency calculations.
15140
15141
15142 We no longer use the compilation date for the version message on
15143 initialization, but retrieve the version from AcpiGetSystemInfo().
15144
15145 Incorporated for fix Sony VAIO machines.
15146
15147 Documentation:  The Programmer Reference has been updated and
15148 reformatted.
15149
15150
15151 ASL Compiler:  Version X2013: Fixed a problem where the line
15152 numbering and error reporting could get out  of sync in the
15153 presence of multiple include files.
15154
15155  ------------------------------------------
15156 Summary of changes for this label: 01_15_01
15157
15158 Core ACPI CA Subsystem:
15159
15160 Implemented support for type conversions in the execution of the
15161 ASL  Concatenate operator (The second operand is converted to
15162 match the type  of the first operand before concatenation.)
15163
15164 Support for implicit source operand conversion is partially
15165 implemented.   The ASL source operand types Integer, Buffer, and
15166 String are freely  interchangeable for most ASL operators and are
15167 converted by the interpreter  on the fly as required.  Implicit
15168 Target operand conversion (where the  result is converted to the
15169 target type before storing) is not yet implemented.
15170
15171 Support for 32-bit and 64-bit BCD integers is implemented.
15172
15173 Problem fixed where a field read on an aligned field could cause a
15174 read  past the end of the field.
15175
15176 New exception, AE_AML_NO_RETURN_VALUE, is returned when a method
15177 does not return a value, but the caller expects one.  (The ASL
15178 compiler flags this as a warning.)
15179
15180 ASL Compiler:
15181
15182 Version X2011:
15183 1. Static typechecking of all operands is implemented. This
15184 prevents the use of invalid objects (such as using a Package where
15185 an Integer is required) at compile time instead of at interpreter
15186 run-time.
15187 2. The ASL source line is printed with ALL errors and warnings.
15188 3. Bug fix for source EOF without final linefeed.
15189 4. Debug option is split into a parse trace and a namespace trace.
15190 5. Namespace output option (-n) includes initial values for
15191 integers and strings.
15192 6. Parse-only option added for quick syntax checking.
15193 7. Compiler checks for duplicate ACPI name declarations
15194
15195 Version X2012:
15196 1. Relaxed typechecking to allow interchangeability between
15197 strings, integers, and buffers.  These types are now converted by
15198 the interpreter at runtime.
15199 2. Compiler reports time taken by each internal subsystem in the
15200 debug         output file.
15201
15202
15203  ------------------------------------------
15204 Summary of changes for this label: 12_14_00
15205
15206 ASL Compiler:
15207
15208 This is the first official release of the compiler. Since the
15209 compiler requires elements of the Core Subsystem, this label
15210 synchronizes everything.
15211
15212 ------------------------------------------
15213 Summary of changes for this label: 12_08_00
15214
15215
15216 Fixed a problem where named references within the ASL definition
15217 of both OperationRegions and CreateXXXFields did not work
15218 properly.  The symptom was an AE_AML_OPERAND_TYPE during
15219 initialization of the region/field. This is similar (but not
15220 related internally) to the problem that was fixed in the last
15221 label.
15222
15223 Implemented both 32-bit and 64-bit support for the BCD ASL
15224 functions ToBCD and FromBCD.
15225
15226 Updated all legal headers to include "2000" in the copyright
15227 years.
15228
15229  ------------------------------------------
15230 Summary of changes for this label: 12_01_00
15231
15232 Fixed a problem where method invocations within the ASL definition
15233 of both OperationRegions and CreateXXXFields did not work
15234 properly.  The symptom was an AE_AML_OPERAND_TYPE during
15235 initialization of the region/field:
15236
15237   nsinit-0209: AE_AML_OPERAND_TYPE while getting region arguments
15238 [DEBG]   ammonad-0284: Exec_monadic2_r/Not: bad operand(s)
15239 (0x3005)
15240
15241 Fixed a problem where operators with more than one nested
15242 subexpression would fail.  The symptoms were varied, by mostly
15243 AE_AML_OPERAND_TYPE errors.  This was actually a rather serious
15244 problem that has gone unnoticed until now.
15245
15246   Subtract (Add (1,2), Multiply (3,4))
15247
15248 Fixed a problem where AcpiGetHandle didn't quite get fixed in the
15249 previous build (The prefix part of a relative path was handled
15250 incorrectly).
15251
15252 Fixed a problem where Operation Region initialization failed if
15253 the operation region name was a "namepath" instead of a simple
15254 "nameseg". Symptom was an AE_NO_OPERAND error.
15255
15256 Fixed a problem where an assignment to a local variable via the
15257 indirect RefOf mechanism only worked for the first such
15258 assignment.  Subsequent assignments were ignored.
15259
15260  ------------------------------------------
15261 Summary of changes for this label: 11_15_00
15262
15263 ACPI 2.0 table support with backwards support for ACPI 1.0 and the
15264 0.71 extensions.  Note: although we can read ACPI 2.0 BIOS tables,
15265 the AML  interpreter does NOT have support for the new 2.0 ASL
15266 grammar terms at this time.
15267
15268 All ACPI hardware access is via the GAS structures in the ACPI 2.0
15269 FADT.
15270
15271 All physical memory addresses across all platforms are now 64 bits
15272 wide. Logical address width remains dependent on the platform
15273 (i.e., "void *").
15274
15275 AcpiOsMapMemory interface changed to a 64-bit physical address.
15276
15277 The AML interpreter integer size is now 64 bits, as per the ACPI
15278 2.0 specification.
15279
15280 For backwards compatibility with ACPI 1.0, ACPI tables with a
15281 revision number less than 2 use 32-bit integers only.
15282
15283 Fixed a problem where the evaluation of OpRegion operands did not
15284 always resolve them to numbers properly.
15285
15286 ------------------------------------------
15287 Summary of changes for this label: 10_20_00
15288
15289 Fix for CBN_._STA issue.  This fix will allow correct access to
15290 CBN_ OpRegions when the _STA returns 0x8.
15291
15292 Support to convert ACPI constants (Ones, Zeros, One) to actual
15293 values before a package object is returned
15294
15295 Fix for method call as predicate to if/while construct causing
15296 incorrect if/while behavior
15297
15298 Fix for Else block package lengths sometimes calculated wrong (if
15299 block > 63 bytes)
15300
15301 Fix for Processor object length field, was always zero
15302
15303 Table load abort if FACP sanity check fails
15304
15305 Fix for problem with Scope(name) if name already exists
15306
15307 Warning emitted if a named object referenced cannot be found
15308 (resolved) during method execution.
15309
15310
15311
15312
15313
15314 ------------------------------------------
15315 Summary of changes for this label: 9_29_00
15316
15317 New table initialization interfaces: AcpiInitializeSubsystem no
15318 longer has any parameters AcpiFindRootPointer - Find the RSDP (if
15319 necessary) AcpiLoadTables (RSDP) - load all tables found at RSDP-
15320 >RSDT Obsolete Interfaces AcpiLoadFirmwareTables - replaced by
15321 AcpiLoadTables
15322
15323 Note: These interface changes require changes to all existing OSDs
15324
15325 The PCI_Config default address space handler is always installed
15326 at the root namespace object.
15327
15328 -------------------------------------------
15329 Summary of changes for this label: 09_15_00
15330
15331 The new initialization architecture is implemented.  New
15332 interfaces are: AcpiInitializeSubsystem (replaces AcpiInitialize)
15333 AcpiEnableSubsystem Obsolete Interfaces: AcpiLoadNamespace
15334
15335 (Namespace is automatically loaded when a table is loaded)
15336
15337 The ACPI_OPERAND_OBJECT has been optimized to shrink its size from
15338 52 bytes to 32 bytes.  There is usually one of these for every
15339 namespace object, so the memory savings is significant.
15340
15341 Implemented just-in-time evaluation of the CreateField operators.
15342
15343 Bug fixes for IA-64 support have been integrated.
15344
15345 Additional code review comments have been implemented
15346
15347 The so-called "third pass parse" has been replaced by a final walk
15348 through the namespace to initialize all operation regions (address
15349 spaces) and fields that have not yet been initialized during the
15350 execution of the various _INI and REG methods.
15351
15352 New file - namespace/nsinit.c
15353
15354 -------------------------------------------
15355 Summary of changes for this label: 09_01_00
15356
15357 Namespace manager data structures have been reworked to change the
15358 primary  object from a table to a single object.  This has
15359 resulted in dynamic memory  savings of 3X within the namespace and
15360 2X overall in the ACPI CA subsystem.
15361
15362 Fixed problem where the call to AcpiEvFindPciRootBuses was
15363 inadvertently left  commented out.
15364
15365 Reduced the warning count when generating the source with the GCC
15366 compiler.
15367
15368 Revision numbers added to each module header showing the
15369 SourceSafe version of the file.  Please refer to this version
15370 number when giving us feedback or comments on individual modules.
15371
15372 The main object types within the subsystem have been renamed to
15373 clarify their  purpose:
15374
15375 ACPI_INTERNAL_OBJECT -> ACPI_OPERAND_OBJECT
15376 ACPI_GENERIC_OP -> ACPI_PARSE_OBJECT
15377 ACPI_NAME_TABLE_ENTRY -> ACPI_NAMESPACE_NODE
15378
15379 NOTE: no changes to the initialization sequence are included in
15380 this label.
15381
15382 -------------------------------------------
15383 Summary of changes for this label: 08_23_00
15384
15385 Fixed problem where TerminateControlMethod was being called
15386 multiple times per  method
15387
15388 Fixed debugger problem where single stepping caused a semaphore to
15389 be  oversignalled
15390
15391 Improved performance through additional parse object caching -
15392 added  ACPI_EXTENDED_OP type
15393
15394 -------------------------------------------
15395 Summary of changes for this label: 08_10_00
15396
15397 Parser/Interpreter integration:  Eliminated the creation of
15398 complete parse trees  for ACPI tables and control methods.
15399 Instead, parse subtrees are created and  then deleted as soon as
15400 they are processed (Either entered into the namespace or  executed
15401 by the interpreter).  This reduces the use of dynamic kernel
15402 memory  significantly. (about 10X)
15403
15404 Exception codes broken into classes and renumbered.  Be sure to
15405 recompile all  code that includes acexcep.h.  Hopefully we won't
15406 have to renumber the codes  again now that they are split into
15407 classes (environment, programmer, AML code,  ACPI table, and
15408 internal).
15409
15410 Fixed some additional alignment issues in the Resource Manager
15411 subcomponent
15412
15413 Implemented semaphore tracking in the AcpiExec utility, and fixed
15414 several places  where mutexes/semaphores were being unlocked
15415 without a corresponding lock  operation.  There are no known
15416 semaphore or mutex "leaks" at this time.
15417
15418 Fixed the case where an ASL Return operator is used to return an
15419 unnamed  package.
15420
15421 -------------------------------------------
15422 Summary of changes for this label: 07_28_00
15423
15424 Fixed a problem with the way addresses were calculated in
15425 AcpiAmlReadFieldData()  and AcpiAmlWriteFieldData(). This problem
15426 manifested itself when a Field was  created with WordAccess or
15427 DwordAccess, but the field unit defined within the  Field was less
15428
15429 than a Word or Dword.
15430
15431 Fixed a problem in AmlDumpOperands() module's loop to pull
15432 operands off of the  operand stack to display information. The
15433 problem manifested itself as a TLB  error on 64-bit systems when
15434 accessing an operand stack with two or more  operands.
15435
15436 Fixed a problem with the PCI configuration space handlers where
15437 context was  getting confused between accesses. This required a
15438 change to the generic address  space handler and address space
15439 setup definitions. Handlers now get both a  global handler context
15440 (this is the one passed in by the user when executing
15441 AcpiInstallAddressSpaceHandler() and a specific region context
15442 that is unique to  each region (For example, the _ADR, _SEG and
15443 _BBN values associated with a  specific region). The generic
15444 function definitions have changed to the  following:
15445
15446 typedef ACPI_STATUS (*ADDRESS_SPACE_HANDLER) ( UINT32 Function,
15447 UINT32 Address, UINT32 BitWidth, UINT32 *Value, void
15448 *HandlerContext, // This used to be void *Context void
15449 *RegionContext); // This is an additional parameter
15450
15451 typedef ACPI_STATUS (*ADDRESS_SPACE_SETUP) ( ACPI_HANDLE
15452 RegionHandle, UINT32 Function, void *HandlerContext,  void
15453 **RegionContext); // This used to be **ReturnContext
15454
15455 -------------------------------------------
15456 Summary of changes for this label: 07_21_00
15457
15458 Major file consolidation and rename.  All files within the
15459 interpreter have been  renamed as well as most header files.  This
15460 was done to prevent collisions with  existing files in the host
15461 OSs -- filenames such as "config.h" and "global.h"  seem to be
15462 quite common.  The VC project files have been updated.  All
15463 makefiles  will require modification.
15464
15465 The parser/interpreter integration continues in Phase 5 with the
15466 implementation  of a complete 2-pass parse (the AML is parsed
15467 twice) for each table;  This  avoids the construction of a huge
15468 parse tree and therefore reduces the amount of  dynamic memory
15469 required by the subsystem.  Greater use of the parse object cache
15470 means that performance is unaffected.
15471
15472 Many comments from the two code reviews have been rolled in.
15473
15474 The 64-bit alignment support is complete.
15475
15476 -------------------------------------------
15477 Summary of changes for this label: 06_30_00
15478
15479 With a nod and a tip of the hat to the technology of yesteryear,
15480 we've added  support in the source code for 80 column output
15481 devices.  The code is now mostly  constrained to 80 columns or
15482 less to support environments and editors that 1)  cannot display
15483 or print more than 80 characters on a single line, and 2) cannot
15484 disable line wrapping.
15485
15486 A major restructuring of the namespace data structure has been
15487 completed.  The  result is 1) cleaner and more
15488 understandable/maintainable code, and 2) a  significant reduction
15489 in the dynamic memory requirement for each named ACPI  object
15490 (almost half).
15491
15492 -------------------------------------------
15493 Summary of changes for this label: 06_23_00
15494
15495 Linux support has been added.  In order to obtain approval to get
15496 the ACPI CA  subsystem into the Linux kernel, we've had to make
15497 quite a few changes to the  base subsystem that will affect all
15498 users (all the changes are generic and OS- independent).  The
15499 effects of these global changes have been somewhat far  reaching.
15500 Files have been merged and/or renamed and interfaces have been
15501 renamed.   The major changes are described below.
15502
15503 Osd* interfaces renamed to AcpiOs* to eliminate namespace
15504 pollution/confusion  within our target kernels.  All OSD
15505 interfaces must be modified to match the new  naming convention.
15506
15507 Files merged across the subsystem.  A number of the smaller source
15508 and header  files have been merged to reduce the file count and
15509 increase the density of the  existing files.  There are too many
15510 to list here.  In general, makefiles that  call out individual
15511 files will require rebuilding.
15512
15513 Interpreter files renamed.  All interpreter files now have the
15514 prefix am*  instead of ie* and is*.
15515
15516 Header files renamed:  The acapi.h file is now acpixf.h.  The
15517 acpiosd.h file is  now acpiosxf.h.  We are removing references to
15518 the acronym "API" since it is  somewhat windowsy. The new name is
15519 "external interface" or xface or xf in the  filenames.j
15520
15521
15522 All manifest constants have been forced to upper case (some were
15523 mixed case.)   Also, the string "ACPI_" has been prepended to many
15524 (not all) of the constants,  typedefs, and structs.
15525
15526 The globals "DebugLevel" and "DebugLayer" have been renamed
15527 "AcpiDbgLevel" and  "AcpiDbgLayer" respectively.
15528
15529 All other globals within the subsystem are now prefixed with
15530 "AcpiGbl_" Internal procedures within the subsystem are now
15531 prefixed with "Acpi" (with only  a few exceptions).  The original
15532 two-letter abbreviation for the subcomponent  remains after "Acpi"
15533 - for example, CmCallocate became AcpiCmCallocate.
15534
15535 Added a source code translation/conversion utility.  Used to
15536 generate the Linux  source code, it can be modified to generate
15537 other types of source as well. Can  also be used to cleanup
15538 existing source by removing extraneous spaces and blank  lines.
15539 Found in tools/acpisrc/*
15540
15541 OsdUnMapMemory was renamed to OsdUnmapMemory and then
15542 AcpiOsUnmapMemory.  (UnMap  became Unmap).
15543
15544 A "MaxUnits" parameter has been added to AcpiOsCreateSemaphore.
15545 When set to  one, this indicates that the caller wants to use the
15546
15547 semaphore as a mutex, not a  counting semaphore.  ACPI CA uses
15548 both types.  However, implementers of this  call may want to use
15549 different OS primitives depending on the type of semaphore
15550 requested.  For example, some operating systems provide separate
15551
15552 "mutex" and  "semaphore" interfaces - where the mutex interface is
15553 much faster because it  doesn't have all the overhead of a full
15554 semaphore implementation.
15555
15556 Fixed a deadlock problem where a method that accesses the PCI
15557 address space can  block forever if it is the first access to the
15558 space.
15559
15560 -------------------------------------------
15561 Summary of changes for this label: 06_02_00
15562
15563 Support for environments that cannot handle unaligned data
15564 accesses (e.g.  firmware and OS environments devoid of alignment
15565 handler technology namely  SAL/EFI and the IA-64 Linux kernel) has
15566 been added (via configurable macros) in  these three areas: -
15567 Transfer of data from the raw AML byte stream is done via byte
15568 moves instead of    word/dword/qword moves. - External objects are
15569 aligned within the user buffer, including package   elements (sub-
15570 objects). - Conversion of name strings to UINT32 Acpi Names is now
15571 done byte-wise.
15572
15573 The Store operator was modified to mimic Microsoft's
15574 implementation when storing  to a Buffer Field.
15575
15576 Added a check of the BM_STS bit before entering C3.
15577
15578 The methods subdirectory has been obsoleted and removed.  A new
15579 file, cmeval.c  subsumes the functionality.
15580
15581 A 16-bit (DOS) version of AcpiExec has been developed.  The
15582 makefile is under  the acpiexec directory.