]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/contrib/dev/acpica/changes.txt
MFV: less v458.
[FreeBSD/FreeBSD.git] / sys / contrib / dev / acpica / changes.txt
1 ----------------------------------------
2 18 April 2013. Summary of changes for version 20130418:
3
4 This release is available at https://acpica.org/downloads
5
6
7 1) ACPICA kernel-resident subsystem:
8
9 Fixed a possible buffer overrun during some rare but specific field unit 
10 read operations. This overrun can only happen if the DSDT version is 1 -- 
11 meaning that all AML integers are 32 bits -- and the field length is 
12 between 33 and 55 bits long. During the read, an internal buffer object is 
13 created for the field unit because the field is larger than an integer (32 
14 bits). However, in this case, the buffer will be incorrectly written 
15 beyond the end because the buffer length is less than the internal minimum 
16 of 64 bits (8 bytes) long. The buffer will be either 5, 6, or 7 bytes 
17 long, but a full 8 bytes will be written.
18
19 Updated the Embedded Controller "orphan" _REG method support. This refers 
20 to _REG methods under the EC device that have no corresponding operation 
21 region. This is allowed by the ACPI specification. This update removes a 
22 dependency on the existence an ECDT table. It will execute an orphan _REG 
23 method as long as the operation region handler for the EC is installed at 
24 the EC device node and not the namespace root. Rui Zhang (original 
25 update), Bob Moore (update/integrate).
26
27 Implemented run-time argument typechecking for all predefined ACPI names 
28 (_STA, _BIF, etc.) This change performs object typechecking on all 
29 incoming arguments for all predefined names executed via 
30 AcpiEvaluateObject. This ensures that ACPI-related device drivers are 
31 passing correct object types as well as the correct number of arguments 
32 (therefore identifying any issues immediately). Also, the ASL/namespace 
33 definition of the predefined name is checked against the ACPI 
34 specification for the proper argument count. Adds one new file, 
35 nsarguments.c
36
37 Changed an exception code for the ASL UnLoad() operator. Changed the 
38 exception code for the case where the input DdbHandle is invalid, from 
39 AE_BAD_PARAMETER to the more appropriate AE_AML_OPERAND_TYPE.
40
41 Unix/Linux makefiles: Removed the use of the -O2 optimization flag in the 
42 global makefile. The use of this flag causes compiler errors on earlier 
43 versions of GCC, so it has been removed for compatibility.
44
45 Miscellaneous cleanup:
46 1) Removed some unused/obsolete macros
47 2) Fixed a possible memory leak in the _OSI support
48 3) Removed an unused variable in the predefined name support
49 4) Windows OSL: remove obsolete reference to a memory list field
50
51 Example Code and Data Size: These are the sizes for the OS-independent 
52 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
53 debug version of the code includes the debug output trace mechanism and 
54 has a much larger code and data size.
55
56   Current Release:
57     Non-Debug Version:  95.2K Code, 26.4K Data, 121.6K Total
58     Debug Version:     183.0K Code, 76.0K Data, 259.0K Total
59   Previous Release:
60     Non-Debug Version:  95.6K Code, 26.8K Data, 122.4K Total
61     Debug Version:     183.5K Code, 76.6K Data, 260.1K Total
62
63
64 2) iASL Compiler/Disassembler and Tools:
65
66 AcpiExec: Added installation of a handler for the SystemCMOS address 
67 space. This prevents control method abort if a method accesses this space.
68
69 AcpiExec: Added support for multiple EC devices, and now install EC 
70 operation region handler(s) at the actual EC device instead of the 
71 namespace root. This reflects the typical behavior of host operating 
72 systems.
73
74 AcpiExec: Updated to ensure that all operation region handlers are 
75 installed before the _REG methods are executed. This prevents a _REG 
76 method from aborting if it accesses an address space has no handler. 
77 AcpiExec installs a handler for every possible address space.
78
79 Debugger: Enhanced the "handlers" command to display non-root handlers. 
80 This change enhances the handlers command to display handlers associated 
81 with individual devices throughout the namespace, in addition to the 
82 currently supported display of handlers associated with the root namespace 
83 node.
84
85 ASL Test Suite: Several test suite errors have been identified and 
86 resolved, reducing the total error count during execution. Chao Guan.
87
88 ----------------------------------------
89 28 March 2013. Summary of changes for version 20130328:
90
91 1) ACPICA kernel-resident subsystem:
92
93 Fixed several possible race conditions with the internal object reference 
94 counting mechanism. Some of the external ACPICA interfaces update object 
95 reference counts without holding the interpreter or namespace lock. This 
96 change adds a spinlock to protect reference count updates on the internal 
97 ACPICA objects. Reported by and with assistance from Andriy Gapon 
98 (avg@FreeBSD.org).
99
100 FADT support: Removed an extraneous warning for very large GPE register 
101 sets. This change removes a size mismatch warning if the legacy length 
102 field for a GPE register set is larger than the 64-bit GAS structure can 
103 accommodate. GPE register sets can be larger than the 255-bit width 
104 limitation of the GAS structure. Linn Crosetto (linn@hp.com).
105
106 _OSI Support: handle any errors from AcpiOsAcquireMutex. Check for error 
107 return from this interface. Handles a possible timeout case if 
108 ACPI_WAIT_FOREVER is modified by the host to be a value less than 
109 "forever". Jung-uk Kim.
110
111 Predefined name support: Add allowed/required argument type information to 
112 the master predefined info table. This change adds the infrastructure to 
113 enable typechecking on incoming arguments for all predefined 
114 methods/objects. It does not actually contain the code that will fully 
115 utilize this information, this is still under development. Also condenses 
116 some duplicate code for the predefined names into a new module, 
117 utilities/utpredef.c
118
119 Example Code and Data Size: These are the sizes for the OS-independent 
120 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
121 debug version of the code includes the debug output trace mechanism and 
122 has a much larger code and data size.
123
124   Previous Release:
125     Non-Debug Version:  95.0K Code, 25.9K Data, 120.9K Total
126     Debug Version:     182.9K Code, 75.6K Data, 258.5K Total
127   Current Release:
128     Non-Debug Version:  95.2K Code, 26.4K Data, 121.6K Total
129     Debug Version:     183.0K Code, 76.0K Data, 259.0K Total
130
131
132 2) iASL Compiler/Disassembler and Tools:
133
134 iASL: Implemented a new option to simplify the development of ACPI-related 
135 BIOS code. Adds support for a new "offset table" output file. The -so 
136 option will create a C table containing the AML table offsets of various 
137 named objects in the namespace so that BIOS code can modify them easily at 
138 boot time. This can simplify BIOS runtime code by eliminating expensive 
139 searches for "magic values", enhancing boot times and adding greater 
140 reliability. With assistance from Lee Hamel.
141
142 iASL: Allow additional predefined names to return zero-length packages. 
143 Now, all predefined names that are defined by the ACPI specification to 
144 return a "variable-length package of packages" are allowed to return a 
145 zero length top-level package. This allows the BIOS to tell the host that 
146 the requested feature is not supported, and supports existing BIOS/ASL 
147 code and practices.
148
149 iASL: Changed the "result not used" warning to an error. This is the case 
150 where an ASL operator is effectively a NOOP because the result of the 
151 operation is not stored anywhere. For example:
152     Add (4, Local0)
153 There is no target (missing 3rd argument), nor is the function return 
154 value used. This is potentially a very serious problem -- since the code 
155 was probably intended to do something, but for whatever reason, the value 
156 was not stored. Therefore, this issue has been upgraded from a warning to 
157 an error.
158
159 AcpiHelp: Added allowable/required argument types to the predefined names 
160 info display. This feature utilizes the recent update to the predefined 
161 names table (above).
162
163 ----------------------------------------
164 14 February 2013. Summary of changes for version 20130214:
165
166 1) ACPICA Kernel-resident Subsystem:
167
168 Fixed a possible regression on some hosts: Reinstated the safe return 
169 macros (return_ACPI_STATUS, etc.) that ensure that the argument is 
170 evaluated only once. Although these macros are not needed for the ACPICA 
171 code itself, they are often used by ACPI-related host device drivers where 
172 the safe feature may be necessary.
173
174 Fixed several issues related to the ACPI 5.0 reduced hardware support 
175 (SOC): Now ensure that if the platform declares itself as hardware-reduced 
176 via the FADT, the following functions become NOOPs (and always return 
177 AE_OK) because ACPI is always enabled by definition on these machines:
178   AcpiEnable
179   AcpiDisable
180   AcpiHwGetMode
181   AcpiHwSetMode
182
183 Dynamic Object Repair: Implemented additional runtime repairs for 
184 predefined name return values. Both of these repairs can simplify code in 
185 the related device drivers that invoke these methods:
186 1) For the _STR and _MLS names, automatically repair/convert an ASCII 
187 string to a Unicode buffer. 
188 2) For the _CRS, _PRS, and _DMA names, return a resource descriptor with a 
189 lone end tag descriptor in the following cases: A Return(0) was executed, 
190 a null buffer was returned, or no object at all was returned (non-slack 
191 mode only). Adds a new file, nsconvert.c
192 ACPICA BZ 998. Bob Moore, Lv Zheng.
193
194 Resource Manager: Added additional code to prevent possible infinite loops 
195 while traversing corrupted or ill-formed resource template buffers. Check 
196 for zero-length resource descriptors in all code that loops through 
197 resource templates (the length field is used to index through the 
198 template). This change also hardens the external AcpiWalkResources and 
199 AcpiWalkResourceBuffer interfaces.
200
201 Local Cache Manager: Enhanced the main data structure to eliminate an 
202 unnecessary mechanism to access the next object in the list. Actually 
203 provides a small performance enhancement for hosts that use the local 
204 ACPICA cache manager. Jung-uk Kim.
205
206 Example Code and Data Size: These are the sizes for the OS-independent 
207 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
208 debug version of the code includes the debug output trace mechanism and 
209 has a much larger code and data size.
210
211   Previous Release:
212     Non-Debug Version:  94.5K Code, 25.4K Data, 119.9K Total
213     Debug Version:     182.3K Code, 75.0K Data, 257.3K Total
214   Current Release:
215     Non-Debug Version:  95.0K Code, 25.9K Data, 120.9K Total
216     Debug Version:     182.9K Code, 75.6K Data, 258.5K Total
217
218
219 2) iASL Compiler/Disassembler and Tools:
220
221 iASL/Disassembler: Fixed several issues with the definition of the ACPI 
222 5.0 RASF table (RAS Feature Table). This change incorporates late changes 
223 that were made to the ACPI 5.0 specification.
224
225 iASL/Disassembler: Added full support for the following new ACPI tables:
226   1) The MTMR table (MID Timer Table)
227   2) The VRTC table (Virtual Real Time Clock Table).
228 Includes header file, disassembler, table compiler, and template support 
229 for both tables.
230
231 iASL: Implemented compile-time validation of package objects returned by 
232 predefined names. This new feature validates static package objects 
233 returned by the various predefined names defined to return packages. Both 
234 object types and package lengths are validated, for both parent packages 
235 and sub-packages, if any. The code is similar in structure and behavior to 
236 the runtime repair mechanism within the AML interpreter and uses the 
237 existing predefined name information table. Adds a new file, aslprepkg.c. 
238 ACPICA BZ 938.
239
240 iASL: Implemented auto-detection of binary ACPI tables for disassembly. 
241 This feature detects a binary file with a valid ACPI table header and 
242 invokes the disassembler automatically. Eliminates the need to 
243 specifically invoke the disassembler with the -d option. ACPICA BZ 862.
244
245 iASL/Disassembler: Added several warnings for the case where there are 
246 unresolved control methods during the disassembly. This can potentially 
247 cause errors when the output file is compiled, because the disassembler 
248 assumes zero method arguments in these cases (it cannot determine the 
249 actual number of arguments without resolution/definition of the method).
250
251 Debugger: Added support to display all resources with a single command. 
252 Invocation of the resources command with no arguments will now display all 
253 resources within the current namespace.
254
255 AcpiHelp: Added descriptive text for each ACPICA exception code displayed 
256 via the -e option.
257
258 ----------------------------------------
259 17 January 2013. Summary of changes for version 20130117:
260
261 1) ACPICA Kernel-resident Subsystem:
262
263 Updated the AcpiGetSleepTypeData interface: Allow the \_Sx methods to 
264 return either 1 or 2 integers. Although the ACPI spec defines the \_Sx 
265 objects to return a package containing one integer, most BIOS code returns 
266 two integers and the previous code reflects that. However, we also need to 
267 support BIOS code that actually implements to the ACPI spec, and this 
268 change reflects this.
269
270 Fixed two issues with the ACPI_DEBUG_PRINT macros:
271 1) Added the ACPI_DO_WHILE macro to the main DEBUG_PRINT helper macro for 
272 C compilers that require this support.
273 2) Renamed the internal ACPI_DEBUG macro to ACPI_DO_DEBUG_PRINT since 
274 ACPI_DEBUG is already used by many of the various hosts.
275
276 Updated all ACPICA copyrights and signons to 2013. Added the 2013 
277 copyright to all module headers and signons, including the standard Linux 
278 header. This affects virtually every file in the ACPICA core subsystem, 
279 iASL compiler, all ACPICA utilities, and the test suites.
280
281 Example Code and Data Size: These are the sizes for the OS-independent 
282 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
283 debug version of the code includes the debug output trace mechanism and 
284 has a much larger code and data size.
285
286   Previous Release:
287     Non-Debug Version:  94.5K Code, 25.5K Data, 120.0K Total
288     Debug Version:     182.2K Code, 74.9K Data, 257.1K Total
289   Current Release:
290     Non-Debug Version:  94.5K Code, 25.4K Data, 119.9K Total
291     Debug Version:     182.3K Code, 75.0K Data, 257.3K Total
292
293
294 2) iASL Compiler/Disassembler and Tools:
295
296 Generic Unix OSL: Use a buffer to eliminate multiple vfprintf()s and 
297 prevent a possible fault on some hosts. Some C libraries modify the arg 
298 pointer parameter to vfprintf making it difficult to call it twice in the 
299 AcpiOsVprintf function. Use a local buffer to workaround this issue. This 
300 does not affect the Windows OSL since the Win C library does not modify 
301 the arg pointer. Chao Guan, Bob Moore.
302
303 iASL: Fixed a possible infinite loop when the maximum error count is 
304 reached. If an output file other than the .AML file is specified (such as 
305 a listing file), and the maximum number of errors is reached, do not 
306 attempt to flush data to the output file(s) as the compiler is aborting. 
307 This can cause an infinite loop as the max error count code essentially 
308 keeps calling itself.
309
310 iASL/Disassembler: Added an option (-in) to ignore NOOP opcodes/operators. 
311 Implemented for both the compiler and the disassembler. Often, the NOOP 
312 opcode is used as padding for packages that are changed dynamically by the 
313 BIOS. When disassembled and recompiled, these NOOPs will cause syntax 
314 errors. This option causes the disassembler to ignore all NOOP opcodes 
315 (0xA3), and it also causes the compiler to ignore all ASL source code NOOP 
316 statements as well.
317
318 Debugger: Enhanced the Sleep command to execute all sleep states. This 
319 change allows Sleep to be invoked with no arguments and causes the 
320 debugger to execute all of the sleep states, 0-5, automatically.
321
322 ----------------------------------------
323 20 December 2012. Summary of changes for version 20121220:
324
325 1) ACPICA Kernel-resident Subsystem:
326
327 Implemented a new interface, AcpiWalkResourceBuffer. This interface is an 
328 alternate entry point for AcpiWalkResources and improves the usability of 
329 the resource manager by accepting as input a buffer containing the output 
330 of either a _CRS, _PRS, or _AEI method. The key functionality is that the 
331 input buffer is not deleted by this interface so that it can be used by 
332 the host later. See the ACPICA reference for details.
333
334 Interpreter: Add a warning if a 64-bit constant appears in a 32-bit table 
335 (DSDT version < 2). The constant will be truncated and this warning 
336 reflects that behavior.
337
338 Resource Manager: Add support for the new ACPI 5.0 wake bit in the IRQ, 
339 ExtendedInterrupt, and GpioInt descriptors. This change adds support to 
340 both get and set the new wake bit in these descriptors, separately from 
341 the existing share bit. Reported by Aaron Lu.
342
343 Interpreter: Fix Store() when an implicit conversion is not possible. For 
344 example, in the cases such as a store of a string to an existing package 
345 object, implement the store as a CopyObject(). This is a small departure 
346 from the ACPI specification which states that the control method should be 
347 aborted in this case. However, the ASLTS suite depends on this behavior.
348
349 Performance improvement for the various FUNCTION_TRACE and DEBUG_PRINT 
350 macros: check if debug output is currently enabled as soon as possible to 
351 minimize performance impact if debug is in fact not enabled.
352
353 Source code restructuring: Cleanup to improve modularity. The following 
354 new files have been added: dbconvert.c, evhandler.c, nsprepkg.c, 
355 psopinfo.c, psobject.c, rsdumpinfo.c, utstring.c, and utownerid.c. 
356 Associated makefiles and project files have been updated.
357
358 Changed an exception code for LoadTable operator. For the case where one 
359 of the input strings is too long, change the returned exception code from 
360 AE_BAD_PARAMETER to AE_AML_STRING_LIMIT.
361
362 Fixed a possible memory leak in dispatcher error path. On error, delete 
363 the mutex object created during method mutex creation. Reported by 
364 tim.gardner@canonical.com.
365
366 Example Code and Data Size: These are the sizes for the OS-independent 
367 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
368 debug version of the code includes the debug output trace mechanism and 
369 has a much larger code and data size.
370
371   Previous Release:
372     Non-Debug Version:  94.3K Code, 25.3K Data, 119.6K Total
373     Debug Version:     175.5K Code, 74.5K Data, 250.0K Total
374   Current Release:
375     Non-Debug Version:  94.5K Code, 25.5K Data, 120.0K Total
376     Debug Version:     182.2K Code, 74.9K Data, 257.1K Total
377
378
379 2) iASL Compiler/Disassembler and Tools:
380
381 iASL: Disallow a method call as argument to the ObjectType ASL operator. 
382 This change tracks an errata to the ACPI 5.0 document. The AML grammar 
383 will not allow the interpreter to differentiate between a method and a 
384 method invocation when these are used as an argument to the ObjectType 
385 operator. The ACPI specification change is to disallow a method invocation 
386 (UserTerm) for the ObjectType operator.
387
388 Finish support for the TPM2 and CSRT tables in the headers, table 
389 compiler, and disassembler.
390
391 Unix user-space OSL: Fix a problem with WaitSemaphore where the timeout 
392 always expires immediately if the semaphore is not available. The original 
393 code was using a relative-time timeout, but sem_timedwait requires the use 
394 of an absolute time.
395
396 iASL: Added a remark if the Timer() operator is used within a 32-bit 
397 table. This operator returns a 64-bit time value that will be truncated 
398 within a 32-bit table.
399
400 iASL Source code restructuring: Cleanup to improve modularity. The 
401 following new files have been added: aslhex.c, aslxref.c, aslnamesp.c, 
402 aslmethod.c, and aslfileio.c. Associated makefiles and project files have 
403 been updated.
404
405
406 ----------------------------------------
407 14 November 2012. Summary of changes for version 20121114:
408
409 1) ACPICA Kernel-resident Subsystem:
410
411 Implemented a performance enhancement for ACPI/AML Package objects. This 
412 change greatly increases the performance of Package objects within the 
413 interpreter. It changes the processing of reference counts for packages by 
414 optimizing for the most common case where the package sub-objects are 
415 either Integers, Strings, or Buffers. Increases the overall performance of 
416 the ASLTS test suite by 1.5X (Increases the Slack Mode performance by 2X.) 
417 Chao Guan. ACPICA BZ 943.
418
419 Implemented and deployed common macros to extract flag bits from resource 
420 descriptors. Improves readability and maintainability of the code. Fixes a 
421 problem with the UART serial bus descriptor for the number of data bits 
422 flags (was incorrectly 2 bits, should be 3).
423
424 Enhanced the ACPI_GETx and ACPI_SETx macros. Improved the implementation 
425 of the macros and changed the SETx macros to the style of (destination, 
426 source). Also added ACPI_CASTx companion macros. Lv Zheng.
427
428 Example Code and Data Size: These are the sizes for the OS-independent 
429 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
430 debug version of the code includes the debug output trace mechanism and 
431 has a much larger code and data size.
432
433   Previous Release:
434     Non-Debug Version:  93.9K Code, 25.2K Data, 119.1K Total
435     Debug Version:     175.5K Code, 74.5K Data, 250.0K Total
436   Current Release:
437     Non-Debug Version:  94.3K Code, 25.3K Data, 119.6K Total
438     Debug Version:     175.5K Code, 74.5K Data, 250.0K Total
439
440
441 2) iASL Compiler/Disassembler and Tools:
442
443 Disassembler: Added the new ACPI 5.0 interrupt sharing flags. This change 
444 adds the ShareAndWake and ExclusiveAndWake flags which were added to the 
445 Irq, Interrupt, and Gpio resource descriptors in ACPI 5.0. ACPICA BZ 986.
446
447 Disassembler: Fixed a problem with external declaration generation. Fixes 
448 a problem where an incorrect pathname could be generated for an external 
449 declaration if the original reference to the object includes leading 
450 carats (^). ACPICA BZ 984.
451
452 Debugger: Completed a major update for the Disassemble<method> command. 
453 This command was out-of-date and did not properly disassemble control 
454 methods that had any reasonable complexity. This fix brings the command up 
455 to the same level as the rest of the disassembler. Adds one new file, 
456 dmdeferred.c, which is existing code that is now common with the main 
457 disassembler and the debugger disassemble command. ACPICA MZ 978.
458
459 iASL: Moved the parser entry prototype to avoid a duplicate declaration. 
460 Newer versions of Bison emit this prototype, so moved the prototype out of 
461 the iASL header to where it is actually used in order to avoid a duplicate 
462 declaration.
463
464 iASL/Tools: Standardized use of the stream I/O functions:
465   1) Ensure check for I/O error after every fopen/fread/fwrite
466   2) Ensure proper order of size/count arguments for fread/fwrite
467   3) Use test of (Actual != Requested) after all fwrite, and most fread
468   4) Standardize I/O error messages
469 Improves reliability and maintainability of the code. Bob Moore, Lv Zheng. 
470 ACPICA BZ 981.
471
472 Disassembler: Prevent duplicate External() statements. During generation 
473 of external statements, detect similar pathnames that are actually 
474 duplicates such as these:
475   External (\ABCD)
476   External (ABCD)
477 Remove all leading '\' characters from pathnames during the external 
478 statement generation so that duplicates will be detected and tossed. 
479 ACPICA BZ 985.
480
481 Tools: Replace low-level I/O with stream I/O functions. Replace 
482 open/read/write/close with the stream I/O equivalents 
483 fopen/fread/fwrite/fclose for portability and performance. Lv Zheng, Bob 
484 Moore.
485
486 AcpiBin: Fix for the dump-to-hex function. Now correctly output the table 
487 name header so that AcpiXtract recognizes the output file/table.
488
489 iASL: Remove obsolete -2 option flag. Originally intended to force the 
490 compiler/disassembler into an ACPI 2.0 mode, this was never implemented 
491 and the entire concept is now obsolete.
492
493 ----------------------------------------
494 18 October 2012. Summary of changes for version 20121018:
495
496
497 1) ACPICA Kernel-resident Subsystem:
498
499 Updated support for the ACPI 5.0 MPST table. Fixes some problems 
500 introduced by late changes to the table as it was added to the ACPI 5.0 
501 specification. Includes header, disassembler, and data table compiler 
502 support as well as a new version of the MPST template.
503
504 AcpiGetObjectInfo: Enhanced the device object support to include the ACPI 
505 5.0 _SUB method. Now calls _SUB in addition to the other PNP-related ID 
506 methods: _HID, _CID, and _UID.
507
508 Changed ACPI_DEVICE_ID to ACPI_PNP_DEVICE_ID. Also changed 
509 ACPI_DEVICE_ID_LIST to ACPI_PNP_DEVICE_ID_LIST. These changes prevent 
510 name collisions on hosts that reserve the *_DEVICE_ID (or *DeviceId) 
511 names for their various drivers. Affects the AcpiGetObjectInfo external 
512 interface, and other internal interfaces as well.
513
514 Added and deployed a new macro for ACPI_NAME management: ACPI_MOVE_NAME. 
515 This macro resolves to a simple 32-bit move of the 4-character ACPI_NAME 
516 on machines that support non-aligned transfers. Optimizes for this case 
517 rather than using a strncpy. With assistance from Zheng Lv.
518
519 Resource Manager: Small fix for buffer size calculation. Fixed a one byte 
520 error in the output buffer calculation. Feng Tang. ACPICA BZ 849.
521
522 Added a new debug print message for AML mutex objects that are force-
523 released. At control method termination, any currently acquired mutex 
524 objects are force-released. Adds a new debug-only message for each one 
525 that is released.
526
527 Audited/updated all ACPICA return macros and the function debug depth 
528 counter: 1) Ensure that all functions that use the various TRACE macros 
529 also use the appropriate ACPICA return macros. 2) Ensure that all normal 
530 return statements surround the return expression (value) with parens to 
531 ensure consistency across the ACPICA code base. Guan Chao, Tang Feng, 
532 Zheng Lv, Bob Moore. ACPICA Bugzilla 972.
533
534 Global source code changes/maintenance: All extra lines at the start and 
535 end of each source file have been removed for consistency. Also, within 
536 comments, all new sentences start with a single space instead of a double 
537 space, again for consistency across the code base.
538
539 Example Code and Data Size: These are the sizes for the OS-independent 
540 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
541 debug version of the code includes the debug output trace mechanism and 
542 has a much larger code and data size.
543
544   Previous Release:
545     Non-Debug Version:  93.7K Code, 25.3K Data, 119.0K Total
546     Debug Version:     175.0K Code, 74.4K Data, 249.4K Total
547   Current Release:
548     Non-Debug Version:  93.9K Code, 25.2K Data, 119.1K Total
549     Debug Version:     175.5K Code, 74.5K Data, 250.0K Total
550
551
552 2) iASL Compiler/Disassembler and Tools:
553
554 AcpiExec: Improved the algorithm used for memory leak/corruption 
555 detection. Added some intelligence to the code that maintains the global 
556 list of allocated memory. The list is now ordered by allocated memory 
557 address, significantly improving performance. When running AcpiExec on 
558 the ASLTS test suite, speed improvements of 3X to 5X are seen, depending 
559 on the platform and/or the environment. Note, this performance 
560 enhancement affects the AcpiExec utility only, not the kernel-resident 
561 ACPICA code.
562
563 Enhanced error reporting for invalid AML opcodes and bad ACPI_NAMEs. For 
564 the disassembler, dump the 48 bytes surrounding the invalid opcode. Fix 
565 incorrect table offset reported for invalid opcodes. Report the original 
566 32-bit value for bad ACPI_NAMEs (as well as the repaired name.)
567
568 Disassembler: Enhanced the -vt option to emit the binary table data in 
569 hex format to assist with debugging.
570
571 Fixed a potential filename buffer overflow in osunixdir.c. Increased the 
572 size of file structure. Colin Ian King.
573
574 ----------------------------------------
575 13 September 2012. Summary of changes for version 20120913:
576
577
578 1) ACPICA Kernel-resident Subsystem:
579
580 ACPI 5.0: Added two new notify types for the Hardware Error Notification 
581 Structure within the Hardware Error Source Table (HEST) table -- CMCI(5) 
582 and 
583 MCE(6).
584  
585 Table Manager: Merged/removed duplicate code in the root table resize 
586 functions. One function is external, the other is internal. Lv Zheng, 
587 ACPICA 
588 BZ 846.
589
590 Makefiles: Completely removed the obsolete "Linux" makefiles under 
591 acpica/generate/linux. These makefiles are obsolete and have been replaced 
592 by 
593 the generic unix makefiles under acpica/generate/unix.
594
595 Makefiles: Ensure that binary files always copied properly. Minor rule 
596 change 
597 to ensure that the final binary output files are always copied up to the 
598 appropriate binary directory (bin32 or bin64.)
599
600 Example Code and Data Size: These are the sizes for the OS-independent 
601 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
602 debug 
603 version of the code includes the debug output trace mechanism and has a 
604 much 
605 larger code and data size.
606
607   Previous Release:
608     Non-Debug Version:  93.8K Code, 25.3K Data, 119.1K Total
609     Debug Version:     175.7K Code, 74.8K Data, 250.5K Total
610   Current Release:
611     Non-Debug Version:  93.7K Code, 25.3K Data, 119.0K Total
612     Debug Version:     175.0K Code, 74.4K Data, 249.4K Total
613
614
615 2) iASL Compiler/Disassembler and Tools:
616
617 Disassembler: Fixed a possible fault during the disassembly of resource 
618 descriptors when a second parse is required because of the invocation of 
619 external control methods within the table. With assistance from 
620 adq@lidskialf.net. ACPICA BZ 976.
621
622 iASL: Fixed a namepath optimization problem. An error can occur if the 
623 parse 
624 node that contains the namepath to be optimized does not have a parent 
625 node 
626 that is a named object. This change fixes the problem.
627
628 iASL: Fixed a regression where the AML file is not deleted on errors. The 
629 AML 
630 output file should be deleted if there are any errors during the compiler. 
631 The 
632 only exception is if the -f (force output) option is used. ACPICA BZ 974.
633
634 iASL: Added a feature to automatically increase internal line buffer 
635 sizes. 
636 Via realloc(), automatically increase the internal line buffer sizes as 
637 necessary to support very long source code lines. The current version of 
638 the 
639 preprocessor requires a buffer long enough to contain full source code 
640 lines. 
641 This change increases the line buffer(s) if the input lines go beyond the 
642 current buffer size. This eliminates errors that occurred when a source 
643 code 
644 line was longer than the buffer.
645
646 iASL: Fixed a problem with constant folding in method declarations. The 
647 SyncLevel term is a ByteConstExpr, and incorrect code would be generated 
648 if a 
649 Type3 opcode was used.
650
651 Debugger: Improved command help support. For incorrect argument count, 
652 display 
653 full help for the command. For help command itself, allow an argument to 
654 specify a command.
655
656 Test Suites: Several bug fixes for the ASLTS suite reduces the number of 
657 errors during execution of the suite. Guan Chao.
658
659 ----------------------------------------
660 16 August 2012. Summary of changes for version 20120816:
661
662
663 1) ACPICA Kernel-resident Subsystem:
664
665 Removed all use of the deprecated _GTS and _BFS predefined methods. The 
666 _GTS 
667 (Going To Sleep) and _BFS (Back From Sleep) methods are essentially 
668 deprecated and will probably be removed from the ACPI specification. 
669 Windows 
670 does not invoke them, and reportedly never will. The final nail in the 
671 coffin 
672 is that the ACPI specification states that these methods must be run with 
673 interrupts off, which is not going to happen in a kernel interpreter. 
674 Note: 
675 Linux has removed all use of the methods also. It was discovered that 
676 invoking these functions caused failures on some machines, probably 
677 because 
678 they were never tested since Windows does not call them. Affects two 
679 external 
680 interfaces, AcpiEnterSleepState and AcpiLeaveSleepStatePrep. Tang Feng. 
681 ACPICA BZ 969.
682
683 Implemented support for complex bit-packed buffers returned from the _PLD 
684 (Physical Location of Device) predefined method. Adds a new external 
685 interface, AcpiDecodePldBuffer that parses the buffer into a more usable C 
686 structure. Note: C Bitfields cannot be used for this type of predefined 
687 structure since the memory layout of individual bitfields is not defined 
688 by 
689 the C language. In addition, there are endian concerns where a compiler 
690 will 
691 change the bitfield ordering based on the machine type. The new ACPICA 
692 interface eliminates these issues, and should be called after _PLD is 
693 executed. ACPICA BZ 954.
694
695 Implemented a change to allow a scope change to root (via "Scope (\)") 
696 during 
697 execution of module-level ASL code (code that is executed at table load 
698 time.) Lin Ming.
699
700 Added the Windows8/Server2012 string for the _OSI method. This change adds 
701
702 new _OSI string, "Windows 2012" for both Windows 8 and Windows Server 
703 2012.
704
705 Added header support for the new ACPI tables DBG2 (Debug Port Table Type 
706 2) 
707 and CSRT (Core System Resource Table).
708
709 Added struct header support for the _FDE, _GRT, _GTM, and _SRT predefined 
710 names. This simplifies access to the buffers returned by these predefined 
711 names. Adds a new file, include/acbuffer.h. ACPICA BZ 956.
712
713 GPE support: Removed an extraneous parameter from the various low-level 
714 internal GPE functions. Tang Feng.
715
716 Removed the linux makefiles from the unix packages. The generate/linux 
717 makefiles are obsolete and have been removed from the unix tarball release 
718 packages. The replacement makefiles are under generate/unix, and there is 
719
720 top-level makefile under the main acpica directory. ACPICA BZ 967, 912.
721
722 Updates for Unix makefiles:
723 1) Add -D_FORTIFY_SOURCE=2 for gcc generation. Arjan van de Ven.
724 2) Update linker flags (move to end of command line) for AcpiExec utility. 
725 Guan Chao.
726
727 Split ACPICA initialization functions to new file, utxfinit.c. Split from 
728 utxface.c to improve modularity and reduce file size.
729
730 Example Code and Data Size: These are the sizes for the OS-independent 
731 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
732 debug version of the code includes the debug output trace mechanism and 
733 has a 
734 much larger code and data size.
735
736   Previous Release:
737     Non-Debug Version:  93.5K Code, 25.3K Data, 118.8K Total
738     Debug Version:     173.7K Code, 74.0K Data, 247.7K Total
739   Current Release:
740     Non-Debug Version:  93.8K Code, 25.3K Data, 119.1K Total
741     Debug Version:     175.7K Code, 74.8K Data, 250.5K Total
742
743
744 2) iASL Compiler/Disassembler and Tools:
745
746 iASL: Fixed a problem with constant folding for fixed-length constant 
747 expressions. The constant-folding code was not being invoked for constant 
748 expressions that allow the use of type 3/4/5 opcodes to generate constants 
749 for expressions such as ByteConstExpr, WordConstExpr, etc. This could 
750 result 
751 in the generation of invalid AML bytecode. ACPICA BZ 970.
752
753 iASL: Fixed a generation issue on newer versions of Bison. Newer versions 
754 apparently automatically emit some of the necessary externals. This change 
755 handles these versions in order to eliminate generation warnings.
756
757 Disassembler: Added support to decode the DBG2 and CSRT ACPI tables.
758
759 Disassembler: Add support to decode _PLD buffers. The decoded buffer 
760 appears 
761 within comments in the output file.
762
763 Debugger: Fixed a regression with the "Threads" command where 
764 AE_BAD_PARAMETER was always returned.
765
766 ----------------------------------------
767 11 July 2012. Summary of changes for version 20120711:
768
769 1) ACPICA Kernel-resident Subsystem:
770
771 Fixed a possible fault in the return package object repair code. Fixes a 
772 problem that can occur when a lone package object is wrapped with an outer 
773 package object in order to force conformance to the ACPI specification. 
774 Can 
775 affect these predefined names: _ALR, _MLS, _PSS, _TRT, _TSS, _PRT, _HPX, 
776 _DLM, 
777 _CSD, _PSD, _TSD.
778
779 Removed code to disable/enable bus master arbitration (ARB_DIS bit in the 
780 PM2_CNT register) in the ACPICA sleep/wake interfaces. Management of the 
781 ARB_DIS bit must be implemented in the host-dependent C3 processor power 
782 state 
783 support. Note, ARB_DIS is obsolete and only applies to older chipsets, 
784 both 
785 Intel and other vendors. (for Intel: ICH4-M and earlier)
786
787 This change removes the code to disable/enable bus master arbitration 
788 during 
789 suspend/resume. Use of the ARB_DIS bit in the optional PM2_CNT register 
790 causes 
791 resume problems on some machines. The change has been in use for over 
792 seven 
793 years within Linux.
794
795 Implemented two new external interfaces to support host-directed dynamic 
796 ACPI 
797 table load and unload. They are intended to simplify the host 
798 implementation 
799 of hot-plug support:
800   AcpiLoadTable: Load an SSDT from a buffer into the namespace.
801   AcpiUnloadParentTable: Unload an SSDT via a named object owned by the 
802 table.
803 See the ACPICA reference for additional details. Adds one new file, 
804 components/tables/tbxfload.c
805
806 Implemented and deployed two new interfaces for errors and warnings that 
807 are 
808 known to be caused by BIOS/firmware issues:
809   AcpiBiosError: Prints "ACPI Firmware Error" message.
810   AcpiBiosWarning: Prints "ACPI Firmware Warning" message.
811 Deployed these new interfaces in the ACPICA Table Manager code for ACPI 
812 table 
813 and FADT errors. Additional deployment to be completed as appropriate in 
814 the 
815 future. The associated conditional macros are ACPI_BIOS_ERROR and 
816 ACPI_BIOS_WARNING. See the ACPICA reference for additional details. ACPICA 
817 BZ 
818 843.
819
820 Implicit notify support: ensure that no memory allocation occurs within a 
821 critical region. This fix moves a memory allocation outside of the time 
822 that a 
823 spinlock is held. Fixes issues on systems that do not allow this behavior. 
824 Jung-uk Kim.
825
826 Split exception code utilities and tables into a new file, 
827 utilities/utexcep.c
828
829 Example Code and Data Size: These are the sizes for the OS-independent 
830 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
831 debug 
832 version of the code includes the debug output trace mechanism and has a 
833 much 
834 larger code and data size.
835
836   Previous Release:
837     Non-Debug Version:  93.1K Code, 25.1K Data, 118.2K Total
838     Debug Version:     172.9K Code, 73.6K Data, 246.5K Total
839   Current Release:
840     Non-Debug Version:  93.5K Code, 25.3K Data, 118.8K Total
841     Debug Version:     173.7K Code, 74.0K Data, 247.7K Total
842
843
844 2) iASL Compiler/Disassembler and Tools:
845
846 iASL: Fixed a parser problem for hosts where EOF is defined as -1 instead 
847 of 
848 0. Jung-uk Kim.
849
850 Debugger: Enhanced the "tables" command to emit additional information 
851 about 
852 the current set of ACPI tables, including the owner ID and flags decode.
853
854 Debugger: Reimplemented the "unload" command to use the new 
855 AcpiUnloadParentTable external interface. This command was disable 
856 previously 
857 due to need for an unload interface.
858
859 AcpiHelp: Added a new option to decode ACPICA exception codes. The -e 
860 option 
861 will decode 16-bit hex status codes (ACPI_STATUS) to name strings.
862
863 ----------------------------------------
864 20 June 2012. Summary of changes for version 20120620:
865
866
867 1) ACPICA Kernel-resident Subsystem:
868
869 Implemented support to expand the "implicit notify" feature to allow 
870 multiple 
871 devices to be notified by a single GPE. This feature automatically 
872 generates a 
873 runtime device notification in the absence of a BIOS-provided GPE control 
874 method (_Lxx/_Exx) or a host-installed handler for the GPE. Implicit 
875 notify is 
876 provided by ACPICA for Windows compatibility, and is a workaround for BIOS 
877 AML 
878 code errors. See the description of the AcpiSetupGpeForWake interface in 
879 the 
880 APCICA reference. Bob Moore, Rafael Wysocki. ACPICA BZ 918.
881
882 Changed some comments and internal function names to simplify and ensure 
883 correctness of the Linux code translation. No functional changes.
884
885 Example Code and Data Size: These are the sizes for the OS-independent 
886 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
887 debug 
888 version of the code includes the debug output trace mechanism and has a 
889 much 
890 larger code and data size.
891
892   Previous Release:
893     Non-Debug Version:  93.0K Code, 25.1K Data, 118.1K Total
894     Debug Version:     172.7K Code, 73.6K Data, 246.3K Total
895   Current Release:
896     Non-Debug Version:  93.1K Code, 25.1K Data, 118.2K Total
897     Debug Version:     172.9K Code, 73.6K Data, 246.5K Total
898
899
900 2) iASL Compiler/Disassembler and Tools:
901
902 Disassembler: Added support to emit short, commented descriptions for the 
903 ACPI 
904 predefined names in order to improve the readability of the disassembled 
905 output. ACPICA BZ 959. Changes include:
906   1) Emit descriptions for all standard predefined names (_INI, _STA, 
907 _PRW, 
908 etc.)
909   2) Emit generic descriptions for the special names (_Exx, _Qxx, etc.)
910   3) Emit descriptions for the resource descriptor names (_MIN, _LEN, 
911 etc.)
912
913 AcpiSrc: Fixed several long-standing Linux code translation issues. 
914 Argument 
915 descriptions in function headers are now translated properly to lower case 
916 and 
917 underscores. ACPICA BZ 961. Also fixes translation problems such as these: 
918 (old -> new)
919   i_aSL -> iASL
920   00-7_f -> 00-7F
921   16_k -> 16K
922   local_fADT -> local_FADT
923   execute_oSI -> execute_OSI
924
925 iASL: Fixed a problem where null bytes were inadvertently emitted into 
926 some 
927 listing files.
928
929 iASL: Added the existing debug options to the standard help screen. There 
930 are 
931 no longer two different help screens. ACPICA BZ 957.
932
933 AcpiHelp: Fixed some typos in the various predefined name descriptions. 
934 Also 
935 expand some of the descriptions where appropriate.
936
937 iASL: Fixed the -ot option (display compile times/statistics). Was not 
938 working 
939 properly for standard output; only worked for the debug file case.
940
941 ----------------------------------------
942 18 May 2012. Summary of changes for version 20120518:
943
944
945 1) ACPICA Core Subsystem:
946
947 Added a new OSL interface, AcpiOsWaitEventsComplete. This interface is 
948 defined 
949 to block until asynchronous events such as notifies and GPEs have 
950 completed. 
951 Within ACPICA, it is only called before a notify or GPE handler is 
952 removed/uninstalled. It also may be useful for the host OS within related 
953 drivers such as the Embedded Controller driver. See the ACPICA reference 
954 for 
955 additional information. ACPICA BZ 868.
956
957 ACPI Tables: Added a new error message for a possible overflow failure 
958 during 
959 the conversion of FADT 32-bit legacy register addresses to internal common 
960 64-
961 bit GAS structure representation. The GAS has a one-byte "bit length" 
962 field, 
963 thus limiting the register length to 255 bits. ACPICA BZ 953.
964
965 Example Code and Data Size: These are the sizes for the OS-independent 
966 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
967 debug 
968 version of the code includes the debug output trace mechanism and has a 
969 much 
970 larger code and data size.
971
972   Previous Release:
973     Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
974     Debug Version:     172.6K Code, 73.4K Data, 246.0K Total
975   Current Release:
976     Non-Debug Version:  93.0K Code, 25.1K Data, 118.1K Total
977     Debug Version:     172.7K Code, 73.6K Data, 246.3K Total
978
979
980 2) iASL Compiler/Disassembler and Tools:
981
982 iASL: Added the ACPI 5.0 "PCC" keyword for use in the Register() ASL 
983 macro. 
984 This keyword was added late in the ACPI 5.0 release cycle and was not 
985 implemented until now.
986
987 Disassembler: Added support for Operation Region externals. Adds missing 
988 support for operation regions that are defined in another table, and 
989 referenced locally via a Field or BankField ASL operator. Now generates 
990 the 
991 correct External statement.
992
993 Disassembler: Several additional fixes for the External() statement 
994 generation 
995 related to some ASL operators. Also, order the External() statements 
996 alphabetically in the disassembler output. Fixes the External() generation 
997 for 
998 the Create* field, Alias, and Scope operators:
999  1) Create* buffer field operators - fix type mismatch warning on 
1000 disassembly
1001  2) Alias - implement missing External support
1002  3) Scope - fix to make sure all necessary externals are emitted.
1003
1004 iASL: Improved pathname support. For include files, merge the prefix 
1005 pathname 
1006 with the file pathname and eliminate unnecessary components. Convert 
1007 backslashes in all pathnames to forward slashes, for readability. Include 
1008 file 
1009 pathname changes affect both #include and Include() type operators.
1010
1011 iASL/DTC/Preprocessor: Gracefully handle early EOF. Handle an EOF at the 
1012 end 
1013 of a valid line by inserting a newline and then returning the EOF during 
1014 the 
1015 next call to GetNextLine. Prevents the line from being ignored due to EOF 
1016 condition.
1017
1018 iASL: Implemented some changes to enhance the IDE support (-vi option.) 
1019 Error 
1020 and Warning messages are now correctly recognized for both the source code 
1021 browser and the global error and warning counts.
1022
1023 ----------------------------------------
1024 20 April 2012. Summary of changes for version 20120420:
1025
1026
1027 1) ACPICA Core Subsystem:
1028
1029 Implemented support for multiple notify handlers. This change adds support 
1030 to 
1031 allow multiple system and device notify handlers on Device, Thermal Zone, 
1032 and 
1033 Processor objects. This can simplify the host OS notification 
1034 implementation. 
1035 Also re-worked and restructured the entire notify support code to simplify 
1036 handler installation, handler removal, notify event queuing, and notify 
1037 dispatch to handler(s). Note: there can still only be two global notify 
1038 handlers - one for system notifies and one for device notifies. There are 
1039 no 
1040 changes to the existing handler install/remove interfaces. Lin Ming, Bob 
1041 Moore, Rafael Wysocki.
1042
1043 Fixed a regression in the package repair code where the object reference 
1044 count was calculated incorrectly. Regression was introduced in the commit 
1045 "Support to add Package wrappers".
1046
1047 Fixed a couple possible memory leaks in the AML parser, in the error 
1048 recovery 
1049 path. Jesper Juhl, Lin Ming.
1050
1051 Example Code and Data Size: These are the sizes for the OS-independent 
1052 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1053 debug version of the code includes the debug output trace mechanism and 
1054 has a 
1055 much larger code and data size.
1056
1057   Previous Release:
1058     Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
1059     Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
1060   Current Release:
1061     Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
1062     Debug Version:     172.6K Code, 73.4K Data, 246.0K Total
1063
1064
1065 2) iASL Compiler/Disassembler and Tools:
1066
1067 iASL: Fixed a problem with the resource descriptor support where the 
1068 length 
1069 of the StartDependentFn and StartDependentFnNoPrio descriptors were not 
1070 included in cumulative descriptor offset, resulting in incorrect values 
1071 for 
1072 resource tags within resource descriptors appearing after a 
1073 StartDependent* 
1074 descriptor. Reported by Petr Vandrovec. ACPICA BZ 949.
1075
1076 iASL and Preprocessor: Implemented full support for the #line directive to 
1077 correctly track original source file line numbers through the .i 
1078 preprocessor 
1079 output file - for error and warning messages.
1080
1081 iASL: Expand the allowable byte constants for address space IDs. 
1082 Previously, 
1083 the allowable range was 0x80-0xFF (user-defined spaces), now the range is 
1084 0x0A-0xFF to allow for custom and new IDs without changing the compiler.
1085
1086 iASL: Add option to treat all warnings as errors (-we). ACPICA BZ 948.
1087
1088 iASL: Add option to completely disable the preprocessor (-Pn).
1089
1090 iASL: Now emit all error/warning messages to standard error (stderr) by 
1091 default (instead of the previous stdout).
1092
1093 ASL Test Suite (ASLTS): Reduce iASL warnings due to use of Switch(). 
1094 Update 
1095 for resource descriptor offset fix above. Update/cleanup error output 
1096 routines. Enable and send iASL errors/warnings to an error logfile 
1097 (error.txt). Send all other iASL output to a logfile (compiler.txt). Fixed 
1098 several extraneous "unrecognized operator" messages.
1099
1100 ----------------------------------------
1101 20 March 2012. Summary of changes for version 20120320:
1102
1103
1104 1) ACPICA Core Subsystem:
1105
1106 Enhanced the sleep/wake interfaces to optionally execute the _GTS method 
1107 (Going To Sleep) and the _BFS method (Back From Sleep). Windows apparently 
1108 does not execute these methods, and therefore these methods are often 
1109 untested. It has been seen on some systems where the execution of these 
1110 methods causes errors and also prevents the machine from entering S5. It 
1111 is 
1112 therefore suggested that host operating systems do not execute these 
1113 methods 
1114 by default. In the future, perhaps these methods can be optionally 
1115 executed 
1116 based on the age of the system and/or what is the newest version of 
1117 Windows 
1118 that the BIOS asks for via _OSI. Changed interfaces: AcpiEnterSleepState 
1119 and 
1120 AcpileaveSleepStatePrep. See the ACPICA reference and Linux BZ 13041. Lin 
1121 Ming.
1122
1123 Fixed a problem where the length of the local/common FADT was set too 
1124 early. 
1125 The local FADT table length cannot be set to the common length until the 
1126 original length has been examined. There is code that checks the table 
1127 length 
1128 and sets various fields appropriately. This can affect older machines with 
1129 early FADT versions. For example, this can cause inadvertent writes to the 
1130 CST_CNT register. Julian Anastasov.
1131
1132 Fixed a mapping issue related to a physical table override. Use the 
1133 deferred 
1134 mapping mechanism for tables loaded via the physical override OSL 
1135 interface. 
1136 This allows for early mapping before the virtual memory manager is 
1137 available. 
1138 Thomas Renninger, Bob Moore.
1139
1140 Enhanced the automatic return-object repair code: Repair a common problem 
1141 with 
1142 predefined methods that are defined to return a variable-length Package of 
1143 sub-objects. If there is only one sub-object, some BIOS ASL code 
1144 mistakenly 
1145 simply returns the single object instead of a Package with one sub-object. 
1146 This new support will repair this error by wrapping a Package object 
1147 around 
1148 the original object, creating the correct and expected Package with one 
1149 sub-
1150 object. Names that can be repaired in this manner include: _ALR, _CSD, 
1151 _HPX, 
1152 _MLS, _PLD, _PRT, _PSS, _TRT, _TSS, _BCL, _DOD, _FIX, and _Sx. ACPICA BZ 
1153 939.
1154
1155 Changed the exception code returned for invalid ACPI paths passed as 
1156 parameters to external interfaces such as AcpiEvaluateObject. Was 
1157 AE_BAD_PARAMETER, now is the more sensible AE_BAD_PATHNAME.
1158
1159 Example Code and Data Size: These are the sizes for the OS-independent 
1160 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1161 debug 
1162 version of the code includes the debug output trace mechanism and has a 
1163 much 
1164 larger code and data size.
1165
1166   Previous Release:
1167     Non-Debug Version:  93.0K Code, 25.0K Data, 118.0K Total
1168     Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
1169   Current Release:
1170     Non-Debug Version:  92.9K Code, 25.0K Data, 117.9K Total
1171     Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
1172
1173
1174 2) iASL Compiler/Disassembler and Tools:
1175
1176 iASL: Added the infrastructure and initial implementation of a integrated 
1177 C-
1178 like preprocessor. This will simplify BIOS development process by 
1179 eliminating 
1180 the need for a separate preprocessing step during builds. On Windows, it 
1181 also 
1182 eliminates the need to install a separate C compiler. ACPICA BZ 761. Some 
1183 features including full #define() macro support are still under 
1184 development. 
1185 These preprocessor directives are supported:
1186     #define
1187     #elif
1188     #else
1189     #endif
1190     #error
1191     #if
1192     #ifdef
1193     #ifndef
1194     #include
1195     #pragma message
1196     #undef
1197     #warning
1198 In addition, these new command line options are supported:
1199     -D <symbol> Define symbol for preprocessor use
1200     -li         Create preprocessed output file (*.i)
1201     -P          Preprocess only and create preprocessor output file (*.i)
1202
1203 Table Compiler: Fixed a problem where the equals operator within an 
1204 expression 
1205 did not work properly.
1206
1207 Updated iASL to use the current versions of Bison/Flex. Updated the 
1208 Windows 
1209 project file to invoke these tools from the standard location. ACPICA BZ 
1210 904. 
1211 Versions supported:
1212     Flex for Windows:  V2.5.4
1213     Bison for Windows: V2.4.1
1214
1215 ----------------------------------------
1216 15 February 2012. Summary of changes for version 20120215:
1217
1218
1219 1) ACPICA Core Subsystem:
1220
1221 There have been some major changes to the sleep/wake support code, as 
1222 described below (a - e).
1223
1224 a) The AcpiLeaveSleepState has been split into two interfaces, similar to 
1225 AcpiEnterSleepStatePrep and AcpiEnterSleepState. The new interface is 
1226 AcpiLeaveSleepStatePrep. This allows the host to perform actions between 
1227 the 
1228 time the _BFS method is called and the _WAK method is called. NOTE: all 
1229 hosts 
1230 must update their wake/resume code or else sleep/wake will not work 
1231 properly. 
1232 Rafael Wysocki.
1233
1234 b) In AcpiLeaveSleepState, now enable all runtime GPEs before calling the 
1235 _WAK 
1236 method. Some machines require that the GPEs are enabled before the _WAK 
1237 method 
1238 is executed. Thomas Renninger.
1239
1240 c) In AcpiLeaveSleepState, now always clear the WAK_STS (wake status) bit. 
1241 Some BIOS code assumes that WAK_STS will be cleared on resume and use it 
1242 to 
1243 determine whether the system is rebooting or resuming. Matthew Garrett.
1244
1245 d) Move the invocations of _GTS (Going To Sleep) and _BFS (Back From 
1246 Sleep) to 
1247 match the ACPI specification requirement. Rafael Wysocki.
1248
1249 e) Implemented full support for the ACPI 5.0 SleepStatus and SleepControl 
1250 registers within the V5 FADT. This support adds two new files: 
1251 hardware/hwesleep.c implements the support for the new registers. Moved 
1252 all 
1253 sleep/wake external interfaces to hardware/hwxfsleep.c.
1254
1255
1256 Added a new OSL interface for ACPI table overrides, 
1257 AcpiOsPhysicalTableOverride. This interface allows the host to override a 
1258 table via a physical address, instead of the logical address required by 
1259 AcpiOsTableOverride. This simplifies the host implementation. Initial 
1260 implementation by Thomas Renninger. The ACPICA implementation creates a 
1261 single 
1262 shared function for table overrides that attempts both a logical and a 
1263 physical override.
1264
1265 Expanded the OSL memory read/write interfaces to 64-bit data 
1266 (AcpiOsReadMemory, AcpiOsWriteMemory.) This enables full 64-bit memory 
1267 transfer support for GAS register structures passed to AcpiRead and 
1268 AcpiWrite.
1269
1270 Implemented the ACPI_REDUCED_HARDWARE option to allow the creation of a 
1271 custom 
1272 build of ACPICA that supports only the ACPI 5.0 reduced hardware (SoC) 
1273 model. 
1274 See the ACPICA reference for details. ACPICA BZ 942. This option removes 
1275 about 
1276 10% of the code and 5% of the static data, and the following hardware ACPI 
1277 features become unavailable:
1278     PM Event and Control registers
1279     SCI interrupt (and handler)
1280     Fixed Events
1281     General Purpose Events (GPEs)
1282     Global Lock
1283     ACPI PM timer
1284     FACS table (Waking vectors and Global Lock)
1285
1286 Updated the unix tarball directory structure to match the ACPICA git 
1287 source 
1288 tree. This ensures that the generic unix makefiles work properly (in 
1289 generate/unix).  Also updated the Linux makefiles to match. ACPICA BZ 867.
1290
1291 Updated the return value of the _REV predefined method to integer value 5 
1292 to 
1293 reflect ACPI 5.0 support.
1294
1295 Moved the external ACPI PM timer interface prototypes to the public 
1296 acpixf.h 
1297 file where they belong.
1298
1299 Example Code and Data Size: These are the sizes for the OS-independent 
1300 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1301 debug 
1302 version of the code includes the debug output trace mechanism and has a 
1303 much 
1304 larger code and data size.
1305
1306   Previous Release:
1307     Non-Debug Version:  92.8K Code, 24.9K Data, 117.7K Total
1308     Debug Version:     171.7K Code, 72.9K Data, 244.5K Total
1309   Current Release:
1310     Non-Debug Version:  93.0K Code, 25.0K Data, 118.0K Total
1311     Debug Version:     172.5K Code, 73.2K Data, 245.7K Total
1312
1313
1314 2) iASL Compiler/Disassembler and Tools:
1315
1316 Disassembler: Fixed a problem with the new ACPI 5.0 serial resource 
1317 descriptors (I2C, SPI, UART) where the resource produce/consumer bit was 
1318 incorrectly displayed.
1319
1320 AcpiHelp: Add display of ACPI/PNP device IDs that are defined in the ACPI 
1321 specification.
1322
1323 ----------------------------------------
1324 11 January 2012. Summary of changes for version 20120111:
1325
1326
1327 1) ACPICA Core Subsystem:
1328
1329 Implemented a new mechanism to allow host device drivers to check for 
1330 address 
1331 range conflicts with ACPI Operation Regions. Both SystemMemory and 
1332 SystemIO 
1333 address spaces are supported. A new external interface, 
1334 AcpiCheckAddressRange, 
1335 allows drivers to check an address range against the ACPI namespace. See 
1336 the 
1337 ACPICA reference for additional details. Adds one new file, 
1338 utilities/utaddress.c. Lin Ming, Bob Moore.
1339
1340 Fixed several issues with the ACPI 5.0 FADT support: Add the sleep Control 
1341 and 
1342 Status registers, update the ACPI 5.0 flags, and update internal data 
1343 structures to handle an FADT larger than 256 bytes. The size of the ACPI 
1344 5.0 
1345 FADT is 268 bytes.
1346
1347 Updated all ACPICA copyrights and signons to 2012. Added the 2012 
1348 copyright to 
1349 all module headers and signons, including the standard Linux header. This 
1350 affects virtually every file in the ACPICA core subsystem, iASL compiler, 
1351 and 
1352 all ACPICA utilities.
1353
1354 Example Code and Data Size: These are the sizes for the OS-independent 
1355 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1356 debug 
1357 version of the code includes the debug output trace mechanism and has a 
1358 much 
1359 larger code and data size.
1360
1361   Previous Release:
1362     Non-Debug Version:  92.3K Code, 24.9K Data, 117.2K Total
1363     Debug Version:     170.8K Code, 72.6K Data, 243.4K Total
1364   Current Release:
1365     Non-Debug Version:  92.8K Code, 24.9K Data, 117.7K Total
1366     Debug Version:     171.7K Code, 72.9K Data, 244.5K Total
1367
1368
1369 2) iASL Compiler/Disassembler and Tools:
1370
1371 Disassembler: fixed a problem with the automatic resource tag generation 
1372 support. Fixes a problem where the resource tags are inadvertently not 
1373 constructed if the table being disassembled contains external references 
1374 to 
1375 control methods. Moved the actual construction of the tags to after the 
1376 final 
1377 namespace is constructed (after 2nd parse is invoked due to external 
1378 control 
1379 method references.) ACPICA BZ 941.
1380
1381 Table Compiler: Make all "generic" operators caseless. These are the 
1382 operators 
1383 like UINT8, String, etc. Making these caseless improves ease-of-use. 
1384 ACPICA BZ 
1385 934.
1386
1387 ----------------------------------------
1388 23 November 2011. Summary of changes for version 20111123:
1389
1390 0) ACPI 5.0 Support:
1391
1392 This release contains full support for the ACPI 5.0 specification, as 
1393 summarized below.
1394
1395 Reduced Hardware Support:
1396 -------------------------
1397
1398 This support allows for ACPI systems without the usual ACPI hardware. This 
1399 support is enabled by a flag in the revision 5 FADT. If it is set, ACPICA 
1400 will 
1401 not attempt to initialize or use any of the usual ACPI hardware. Note, 
1402 when 
1403 this flag is set, all of the following ACPI hardware is assumed to be not 
1404 present and is not initialized or accessed:
1405
1406     General Purpose Events (GPEs)
1407     Fixed Events (PM1a/PM1b and PM Control)
1408     Power Management Timer and Console Buttons (power/sleep)
1409     Real-time Clock Alarm
1410     Global Lock
1411     System Control Interrupt (SCI)
1412     The FACS is assumed to be non-existent
1413
1414 ACPI Tables:
1415 ------------
1416
1417 All new tables and updates to existing tables are fully supported in the 
1418 ACPICA headers (for use by device drivers), the disassembler, and the iASL 
1419 Data Table Compiler. ACPI 5.0 defines these new tables:
1420
1421     BGRT        /* Boot Graphics Resource Table */
1422     DRTM        /* Dynamic Root of Trust for Measurement table */
1423     FPDT        /* Firmware Performance Data Table */
1424     GTDT        /* Generic Timer Description Table */
1425     MPST        /* Memory Power State Table */
1426     PCCT        /* Platform Communications Channel Table */
1427     PMTT        /* Platform Memory Topology Table */
1428     RASF        /* RAS Feature table */
1429
1430 Operation Regions/SpaceIDs:
1431 ---------------------------
1432
1433 All new operation regions are fully supported by the iASL compiler, the 
1434 disassembler, and the ACPICA runtime code (for dispatch to region 
1435 handlers.) 
1436 The new operation region Space IDs are:
1437
1438     GeneralPurposeIo
1439     GenericSerialBus
1440
1441 Resource Descriptors:
1442 ---------------------
1443
1444 All new ASL resource descriptors are fully supported by the iASL compiler, 
1445 the 
1446 ASL/AML disassembler, and the ACPICA runtime Resource Manager code 
1447 (including 
1448 all new predefined resource tags). New descriptors are:
1449
1450     FixedDma
1451     GpioIo
1452     GpioInt
1453     I2cSerialBus
1454     SpiSerialBus
1455     UartSerialBus
1456
1457 ASL/AML Operators, New and Modified:
1458 ------------------------------------
1459
1460 One new operator is added, the Connection operator, which is used to 
1461 associate 
1462 a GeneralPurposeIo or GenericSerialBus resource descriptor with individual 
1463 field objects within an operation region. Several new protocols are 
1464 associated 
1465 with the AccessAs operator. All are fully supported by the iASL compiler, 
1466 disassembler, and runtime ACPICA AML interpreter:
1467
1468     Connection                      // Declare Field Connection attributes
1469     AccessAs: AttribBytes (n)           // Read/Write N-Bytes Protocol
1470     AccessAs: AttribRawBytes (n)        // Raw Read/Write N-Bytes Protocol
1471     AccessAs: AttribRawProcessBytes (n) // Raw Process Call Protocol
1472     RawDataBuffer                       // Data type for Vendor Data 
1473 fields
1474
1475 Predefined ASL/AML Objects:
1476 ---------------------------
1477
1478 All new predefined objects/control-methods are supported by the iASL 
1479 compiler 
1480 and the ACPICA runtime validation/repair (arguments and return values.) 
1481 New 
1482 predefined names include the following:
1483
1484 Standard Predefined Names (Objects or Control Methods):
1485     _AEI, _CLS, _CPC, _CWS, _DEP,
1486     _DLM, _EVT, _GCP, _CRT, _GWS,
1487     _HRV, _PRE, _PSE, _SRT, _SUB.
1488
1489 Resource Tags (Names used to access individual fields within resource 
1490 descriptors):
1491     _DBT, _DPL, _DRS, _END, _FLC,
1492     _IOR, _LIN, _MOD, _PAR, _PHA,
1493     _PIN, _PPI, _POL, _RXL, _SLV,
1494     _SPE, _STB, _TXL, _VEN.
1495
1496 ACPICA External Interfaces:
1497 ---------------------------
1498
1499 Several new interfaces have been defined for use by ACPI-related device 
1500 drivers and other host OS services:
1501
1502 AcpiAcquireMutex and AcpiReleaseMutex: These interfaces allow the host OS 
1503 to 
1504 acquire and release AML mutexes that are defined in the DSDT/SSDT tables 
1505 provided by the BIOS. They are intended to be used in conjunction with the 
1506 ACPI 5.0 _DLM (Device Lock Method) in order to provide transaction-level 
1507 mutual exclusion with the AML code/interpreter.
1508
1509 AcpiGetEventResources: Returns the (formatted) resource descriptors as 
1510 defined 
1511 by the ACPI 5.0 _AEI object (ACPI Event Information).  This object 
1512 provides 
1513 resource descriptors associated with hardware-reduced platform events, 
1514 similar 
1515 to the AcpiGetCurrentResources interface.
1516
1517 Operation Region Handlers: For General Purpose IO and Generic Serial Bus 
1518 operation regions, information about the Connection() object and any 
1519 optional 
1520 length information is passed to the region handler within the Context 
1521 parameter.
1522
1523 AcpiBufferToResource: This interface converts a raw AML buffer containing 
1524
1525 resource template or resource descriptor to the ACPI_RESOURCE internal 
1526 format 
1527 suitable for use by device drivers. Can be used by an operation region 
1528 handler 
1529 to convert the Connection() buffer object into a ACPI_RESOURCE.
1530
1531 Miscellaneous/Tools/TestSuites: 
1532 -------------------------------
1533
1534 Support for extended _HID names (Four alpha characters instead of three).
1535 Support for ACPI 5.0 features in the AcpiExec and AcpiHelp utilities.
1536 Support for ACPI 5.0 features in the ASLTS test suite.
1537 Fully updated documentation (ACPICA and iASL reference documents.)
1538
1539 ACPI Table Definition Language:
1540 -------------------------------
1541
1542 Support for this language was implemented and released as a subsystem of 
1543 the 
1544 iASL compiler in 2010. (See the iASL compiler User Guide.)
1545
1546
1547 Non-ACPI 5.0 changes for this release:
1548 --------------------------------------
1549
1550 1) ACPICA Core Subsystem:
1551
1552 Fix a problem with operation region declarations where a failure can occur 
1553 if 
1554 the region name and an argument that evaluates to an object (such as the 
1555 region address) are in different namespace scopes. Lin Ming, ACPICA BZ 
1556 937.
1557
1558 Do not abort an ACPI table load if an invalid space ID is found within. 
1559 This 
1560 will be caught later if the offending method is executed. ACPICA BZ 925.
1561
1562 Fixed an issue with the FFixedHW space ID where the ID was not always 
1563 recognized properly (Both ACPICA and iASL). ACPICA BZ 926.
1564
1565 Fixed a problem with the 32-bit generation of the unix-specific OSL 
1566 (osunixxf.c). Lin Ming, ACPICA BZ 936.
1567
1568 Several changes made to enable generation with the GCC 4.6 compiler. 
1569 ACPICA BZ 
1570 935.
1571
1572 New error messages: Unsupported I/O requests (not 8/16/32 bit), and 
1573 Index/Bank 
1574 field registers out-of-range.
1575
1576 2) iASL Compiler/Disassembler and Tools:
1577
1578 iASL: Implemented the __PATH__ operator, which returns the full pathname 
1579 of 
1580 the current source file.
1581
1582 AcpiHelp: Automatically display expanded keyword information for all ASL 
1583 operators.
1584
1585 Debugger: Add "Template" command to disassemble/dump resource template 
1586 buffers.
1587
1588 Added a new master script to generate and execute the ASLTS test suite. 
1589 Automatically handles 32- and 64-bit generation. See tests/aslts.sh
1590
1591 iASL: Fix problem with listing generation during processing of the 
1592 Switch() 
1593 operator where AML listing was disabled until the entire Switch block was 
1594 completed.
1595
1596 iASL: Improve support for semicolon statement terminators. Fix "invalid 
1597 character" message for some cases when the semicolon is used. Semicolons 
1598 are 
1599 now allowed after every <Term> grammar element. ACPICA BZ 927.
1600
1601 iASL: Fixed some possible aliasing warnings during generation. ACPICA BZ 
1602 923.
1603
1604 Disassembler: Fix problem with disassembly of the DataTableRegion operator 
1605 where an inadvertent "Unhandled deferred opcode" message could be 
1606 generated.
1607
1608 3) Example Code and Data Size
1609
1610 These are the sizes for the OS-independent acpica.lib produced by the 
1611 Microsoft Visual C++ 9.0 32-bit compiler. The debug version of the code 
1612 includes the debug output trace mechanism and has a much larger code and 
1613 data 
1614 size.
1615
1616   Previous Release:
1617     Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
1618     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
1619   Current Release:
1620     Non-Debug Version:  92.3K Code, 24.9K Data, 117.2K Total
1621     Debug Version:     170.8K Code, 72.6K Data, 243.4K Total
1622
1623 ----------------------------------------
1624 22 September 2011. Summary of changes for version 20110922:
1625
1626 0) ACPI 5.0 News:
1627
1628 Support for ACPI 5.0 in ACPICA has been underway for several months and 
1629 will 
1630 be released at the same time that ACPI 5.0 is officially released.
1631
1632 The ACPI 5.0 specification is on track for release in the next few months.
1633  
1634 1) ACPICA Core Subsystem:
1635
1636 Fixed a problem where the maximum sleep time for the Sleep() operator was 
1637 intended to be limited to two seconds, but was inadvertently limited to 20 
1638 seconds instead.
1639
1640 Linux and Unix makefiles: Added header file dependencies to ensure correct 
1641 generation of ACPICA core code and utilities. Also simplified the 
1642 makefiles 
1643 considerably through the use of the vpath variable to specify search 
1644 paths. 
1645 ACPICA BZ 924.
1646
1647 2) iASL Compiler/Disassembler and Tools:
1648
1649 iASL: Implemented support to check the access length for all fields 
1650 created to 
1651 access named Resource Descriptor fields. For example, if a resource field 
1652 is 
1653 defined to be two bits, a warning is issued if a CreateXxxxField() is used 
1654 with an incorrect bit length. This is implemented for all current resource 
1655 descriptor names. ACPICA BZ 930.
1656   
1657 Disassembler: Fixed a byte ordering problem with the output of 24-bit and 
1658 56-
1659 bit integers.
1660
1661 iASL: Fixed a couple of issues associated with variable-length package 
1662 objects. 1) properly handle constants like One, Ones, Zero -- do not make 
1663
1664 VAR_PACKAGE when these are used as a package length. 2) Allow the 
1665 VAR_PACKAGE 
1666 opcode (in addition to PACKAGE) when validating object types for 
1667 predefined 
1668 names.
1669
1670 iASL: Emit statistics for all output files (instead of just the ASL input 
1671 and 
1672 AML output). Includes listings, hex files, etc.
1673
1674 iASL: Added -G option to the table compiler to allow the compilation of 
1675 custom 
1676 ACPI tables. The only part of a table that is required is the standard 36-
1677 byte 
1678 ACPI header.
1679
1680 AcpiXtract: Ported to the standard ACPICA environment (with ACPICA 
1681 headers), 
1682 which also adds correct 64-bit support. Also, now all output filenames are 
1683 completely lower case.
1684
1685 AcpiExec: Ignore any non-AML tables (tables other than DSDT or SSDT) when 
1686 loading table files. A warning is issued for any such tables. The only 
1687 exception is an FADT. This also fixes a possible fault when attempting to 
1688 load 
1689 non-AML tables. ACPICA BZ 932.
1690
1691 AcpiHelp: Added the AccessAs and Offset operators. Fixed a problem where a 
1692 missing table terminator could cause a fault when using the -p option.
1693
1694 AcpiSrc: Fixed a possible divide-by-zero fault when generating file 
1695 statistics.
1696
1697 3) Example Code and Data Size
1698
1699 These are the sizes for the OS-independent acpica.lib produced by the 
1700 Microsoft Visual C++ 9.0 32-bit compiler. The debug version of the code 
1701 includes the debug output trace mechanism and has a much larger code and 
1702 data 
1703 size.
1704
1705   Previous Release (VC 9.0):
1706     Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
1707     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
1708   Current Release (VC 9.0):
1709     Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
1710     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
1711
1712
1713 ----------------------------------------
1714 23 June 2011. Summary of changes for version 20110623:
1715
1716 1) ACPI CA Core Subsystem:
1717
1718 Updated the predefined name repair mechanism to not attempt repair of a 
1719 _TSS 
1720 return object if a _PSS object is present. We can only sort the _TSS 
1721 return 
1722 package if there is no _PSS within the same scope. This is because if _PSS 
1723 is 
1724 present, the ACPI specification dictates that the _TSS Power Dissipation 
1725 field 
1726 is to be ignored, and therefore some BIOSs leave garbage values in the 
1727 _TSS 
1728 Power field(s). In this case, it is best to just return the _TSS package 
1729 as-
1730 is. Reported by, and fixed with assistance from Fenghua Yu.
1731
1732 Added an option to globally disable the control method return value 
1733 validation 
1734 and repair. This runtime option can be used to disable return value repair 
1735 if 
1736 this is causing a problem on a particular machine. Also added an option to 
1737 AcpiExec (-dr) to set this disable flag.
1738
1739 All makefiles and project files: Major changes to improve generation of 
1740 ACPICA 
1741 tools. ACPICA BZ 912:
1742     Reduce default optimization levels to improve compatibility
1743     For Linux, add strict-aliasing=0 for gcc 4
1744     Cleanup and simplify use of command line defines
1745     Cleanup multithread library support
1746     Improve usage messages
1747
1748 Linux-specific header: update handling of THREAD_ID and pthread. For the 
1749 32-
1750 bit case, improve casting to eliminate possible warnings, especially with 
1751 the 
1752 acpica tools.
1753
1754 Example Code and Data Size: These are the sizes for the OS-independent 
1755 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1756 debug 
1757 version of the code includes the debug output trace mechanism and has a 
1758 much 
1759 larger code and data size.
1760
1761   Previous Release (VC 9.0):
1762     Non-Debug Version:  90.1K Code, 23.9K Data, 114.0K Total
1763     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
1764   Current Release (VC 9.0):
1765     Non-Debug Version:  90.2K Code, 23.9K Data, 114.1K Total
1766     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
1767
1768 2) iASL Compiler/Disassembler and Tools:
1769
1770 With this release, a new utility named "acpihelp" has been added to the 
1771 ACPICA 
1772 package. This utility summarizes the ACPI specification chapters for the 
1773 ASL 
1774 and AML languages. It generates under Linux/Unix as well as Windows, and 
1775 provides the following functionality:
1776     Find/display ASL operator(s) -- with description and syntax.
1777     Find/display ASL keyword(s) -- with exact spelling and descriptions.
1778     Find/display ACPI predefined name(s) -- with description, number
1779         of arguments, and the return value data type.
1780     Find/display AML opcode name(s) -- with opcode, arguments, and 
1781 grammar.
1782     Decode/display AML opcode -- with opcode name, arguments, and grammar.
1783
1784 Service Layers: Make multi-thread support configurable. Conditionally 
1785 compile 
1786 the multi-thread support so that threading libraries will not be linked if 
1787 not 
1788 necessary. The only tool that requires multi-thread support is AcpiExec.
1789
1790 iASL: Update yyerrror/AslCompilerError for "const" errors. Newer versions 
1791 of 
1792 Bison appear to want the interface to yyerror to be a const char * (or at 
1793 least this is a problem when generating iASL on some systems.) ACPICA BZ 
1794 923 
1795 Pierre Lejeune.
1796
1797 Tools: Fix for systems where O_BINARY is not defined. Only used for 
1798 Windows 
1799 versions of the tools.
1800
1801 ----------------------------------------
1802 27 May 2011. Summary of changes for version 20110527:
1803
1804 1) ACPI CA Core Subsystem:
1805
1806 ASL Load() operator: Reinstate most restrictions on the incoming ACPI 
1807 table 
1808 signature. Now, only allow SSDT, OEMx, and a null signature. History:
1809     1) Originally, we checked the table signature for "SSDT" or "PSDT".
1810        (PSDT is now obsolete.)
1811     2) We added support for OEMx tables, signature "OEM" plus a fourth
1812        "don't care" character.
1813     3) Valid tables were encountered with a null signature, so we just
1814        gave up on validating the signature, (05/2008).
1815     4) We encountered non-AML tables such as the MADT, which caused
1816        interpreter errors and kernel faults. So now, we once again allow
1817        only SSDT, OEMx, and now, also a null signature. (05/2011).
1818
1819 Added the missing _TDL predefined name to the global name list in order to 
1820 enable validation. Affects both the core ACPICA code and the iASL 
1821 compiler.
1822
1823 Example Code and Data Size: These are the sizes for the OS-independent 
1824 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
1825 debug 
1826 version of the code includes the debug output trace mechanism and has a 
1827 much 
1828 larger code and data size.
1829
1830   Previous Release (VC 9.0):
1831     Non-Debug Version:  90.0K Code, 23.8K Data, 113.8K Total
1832     Debug Version:     164.5K Code, 68.0K Data, 232.5K Total
1833   Current Release (VC 9.0):
1834     Non-Debug Version:  90.1K Code, 23.9K Data, 114.0K Total
1835     Debug Version:     165.6K Code, 68.4K Data, 234.0K Total
1836
1837 2) iASL Compiler/Disassembler and Tools:
1838
1839 Debugger/AcpiExec: Implemented support for "complex" method arguments on 
1840 the 
1841 debugger command line. This adds support beyond simple integers -- 
1842 including 
1843 Strings, Buffers, and Packages. Includes support for nested packages. 
1844 Increased the default command line buffer size to accommodate these 
1845 arguments. 
1846 See the ACPICA reference for details and syntax. ACPICA BZ 917.
1847  
1848 Debugger/AcpiExec: Implemented support for "default" method arguments for 
1849 the 
1850 Execute/Debug command. Now, the debugger will always invoke a control 
1851 method 
1852 with the required number of arguments -- even if the command line 
1853 specifies 
1854 none or insufficient arguments. It uses default integer values for any 
1855 missing 
1856 arguments. Also fixes a bug where only six method arguments maximum were 
1857 supported instead of the required seven.
1858
1859 Debugger/AcpiExec: Add a maximum buffer length parameter to AcpiOsGetLine 
1860 and 
1861 also return status in order to prevent buffer overruns. See the ACPICA 
1862 reference for details and syntax. ACPICA BZ 921
1863
1864 iASL: Cleaned up support for Berkeley yacc. A general cleanup of code and 
1865 makefiles to simplify support for the two different but similar parser 
1866 generators, bison and yacc.
1867
1868 Updated the generic unix makefile for gcc 4. The default gcc version is 
1869 now 
1870 expected to be 4 or greater, since options specific to gcc 4 are used.
1871
1872 ----------------------------------------
1873 13 April 2011. Summary of changes for version 20110413:
1874
1875 1) ACPI CA Core Subsystem:
1876
1877 Implemented support to execute a so-called "orphan" _REG method under the 
1878 EC 
1879 device. This change will force the execution of a _REG method underneath 
1880 the 
1881 EC 
1882 device even if there is no corresponding operation region of type 
1883 EmbeddedControl. Fixes a problem seen on some machines and apparently is 
1884 compatible with Windows behavior. ACPICA BZ 875.
1885
1886 Added more predefined methods that are eligible for automatic NULL package 
1887 element removal. This change adds another group of predefined names to the 
1888 list 
1889 of names that can be repaired by having NULL package elements dynamically 
1890 removed. This group are those methods that return a single variable-length 
1891 package containing simple data types such as integers, buffers, strings. 
1892 This 
1893 includes: _ALx, _BCL, _CID,_ DOD, _EDL, _FIX, _PCL, _PLD, _PMD, _PRx, 
1894 _PSL, 
1895 _Sx, 
1896 and _TZD. ACPICA BZ 914.
1897
1898 Split and segregated all internal global lock functions to a new file, 
1899 evglock.c.
1900
1901 Updated internal address SpaceID for DataTable regions. Moved this 
1902 internal 
1903 space 
1904 id in preparation for ACPI 5.0 changes that will include some new space 
1905 IDs. 
1906 This 
1907 change should not affect user/host code.
1908
1909 Example Code and Data Size: These are the sizes for the OS-independent 
1910 acpica.lib 
1911 produced by the Microsoft Visual C++ 9.0 32-bit compiler. The debug 
1912 version of 
1913 the code includes the debug output trace mechanism and has a much larger 
1914 code 
1915 and 
1916 data size.
1917
1918   Previous Release (VC 9.0):
1919     Non-Debug Version:  89.8K Code, 23.8K Data, 113.6K Total
1920     Debug Version:     164.2K Code, 67.9K Data, 232.1K Total
1921   Current Release (VC 9.0):
1922     Non-Debug Version:  90.0K Code, 23.8K Data, 113.8K Total
1923     Debug Version:     164.5K Code, 68.0K Data, 232.5K Total
1924
1925 2) iASL Compiler/Disassembler and Tools:
1926
1927 iASL/DTC: Major update for new grammar features. Allow generic data types 
1928 in 
1929 custom ACPI tables. Field names are now optional. Any line can be split to 
1930 multiple lines using the continuation char (\). Large buffers now use 
1931 line-
1932 continuation character(s) and no colon on the continuation lines. See the 
1933 grammar 
1934 update in the iASL compiler reference. ACPI BZ 910,911. Lin Ming, Bob 
1935 Moore.
1936
1937 iASL: Mark ASL "Return()" and the simple "Return" as "Null" return 
1938 statements. 
1939 Since the parser stuffs a "zero" as the return value for these statements 
1940 (due 
1941 to 
1942 the underlying AML grammar), they were seen as "return with value" by the 
1943 iASL 
1944 semantic checking. They are now seen correctly as "null" return 
1945 statements.
1946
1947 iASL: Check if a_REG declaration has a corresponding Operation Region. 
1948 Adds a 
1949 check for each _REG to ensure that there is in fact a corresponding 
1950 operation 
1951 region declaration in the same scope. If not, the _REG method is not very 
1952 useful 
1953 since it probably won't be executed. ACPICA BZ 915.
1954
1955 iASL/DTC: Finish support for expression evaluation. Added a new expression 
1956 parser 
1957 that implements c-style operator precedence and parenthesization. ACPICA 
1958 bugzilla 
1959 908.
1960
1961 Disassembler/DTC: Remove support for () and <> style comments in data 
1962 tables. 
1963 Now 
1964 that DTC has full expression support, we don't want to have comment 
1965 strings 
1966 that 
1967 start with a parentheses or a less-than symbol. Now, only the standard /* 
1968 and 
1969 // 
1970 comments are supported, as well as the bracket [] comments.
1971
1972 AcpiXtract: Fix for RSDP and dynamic SSDT extraction. These tables have 
1973 "unusual" 
1974 headers in the acpidump file. Update the header validation to support 
1975 these 
1976 tables. Problem introduced in previous AcpiXtract version in the change to 
1977 support "wrong checksum" error messages emitted by acpidump utility.
1978
1979 iASL: Add a * option to generate all template files (as a synonym for ALL) 
1980 as 
1981 in 
1982 "iasl -T *" or "iasl -T ALL".
1983
1984 iASL/DTC: Do not abort compiler on fatal errors. We do not want to 
1985 completely 
1986 abort the compiler on "fatal" errors, simply should abort the current 
1987 compile. 
1988 This allows multiple compiles with a single (possibly wildcard) compiler 
1989 invocation.
1990
1991 ----------------------------------------
1992 16 March 2011. Summary of changes for version 20110316:
1993
1994 1) ACPI CA Core Subsystem:
1995
1996 Fixed a problem caused by a _PRW method appearing at the namespace root 
1997 scope 
1998 during the setup of wake GPEs. A fault could occur if a _PRW directly 
1999 under 
2000 the 
2001 root object was passed to the AcpiSetupGpeForWake interface. Lin Ming.
2002
2003 Implemented support for "spurious" Global Lock interrupts. On some 
2004 systems, a 
2005 global lock interrupt can occur without the pending flag being set. Upon a 
2006 GL 
2007 interrupt, we now ensure that a thread is actually waiting for the lock 
2008 before 
2009 signaling GL availability. Rafael Wysocki, Bob Moore.
2010
2011 Example Code and Data Size: These are the sizes for the OS-independent 
2012 acpica.lib 
2013 produced by the Microsoft Visual C++ 9.0 32-bit compiler. The debug 
2014 version of 
2015 the code includes the debug output trace mechanism and has a much larger 
2016 code 
2017 and 
2018 data size.
2019
2020   Previous Release (VC 9.0):
2021     Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
2022     Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
2023   Current Release (VC 9.0):
2024     Non-Debug Version:  89.8K Code, 23.8K Data, 113.6K Total
2025     Debug Version:     164.2K Code, 67.9K Data, 232.1K Total
2026
2027 2) iASL Compiler/Disassembler and Tools:
2028
2029 Implemented full support for the "SLIC" ACPI table. Includes support in 
2030 the 
2031 header files, disassembler, table compiler, and template generator. Bob 
2032 Moore, 
2033 Lin Ming.
2034
2035 AcpiXtract: Correctly handle embedded comments and messages from AcpiDump. 
2036 Apparently some or all versions of acpidump will occasionally emit a 
2037 comment 
2038 like 
2039 "Wrong checksum", etc., into the dump file. This was causing problems for 
2040 AcpiXtract. ACPICA BZ 905.
2041
2042 iASL: Fix the Linux makefile by removing an inadvertent double file 
2043 inclusion. 
2044 ACPICA BZ 913.
2045
2046 AcpiExec: Update installation of operation region handlers. Install one 
2047 handler 
2048 for a user-defined address space. This is used by the ASL test suite 
2049 (ASLTS).
2050
2051 ----------------------------------------
2052 11 February 2011. Summary of changes for version 20110211:
2053
2054 1) ACPI CA Core Subsystem:
2055
2056 Added a mechanism to defer _REG methods for some early-installed handlers. 
2057 Most user handlers should be installed before call to AcpiEnableSubsystem. 
2058 However, Event handlers and region handlers should be installed after 
2059 AcpiInitializeObjects. Override handlers for the "default" regions should 
2060 be 
2061 installed early, however. This change executes all _REG methods for the 
2062 default regions (Memory/IO/PCI/DataTable) simultaneously to prevent any 
2063 chicken/egg issues between them. ACPICA BZ 848.
2064
2065 Implemented an optimization for GPE detection. This optimization will 
2066 simply 
2067 ignore GPE registers that contain no enabled GPEs -- there is no need to 
2068 read the register since this information is available internally. This 
2069 becomes more important on machines with a large GPE space. ACPICA bugzilla 
2070 884. Lin Ming. Suggestion from Joe Liu.
2071
2072 Removed all use of the highly unreliable FADT revision field. The revision 
2073 number in the FADT has been found to be completely unreliable and cannot 
2074 be 
2075 trusted. Only the actual table length can be used to infer the version. 
2076 This 
2077 change updates the ACPICA core and the disassembler so that both no longer 
2078 even look at the FADT version and instead depend solely upon the FADT 
2079 length.
2080
2081 Fix an unresolved name issue for the no-debug and no-error-message source 
2082 generation cases. The _AcpiModuleName was left undefined in these cases, 
2083 but 
2084 it is actually needed as a parameter to some interfaces. Define 
2085 _AcpiModuleName as a null string in these cases. ACPICA Bugzilla 888.
2086
2087 Split several large files (makefiles and project files updated)
2088   utglobal.c   -> utdecode.c
2089   dbcomds.c    -> dbmethod.c dbnames.c
2090   dsopcode.c   -> dsargs.c dscontrol.c
2091   dsload.c     -> dsload2.c
2092   aslanalyze.c -> aslbtypes.c aslwalks.c
2093
2094 Example Code and Data Size: These are the sizes for the OS-independent 
2095 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
2096 debug version of the code includes the debug output trace mechanism and 
2097 has 
2098 a much larger code and data size.
2099
2100   Previous Release (VC 9.0):
2101     Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
2102     Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
2103   Current Release (VC 9.0):
2104     Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
2105     Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
2106
2107 2) iASL Compiler/Disassembler and Tools:
2108
2109 iASL: Implemented the predefined macros __LINE__, __FILE__, and __DATE__. 
2110 These are useful C-style macros with the standard definitions. ACPICA 
2111 bugzilla 898.
2112
2113 iASL/DTC: Added support for integer expressions and labels. Support for 
2114 full 
2115 expressions for all integer fields in all ACPI tables. Support for labels 
2116 in 
2117 "generic" portions of tables such as UEFI. See the iASL reference manual.
2118
2119 Debugger: Added a command to display the status of global handlers. The 
2120 "handlers" command will display op region, fixed event, and miscellaneous 
2121 global handlers. installation status -- and for op regions, whether 
2122 default 
2123 or user-installed handler will be used.
2124
2125 iASL: Warn if reserved method incorrectly returns a value. Many predefined 
2126 names are defined such that they do not return a value. If implemented as 
2127
2128 method, issue a warning if such a name explicitly returns a value. ACPICA 
2129 Bugzilla 855.
2130
2131 iASL: Added detection of GPE method name conflicts. Detects a conflict 
2132 where 
2133 there are two GPE methods of the form _Lxy and _Exy in the same scope. 
2134 (For 
2135 example, _L1D and _E1D in the same scope.) ACPICA bugzilla 848.
2136
2137 iASL/DTC: Fixed a couple input scanner issues with comments and line 
2138 numbers. Comment remover could get confused and miss a comment ending. 
2139 Fixed 
2140 a problem with line counter maintenance.
2141
2142 iASL/DTC: Reduced the severity of some errors from fatal to error. There 
2143 is 
2144 no need to abort on simple errors within a field definition.
2145
2146 Debugger: Simplified the output of the help command. All help output now 
2147 in 
2148 a single screen, instead of help subcommands. ACPICA Bugzilla 897.
2149
2150 ----------------------------------------
2151 12 January 2011. Summary of changes for version 20110112:
2152
2153 1) ACPI CA Core Subsystem:
2154
2155 Fixed a race condition between method execution and namespace walks that 
2156 can 
2157 possibly cause a fault. The problem was apparently introduced in version 
2158 20100528 as a result of a performance optimization that reduces the number 
2159 of 
2160 namespace walks upon method exit by using the delete_namespace_subtree 
2161 function instead of the delete_namespace_by_owner function used 
2162 previously. 
2163 Bug is a missing namespace lock in the delete_namespace_subtree function. 
2164 dana.myers@oracle.com
2165
2166 Fixed several issues and a possible fault with the automatic "serialized" 
2167 method support. History: This support changes a method to "serialized" on 
2168 the 
2169 fly if the method generates an AE_ALREADY_EXISTS error, indicating the 
2170 possibility that it cannot handle reentrancy. This fix repairs a couple of 
2171 issues seen in the field, especially on machines with many cores:
2172
2173     1) Delete method children only upon the exit of the last thread,
2174        so as to not delete objects out from under other running threads
2175       (and possibly causing a fault.)
2176     2) Set the "serialized" bit for the method only upon the exit of the
2177        Last thread, so as to not cause deadlock when running threads
2178        attempt to exit.
2179     3) Cleanup the use of the AML "MethodFlags" and internal method flags
2180        so that there is no longer any confusion between the two.
2181
2182     Lin Ming, Bob Moore. Reported by dana.myers@oracle.com.
2183
2184 Debugger: Now lock the namespace for duration of a namespace dump. 
2185 Prevents 
2186 issues if the namespace is changing dynamically underneath the debugger. 
2187 Especially affects temporary namespace nodes, since the debugger displays 
2188 these also.
2189
2190 Updated the ordering of include files. The ACPICA headers should appear 
2191 before any compiler-specific headers (stdio.h, etc.) so that acenv.h can 
2192 set 
2193 any necessary compiler-specific defines, etc. Affects the ACPI-related 
2194 tools 
2195 and utilities.
2196
2197 Updated all ACPICA copyrights and signons to 2011. Added the 2011 
2198 copyright 
2199 to all module headers and signons, including the Linux header. This 
2200 affects 
2201 virtually every file in the ACPICA core subsystem, iASL compiler, and all 
2202 utilities.
2203
2204 Added project files for MS Visual Studio 2008 (VC++ 9.0). The original 
2205 project files for VC++ 6.0 are now obsolete. New project files can be 
2206 found 
2207 under acpica/generate/msvc9. See acpica/generate/msvc9/readme.txt for 
2208 details.
2209
2210 Example Code and Data Size: These are the sizes for the OS-independent 
2211 acpica.lib produced by the Microsoft Visual C++ 9.0 32-bit compiler. The 
2212 debug version of the code includes the debug output trace mechanism and 
2213 has a 
2214 much larger code and data size.
2215
2216   Previous Release (VC 6.0):
2217     Non-Debug Version:  89.8K Code, 18.9K Data, 108.7K Total
2218     Debug Version:     166.6K Code, 52.1K Data, 218.7K Total
2219   Current Release (VC 9.0):
2220     Non-Debug Version:  89.7K Code, 23.7K Data, 113.4K Total
2221     Debug Version:     163.9K Code, 67.5K Data, 231.4K Total
2222
2223 2) iASL Compiler/Disassembler and Tools:
2224
2225 iASL: Added generic data types to the Data Table compiler. Add "generic" 
2226 data 
2227 types such as UINT32, String, Unicode, etc., to simplify the generation of 
2228 platform-defined tables such as UEFI. Lin Ming.
2229
2230 iASL: Added listing support for the Data Table Compiler. Adds listing 
2231 support 
2232 (-l) to display actual binary output for each line of input code.
2233
2234 ----------------------------------------
2235 09 December 2010. Summary of changes for version 20101209:
2236
2237 1) ACPI CA Core Subsystem:
2238
2239 Completed the major overhaul of the GPE support code that was begun in 
2240 July 
2241 2010. Major features include: removal of _PRW execution in ACPICA (host 
2242 executes _PRWs anyway), cleanup of "wake" GPE interfaces and processing, 
2243 changes to existing interfaces, simplification of GPE handler operation, 
2244 and 
2245 a handful of new interfaces:
2246
2247     AcpiUpdateAllGpes
2248     AcpiFinishGpe
2249     AcpiSetupGpeForWake
2250     AcpiSetGpeWakeMask
2251     One new file, evxfgpe.c to consolidate all external GPE interfaces.
2252
2253 See the ACPICA Programmer Reference for full details and programming 
2254 information. See the new section 4.4 "General Purpose Event (GPE) Support" 
2255 for a full overview, and section 8.7 "ACPI General Purpose Event 
2256 Management" 
2257 for programming details. ACPICA BZ 858,870,877. Matthew Garrett, Lin Ming, 
2258 Bob Moore, Rafael Wysocki.
2259
2260 Implemented a new GPE feature for Windows compatibility, the "Implicit 
2261 Wake 
2262 GPE Notify". This feature will automatically issue a Notify(2) on a device 
2263 when a Wake GPE is received if there is no corresponding GPE method or 
2264 handler. ACPICA BZ 870.
2265
2266 Fixed a problem with the Scope() operator during table parse and load 
2267 phase. 
2268 During load phase (table load or method execution), the scope operator 
2269 should 
2270 not enter the target into the namespace. Instead, it should open a new 
2271 scope 
2272 at the target location. Linux BZ 19462, ACPICA BZ 882.
2273
2274 Example Code and Data Size: These are the sizes for the OS-independent 
2275 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
2276 debug version of the code includes the debug output trace mechanism and 
2277 has a 
2278 much larger code and data size.
2279
2280   Previous Release:
2281     Non-Debug Version:  89.8K Code, 18.9K Data, 108.7K Total
2282     Debug Version:     166.6K Code, 52.1K Data, 218.7K Total
2283   Current Release:
2284     Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
2285     Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
2286
2287 2) iASL Compiler/Disassembler and Tools:
2288
2289 iASL: Relax the alphanumeric restriction on _CID strings. These strings 
2290 are 
2291 "bus-specific" per the ACPI specification, and therefore any characters 
2292 are 
2293 acceptable. The only checks that can be performed are for a null string 
2294 and 
2295 perhaps for a leading asterisk. ACPICA BZ 886.
2296
2297 iASL: Fixed a problem where a syntax error that caused a premature EOF 
2298 condition on the source file emitted a very confusing error message. The 
2299 premature EOF is now detected correctly. ACPICA BZ 891.
2300
2301 Disassembler: Decode the AccessSize within a Generic Address Structure 
2302 (byte 
2303 access, word access, etc.) Note, this field does not allow arbitrary bit 
2304 access, the size is encoded as 1=byte, 2=word, 3=dword, and 4=qword.
2305
2306 New: AcpiNames utility - Example namespace dump utility. Shows an example 
2307 of 
2308 ACPICA configuration for a minimal namespace dump utility. Uses table and 
2309 namespace managers, but no AML interpreter. Does not add any functionality 
2310 over AcpiExec, it is a subset of AcpiExec. The purpose is to show how to 
2311 partition and configure ACPICA. ACPICA BZ 883.
2312
2313 AML Debugger: Increased the debugger buffer size for method return 
2314 objects. 
2315 Was 4K, increased to 16K. Also enhanced error messages for debugger method 
2316 execution, including the buffer overflow case.
2317
2318 ----------------------------------------
2319 13 October 2010. Summary of changes for version 20101013:
2320
2321 1) ACPI CA Core Subsystem:
2322
2323 Added support to clear the PCIEXP_WAKE event. When clearing ACPI events, 
2324 now 
2325 clear the PCIEXP_WAKE_STS bit in the ACPI PM1 Status Register, via 
2326 HwClearAcpiStatus. Original change from Colin King. ACPICA BZ 880.
2327
2328 Changed the type of the predefined namespace object _TZ from ThermalZone 
2329 to 
2330 Device. This was found to be confusing to the host software that processes 
2331 the various thermal zones, since _TZ is not really a ThermalZone. However, 
2332
2333 Notify() can still be performed on it. ACPICA BZ 876. Suggestion from Rui 
2334 Zhang.
2335
2336 Added Windows Vista SP2 to the list of supported _OSI strings. The actual 
2337 string is "Windows 2006 SP2".
2338
2339 Eliminated duplicate code in AcpiUtExecute* functions. Now that the 
2340 nsrepair 
2341 code automatically repairs _HID-related strings, this type of code is no 
2342 longer needed in Execute_HID, Execute_CID, and Execute_UID. ACPICA BZ 878.
2343
2344 Example Code and Data Size: These are the sizes for the OS-independent 
2345 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
2346 debug version of the code includes the debug output trace mechanism and 
2347 has a 
2348 much larger code and data size.
2349
2350   Previous Release:
2351     Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
2352     Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
2353   Current Release:
2354     Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
2355     Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
2356
2357 2) iASL Compiler/Disassembler and Tools:
2358
2359 iASL: Implemented additional compile-time validation for _HID strings. The 
2360 non-hex prefix (such as "PNP" or "ACPI") must be uppercase, and the length 
2361 of 
2362 the string must be exactly seven or eight characters. For both _HID and 
2363 _CID 
2364 strings, all characters must be alphanumeric. ACPICA BZ 874.
2365
2366 iASL: Allow certain "null" resource descriptors. Some BIOS code creates 
2367 descriptors that are mostly or all zeros, with the expectation that they 
2368 will 
2369 be filled in at runtime. iASL now allows this as long as there is a 
2370 "resource 
2371 tag" (name) associated with the descriptor, which gives the ASL a handle 
2372 needed to modify the descriptor. ACPICA BZ 873.
2373
2374 Added single-thread support to the generic Unix application OSL. Primarily 
2375 for iASL support, this change removes the use of semaphores in the single-
2376 threaded ACPICA tools/applications - increasing performance. The 
2377 _MULTI_THREADED option was replaced by the (reverse) ACPI_SINGLE_THREADED 
2378 option. ACPICA BZ 879.
2379
2380 AcpiExec: several fixes for the 64-bit version. Adds XSDT support and 
2381 support 
2382 for 64-bit DSDT/FACS addresses in the FADT. Lin Ming.
2383
2384 iASL: Moved all compiler messages to a new file, aslmessages.h.
2385
2386 ----------------------------------------
2387 15 September 2010. Summary of changes for version 20100915:
2388
2389 1) ACPI CA Core Subsystem:
2390
2391 Removed the AcpiOsDerivePciId OSL interface. The various host 
2392 implementations 
2393 of this function were not OS-dependent and are now obsolete and can be 
2394 removed from all host OSLs. This function has been replaced by 
2395 AcpiHwDerivePciId, which is now part of the ACPICA core code. 
2396 AcpiHwDerivePciId has been implemented without recursion. Adds one new 
2397 module, hwpci.c. ACPICA BZ 857.
2398
2399 Implemented a dynamic repair for _HID and _CID strings. The following 
2400 problems are now repaired at runtime: 1) Remove a leading asterisk in the 
2401 string, and 2) the entire string is uppercased. Both repairs are in 
2402 accordance with the ACPI specification and will simplify host driver code. 
2403 ACPICA BZ 871.
2404
2405 The ACPI_THREAD_ID type is no longer configurable, internally it is now 
2406 always UINT64. This simplifies the ACPICA code, especially any printf 
2407 output. 
2408 UINT64 is the only common data type for all thread_id types across all 
2409 operating systems. It is now up to the host OSL to cast the native 
2410 thread_id 
2411 type to UINT64 before returning the value to ACPICA (via 
2412 AcpiOsGetThreadId). 
2413 Lin Ming, Bob Moore.
2414
2415 Added the ACPI_INLINE type to enhance the ACPICA configuration. The 
2416 "inline" 
2417 keyword is not standard across compilers, and this type allows inline to 
2418 be 
2419 configured on a per-compiler basis. Lin Ming.
2420
2421 Made the system global AcpiGbl_SystemAwakeAndRunning publically available. 
2422 Added an extern for this boolean in acpixf.h. Some hosts utilize this 
2423 value 
2424 during suspend/restore operations. ACPICA BZ 869.
2425
2426 All code that implements error/warning messages with the "ACPI:" prefix 
2427 has 
2428 been moved to a new module, utxferror.c.
2429
2430 The UINT64_OVERLAY was moved to utmath.c, which is the only module where 
2431 it 
2432 is used. ACPICA BZ 829. Lin Ming, Bob Moore.
2433
2434 Example Code and Data Size: These are the sizes for the OS-independent 
2435 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
2436 debug version of the code includes the debug output trace mechanism and 
2437 has a 
2438 much larger code and data size.
2439
2440   Previous Release:
2441     Non-Debug Version:  89.1K Code, 19.0K Data, 108.1K Total
2442     Debug Version:     165.1K Code, 51.9K Data, 217.0K Total
2443   Current Release:
2444     Non-Debug Version:  89.9K Code, 19.0K Data, 108.9K Total
2445     Debug Version:     166.3K Code, 52.1K Data, 218.4K Total
2446
2447 2) iASL Compiler/Disassembler and Tools:
2448
2449 iASL/Disassembler: Write ACPI errors to stderr instead of the output file. 
2450 This keeps the output files free of random error messages that may 
2451 originate 
2452 from within the namespace/interpreter code. Used this opportunity to merge 
2453 all ACPI:-style messages into a single new module, utxferror.c. ACPICA BZ 
2454 866. Lin Ming, Bob Moore.
2455
2456 Tools: update some printfs for ansi warnings on size_t. Handle width 
2457 change 
2458 of size_t on 32-bit versus 64-bit generations. Lin Ming.
2459
2460 ----------------------------------------
2461 06 August 2010. Summary of changes for version 20100806:
2462
2463 1) ACPI CA Core Subsystem:
2464
2465 Designed and implemented a new host interface to the _OSI support code. 
2466 This 
2467 will allow the host to dynamically add or remove multiple _OSI strings, as 
2468 well as install an optional handler that is called for each _OSI 
2469 invocation. 
2470 Also added a new AML debugger command, 'osi' to display and modify the 
2471 global 
2472 _OSI string table, and test support in the AcpiExec utility. See the 
2473 ACPICA 
2474 reference manual for full details. Lin Ming, Bob Moore. ACPICA BZ 836.
2475 New Functions:
2476     AcpiInstallInterface - Add an _OSI string.
2477     AcpiRemoveInterface - Delete an _OSI string.
2478     AcpiInstallInterfaceHandler - Install optional _OSI handler.
2479 Obsolete Functions:
2480     AcpiOsValidateInterface - no longer used.
2481 New Files:
2482     source/components/utilities/utosi.c
2483
2484 Re-introduced the support to enable multi-byte transfers for Embedded 
2485 Controller (EC) operation regions. A reported problem was found to be a 
2486 bug 
2487 in the host OS, not in the multi-byte support. Previously, the maximum 
2488 data 
2489 size passed to the EC operation region handler was a single byte. There 
2490 are 
2491 often EC Fields larger than one byte that need to be transferred, and it 
2492 is 
2493 useful for the EC driver to lock these as a single transaction. This 
2494 change 
2495 enables single transfers larger than 8 bits. This effectively changes the 
2496 access to the EC space from ByteAcc to AnyAcc, and will probably require 
2497 changes to the host OS Embedded Controller driver to enable 16/32/64/256-
2498 bit 
2499 transfers in addition to 8-bit transfers. Alexey Starikovskiy, Lin Ming.
2500
2501 Fixed a problem with the prototype for AcpiOsReadPciConfiguration. The 
2502 prototype in acpiosxf.h had the output value pointer as a (void *).
2503 It should be a (UINT64 *). This may affect some host OSL code.
2504
2505 Fixed a couple problems with the recently modified Linux makefiles for 
2506 iASL 
2507 and AcpiExec. These new makefiles place the generated object files in the 
2508 local directory so that there can be no collisions between the files that 
2509 are 
2510 shared between them that are compiled with different options.
2511
2512 Example Code and Data Size: These are the sizes for the OS-independent 
2513 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
2514 debug version of the code includes the debug output trace mechanism and 
2515 has a 
2516 much larger code and data size.
2517
2518   Previous Release:
2519     Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
2520     Debug Version:     164.0K Code, 51.5K Data, 215.5K Total
2521   Current Release:
2522     Non-Debug Version:  89.1K Code, 19.0K Data, 108.1K Total
2523     Debug Version:     165.1K Code, 51.9K Data, 217.0K Total
2524
2525 2) iASL Compiler/Disassembler and Tools:
2526
2527 iASL/Disassembler: Added a new option (-da, "disassemble all") to load the 
2528 namespace from and disassemble an entire group of AML files. Useful for 
2529 loading all of the AML tables for a given machine (DSDT, SSDT1...SSDTn) 
2530 and 
2531 disassembling with one simple command. ACPICA BZ 865. Lin Ming.
2532
2533 iASL: Allow multiple invocations of -e option. This change allows multiple 
2534 uses of -e on the command line: "-e ssdt1.dat -e ssdt2.dat". ACPICA BZ 
2535 834. 
2536 Lin Ming.
2537
2538 ----------------------------------------
2539 02 July 2010. Summary of changes for version 20100702:
2540
2541 1) ACPI CA Core Subsystem:
2542
2543 Implemented several updates to the recently added GPE reference count 
2544 support. The model for "wake" GPEs is changing to give the host OS 
2545 complete 
2546 control of these GPEs. Eventually, the ACPICA core will not execute any 
2547 _PRW 
2548 methods, since the host already must execute them. Also, additional 
2549 changes 
2550 were made to help ensure that the reference counts are kept in proper 
2551 synchronization with reality. Rafael J. Wysocki.
2552
2553 1) Ensure that GPEs are not enabled twice during initialization.
2554 2) Ensure that GPE enable masks stay in sync with the reference count.
2555 3) Do not inadvertently enable GPEs when writing GPE registers.
2556 4) Remove the internal wake reference counter and add new AcpiGpeWakeup 
2557 interface. This interface will set or clear individual GPEs for wakeup.
2558 5) Remove GpeType argument from AcpiEnable and AcpiDisable. These 
2559 interfaces 
2560 are now used for "runtime" GPEs only.
2561
2562 Changed the behavior of the GPE install/remove handler interfaces. The GPE 
2563 is 
2564 no longer disabled during this process, as it was found to cause problems 
2565 on 
2566 some machines. Rafael J. Wysocki.
2567
2568 Reverted a change introduced in version 20100528 to enable Embedded 
2569 Controller multi-byte transfers. This change was found to cause problems 
2570 with 
2571 Index Fields and possibly Bank Fields. It will be reintroduced when these 
2572 problems have been resolved.
2573
2574 Fixed a problem with references to Alias objects within Package Objects. A 
2575 reference to an Alias within the definition of a Package was not always 
2576 resolved properly. Aliases to objects like Processors, Thermal zones, etc. 
2577 were resolved to the actual object instead of a reference to the object as 
2578 it 
2579 should be. Package objects are only allowed to contain integer, string, 
2580 buffer, package, and reference objects. Redhat bugzilla 608648.
2581
2582 Example Code and Data Size: These are the sizes for the OS-independent 
2583 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
2584 debug version of the code includes the debug output trace mechanism and 
2585 has a 
2586 much larger code and data size.
2587
2588   Previous Release:
2589     Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
2590     Debug Version:     164.1K Code, 51.5K Data, 215.6K Total
2591   Current Release:
2592     Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
2593     Debug Version:     164.0K Code, 51.5K Data, 215.5K Total
2594
2595 2) iASL Compiler/Disassembler and Tools:
2596
2597 iASL: Implemented a new compiler subsystem to allow definition and 
2598 compilation of the non-AML ACPI tables such as FADT, MADT, SRAT, etc. 
2599 These 
2600 are called "ACPI Data Tables", and the new compiler is the "Data Table 
2601 Compiler". This compiler is intended to simplify the existing error-prone 
2602 process of creating these tables for the BIOS, as well as allowing the 
2603 disassembly, modification, recompilation, and override of existing ACPI 
2604 data 
2605 tables. See the iASL User Guide for detailed information.
2606
2607 iASL: Implemented a new Template Generator option in support of the new 
2608 Data 
2609 Table Compiler. This option will create examples of all known ACPI tables 
2610 that can be used as the basis for table development. See the iASL 
2611 documentation and the -T option.
2612
2613 Disassembler and headers: Added support for the WDDT ACPI table (Watchdog 
2614 Descriptor Table).
2615
2616 Updated the Linux makefiles for iASL and AcpiExec to place the generated 
2617 object files in the local directory so that there can be no collisions 
2618 between the shared files between them that are generated with different 
2619 options.
2620
2621 Added support for Mac OS X in the Unix OSL used for iASL and AcpiExec. Use 
2622 the #define __APPLE__ to enable this support.
2623
2624 ----------------------------------------
2625 28 May 2010. Summary of changes for version 20100528:
2626
2627 Note: The ACPI 4.0a specification was released on April 5, 2010 and is 
2628 available at www.acpi.info. This is primarily an errata release.
2629
2630 1) ACPI CA Core Subsystem:
2631
2632 Undefined ACPI tables: We are looking for the definitions for the 
2633 following 
2634 ACPI tables that have been seen in the field: ATKG, IEIT, GSCI.
2635
2636 Implemented support to enable multi-byte transfers for Embedded Controller 
2637 (EC) operation regions. Previously, the maximum data size passed to the EC 
2638 operation region handler was a single byte. There are often EC Fields 
2639 larger 
2640 than one byte that need to be transferred, and it is useful for the EC 
2641 driver 
2642 to lock these as a single transaction. This change enables single 
2643 transfers 
2644 larger than 8 bits. This effectively changes the access to the EC space 
2645 from 
2646 ByteAcc to AnyAcc, and will probably require changes to the host OS 
2647 Embedded 
2648 Controller driver to enable 16/32/64/256-bit transfers in addition to 8-
2649 bit 
2650 transfers. Alexey Starikovskiy, Lin Ming
2651
2652 Implemented a performance enhancement for namespace search and access. 
2653 This 
2654 change enhances the performance of namespace searches and walks by adding 
2655
2656 backpointer to the parent in each namespace node. On large namespaces, 
2657 this 
2658 change can improve overall ACPI performance by up to 9X. Adding a pointer 
2659 to 
2660 each namespace node increases the overall size of the internal namespace 
2661 by 
2662 about 5%, since each namespace entry usually consists of both a namespace 
2663 node and an ACPI operand object. However, this is the first growth of the 
2664 namespace in ten years. ACPICA bugzilla 817. Alexey Starikovskiy.
2665
2666 Implemented a performance optimization that reduces the number of 
2667 namespace 
2668 walks. On control method exit, only walk the namespace if the method is 
2669 known 
2670 to have created namespace objects outside of its local scope. Previously, 
2671 the 
2672 entire namespace was traversed on each control method exit. This change 
2673 can 
2674 improve overall ACPI performance by up to 3X. Alexey Starikovskiy, Bob 
2675 Moore.
2676
2677 Added support to truncate I/O addresses to 16 bits for Windows 
2678 compatibility. 
2679 Some ASL code has been seen in the field that inadvertently has bits set 
2680 above bit 15. This feature is optional and is enabled if the BIOS requests 
2681 any Windows OSI strings. It can also be enabled by the host OS. Matthew 
2682 Garrett, Bob Moore.
2683
2684 Added support to limit the maximum time for the ASL Sleep() operator. To 
2685 prevent accidental deep sleeps, limit the maximum time that Sleep() will 
2686 actually sleep. Configurable, the default maximum is two seconds. ACPICA 
2687 bugzilla 854.
2688
2689 Added run-time validation support for the _WDG and_WED Microsoft 
2690 predefined 
2691 methods. These objects are defined by "Windows Instrumentation", and are 
2692 not 
2693 part of the ACPI spec. ACPICA BZ 860.
2694
2695 Expanded all statistic counters used during namespace and device 
2696 initialization from 16 to 32 bits in order to support very large 
2697 namespaces.
2698
2699 Replaced all instances of %d in printf format specifiers with %u since 
2700 nearly 
2701 all integers in ACPICA are unsigned.
2702
2703 Fixed the exception namestring for AE_WAKE_ONLY_GPE. Was incorrectly 
2704 returned 
2705 as AE_NO_HANDLER.
2706
2707 Example Code and Data Size: These are the sizes for the OS-independent 
2708 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
2709 debug version of the code includes the debug output trace mechanism and 
2710 has a 
2711 much larger code and data size.
2712
2713   Previous Release:
2714     Non-Debug Version:  88.4K Code, 18.8K Data, 107.2K Total
2715     Debug Version:     164.2K Code, 51.5K Data, 215.7K Total
2716   Current Release:
2717     Non-Debug Version:  88.3K Code, 18.8K Data, 107.1K Total
2718     Debug Version:     164.1K Code, 51.5K Data, 215.6K Total
2719
2720 2) iASL Compiler/Disassembler and Tools:
2721
2722 iASL: Added compiler support for the _WDG and_WED Microsoft predefined 
2723 methods. These objects are defined by "Windows Instrumentation", and are 
2724 not 
2725 part of the ACPI spec. ACPICA BZ 860.
2726
2727 AcpiExec: added option to disable the memory tracking mechanism. The -dt 
2728 option will disable the tracking mechanism, which improves performance 
2729 considerably.
2730
2731 AcpiExec: Restructured the command line options into -d (disable) and -e 
2732 (enable) options.
2733
2734 ----------------------------------------
2735 28 April 2010. Summary of changes for version 20100428:
2736
2737 1) ACPI CA Core Subsystem:
2738
2739 Implemented GPE support for dynamically loaded ACPI tables. For all GPEs, 
2740 including FADT-based and GPE Block Devices, execute any _PRW methods in 
2741 the 
2742 new table, and process any _Lxx/_Exx GPE methods in the new table. Any 
2743 runtime GPE that is referenced by an _Lxx/_Exx method in the new table is 
2744 immediately enabled. Handles the FADT-defined GPEs as well as GPE Block 
2745 Devices. Provides compatibility with other ACPI implementations. Two new 
2746 files added, evgpeinit.c and evgpeutil.c. ACPICA BZ 833. Lin Ming, Bob 
2747 Moore.
2748
2749 Fixed a regression introduced in version 20100331 within the table manager 
2750 where initial table loading could fail. This was introduced in the fix for 
2751 AcpiReallocateRootTable. Also, renamed some of fields in the table manager 
2752 data structures to clarify their meaning and use.
2753
2754 Fixed a possible allocation overrun during internal object copy in 
2755 AcpiUtCopySimpleObject. The original code did not correctly handle the 
2756 case 
2757 where the object to be copied was a namespace node. Lin Ming. ACPICA BZ 
2758 847.
2759
2760 Updated the allocation dump routine, AcpiUtDumpAllocation and fixed a 
2761 possible access beyond end-of-allocation. Also, now fully validate 
2762 descriptor 
2763 (size and type) before output. Lin Ming, Bob Moore. ACPICA BZ 847
2764
2765 Example Code and Data Size: These are the sizes for the OS-independent 
2766 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
2767 debug version of the code includes the debug output trace mechanism and 
2768 has a 
2769 much larger code and data size.
2770
2771   Previous Release:
2772     Non-Debug Version:  87.9K Code, 18.6K Data, 106.5K Total
2773     Debug Version:     163.5K Code, 51.3K Data, 214.8K Total
2774   Current Release:
2775     Non-Debug Version:  88.4K Code, 18.8K Data, 107.2K Total
2776     Debug Version:     164.2K Code, 51.5K Data, 215.7K Total
2777
2778 2) iASL Compiler/Disassembler and Tools:
2779
2780 iASL: Implemented Min/Max/Len/Gran validation for address resource 
2781 descriptors. This change implements validation for the address fields that 
2782 are common to all address-type resource descriptors. These checks are 
2783 implemented: Checks for valid Min/Max, length within the Min/Max window, 
2784 valid granularity, Min/Max a multiple of granularity, and _MIF/_MAF as per 
2785 table 6-40 in the ACPI 4.0a specification. Also split the large 
2786 aslrestype1.c 
2787 and aslrestype2.c files into five new files. ACPICA BZ 840.
2788
2789 iASL: Added support for the _Wxx predefined names. This support was 
2790 missing 
2791 and these names were not recognized by the compiler as valid predefined 
2792 names. ACPICA BZ 851.
2793
2794 iASL: Added an error for all predefined names that are defined to return 
2795 no 
2796 value and thus must be implemented as Control Methods. These include all 
2797 of 
2798 the _Lxx, _Exx, _Wxx, and _Qxx names, as well as some other miscellaneous 
2799 names such as _DIS, _INI, _IRC, _OFF, _ON, and _PSx. ACPICA BZ 850, 856.
2800
2801 iASL: Implemented the -ts option to emit hex AML data in ASL format, as an 
2802 ASL Buffer. Allows ACPI tables to be easily included within ASL files, to 
2803 be 
2804 dynamically loaded via the Load() operator. Also cleaned up output for the 
2805 -
2806 ta and -tc options. ACPICA BZ 853.
2807
2808 Tests: Added a new file with examples of extended iASL error checking. 
2809 Demonstrates the advanced error checking ability of the iASL compiler. 
2810 Available at tests/misc/badcode.asl.
2811
2812 ----------------------------------------
2813 31 March 2010. Summary of changes for version 20100331:
2814
2815 1) ACPI CA Core Subsystem:
2816
2817 Completed a major update for the GPE support in order to improve support 
2818 for 
2819 shared GPEs and to simplify both host OS and ACPICA code. Added a 
2820 reference 
2821 count mechanism to support shared GPEs that require multiple device 
2822 drivers. 
2823 Several external interfaces have changed. One external interface has been 
2824 removed. One new external interface was added. Most of the GPE external 
2825 interfaces now use the GPE spinlock instead of the events mutex (and the 
2826 Flags parameter for many GPE interfaces has been removed.) See the updated 
2827 ACPICA Programmer Reference for details. Matthew Garrett, Bob Moore, 
2828 Rafael 
2829 Wysocki. ACPICA BZ 831.
2830
2831 Changed:
2832     AcpiEnableGpe, AcpiDisableGpe, AcpiClearGpe, AcpiGetGpeStatus
2833 Removed:
2834     AcpiSetGpeType
2835 New:
2836     AcpiSetGpe
2837
2838 Implemented write support for DataTable operation regions. These regions 
2839 are 
2840 defined via the DataTableRegion() operator. Previously, only read support 
2841 was 
2842 implemented. The ACPI specification allows DataTableRegions to be 
2843 read/write, 
2844 however.
2845
2846 Implemented a new subsystem option to force a copy of the DSDT to local 
2847 memory. Optionally copy the entire DSDT to local memory (instead of simply 
2848 mapping it.) There are some (albeit very rare) BIOSs that corrupt or 
2849 replace 
2850 the original DSDT, creating the need for this option. Default is FALSE, do 
2851 not copy the DSDT.
2852
2853 Implemented detection of a corrupted or replaced DSDT. This change adds 
2854 support to detect a DSDT that has been corrupted and/or replaced from 
2855 outside 
2856 the OS (by firmware). This is typically catastrophic for the system, but 
2857 has 
2858 been seen on some machines. Once this problem has been detected, the DSDT 
2859 copy option can be enabled via system configuration. Lin Ming, Bob Moore.
2860
2861 Fixed two problems with AcpiReallocateRootTable during the root table 
2862 copy. 
2863 When copying the root table to the new allocation, the length used was 
2864 incorrect. The new size was used instead of the current table size, 
2865 meaning 
2866 too much data was copied. Also, the count of available slots for ACPI 
2867 tables 
2868 was not set correctly. Alexey Starikovskiy, Bob Moore.
2869
2870 Example Code and Data Size: These are the sizes for the OS-independent 
2871 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
2872 debug version of the code includes the debug output trace mechanism and 
2873 has a 
2874 much larger code and data size.
2875
2876   Previous Release:
2877     Non-Debug Version:  87.5K Code, 18.4K Data, 105.9K Total
2878     Debug Version:     163.4K Code, 51.1K Data, 214.5K Total
2879   Current Release:
2880     Non-Debug Version:  87.9K Code, 18.6K Data, 106.5K Total
2881     Debug Version:     163.5K Code, 51.3K Data, 214.8K Total
2882
2883 2) iASL Compiler/Disassembler and Tools:
2884
2885 iASL: Implement limited typechecking for values returned from predefined 
2886 control methods. The type of any returned static (unnamed) object is now 
2887 validated. For example, Return(1). ACPICA BZ 786.
2888
2889 iASL: Fixed a predefined name object verification regression. Fixes a 
2890 problem 
2891 introduced in version 20100304. An error is incorrectly generated if a 
2892 predefined name is declared as a static named object with a value defined 
2893 using the keywords "Zero", "One", or "Ones". Lin Ming.
2894
2895 iASL: Added Windows 7 support for the -g option (get local ACPI tables) by 
2896 reducing the requested registry access rights. ACPICA BZ 842.
2897
2898 Disassembler: fixed a possible fault when generating External() 
2899 statements. 
2900 Introduced in commit ae7d6fd: Properly handle externals with parent-prefix 
2901 (carat). Fixes a string length allocation calculation. Lin Ming.
2902
2903 ----------------------------------------
2904 04 March 2010. Summary of changes for version 20100304:
2905
2906 1) ACPI CA Core Subsystem:
2907
2908 Fixed a possible problem with the AML Mutex handling function 
2909 AcpiExReleaseMutex where the function could fault under the very rare 
2910 condition when the interpreter has blocked, the interpreter lock is 
2911 released, 
2912 the interpreter is then reentered via the same thread, and attempts to 
2913 acquire an AML mutex that was previously acquired. FreeBSD report 140979. 
2914 Lin 
2915 Ming.
2916
2917 Implemented additional configuration support for the AML "Debug Object". 
2918 Output from the debug object can now be enabled via a global variable, 
2919 AcpiGbl_EnableAmlDebugObject. This will assist with remote machine 
2920 debugging. 
2921 This debug output is now available in the release version of ACPICA 
2922 instead 
2923 of just the debug version. Also, the entire debug output module can now be 
2924 configured out of the ACPICA build if desired. One new file added, 
2925 executer/exdebug.c. Lin Ming, Bob Moore.
2926
2927 Added header support for the ACPI MCHI table (Management Controller Host 
2928 Interface Table). This table was added in ACPI 4.0, but the defining 
2929 document 
2930 has only recently become available.
2931
2932 Standardized output of integer values for ACPICA warnings/errors. Always 
2933 use 
2934 0x prefix for hex output, always use %u for unsigned integer decimal 
2935 output. 
2936 Affects ACPI_INFO, ACPI_ERROR, ACPI_EXCEPTION, and ACPI_WARNING (about 400 
2937 invocations.) These invocations were converted from the original 
2938 ACPI_DEBUG_PRINT invocations and were not consistent. ACPICA BZ 835.
2939
2940 Example Code and Data Size: These are the sizes for the OS-independent 
2941 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
2942 debug version of the code includes the debug output trace mechanism and 
2943 has a 
2944 much larger code and data size.
2945
2946   Previous Release:
2947     Non-Debug Version:  87.1K Code, 18.0K Data, 105.1K Total
2948     Debug Version:     163.5K Code, 50.9K Data, 214.4K Total
2949   Current Release:
2950     Non-Debug Version:  87.5K Code, 18.4K Data, 105.9K Total
2951     Debug Version:     163.4K Code, 51.1K Data, 214.5K Total
2952
2953 2) iASL Compiler/Disassembler and Tools:
2954
2955 iASL: Implemented typechecking support for static (non-control method) 
2956 predefined named objects that are declared with the Name() operator. For 
2957 example, the type of this object is now validated to be of type Integer: 
2958 Name(_BBN, 1). This change migrates the compiler to using the core 
2959 predefined 
2960 name table instead of maintaining a local version. Added a new file, 
2961 aslpredef.c. ACPICA BZ 832.
2962
2963 Disassembler: Added support for the ACPI 4.0 MCHI table.
2964
2965 ----------------------------------------
2966 21 January 2010. Summary of changes for version 20100121:
2967
2968 1) ACPI CA Core Subsystem:
2969
2970 Added the 2010 copyright to all module headers and signons. This affects 
2971 virtually every file in the ACPICA core subsystem, the iASL compiler, the 
2972 tools/utilities, and the test suites.
2973
2974 Implemented a change to the AcpiGetDevices interface to eliminate 
2975 unnecessary 
2976 invocations of the _STA method. In the case where a specific _HID is 
2977 requested, do not run _STA until a _HID match is found. This eliminates 
2978 potentially dozens of _STA calls during a search for a particular 
2979 device/HID, 
2980 which in turn can improve boot times. ACPICA BZ 828. Lin Ming.
2981
2982 Implemented an additional repair for predefined method return values. 
2983 Attempt 
2984 to repair unexpected NULL elements within returned Package objects. Create 
2985 an 
2986 Integer of value zero, a NULL String, or a zero-length Buffer as 
2987 appropriate. 
2988 ACPICA BZ 818. Lin Ming, Bob Moore.
2989
2990 Removed the obsolete ACPI_INTEGER data type. This type was introduced as 
2991 the 
2992 code was migrated from ACPI 1.0 (with 32-bit AML integers) to ACPI 2.0 
2993 (with 
2994 64-bit AML integers). It is now obsolete and this change removes it from 
2995 the 
2996 ACPICA code base, replaced by UINT64. The original typedef has been 
2997 retained 
2998 for now for compatibility with existing device driver code. ACPICA BZ 824.
2999
3000 Removed the unused UINT32_STRUCT type, and the obsolete Integer64 field in 
3001 the parse tree object.
3002
3003 Added additional warning options for the gcc-4 generation. Updated the 
3004 source 
3005 accordingly. This includes some code restructuring to eliminate 
3006 unreachable 
3007 code, elimination of some gotos, elimination of unused return values, some 
3008 additional casting, and removal of redundant declarations.
3009
3010 Example Code and Data Size: These are the sizes for the OS-independent 
3011 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3012 debug version of the code includes the debug output trace mechanism and 
3013 has a 
3014 much larger code and data size.
3015
3016   Previous Release:
3017     Non-Debug Version:  87.0K Code, 18.0K Data, 105.0K Total
3018     Debug Version:     163.4K Code, 50.8K Data, 214.2K Total
3019   Current Release:
3020     Non-Debug Version:  87.1K Code, 18.0K Data, 105.1K Total
3021     Debug Version:     163.5K Code, 50.9K Data, 214.4K Total
3022
3023 2) iASL Compiler/Disassembler and Tools:
3024
3025 No functional changes for this release.
3026
3027 ----------------------------------------
3028 14 December 2009. Summary of changes for version 20091214:
3029
3030 1) ACPI CA Core Subsystem:
3031
3032 Enhanced automatic data type conversions for predefined name repairs. This 
3033 change expands the automatic repairs/conversions for predefined name 
3034 return 
3035 values to make Integers, Strings, and Buffers fully interchangeable. Also, 
3036
3037 Buffer can be converted to a Package of Integers if necessary. The 
3038 nsrepair.c 
3039 module was completely restructured. Lin Ming, Bob Moore.
3040
3041 Implemented automatic removal of null package elements during predefined 
3042 name 
3043 repairs. This change will automatically remove embedded and trailing NULL 
3044 package elements from returned package objects that are defined to contain 
3045
3046 variable number of sub-packages. The driver is then presented with a 
3047 package 
3048 with no null elements to deal with. ACPICA BZ 819.
3049
3050 Implemented a repair for the predefined _FDE and _GTM names. The expected 
3051 return value for both names is a Buffer of 5 DWORDs. This repair fixes two 
3052 possible problems (both seen in the field), where a package of integers is 
3053 returned, or a buffer of BYTEs is returned. With assistance from Jung-uk 
3054 Kim.
3055
3056 Implemented additional module-level code support. This change will 
3057 properly 
3058 execute module-level code that is not at the root of the namespace (under 
3059
3060 Device object, etc.). Now executes the code within the current scope 
3061 instead 
3062 of the root. ACPICA BZ 762. Lin Ming.
3063
3064 Fixed possible mutex acquisition errors when running _REG methods. Fixes a 
3065 problem where mutex errors can occur when running a _REG method that is in 
3066 the same scope as a method-defined operation region or an operation region 
3067 under a module-level IF block. This type of code is rare, so the problem 
3068 has 
3069 not been seen before. ACPICA BZ 826. Lin Ming, Bob Moore.
3070
3071 Fixed a possible memory leak during module-level code execution. An object 
3072 could be leaked for each block of executed module-level code if the 
3073 interpreter slack mode is enabled This change deletes any implicitly 
3074 returned 
3075 object from the module-level code block. Lin Ming.
3076
3077 Removed messages for successful predefined repair(s). The repair mechanism 
3078 was considered too wordy. Now, messages are only unconditionally emitted 
3079 if 
3080 the return object cannot be repaired. Existing messages for successful 
3081 repairs were converted to ACPI_DEBUG_PRINT messages for now. ACPICA BZ 
3082 827.
3083
3084 Example Code and Data Size: These are the sizes for the OS-independent 
3085 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3086 debug version of the code includes the debug output trace mechanism and 
3087 has a 
3088 much larger code and data size.
3089
3090   Previous Release:
3091     Non-Debug Version:  86.6K Code, 18.2K Data, 104.8K Total
3092     Debug Version:     162.7K Code, 50.8K Data, 213.5K Total
3093   Current Release:
3094     Non-Debug Version:  87.0K Code, 18.0K Data, 105.0K Total
3095     Debug Version:     163.4K Code, 50.8K Data, 214.2K Total
3096
3097 2) iASL Compiler/Disassembler and Tools:
3098
3099 iASL: Fixed a regression introduced in 20091112 where intermediate .SRC 
3100 files 
3101 were no longer automatically removed at the termination of the compile.
3102
3103 acpiexec: Implemented the -f option to specify default region fill value. 
3104 This option specifies the value used to initialize buffers that simulate 
3105 operation regions. Default value is zero. Useful for debugging problems 
3106 that 
3107 depend on a specific initial value for a region or field.
3108
3109 ----------------------------------------
3110 12 November 2009. Summary of changes for version 20091112:
3111
3112 1) ACPI CA Core Subsystem:
3113
3114 Implemented a post-order callback to AcpiWalkNamespace. The existing 
3115 interface only has a pre-order callback. This change adds an additional 
3116 parameter for a post-order callback which will be more useful for bus 
3117 scans. 
3118 ACPICA BZ 779. Lin Ming. Updated the ACPICA Programmer Reference.
3119
3120 Modified the behavior of the operation region memory mapping cache for 
3121 SystemMemory. Ensure that the memory mappings created for operation 
3122 regions 
3123 do not cross 4K page boundaries. Crossing a page boundary while mapping 
3124 regions can cause kernel warnings on some hosts if the pages have 
3125 different 
3126 attributes. Such regions are probably BIOS bugs, and this is the 
3127 workaround. 
3128 Linux BZ 14445. Lin Ming.
3129
3130 Implemented an automatic repair for predefined methods that must return 
3131 sorted lists. This change will repair (by sorting) packages returned by 
3132 _ALR, 
3133 _PSS, and _TSS. Drivers can now assume that the packages are correctly 
3134 sorted 
3135 and do not contain NULL package elements. Adds one new file, 
3136 namespace/nsrepair2.c. ACPICA BZ 784. Lin Ming, Bob Moore.
3137
3138 Fixed a possible fault during predefined name validation if a return 
3139 Package 
3140 object contains NULL elements. Also adds a warning if a NULL element is 
3141 followed by any non-null elements. ACPICA BZ 813, 814. Future enhancement 
3142 may 
3143 include repair or removal of all such NULL elements where possible.
3144
3145 Implemented additional module-level executable AML code support. This 
3146 change 
3147 will execute module-level code that is not at the root of the namespace 
3148 (under a Device object, etc.) at table load time. Module-level executable 
3149 AML 
3150 code has been illegal since ACPI 2.0. ACPICA BZ 762. Lin Ming.
3151
3152 Implemented a new internal function to create Integer objects. This 
3153 function 
3154 simplifies miscellaneous object creation code. ACPICA BZ 823.
3155
3156 Reduced the severity of predefined repair messages, Warning to Info. Since 
3157 the object was successfully repaired, a warning is too severe. Reduced to 
3158 an 
3159 info message for now. These messages may eventually be changed to debug-
3160 only. 
3161 ACPICA BZ 812.
3162
3163 Example Code and Data Size: These are the sizes for the OS-independent 
3164 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3165 debug version of the code includes the debug output trace mechanism and 
3166 has a 
3167 much larger code and data size.
3168
3169   Previous Release:
3170     Non-Debug Version:  85.8K Code, 18.0K Data, 103.8K Total
3171     Debug Version:     161.8K Code, 50.6K Data, 212.4K Total
3172   Current Release:
3173     Non-Debug Version:  86.6K Code, 18.2K Data, 104.8K Total
3174     Debug Version:     162.7K Code, 50.8K Data, 213.5K Total
3175
3176 2) iASL Compiler/Disassembler and Tools:
3177
3178 iASL: Implemented Switch() with While(1) so that Break works correctly. 
3179 This 
3180 change correctly implements the Switch operator with a surrounding 
3181 While(1) 
3182 so that the Break operator works as expected. ACPICA BZ 461. Lin Ming.
3183
3184 iASL: Added a message if a package initializer list is shorter than 
3185 package 
3186 length. Adds a new remark for a Package() declaration if an initializer 
3187 list 
3188 exists, but is shorter than the declared length of the package. Although 
3189 technically legal, this is probably a coding error and it is seen in the 
3190 field. ACPICA BZ 815. Lin Ming, Bob Moore.
3191
3192 iASL: Fixed a problem where the compiler could fault after the maximum 
3193 number 
3194 of errors was reached (200).
3195
3196 acpixtract: Fixed a possible warning for pointer cast if the compiler 
3197 warning 
3198 level set very high.
3199
3200 ----------------------------------------
3201 13 October 2009. Summary of changes for version 20091013:
3202
3203 1) ACPI CA Core Subsystem:
3204
3205 Fixed a problem where an Operation Region _REG method could be executed 
3206 more 
3207 than once. If a custom address space handler is installed by the host 
3208 before 
3209 the "initialize operation regions" phase of the ACPICA initialization, any 
3210 _REG methods for that address space could be executed twice. This change 
3211 fixes the problem. ACPICA BZ 427. Lin Ming.
3212
3213 Fixed a possible memory leak for the Scope() ASL operator. When the exact 
3214 invocation of "Scope(\)" is executed (change scope to root), one internal 
3215 operand object was leaked. Lin Ming.
3216
3217 Implemented a run-time repair for the _MAT predefined method. If the _MAT 
3218 return value is defined as a Field object in the AML, and the field
3219 size is less than or equal to the default width of an integer (32 or 
3220 64),_MAT 
3221 can incorrectly return an Integer instead of a Buffer. ACPICA now 
3222 automatically repairs this problem. ACPICA BZ 810.
3223
3224 Implemented a run-time repair for the _BIF and _BIX predefined methods. 
3225 The 
3226 "OEM Information" field is often incorrectly returned as an Integer with 
3227 value zero if the field is not supported by the platform. This is due to 
3228 an 
3229 ambiguity in the ACPI specification. The field should always be a string. 
3230 ACPICA now automatically repairs this problem by returning a NULL string 
3231 within the returned Package. ACPICA BZ 807.
3232
3233 Example Code and Data Size: These are the sizes for the OS-independent 
3234 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3235 debug version of the code includes the debug output trace mechanism and 
3236 has a 
3237 much larger code and data size.
3238
3239   Previous Release:
3240     Non-Debug Version:  85.6K Code, 18.0K Data, 103.6K Total
3241     Debug Version:     161.7K Code, 50.9K Data, 212.6K Total
3242   Current Release:
3243     Non-Debug Version:  85.8K Code, 18.0K Data, 103.8K Total
3244     Debug Version:     161.8K Code, 50.6K Data, 212.4K Total
3245
3246 2) iASL Compiler/Disassembler and Tools:
3247
3248 Disassembler: Fixed a problem where references to external symbols that 
3249 contained one or more parent-prefixes (carats) were not handled correctly, 
3250 possibly causing a fault. ACPICA BZ 806. Lin Ming.
3251
3252 Disassembler: Restructured the code so that all functions that handle 
3253 external symbols are in a single module. One new file is added, 
3254 common/dmextern.c.
3255
3256 AML Debugger: Added a max count argument for the Batch command (which 
3257 executes multiple predefined methods within the namespace.)
3258
3259 iASL: Updated the compiler documentation (User Reference.) Available at 
3260 http://www.acpica.org/documentation/. ACPICA BZ 750.
3261
3262 AcpiXtract: Updated for Lint and other formatting changes. Close all open 
3263 files.
3264
3265 ----------------------------------------
3266 03 September 2009. Summary of changes for version 20090903:
3267
3268 1) ACPI CA Core Subsystem:
3269
3270 For Windows Vista compatibility, added the automatic execution of an _INI 
3271 method located at the namespace root (\_INI). This method is executed at 
3272 table load time. This support is in addition to the automatic execution of 
3273 \_SB._INI. Lin Ming.
3274
3275 Fixed a possible memory leak in the interpreter for AML package objects if 
3276 the package initializer list is longer than the defined size of the 
3277 package. 
3278 This apparently can only happen if the BIOS changes the package size on 
3279 the 
3280 fly (seen in a _PSS object), as ASL compilers do not allow this. The 
3281 interpreter will truncate the package to the defined size (and issue an 
3282 error 
3283 message), but previously could leave the extra objects undeleted if they 
3284 were 
3285 pre-created during the argument processing (such is the case if the 
3286 package 
3287 consists of a number of sub-packages as in the _PSS.) ACPICA BZ 805.
3288
3289 Fixed a problem seen when a Buffer or String is stored to itself via ASL. 
3290 This has been reported in the field. Previously, ACPICA would zero out the 
3291 buffer/string. Now, the operation is treated as a noop. Provides Windows 
3292 compatibility. ACPICA BZ 803. Lin Ming.
3293
3294 Removed an extraneous error message for ASL constructs of the form 
3295 Store(LocalX,LocalX) when LocalX is uninitialized. These curious 
3296 statements 
3297 are seen in many BIOSs and are once again treated as NOOPs and no error is 
3298 emitted when they are encountered. ACPICA BZ 785.
3299
3300 Fixed an extraneous warning message if a _DSM reserved method returns a 
3301 Package object. _DSM can return any type of object, so validation on the 
3302 return type cannot be performed. ACPICA BZ 802.
3303
3304 Example Code and Data Size: These are the sizes for the OS-independent 
3305 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3306 debug version of the code includes the debug output trace mechanism and 
3307 has a 
3308 much larger code and data size.
3309
3310   Previous Release:
3311     Non-Debug Version:  85.5K Code, 18.0K Data, 103.5K Total
3312     Debug Version:     161.6K Code, 50.9K Data, 212.5K Total
3313   Current Release:
3314     Non-Debug Version:  85.6K Code, 18.0K Data, 103.6K Total
3315     Debug Version:     161.7K Code, 50.9K Data, 212.6K Total
3316
3317 2) iASL Compiler/Disassembler and Tools:
3318
3319 iASL: Fixed a problem with the use of the Alias operator and Resource 
3320 Templates. The correct alias is now constructed and no error is emitted. 
3321 ACPICA BZ 738.
3322
3323 iASL: Implemented the -I option to specify additional search directories 
3324 for 
3325 include files. Allows multiple additional search paths for include files. 
3326 Directories are searched in the order specified on the command line (after 
3327 the local directory is searched.) ACPICA BZ 800.
3328
3329 iASL: Fixed a problem where the full pathname for include files was not 
3330 emitted for warnings/errors. This caused the IDE support to not work 
3331 properly. ACPICA BZ 765.
3332
3333 iASL: Implemented the -@ option to specify a Windows-style response file 
3334 containing additional command line options. ACPICA BZ 801.
3335
3336 AcpiExec: Added support to load multiple AML files simultaneously (such as 
3337
3338 DSDT and multiple SSDTs). Also added support for wildcards within the AML 
3339 pathname. These features allow all machine tables to be easily loaded and 
3340 debugged together. ACPICA BZ 804.
3341
3342 Disassembler: Added missing support for disassembly of HEST table Error 
3343 Bank 
3344 subtables. 
3345
3346 ----------------------------------------
3347 30 July 2009. Summary of changes for version 20090730:
3348
3349 The ACPI 4.0 implementation for ACPICA is complete with this release.
3350
3351 1) ACPI CA Core Subsystem:
3352
3353 ACPI 4.0: Added header file support for all new and changed ACPI tables. 
3354 Completely new tables are: IBFT, IVRS, MSCT, and WAET. Tables that are new 
3355 for ACPI 4.0, but have previously been supported in ACPICA are: CPEP, 
3356 BERT, 
3357 EINJ, ERST, and HEST. Other newly supported tables are: UEFI and WDAT. 
3358 There 
3359 have been some ACPI 4.0 changes to other existing tables. Split the large 
3360 actbl1.h header into the existing actbl2.h header. ACPICA BZ 774.
3361
3362 ACPI 4.0: Implemented predefined name validation for all new names. There 
3363 are 
3364 31 new names in ACPI 4.0. The predefined validation module was split into 
3365 two 
3366 files. The new file is namespace/nsrepair.c. ACPICA BZ 770.
3367
3368 Implemented support for so-called "module-level executable code". This is 
3369 executable AML code that exists outside of any control method and is 
3370 intended 
3371 to be executed at table load time. Although illegal since ACPI 2.0, this 
3372 type 
3373 of code still exists and is apparently still being created. Blocks of this 
3374 code are now detected and executed as intended. Currently, the code blocks 
3375 must exist under either an If, Else, or While construct; these are the 
3376 typical cases seen in the field. ACPICA BZ 762. Lin Ming.
3377
3378 Implemented an automatic dynamic repair for predefined names that return 
3379 nested Package objects. This applies to predefined names that are defined 
3380 to 
3381 return a variable-length Package of sub-packages. If the number of sub-
3382 packages is one, BIOS code is occasionally seen that creates a simple 
3383 single 
3384 package with no sub-packages. This code attempts to fix the problem by 
3385 wrapping a new package object around the existing package. These methods 
3386 can 
3387 be repaired: _ALR, _CSD, _HPX, _MLS, _PRT, _PSS, _TRT, and _TSS. ACPICA BZ 
3388 790.
3389
3390 Fixed a regression introduced in 20090625 for the AcpiGetDevices 
3391 interface. 
3392 The _HID/_CID matching was broken and no longer matched IDs correctly. 
3393 ACPICA 
3394 BZ 793.
3395
3396 Fixed a problem with AcpiReset where the reset would silently fail if the 
3397 register was one of the protected I/O ports. AcpiReset now bypasses the 
3398 port 
3399 validation mechanism. This may eventually be driven into the 
3400 AcpiRead/Write 
3401 interfaces.
3402
3403 Fixed a regression related to the recent update of the AcpiRead/Write 
3404 interfaces. A sleep/suspend could fail if the optional PM2 Control 
3405 register 
3406 does not exist during an attempt to write the Bus Master Arbitration bit. 
3407 (However, some hosts already delete the code that writes this bit, and the 
3408 code may in fact be obsolete at this date.) ACPICA BZ 799.
3409
3410 Fixed a problem where AcpiTerminate could fault if inadvertently called 
3411 twice 
3412 in succession. ACPICA BZ 795.
3413
3414 Example Code and Data Size: These are the sizes for the OS-independent 
3415 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3416 debug version of the code includes the debug output trace mechanism and 
3417 has a 
3418 much larger code and data size.
3419
3420   Previous Release:
3421     Non-Debug Version:  84.7K Code, 17.8K Data, 102.5K Total
3422     Debug Version:     160.5K Code, 50.6K Data, 211.1K Total
3423   Current Release:
3424     Non-Debug Version:  85.5K Code, 18.0K Data, 103.5K Total
3425     Debug Version:     161.6K Code, 50.9K Data, 212.5K Total
3426
3427 2) iASL Compiler/Disassembler and Tools:
3428
3429 ACPI 4.0: Implemented disassembler support for all new ACPI tables and 
3430 changes to existing tables. ACPICA BZ 775.
3431
3432 ----------------------------------------
3433 25 June 2009. Summary of changes for version 20090625:
3434
3435 The ACPI 4.0 Specification was released on June 16 and is available at 
3436 www.acpi.info. ACPICA implementation of ACPI 4.0 is underway and will 
3437 continue for the next few releases.
3438
3439 1) ACPI CA Core Subsystem:
3440
3441 ACPI 4.0: Implemented interpreter support for the IPMI operation region 
3442 address space. Includes support for bi-directional data buffers and an 
3443 IPMI 
3444 address space handler (to be installed by an IPMI device driver.) ACPICA 
3445 BZ 
3446 773. Lin Ming.
3447
3448 ACPI 4.0: Added changes for existing ACPI tables - FACS and SRAT. Includes 
3449 support in both the header files and the disassembler.
3450
3451 Completed a major update for the AcpiGetObjectInfo external interface. 
3452 Changes include:
3453  - Support for variable, unlimited length HID, UID, and CID strings.
3454  - Support Processor objects the same as Devices (HID,UID,CID,ADR,STA, 
3455 etc.)
3456  - Call the _SxW power methods on behalf of a device object.
3457  - Determine if a device is a PCI root bridge.
3458  - Change the ACPI_BUFFER parameter to ACPI_DEVICE_INFO.
3459 These changes will require an update to all callers of this interface. See 
3460 the updated ACPICA Programmer Reference for details. One new source file 
3461 has 
3462 been added - utilities/utids.c. ACPICA BZ 368, 780.
3463
3464 Updated the AcpiRead and AcpiWrite external interfaces to support 64-bit 
3465 transfers. The Value parameter has been extended from 32 bits to 64 bits 
3466 in 
3467 order to support new ACPI 4.0 tables. These changes will require an update 
3468 to 
3469 all callers of these interfaces. See the ACPICA Programmer Reference for 
3470 details. ACPICA BZ 768.
3471
3472 Fixed several problems with AcpiAttachData. The handler was not invoked 
3473 when 
3474 the host node was deleted. The data sub-object was not automatically 
3475 deleted 
3476 when the host node was deleted. The interface to the handler had an unused 
3477 parameter, this was removed. ACPICA BZ 778.
3478
3479 Enhanced the function that dumps ACPI table headers. All non-printable 
3480 characters in the string fields are now replaced with '?' (Signature, 
3481 OemId, 
3482 OemTableId, and CompilerId.) ACPI tables with non-printable characters in 
3483 these fields are occasionally seen in the field. ACPICA BZ 788.
3484
3485 Fixed a problem with predefined method repair code where the code that 
3486 attempts to repair/convert an object of incorrect type is only executed on 
3487 the first time the predefined method is called. The mechanism that 
3488 disables 
3489 warnings on subsequent calls was interfering with the repair mechanism. 
3490 ACPICA BZ 781.
3491
3492 Fixed a possible memory leak in the predefined validation/repair code when 
3493
3494 buffer is automatically converted to an expected string object.
3495
3496 Removed obsolete 16-bit files from the distribution and from the current 
3497 git 
3498 tree head. ACPICA BZ 776.
3499
3500 Example Code and Data Size: These are the sizes for the OS-independent 
3501 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3502 debug version of the code includes the debug output trace mechanism and 
3503 has a 
3504 much larger code and data size.
3505
3506   Previous Release:
3507     Non-Debug Version:  83.4K Code, 17.5K Data, 100.9K Total
3508     Debug Version:     158.9K Code, 50.0K Data, 208.9K Total
3509   Current Release:
3510     Non-Debug Version:  84.7K Code, 17.8K Data, 102.5K Total
3511     Debug Version:     160.5K Code, 50.6K Data, 211.1K Total
3512
3513 2) iASL Compiler/Disassembler and Tools:
3514
3515 ACPI 4.0: iASL and Disassembler - implemented support for the new IPMI 
3516 operation region keyword. ACPICA BZ 771, 772. Lin Ming.
3517
3518 ACPI 4.0: iASL - implemented compile-time validation support for all new 
3519 predefined names and control methods (31 total). ACPICA BZ 769.
3520
3521 ----------------------------------------
3522 21 May 2009. Summary of changes for version 20090521:
3523
3524 1) ACPI CA Core Subsystem:
3525
3526 Disabled the preservation of the SCI enable bit in the PM1 control 
3527 register. 
3528 The SCI enable bit (bit 0, SCI_EN) is defined by the ACPI specification to 
3529 be 
3530 a "preserved" bit - "OSPM always preserves this bit position", section 
3531 4.7.3.2.1. However, some machines fail if this bit is in fact preserved 
3532 because the bit needs to be explicitly set by the OS as a workaround. No 
3533 machines fail if the bit is not preserved. Therefore, ACPICA no longer 
3534 attempts to preserve this bit.
3535
3536 Fixed a problem in AcpiRsGetPciRoutingTableLength where an invalid or 
3537 incorrectly formed _PRT package could cause a fault. Added validation to 
3538 ensure that each package element is actually a sub-package.
3539
3540 Implemented a new interface to install or override a single control 
3541 method, 
3542 AcpiInstallMethod. This interface is useful when debugging in order to 
3543 repair 
3544 an existing method or to install a missing method without having to 
3545 override 
3546 the entire ACPI table. See the ACPICA Programmer Reference for use and 
3547 examples. Lin Ming, Bob Moore.
3548
3549 Fixed several reference count issues with the DdbHandle object that is 
3550 created from a Load or LoadTable operator. Prevent premature deletion of 
3551 the 
3552 object. Also, mark the object as invalid once the table has been unloaded. 
3553 This is needed because the handle itself may not be deleted after the 
3554 table 
3555 unload, depending on whether it has been stored in a named object by the 
3556 caller. Lin Ming.
3557
3558 Fixed a problem with Mutex Sync Levels. Fixed a problem where if multiple 
3559 mutexes of the same sync level are acquired but then not released in 
3560 strict 
3561 opposite order, the internally maintained Current Sync Level becomes 
3562 confused 
3563 and can cause subsequent execution errors. ACPICA BZ 471.
3564
3565 Changed the allowable release order for ASL mutex objects. The ACPI 4.0 
3566 specification has been changed to make the SyncLevel for mutex objects 
3567 more 
3568 useful. When releasing a mutex, the SyncLevel of the mutex must now be the 
3569 same as the current sync level. This makes more sense than the previous 
3570 rule 
3571 (SyncLevel less than or equal). This change updates the code to match the 
3572 specification.
3573
3574 Fixed a problem with the local version of the AcpiOsPurgeCache function. 
3575 The 
3576 (local) cache must be locked during all cache object deletions. Andrew 
3577 Baumann.
3578
3579 Updated the Load operator to use operation region interfaces. This 
3580 replaces 
3581 direct memory mapping with region access calls. Now, all region accesses 
3582 go 
3583 through the installed region handler as they should.
3584
3585 Simplified and optimized the NsGetNextNode function. Reduced parameter 
3586 count 
3587 and reduced code for this frequently used function.
3588
3589 Example Code and Data Size: These are the sizes for the OS-independent 
3590 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3591 debug version of the code includes the debug output trace mechanism and 
3592 has a 
3593 much larger code and data size.
3594
3595   Previous Release:
3596     Non-Debug Version:  82.8K Code, 17.5K Data, 100.3K Total
3597     Debug Version:     158.0K Code, 49.9K Data, 207.9K Total
3598   Current Release:
3599     Non-Debug Version:  83.4K Code, 17.5K Data, 100.9K Total
3600     Debug Version:     158.9K Code, 50.0K Data, 208.9K Total
3601
3602 2) iASL Compiler/Disassembler and Tools:
3603
3604 Disassembler: Fixed some issues with DMAR, HEST, MADT tables. Some 
3605 problems 
3606 with sub-table disassembly and handling invalid sub-tables. Attempt 
3607 recovery 
3608 after an invalid sub-table ID.
3609
3610 ----------------------------------------
3611 22 April 2009. Summary of changes for version 20090422:
3612
3613 1) ACPI CA Core Subsystem:
3614
3615 Fixed a compatibility issue with the recently released I/O port protection 
3616 mechanism. For windows compatibility, 1) On a port protection violation, 
3617 simply ignore the request and do not return an exception (allow the 
3618 control 
3619 method to continue execution.) 2) If only part of the request overlaps a 
3620 protected port, read/write the individual ports that are not protected. 
3621 Linux 
3622 BZ 13036. Lin Ming
3623
3624 Enhanced the execution of the ASL/AML BreakPoint operator so that it 
3625 actually 
3626 breaks into the AML debugger if the debugger is present. This matches the 
3627 ACPI-defined behavior.
3628
3629 Fixed several possible warnings related to the use of the configurable 
3630 ACPI_THREAD_ID. This type can now be configured as either an integer or a 
3631 pointer with no warnings. Also fixes several warnings in printf-like 
3632 statements for the 64-bit build when the type is configured as a pointer. 
3633 ACPICA BZ 766, 767.
3634
3635 Fixed a number of possible warnings when compiling with gcc 4+ (depending 
3636 on 
3637 warning options.) Examples include printf formats, aliasing, unused 
3638 globals, 
3639 missing prototypes, missing switch default statements, use of non-ANSI 
3640 library functions, use of non-ANSI constructs. See generate/unix/Makefile 
3641 for 
3642 a list of warning options used with gcc 3 and 4. ACPICA BZ 735.
3643
3644 Example Code and Data Size: These are the sizes for the OS-independent 
3645 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3646 debug version of the code includes the debug output trace mechanism and 
3647 has a 
3648 much larger code and data size.
3649
3650   Previous Release:
3651     Non-Debug Version:  82.6K Code, 17.6K Data, 100.2K Total
3652     Debug Version:     157.7K Code, 49.9K Data, 207.6K Total
3653   Current Release:
3654     Non-Debug Version:  82.8K Code, 17.5K Data, 100.3K Total
3655     Debug Version:     158.0K Code, 49.9K Data, 207.9K Total
3656
3657 2) iASL Compiler/Disassembler and Tools:
3658
3659 iASL: Fixed a generation warning from Bison 2.3 and fixed several warnings 
3660 on 
3661 the 64-bit build.
3662
3663 iASL: Fixed a problem where the Unix/Linux versions of the compiler could 
3664 not 
3665 correctly digest Windows/DOS formatted files (with CR/LF).
3666
3667 iASL: Added a new option for "quiet mode" (-va) that produces only the 
3668 compilation summary, not individual errors and warnings. Useful for large 
3669 batch compilations.
3670
3671 AcpiExec: Implemented a new option (-z) to enable a forced semaphore/mutex 
3672 timeout that can be used to detect hang conditions during execution of AML 
3673 code (includes both internal semaphores and AML-defined mutexes and 
3674 events.)
3675
3676 Added new makefiles for the generation of acpica in a generic unix-like 
3677 environment. These makefiles are intended to generate the acpica tools and 
3678 utilities from the original acpica git source tree structure.
3679
3680 Test Suites: Updated and cleaned up the documentation files. Updated the 
3681 copyrights to 2009, affecting all source files. Use the new version of 
3682 iASL 
3683 with quiet mode. Increased the number of available semaphores in the 
3684 Windows 
3685 OSL, allowing the aslts to execute fully on Windows. For the Unix OSL, 
3686 added 
3687 an alternate implementation of the semaphore timeout to allow aslts to 
3688 execute fully on Cygwin.
3689
3690 ----------------------------------------
3691 20 March 2009. Summary of changes for version 20090320:
3692
3693 1) ACPI CA Core Subsystem:
3694
3695 Fixed a possible race condition between AcpiWalkNamespace and dynamic 
3696 table 
3697 unloads. Added a reader/writer locking mechanism to allow multiple 
3698 concurrent 
3699 namespace walks (readers), but block a dynamic table unload until it can 
3700 gain 
3701 exclusive write access to the namespace. This fixes a problem where a 
3702 table 
3703 unload could (possibly catastrophically) delete the portion of the 
3704 namespace 
3705 that is currently being examined by a walk. Adds a new file, utlock.c, 
3706 that 
3707 implements the reader/writer lock mechanism. ACPICA BZ 749.
3708
3709 Fixed a regression introduced in version 20090220 where a change to the 
3710 FADT 
3711 handling could cause the ACPICA subsystem to access non-existent I/O 
3712 ports.
3713
3714 Modified the handling of FADT register and table (FACS/DSDT) addresses. 
3715 The 
3716 FADT can contain both 32-bit and 64-bit versions of these addresses. 
3717 Previously, the 64-bit versions were favored, meaning that if both 32 and 
3718 64 
3719 versions were valid, but not equal, the 64-bit version was used. This was 
3720 found to cause some machines to fail. Now, in this case, the 32-bit 
3721 version 
3722 is used instead. This now matches the Windows behavior.
3723
3724 Implemented a new mechanism to protect certain I/O ports. Provides 
3725 Microsoft 
3726 compatibility and protects the standard PC I/O ports from access via AML 
3727 code. Adds a new file, hwvalid.c
3728
3729 Fixed a possible extraneous warning message from the FADT support. The 
3730 message warns of a 32/64 length mismatch between the legacy and GAS 
3731 definitions for a register.
3732
3733 Removed the obsolete AcpiOsValidateAddress OSL interface. This interface 
3734 is 
3735 made obsolete by the port protection mechanism above. It was previously 
3736 used 
3737 to validate the entire address range of an operation region, which could 
3738 be 
3739 incorrect if the range included illegal ports, but fields within the 
3740 operation region did not actually access those ports. Validation is now 
3741 performed on a per-field basis instead of the entire region.
3742
3743 Modified the handling of the PM1 Status Register ignored bit (bit 11.) 
3744 Ignored bits must be "preserved" according to the ACPI spec. Usually, this 
3745 means a read/modify/write when writing to the register. However, for 
3746 status 
3747 registers, writing a one means clear the event. Writing a zero means 
3748 preserve 
3749 the event (do not clear.) This behavior is clarified in the ACPI 4.0 spec, 
3750 and the ACPICA code now simply always writes a zero to the ignored bit.
3751
3752 Modified the handling of ignored bits for the PM1 A/B Control Registers. 
3753 As 
3754 per the ACPI specification, for the control registers, preserve 
3755 (read/modify/write) all bits that are defined as either reserved or 
3756 ignored.
3757
3758 Updated the handling of write-only bits in the PM1 A/B Control Registers. 
3759 When reading the register, zero the write-only bits as per the ACPI spec. 
3760 ACPICA BZ 443. Lin Ming.
3761
3762 Removed "Linux" from the list of supported _OSI strings. Linux no longer 
3763 wants to reply true to this request. The Windows strings are the only 
3764 paths 
3765 through the AML that are tested and known to work properly.
3766
3767   Previous Release:
3768     Non-Debug Version:  82.0K Code, 17.5K Data,  99.5K Total
3769     Debug Version:     156.9K Code, 49.8K Data, 206.7K Total
3770   Current Release:
3771     Non-Debug Version:  82.6K Code, 17.6K Data, 100.2K Total
3772     Debug Version:     157.7K Code, 49.9K Data, 207.6K Total
3773
3774 2) iASL Compiler/Disassembler and Tools:
3775
3776 Acpiexec: Split the large aeexec.c file into two new files, aehandlers.c 
3777 and 
3778 aetables.c
3779
3780 ----------------------------------------
3781 20 February 2009. Summary of changes for version 20090220:
3782
3783 1) ACPI CA Core Subsystem:
3784
3785 Optimized the ACPI register locking. Removed locking for reads from the 
3786 ACPI 
3787 bit registers in PM1 Status, Enable, Control, and PM2 Control. The lock is 
3788 not required when reading the single-bit registers. The 
3789 AcpiGetRegisterUnlocked function is no longer needed and has been removed. 
3790 This will improve performance for reads on these registers. ACPICA BZ 760.
3791
3792 Fixed the parameter validation for AcpiRead/Write. Now return 
3793 AE_BAD_PARAMETER if the input register pointer is null, and AE_BAD_ADDRESS 
3794 if 
3795 the register has an address of zero. Previously, these cases simply 
3796 returned 
3797 AE_OK. For optional registers such as PM1B status/enable/control, the 
3798 caller 
3799 should check for a valid register address before calling. ACPICA BZ 748.
3800
3801 Renamed the external ACPI bit register access functions. Renamed 
3802 AcpiGetRegister and AcpiSetRegister to clarify the purpose of these 
3803 functions. The new names are AcpiReadBitRegister and AcpiWriteBitRegister. 
3804 Also, restructured the code for these functions by simplifying the code 
3805 path 
3806 and condensing duplicate code to reduce code size.
3807
3808 Added new functions to transparently handle the possibly split PM1 A/B 
3809 registers. AcpiHwReadMultiple and AcpiHwWriteMultiple. These two functions 
3810 now handle the split registers for PM1 Status, Enable, and Control. ACPICA 
3811 BZ 
3812 746.
3813
3814 Added a function to handle the PM1 control registers, 
3815 AcpiHwWritePm1Control. 
3816 This function writes both of the PM1 control registers (A/B). These 
3817 registers 
3818 are different than the PM1 A/B status and enable registers in that 
3819 different 
3820 values can be written to the A/B registers. Most notably, the SLP_TYP bits 
3821 can be different, as per the values returned from the _Sx predefined 
3822 methods.
3823
3824 Removed an extra register write within AcpiHwClearAcpiStatus. This 
3825 function 
3826 was writing an optional PM1B status register twice. The existing call to 
3827 the 
3828 low-level AcpiHwRegisterWrite automatically handles a possibly split PM1 
3829 A/B 
3830 register. ACPICA BZ 751.
3831
3832 Split out the PM1 Status registers from the FADT. Added new globals for 
3833 these 
3834 registers (A/B), similar to the way the PM1 Enable registers are handled. 
3835 Instead of overloading the FADT Event Register blocks. This makes the code 
3836 clearer and less prone to error.
3837
3838 Fixed the warning message for when the platform contains too many ACPI 
3839 tables 
3840 for the default size of the global root table data structure. The 
3841 calculation 
3842 for the truncation value was incorrect.
3843
3844 Removed the ACPI_GET_OBJECT_TYPE macro. Removed all instances of this 
3845 obsolete macro, since it is now a simple reference to ->common.type. There 
3846 were about 150 invocations of the macro across 41 files. ACPICA BZ 755.
3847
3848 Removed the redundant ACPI_BITREG_SLEEP_TYPE_B. This type is the same as 
3849 TYPE_A. Removed this and all related instances. Renamed SLEEP_TYPE_A to 
3850 simply SLEEP_TYPE. ACPICA BZ 754.
3851
3852 Conditionally compile the AcpiSetFirmwareWakingVector64 function. This 
3853 function is only needed on 64-bit host operating systems and is thus not 
3854 included for 32-bit hosts.
3855
3856 Debug output: print the input and result for invocations of the _OSI 
3857 reserved 
3858 control method via the ACPI_LV_INFO debug level. Also, reduced some of the 
3859 verbosity of this debug level. Len Brown.
3860
3861 Example Code and Data Size: These are the sizes for the OS-independent 
3862 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3863 debug version of the code includes the debug output trace mechanism and 
3864 has a 
3865 much larger code and data size.
3866
3867   Previous Release:
3868     Non-Debug Version:  82.3K Code, 17.5K Data,  99.8K Total
3869     Debug Version:     157.3K Code, 49.8K Data, 207.1K Total
3870   Current Release:
3871     Non-Debug Version:  82.0K Code, 17.5K Data,  99.5K Total
3872     Debug Version:     156.9K Code, 49.8K Data, 206.7K Total
3873
3874 2) iASL Compiler/Disassembler and Tools:
3875
3876 Disassembler: Decode the FADT PM_Profile field. Emit ascii names for the 
3877 various legal performance profiles.
3878
3879 ----------------------------------------
3880 23 January 2009. Summary of changes for version 20090123:
3881
3882 1) ACPI CA Core Subsystem:
3883
3884 Added the 2009 copyright to all module headers and signons. This affects 
3885 virtually every file in the ACPICA core subsystem, the iASL compiler, and 
3886 the tools/utilities.
3887
3888 Implemented a change to allow the host to override any ACPI table, 
3889 including 
3890 dynamically loaded tables. Previously, only the DSDT could be replaced by 
3891 the 
3892 host. With this change, the AcpiOsTableOverride interface is called for 
3893 each 
3894 table found in the RSDT/XSDT during ACPICA initialization, and also 
3895 whenever 
3896 a table is dynamically loaded via the AML Load operator.
3897
3898 Updated FADT flag definitions, especially the Boot Architecture flags.
3899
3900 Debugger: For the Find command, automatically pad the input ACPI name with 
3901 underscores if the name is shorter than 4 characters. This enables a match 
3902 with the actual namespace entry which is itself padded with underscores.
3903
3904 Example Code and Data Size: These are the sizes for the OS-independent 
3905 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3906 debug version of the code includes the debug output trace mechanism and 
3907 has a 
3908 much larger code and data size.
3909
3910   Previous Release:
3911     Non-Debug Version:  82.3K Code, 17.4K Data,  99.7K Total
3912     Debug Version:     157.1K Code, 49.7K Data, 206.8K Total
3913   Current Release:
3914     Non-Debug Version:  82.3K Code, 17.5K Data,  99.8K Total
3915     Debug Version:     157.3K Code, 49.8K Data, 207.1K Total
3916
3917 2) iASL Compiler/Disassembler and Tools:
3918
3919 Fix build error under Bison-2.4.
3920
3921 Dissasembler: Enhanced FADT support. Added decoding of the Boot 
3922 Architecture 
3923 flags. Now decode all flags, regardless of the FADT version. Flag output 
3924 includes the FADT version which first defined each flag.
3925
3926 The iASL -g option now dumps the RSDT to a file (in addition to the FADT 
3927 and 
3928 DSDT). Windows only.
3929
3930 ----------------------------------------
3931 04 December 2008. Summary of changes for version 20081204:
3932
3933 1) ACPI CA Core Subsystem:
3934
3935 The ACPICA Programmer Reference has been completely updated and revamped 
3936 for 
3937 this release. This includes updates to the external interfaces, OSL 
3938 interfaces, the overview sections, and the debugger reference.
3939
3940 Several new ACPICA interfaces have been implemented and documented in the 
3941 programmer reference:
3942 AcpiReset - Writes the reset value to the FADT-defined reset register.
3943 AcpiDisableAllGpes - Disable all available GPEs.
3944 AcpiEnableAllRuntimeGpes - Enable all available runtime GPEs.
3945 AcpiGetGpeDevice - Get the GPE block device associated with a GPE.
3946 AcpiGbl_CurrentGpeCount - Tracks the current number of available GPEs.
3947 AcpiRead - Low-level read ACPI register (was HwLowLevelRead.)
3948 AcpiWrite - Low-level write ACPI register (was HwLowLevelWrite.)
3949
3950 Most of the public ACPI hardware-related interfaces have been moved to a 
3951 new 
3952 file, components/hardware/hwxface.c
3953
3954 Enhanced the FADT parsing and low-level ACPI register access: The ACPI 
3955 register lengths within the FADT are now used, and the low level ACPI 
3956 register access no longer hardcodes the ACPI register lengths. Given that 
3957 there may be some risk in actually trusting the FADT register lengths, a 
3958 run-
3959 time option was added to fall back to the default hardcoded lengths if the 
3960 FADT proves to contain incorrect values - UseDefaultRegisterWidths. This 
3961 option is set to true for now, and a warning is issued if a suspicious 
3962 FADT 
3963 register length is overridden with the default value.
3964
3965 Fixed a reference count issue in NsRepairObject. This problem was 
3966 introduced 
3967 in version 20081031 as part of a fix to repair Buffer objects within 
3968 Packages. Lin Ming.
3969
3970 Added semaphore support to the Linux/Unix application OS-services layer 
3971 (OSL). ACPICA BZ 448. Lin Ming.
3972
3973 Added the ACPI_MUTEX_TYPE configuration option to select whether mutexes 
3974 will 
3975 be implemented in the OSL, or will binary semaphores be used instead.
3976
3977 Example Code and Data Size: These are the sizes for the OS-independent 
3978 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
3979 debug version of the code includes the debug output trace mechanism and 
3980 has a 
3981 much larger code and data size.
3982
3983   Previous Release:
3984     Non-Debug Version:  81.7K Code, 17.3K Data,  99.0K Total
3985     Debug Version:     156.4K Code, 49.4K Data, 205.8K Total
3986   Current Release:
3987     Non-Debug Version:  82.3K Code, 17.4K Data,  99.7K Total
3988     Debug Version:     157.1K Code, 49.7K Data, 206.8K Total
3989
3990 2) iASL Compiler/Disassembler and Tools:
3991
3992 iASL: Completed the '-e' option to include additional ACPI tables in order 
3993 to 
3994 aid with disassembly and External statement generation. ACPICA BZ 742. Lin 
3995 Ming.
3996
3997 iASL: Removed the "named object in while loop" error. The compiler cannot 
3998 determine how many times a loop will execute. ACPICA BZ 730.
3999
4000 Disassembler: Implemented support for FADT revision 2 (MS extension). 
4001 ACPICA 
4002 BZ 743.
4003
4004 Disassembler: Updates for several ACPI data tables (HEST, EINJ, and MCFG).
4005
4006 ----------------------------------------
4007 31 October 2008. Summary of changes for version 20081031:
4008
4009 1) ACPI CA Core Subsystem:
4010
4011 Restructured the ACPICA header files into public/private. acpi.h now 
4012 includes 
4013 only the "public" acpica headers. All other acpica headers are "private" 
4014 and 
4015 should not be included by acpica users. One new file, accommon.h is used 
4016 to 
4017 include the commonly used private headers for acpica code generation. 
4018 Future 
4019 plans include moving all private headers to a new subdirectory.
4020
4021 Implemented an automatic Buffer->String return value conversion for 
4022 predefined ACPI methods. For these methods (such as _BIF), added automatic 
4023 conversion for return objects that are required to be a String, but a 
4024 Buffer 
4025 was found instead. This can happen when reading string battery data from 
4026 an 
4027 operation region, because it used to be difficult to convert the data from 
4028 buffer to string from within the ASL. Ensures that the host OS is provided 
4029 with a valid null-terminated string. Linux BZ 11822.
4030
4031 Updated the FACS waking vector interfaces. Split 
4032 AcpiSetFirmwareWakingVector 
4033 into two: one for the 32-bit vector, another for the 64-bit vector. This 
4034 is 
4035 required because the host OS must setup the wake much differently for each 
4036 vector (real vs. protected mode, etc.) and the interface itself should not 
4037 be 
4038 deciding which vector to use. Also, eliminated the GetFirmwareWakingVector 
4039 interface, as it served no purpose (only the firmware reads the vector, OS 
4040 only writes the vector.) ACPICA BZ 731.
4041
4042 Implemented a mechanism to escape infinite AML While() loops. Added a loop 
4043 counter to force exit from AML While loops if the count becomes too large. 
4044 This can occur in poorly written AML when the hardware does not respond 
4045 within a while loop and the loop does not implement a timeout. The maximum 
4046 loop count is configurable. A new exception code is returned when a loop 
4047 is 
4048 broken, AE_AML_INFINITE_LOOP. Alexey Starikovskiy, Bob Moore.
4049
4050 Optimized the execution of AML While loops. Previously, a control state 
4051 object was allocated and freed for each execution of the loop. The 
4052 optimization is to simply reuse the control state for each iteration. This 
4053 speeds up the raw loop execution time by about 5%.
4054
4055 Enhanced the implicit return mechanism. For Windows compatibility, return 
4056 an 
4057 implicit integer of value zero for methods that contain no executable 
4058 code. 
4059 Such methods are seen in the field as stubs (presumably), and can cause 
4060 drivers to fail if they expect a return value. Lin Ming.
4061
4062 Allow multiple backslashes as root prefixes in namepaths. In a fully 
4063 qualified namepath, allow multiple backslash prefixes. This can happen 
4064 (and 
4065 is seen in the field) because of the use of a double-backslash in strings 
4066 (since backslash is the escape character) causing confusion. ACPICA BZ 739 
4067 Lin Ming.
4068
4069 Emit a warning if two different FACS or DSDT tables are discovered in the 
4070 FADT. Checks if there are two valid but different addresses for the FACS 
4071 and 
4072 DSDT within the FADT (mismatch between the 32-bit and 64-bit fields.)
4073
4074 Consolidated the method argument count validation code. Merged the code 
4075 that 
4076 validates control method argument counts into the predefined validation 
4077 module. Eliminates possible multiple warnings for incorrect argument 
4078 counts.
4079
4080 Implemented ACPICA example code. Includes code for ACPICA initialization, 
4081 handler installation, and calling a control method. Available at 
4082 source/tools/examples.
4083
4084 Added a global pointer for FACS table to simplify internal FACS access. 
4085 Use 
4086 the global pointer instead of using AcpiGetTableByIndex for each FACS 
4087 access. 
4088 This simplifies the code for the Global Lock and the Firmware Waking 
4089 Vector(s).
4090
4091 Example Code and Data Size: These are the sizes for the OS-independent 
4092 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4093 debug version of the code includes the debug output trace mechanism and 
4094 has a 
4095 much larger code and data size.
4096
4097   Previous Release:
4098     Non-Debug Version:  81.2K Code, 17.0K Data,  98.2K Total
4099     Debug Version:     155.8K Code, 49.1K Data, 204.9K Total
4100   Current Release:
4101     Non-Debug Version:  81.7K Code, 17.3K Data,  99.0K Total
4102     Debug Version:     156.4K Code, 49.4K Data, 205.8K Total
4103
4104 2) iASL Compiler/Disassembler and Tools:
4105
4106 iASL: Improved disassembly of external method calls. Added the -e option 
4107 to 
4108 allow the inclusion of additional ACPI tables to help with the disassembly 
4109 of 
4110 method invocations and the generation of external declarations during the 
4111 disassembly. Certain external method invocations cannot be disassembled 
4112 properly without the actual declaration of the method. Use the -e option 
4113 to 
4114 include the table where the external method(s) are actually declared. Most 
4115 useful for disassembling SSDTs that make method calls back to the master 
4116 DSDT. Lin Ming. Example: To disassemble an SSDT with calls to DSDT:  iasl 
4117 -d 
4118 -e dsdt.aml ssdt1.aml
4119
4120 iASL: Fix to allow references to aliases within ASL namepaths. Fixes a 
4121 problem where the use of an alias within a namepath would result in a not 
4122 found error or cause the compiler to fault. Also now allows forward 
4123 references from the Alias operator itself. ACPICA BZ 738.
4124
4125 ----------------------------------------
4126 26 September 2008. Summary of changes for version 20080926:
4127
4128 1) ACPI CA Core Subsystem:
4129
4130 Designed and implemented a mechanism to validate predefined ACPI methods 
4131 and 
4132 objects. This code validates the predefined ACPI objects (objects whose 
4133 names 
4134 start with underscore) that appear in the namespace, at the time they are 
4135 evaluated. The argument count and the type of the returned object are 
4136 validated against the ACPI specification. The purpose of this validation 
4137 is 
4138 to detect problems with the BIOS-implemented predefined ACPI objects 
4139 before 
4140 the results are returned to the ACPI-related drivers. Future enhancements 
4141 may 
4142 include actual repair of incorrect return objects where possible. Two new 
4143 files are nspredef.c and acpredef.h.
4144
4145 Fixed a fault in the AML parser if a memory allocation fails during the Op 
4146 completion routine AcpiPsCompleteThisOp. Lin Ming. ACPICA BZ 492.
4147
4148 Fixed an issue with implicit return compatibility. This change improves 
4149 the 
4150 implicit return mechanism to be more compatible with the MS interpreter. 
4151 Lin 
4152 Ming, ACPICA BZ 349.
4153
4154 Implemented support for zero-length buffer-to-string conversions. Allow 
4155 zero 
4156 length strings during interpreter buffer-to-string conversions. For 
4157 example, 
4158 during the ToDecimalString and ToHexString operators, as well as implicit 
4159 conversions. Fiodor Suietov, ACPICA BZ 585.
4160
4161 Fixed two possible memory leaks in the error exit paths of 
4162 AcpiUtUpdateObjectReference and AcpiUtWalkPackageTree. These functions are 
4163 similar in that they use a stack of state objects in order to eliminate 
4164 recursion. The stack must be fully unwound and deallocated if an error 
4165 occurs. Lin Ming. ACPICA BZ 383.
4166
4167 Removed the unused ACPI_BITREG_WAKE_ENABLE definition and entry in the 
4168 global 
4169 ACPI register table. This bit does not exist and is unused. Lin Ming, Bob 
4170 Moore ACPICA BZ 442.
4171
4172 Removed the obsolete version number in module headers. Removed the 
4173 "$Revision" number that appeared in each module header. This version 
4174 number 
4175 was useful under SourceSafe and CVS, but has no meaning under git. It is 
4176 not 
4177 only incorrect, it could also be misleading.
4178
4179 Example Code and Data Size: These are the sizes for the OS-independent 
4180 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4181 debug version of the code includes the debug output trace mechanism and 
4182 has a 
4183 much larger code and data size.
4184
4185   Previous Release:
4186     Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
4187     Debug Version:     153.7K Code, 48.2K Data, 201.9K Total
4188   Current Release:
4189     Non-Debug Version:  81.2K Code, 17.0K Data,  98.2K Total
4190     Debug Version:     155.8K Code, 49.1K Data, 204.9K Total
4191
4192 ----------------------------------------
4193 29 August 2008. Summary of changes for version 20080829:
4194
4195 1) ACPI CA Core Subsystem:
4196
4197 Completed a major cleanup of the internal ACPI_OPERAND_OBJECT of type 
4198 Reference. Changes include the elimination of cheating on the Object field 
4199 for the DdbHandle subtype, addition of a reference class field to 
4200 differentiate the various reference types (instead of an AML opcode), and 
4201 the 
4202 cleanup of debug output for this object. Lin Ming, Bob Moore. BZ 723
4203
4204 Reduce an error to a warning for an incorrect method argument count. 
4205 Previously aborted with an error if too few arguments were passed to a 
4206 control method via the external ACPICA interface. Now issue a warning 
4207 instead 
4208 and continue. Handles the case where the method inadvertently declares too 
4209 many arguments, but does not actually use the extra ones. Applies mainly 
4210 to 
4211 the predefined methods. Lin Ming. Linux BZ 11032.
4212
4213 Disallow the evaluation of named object types with no intrinsic value. 
4214 Return 
4215 AE_TYPE for objects that have no value and therefore evaluation is 
4216 undefined: 
4217 Device, Event, Mutex, Region, Thermal, and Scope. Previously, evaluation 
4218 of 
4219 these types were allowed, but an exception would be generated at some 
4220 point 
4221 during the evaluation. Now, the error is generated up front.
4222
4223 Fixed a possible memory leak in the AcpiNsGetExternalPathname function 
4224 (nsnames.c). Fixes a leak in the error exit path.
4225
4226 Removed the obsolete debug levels ACPI_DB_WARN and ACPI_DB_ERROR. These 
4227 debug 
4228 levels were made obsolete by the ACPI_WARNING, ACPI_ERROR, and 
4229 ACPI_EXCEPTION 
4230 interfaces. Also added ACPI_DB_EVENTS to correspond with the existing 
4231 ACPI_LV_EVENTS.
4232
4233 Removed obsolete and/or unused exception codes from the acexcep.h header. 
4234 There is the possibility that certain device drivers may be affected if 
4235 they 
4236 use any of these exceptions.
4237
4238 The ACPICA documentation has been added to the public git source tree, 
4239 under 
4240 acpica/documents. Included are the ACPICA programmer reference, the iASL 
4241 compiler reference, and the changes.txt release logfile.
4242
4243 Example Code and Data Size: These are the sizes for the OS-independent 
4244 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4245 debug version of the code includes the debug output trace mechanism and 
4246 has a 
4247 much larger code and data size.
4248
4249   Previous Release:
4250     Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
4251     Debug Version:     153.9K Code, 48.4K Data, 202.3K Total
4252   Current Release:
4253     Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
4254     Debug Version:     153.7K Code, 48.2K Data, 201.9K Total
4255
4256 2) iASL Compiler/Disassembler and Tools:
4257
4258 Allow multiple argument counts for the predefined _SCP method. ACPI 3.0 
4259 defines _SCP with 3 arguments. Previous versions defined it with only 1 
4260 argument. iASL now allows both definitions.
4261
4262 iASL/disassembler: avoid infinite loop on bad ACPI tables. Check for zero-
4263 length subtables when disassembling ACPI tables. Also fixed a couple of 
4264 errors where a full 16-bit table type field was not extracted from the 
4265 input 
4266 properly.
4267
4268 acpisrc: Improve comment counting mechanism for generating source code 
4269 statistics. Count first and last lines of multi-line comments as 
4270 whitespace, 
4271 not comment lines. Handle Linux legal header in addition to standard 
4272 acpica 
4273 header.
4274
4275 ----------------------------------------
4276
4277 29 July 2008. Summary of changes for version 20080729:
4278
4279 1) ACPI CA Core Subsystem:
4280
4281 Fix a possible deadlock in the GPE dispatch. Remove call to 
4282 AcpiHwDisableAllGpes during wake in AcpiEvGpeDispatch. This call will 
4283 attempt 
4284 to acquire the GPE lock but can deadlock since the GPE lock is already 
4285 held 
4286 at dispatch time. This code was introduced in version 20060831 as a 
4287 response 
4288 to Linux BZ 6881 and has since been removed from Linux.
4289
4290 Add a function to dereference returned reference objects. Examines the 
4291 return 
4292 object from a call to AcpiEvaluateObject. Any Index or RefOf references 
4293 are 
4294 automatically dereferenced in an attempt to return something useful (these 
4295 reference types cannot be converted into an external ACPI_OBJECT.) 
4296 Provides 
4297 MS compatibility. Lin Ming, Bob Moore. Linux BZ 11105
4298
4299 x2APIC support: changes for MADT and SRAT ACPI tables. There are 2 new 
4300 subtables for the MADT and one new subtable for the SRAT. Includes 
4301 disassembler and AcpiSrc support. Data from the Intel 64 Architecture 
4302 x2APIC 
4303 Specification, June 2008.
4304
4305 Additional error checking for pathname utilities. Add error check after 
4306 all 
4307 calls to AcpiNsGetPathnameLength. Add status return from 
4308 AcpiNsBuildExternalPath and check after all calls. Add parameter 
4309 validation 
4310 to AcpiUtInitializeBuffer. Reported by and initial patch by Ingo Molnar.
4311
4312 Return status from the global init function AcpiUtGlobalInitialize. This 
4313 is 
4314 used by both the kernel subsystem and the utilities such as iASL compiler. 
4315 The function could possibly fail when the caches are initialized. Yang Yi.
4316
4317 Add a function to decode reference object types to strings. Created for 
4318 improved error messages. 
4319
4320 Improve object conversion error messages. Better error messages during 
4321 object 
4322 conversion from internal to the external ACPI_OBJECT. Used for external 
4323 calls 
4324 to AcpiEvaluateObject.
4325
4326 Example Code and Data Size: These are the sizes for the OS-independent 
4327 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4328 debug version of the code includes the debug output trace mechanism and 
4329 has a 
4330 much larger code and data size.
4331
4332   Previous Release:
4333     Non-Debug Version:  79.6K Code, 16.2K Data,  95.8K Total
4334     Debug Version:     153.5K Code, 48.2K Data, 201.7K Total
4335   Current Release:
4336     Non-Debug Version:  79.7K Code, 16.4K Data,  96.1K Total
4337     Debug Version:     153.9K Code, 48.4K Data, 202.3K Total
4338
4339 2) iASL Compiler/Disassembler and Tools:
4340
4341 Debugger: fix a possible hang when evaluating non-methods. Fixes a problem 
4342 introduced in version 20080701. If the object being evaluated (via execute 
4343 command) is not a method, the debugger can hang while trying to obtain 
4344 non-
4345 existent parameters.
4346
4347 iASL: relax error for using reserved "_T_x" identifiers. These names can 
4348 appear in a disassembled ASL file if they were emitted by the original 
4349 compiler. Instead of issuing an error or warning and forcing the user to 
4350 manually change these names, issue a remark instead.
4351
4352 iASL: error if named object created in while loop. Emit an error if any 
4353 named 
4354 object is created within a While loop. If allowed, this code will generate 
4355
4356 run-time error on the second iteration of the loop when an attempt is made 
4357 to 
4358 create the same named object twice. ACPICA bugzilla 730.
4359
4360 iASL: Support absolute pathnames for include files. Add support for 
4361 absolute 
4362 pathnames within the Include operator. previously, only relative pathnames 
4363 were supported.
4364
4365 iASL: Enforce minimum 1 interrupt in interrupt macro and Resource 
4366 Descriptor. 
4367 The ACPI spec requires one interrupt minimum. BZ 423
4368
4369 iASL: Handle a missing ResourceSource arg, with a present SourceIndex. 
4370 Handles the case for the Interrupt Resource Descriptor where
4371 the ResourceSource argument is omitted but ResourceSourceIndex
4372 is present. Now leave room for the Index. BZ 426
4373
4374 iASL: Prevent error message if CondRefOf target does not exist. Fixes 
4375 cases 
4376 where an error message is emitted if the target does not exist. BZ 516
4377
4378 iASL: Fix broken -g option (get Windows ACPI tables). Fixes the -g option 
4379 (get ACPI tables on Windows). This was apparently broken in version 
4380 20070919.
4381
4382 AcpiXtract: Handle EOF while extracting data. Correctly handle the case 
4383 where 
4384 the EOF happens immediately after the last table in the input file. Print 
4385 completion message. Previously, no message was displayed in this case.
4386
4387 ----------------------------------------
4388 01 July 2008. Summary of changes for version 20080701:
4389
4390 0) Git source tree / acpica.org
4391
4392 Fixed a problem where a git-clone from http would not transfer the entire 
4393 source tree.
4394
4395 1) ACPI CA Core Subsystem:
4396
4397 Implemented a "careful" GPE disable in AcpiEvDisableGpe, only modify one 
4398 enable bit. Now performs a read-change-write of the enable register 
4399 instead 
4400 of simply writing out the cached enable mask. This will prevent 
4401 inadvertent 
4402 enabling of GPEs if a rogue GPE is received during initialization (before 
4403 GPE 
4404 handlers are installed.)
4405
4406 Implemented a copy for dynamically loaded tables. Previously, dynamically 
4407 loaded tables were simply mapped - but on some machines this memory is 
4408 corrupted after suspend. Now copy the table to a local buffer. For the 
4409 OpRegion case, added checksum verify. Use the table length from the table 
4410 header, not the region length. For the Buffer case, use the table length 
4411 also. Dennis Noordsij, Bob Moore. BZ 10734
4412
4413 Fixed a problem where the same ACPI table could not be dynamically loaded 
4414 and 
4415 unloaded more than once. Without this change, a table cannot be loaded 
4416 again 
4417 once it has been loaded/unloaded one time. The current mechanism does not 
4418 unregister a table upon an unload. During a load, if the same table is 
4419 found, 
4420 this no longer returns an exception. BZ 722
4421
4422 Fixed a problem where the wrong descriptor length was calculated for the 
4423 EndTag descriptor in 64-bit mode. The "minimal" descriptors such as EndTag 
4424 are calculated as 12 bytes long, but the actual length in the internal 
4425 descriptor is 16 because of the round-up to 8 on the 64-bit build. 
4426 Reported 
4427 by Linn Crosetto. BZ 728
4428
4429 Fixed a possible memory leak in the Unload operator. The DdbHandle 
4430 returned 
4431 by Load() did not have its reference count decremented during unload, 
4432 leading 
4433 to a memory leak. Lin Ming. BZ 727
4434
4435 Fixed a possible memory leak when deleting thermal/processor objects. Any 
4436 associated notify handlers (and objects) were not being deleted. Fiodor 
4437 Suietov. BZ 506
4438
4439 Fixed the ordering of the ASCII names in the global mutex table to match 
4440 the 
4441 actual mutex IDs. Used by AcpiUtGetMutexName, a function used for debug 
4442 only. 
4443 Vegard Nossum. BZ 726
4444
4445 Enhanced the AcpiGetObjectInfo interface to return the number of required 
4446 arguments if the object is a control method. Added this call to the 
4447 debugger 
4448 so the proper number of default arguments are passed to a method. This 
4449 prevents a warning when executing methods from AcpiExec.
4450
4451 Added a check for an invalid handle in AcpiGetObjectInfo. Return 
4452 AE_BAD_PARAMETER if input handle is invalid. BZ 474
4453
4454 Fixed an extraneous warning from exconfig.c on the 64-bit build.
4455
4456 Example Code and Data Size: These are the sizes for the OS-independent 
4457 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4458 debug version of the code includes the debug output trace mechanism and 
4459 has a 
4460 much larger code and data size.
4461
4462   Previous Release:
4463     Non-Debug Version:  79.3K Code, 16.2K Data,  95.5K Total
4464     Debug Version:     153.0K Code, 48.2K Data, 201.2K Total
4465   Current Release:
4466     Non-Debug Version:  79.6K Code, 16.2K Data,  95.8K Total
4467     Debug Version:     153.5K Code, 48.2K Data, 201.7K Total
4468
4469 2) iASL Compiler/Disassembler and Tools:
4470
4471 iASL: Added two missing ACPI reserved names. Added _MTP and _ASZ, both 
4472 resource descriptor names.
4473
4474 iASL: Detect invalid ASCII characters in input (windows version). Removed 
4475 the 
4476 "-CF" flag from the flex compile, enables correct detection of non-ASCII 
4477 characters in the input. BZ 441
4478
4479 iASL: Eliminate warning when result of LoadTable is not used. Eliminate 
4480 the 
4481 "result of operation not used" warning when the DDB handle returned from 
4482 LoadTable is not used. The warning is not needed. BZ 590
4483
4484 AcpiExec: Add support for dynamic table load/unload. Now calls _CFG method 
4485 to 
4486 pass address of table to the AML. Added option to disable OpRegion 
4487 simulation 
4488 to allow creation of an OpRegion with a real address that was passed to 
4489 _CFG. 
4490 All of this allows testing of the Load and Unload operators from AcpiExec.
4491
4492 Debugger: update tables command for unloaded tables. Handle unloaded 
4493 tables 
4494 and use the standard table header output routine.
4495
4496 ----------------------------------------
4497 09 June 2008. Summary of changes for version 20080609:
4498
4499 1) ACPI CA Core Subsystem:
4500
4501 Implemented a workaround for reversed _PRT entries. A significant number 
4502 of 
4503 BIOSs erroneously reverse the _PRT SourceName and the SourceIndex. This 
4504 change dynamically detects and repairs this problem. Provides 
4505 compatibility 
4506 with MS ACPI. BZ 6859
4507
4508 Simplified the internal ACPI hardware interfaces to eliminate the locking 
4509 flag parameter from Register Read/Write. Added a new external interface, 
4510 AcpiGetRegisterUnlocked.
4511
4512 Fixed a problem where the invocation of a GPE control method could hang. 
4513 This 
4514 was a regression introduced in 20080514. The new method argument count 
4515 validation mechanism can enter an infinite loop when a GPE method is 
4516 dispatched. Problem fixed by removing the obsolete code that passed GPE 
4517 block 
4518 information to the notify handler via the control method parameter 
4519 pointer.
4520
4521 Fixed a problem where the _SST execution status was incorrectly returned 
4522 to 
4523 the caller of AcpiEnterSleepStatePrep. This was a regression introduced in 
4524 20080514. _SST is optional and a NOT_FOUND exception should never be 
4525 returned. BZ 716
4526
4527 Fixed a problem where a deleted object could be accessed from within the 
4528 AML 
4529 parser. This was a regression introduced in version 20080123 as a fix for 
4530 the 
4531 Unload operator. Lin Ming. BZ 10669
4532
4533 Cleaned up the debug operand dump mechanism. Eliminated unnecessary 
4534 operands 
4535 and eliminated the use of a negative index in a loop. Operands are now 
4536 displayed in the correct order, not backwards. This also fixes a 
4537 regression 
4538 introduced in 20080514 on 64-bit systems where the elimination of 
4539 ACPI_NATIVE_UINT caused the negative index to go large and positive. BZ 
4540 715
4541
4542 Fixed a possible memory leak in EvPciConfigRegionSetup where the error 
4543 exit 
4544 path did not delete a locally allocated structure.
4545
4546 Updated definitions for the DMAR and SRAT tables to synchronize with the 
4547 current specifications. Includes disassembler support.
4548
4549 Fixed a problem in the mutex debug code (in utmutex.c) where an incorrect 
4550 loop termination value was used. Loop terminated on iteration early, 
4551 missing 
4552 one mutex. Linn Crosetto
4553
4554 Example Code and Data Size: These are the sizes for the OS-independent 
4555 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4556 debug version of the code includes the debug output trace mechanism and 
4557 has a 
4558 much larger code and data size.
4559
4560   Previous Release:
4561     Non-Debug Version:  79.5K Code, 16.2K Data,  95.7K Total
4562     Debug Version:     153.3K Code, 48.3K Data, 201.6K Total
4563   Current Release:
4564     Non-Debug Version:  79.3K Code, 16.2K Data,  95.5K Total
4565     Debug Version:     153.0K Code, 48.2K Data, 201.2K Total
4566
4567 2) iASL Compiler/Disassembler and Tools:
4568
4569 Disassembler: Implemented support for EisaId() within _CID objects. Now 
4570 disassemble integer _CID objects back to EisaId invocations, including 
4571 multiple integers within _CID packages. Includes single-step support for 
4572 debugger also.
4573
4574 Disassembler: Added support for DMAR and SRAT table definition changes.
4575
4576 ----------------------------------------
4577 14 May 2008. Summary of changes for version 20080514:
4578
4579 1) ACPI CA Core Subsystem:
4580
4581 Fixed a problem where GPEs were enabled too early during the ACPICA 
4582 initialization. This could lead to "handler not installed" errors on some 
4583 machines. Moved GPE enable until after _REG/_STA/_INI methods are run. 
4584 This 
4585 ensures that all operation regions and devices throughout the namespace 
4586 have 
4587 been initialized before GPEs are enabled. Alexey Starikovskiy, BZ 9916.
4588
4589 Implemented a change to the enter sleep code. Moved execution of the _GTS 
4590 method to just before setting sleep enable bit. The execution was moved 
4591 from 
4592 AcpiEnterSleepStatePrep to AcpiEnterSleepState. _GTS is now executed 
4593 immediately before the SLP_EN bit is set, as per the ACPI specification. 
4594 Luming Yu, BZ 1653.
4595
4596 Implemented a fix to disable unknown GPEs (2nd version). Now always 
4597 disable 
4598 the GPE, even if ACPICA thinks that that it is already disabled. It is 
4599 possible that the AML or some other code has enabled the GPE unbeknownst 
4600 to 
4601 the ACPICA code.
4602
4603 Fixed a problem with the Field operator where zero-length fields would 
4604 return 
4605 an AE_AML_NO_OPERAND exception during table load. Fix enables zero-length 
4606 ASL 
4607 field declarations in Field(), BankField(), and IndexField(). BZ 10606.
4608
4609 Implemented a fix for the Load operator, now load the table at the 
4610 namespace 
4611 root. This reverts a change introduced in version 20071019. The table is 
4612 now 
4613 loaded at the namespace root even though this goes against the ACPI 
4614 specification. This provides compatibility with other ACPI 
4615 implementations. 
4616 The ACPI specification will be updated to reflect this in ACPI 4.0. Lin 
4617 Ming.
4618
4619 Fixed a problem where ACPICA would not Load() tables with unusual 
4620 signatures. 
4621 Now ignore ACPI table signature for Load() operator. Only "SSDT" is 
4622 acceptable to the ACPI spec, but tables are seen with OEMx and null sigs. 
4623 Therefore, signature validation is worthless. Apparently MS ACPI accepts 
4624 such 
4625 signatures, ACPICA must be compatible. BZ 10454.
4626
4627 Fixed a possible negative array index in AcpiUtValidateException. Added 
4628 NULL 
4629 fields to the exception string arrays to eliminate a -1 subtraction on the 
4630 SubStatus field.
4631
4632 Updated the debug tracking macros to reduce overall code and data size. 
4633 Changed ACPI_MODULE_NAME and ACPI_FUNCTION_NAME to use arrays of strings 
4634 instead of pointers to static strings. Jan Beulich and Bob Moore.
4635
4636 Implemented argument count checking in control method invocation via 
4637 AcpiEvaluateObject. Now emit an error if too few arguments, warning if too 
4638 many. This applies only to extern programmatic control method execution, 
4639 not 
4640 method-to-method calls within the AML. Lin Ming.
4641
4642 Eliminated the ACPI_NATIVE_UINT type across all ACPICA code. This type is 
4643 no 
4644 longer needed, especially with the removal of 16-bit support. It was 
4645 replaced 
4646 mostly with UINT32, but also ACPI_SIZE where a type that changes 32/64 bit 
4647 on 
4648 32/64-bit platforms is required.
4649
4650 Added the C const qualifier for appropriate string constants -- mostly 
4651 MODULE_NAME and printf format strings. Jan Beulich.
4652
4653 Example Code and Data Size: These are the sizes for the OS-independent 
4654 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4655 debug version of the code includes the debug output trace mechanism and 
4656 has a 
4657 much larger code and data size.
4658
4659   Previous Release:
4660     Non-Debug Version:  80.0K Code, 17.4K Data,  97.4K Total
4661     Debug Version:     159.4K Code, 64.4K Data, 223.8K Total
4662   Current Release:
4663     Non-Debug Version:  79.5K Code, 16.2K Data,  95.7K Total
4664     Debug Version:     153.3K Code, 48.3K Data, 201.6K Total
4665
4666 2) iASL Compiler/Disassembler and Tools:
4667
4668 Implemented ACPI table revision ID validation in the disassembler. Zero is 
4669 always invalid. For DSDTs, the ID controls the interpreter integer width. 
4670
4671 means 32-bit and this is unusual. 2 or greater is 64-bit.
4672
4673 ----------------------------------------
4674 21 March 2008. Summary of changes for version 20080321:
4675
4676 1) ACPI CA Core Subsystem:
4677
4678 Implemented an additional change to the GPE support in order to suppress 
4679 spurious or stray GPEs. The AcpiEvDisableGpe function will now permanently 
4680 disable incoming GPEs that are neither enabled nor disabled -- meaning 
4681 that 
4682 the GPE is unknown to the system. This should prevent future interrupt 
4683 floods 
4684 from that GPE. BZ 6217 (Zhang Rui)
4685
4686 Fixed a problem where NULL package elements were not returned to the 
4687 AcpiEvaluateObject interface correctly. The element was simply ignored 
4688 instead of returning a NULL ACPI_OBJECT package element, potentially 
4689 causing 
4690 a buffer overflow and/or confusing the caller who expected a fixed number 
4691 of 
4692 elements. BZ 10132 (Lin Ming, Bob Moore)
4693
4694 Fixed a problem with the CreateField, CreateXXXField (Bit, Byte, Word, 
4695 Dword, 
4696 Qword), Field, BankField, and IndexField operators when invoked from 
4697 inside 
4698 an executing control method. In this case, these operators created 
4699 namespace 
4700 nodes that were incorrectly left marked as permanent nodes instead of 
4701 temporary nodes. This could cause a problem if there is race condition 
4702 between an exiting control method and a running namespace walk. (Reported 
4703 by 
4704 Linn Crosetto)
4705
4706 Fixed a problem where the CreateField and CreateXXXField operators would 
4707 incorrectly allow duplicate names (the name of the field) with no 
4708 exception 
4709 generated.
4710
4711 Implemented several changes for Notify handling. Added support for new 
4712 Notify 
4713 values (ACPI 2.0+) and improved the Notify debug output. Notify on 
4714 PowerResource objects is no longer allowed, as per the ACPI specification. 
4715 (Bob Moore, Zhang Rui)
4716
4717 All Reference Objects returned via the AcpiEvaluateObject interface are 
4718 now 
4719 marked as type "REFERENCE" instead of "ANY". The type ANY is now reserved 
4720 for 
4721 NULL objects - either NULL package elements or unresolved named 
4722 references.
4723
4724 Fixed a problem where an extraneous debug message was produced for package 
4725 objects (when debugging enabled). The message "Package List length larger 
4726 than NumElements count" is now produced in the correct case, and is now an 
4727 error message rather than a debug message. Added a debug message for the 
4728 opposite case, where NumElements is larger than the Package List (the 
4729 package 
4730 will be padded out with NULL elements as per the ACPI spec.)
4731
4732 Implemented several improvements for the output of the ASL "Debug" object 
4733 to 
4734 clarify and keep all data for a given object on one output line.
4735
4736 Fixed two size calculation issues with the variable-length Start Dependent 
4737 resource descriptor.
4738
4739 Example Code and Data Size: These are the sizes for the OS-independent 
4740 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4741 debug version of the code includes the debug output trace mechanism and 
4742 has 
4743 a much larger code and data size.
4744
4745   Previous Release:
4746     Non-Debug Version:  79.7K Code, 17.3K Data,  97.0K Total
4747     Debug Version:     158.9K Code, 64.0K Data, 222.9K Total
4748   Current Release:
4749     Non-Debug Version:  80.0K Code, 17.4K Data,  97.4K Total
4750     Debug Version:     159.4K Code, 64.4K Data, 223.8K Total
4751
4752 2) iASL Compiler/Disassembler and Tools:
4753
4754 Fixed a problem with the use of the Switch operator where execution of the 
4755 containing method by multiple concurrent threads could cause an 
4756 AE_ALREADY_EXISTS exception. This is caused by the fact that there is no 
4757 actual Switch opcode, it must be simulated with local named temporary 
4758 variables and if/else pairs. The solution chosen was to mark any method 
4759 that 
4760 uses Switch as Serialized, thus preventing multiple thread entries. BZ 
4761 469.
4762
4763 ----------------------------------------
4764 13 February 2008. Summary of changes for version 20080213:
4765
4766 1) ACPI CA Core Subsystem:
4767
4768 Implemented another MS compatibility design change for GPE/Notify 
4769 handling. 
4770 GPEs are now cleared/enabled asynchronously to allow all pending notifies 
4771 to 
4772 complete first. It is expected that the OSL will queue the enable request 
4773 behind all pending notify requests (may require changes to the local host 
4774 OSL 
4775 in AcpiOsExecute). Alexey Starikovskiy.
4776
4777 Fixed a problem where buffer and package objects passed as arguments to a 
4778 control method via the external AcpiEvaluateObject interface could cause 
4779 an 
4780 AE_AML_INTERNAL exception depending on the order and type of operators 
4781 executed by the target control method.
4782
4783 Fixed a problem where resource descriptor size optimization could cause a 
4784 problem when a _CRS resource template is passed to a _SRS method. The _SRS 
4785 resource template must use the same descriptors (with the same size) as 
4786 returned from _CRS. This change affects the following resource 
4787 descriptors: 
4788 IRQ / IRQNoFlags and StartDependendentFn / StartDependentFnNoPri. (BZ 
4789 9487)
4790
4791 Fixed a problem where a CopyObject to RegionField, BankField, and 
4792 IndexField 
4793 objects did not perform an implicit conversion as it should. These types 
4794 must 
4795 retain their initial type permanently as per the ACPI specification. 
4796 However, 
4797 a CopyObject to all other object types should not perform an implicit 
4798 conversion, as per the ACPI specification. (Lin Ming, Bob Moore) BZ 388
4799
4800 Fixed a problem with the AcpiGetDevices interface where the mechanism to 
4801 match device CIDs did not examine the entire list of available CIDs, but 
4802 instead aborted on the first non-matching CID. Andrew Patterson.
4803
4804 Fixed a regression introduced in version 20071114. The ACPI_HIDWORD macro 
4805 was 
4806 inadvertently changed to return a 16-bit value instead of a 32-bit value, 
4807 truncating the upper dword of a 64-bit value. This macro is only used to 
4808 display debug output, so no incorrect calculations were made. Also, 
4809 reimplemented the macro so that a 64-bit shift is not performed by 
4810 inefficient compilers.
4811
4812 Added missing va_end statements that should correspond with each va_start 
4813 statement.
4814
4815 Example Code and Data Size: These are the sizes for the OS-independent 
4816 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4817 debug version of the code includes the debug output trace mechanism and 
4818 has 
4819 a much larger code and data size.
4820
4821   Previous Release:
4822     Non-Debug Version:  79.5K Code, 17.2K Data,  96.7K Total
4823     Debug Version:     159.0K Code, 63.8K Data, 222.8K Total
4824   Current Release:
4825     Non-Debug Version:  79.7K Code, 17.3K Data,  97.0K Total
4826     Debug Version:     158.9K Code, 64.0K Data, 222.9K Total
4827
4828 2) iASL Compiler/Disassembler and Tools:
4829
4830 Implemented full disassembler support for the following new ACPI tables: 
4831 BERT, EINJ, and ERST. Implemented partial disassembler support for the 
4832 complicated HEST table. These tables support the Windows Hardware Error 
4833 Architecture (WHEA).
4834
4835 ----------------------------------------
4836 23 January 2008. Summary of changes for version 20080123:
4837
4838 1) ACPI CA Core Subsystem:
4839
4840 Added the 2008 copyright to all module headers and signons. This affects 
4841 virtually every file in the ACPICA core subsystem, the iASL compiler, and 
4842 the tools/utilities.
4843
4844 Fixed a problem with the SizeOf operator when used with Package and Buffer 
4845 objects. These objects have deferred execution for some arguments, and the 
4846 execution is now completed before the SizeOf is executed. This problem 
4847 caused 
4848 unexpected AE_PACKAGE_LIMIT errors on some systems (Lin Ming, Bob Moore) 
4849 BZ 
4850 9558
4851
4852 Implemented an enhancement to the interpreter "slack mode". In the absence 
4853 of 
4854 an explicit return or an implicitly returned object from the last executed 
4855 opcode, a control method will now implicitly return an integer of value 0 
4856 for 
4857 Microsoft compatibility. (Lin Ming) BZ 392
4858
4859 Fixed a problem with the Load operator where an exception was not returned 
4860 in 
4861 the case where the table is already loaded. (Lin Ming) BZ 463
4862
4863 Implemented support for the use of DDBHandles as an Indexed Reference, as 
4864 per 
4865 the ACPI spec. (Lin Ming) BZ 486
4866
4867 Implemented support for UserTerm (Method invocation) for the Unload 
4868 operator 
4869 as per the ACPI spec. (Lin Ming) BZ 580
4870
4871 Fixed a problem with the LoadTable operator where the OemId and OemTableId 
4872 input strings could cause unexpected failures if they were shorter than 
4873 the 
4874 maximum lengths allowed. (Lin Ming, Bob Moore) BZ 576
4875
4876 Implemented support for UserTerm (Method invocation) for the Unload 
4877 operator 
4878 as per the ACPI spec. (Lin Ming) BZ 580
4879
4880 Implemented header file support for new ACPI tables - BERT, ERST, EINJ, 
4881 HEST, 
4882 IBFT, UEFI, WDAT. Disassembler support is forthcoming.
4883
4884 Example Code and Data Size: These are the sizes for the OS-independent 
4885 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4886 debug version of the code includes the debug output trace mechanism and 
4887 has 
4888 a much larger code and data size.
4889
4890   Previous Release:
4891     Non-Debug Version:  79.3K Code, 17.2K Data,  96.5K Total
4892     Debug Version:     158.6K Code, 63.8K Data, 222.4K Total
4893   Current Release:
4894     Non-Debug Version:  79.5K Code, 17.2K Data,  96.7K Total
4895     Debug Version:     159.0K Code, 63.8K Data, 222.8K Total
4896
4897 2) iASL Compiler/Disassembler and Tools:
4898
4899 Implemented support in the disassembler for checksum validation on 
4900 incoming 
4901 binary DSDTs and SSDTs. If incorrect, a message is displayed within the 
4902 table 
4903 header dump at the start of the disassembly.
4904
4905 Implemented additional debugging information in the namespace listing file 
4906 created during compilation. In addition to the namespace hierarchy, the 
4907 full 
4908 pathname to each namespace object is displayed.
4909
4910 Fixed a problem with the disassembler where invalid ACPI tables could 
4911 cause 
4912 faults or infinite loops.
4913
4914 Fixed an unexpected parse error when using the optional "parameter types" 
4915 list in a control method declaration. (Lin Ming) BZ 397
4916
4917 Fixed a problem where two External declarations with the same name did not 
4918 cause an error (Lin Ming) BZ 509
4919
4920 Implemented support for full TermArgs (adding Argx, Localx and method 
4921 invocation) for the ParameterData parameter to the LoadTable operator. 
4922 (Lin 
4923 Ming) BZ 583,587
4924
4925 ----------------------------------------
4926 19 December 2007. Summary of changes for version 20071219:
4927
4928 1) ACPI CA Core Subsystem:
4929
4930 Implemented full support for deferred execution for the TermArg string 
4931 arguments for DataTableRegion. This enables forward references and full 
4932 operand resolution for the three string arguments. Similar to 
4933 OperationRegion 
4934 deferred argument execution.) Lin Ming. BZ 430
4935
4936 Implemented full argument resolution support for the BankValue argument to 
4937 BankField. Previously, only constants were supported, now any TermArg may 
4938 be 
4939 used. Lin Ming BZ 387, 393
4940
4941 Fixed a problem with AcpiGetDevices where the search of a branch of the 
4942 device tree could be terminated prematurely. In accordance with the ACPI 
4943 specification, the search down the current branch is terminated if a 
4944 device 
4945 is both not present and not functional (instead of just not present.) 
4946 Yakui 
4947 Zhao.
4948
4949 Fixed a problem where "unknown" GPEs could be allowed to fire repeatedly 
4950 if 
4951 the underlying AML code changed the GPE enable registers. Now, any unknown 
4952 incoming GPE (no _Lxx/_Exx method and not the EC GPE) is immediately 
4953 disabled 
4954 instead of simply ignored. Rui Zhang.
4955
4956 Fixed a problem with Index Fields where the Index register was incorrectly 
4957 limited to a maximum of 32 bits. Now any size may be used.
4958
4959 Fixed a couple memory leaks associated with "implicit return" objects when 
4960 the AML Interpreter slack mode is enabled. Lin Ming BZ 349
4961
4962 Example Code and Data Size: These are the sizes for the OS-independent 
4963 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
4964 debug version of the code includes the debug output trace mechanism and 
4965 has 
4966 a much larger code and data size.
4967
4968   Previous Release:
4969     Non-Debug Version:  79.0K Code, 17.2K Data,  96.2K Total
4970     Debug Version:     157.9K Code, 63.6K Data, 221.5K Total
4971   Current Release:
4972     Non-Debug Version:  79.3K Code, 17.2K Data,  96.5K Total
4973     Debug Version:     158.6K Code, 63.8K Data, 222.4K Total
4974
4975 ----------------------------------------
4976 14 November 2007. Summary of changes for version 20071114:
4977
4978 1) ACPI CA Core Subsystem:
4979
4980 Implemented event counters for each of the Fixed Events, the ACPI SCI 
4981 (interrupt) itself, and control methods executed. Named 
4982 AcpiFixedEventCount[], AcpiSciCount, and AcpiMethodCount respectively. 
4983 These 
4984 should be useful for debugging and statistics.
4985
4986 Implemented a new external interface, AcpiGetStatistics, to retrieve the 
4987 contents of the various event counters. Returns the current values for 
4988 AcpiSciCount, AcpiGpeCount, the AcpiFixedEventCount array, and 
4989 AcpiMethodCount. The interface can be expanded in the future if new 
4990 counters 
4991 are added. Device drivers should use this interface rather than access the 
4992 counters directly.
4993
4994 Fixed a problem with the FromBCD and ToBCD operators. With some compilers, 
4995 the ShortDivide function worked incorrectly, causing problems with the BCD 
4996 functions with large input values. A truncation from 64-bit to 32-bit 
4997 inadvertently occurred. Internal BZ 435. Lin Ming
4998
4999 Fixed a problem with Index references passed as method arguments. 
5000 References 
5001 passed as arguments to control methods were dereferenced immediately 
5002 (before 
5003 control was passed to the called method). The references are now correctly 
5004 passed directly to the called method. BZ 5389. Lin Ming
5005
5006 Fixed a problem with CopyObject used in conjunction with the Index 
5007 operator. 
5008 The reference was incorrectly dereferenced before the copy. The reference 
5009 is 
5010 now correctly copied. BZ 5391. Lin Ming
5011
5012 Fixed a problem with Control Method references within Package objects. 
5013 These 
5014 references are now correctly generated. This completes the package 
5015 construction overhaul that began in version 20071019.
5016
5017 Example Code and Data Size: These are the sizes for the OS-independent 
5018 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5019 debug version of the code includes the debug output trace mechanism and 
5020 has 
5021 a much larger code and data size.
5022
5023   Previous Release:
5024     Non-Debug Version:  78.8K Code, 17.2K Data,  96.0K Total
5025     Debug Version:     157.2K Code, 63.4K Data, 220.6K Total
5026   Current Release:
5027     Non-Debug Version:  79.0K Code, 17.2K Data,  96.2K Total
5028     Debug Version:     157.9K Code, 63.6K Data, 221.5K Total
5029
5030
5031 2) iASL Compiler/Disassembler and Tools:
5032
5033 The AcpiExec utility now installs handlers for all of the predefined 
5034 Operation Region types. New types supported are: PCI_Config, CMOS, and 
5035 PCIBARTarget.
5036
5037 Fixed a problem with the 64-bit version of AcpiExec where the extended 
5038 (64-
5039 bit) address fields for the DSDT and FACS within the FADT were not being 
5040 used, causing truncation of the upper 32-bits of these addresses. Lin Ming 
5041 and Bob Moore
5042
5043 ----------------------------------------
5044 19 October 2007. Summary of changes for version 20071019:
5045
5046 1) ACPI CA Core Subsystem:
5047
5048 Fixed a problem with the Alias operator when the target of the alias is a 
5049 named ASL operator that opens a new scope -- Scope, Device, PowerResource, 
5050 Processor, and ThermalZone. In these cases, any children of the original 
5051 operator could not be accessed via the alias, potentially causing 
5052 unexpected 
5053 AE_NOT_FOUND exceptions. (BZ 9067)
5054
5055 Fixed a problem with the Package operator where all named references were 
5056 created as object references and left otherwise unresolved. According to 
5057 the 
5058 ACPI specification, a Package can only contain Data Objects or references 
5059 to 
5060 control methods. The implication is that named references to Data Objects 
5061 (Integer, Buffer, String, Package, BufferField, Field) should be resolved 
5062 immediately upon package creation. This is the approach taken with this 
5063 change. References to all other named objects (Methods, Devices, Scopes, 
5064 etc.) are all now properly created as reference objects. (BZ 5328)
5065
5066 Reverted a change to Notify handling that was introduced in version 
5067 20070508. This version changed the Notify handling from asynchronous to 
5068 fully synchronous (Device driver Notify handling with respect to the 
5069 Notify 
5070 ASL operator). It was found that this change caused more problems than it 
5071 solved and was removed by most users.
5072
5073 Fixed a problem with the Increment and Decrement operators where the type 
5074 of 
5075 the target object could be unexpectedly and incorrectly changed. (BZ 353) 
5076 Lin Ming.
5077
5078 Fixed a problem with the Load and LoadTable operators where the table 
5079 location within the namespace was ignored. Instead, the table was always 
5080 loaded into the root or current scope. Lin Ming.
5081
5082 Fixed a problem with the Load operator when loading a table from a buffer 
5083 object. The input buffer was prematurely zeroed and/or deleted. (BZ 577)
5084
5085 Fixed a problem with the Debug object where a store of a DdbHandle 
5086 reference 
5087 object to the Debug object could cause a fault.
5088
5089 Added a table checksum verification for the Load operator, in the case 
5090 where 
5091 the load is from a buffer. (BZ 578).
5092
5093 Implemented additional parameter validation for the LoadTable operator. 
5094 The 
5095 length of the input strings SignatureString, OemIdString, and OemTableId 
5096 are 
5097 now checked for maximum lengths. (BZ 582) Lin Ming.
5098
5099 Example Code and Data Size: These are the sizes for the OS-independent 
5100 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5101 debug version of the code includes the debug output trace mechanism and 
5102 has 
5103 a much larger code and data size.
5104
5105   Previous Release:
5106     Non-Debug Version:  78.5K Code, 17.1K Data,  95.6K Total
5107     Debug Version:     156.7K Code, 63.2K Data, 219.9K Total
5108   Current Release:
5109     Non-Debug Version:  78.8K Code, 17.2K Data,  96.0K Total
5110     Debug Version:     157.2K Code, 63.4K Data, 220.6K Total
5111
5112
5113 2) iASL Compiler/Disassembler:
5114
5115 Fixed a problem where if a single file was specified and the file did not 
5116 exist, no error message was emitted. (Introduced with wildcard support in 
5117 version 20070917.)
5118
5119 ----------------------------------------
5120 19 September 2007. Summary of changes for version 20070919:
5121
5122 1) ACPI CA Core Subsystem:
5123
5124 Designed and implemented new external interfaces to install and remove 
5125 handlers for ACPI table-related events. Current events that are defined 
5126 are 
5127 LOAD and UNLOAD. These interfaces allow the host to track ACPI tables as 
5128 they are dynamically loaded and unloaded. See AcpiInstallTableHandler and 
5129 AcpiRemoveTableHandler. (Lin Ming and Bob Moore)
5130
5131 Fixed a problem where the use of the AcpiGbl_AllMethodsSerialized flag 
5132 (acpi_serialized option on Linux) could cause some systems to hang during 
5133 initialization. (Bob Moore) BZ 8171
5134
5135 Fixed a problem where objects of certain types (Device, ThermalZone, 
5136 Processor, PowerResource) can be not found if they are declared and 
5137 referenced from within the same control method (Lin Ming) BZ 341
5138
5139 Example Code and Data Size: These are the sizes for the OS-independent 
5140 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5141 debug version of the code includes the debug output trace mechanism and 
5142 has 
5143 a much larger code and data size.
5144
5145   Previous Release:
5146     Non-Debug Version:  78.3K Code, 17.0K Data,  95.3K Total
5147     Debug Version:     156.3K Code, 63.1K Data, 219.4K Total
5148   Current Release:
5149     Non-Debug Version:  78.5K Code, 17.1K Data,  95.6K Total
5150     Debug Version:     156.7K Code, 63.2K Data, 219.9K Total
5151
5152
5153 2) iASL Compiler/Disassembler:
5154
5155 Implemented support to allow multiple files to be compiled/disassembled in 
5156
5157 single invocation. This includes command line wildcard support for both 
5158 the 
5159 Windows and Unix versions of the compiler. This feature simplifies the 
5160 disassembly and compilation of multiple ACPI tables in a single directory.
5161
5162 ----------------------------------------
5163 08 May 2007. Summary of changes for version 20070508:
5164
5165 1) ACPI CA Core Subsystem:
5166
5167 Implemented a Microsoft compatibility design change for the handling of 
5168 the 
5169 Notify AML operator. Previously, notify handlers were dispatched and 
5170 executed completely asynchronously in a deferred thread. The new design 
5171 still executes the notify handlers in a different thread, but the original 
5172 thread that executed the Notify() now waits at a synchronization point for 
5173 the notify handler to complete. Some machines depend on a synchronous 
5174 Notify 
5175 operator in order to operate correctly.
5176
5177 Implemented support to allow Package objects to be passed as method 
5178 arguments to the external AcpiEvaluateObject interface. Previously, this 
5179 would return the AE_NOT_IMPLEMENTED exception. This feature had not been 
5180 implemented since there were no reserved control methods that required it 
5181 until recently.
5182
5183 Fixed a problem with the internal FADT conversion where ACPI 1.0 FADTs 
5184 that 
5185 contained invalid non-zero values in reserved fields could cause later 
5186 failures because these fields have meaning in later revisions of the FADT. 
5187 For incoming ACPI 1.0 FADTs, these fields are now always zeroed. (The 
5188 fields 
5189 are: Preferred_PM_Profile, PSTATE_CNT, CST_CNT, and IAPC_BOOT_FLAGS.)
5190
5191 Fixed a problem where the Global Lock handle was not properly updated if a 
5192 thread that acquired the Global Lock via executing AML code then attempted 
5193 to acquire the lock via the AcpiAcquireGlobalLock interface. Reported by 
5194 Joe 
5195 Liu.
5196
5197 Fixed a problem in AcpiEvDeleteGpeXrupt where the global interrupt list 
5198 could be corrupted if the interrupt being removed was at the head of the 
5199 list. Reported by Linn Crosetto.
5200
5201 Example Code and Data Size: These are the sizes for the OS-independent 
5202 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5203 debug version of the code includes the debug output trace mechanism and 
5204 has 
5205 a much larger code and data size.
5206
5207   Previous Release:
5208     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
5209     Debug Version:     155.9K Code, 63.1K Data, 219.0K Total
5210   Current Release:
5211     Non-Debug Version:  78.3K Code, 17.0K Data,  95.3K Total
5212     Debug Version:     156.3K Code, 63.1K Data, 219.4K Total
5213
5214 ----------------------------------------
5215 20 March 2007. Summary of changes for version 20070320:
5216
5217 1) ACPI CA Core Subsystem:
5218
5219 Implemented a change to the order of interpretation and evaluation of AML 
5220 operand objects within the AML interpreter. The interpreter now evaluates 
5221 operands in the order that they appear in the AML stream (and the 
5222 corresponding ASL code), instead of in the reverse order (after the entire 
5223 operand list has been parsed). The previous behavior caused several subtle 
5224 incompatibilities with the Microsoft AML interpreter as well as being 
5225 somewhat non-intuitive. BZ 7871, local BZ 263. Valery Podrezov.
5226
5227 Implemented a change to the ACPI Global Lock support. All interfaces to 
5228 the 
5229 global lock now allow the same thread to acquire the lock multiple times. 
5230 This affects the AcpiAcquireGlobalLock external interface to the global 
5231 lock 
5232 as well as the internal use of the global lock to support AML fields -- a 
5233 control method that is holding the global lock can now simultaneously 
5234 access 
5235 AML fields that require global lock protection. Previously, in both cases, 
5236 this would have resulted in an AE_ALREADY_ACQUIRED exception. The change 
5237 to 
5238 AcpiAcquireGlobalLock is of special interest to drivers for the Embedded 
5239 Controller. There is no change to the behavior of the AML Acquire 
5240 operator, 
5241 as this can already be used to acquire a mutex multiple times by the same 
5242 thread. BZ 8066. With assistance from Alexey Starikovskiy.
5243
5244 Fixed a problem where invalid objects could be referenced in the AML 
5245 Interpreter after error conditions. During operand evaluation, ensure that 
5246 the internal "Return Object" field is cleared on error and only valid 
5247 pointers are stored there. Caused occasional access to deleted objects 
5248 that 
5249 resulted in "large reference count" warning messages. Valery Podrezov.
5250
5251 Fixed a problem where an AE_STACK_OVERFLOW internal exception could occur 
5252 on 
5253 deeply nested control method invocations. BZ 7873, local BZ 487. Valery 
5254 Podrezov.
5255
5256 Fixed an internal problem with the handling of result objects on the 
5257 interpreter result stack. BZ 7872. Valery Podrezov.
5258
5259 Removed obsolete code that handled the case where AML_NAME_OP is the 
5260 target 
5261 of a reference (Reference.Opcode). This code was no longer necessary. BZ 
5262 7874. Valery Podrezov.
5263
5264 Removed obsolete ACPI_NO_INTEGER64_SUPPORT from two header files. This was 
5265
5266 remnant from the previously discontinued 16-bit support.
5267
5268 Example Code and Data Size: These are the sizes for the OS-independent 
5269 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5270 debug version of the code includes the debug output trace mechanism and 
5271 has 
5272 a much larger code and data size.
5273
5274   Previous Release:
5275     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
5276     Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
5277   Current Release:
5278     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
5279     Debug Version:     155.9K Code, 63.1K Data, 219.0K Total
5280
5281 ----------------------------------------
5282 26 January 2007. Summary of changes for version 20070126:
5283
5284 1) ACPI CA Core Subsystem:
5285
5286 Added the 2007 copyright to all module headers and signons. This affects 
5287 virtually every file in the ACPICA core subsystem, the iASL compiler, and 
5288 the utilities.
5289
5290 Implemented a fix for an incorrect parameter passed to AcpiTbDeleteTable 
5291 during a table load. A bad pointer was passed in the case where the DSDT 
5292 is 
5293 overridden, causing a fault in this case.
5294
5295 Example Code and Data Size: These are the sizes for the OS-independent 
5296 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5297 debug version of the code includes the debug output trace mechanism and 
5298 has 
5299 a much larger code and data size.
5300
5301   Previous Release:
5302     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
5303     Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
5304   Current Release:
5305     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
5306     Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
5307
5308 ----------------------------------------
5309 15 December 2006. Summary of changes for version 20061215:
5310
5311 1) ACPI CA Core Subsystem:
5312
5313 Support for 16-bit ACPICA has been completely removed since it is no 
5314 longer 
5315 necessary and it clutters the code. All 16-bit macros, types, and 
5316 conditional compiles have been removed, cleaning up and simplifying the 
5317 code 
5318 across the entire subsystem. DOS support is no longer needed since the 
5319 bootable Linux firmware kit is now available.
5320
5321 The handler for the Global Lock is now removed during AcpiTerminate to 
5322 enable a clean subsystem restart, via the implementation of the 
5323 AcpiEvRemoveGlobalLockHandler function. (With assistance from Joel Bretz, 
5324 HP)
5325
5326 Implemented enhancements to the multithreading support within the debugger 
5327 to enable improved multithreading debugging and evaluation of the 
5328 subsystem. 
5329 (Valery Podrezov)
5330
5331 Debugger: Enhanced the Statistics/Memory command to emit the total 
5332 (maximum) 
5333 memory used during the execution, as well as the maximum memory consumed 
5334 by 
5335 each of the various object types. (Valery Podrezov)
5336
5337 Example Code and Data Size: These are the sizes for the OS-independent 
5338 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5339 debug version of the code includes the debug output trace mechanism and 
5340 has 
5341 a much larger code and data size.
5342
5343   Previous Release:
5344     Non-Debug Version:  77.9K Code, 17.0K Data,  94.9K Total
5345     Debug Version:     155.2K Code, 63.1K Data, 218.3K Total
5346   Current Release:
5347     Non-Debug Version:  78.0K Code, 17.1K Data,  95.1K Total
5348     Debug Version:     155.8K Code, 63.3K Data, 219.1K Total
5349
5350
5351 2) iASL Compiler/Disassembler and Tools:
5352
5353 AcpiExec: Implemented a new option (-m) to display full memory use 
5354 statistics upon subsystem/program termination. (Valery Podrezov)
5355
5356 ----------------------------------------
5357 09 November 2006. Summary of changes for version 20061109:
5358
5359 1) ACPI CA Core Subsystem:
5360
5361 Optimized the Load ASL operator in the case where the source operand is an 
5362 operation region. Simply map the operation region memory, instead of 
5363 performing a bytewise read. (Region must be of type SystemMemory, see 
5364 below.)
5365
5366 Fixed the Load ASL operator for the case where the source operand is a 
5367 region field. A buffer object is also allowed as the source operand. BZ 
5368 480
5369
5370 Fixed a problem where the Load ASL operator allowed the source operand to 
5371 be 
5372 an operation region of any type. It is now restricted to regions of type 
5373 SystemMemory, as per the ACPI specification. BZ 481
5374
5375 Additional cleanup and optimizations for the new Table Manager code.
5376
5377 AcpiEnable will now fail if all of the required ACPI tables are not loaded 
5378 (FADT, FACS, DSDT). BZ 477
5379
5380 Added #pragma pack(8/4) to acobject.h to ensure that the structures in 
5381 this 
5382 header are always compiled as aligned. The ACPI_OPERAND_OBJECT has been 
5383 manually optimized to be aligned and will not work if it is byte-packed. 
5384
5385 Example Code and Data Size: These are the sizes for the OS-independent 
5386 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5387 debug version of the code includes the debug output trace mechanism and 
5388 has 
5389 a much larger code and data size.
5390
5391   Previous Release:
5392     Non-Debug Version:  78.1K Code, 17.1K Data,  95.2K Total
5393     Debug Version:     155.4K Code, 63.1K Data, 218.5K Total
5394   Current Release:
5395     Non-Debug Version:  77.9K Code, 17.0K Data,  94.9K Total
5396     Debug Version:     155.2K Code, 63.1K Data, 218.3K Total
5397
5398
5399 2) iASL Compiler/Disassembler and Tools:
5400
5401 Fixed a problem where the presence of the _OSI predefined control method 
5402 within complex expressions could cause an internal compiler error.
5403
5404 AcpiExec: Implemented full region support for multiple address spaces. 
5405 SpaceId is now part of the REGION object. BZ 429
5406
5407 ----------------------------------------
5408 11 October 2006. Summary of changes for version 20061011:
5409
5410 1) ACPI CA Core Subsystem:
5411
5412 Completed an AML interpreter performance enhancement for control method 
5413 execution. Previously a 2-pass parse/execution, control methods are now 
5414 completely parsed and executed in a single pass. This improves overall 
5415 interpreter performance by ~25%, reduces code size, and reduces CPU stack 
5416 use. (Valery Podrezov + interpreter changes in version 20051202 that 
5417 eliminated namespace loading during the pass one parse.)
5418
5419 Implemented _CID support for PCI Root Bridge detection. If the _HID does 
5420 not 
5421 match the predefined PCI Root Bridge IDs, the _CID list (if present) is 
5422 now 
5423 obtained and also checked for an ID match.
5424
5425 Implemented additional support for the PCI _ADR execution: upsearch until 
5426
5427 device scope is found before executing _ADR. This allows PCI_Config 
5428 operation regions to be declared locally within control methods underneath 
5429 PCI device objects.
5430
5431 Fixed a problem with a possible race condition between threads executing 
5432 AcpiWalkNamespace and the AML interpreter. This condition was removed by 
5433 modifying AcpiWalkNamespace to (by default) ignore all temporary namespace 
5434 entries created during any concurrent control method execution. An 
5435 additional namespace race condition is known to exist between 
5436 AcpiWalkNamespace and the Load/Unload ASL operators and is still under 
5437 investigation.
5438
5439 Restructured the AML ParseLoop function, breaking it into several 
5440 subfunctions in order to reduce CPU stack use and improve maintainability. 
5441 (Mikhail Kouzmich)
5442
5443 AcpiGetHandle: Fix for parameter validation to detect invalid combinations 
5444 of prefix handle and pathname. BZ 478
5445
5446 Example Code and Data Size: These are the sizes for the OS-independent 
5447 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5448 debug version of the code includes the debug output trace mechanism and 
5449 has 
5450 a much larger code and data size.
5451
5452   Previous Release:
5453     Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
5454     Debug Version:     154.6K Code, 63.0K Data, 217.6K Total
5455   Current Release:
5456     Non-Debug Version:  78.1K Code, 17.1K Data,  95.2K Total
5457     Debug Version:     155.4K Code, 63.1K Data, 218.5K Total
5458
5459 2) iASL Compiler/Disassembler and Tools:
5460
5461 Ported the -g option (get local ACPI tables) to the new ACPICA Table 
5462 Manager 
5463 to restore original behavior.
5464
5465 ----------------------------------------
5466 27 September 2006. Summary of changes for version 20060927:
5467
5468 1) ACPI CA Core Subsystem:
5469
5470 Removed the "Flags" parameter from AcpiGetRegister and AcpiSetRegister. 
5471 These functions now use a spinlock for mutual exclusion and the interrupt 
5472 level indication flag is not needed.
5473
5474 Fixed a problem with the Global Lock where the lock could appear to be 
5475 obtained before it is actually obtained. The global lock semaphore was 
5476 inadvertently created with one unit instead of zero units. (BZ 464) Fiodor 
5477 Suietov.
5478
5479 Fixed a possible memory leak and fault in AcpiExResolveObjectToValue 
5480 during 
5481 a read from a buffer or region field. (BZ 458) Fiodor Suietov.
5482
5483 Example Code and Data Size: These are the sizes for the OS-independent 
5484 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5485 debug version of the code includes the debug output trace mechanism and 
5486 has 
5487 a much larger code and data size.
5488
5489   Previous Release:
5490     Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
5491     Debug Version:     154.7K Code, 63.0K Data, 217.7K Total
5492   Current Release:
5493     Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
5494     Debug Version:     154.6K Code, 63.0K Data, 217.6K Total
5495
5496
5497 2) iASL Compiler/Disassembler and Tools:
5498
5499 Fixed a compilation problem with the pre-defined Resource Descriptor field 
5500 names where an "object does not exist" error could be incorrectly 
5501 generated 
5502 if the parent ResourceTemplate pathname places the template within a 
5503 different namespace scope than the current scope. (BZ 7212)
5504
5505 Fixed a problem where the compiler could hang after syntax errors detected 
5506 in an ElseIf construct. (BZ 453)
5507
5508 Fixed a problem with the AmlFilename parameter to the DefinitionBlock() 
5509 operator. An incorrect output filename was produced when this parameter 
5510 was 
5511 a null string (""). Now, the original input filename is used as the AML 
5512 output filename, with an ".aml" extension.
5513
5514 Implemented a generic batch command mode for the AcpiExec utility (execute 
5515 any AML debugger command) (Valery Podrezov).
5516
5517 ----------------------------------------
5518 12 September 2006. Summary of changes for version 20060912:
5519
5520 1) ACPI CA Core Subsystem:
5521
5522 Enhanced the implementation of the "serialized mode" of the interpreter 
5523 (enabled via the AcpiGbl_AllMethodsSerialized flag.) When this mode is 
5524 specified, instead of creating a serialization semaphore per control 
5525 method, 
5526 the interpreter lock is simply no longer released before a blocking 
5527 operation during control method execution. This effectively makes the AML 
5528 Interpreter single-threaded. The overhead of a semaphore per-method is 
5529 eliminated.
5530
5531 Fixed a regression where an error was no longer emitted if a control 
5532 method 
5533 attempts to create 2 objects of the same name. This once again returns 
5534 AE_ALREADY_EXISTS. When this exception occurs, it invokes the mechanism 
5535 that 
5536 will dynamically serialize the control method to possible prevent future 
5537 errors. (BZ 440)
5538
5539 Integrated a fix for a problem with PCI Express HID detection in the PCI 
5540 Config Space setup procedure. (BZ 7145)
5541
5542 Moved all FADT-related functions to a new file, tbfadt.c. Eliminated the 
5543 AcpiHwInitialize function - the FADT registers are now validated when the 
5544 table is loaded.
5545
5546 Added two new warnings during FADT verification - 1) if the FADT is larger 
5547 than the largest known FADT version, and 2) if there is a mismatch between 
5548
5549 32-bit block address and the 64-bit X counterpart (when both are non-
5550 zero.)
5551
5552 Example Code and Data Size: These are the sizes for the OS-independent 
5553 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5554 debug version of the code includes the debug output trace mechanism and 
5555 has 
5556 a much larger code and data size.
5557
5558   Previous Release:
5559     Non-Debug Version:  77.9K Code, 16.7K Data,  94.6K Total
5560     Debug Version:     154.9K Code, 62.6K Data, 217.5K Total
5561   Current Release:
5562     Non-Debug Version:  77.9K Code, 17.1K Data,  95.0K Total
5563     Debug Version:     154.7K Code, 63.0K Data, 217.7K Total
5564
5565
5566 2) iASL Compiler/Disassembler and Tools:
5567
5568 Fixed a problem with the implementation of the Switch() operator where the 
5569 temporary variable was declared too close to the actual Switch, instead of 
5570 at method level. This could cause a problem if the Switch() operator is 
5571 within a while loop, causing an error on the second iteration. (BZ 460)
5572
5573 Disassembler - fix for error emitted for unknown type for target of scope 
5574 operator. Now, ignore it and continue.
5575
5576 Disassembly of an FADT now verifies the input FADT and reports any errors 
5577 found. Fix for proper disassembly of full-sized (ACPI 2.0) FADTs.
5578
5579 Disassembly of raw data buffers with byte initialization data now prefixes 
5580 each output line with the current buffer offset.
5581
5582 Disassembly of ASF! table now includes all variable-length data fields at 
5583 the end of some of the subtables.
5584
5585 The disassembler now emits a comment if a buffer appears to be a 
5586 ResourceTemplate, but cannot be disassembled as such because the EndTag 
5587 does 
5588 not appear at the very end of the buffer.
5589
5590 AcpiExec - Added the "-t" command line option to enable the serialized 
5591 mode 
5592 of the AML interpreter.
5593
5594 ----------------------------------------
5595 31 August 2006. Summary of changes for version 20060831:
5596
5597 1) ACPI CA Core Subsystem:
5598
5599 Miscellaneous fixes for the Table Manager:
5600 - Correctly initialize internal common FADT for all 64-bit "X" fields
5601 - Fixed a couple table mapping issues during table load
5602 - Fixed a couple alignment issues for IA64
5603 - Initialize input array to zero in AcpiInitializeTables
5604 - Additional parameter validation for AcpiGetTable, AcpiGetTableHeader, 
5605 AcpiGetTableByIndex
5606
5607 Change for GPE support: when a "wake" GPE is received, all wake GPEs are 
5608 now 
5609 immediately disabled to prevent the waking GPE from firing again and to 
5610 prevent other wake GPEs from interrupting the wake process.
5611
5612 Added the AcpiGpeCount global that tracks the number of processed GPEs, to 
5613 be used for debugging systems with a large number of ACPI interrupts.
5614
5615 Implemented support for the "DMAR" ACPI table (DMA Redirection Table) in 
5616 both the ACPICA headers and the disassembler.
5617
5618 Example Code and Data Size: These are the sizes for the OS-independent 
5619 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5620 debug version of the code includes the debug output trace mechanism and 
5621 has 
5622 a much larger code and data size.
5623
5624   Previous Release:
5625     Non-Debug Version:  77.8K Code, 16.5K Data,  94.3K Total
5626     Debug Version:     154.6K Code, 62.3K Data, 216.9K Total
5627   Current Release:
5628     Non-Debug Version:  77.9K Code, 16.7K Data,  94.6K Total
5629     Debug Version:     154.9K Code, 62.6K Data, 217.5K Total
5630
5631
5632 2) iASL Compiler/Disassembler and Tools:
5633
5634 Disassembler support for the DMAR ACPI table.
5635
5636 ----------------------------------------
5637 23 August 2006. Summary of changes for version 20060823:
5638
5639 1) ACPI CA Core Subsystem:
5640
5641 The Table Manager component has been completely redesigned and 
5642 reimplemented. The new design is much simpler, and reduces the overall 
5643 code 
5644 and data size of the kernel-resident ACPICA by approximately 5%. Also, it 
5645 is 
5646 now possible to obtain the ACPI tables very early during kernel 
5647 initialization, even before dynamic memory management is initialized. 
5648 (Alexey Starikovskiy, Fiodor Suietov, Bob Moore)
5649
5650 Obsolete ACPICA interfaces:
5651
5652 - AcpiGetFirmwareTable: Use AcpiGetTable instead (works at early kernel 
5653 init 
5654 time).
5655 - AcpiLoadTable: Not needed.
5656 - AcpiUnloadTable: Not needed.
5657
5658 New ACPICA interfaces:
5659
5660 - AcpiInitializeTables: Must be called before the table manager can be 
5661 used.
5662 - AcpiReallocateRootTable: Used to transfer the root table to dynamically 
5663 allocated memory after it becomes available.
5664 - AcpiGetTableByIndex: Allows the host to easily enumerate all ACPI tables 
5665 in the RSDT/XSDT.
5666
5667 Other ACPICA changes:
5668
5669 - AcpiGetTableHeader returns the actual mapped table header, not a copy. 
5670 Use 
5671 AcpiOsUnmapMemory to free this mapping.
5672 - AcpiGetTable returns the actual mapped table. The mapping is managed 
5673 internally and must not be deleted by the caller. Use of this interface 
5674 causes no additional dynamic memory allocation.
5675 - AcpiFindRootPointer: Support for physical addressing has been 
5676 eliminated, 
5677 it appeared to be unused.
5678 - The interface to AcpiOsMapMemory has changed to be consistent with the 
5679 other allocation interfaces.
5680 - The interface to AcpiOsGetRootPointer has changed to eliminate 
5681 unnecessary 
5682 parameters.
5683 - ACPI_PHYSICAL_ADDRESS is now 32 bits on 32-bit platforms, 64 bits on 64-
5684 bit platforms. Was previously 64 bits on all platforms.
5685 - The interface to the ACPI Global Lock acquire/release macros have 
5686 changed 
5687 slightly since ACPICA no longer keeps a local copy of the FACS with a 
5688 constructed pointer to the actual global lock.
5689
5690 Porting to the new table manager:
5691
5692 - AcpiInitializeTables: Must be called once, and can be called anytime 
5693 during the OS initialization process. It allows the host to specify an 
5694 area 
5695 of memory to be used to store the internal version of the RSDT/XSDT (root 
5696 table). This allows the host to access ACPI tables before memory 
5697 management 
5698 is initialized and running.
5699 - AcpiReallocateRootTable: Can be called after memory management is 
5700 running 
5701 to copy the root table to a dynamically allocated array, freeing up the 
5702 scratch memory specified in the call to AcpiInitializeTables.
5703 - AcpiSubsystemInitialize: This existing interface is independent of the 
5704 Table Manager, and does not have to be called before the Table Manager can 
5705 be used, it only must be called before the rest of ACPICA can be used.
5706 - ACPI Tables: Some changes have been made to the names and structure of 
5707 the 
5708 actbl.h and actbl1.h header files and may require changes to existing 
5709 code. 
5710 For example, bitfields have been completely removed because of their lack 
5711 of 
5712 portability across C compilers.
5713 - Update interfaces to the Global Lock acquire/release macros if local 
5714 versions are used. (see acwin.h)
5715
5716 Obsolete files: tbconvrt.c, tbget.c, tbgetall.c, tbrsdt.c
5717
5718 New files: tbfind.c
5719
5720 Example Code and Data Size: These are the sizes for the OS-independent 
5721 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5722 debug version of the code includes the debug output trace mechanism and 
5723 has 
5724 a much larger code and data size.
5725
5726   Previous Release:
5727     Non-Debug Version:  80.7K Code, 17.9K Data,  98.6K Total
5728     Debug Version:     161.0K Code, 65.1K Data, 226.1K Total
5729   Current Release:
5730     Non-Debug Version:  77.8K Code, 16.5K Data,  94.3K Total
5731     Debug Version:     154.6K Code, 62.3K Data, 216.9K Total
5732
5733
5734 2) iASL Compiler/Disassembler and Tools:
5735
5736 No changes for this release.
5737
5738 ----------------------------------------
5739 21 July 2006. Summary of changes for version 20060721:
5740
5741 1) ACPI CA Core Subsystem:
5742
5743 The full source code for the ASL test suite used to validate the iASL 
5744 compiler and the ACPICA core subsystem is being released with the ACPICA 
5745 source for the first time. The source is contained in a separate package 
5746 and 
5747 consists of over 1100 files that exercise all ASL/AML operators. The 
5748 package 
5749 should appear on the Intel/ACPI web site shortly. (Valery Podrezov, Fiodor 
5750 Suietov)
5751
5752 Completed a new design and implementation for support of the ACPI Global 
5753 Lock. On the OS side, the global lock is now treated as a standard AML 
5754 mutex. Previously, multiple OS threads could "acquire" the global lock 
5755 simultaneously. However, this could cause the BIOS to be starved out of 
5756 the 
5757 lock - especially in cases such as the Embedded Controller driver where 
5758 there is a tight coupling between the OS and the BIOS.
5759
5760 Implemented an optimization for the ACPI Global Lock interrupt mechanism. 
5761 The Global Lock interrupt handler no longer queues the execution of a 
5762 separate thread to signal the global lock semaphore. Instead, the 
5763 semaphore 
5764 is signaled directly from the interrupt handler.
5765
5766 Implemented support within the AML interpreter for package objects that 
5767 contain a larger AML length (package list length) than the package element 
5768 count. In this case, the length of the package is truncated to match the 
5769 package element count. Some BIOS code apparently modifies the package 
5770 length 
5771 on the fly, and this change supports this behavior. Provides compatibility 
5772 with the MS AML interpreter. (With assistance from Fiodor Suietov)
5773
5774 Implemented a temporary fix for the BankValue parameter of a Bank Field to 
5775 support all constant values, now including the Zero and One opcodes. 
5776 Evaluation of this parameter must eventually be converted to a full 
5777 TermArg 
5778 evaluation. A not-implemented error is now returned (temporarily) for non-
5779 constant values for this parameter.
5780
5781 Fixed problem reports (Fiodor Suietov) integrated:
5782 - Fix for premature object deletion after CopyObject on Operation Region 
5783 (BZ 
5784 350)
5785
5786 Example Code and Data Size: These are the sizes for the OS-independent 
5787 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5788 debug version of the code includes the debug output trace mechanism and 
5789 has 
5790 a much larger code and data size.
5791
5792   Previous Release:
5793     Non-Debug Version:  80.7K Code, 18.0K Data,  98.7K Total
5794     Debug Version:     160.9K Code, 65.1K Data, 226.0K Total
5795   Current Release:
5796     Non-Debug Version:  80.7K Code, 17.9K Data,  98.6K Total
5797     Debug Version:     161.0K Code, 65.1K Data, 226.1K Total
5798
5799
5800 2) iASL Compiler/Disassembler and Tools:
5801
5802 No changes for this release.
5803
5804 ----------------------------------------
5805 07 July 2006. Summary of changes for version 20060707:
5806
5807 1) ACPI CA Core Subsystem:
5808
5809 Added the ACPI_PACKED_POINTERS_NOT_SUPPORTED macro to support C compilers 
5810 that do not allow the initialization of address pointers within packed 
5811 structures - even though the hardware itself may support misaligned 
5812 transfers. Some of the debug data structures are packed by default to 
5813 minimize size.
5814
5815 Added an error message for the case where AcpiOsGetThreadId() returns 
5816 zero. 
5817 A non-zero value is required by the core ACPICA code to ensure the proper 
5818 operation of AML mutexes and recursive control methods.
5819
5820 The DSDT is now the only ACPI table that determines whether the AML 
5821 interpreter is in 32-bit or 64-bit mode. Not really a functional change, 
5822 but 
5823 the hooks for per-table 32/64 switching have been removed from the code. A 
5824 clarification to the ACPI specification is forthcoming in ACPI 3.0B.
5825
5826 Fixed a possible leak of an OwnerID in the error path of 
5827 AcpiTbInitTableDescriptor (tbinstal.c), and migrated all table OwnerID 
5828 deletion to a single place in AcpiTbUninstallTable to correct possible 
5829 leaks 
5830 when using the AcpiTbDeleteTablesByType interface (with assistance from 
5831 Lance Ortiz.)
5832
5833 Fixed a problem with Serialized control methods where the semaphore 
5834 associated with the method could be over-signaled after multiple method 
5835 invocations.
5836
5837 Fixed two issues with the locking of the internal namespace data 
5838 structure. 
5839 Both the Unload() operator and AcpiUnloadTable interface now lock the 
5840 namespace during the namespace deletion associated with the table unload 
5841 (with assistance from Linn Crosetto.)
5842
5843 Fixed problem reports (Valery Podrezov) integrated:
5844 - Eliminate unnecessary memory allocation for CreateXxxxField (BZ 5426)
5845
5846 Fixed problem reports (Fiodor Suietov) integrated:
5847 - Incomplete cleanup branches in AcpiTbGetTableRsdt (BZ 369)
5848 - On Address Space handler deletion, needless deactivation call (BZ 374)
5849 - AcpiRemoveAddressSpaceHandler: validate Device handle parameter (BZ 375)
5850 - Possible memory leak, Notify sub-objects of Processor, Power, 
5851 ThermalZone 
5852 (BZ 376)
5853 - AcpiRemoveAddressSpaceHandler: validate Handler parameter (BZ 378)
5854 - Minimum Length of RSDT should be validated (BZ 379)
5855 - AcpiRemoveNotifyHandler: return AE_NOT_EXIST if Processor Obj has no 
5856 Handler (BZ (380)
5857 - AcpiUnloadTable: return AE_NOT_EXIST if no table of specified type 
5858 loaded 
5859 (BZ 381)
5860
5861 Example Code and Data Size: These are the sizes for the OS-independent 
5862 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5863 debug version of the code includes the debug output trace mechanism and 
5864 has 
5865 a much larger code and data size.
5866
5867   Previous Release:
5868     Non-Debug Version:  80.5K Code, 17.8K Data,  98.3K Total
5869     Debug Version:     160.8K Code, 64.8K Data, 225.6K Total
5870   Current Release:
5871     Non-Debug Version:  80.7K Code, 17.9K Data,  98.6K Total
5872     Debug Version:     161.0K Code, 65.1K Data, 226.1K Total
5873
5874
5875 2) iASL Compiler/Disassembler and Tools:
5876
5877 Fixed problem reports:
5878 Compiler segfault when ASL contains a long (>1024) String declaration (BZ 
5879 436)
5880
5881 ----------------------------------------
5882 23 June 2006. Summary of changes for version 20060623:
5883
5884 1) ACPI CA Core Subsystem:
5885
5886 Implemented a new ACPI_SPINLOCK type for the OSL lock interfaces. This 
5887 allows the type to be customized to the host OS for improved efficiency 
5888 (since a spinlock is usually a very small object.)
5889
5890 Implemented support for "ignored" bits in the ACPI registers. According to 
5891 the ACPI specification, these bits should be preserved when writing the 
5892 registers via a read/modify/write cycle. There are 3 bits preserved in 
5893 this 
5894 manner: PM1_CONTROL[0] (SCI_EN), PM1_CONTROL[9], and PM1_STATUS[11].
5895
5896 Implemented the initial deployment of new OSL mutex interfaces. Since some 
5897 host operating systems have separate mutex and semaphore objects, this 
5898 feature was requested. The base code now uses mutexes (and the new mutex 
5899 interfaces) wherever a binary semaphore was used previously. However, for 
5900 the current release, the mutex interfaces are defined as macros to map 
5901 them 
5902 to the existing semaphore interfaces. Therefore, no OSL changes are 
5903 required 
5904 at this time. (See acpiosxf.h)
5905
5906 Fixed several problems with the support for the control method SyncLevel 
5907 parameter. The SyncLevel now works according to the ACPI specification and 
5908 in concert with the Mutex SyncLevel parameter, since the current SyncLevel 
5909 is a property of the executing thread. Mutual exclusion for control 
5910 methods 
5911 is now implemented with a mutex instead of a semaphore.
5912
5913 Fixed three instances of the use of the C shift operator in the bitfield 
5914 support code (exfldio.c) to avoid the use of a shift value larger than the 
5915 target data width. The behavior of C compilers is undefined in this case 
5916 and 
5917 can cause unpredictable results, and therefore the case must be detected 
5918 and 
5919 avoided. (Fiodor Suietov)
5920
5921 Added an info message whenever an SSDT or OEM table is loaded dynamically 
5922 via the Load() or LoadTable() ASL operators. This should improve debugging 
5923 capability since it will show exactly what tables have been loaded (beyond 
5924 the tables present in the RSDT/XSDT.)
5925
5926 Example Code and Data Size: These are the sizes for the OS-independent 
5927 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5928 debug version of the code includes the debug output trace mechanism and 
5929 has 
5930 a much larger code and data size.
5931
5932   Previous Release:
5933     Non-Debug Version:  80.0K Code, 17.6K Data,  97.6K Total
5934     Debug Version:     160.2K Code, 64.7K Data, 224.9K Total
5935   Current Release:
5936     Non-Debug Version:  80.5K Code, 17.8K Data,  98.3K Total
5937     Debug Version:     160.8K Code, 64.8K Data, 225.6K Total
5938
5939
5940 2) iASL Compiler/Disassembler and Tools:
5941
5942 No changes for this release.
5943
5944 ----------------------------------------
5945 08 June 2006. Summary of changes for version 20060608:
5946
5947 1) ACPI CA Core Subsystem:
5948
5949 Converted the locking mutex used for the ACPI hardware to a spinlock. This 
5950 change should eliminate all problems caused by attempting to acquire a 
5951 semaphore at interrupt level, and it means that all ACPICA external 
5952 interfaces that directly access the ACPI hardware can be safely called 
5953 from 
5954 interrupt level. OSL code that implements the semaphore interfaces should 
5955 be 
5956 able to eliminate any workarounds for being called at interrupt level.
5957
5958 Fixed a regression introduced in 20060526 where the ACPI device 
5959 initialization could be prematurely aborted with an AE_NOT_FOUND if a 
5960 device 
5961 did not have an optional _INI method.
5962
5963 Fixed an IndexField issue where a write to the Data Register should be 
5964 limited in size to the AccessSize (width) of the IndexField itself. (BZ 
5965 433, 
5966 Fiodor Suietov)
5967
5968 Fixed problem reports (Valery Podrezov) integrated:
5969 - Allow store of ThermalZone objects to Debug object (BZ 5369/5370)
5970
5971 Fixed problem reports (Fiodor Suietov) integrated:
5972 - AcpiGetTableHeader doesn't handle multiple instances correctly (BZ 364)
5973
5974 Removed four global mutexes that were obsolete and were no longer being 
5975 used.
5976
5977 Example Code and Data Size: These are the sizes for the OS-independent 
5978 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
5979 debug version of the code includes the debug output trace mechanism and 
5980 has 
5981 a much larger code and data size.
5982
5983   Previous Release:
5984     Non-Debug Version:  80.0K Code, 17.7K Data,  97.7K Total
5985     Debug Version:     160.3K Code, 64.9K Data, 225.2K Total
5986   Current Release:
5987     Non-Debug Version:  80.0K Code, 17.6K Data,  97.6K Total
5988     Debug Version:     160.2K Code, 64.7K Data, 224.9K Total
5989
5990
5991 2) iASL Compiler/Disassembler and Tools:
5992
5993 Fixed a fault when using -g option (get tables from registry) on Windows 
5994 machines.
5995
5996 Fixed problem reports integrated:
5997 - Generate error if CreateField NumBits parameter is zero. (BZ 405)
5998 - Fault if Offset/Length in Field unit is very large (BZ 432, Fiodor 
5999 Suietov)
6000 - Global table revision override (-r) is ignored (BZ 413)
6001
6002 ----------------------------------------
6003 26 May 2006. Summary of changes for version 20060526:
6004
6005 1) ACPI CA Core Subsystem:
6006
6007 Restructured, flattened, and simplified the internal interfaces for 
6008 namespace object evaluation - resulting in smaller code, less CPU stack 
6009 use, 
6010 and fewer interfaces. (With assistance from Mikhail Kouzmich)
6011
6012 Fixed a problem with the CopyObject operator where the first parameter was 
6013 not typed correctly for the parser, interpreter, compiler, and 
6014 disassembler. 
6015 Caused various errors and unexpected behavior.
6016
6017 Fixed a problem where a ShiftLeft or ShiftRight of more than 64 bits 
6018 produced incorrect results with some C compilers. Since the behavior of C 
6019 compilers when the shift value is larger than the datatype width is 
6020 apparently not well defined, the interpreter now detects this condition 
6021 and 
6022 simply returns zero as expected in all such cases. (BZ 395)
6023
6024 Fixed problem reports (Valery Podrezov) integrated:
6025 - Update String-to-Integer conversion to match ACPI 3.0A spec (BZ 5329)
6026 - Allow interpreter to handle nested method declarations (BZ 5361)
6027
6028 Fixed problem reports (Fiodor Suietov) integrated:
6029 - AcpiTerminate doesn't free debug memory allocation list objects (BZ 355)
6030 - After Core Subsystem shutdown, AcpiSubsystemStatus returns AE_OK (BZ 
6031 356)
6032 - AcpiOsUnmapMemory for RSDP can be invoked inconsistently (BZ 357)
6033 - Resource Manager should return AE_TYPE for non-device objects (BZ 358)
6034 - Incomplete cleanup branch in AcpiNsEvaluateRelative (BZ 359)
6035 - Use AcpiOsFree instead of ACPI_FREE in AcpiRsSetSrsMethodData (BZ 360)
6036 - Incomplete cleanup branch in AcpiPsParseAml (BZ 361)
6037 - Incomplete cleanup branch in AcpiDsDeleteWalkState (BZ 362)
6038 - AcpiGetTableHeader returns AE_NO_ACPI_TABLES until DSDT is loaded (BZ 
6039 365)
6040 - Status of the Global Initialization Handler call not used (BZ 366)
6041 - Incorrect object parameter to Global Initialization Handler (BZ 367)
6042
6043 Example Code and Data Size: These are the sizes for the OS-independent 
6044 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6045 debug version of the code includes the debug output trace mechanism and 
6046 has 
6047 a much larger code and data size.
6048
6049   Previous Release:
6050     Non-Debug Version:  79.8K Code, 17.7K Data,  97.5K Total
6051     Debug Version:     160.5K Code, 65.1K Data, 225.6K Total
6052   Current Release:
6053     Non-Debug Version:  80.0K Code, 17.7K Data,  97.7K Total
6054     Debug Version:     160.3K Code, 64.9K Data, 225.2K Total
6055
6056
6057 2) iASL Compiler/Disassembler and Tools:
6058
6059 Modified the parser to allow the names IO, DMA, and IRQ to be used as 
6060 namespace identifiers with no collision with existing resource descriptor 
6061 macro names. This provides compatibility with other ASL compilers and is 
6062 most useful for disassembly/recompilation of existing tables without parse 
6063 errors. (With assistance from Thomas Renninger)
6064
6065 Disassembler: fixed an incorrect disassembly problem with the 
6066 DataTableRegion and CopyObject operators. Fixed a possible fault during 
6067 disassembly of some Alias operators.
6068
6069 ----------------------------------------
6070 12 May 2006. Summary of changes for version 20060512:
6071
6072 1) ACPI CA Core Subsystem:
6073
6074 Replaced the AcpiOsQueueForExecution interface with a new interface named 
6075 AcpiOsExecute. The major difference is that the new interface does not 
6076 have 
6077 a Priority parameter, this appeared to be useless and has been replaced by 
6078
6079 Type parameter. The Type tells the host what type of execution is being 
6080 requested, such as global lock handler, notify handler, GPE handler, etc. 
6081 This allows the host to queue and execute the request as appropriate for 
6082 the 
6083 request type, possibly using different work queues and different 
6084 priorities 
6085 for the various request types. This enables fixes for multithreading 
6086 deadlock problems such as BZ #5534, and will require changes to all 
6087 existing 
6088 OS interface layers. (Alexey Starikovskiy and Bob Moore)
6089
6090 Fixed a possible memory leak associated with the support for the so-called 
6091 "implicit return" ACPI extension. Reported by FreeBSD, BZ #6514. (Fiodor 
6092 Suietov)
6093
6094 Fixed a problem with the Load() operator where a table load from an 
6095 operation region could overwrite an internal table buffer by up to 7 bytes 
6096 and cause alignment faults on IPF systems. (With assistance from Luming 
6097 Yu)
6098
6099 Example Code and Data Size: These are the sizes for the OS-independent 
6100 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6101 debug version of the code includes the debug output trace mechanism and 
6102 has 
6103 a much larger code and data size.
6104
6105   Previous Release:
6106     Non-Debug Version:  79.7K Code, 17.7K Data,  97.4K Total
6107     Debug Version:     160.1K Code, 65.2K Data, 225.3K Total
6108   Current Release:
6109     Non-Debug Version:  79.8K Code, 17.7K Data,  97.5K Total
6110     Debug Version:     160.5K Code, 65.1K Data, 225.6K Total
6111
6112
6113
6114 2) iASL Compiler/Disassembler and Tools:
6115
6116 Disassembler: Implemented support to cross reference the internal 
6117 namespace 
6118 and automatically generate ASL External() statements for symbols not 
6119 defined 
6120 within the current table being disassembled. This will simplify the 
6121 disassembly and recompilation of interdependent tables such as SSDTs since 
6122 these statements will no longer have to be added manually.
6123
6124 Disassembler: Implemented experimental support to automatically detect 
6125 invocations of external control methods and generate appropriate 
6126 External() 
6127 statements. This is problematic because the AML cannot be correctly parsed 
6128 until the number of arguments for each control method is known. Currently, 
6129 standalone method invocations and invocations as the source operand of a 
6130 Store() statement are supported.
6131
6132 Disassembler: Implemented support for the ASL pseudo-operators LNotEqual, 
6133 LLessEqual, and LGreaterEqual. Previously disassembled as LNot(LEqual()), 
6134 LNot(LGreater()), and LNot(LLess()), this makes the disassembled ASL code 
6135 more readable and likely closer to the original ASL source.
6136
6137 ----------------------------------------
6138 21 April 2006. Summary of changes for version 20060421:
6139
6140 1) ACPI CA Core Subsystem:
6141
6142 Removed a device initialization optimization introduced in 20051216 where 
6143 the _STA method was not run unless an _INI was also present for the same 
6144 device. This optimization could cause problems because it could allow _INI 
6145 methods to be run within a not-present device subtree. (If a not-present 
6146 device had no _INI, _STA would not be run, the not-present status would 
6147 not 
6148 be discovered, and the children of the device would be incorrectly 
6149 traversed.)
6150
6151 Implemented a new _STA optimization where namespace subtrees that do not 
6152 contain _INI are identified and ignored during device initialization. 
6153 Selectively running _STA can significantly improve boot time on large 
6154 machines (with assistance from Len Brown.)
6155
6156 Implemented support for the device initialization case where the returned 
6157 _STA flags indicate a device not-present but functioning. In this case, 
6158 _INI 
6159 is not run, but the device children are examined for presence, as per the 
6160 ACPI specification.
6161
6162 Implemented an additional change to the IndexField support in order to 
6163 conform to MS behavior. The value written to the Index Register is not 
6164 simply a byte offset, it is a byte offset in units of the access width of 
6165 the parent Index Field. (Fiodor Suietov)
6166
6167 Defined and deployed a new OSL interface, AcpiOsValidateAddress. This 
6168 interface is called during the creation of all AML operation regions, and 
6169 allows the host OS to exert control over what addresses it will allow the 
6170 AML code to access. Operation Regions whose addresses are disallowed will 
6171 cause a runtime exception when they are actually accessed (will not affect 
6172 or abort table loading.) See oswinxf or osunixxf for an example 
6173 implementation.
6174
6175 Defined and deployed a new OSL interface, AcpiOsValidateInterface. This 
6176 interface allows the host OS to match the various "optional" 
6177 interface/behavior strings for the _OSI predefined control method as 
6178 appropriate (with assistance from Bjorn Helgaas.) See oswinxf or osunixxf 
6179 for an example implementation.
6180
6181 Restructured and corrected various problems in the exception handling code 
6182 paths within DsCallControlMethod and DsTerminateControlMethod in dsmethod 
6183 (with assistance from Takayoshi Kochi.)
6184
6185 Modified the Linux source converter to ignore quoted string literals while 
6186 converting identifiers from mixed to lower case. This will correct 
6187 problems 
6188 with the disassembler and other areas where such strings must not be 
6189 modified.
6190
6191 The ACPI_FUNCTION_* macros no longer require quotes around the function 
6192 name. This allows the Linux source converter to convert the names, now 
6193 that 
6194 the converter ignores quoted strings.
6195
6196 Example Code and Data Size: These are the sizes for the OS-independent 
6197 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6198 debug version of the code includes the debug output trace mechanism and 
6199 has 
6200 a much larger code and data size.
6201
6202   Previous Release:
6203
6204     Non-Debug Version:  81.1K Code, 17.7K Data,  98.8K Total
6205     Debug Version:     158.9K Code, 64.9K Data, 223.8K Total
6206   Current Release:
6207     Non-Debug Version:  79.7K Code, 17.7K Data,  97.4K Total
6208     Debug Version:     160.1K Code, 65.2K Data, 225.3K Total
6209
6210
6211 2) iASL Compiler/Disassembler and Tools:
6212
6213 Implemented 3 new warnings for iASL, and implemented multiple warning 
6214 levels 
6215 (w2 flag).
6216
6217 1) Ignored timeouts: If the TimeoutValue parameter to Wait or Acquire is 
6218 not 
6219 WAIT_FOREVER (0xFFFF) and the code does not examine the return value to 
6220 check for the possible timeout, a warning is issued.
6221
6222 2) Useless operators: If an ASL operator does not specify an optional 
6223 target 
6224 operand and it also does not use the function return value from the 
6225 operator, a warning is issued since the operator effectively does nothing.
6226
6227 3) Unreferenced objects: If a namespace object is created, but never 
6228 referenced, a warning is issued. This is a warning level 2 since there are 
6229 cases where this is ok, such as when a secondary table is loaded that uses 
6230 the unreferenced objects. Even so, care is taken to only flag objects that 
6231 don't look like they will ever be used. For example, the reserved methods 
6232 (starting with an underscore) are usually not referenced because it is 
6233 expected that the OS will invoke them.
6234
6235 ----------------------------------------
6236 31 March 2006. Summary of changes for version 20060331:
6237
6238 1) ACPI CA Core Subsystem:
6239
6240 Implemented header file support for the following additional ACPI tables: 
6241 ASF!, BOOT, CPEP, DBGP, MCFG, SPCR, SPMI, TCPA, and WDRT. With this 
6242 support, 
6243 all current and known ACPI tables are now defined in the ACPICA headers 
6244 and 
6245 are available for use by device drivers and other software.
6246
6247 Implemented support to allow tables that contain ACPI names with invalid 
6248 characters to be loaded. Previously, this would cause the table load to 
6249 fail, but since there are several known cases of such tables on existing 
6250 machines, this change was made to enable ACPI support for them. Also, this 
6251 matches the behavior of the Microsoft ACPI implementation.
6252
6253 Fixed a couple regressions introduced during the memory optimization in 
6254 the 
6255 20060317 release. The namespace node definition required additional 
6256 reorganization and an internal datatype that had been changed to 8-bit was 
6257 restored to 32-bit. (Valery Podrezov)
6258
6259 Fixed a problem where a null pointer passed to AcpiUtDeleteGenericState 
6260 could be passed through to AcpiOsReleaseObject which is unexpected. Such 
6261 null pointers are now trapped and ignored, matching the behavior of the 
6262 previous implementation before the deployment of AcpiOsReleaseObject.
6263 (Valery Podrezov, Fiodor Suietov)
6264
6265 Fixed a memory mapping leak during the deletion of a SystemMemory 
6266 operation 
6267 region where a cached memory mapping was not deleted. This became a 
6268 noticeable problem for operation regions that are defined within 
6269 frequently 
6270 used control methods. (Dana Meyers)
6271
6272 Reorganized the ACPI table header files into two main files: one for the 
6273 ACPI tables consumed by the ACPICA core, and another for the miscellaneous 
6274 ACPI tables that are consumed by the drivers and other software. The 
6275 various 
6276 FADT definitions were merged into one common section and three different 
6277 tables (ACPI 1.0, 1.0+, and 2.0)
6278
6279 Example Code and Data Size: These are the sizes for the OS-independent 
6280 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. The 
6281 debug version of the code includes the debug output trace mechanism and 
6282 has 
6283 a much larger code and data size.
6284
6285   Previous Release:
6286     Non-Debug Version:  80.9K Code, 17.7K Data,  98.6K Total
6287     Debug Version:     158.7K Code, 64.8K Data, 223.5K Total
6288   Current Release:
6289     Non-Debug Version:  81.1K Code, 17.7K Data,  98.8K Total
6290     Debug Version:     158.9K Code, 64.9K Data, 223.8K Total
6291
6292
6293 2) iASL Compiler/Disassembler and Tools:
6294
6295 Disassembler: Implemented support to decode and format all non-AML ACPI 
6296 tables (tables other than DSDTs and SSDTs.) This includes the new tables 
6297 added to the ACPICA headers, therefore all current and known ACPI tables 
6298 are 
6299 supported.
6300
6301 Disassembler: The change to allow ACPI names with invalid characters also 
6302 enables the disassembly of such tables. Invalid characters within names 
6303 are 
6304 changed to '*' to make the name printable; the iASL compiler will still 
6305 generate an error for such names, however, since this is an invalid ACPI 
6306 character.
6307
6308 Implemented an option for AcpiXtract (-a) to extract all tables found in 
6309 the 
6310 input file. The default invocation extracts only the DSDTs and SSDTs.
6311
6312 Fixed a couple of gcc generation issues for iASL and AcpiExec and added a 
6313 makefile for the AcpiXtract utility.
6314
6315 ----------------------------------------
6316 17 March 2006. Summary of changes for version 20060317:
6317
6318 1) ACPI CA Core Subsystem:
6319
6320 Implemented the use of a cache object for all internal namespace nodes. 
6321 Since there are about 1000 static nodes in a typical system, this will 
6322 decrease memory use for cache implementations that minimize per-allocation 
6323 overhead (such as a slab allocator.)
6324
6325 Removed the reference count mechanism for internal namespace nodes, since 
6326 it 
6327 was deemed unnecessary. This reduces the size of each namespace node by 
6328 about 5%-10% on all platforms. Nodes are now 20 bytes for the 32-bit case, 
6329 and 32 bytes for the 64-bit case.
6330
6331 Optimized several internal data structures to reduce object size on 64-bit 
6332 platforms by packing data within the 64-bit alignment. This includes the 
6333 frequently used ACPI_OPERAND_OBJECT, of which there can be ~1000 static 
6334 instances corresponding to the namespace objects.
6335
6336 Added two new strings for the predefined _OSI method: "Windows 2001.1 SP1" 
6337 and "Windows 2006".
6338
6339 Split the allocation tracking mechanism out to a separate file, from 
6340 utalloc.c to uttrack.c. This mechanism appears to be only useful for 
6341 application-level code. Kernels may wish to not include uttrack.c in 
6342 distributions.
6343
6344 Removed all remnants of the obsolete ACPI_REPORT_* macros and the 
6345 associated 
6346 code. (These macros have been replaced by the ACPI_ERROR and ACPI_WARNING 
6347 macros.)
6348
6349 Code and Data Size: These are the sizes for the acpica.lib produced by the 
6350 Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any 
6351 ACPI 
6352 driver or OSPM code. The debug version of the code includes the debug 
6353 output 
6354 trace mechanism and has a much larger code and data size. Note that these 
6355 values will vary depending on the efficiency of the compiler and the 
6356 compiler options used during generation.
6357
6358   Previous Release:
6359     Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
6360     Debug Version:     161.6K Code, 65.7K Data, 227.3K Total
6361   Current Release:
6362     Non-Debug Version:  80.9K Code, 17.7K Data,  98.6K Total
6363     Debug Version:     158.7K Code, 64.8K Data, 223.5K Total
6364
6365
6366 2) iASL Compiler/Disassembler and Tools:
6367
6368 Implemented an ANSI C version of the acpixtract utility. This version will 
6369 automatically extract the DSDT and all SSDTs from the input acpidump text 
6370 file and dump the binary output to separate files. It can also display a 
6371 summary of the input file including the headers for each table found and 
6372 will extract any single ACPI table, with any signature. (See 
6373 source/tools/acpixtract)
6374
6375 ----------------------------------------
6376 10 March 2006. Summary of changes for version 20060310:
6377
6378 1) ACPI CA Core Subsystem:
6379
6380 Tagged all external interfaces to the subsystem with the new 
6381 ACPI_EXPORT_SYMBOL macro. This macro can be defined as necessary to assist 
6382 kernel integration. For Linux, the macro resolves to the EXPORT_SYMBOL 
6383 macro. The default definition is NULL.
6384
6385 Added the ACPI_THREAD_ID type for the return value from AcpiOsGetThreadId. 
6386 This allows the host to define this as necessary to simplify kernel 
6387 integration. The default definition is ACPI_NATIVE_UINT.
6388
6389 Fixed two interpreter problems related to error processing, the deletion 
6390 of 
6391 objects, and placing invalid pointers onto the internal operator result 
6392 stack. BZ 6028, 6151 (Valery Podrezov)
6393
6394 Increased the reference count threshold where a warning is emitted for 
6395 large 
6396 reference counts in order to eliminate unnecessary warnings on systems 
6397 with 
6398 large namespaces (especially 64-bit.) Increased the value from 0x400 to 
6399 0x800.
6400
6401 Due to universal disagreement as to the meaning of the 'c' in the calloc() 
6402 function, the ACPI_MEM_CALLOCATE macro has been renamed to 
6403 ACPI_ALLOCATE_ZEROED so that the purpose of the interface is 'clear'. 
6404 ACPI_MEM_ALLOCATE and ACPI_MEM_FREE are renamed to ACPI_ALLOCATE and 
6405 ACPI_FREE.
6406
6407 Code and Data Size: These are the sizes for the acpica.lib produced by the 
6408 Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any 
6409 ACPI 
6410 driver or OSPM code. The debug version of the code includes the debug 
6411 output 
6412 trace mechanism and has a much larger code and data size. Note that these 
6413 values will vary depending on the efficiency of the compiler and the 
6414 compiler options used during generation.
6415
6416   Previous Release:
6417     Non-Debug Version:  81.0K Code, 17.8K Data,  98.8K Total
6418     Debug Version:     161.4K Code, 65.7K Data, 227.1K Total
6419   Current Release:
6420     Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
6421     Debug Version:     161.6K Code, 65.7K Data, 227.3K Total
6422
6423
6424 2) iASL Compiler/Disassembler:
6425
6426 Disassembler: implemented support for symbolic resource descriptor 
6427 references. If a CreateXxxxField operator references a fixed offset within 
6428
6429 resource descriptor, a name is assigned to the descriptor and the offset 
6430 is 
6431 translated to the appropriate resource tag and pathname. The addition of 
6432 this support brings the disassembled code very close to the original ASL 
6433 source code and helps eliminate run-time errors when the disassembled code 
6434 is modified (and recompiled) in such a way as to invalidate the original 
6435 fixed offsets.
6436
6437 Implemented support for a Descriptor Name as the last parameter to the ASL 
6438 Register() macro. This parameter was inadvertently left out of the ACPI 
6439 specification, and will be added for ACPI 3.0b.
6440
6441 Fixed a problem where the use of the "_OSI" string (versus the full path 
6442 "\_OSI") caused an internal compiler error. ("No back ptr to op")
6443
6444 Fixed a problem with the error message that occurs when an invalid string 
6445 is 
6446 used for a _HID object (such as one with an embedded asterisk: 
6447 "*PNP010A".) 
6448 The correct message is now displayed.
6449
6450 ----------------------------------------
6451 17 February 2006. Summary of changes for version 20060217:
6452
6453 1) ACPI CA Core Subsystem:
6454
6455 Implemented a change to the IndexField support to match the behavior of 
6456 the 
6457 Microsoft AML interpreter. The value written to the Index register is now 
6458
6459 byte offset, no longer an index based upon the width of the Data register. 
6460 This should fix IndexField problems seen on some machines where the Data 
6461 register is not exactly one byte wide. The ACPI specification will be 
6462 clarified on this point.
6463
6464 Fixed a problem where several resource descriptor types could overrun the 
6465 internal descriptor buffer due to size miscalculation: VendorShort, 
6466 VendorLong, and Interrupt. This was noticed on IA64 machines, but could 
6467 affect all platforms.
6468
6469 Fixed a problem where individual resource descriptors were misaligned 
6470 within 
6471 the internal buffer, causing alignment faults on IA64 platforms.
6472
6473 Code and Data Size: These are the sizes for the acpica.lib produced by the 
6474 Microsoft Visual C++ 6.0 32-bit compiler. The values do not include any 
6475 ACPI 
6476 driver or OSPM code. The debug version of the code includes the debug 
6477 output 
6478 trace mechanism and has a much larger code and data size. Note that these 
6479 values will vary depending on the efficiency of the compiler and the 
6480 compiler options used during generation.
6481
6482   Previous Release:
6483     Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
6484     Debug Version:     161.3K Code, 65.6K Data, 226.9K Total
6485   Current Release:
6486     Non-Debug Version:  81.0K Code, 17.8K Data,  98.8K Total
6487     Debug Version:     161.4K Code, 65.7K Data, 227.1K Total
6488
6489
6490 2) iASL Compiler/Disassembler:
6491
6492 Implemented support for new reserved names: _WDG and _WED are Microsoft 
6493 extensions for Windows Instrumentation Management, _TDL is a new ACPI-
6494 defined method (Throttling Depth Limit.)
6495
6496 Fixed a problem where a zero-length VendorShort or VendorLong resource 
6497 descriptor was incorrectly emitted as a descriptor of length one.
6498
6499 ----------------------------------------
6500 10 February 2006. Summary of changes for version 20060210:
6501
6502 1) ACPI CA Core Subsystem:
6503
6504 Removed a couple of extraneous ACPI_ERROR messages that appeared during 
6505 normal execution. These became apparent after the conversion from 
6506 ACPI_DEBUG_PRINT.
6507
6508 Fixed a problem where the CreateField operator could hang if the BitIndex 
6509 or 
6510 NumBits parameter referred to a named object. (Valery Podrezov, BZ 5359)
6511
6512 Fixed a problem where a DeRefOf operation on a buffer object incorrectly 
6513 failed with an exception. This also fixes a couple of related RefOf and 
6514 DeRefOf issues. (Valery Podrezov, BZ 5360/5392/5387)
6515
6516 Fixed a problem where the AE_BUFFER_LIMIT exception was returned instead 
6517 of 
6518 AE_STRING_LIMIT on an out-of-bounds Index() operation. (Valery Podrezov, 
6519 BZ 
6520 5480)
6521
6522 Implemented a memory cleanup at the end of the execution of each iteration 
6523 of an AML While() loop, preventing the accumulation of outstanding 
6524 objects. 
6525 (Valery Podrezov, BZ 5427)
6526
6527 Eliminated a chunk of duplicate code in the object resolution code. 
6528 (Valery 
6529 Podrezov, BZ 5336)
6530
6531 Fixed several warnings during the 64-bit code generation.
6532
6533 The AcpiSrc source code conversion tool now inserts one line of whitespace 
6534 after an if() statement that is followed immediately by a comment, 
6535 improving 
6536 readability of the Linux code.
6537
6538 Code and Data Size: The current and previous library sizes for the core 
6539 subsystem are shown below. These are the code and data sizes for the 
6540 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. These 
6541 values do not include any ACPI driver or OSPM code. The debug version of 
6542 the 
6543 code includes the debug output trace mechanism and has a much larger code 
6544 and data size. Note that these values will vary depending on the 
6545 efficiency 
6546 of the compiler and the compiler options used during generation.
6547
6548   Previous Release:
6549     Non-Debug Version:  81.0K Code, 17.9K Data,  98.9K Total
6550     Debug Version:     161.3K Code, 65.7K Data, 227.0K Total
6551   Current Release:
6552     Non-Debug Version:  81.1K Code, 17.8K Data,  98.9K Total
6553     Debug Version:     161.3K Code, 65.6K Data, 226.9K Total
6554
6555
6556 2) iASL Compiler/Disassembler:
6557
6558 Fixed a problem with the disassembly of a BankField operator with a 
6559 complex 
6560 expression for the BankValue parameter.
6561
6562 ----------------------------------------
6563 27 January 2006. Summary of changes for version 20060127:
6564
6565 1) ACPI CA Core Subsystem:
6566
6567 Implemented support in the Resource Manager to allow unresolved namestring 
6568 references within resource package objects for the _PRT method. This 
6569 support 
6570 is in addition to the previously implemented unresolved reference support 
6571 within the AML parser. If the interpreter slack mode is enabled, these 
6572 unresolved references will be passed through to the caller as a NULL 
6573 package 
6574 entry.
6575
6576 Implemented and deployed new macros and functions for error and warning 
6577 messages across the subsystem. These macros are simpler and generate less 
6578 code than their predecessors. The new macros ACPI_ERROR, ACPI_EXCEPTION, 
6579 ACPI_WARNING, and ACPI_INFO replace the ACPI_REPORT_* macros. The older 
6580 macros remain defined to allow ACPI drivers time to migrate to the new 
6581 macros.
6582
6583 Implemented the ACPI_CPU_FLAGS type to simplify host OS integration of the 
6584 Acquire/Release Lock OSL interfaces.
6585
6586 Fixed a problem where Alias ASL operators are sometimes not correctly 
6587 resolved, in both the interpreter and the iASL compiler.
6588
6589 Fixed several problems with the implementation of the 
6590 ConcatenateResTemplate 
6591 ASL operator. As per the ACPI specification, zero length buffers are now 
6592 treated as a single EndTag. One-length buffers always cause a fatal 
6593 exception. Non-zero length buffers that do not end with a full 2-byte 
6594 EndTag 
6595 cause a fatal exception.
6596
6597 Fixed a possible structure overwrite in the AcpiGetObjectInfo external 
6598 interface. (With assistance from Thomas Renninger)
6599
6600 Code and Data Size: The current and previous library sizes for the core 
6601 subsystem are shown below. These are the code and data sizes for the 
6602 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. These 
6603 values do not include any ACPI driver or OSPM code. The debug version of 
6604 the 
6605 code includes the debug output trace mechanism and has a much larger code 
6606 and data size. Note that these values will vary depending on the 
6607 efficiency 
6608 of the compiler and the compiler options used during generation.
6609
6610   Previous Release:
6611     Non-Debug Version:  83.1K Code, 18.4K Data, 101.5K Total
6612     Debug Version:     163.2K Code, 66.2K Data, 229.4K Total
6613   Current Release:
6614     Non-Debug Version:  81.0K Code, 17.9K Data,  98.9K Total
6615     Debug Version:     161.3K Code, 65.7K Data, 227.0K Total
6616
6617
6618 2) iASL Compiler/Disassembler:
6619
6620 Fixed an internal error that was generated for any forward references to 
6621 ASL 
6622 Alias objects.
6623
6624 ----------------------------------------
6625 13 January 2006. Summary of changes for version 20060113:
6626
6627 1) ACPI CA Core Subsystem:
6628
6629 Added 2006 copyright to all module headers and signons. This affects 
6630 virtually every file in the ACPICA core subsystem, iASL compiler, and the 
6631 utilities.
6632  
6633 Enhanced the ACPICA error reporting in order to simplify user migration to 
6634 the non-debug version of ACPICA. Replaced all instances of the 
6635 ACPI_DEBUG_PRINT macro invoked at the ACPI_DB_ERROR and ACPI_DB_WARN debug 
6636 levels with the ACPI_REPORT_ERROR and ACPI_REPORT_WARNING macros, 
6637 respectively. This preserves all error and warning messages in the non-
6638 debug 
6639 version of the ACPICA code (this has been referred to as the "debug lite" 
6640 option.) Over 200 cases were converted to create a total of over 380 
6641 error/warning messages across the ACPICA code. This increases the code and 
6642 data size of the default non-debug version of the code somewhat (about 
6643 13K), 
6644 but all error/warning reporting may be disabled if desired (and code 
6645 eliminated) by specifying the ACPI_NO_ERROR_MESSAGES compile-time 
6646 configuration option. The size of the debug version of ACPICA remains 
6647 about 
6648 the same.
6649
6650 Fixed a memory leak within the AML Debugger "Set" command. One object was 
6651 not properly deleted for every successful invocation of the command.
6652
6653 Code and Data Size: The current and previous library sizes for the core 
6654 subsystem are shown below. These are the code and data sizes for the 
6655 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. These 
6656 values do not include any ACPI driver or OSPM code. The debug version of 
6657 the 
6658 code includes the debug output trace mechanism and has a much larger code 
6659 and data size. Note that these values will vary depending on the 
6660 efficiency 
6661 of the compiler and the compiler options used during generation.
6662
6663   Previous Release:
6664     Non-Debug Version:  76.6K Code, 12.3K Data,  88.9K Total
6665     Debug Version:     163.7K Code, 67.5K Data, 231.2K Total
6666   Current Release:
6667     Non-Debug Version:  83.1K Code, 18.4K Data, 101.5K Total
6668     Debug Version:     163.2K Code, 66.2K Data, 229.4K Total
6669
6670
6671 2) iASL Compiler/Disassembler:
6672
6673 The compiler now officially supports the ACPI 3.0a specification that was 
6674 released on December 30, 2005. (Specification is available at 
6675 www.acpi.info)
6676
6677 ----------------------------------------
6678 16 December 2005. Summary of changes for version 20051216:
6679
6680 1) ACPI CA Core Subsystem:
6681
6682 Implemented optional support to allow unresolved names within ASL Package 
6683 objects. A null object is inserted in the package when a named reference 
6684 cannot be located in the current namespace. Enabled via the interpreter 
6685 slack flag, this should eliminate AE_NOT_FOUND exceptions seen on machines 
6686 that contain such code.
6687
6688 Implemented an optimization to the initialization sequence that can 
6689 improve 
6690 boot time. During ACPI device initialization, the _STA method is now run 
6691 if 
6692 and only if the _INI method exists. The _STA method is used to determine 
6693 if 
6694 the device is present; An _INI can only be run if _STA returns present, 
6695 but 
6696 it is a waste of time to run the _STA method if the _INI does not exist. 
6697 (Prototype and assistance from Dong Wei)
6698
6699 Implemented use of the C99 uintptr_t for the pointer casting macros if it 
6700 is 
6701 available in the current compiler. Otherwise, the default (void *) cast is 
6702 used as before.
6703
6704 Fixed some possible memory leaks found within the execution path of the 
6705 Break, Continue, If, and CreateField operators. (Valery Podrezov)
6706
6707 Fixed a problem introduced in the 20051202 release where an exception is 
6708 generated during method execution if a control method attempts to declare 
6709 another method.
6710
6711 Moved resource descriptor string constants that are used by both the AML 
6712 disassembler and AML debugger to the common utilities directory so that 
6713 these components are independent.
6714
6715 Implemented support in the AcpiExec utility (-e switch) to globally ignore 
6716 exceptions during control method execution (method is not aborted.)
6717
6718 Added the rsinfo.c source file to the AcpiExec makefile for Linux/Unix 
6719 generation.
6720
6721 Code and Data Size: The current and previous library sizes for the core 
6722 subsystem are shown below. These are the code and data sizes for the 
6723 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. These 
6724 values do not include any ACPI driver or OSPM code. The debug version of 
6725 the 
6726 code includes the debug output trace mechanism and has a much larger code 
6727 and data size. Note that these values will vary depending on the 
6728 efficiency 
6729 of the compiler and the compiler options used during generation.
6730
6731   Previous Release:
6732     Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
6733     Debug Version:     163.2K Code, 67.4K Data, 230.6K Total
6734   Current Release:
6735     Non-Debug Version:  76.6K Code, 12.3K Data,  88.9K Total
6736     Debug Version:     163.7K Code, 67.5K Data, 231.2K Total
6737
6738
6739 2) iASL Compiler/Disassembler:
6740
6741 Fixed a problem where a CPU stack overflow fault could occur if a 
6742 recursive 
6743 method call was made from within a Return statement.
6744
6745 ----------------------------------------
6746 02 December 2005. Summary of changes for version 20051202:
6747
6748 1) ACPI CA Core Subsystem:
6749
6750 Modified the parsing of control methods to no longer create namespace 
6751 objects during the first pass of the parse. Objects are now created only 
6752 during the execute phase, at the moment the namespace creation operator is 
6753 encountered in the AML (Name, OperationRegion, CreateByteField, etc.) This 
6754 should eliminate ALREADY_EXISTS exceptions seen on some machines where 
6755 reentrant control methods are protected by an AML mutex. The mutex will 
6756 now 
6757 correctly block multiple threads from attempting to create the same object 
6758 more than once.
6759
6760 Increased the number of available Owner Ids for namespace object tracking 
6761 from 32 to 255. This should eliminate the OWNER_ID_LIMIT exceptions seen 
6762 on 
6763 some machines with a large number of ACPI tables (either static or 
6764 dynamic).
6765
6766 Fixed a problem with the AcpiExec utility where a fault could occur when 
6767 the 
6768 -b switch (batch mode) is used.
6769
6770 Enhanced the namespace dump routine to output the owner ID for each 
6771 namespace object.
6772
6773 Code and Data Size: The current and previous library sizes for the core 
6774 subsystem are shown below. These are the code and data sizes for the 
6775 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. These 
6776 values do not include any ACPI driver or OSPM code. The debug version of 
6777 the 
6778 code includes the debug output trace mechanism and has a much larger code 
6779 and data size. Note that these values will vary depending on the 
6780 efficiency 
6781 of the compiler and the compiler options used during generation.
6782
6783   Previous Release:
6784     Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
6785     Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
6786   Current Release:
6787     Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
6788     Debug Version:     163.2K Code, 67.4K Data, 230.6K Total
6789
6790
6791 2) iASL Compiler/Disassembler:
6792
6793 Fixed a parse error during compilation of certain Switch/Case constructs. 
6794 To 
6795 simplify the parse, the grammar now allows for multiple Default statements 
6796 and this error is now detected and flagged during the analysis phase.
6797
6798 Disassembler: The disassembly now includes the contents of the original 
6799 table header within a comment at the start of the file. This includes the 
6800 name and version of the original ASL compiler.
6801
6802 ----------------------------------------
6803 17 November 2005. Summary of changes for version 20051117:
6804
6805 1) ACPI CA Core Subsystem:
6806
6807 Fixed a problem in the AML parser where the method thread count could be 
6808 decremented below zero if any errors occurred during the method parse 
6809 phase. 
6810 This should eliminate AE_AML_METHOD_LIMIT exceptions seen on some 
6811 machines. 
6812 This also fixed a related regression with the mechanism that detects and 
6813 corrects methods that cannot properly handle reentrancy (related to the 
6814 deployment of the new OwnerId mechanism.)
6815
6816 Eliminated the pre-parsing of control methods (to detect errors) during 
6817 table load. Related to the problem above, this was causing unwind issues 
6818 if 
6819 any errors occurred during the parse, and it seemed to be overkill. A 
6820 table 
6821 load should not be aborted if there are problems with any single control 
6822 method, thus rendering this feature rather pointless.
6823
6824 Fixed a problem with the new table-driven resource manager where an 
6825 internal 
6826 buffer overflow could occur for small resource templates.
6827
6828 Implemented a new external interface, AcpiGetVendorResource. This 
6829 interface 
6830 will find and return a vendor-defined resource descriptor within a _CRS or 
6831 _PRS method via an ACPI 3.0 UUID match. With assistance from Bjorn 
6832 Helgaas.
6833
6834 Removed the length limit (200) on string objects as per the upcoming ACPI 
6835 3.0A specification. This affects the following areas of the interpreter: 
6836 1) 
6837 any implicit conversion of a Buffer to a String, 2) a String object result 
6838 of the ASL Concatentate operator, 3) the String object result of the ASL 
6839 ToString operator.
6840
6841 Fixed a problem in the Windows OS interface layer (OSL) where a 
6842 WAIT_FOREVER 
6843 on a semaphore object would incorrectly timeout. This allows the 
6844 multithreading features of the AcpiExec utility to work properly under 
6845 Windows.
6846
6847 Updated the Linux makefiles for the iASL compiler and AcpiExec to include 
6848 the recently added file named "utresrc.c".
6849
6850 Code and Data Size: The current and previous library sizes for the core 
6851 subsystem are shown below. These are the code and data sizes for the 
6852 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. These 
6853 values do not include any ACPI driver or OSPM code. The debug version of 
6854 the 
6855 code includes the debug output trace mechanism and has a much larger code 
6856 and data size. Note that these values will vary depending on the 
6857 efficiency 
6858 of the compiler and the compiler options used during generation.
6859
6860   Previous Release:
6861     Non-Debug Version:  76.2K Code, 12.3K Data,  88.5K Total
6862     Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
6863   Current Release:
6864     Non-Debug Version:  76.3K Code, 12.3K Data,  88.6K Total
6865     Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
6866
6867
6868 2) iASL Compiler/Disassembler:
6869
6870 Removed the limit (200) on string objects as per the upcoming ACPI 3.0A 
6871 specification. For the iASL compiler, this means that string literals 
6872 within 
6873 the source ASL can be of any length. 
6874
6875 Enhanced the listing output to dump the AML code for resource descriptors 
6876 immediately after the ASL code for each descriptor, instead of in a block 
6877 at 
6878 the end of the entire resource template.
6879
6880 Enhanced the compiler debug output to dump the entire original parse tree 
6881 constructed during the parse phase, before any transforms are applied to 
6882 the 
6883 tree. The transformed tree is dumped also.
6884
6885 ----------------------------------------
6886 02 November 2005. Summary of changes for version 20051102:
6887
6888 1) ACPI CA Core Subsystem:
6889
6890 Modified the subsystem initialization sequence to improve GPE support. The 
6891 GPE initialization has been split into two parts in order to defer 
6892 execution 
6893 of the _PRW methods (Power Resources for Wake) until after the hardware is 
6894 fully initialized and the SCI handler is installed. This allows the _PRW 
6895 methods to access fields protected by the Global Lock. This will fix 
6896 systems 
6897 where a NO_GLOBAL_LOCK exception has been seen during initialization.
6898
6899 Converted the ACPI internal object disassemble and display code within the 
6900 AML debugger to fully table-driven operation, reducing code size and 
6901 increasing maintainability.
6902
6903 Fixed a regression with the ConcatenateResTemplate() ASL operator 
6904 introduced 
6905 in the 20051021 release.
6906
6907 Implemented support for "local" internal ACPI object types within the 
6908 debugger "Object" command and the AcpiWalkNamespace external interfaces. 
6909 These local types include RegionFields, BankFields, IndexFields, Alias, 
6910 and 
6911 reference objects.
6912
6913 Moved common AML resource handling code into a new file, "utresrc.c". This 
6914 code is shared by both the Resource Manager and the AML Debugger.
6915
6916 Code and Data Size: The current and previous library sizes for the core 
6917 subsystem are shown below. These are the code and data sizes for the 
6918 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. These 
6919 values do not include any ACPI driver or OSPM code. The debug version of 
6920 the 
6921 code includes the debug output trace mechanism and has a much larger code 
6922 and data size. Note that these values will vary depending on the 
6923 efficiency 
6924 of the compiler and the compiler options used during generation.
6925
6926   Previous Release:
6927     Non-Debug Version:  76.1K Code, 12.2K Data,  88.3K Total
6928     Debug Version:     163.5K Code, 67.0K Data, 230.5K Total
6929   Current Release:
6930     Non-Debug Version:  76.2K Code, 12.3K Data,  88.5K Total
6931     Debug Version:     163.0K Code, 67.4K Data, 230.4K Total
6932
6933
6934 2) iASL Compiler/Disassembler:
6935
6936 Fixed a problem with very large initializer lists (more than 4000 
6937 elements) 
6938 for both Buffer and Package objects where the parse stack could overflow.
6939
6940 Enhanced the pre-compile source code scan for non-ASCII characters to 
6941 ignore 
6942 characters within comment fields. The scan is now always performed and is 
6943 no 
6944 longer optional, detecting invalid characters within a source file 
6945 immediately rather than during the parse phase or later.
6946
6947 Enhanced the ASL grammar definition to force early reductions on all list-
6948 style grammar elements so that the overall parse stack usage is greatly 
6949 reduced. This should improve performance and reduce the possibility of 
6950 parse 
6951 stack overflow.
6952
6953 Eliminated all reduce/reduce conflicts in the iASL parser generation. 
6954 Also, 
6955 with the addition of a %expected statement, the compiler generates from 
6956 source with no warnings.
6957
6958 Fixed a possible segment fault in the disassembler if the input filename 
6959 does not contain a "dot" extension (Thomas Renninger).
6960
6961 ----------------------------------------
6962 21 October 2005. Summary of changes for version 20051021:
6963
6964 1) ACPI CA Core Subsystem:
6965
6966 Implemented support for the EM64T and other x86-64 processors. This 
6967 essentially entails recognizing that these processors support non-aligned 
6968 memory transfers. Previously, all 64-bit processors were assumed to lack 
6969 hardware support for non-aligned transfers.
6970
6971 Completed conversion of the Resource Manager to nearly full table-driven 
6972 operation. Specifically, the resource conversion code (convert AML to 
6973 internal format and the reverse) and the debug code to dump internal 
6974 resource descriptors are fully table-driven, reducing code and data size 
6975 and 
6976 improving maintainability.
6977
6978 The OSL interfaces for Acquire and Release Lock now use a 64-bit flag word 
6979 on 64-bit processors instead of a fixed 32-bit word. (With assistance from 
6980 Alexey Starikovskiy)
6981
6982 Implemented support within the resource conversion code for the Type-
6983 Specific byte within the various ACPI 3.0 *WordSpace macros.
6984
6985 Fixed some issues within the resource conversion code for the type-
6986 specific 
6987 flags for both Memory and I/O address resource descriptors. For Memory, 
6988 implemented support for the MTP and TTP flags. For I/O, split the TRS and 
6989 TTP flags into two separate fields.
6990
6991 Code and Data Size: The current and previous library sizes for the core 
6992 subsystem are shown below. These are the code and data sizes for the 
6993 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. These 
6994 values do not include any ACPI driver or OSPM code. The debug version of 
6995 the 
6996 code includes the debug output trace mechanism and has a much larger code 
6997 and data size. Note that these values will vary depending on the 
6998 efficiency 
6999 of the compiler and the compiler options used during generation.
7000
7001   Previous Release:
7002     Non-Debug Version:  77.1K Code, 12.1K Data,  89.2K Total
7003     Debug Version:     168.0K Code, 68.3K Data, 236.3K Total
7004   Current Release:
7005     Non-Debug Version:  76.1K Code, 12.2K Data,  88.3K Total
7006     Debug Version:     163.5K Code, 67.0K Data, 230.5K Total
7007
7008
7009
7010 2) iASL Compiler/Disassembler:
7011
7012 Relaxed a compiler restriction that disallowed a ResourceIndex byte if the 
7013 corresponding ResourceSource string was not also present in a resource 
7014 descriptor declaration. This restriction caused problems with existing 
7015 AML/ASL code that includes the Index byte without the string. When such 
7016 AML 
7017 was disassembled, it could not be compiled without modification. Further, 
7018 the modified code created a resource template with a different size than 
7019 the 
7020 original, breaking code that used fixed offsets into the resource template 
7021 buffer.
7022
7023 Removed a recent feature of the disassembler to ignore a lone 
7024 ResourceIndex 
7025 byte. This byte is now emitted if present so that the exact AML can be 
7026 reproduced when the disassembled code is recompiled.
7027
7028 Improved comments and text alignment for the resource descriptor code 
7029 emitted by the disassembler.
7030
7031 Implemented disassembler support for the ACPI 3.0 AccessSize field within 
7032
7033 Register() resource descriptor.
7034
7035 ----------------------------------------
7036 30 September 2005. Summary of changes for version 20050930:
7037
7038 1) ACPI CA Core Subsystem:
7039
7040 Completed a major overhaul of the Resource Manager code - specifically, 
7041 optimizations in the area of the AML/internal resource conversion code. 
7042 The 
7043 code has been optimized to simplify and eliminate duplicated code, CPU 
7044 stack 
7045 use has been decreased by optimizing function parameters and local 
7046 variables, and naming conventions across the manager have been 
7047 standardized 
7048 for clarity and ease of maintenance (this includes function, parameter, 
7049 variable, and struct/typedef names.) The update may force changes in some 
7050 driver code, depending on how resources are handled by the host OS.
7051
7052 All Resource Manager dispatch and information tables have been moved to a 
7053 single location for clarity and ease of maintenance. One new file was 
7054 created, named "rsinfo.c".
7055
7056 The ACPI return macros (return_ACPI_STATUS, etc.) have been modified to 
7057 guarantee that the argument is not evaluated twice, making them less prone 
7058 to macro side-effects. However, since there exists the possibility of 
7059 additional stack use if a particular compiler cannot optimize them (such 
7060 as 
7061 in the debug generation case), the original macros are optionally 
7062 available.  
7063 Note that some invocations of the return_VALUE macro may now cause size 
7064 mismatch warnings; the return_UINT8 and return_UINT32 macros are provided 
7065 to 
7066 eliminate these. (From Randy Dunlap)
7067
7068 Implemented a new mechanism to enable debug tracing for individual control 
7069 methods. A new external interface, AcpiDebugTrace, is provided to enable 
7070 this mechanism. The intent is to allow the host OS to easily enable and 
7071 disable tracing for problematic control methods. This interface can be 
7072 easily exposed to a user or debugger interface if desired. See the file 
7073 psxface.c for details.
7074
7075 AcpiUtCallocate will now return a valid pointer if a length of zero is 
7076 specified - a length of one is used and a warning is issued. This matches 
7077 the behavior of AcpiUtAllocate.
7078
7079 Code and Data Size: The current and previous library sizes for the core 
7080 subsystem are shown below. These are the code and data sizes for the 
7081 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. These 
7082 values do not include any ACPI driver or OSPM code. The debug version of 
7083 the 
7084 code includes the debug output trace mechanism and has a much larger code 
7085 and data size. Note that these values will vary depending on the 
7086 efficiency 
7087 of the compiler and the compiler options used during generation.
7088
7089   Previous Release:
7090     Non-Debug Version:  77.5K Code, 12.0K Data,  89.5K Total
7091     Debug Version:     168.1K Code, 68.4K Data, 236.5K Total
7092   Current Release:
7093     Non-Debug Version:  77.1K Code, 12.1K Data,  89.2K Total
7094     Debug Version:     168.0K Code, 68.3K Data, 236.3K Total
7095
7096
7097 2) iASL Compiler/Disassembler:
7098
7099 A remark is issued if the effective compile-time length of a package or 
7100 buffer is zero. Previously, this was a warning.
7101
7102 ----------------------------------------
7103 16 September 2005. Summary of changes for version 20050916:
7104
7105 1) ACPI CA Core Subsystem:
7106
7107 Fixed a problem within the Resource Manager where support for the Generic 
7108 Register descriptor was not fully implemented. This descriptor is now 
7109 fully 
7110 recognized, parsed, disassembled, and displayed.
7111
7112 Completely restructured the Resource Manager code to utilize table-driven 
7113 dispatch and lookup, eliminating many of the large switch() statements. 
7114 This 
7115 reduces overall subsystem code size and code complexity. Affects the 
7116 resource parsing and construction, disassembly, and debug dump output.
7117
7118 Cleaned up and restructured the debug dump output for all resource 
7119 descriptors. Improved readability of the output and reduced code size.
7120
7121 Fixed a problem where changes to internal data structures caused the 
7122 optional ACPI_MUTEX_DEBUG code to fail compilation if specified.
7123
7124 Code and Data Size: The current and previous library sizes for the core 
7125 subsystem are shown below. These are the code and data sizes for the 
7126 acpica.lib produced by the Microsoft Visual C++ 6.0 32-bit compiler. These 
7127 values do not include any ACPI driver or OSPM code. The debug version of 
7128 the 
7129 code includes the debug output trace mechanism and has a much larger code 
7130 and data size. Note that these values will vary depending on the 
7131 efficiency 
7132 of the compiler and the compiler options used during generation.
7133
7134   Previous Release:
7135     Non-Debug Version:  78.4K Code, 11.8K Data,  90.2K Total
7136     Debug Version:     169.6K Code, 69.9K Data, 239.5K Total
7137   Current Release:
7138     Non-Debug Version:  77.5K Code, 12.0K Data,  89.5K Total
7139     Debug Version:     168.1K Code, 68.4K Data, 236.5K Total
7140
7141
7142 2) iASL Compiler/Disassembler:
7143
7144 Updated the disassembler to automatically insert an EndDependentFn() macro 
7145 into the ASL stream if this macro is missing in the original AML code, 
7146 simplifying compilation of the resulting ASL module.
7147
7148 Fixed a problem in the disassembler where a disassembled ResourceSource 
7149 string (within a large resource descriptor) was not surrounded by quotes 
7150 and 
7151 not followed by a comma, causing errors when the resulting ASL module was 
7152 compiled. Also, escape sequences within a ResourceSource string are now 
7153 handled correctly (especially "\\")
7154
7155 ----------------------------------------
7156 02 September 2005. Summary of changes for version 20050902:
7157
7158 1) ACPI CA Core Subsystem:
7159
7160 Fixed a problem with the internal Owner ID allocation and deallocation 
7161 mechanisms for control method execution and recursive method invocation. 
7162 This should eliminate the OWNER_ID_LIMIT exceptions and "Invalid OwnerId" 
7163 messages seen on some systems. Recursive method invocation depth is 
7164 currently limited to 255. (Alexey Starikovskiy)
7165
7166 Completely eliminated all vestiges of support for the "module-level 
7167 executable code" until this support is fully implemented and debugged. 
7168 This 
7169 should eliminate the NO_RETURN_VALUE exceptions seen during table load on 
7170 some systems that invoke this support.
7171
7172 Fixed a problem within the resource manager code where the transaction 
7173 flags 
7174 for a 64-bit address descriptor were handled incorrectly in the type-
7175 specific flag byte.
7176
7177 Consolidated duplicate code within the address descriptor resource manager 
7178 code, reducing overall subsystem code size.
7179
7180 Fixed a fault when using the AML debugger "disassemble" command to 
7181 disassemble individual control methods.
7182
7183 Removed references to the "release_current" directory within the Unix 
7184 release package.
7185
7186 Code and Data Size: The current and previous core subsystem library sizes 
7187 are shown below. These are the code and data sizes for the acpica.lib 
7188 produced by the Microsoft Visual C++ 6.0 compiler. These values do not 
7189 include any ACPI driver or OSPM code. The debug version of the code 
7190 includes 
7191 the debug output trace mechanism and has a much larger code and data size. 
7192 Note that these values will vary depending on the efficiency of the 
7193 compiler 
7194 and the compiler options used during generation.
7195
7196   Previous Release:
7197     Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
7198     Debug Version:     170.0K Code, 69.9K Data, 239.9K Total
7199   Current Release:
7200     Non-Debug Version:  78.4K Code, 11.8K Data,  90.2K Total
7201     Debug Version:     169.6K Code, 69.9K Data, 239.5K Total
7202
7203
7204 2) iASL Compiler/Disassembler:
7205
7206 Implemented an error check for illegal duplicate values in the interrupt 
7207 and 
7208 dma lists for the following ASL macros: Dma(), Irq(), IrqNoFlags(), and 
7209 Interrupt().
7210
7211 Implemented error checking for the Irq() and IrqNoFlags() macros to detect 
7212 too many values in the interrupt list (16 max) and invalid values in the 
7213 list (range 0 - 15)
7214
7215 The maximum length string literal within an ASL file is now restricted to 
7216 200 characters as per the ACPI specification.
7217
7218 Fixed a fault when using the -ln option (generate namespace listing).
7219
7220 Implemented an error check to determine if a DescriptorName within a 
7221 resource descriptor has already been used within the current scope.
7222
7223 ----------------------------------------
7224 15 August 2005.  Summary of changes for version 20050815:
7225  
7226 1) ACPI CA Core Subsystem:
7227  
7228 Implemented a full bytewise compare to determine if a table load request 
7229 is 
7230 attempting to load a duplicate table. The compare is performed if the 
7231 table 
7232 signatures and table lengths match. This will allow different tables with 
7233 the same OEM Table ID and revision to be loaded - probably against the 
7234 ACPI 
7235 specification, but discovered in the field nonetheless.
7236  
7237 Added the changes.txt logfile to each of the zipped release packages.
7238  
7239 Code and Data Size: Current and previous core subsystem library sizes are 
7240 shown below. These are the code and data sizes for the acpica.lib produced 
7241 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7242 any ACPI driver or OSPM code. The debug version of the code includes the 
7243 debug output trace mechanism and has a much larger code and data size. 
7244 Note 
7245 that these values will vary depending on the efficiency of the compiler 
7246 and 
7247 the compiler options used during generation.
7248  
7249   Previous Release:
7250     Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
7251     Debug Version:     167.0K Code, 69.9K Data, 236.9K Total
7252   Current Release:
7253     Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
7254     Debug Version:     170.0K Code, 69.9K Data, 239.9K Total
7255  
7256  
7257 2) iASL Compiler/Disassembler:
7258  
7259 Fixed a problem where incorrect AML code could be generated for Package 
7260 objects if optimization is disabled (via the -oa switch).
7261  
7262 Fixed a problem with where incorrect AML code is generated for variable-
7263 length packages when the package length is not specified and the number of 
7264 initializer values is greater than 255.
7265  
7266
7267 ----------------------------------------
7268 29 July 2005.  Summary of changes for version 20050729:
7269
7270 1) ACPI CA Core Subsystem:
7271
7272 Implemented support to ignore an attempt to install/load a particular ACPI 
7273 table more than once. Apparently there exists BIOS code that repeatedly 
7274 attempts to load the same SSDT upon certain events. With assistance from 
7275 Venkatesh Pallipadi.
7276
7277 Restructured the main interface to the AML parser in order to correctly 
7278 handle all exceptional conditions. This will prevent leakage of the 
7279 OwnerId 
7280 resource and should eliminate the AE_OWNER_ID_LIMIT exceptions seen on 
7281 some 
7282 machines. With assistance from Alexey Starikovskiy.
7283
7284 Support for "module level code" has been disabled in this version due to a 
7285 number of issues that have appeared on various machines. The support can 
7286 be 
7287 enabled by defining ACPI_ENABLE_MODULE_LEVEL_CODE during subsystem 
7288 compilation. When the issues are fully resolved, the code will be enabled 
7289 by 
7290 default again.
7291
7292 Modified the internal functions for debug print support to define the 
7293 FunctionName parameter as a (const char *) for compatibility with compiler 
7294 built-in macros such as __FUNCTION__, etc.
7295
7296 Linted the entire ACPICA source tree for both 32-bit and 64-bit.
7297
7298 Implemented support to display an object count summary for the AML 
7299 Debugger 
7300 commands Object and Methods.
7301
7302 Code and Data Size: Current and previous core subsystem library sizes are 
7303 shown below. These are the code and data sizes for the acpica.lib produced 
7304 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7305 any ACPI driver or OSPM code. The debug version of the code includes the 
7306 debug output trace mechanism and has a much larger code and data size. 
7307 Note 
7308 that these values will vary depending on the efficiency of the compiler 
7309 and 
7310 the compiler options used during generation.
7311
7312   Previous Release:
7313     Non-Debug Version:  78.6K Code, 11.6K Data,  90.2K Total
7314     Debug Version:     170.0K Code, 69.7K Data, 239.7K Total
7315   Current Release:
7316     Non-Debug Version:  78.6K Code, 11.7K Data,  90.3K Total
7317     Debug Version:     167.0K Code, 69.9K Data, 236.9K Total
7318
7319
7320 2) iASL Compiler/Disassembler:
7321
7322 Fixed a regression that appeared in the 20050708 version of the compiler 
7323 where an error message was inadvertently emitted for invocations of the 
7324 _OSI 
7325 reserved control method.
7326
7327 ----------------------------------------
7328 08 July 2005.  Summary of changes for version 20050708:
7329
7330 1) ACPI CA Core Subsystem:
7331
7332 The use of the CPU stack in the debug version of the subsystem has been 
7333 considerably reduced. Previously, a debug structure was declared in every 
7334 function that used the debug macros. This structure has been removed in 
7335 favor of declaring the individual elements as parameters to the debug 
7336 functions. This reduces the cumulative stack use during nested execution 
7337 of 
7338 ACPI function calls at the cost of a small increase in the code size of 
7339 the 
7340 debug version of the subsystem. With assistance from Alexey Starikovskiy 
7341 and 
7342 Len Brown.
7343
7344 Added the ACPI_GET_FUNCTION_NAME macro to enable the compiler-dependent 
7345 headers to define a macro that will return the current function name at 
7346 runtime (such as __FUNCTION__ or _func_, etc.) The function name is used 
7347 by 
7348 the debug trace output. If ACPI_GET_FUNCTION_NAME is not defined in the 
7349 compiler-dependent header, the function name is saved on the CPU stack 
7350 (one 
7351 pointer per function.) This mechanism is used because apparently there 
7352 exists no standard ANSI-C defined macro that that returns the function 
7353 name.
7354
7355 Redesigned and reimplemented the "Owner ID" mechanism used to track 
7356 namespace objects created/deleted by ACPI tables and control method 
7357 execution. A bitmap is now used to allocate and free the IDs, thus solving 
7358 the wraparound problem present in the previous implementation. The size of 
7359 the namespace node descriptor was reduced by 2 bytes as a result (Alexey 
7360 Starikovskiy).
7361
7362 Removed the UINT32_BIT and UINT16_BIT types that were used for the 
7363 bitfield 
7364 flag definitions within the headers for the predefined ACPI tables. These 
7365 have been replaced by UINT8_BIT in order to increase the code portability 
7366 of 
7367 the subsystem. If the use of UINT8 remains a problem, we may be forced to 
7368 eliminate bitfields entirely because of a lack of portability.
7369
7370 Enhanced the performance of the AcpiUtUpdateObjectReference procedure. 
7371 This 
7372 is a frequently used function and this improvement increases the 
7373 performance 
7374 of the entire subsystem (Alexey Starikovskiy).
7375
7376 Fixed several possible memory leaks and the inverse - premature object 
7377 deletion (Alexey Starikovskiy).
7378
7379 Code and Data Size: Current and previous core subsystem library sizes are 
7380 shown below. These are the code and data sizes for the acpica.lib produced 
7381 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7382 any ACPI driver or OSPM code. The debug version of the code includes the 
7383 debug output trace mechanism and has a much larger code and data size. 
7384 Note 
7385 that these values will vary depending on the efficiency of the compiler 
7386 and 
7387 the compiler options used during generation.
7388
7389   Previous Release:
7390     Non-Debug Version:  78.6K Code, 11.5K Data,  90.1K Total
7391     Debug Version:     165.2K Code, 69.6K Data, 234.8K Total
7392   Current Release:
7393     Non-Debug Version:  78.6K Code, 11.6K Data,  90.2K Total
7394     Debug Version:     170.0K Code, 69.7K Data, 239.7K Total
7395
7396 ----------------------------------------
7397 24 June 2005.  Summary of changes for version 20050624:
7398
7399 1) ACPI CA Core Subsystem:
7400
7401 Modified the new OSL cache interfaces to use ACPI_CACHE_T as the type for 
7402 the host-defined cache object. This allows the OSL implementation to 
7403 define 
7404 and type this object in any manner desired, simplifying the OSL 
7405 implementation. For example, ACPI_CACHE_T is defined as kmem_cache_t for 
7406 Linux, and should be defined in the OS-specific header file for other 
7407 operating systems as required.
7408
7409 Changed the interface to AcpiOsAcquireObject to directly return the 
7410 requested object as the function return (instead of ACPI_STATUS.) This 
7411 change was made for performance reasons, since this is the purpose of the 
7412 interface in the first place. AcpiOsAcquireObject is now similar to the 
7413 AcpiOsAllocate interface.
7414
7415 Implemented a new AML debugger command named Businfo. This command 
7416 displays 
7417 information about all devices that have an associate _PRT object. The 
7418 _ADR, 
7419 _HID, _UID, and _CID are displayed for these devices.
7420
7421 Modified the initialization sequence in AcpiInitializeSubsystem to call 
7422 the 
7423 OSL interface AcpiOslInitialize first, before any local initialization. 
7424 This 
7425 change was required because the global initialization now calls OSL 
7426 interfaces.
7427
7428 Enhanced the Dump command to display the entire contents of Package 
7429 objects 
7430 (including all sub-objects and their values.) 
7431
7432 Restructured the code base to split some files because of size and/or 
7433 because the code logically belonged in a separate file. New files are 
7434 listed 
7435 below. All makefiles and project files included in the ACPI CA release 
7436 have 
7437 been updated.
7438     utilities/utcache.c           /* Local cache interfaces */
7439     utilities/utmutex.c           /* Local mutex support */
7440     utilities/utstate.c           /* State object support */
7441     interpreter/parser/psloop.c   /* Main AML parse loop */
7442
7443 Code and Data Size: Current and previous core subsystem library sizes are 
7444 shown below. These are the code and data sizes for the acpica.lib produced 
7445 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7446 any ACPI driver or OSPM code. The debug version of the code includes the 
7447 debug output trace mechanism and has a much larger code and data size. 
7448 Note 
7449 that these values will vary depending on the efficiency of the compiler 
7450 and 
7451 the compiler options used during generation.
7452
7453   Previous Release:
7454     Non-Debug Version:  78.3K Code, 11.6K Data,  89.9K Total
7455     Debug Version:     164.0K Code, 69.1K Data, 233.1K Total
7456   Current Release:
7457     Non-Debug Version:  78.6K Code, 11.5K Data,  90.1K Total
7458     Debug Version:     165.2K Code, 69.6K Data, 234.8K Total
7459
7460
7461 2) iASL Compiler/Disassembler:
7462
7463 Fixed a regression introduced in version 20050513 where the use of a 
7464 Package 
7465 object within a Case() statement caused a compile time exception. The 
7466 original behavior has been restored (a Match() operator is emitted.)
7467
7468 ----------------------------------------
7469 17 June 2005.  Summary of changes for version 20050617:
7470
7471 1) ACPI CA Core Subsystem:
7472
7473 Moved the object cache operations into the OS interface layer (OSL) to 
7474 allow 
7475 the host OS to handle these operations if desired (for example, the Linux 
7476 OSL will invoke the slab allocator). This support is optional; the compile 
7477 time define ACPI_USE_LOCAL_CACHE may be used to utilize the original cache 
7478 code in the ACPI CA core. The new OSL interfaces are shown below. See 
7479 utalloc.c for an example implementation, and acpiosxf.h for the exact 
7480 interface definitions. With assistance from Alexey Starikovskiy.
7481     AcpiOsCreateCache
7482     AcpiOsDeleteCache
7483     AcpiOsPurgeCache
7484     AcpiOsAcquireObject
7485     AcpiOsReleaseObject
7486
7487 Modified the interfaces to AcpiOsAcquireLock and AcpiOsReleaseLock to 
7488 return 
7489 and restore a flags parameter. This fits better with many OS lock models. 
7490 Note: the current execution state (interrupt handler or not) is no longer 
7491 passed to these interfaces. If necessary, the OSL must determine this 
7492 state 
7493 by itself, a simple and fast operation. With assistance from Alexey 
7494 Starikovskiy.
7495
7496 Fixed a problem in the ACPI table handling where a valid XSDT was assumed 
7497 present if the revision of the RSDP was 2 or greater. According to the 
7498 ACPI 
7499 specification, the XSDT is optional in all cases, and the table manager 
7500 therefore now checks for both an RSDP >=2 and a valid XSDT pointer. 
7501 Otherwise, the RSDT pointer is used. Some ACPI 2.0 compliant BIOSs contain 
7502 only the RSDT.
7503
7504 Fixed an interpreter problem with the Mid() operator in the case of an 
7505 input 
7506 string where the resulting output string is of zero length. It now 
7507 correctly 
7508 returns a valid, null terminated string object instead of a string object 
7509 with a null pointer.
7510
7511 Fixed a problem with the control method argument handling to allow a store 
7512 to an Arg object that already contains an object of type Device. The 
7513 Device 
7514 object is now correctly overwritten. Previously, an error was returned.
7515
7516
7517 Enhanced the debugger Find command to emit object values in addition to 
7518 the 
7519 found object pathnames. The output format is the same as the dump 
7520 namespace 
7521 command.
7522
7523 Enhanced the debugger Set command. It now has the ability to set the value 
7524 of any Named integer object in the namespace (Previously, only method 
7525 locals 
7526 and args could be set.)
7527
7528 Code and Data Size: Current and previous core subsystem library sizes are 
7529 shown below. These are the code and data sizes for the acpica.lib produced 
7530 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7531 any ACPI driver or OSPM code. The debug version of the code includes the 
7532 debug output trace mechanism and has a much larger code and data size. 
7533 Note 
7534 that these values will vary depending on the efficiency of the compiler 
7535 and 
7536 the compiler options used during generation.
7537
7538   Previous Release:
7539     Non-Debug Version:  78.1K Code, 11.6K Data,  89.7K Total
7540     Debug Version:     164.0K Code, 69.3K Data, 233.3K Total
7541   Current Release:
7542     Non-Debug Version:  78.3K Code, 11.6K Data,  89.9K Total
7543     Debug Version:     164.0K Code, 69.1K Data, 233.1K Total
7544
7545
7546 2) iASL Compiler/Disassembler:
7547
7548 Fixed a regression in the disassembler where if/else/while constructs were 
7549 output incorrectly. This problem was introduced in the previous release 
7550 (20050526). This problem also affected the single-step disassembly in the 
7551 debugger.
7552
7553 Fixed a problem where compiling the reserved _OSI method would randomly 
7554 (but 
7555 rarely) produce compile errors.
7556
7557 Enhanced the disassembler to emit compilable code in the face of incorrect 
7558 AML resource descriptors. If the optional ResourceSourceIndex is present, 
7559 but the ResourceSource is not, do not emit the ResourceSourceIndex in the 
7560 disassembly. Otherwise, the resulting code cannot be compiled without 
7561 errors.
7562
7563 ----------------------------------------
7564 26 May 2005.  Summary of changes for version 20050526:
7565
7566 1) ACPI CA Core Subsystem:
7567
7568 Implemented support to execute Type 1 and Type 2 AML opcodes appearing at 
7569 the module level (not within a control method.) These opcodes are executed 
7570 exactly once at the time the table is loaded. This type of code was legal 
7571 up 
7572 until the release of ACPI 2.0B (2002) and is now supported within ACPI CA 
7573 in 
7574 order to provide backwards compatibility with earlier BIOS 
7575 implementations. 
7576 This eliminates the "Encountered executable code at module level" warning 
7577 that was previously generated upon detection of such code.
7578
7579 Fixed a problem in the interpreter where an AE_NOT_FOUND exception could 
7580 inadvertently be generated during the lookup of namespace objects in the 
7581 second pass parse of ACPI tables and control methods. It appears that this 
7582 problem could occur during the resolution of forward references to 
7583 namespace 
7584 objects.
7585
7586 Added the ACPI_MUTEX_DEBUG #ifdef to the AcpiUtReleaseMutex function, 
7587 corresponding to the same #ifdef in the AcpiUtAcquireMutex function. This 
7588 allows the deadlock detection debug code to be compiled out in the normal 
7589 case, improving mutex performance (and overall subsystem performance) 
7590 considerably.
7591
7592 Implemented a handful of miscellaneous fixes for possible memory leaks on 
7593 error conditions and error handling control paths. These fixes were 
7594 suggested by FreeBSD and the Coverity Prevent source code analysis tool.
7595
7596 Added a check for a null RSDT pointer in AcpiGetFirmwareTable (tbxfroot.c) 
7597 to prevent a fault in this error case.
7598
7599 Code and Data Size: Current and previous core subsystem library sizes are 
7600 shown below. These are the code and data sizes for the acpica.lib produced 
7601 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7602 any ACPI driver or OSPM code. The debug version of the code includes the 
7603 debug output trace mechanism and has a much larger code and data size. 
7604 Note 
7605 that these values will vary depending on the efficiency of the compiler 
7606 and 
7607 the compiler options used during generation.
7608
7609   Previous Release:
7610     Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
7611     Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
7612   Current Release:
7613     Non-Debug Version:  78.1K Code, 11.6K Data,  89.7K Total
7614     Debug Version:     164.0K Code, 69.3K Data, 233.3K Total
7615
7616
7617 2) iASL Compiler/Disassembler:
7618
7619 Implemented support to allow Type 1 and Type 2 ASL operators to appear at 
7620 the module level (not within a control method.) These operators will be 
7621 executed once at the time the table is loaded. This type of code was legal 
7622 up until the release of ACPI 2.0B (2002) and is now supported by the iASL 
7623 compiler in order to provide backwards compatibility with earlier BIOS ASL 
7624 code.
7625
7626 The ACPI integer width (specified via the table revision ID or the -r 
7627 override, 32 or 64 bits) is now used internally during compile-time 
7628 constant 
7629 folding to ensure that constants are truncated to 32 bits if necessary. 
7630 Previously, the revision ID value was only emitted in the AML table 
7631 header.
7632
7633 An error message is now generated for the Mutex and Method operators if 
7634 the 
7635 SyncLevel parameter is outside the legal range of 0 through 15.
7636
7637 Fixed a problem with the Method operator ParameterTypes list handling 
7638 (ACPI 
7639 3.0). Previously, more than 2 types or 2 arguments generated a syntax 
7640 error.  
7641 The actual underlying implementation of method argument typechecking is 
7642 still under development, however.
7643
7644 ----------------------------------------
7645 13 May 2005.  Summary of changes for version 20050513:
7646
7647 1) ACPI CA Core Subsystem:
7648
7649 Implemented support for PCI Express root bridges -- added support for 
7650 device 
7651 PNP0A08 in the root bridge search within AcpiEvPciConfigRegionSetup.
7652
7653 The interpreter now automatically truncates incoming 64-bit constants to 
7654 32 
7655 bits if currently executing out of a 32-bit ACPI table (Revision < 2). 
7656 This 
7657 also affects the iASL compiler constant folding. (Note: as per below, the 
7658 iASL compiler no longer allows 64-bit constants within 32-bit tables.)
7659
7660 Fixed a problem where string and buffer objects with "static" pointers 
7661 (pointers to initialization data within an ACPI table) were not handled 
7662 consistently. The internal object copy operation now always copies the 
7663 data 
7664 to a newly allocated buffer, regardless of whether the source object is 
7665 static or not.
7666
7667 Fixed a problem with the FromBCD operator where an implicit result 
7668 conversion was improperly performed while storing the result to the target 
7669 operand. Since this is an "explicit conversion" operator, the implicit 
7670 conversion should never be performed on the output.
7671
7672 Fixed a problem with the CopyObject operator where a copy to an existing 
7673 named object did not always completely overwrite the existing object 
7674 stored 
7675 at name. Specifically, a buffer-to-buffer copy did not delete the existing 
7676 buffer.
7677
7678 Replaced "InterruptLevel" with "InterruptNumber" in all GPE interfaces and 
7679 structs for consistency.
7680
7681 Code and Data Size: Current and previous core subsystem library sizes are 
7682 shown below. These are the code and data sizes for the acpica.lib produced 
7683 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7684 any ACPI driver or OSPM code. The debug version of the code includes the 
7685 debug output trace mechanism and has a much larger code and data size. 
7686 Note 
7687 that these values will vary depending on the efficiency of the compiler 
7688 and 
7689 the compiler options used during generation.
7690
7691   Previous Release:
7692     Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
7693     Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
7694   Current Release: (Same sizes)
7695     Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
7696     Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
7697
7698
7699 2) iASL Compiler/Disassembler:
7700
7701 The compiler now emits a warning if an attempt is made to generate a 64-
7702 bit 
7703 integer constant from within a 32-bit ACPI table (Revision < 2). The 
7704 integer 
7705 is truncated to 32 bits.
7706
7707 Fixed a problem with large package objects: if the static length of the 
7708 package is greater than 255, the "variable length package" opcode is 
7709 emitted. Previously, this caused an error. This requires an update to the 
7710 ACPI spec, since it currently (incorrectly) states that packages larger 
7711 than 
7712 255 elements are not allowed.
7713
7714 The disassembler now correctly handles variable length packages and 
7715 packages 
7716 larger than 255 elements.
7717
7718 ----------------------------------------
7719 08 April 2005.  Summary of changes for version 20050408:
7720
7721 1) ACPI CA Core Subsystem:
7722
7723 Fixed three cases in the interpreter where an "index" argument to an ASL 
7724 function was still (internally) 32 bits instead of the required 64 bits. 
7725 This was the Index argument to the Index, Mid, and Match operators.
7726
7727 The "strupr" function is now permanently local (AcpiUtStrupr), since this 
7728 is 
7729 not a POSIX-defined function and not present in most kernel-level C 
7730 libraries. All references to the C library strupr function have been 
7731 removed 
7732 from the headers.
7733
7734 Completed the deployment of static functions/prototypes. All prototypes 
7735 with 
7736 the static attribute have been moved from the headers to the owning C 
7737 file.
7738
7739 Implemented an extract option (-e) for the AcpiBin utility (AML binary 
7740 utility). This option allows the utility to extract individual ACPI tables 
7741 from the output of AcpiDmp. It provides the same functionality of the 
7742 acpixtract.pl perl script without the worry of setting the correct perl 
7743 options. AcpiBin runs on Windows and has not yet been generated/validated 
7744 in 
7745 the Linux/Unix environment (but should be soon).
7746  
7747 Updated and fixed the table dump option for AcpiBin (-d). This option 
7748 converts a single ACPI table to a hex/ascii file, similar to the output of 
7749 AcpiDmp.
7750
7751 Code and Data Size: Current and previous core subsystem library sizes are 
7752 shown below. These are the code and data sizes for the acpica.lib produced 
7753 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7754 any ACPI driver or OSPM code. The debug version of the code includes the 
7755 debug output trace mechanism and has a much larger code and data size. 
7756 Note 
7757 that these values will vary depending on the efficiency of the compiler 
7758 and 
7759 the compiler options used during generation.
7760
7761   Previous Release:
7762     Non-Debug Version:  78.0K Code, 11.6K Data,  89.6K Total
7763     Debug Version:     163.5K Code, 69.3K Data, 232.8K Total
7764   Current Release:
7765     Non-Debug Version:  78.2K Code, 11.6K Data,  89.8K Total
7766     Debug Version:     163.7K Code, 69.3K Data, 233.0K Total
7767
7768
7769 2) iASL Compiler/Disassembler:
7770
7771 Disassembler fix: Added a check to ensure that the table length found in 
7772 the 
7773 ACPI table header within the input file is not longer than the actual 
7774 input 
7775 file size. This indicates some kind of file or table corruption.
7776
7777 ----------------------------------------
7778 29 March 2005.  Summary of changes for version 20050329:
7779
7780 1) ACPI CA Core Subsystem:
7781
7782 An error is now generated if an attempt is made to create a Buffer Field 
7783 of 
7784 length zero (A CreateField with a length operand of zero.)
7785
7786 The interpreter now issues a warning whenever executable code at the 
7787 module 
7788 level is detected during ACPI table load. This will give some idea of the 
7789 prevalence of this type of code.
7790
7791 Implemented support for references to named objects (other than control 
7792 methods) within package objects.
7793
7794 Enhanced package object output for the debug object. Package objects are 
7795 now 
7796 completely dumped, showing all elements.
7797
7798 Enhanced miscellaneous object output for the debug object. Any object can 
7799 now be written to the debug object (for example, a device object can be 
7800 written, and the type of the object will be displayed.)
7801
7802 The "static" qualifier has been added to all local functions across both 
7803 the 
7804 core subsystem and the iASL compiler.
7805
7806 The number of "long" lines (> 80 chars) within the source has been 
7807 significantly reduced, by about 1/3.
7808
7809 Cleaned up all header files to ensure that all CA/iASL functions are 
7810 prototyped (even static functions) and the formatting is consistent.
7811
7812 Two new header files have been added, acopcode.h and acnames.h.
7813
7814 Removed several obsolete functions that were no longer used.
7815
7816 Code and Data Size: Current and previous core subsystem library sizes are 
7817 shown below. These are the code and data sizes for the acpica.lib produced 
7818 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7819 any ACPI driver or OSPM code. The debug version of the code includes the 
7820 debug output trace mechanism and has a much larger code and data size. 
7821 Note 
7822 that these values will vary depending on the efficiency of the compiler 
7823 and 
7824 the compiler options used during generation.
7825
7826   Previous Release:
7827     Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
7828     Debug Version:     165.4K Code, 69.7K Data, 236.1K Total
7829   Current Release:
7830     Non-Debug Version:  78.0K Code, 11.6K Data,  89.6K Total
7831     Debug Version:     163.5K Code, 69.3K Data, 232.8K Total
7832
7833
7834
7835 2) iASL Compiler/Disassembler:
7836
7837 Fixed a problem with the resource descriptor generation/support. For the 
7838 ResourceSourceIndex and the ResourceSource fields, both must be present, 
7839 or 
7840 both must be not present - can't have one without the other.
7841
7842 The compiler now returns non-zero from the main procedure if any errors 
7843 have 
7844 occurred during the compilation.
7845
7846
7847 ----------------------------------------
7848 09 March 2005.  Summary of changes for version 20050309:
7849
7850 1) ACPI CA Core Subsystem:
7851
7852 The string-to-buffer implicit conversion code has been modified again 
7853 after 
7854 a change to the ACPI specification.  In order to match the behavior of the 
7855 other major ACPI implementation, the target buffer is no longer truncated 
7856 if 
7857 the source string is smaller than an existing target buffer. This change 
7858 requires an update to the ACPI spec, and should eliminate the recent 
7859 AE_AML_BUFFER_LIMIT issues.
7860
7861 The "implicit return" support was rewritten to a new algorithm that solves 
7862 the general case. Rather than attempt to determine when a method is about 
7863 to 
7864 exit, the result of every ASL operator is saved momentarily until the very 
7865 next ASL operator is executed. Therefore, no matter how the method exits, 
7866 there will always be a saved implicit return value. This feature is only 
7867 enabled with the AcpiGbl_EnableInterpreterSlack flag, and should eliminate 
7868 AE_AML_NO_RETURN_VALUE errors when enabled.
7869
7870 Implemented implicit conversion support for the predicate (operand) of the 
7871 If, Else, and While operators. String and Buffer arguments are 
7872 automatically 
7873 converted to Integers.
7874
7875 Changed the string-to-integer conversion behavior to match the new ACPI 
7876 errata: "If no integer object exists, a new integer is created. The ASCII 
7877 string is interpreted as a hexadecimal constant. Each string character is 
7878 interpreted as a hexadecimal value ('0'-'9', 'A'-'F', 'a', 'f'), starting 
7879 with the first character as the most significant digit, and ending with 
7880 the 
7881 first non-hexadecimal character or end-of-string." This means that the 
7882 first 
7883 non-hex character terminates the conversion and this is the code that was 
7884 changed.
7885
7886 Fixed a problem where the ObjectType operator would fail (fault) when used 
7887 on an Index of a Package which pointed to a null package element. The 
7888 operator now properly returns zero (Uninitialized) in this case.
7889
7890 Fixed a problem where the While operator used excessive memory by not 
7891 properly popping the result stack during execution. There was no memory 
7892 leak 
7893 after execution, however. (Code provided by Valery Podrezov.)
7894
7895 Fixed a problem where references to control methods within Package objects 
7896 caused the method to be invoked, instead of producing a reference object 
7897 pointing to the method.
7898
7899 Restructured and simplified the pswalk.c module (AcpiPsDeleteParseTree) to 
7900 improve performance and reduce code size. (Code provided by Alexey 
7901 Starikovskiy.)
7902
7903 Code and Data Size: Current and previous core subsystem library sizes are 
7904 shown below. These are the code and data sizes for the acpica.lib produced 
7905 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
7906 any ACPI driver or OSPM code. The debug version of the code includes the 
7907 debug output trace mechanism and has a much larger code and data size. 
7908 Note 
7909 that these values will vary depending on the efficiency of the compiler 
7910 and 
7911 the compiler options used during generation.
7912
7913   Previous Release:
7914     Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
7915     Debug Version:     165.4K Code, 69.6K Data, 236.0K Total
7916   Current Release:
7917     Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
7918     Debug Version:     165.4K Code, 69.7K Data, 236.1K Total
7919
7920
7921 2) iASL Compiler/Disassembler:
7922
7923 Fixed a problem with the Return operator with no arguments. Since the AML 
7924 grammar for the byte encoding requires an operand for the Return opcode, 
7925 the 
7926 compiler now emits a Return(Zero) for this case.  An ACPI specification 
7927 update has been written for this case.
7928
7929 For tables other than the DSDT, namepath optimization is automatically 
7930 disabled. This is because SSDTs can be loaded anywhere in the namespace, 
7931 the 
7932 compiler has no knowledge of where, and thus cannot optimize namepaths.
7933
7934 Added "ProcessorObj" to the ObjectTypeKeyword list. This object type was 
7935 inadvertently omitted from the ACPI specification, and will require an 
7936 update to the spec.
7937
7938 The source file scan for ASCII characters is now optional (-a). This 
7939 change 
7940 was made because some vendors place non-ascii characters within comments. 
7941 However, the scan is simply a brute-force byte compare to ensure all 
7942 characters in the file are in the range 0x00 to 0x7F.
7943
7944 Fixed a problem with the CondRefOf operator where the compiler was 
7945 inappropriately checking for the existence of the target. Since the point 
7946 of 
7947 the operator is to check for the existence of the target at run-time, the 
7948 compiler no longer checks for the target existence.
7949
7950 Fixed a problem where errors generated from the internal AML interpreter 
7951 during constant folding were not handled properly, causing a fault.
7952
7953 Fixed a problem with overly aggressive range checking for the Stall 
7954 operator. The valid range (max 255) is now only checked if the operand is 
7955 of 
7956 type Integer. All other operand types cannot be statically checked.
7957
7958 Fixed a problem where control method references within the RefOf, DeRefOf, 
7959 and ObjectType operators were not treated properly. They are now treated 
7960 as 
7961 actual references, not method invocations.
7962
7963 Fixed and enhanced the "list namespace" option (-ln). This option was 
7964 broken 
7965 a number of releases ago.
7966
7967 Improved error handling for the Field, IndexField, and BankField 
7968 operators. 
7969 The compiler now cleanly reports and recovers from errors in the field 
7970 component (FieldUnit) list.
7971
7972 Fixed a disassembler problem where the optional ResourceDescriptor fields 
7973 TRS and TTP were not always handled correctly.
7974
7975 Disassembler - Comments in output now use "//" instead of "/*"
7976
7977 ----------------------------------------
7978 28 February 2005.  Summary of changes for version 20050228:
7979
7980 1) ACPI CA Core Subsystem:
7981
7982 Fixed a problem where the result of an Index() operator (an object 
7983 reference) must increment the reference count on the target object for the 
7984 life of the object reference.
7985
7986 Implemented AML Interpreter and Debugger support for the new ACPI 3.0 
7987 Extended Address (IO, Memory, Space), QwordSpace, DwordSpace, and 
7988 WordSpace 
7989 resource descriptors.
7990
7991 Implemented support in the _OSI method for the ACPI 3.0 "Extended Address 
7992 Space Descriptor" string, indicating interpreter support for the 
7993 descriptors 
7994 above.
7995
7996 Implemented header support for the new ACPI 3.0 FADT flag bits.
7997
7998 Implemented header support for the new ACPI 3.0 PCI Express bits for the 
7999 PM1 
8000 status/enable registers.
8001
8002 Updated header support for the MADT processor local Apic struct and MADT 
8003 platform interrupt source struct for new ACPI 3.0 fields.
8004
8005 Implemented header support for the SRAT and SLIT ACPI tables.
8006
8007 Implemented the -s switch in AcpiExec to enable the "InterpreterSlack" 
8008 flag 
8009 at runtime.
8010
8011 Code and Data Size: Current and previous core subsystem library sizes are 
8012 shown below. These are the code and data sizes for the acpica.lib produced 
8013 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8014 any ACPI driver or OSPM code. The debug version of the code includes the 
8015 debug output trace mechanism and has a much larger code and data size. 
8016 Note 
8017 that these values will vary depending on the efficiency of the compiler 
8018 and 
8019 the compiler options used during generation.
8020
8021   Previous Release:
8022     Non-Debug Version:  78.2K Code, 11.5K Data,  89.7K Total
8023     Debug Version:     164.9K Code, 69.2K Data, 234.1K Total
8024   Current Release:
8025     Non-Debug Version:  78.3K Code, 11.5K Data,  89.8K Total
8026     Debug Version:     165.4K Code, 69.6K Data, 236.0K Total
8027
8028
8029 2) iASL Compiler/Disassembler:
8030
8031 Fixed a problem with the internal 64-bit String-to-integer conversion with 
8032 strings less than two characters long.
8033
8034 Fixed a problem with constant folding where the result of the Index() 
8035 operator can not be considered a constant. This means that Index() cannot 
8036 be 
8037 a type3 opcode and this will require an update to the ACPI specification.
8038
8039 Disassembler: Implemented support for the TTP, MTP, and TRS resource 
8040 descriptor fields. These fields were inadvertently ignored and not output 
8041 in 
8042 the disassembly of the resource descriptor.
8043
8044
8045  ----------------------------------------
8046 11 February 2005.  Summary of changes for version 20050211:
8047
8048 1) ACPI CA Core Subsystem:
8049
8050 Implemented ACPI 3.0 support for implicit conversion within the Match() 
8051 operator. MatchObjects can now be of type integer, buffer, or string 
8052 instead 
8053 of just type integer.  Package elements are implicitly converted to the 
8054 type 
8055 of the MatchObject. This change aligns the behavior of Match() with the 
8056 behavior of the other logical operators (LLess(), etc.) It also requires 
8057 an 
8058 errata change to the ACPI specification as this support was intended for 
8059 ACPI 3.0, but was inadvertently omitted.
8060
8061 Fixed a problem with the internal implicit "to buffer" conversion. Strings 
8062 that are converted to buffers will cause buffer truncation if the string 
8063 is 
8064 smaller than the target buffer. Integers that are converted to buffers 
8065 will 
8066 not cause buffer truncation, only zero extension (both as per the ACPI 
8067 spec.) The problem was introduced when code was added to truncate the 
8068 buffer, but this should not be performed in all cases, only the string 
8069 case.
8070
8071 Fixed a problem with the Buffer and Package operators where the 
8072 interpreter 
8073 would get confused if two such operators were used as operands to an ASL 
8074 operator (such as LLess(Buffer(1){0},Buffer(1){1}). The internal result 
8075 stack was not being popped after the execution of these operators, 
8076 resulting 
8077 in an AE_NO_RETURN_VALUE exception.
8078
8079 Fixed a problem with constructs of the form Store(Index(...),...). The 
8080 reference object returned from Index was inadvertently resolved to an 
8081 actual 
8082 value. This problem was introduced in version 20050114 when the behavior 
8083 of 
8084 Store() was modified to restrict the object types that can be used as the 
8085 source operand (to match the ACPI specification.)
8086
8087 Reduced excessive stack use within the AcpiGetObjectInfo procedure.
8088
8089 Added a fix to aclinux.h to allow generation of AcpiExec on Linux.
8090
8091 Updated the AcpiSrc utility to add the FADT_DESCRIPTOR_REV2_MINUS struct.
8092
8093 Code and Data Size: Current and previous core subsystem library sizes are 
8094 shown below. These are the code and data sizes for the acpica.lib produced 
8095 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8096 any ACPI driver or OSPM code. The debug version of the code includes the 
8097 debug output trace mechanism and has a much larger code and data size. 
8098 Note 
8099 that these values will vary depending on the efficiency of the compiler 
8100 and 
8101 the compiler options used during generation.
8102
8103   Previous Release:
8104     Non-Debug Version:  78.1K Code, 11.5K Data,  89.6K Total
8105     Debug Version:     164.8K Code, 69.2K Data, 234.0K Total
8106   Current Release:
8107     Non-Debug Version:  78.2K Code, 11.5K Data,  89.7K Total
8108     Debug Version:     164.9K Code, 69.2K Data, 234.1K Total
8109
8110
8111 2) iASL Compiler/Disassembler:
8112
8113 Fixed a code generation problem in the constant folding optimization code 
8114 where incorrect code was generated if a constant was reduced to a buffer 
8115 object (i.e., a reduced type 5 opcode.)
8116
8117 Fixed a typechecking problem for the ToBuffer operator. Caused by an 
8118 incorrect return type in the internal opcode information table.
8119
8120 ----------------------------------------
8121 25 January 2005.  Summary of changes for version 20050125:
8122
8123 1) ACPI CA Core Subsystem:
8124
8125 Fixed a recently introduced problem with the Global Lock where the 
8126 underlying semaphore was not created.  This problem was introduced in 
8127 version 20050114, and caused an AE_AML_NO_OPERAND exception during an 
8128 Acquire() operation on _GL.
8129
8130 The local object cache is now optional, and is disabled by default. Both 
8131 AcpiExec and the iASL compiler enable the cache because they run in user 
8132 mode and this enhances their performance. #define ACPI_ENABLE_OBJECT_CACHE 
8133 to enable the local cache.
8134
8135 Fixed an issue in the internal function AcpiUtEvaluateObject concerning 
8136 the 
8137 optional "implicit return" support where an error was returned if no 
8138 return 
8139 object was expected, but one was implicitly returned. AE_OK is now 
8140 returned 
8141 in this case and the implicitly returned object is deleted. 
8142 AcpiUtEvaluateObject is only occasionally used, and only to execute 
8143 reserved 
8144 methods such as _STA and _INI where the return type is known up front.
8145
8146 Fixed a few issues with the internal convert-to-integer code. It now 
8147 returns 
8148 an error if an attempt is made to convert a null string, a string of only 
8149 blanks/tabs, or a zero-length buffer. This affects both implicit 
8150 conversion 
8151 and explicit conversion via the ToInteger() operator.
8152
8153 The internal debug code in AcpiUtAcquireMutex has been commented out. It 
8154 is 
8155 not needed for normal operation and should increase the performance of the 
8156 entire subsystem. The code remains in case it is needed for debug purposes 
8157 again.
8158
8159 The AcpiExec source and makefile are included in the Unix/Linux package 
8160 for 
8161 the first time.
8162
8163 Code and Data Size: Current and previous core subsystem library sizes are 
8164 shown below. These are the code and data sizes for the acpica.lib produced 
8165 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8166 any ACPI driver or OSPM code. The debug version of the code includes the 
8167 debug output trace mechanism and has a much larger code and data size. 
8168 Note 
8169 that these values will vary depending on the efficiency of the compiler 
8170 and 
8171 the compiler options used during generation.
8172
8173   Previous Release:
8174     Non-Debug Version:  78.4K Code,  11.5K Data,   89.9K Total
8175     Debug Version:     165.4K Code,  69.4K Data,  234.8K Total
8176   Current Release:
8177     Non-Debug Version:  78.1K Code,  11.5K Data,   89.6K Total
8178     Debug Version:     164.8K Code,  69.2K Data,  234.0K Total
8179
8180 2) iASL Compiler/Disassembler:
8181
8182 Switch/Case support: A warning is now issued if the type of the Switch 
8183 value 
8184 cannot be determined at compile time. For example, Switch(Arg0) will 
8185 generate the warning, and the type is assumed to be an integer. As per the 
8186 ACPI spec, use a construct such as Switch(ToInteger(Arg0)) to eliminate 
8187 the 
8188 warning.
8189
8190 Switch/Case support: Implemented support for buffer and string objects as 
8191 the switch value.  This is an ACPI 3.0 feature, now that LEqual supports 
8192 buffers and strings.
8193
8194 Switch/Case support: The emitted code for the LEqual() comparisons now 
8195 uses 
8196 the switch value as the first operand, not the second. The case value is 
8197 now 
8198 the second operand, and this allows the case value to be implicitly 
8199 converted to the type of the switch value, not the other way around.
8200
8201 Switch/Case support: Temporary variables are now emitted immediately 
8202 within 
8203 the control method, not at the global level. This means that there are now 
8204 36 temps available per-method, not 36 temps per-module as was the case 
8205 with 
8206 the earlier implementation (_T_0 through _T_9 and _T_A through _T_Z.)
8207
8208 ----------------------------------------
8209 14 January 2005.  Summary of changes for version 20050114:
8210
8211 Added 2005 copyright to all module headers.  This affects every module in 
8212 the core subsystem, iASL compiler, and the utilities.
8213
8214 1) ACPI CA Core Subsystem:
8215
8216 Fixed an issue with the String-to-Buffer conversion code where the string 
8217 null terminator was not included in the buffer after conversion, but there 
8218 is existing ASL that assumes the string null terminator is included. This 
8219 is 
8220 the root of the ACPI_AML_BUFFER_LIMIT regression. This problem was 
8221 introduced in the previous version when the code was updated to correctly 
8222 set the converted buffer size as per the ACPI specification. The ACPI spec 
8223 is ambiguous and will be updated to specify that the null terminator must 
8224 be 
8225 included in the converted buffer. This also affects the ToBuffer() ASL 
8226 operator.
8227
8228 Fixed a problem with the Mid() ASL/AML operator where it did not work 
8229 correctly on Buffer objects. Newly created sub-buffers were not being 
8230 marked 
8231 as initialized.
8232
8233
8234 Fixed a problem in AcpiTbFindTable where incorrect string compares were 
8235 performed on the OemId and OemTableId table header fields.  These fields 
8236 are 
8237 not null terminated, so strncmp is now used instead of strcmp.
8238
8239 Implemented a restriction on the Store() ASL/AML operator to align the 
8240 behavior with the ACPI specification.  Previously, any object could be 
8241 used 
8242 as the source operand.  Now, the only objects that may be used are 
8243 Integers, 
8244 Buffers, Strings, Packages, Object References, and DDB Handles.  If 
8245 necessary, the original behavior can be restored by enabling the 
8246 EnableInterpreterSlack flag.
8247
8248 Enhanced the optional "implicit return" support to allow an implicit 
8249 return 
8250 value from methods that are invoked externally via the AcpiEvaluateObject 
8251 interface.  This enables implicit returns from the _STA and _INI methods, 
8252 for example.
8253
8254 Changed the Revision() ASL/AML operator to return the current version of 
8255 the 
8256 AML interpreter, in the YYYYMMDD format. Previously, it incorrectly 
8257 returned 
8258 the supported ACPI version (This is the function of the _REV method).
8259
8260 Updated the _REV predefined method to return the currently supported 
8261 version 
8262 of ACPI, now 3.
8263
8264 Implemented batch mode option for the AcpiExec utility (-b).
8265
8266 Code and Data Size: Current and previous core subsystem library sizes are 
8267 shown below. These are the code and data sizes for the acpica.lib produced 
8268 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8269 any ACPI driver or OSPM code. The debug version of the code includes the 
8270 debug output trace mechanism and has a much larger code and data size. 
8271 Note 
8272 that these values will vary depending on the efficiency of the compiler 
8273 and 
8274 the compiler options used during generation.
8275
8276   Previous Release:
8277     Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
8278     Debug Version:     165.3K Code,  69.4K Data,  234.7K Total
8279   Current Release:
8280     Non-Debug Version:  78.4K Code,  11.5K Data,   89.9K Total
8281     Debug Version:     165.4K Code,  69.4K Data,  234.8K Total
8282
8283 ----------------------------------------
8284 10 December 2004.  Summary of changes for version 20041210:
8285
8286 ACPI 3.0 support is nearing completion in both the iASL compiler and the 
8287 ACPI CA core subsystem.
8288
8289 1) ACPI CA Core Subsystem:
8290
8291 Fixed a problem in the ToDecimalString operator where the resulting string 
8292 length was incorrectly calculated. The length is now calculated exactly, 
8293 eliminating incorrect AE_STRING_LIMIT exceptions.
8294
8295 Fixed a problem in the ToHexString operator to allow a maximum 200 
8296 character 
8297 string to be produced.
8298
8299 Fixed a problem in the internal string-to-buffer and buffer-to-buffer copy 
8300 routine where the length of the resulting buffer was not truncated to the 
8301 new size (if the target buffer already existed).
8302
8303 Code and Data Size: Current and previous core subsystem library sizes are 
8304 shown below. These are the code and data sizes for the acpica.lib produced 
8305 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8306 any ACPI driver or OSPM code. The debug version of the code includes the 
8307 debug output trace mechanism and has a much larger code and data size. 
8308 Note 
8309 that these values will vary depending on the efficiency of the compiler 
8310 and 
8311 the compiler options used during generation.
8312
8313   Previous Release:
8314     Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
8315     Debug Version:     164.7K Code,  68.5K Data,  233.2K Total
8316   Current Release:
8317     Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
8318     Debug Version:     165.3K Code,  69.4K Data,  234.7K Total
8319
8320
8321 2) iASL Compiler/Disassembler:
8322
8323 Implemented the new ACPI 3.0 resource template macros - DWordSpace, 
8324 ExtendedIO, ExtendedMemory, ExtendedSpace, QWordSpace, and WordSpace. 
8325 Includes support in the disassembler.
8326
8327 Implemented support for the new (ACPI 3.0) parameter to the Register 
8328 macro, 
8329 AccessSize.
8330
8331 Fixed a problem where the _HE resource name for the Interrupt macro was 
8332 referencing bit 0 instead of bit 1.
8333
8334 Implemented check for maximum 255 interrupts in the Interrupt macro.
8335
8336 Fixed a problem with the predefined resource descriptor names where 
8337 incorrect AML code was generated if the offset within the resource buffer 
8338 was 0 or 1.  The optimizer shortened the AML code to a single byte opcode 
8339 but did not update the surrounding package lengths.
8340
8341 Changes to the Dma macro:  All channels within the channel list must be in 
8342 the range 0-7.  Maximum 8 channels can be specified. BusMaster operand is 
8343 optional (default is BusMaster).
8344
8345 Implemented check for maximum 7 data bytes for the VendorShort macro.
8346
8347 The ReadWrite parameter is now optional for the Memory32 and similar 
8348 macros.
8349
8350 ----------------------------------------
8351 03 December 2004.  Summary of changes for version 20041203:
8352
8353 1) ACPI CA Core Subsystem:
8354
8355 The low-level field insertion/extraction code (exfldio) has been 
8356 completely 
8357 rewritten to eliminate unnecessary complexity, bugs, and boundary 
8358 conditions.
8359
8360 Fixed a problem in the ToInteger, ToBuffer, ToHexString, and 
8361 ToDecimalString 
8362 operators where the input operand could be inadvertently deleted if no 
8363 conversion was necessary (e.g., if the input to ToInteger was an Integer 
8364 object.)
8365
8366 Fixed a problem with the ToDecimalString and ToHexString where an 
8367 incorrect 
8368 exception code was returned if the resulting string would be > 200 chars.  
8369 AE_STRING_LIMIT is now returned.
8370
8371 Fixed a problem with the Concatenate operator where AE_OK was always 
8372 returned, even if the operation failed.
8373
8374 Fixed a problem in oswinxf (used by AcpiExec and iASL) to allow > 128 
8375 semaphores to be allocated.
8376
8377 Code and Data Size: Current and previous core subsystem library sizes are 
8378 shown below. These are the code and data sizes for the acpica.lib produced 
8379 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8380 any ACPI driver or OSPM code. The debug version of the code includes the 
8381 debug output trace mechanism and has a much larger code and data size. 
8382 Note 
8383 that these values will vary depending on the efficiency of the compiler 
8384 and 
8385 the compiler options used during generation.
8386
8387   Previous Release:
8388     Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
8389     Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
8390   Current Release:
8391     Non-Debug Version:  78.3K Code,  11.5K Data,   89.8K Total
8392     Debug Version:     164.7K Code,  68.5K Data,  233.2K Total
8393
8394
8395 2) iASL Compiler/Disassembler:
8396
8397 Fixed typechecking for the ObjectType and SizeOf operators.  Problem was 
8398 recently introduced in 20041119.
8399
8400 Fixed a problem with the ToUUID macro where the upper nybble of each 
8401 buffer 
8402 byte was inadvertently set to zero.
8403
8404 ----------------------------------------
8405 19 November 2004.  Summary of changes for version 20041119:
8406
8407 1) ACPI CA Core Subsystem:
8408
8409 Fixed a problem in the internal ConvertToInteger routine where new 
8410 integers 
8411 were not truncated to 32 bits for 32-bit ACPI tables. This routine 
8412 converts 
8413 buffers and strings to integers.
8414
8415 Implemented support to store a value to an Index() on a String object. 
8416 This 
8417 is an ACPI 2.0 feature that had not yet been implemented.
8418
8419 Implemented new behavior for storing objects to individual package 
8420 elements 
8421 (via the Index() operator). The previous behavior was to invoke the 
8422 implicit 
8423 conversion rules if an object was already present at the index.  The new 
8424 behavior is to simply delete any existing object and directly store the 
8425 new 
8426 object. Although the ACPI specification seems unclear on this subject, 
8427 other 
8428 ACPI implementations behave in this manner.  (This is the root of the 
8429 AE_BAD_HEX_CONSTANT issue.)
8430
8431 Modified the RSDP memory scan mechanism to support the extended checksum 
8432 for 
8433 ACPI 2.0 (and above) RSDPs. Note that the search continues until a valid 
8434 RSDP signature is found with a valid checksum.
8435
8436 Code and Data Size: Current and previous core subsystem library sizes are 
8437 shown below. These are the code and data sizes for the acpica.lib produced 
8438 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8439 any ACPI driver or OSPM code. The debug version of the code includes the 
8440 debug output trace mechanism and has a much larger code and data size. 
8441 Note 
8442 that these values will vary depending on the efficiency of the compiler 
8443 and 
8444 the compiler options used during generation.
8445
8446   Previous Release:
8447     Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
8448     Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
8449   Current Release:
8450     Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
8451     Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
8452
8453
8454 2) iASL Compiler/Disassembler:
8455
8456 Fixed a missing semicolon in the aslcompiler.y file.
8457
8458 ----------------------------------------
8459 05 November 2004.  Summary of changes for version 20041105:
8460
8461 1) ACPI CA Core Subsystem:
8462
8463 Implemented support for FADT revision 2.  This was an interim table 
8464 (between 
8465 ACPI 1.0 and ACPI 2.0) that adds support for the FADT reset register.
8466
8467 Implemented optional support to allow uninitialized LocalX and ArgX 
8468 variables in a control method.  The variables are initialized to an 
8469 Integer 
8470 object with a value of zero.  This support is enabled by setting the 
8471 AcpiGbl_EnableInterpreterSlack flag to TRUE.
8472
8473 Implemented support for Integer objects for the SizeOf operator.  Either 4 
8474 or 8 is returned, depending on the current integer size (32-bit or 64-bit, 
8475 depending on the parent table revision).
8476
8477 Fixed a problem in the implementation of the SizeOf and ObjectType 
8478 operators 
8479 where the operand was resolved to a value too early, causing incorrect 
8480 return values for some objects.
8481
8482 Fixed some possible memory leaks during exceptional conditions.
8483
8484 Code and Data Size: Current and previous core subsystem library sizes are 
8485 shown below. These are the code and data sizes for the acpica.lib produced 
8486 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8487 any ACPI driver or OSPM code. The debug version of the code includes the 
8488 debug output trace mechanism and has a much larger code and data size. 
8489 Note 
8490 that these values will vary depending on the efficiency of the compiler 
8491 and 
8492 the compiler options used during generation.
8493
8494   Previous Release:
8495     Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
8496     Debug Version:     164.8K Code,  68.6K Data,  233.4K Total
8497   Current Release:
8498     Non-Debug Version:  78.5K Code,  11.5K Data,   90.0K Total
8499     Debug Version:     165.2K Code,  68.6K Data,  233.8K Total
8500
8501
8502 2) iASL Compiler/Disassembler:
8503
8504 Implemented support for all ACPI 3.0 reserved names and methods.
8505
8506 Implemented all ACPI 3.0 grammar elements in the front-end, including 
8507 support for semicolons.
8508
8509 Implemented the ACPI 3.0 Function() and ToUUID() macros
8510
8511 Fixed a problem in the disassembler where a Scope() operator would not be 
8512 emitted properly if the target of the scope was in another table.
8513
8514 ----------------------------------------
8515 15 October 2004.  Summary of changes for version 20041015:
8516
8517 Note:  ACPI CA is currently undergoing an in-depth and complete formal 
8518 evaluation to test/verify the following areas. Other suggestions are 
8519 welcome. This will result in an increase in the frequency of releases and 
8520 the number of bug fixes in the next few months.
8521   - Functional tests for all ASL/AML operators
8522   - All implicit/explicit type conversions
8523   - Bit fields and operation regions
8524   - 64-bit math support and 32-bit-only "truncated" math support
8525   - Exceptional conditions, both compiler and interpreter
8526   - Dynamic object deletion and memory leaks
8527   - ACPI 3.0 support when implemented
8528   - External interfaces to the ACPI subsystem
8529
8530
8531 1) ACPI CA Core Subsystem:
8532
8533 Fixed two alignment issues on 64-bit platforms - within debug statements 
8534 in 
8535 AcpiEvGpeDetect and AcpiEvCreateGpeBlock. Removed references to the 
8536 Address 
8537 field within the non-aligned ACPI generic address structure.
8538
8539 Fixed a problem in the Increment and Decrement operators where incorrect 
8540 operand resolution could result in the inadvertent modification of the 
8541 original integer when the integer is passed into another method as an 
8542 argument and the arg is then incremented/decremented.
8543
8544 Fixed a problem in the FromBCD operator where the upper 32-bits of a 64-
8545 bit 
8546 BCD number were truncated during conversion.
8547
8548 Fixed a problem in the ToDecimal operator where the length of the 
8549 resulting 
8550 string could be set incorrectly too long if the input operand was a Buffer 
8551 object.
8552
8553 Fixed a problem in the Logical operators (LLess, etc.) where a NULL byte 
8554 (0) 
8555 within a buffer would prematurely terminate a compare between buffer 
8556 objects.
8557
8558 Added a check for string overflow (>200 characters as per the ACPI 
8559 specification) during the Concatenate operator with two string operands.
8560
8561 Code and Data Size: Current and previous core subsystem library sizes are 
8562 shown below. These are the code and data sizes for the acpica.lib produced 
8563 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8564 any ACPI driver or OSPM code. The debug version of the code includes the 
8565 debug output trace mechanism and has a much larger code and data size. 
8566 Note 
8567 that these values will vary depending on the efficiency of the compiler 
8568 and 
8569 the compiler options used during generation.
8570
8571   Previous Release:
8572     Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
8573     Debug Version:     164.6K Code,  68.5K Data,  233.1K Total
8574   Current Release:
8575     Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
8576     Debug Version:     164.8K Code,  68.6K Data,  233.4K Total
8577
8578
8579
8580 2) iASL Compiler/Disassembler:
8581
8582 Allow the use of the ObjectType operator on uninitialized Locals and Args 
8583 (returns 0 as per the ACPI specification).
8584
8585 Fixed a problem where the compiler would fault if there was a syntax error 
8586 in the FieldName of all of the various CreateXXXField operators.
8587
8588 Disallow the use of lower case letters within the EISAID macro, as per the 
8589 ACPI specification.  All EISAID strings must be of the form "UUUNNNN" 
8590 Where 
8591 U is an uppercase letter and N is a hex digit.
8592
8593
8594 ----------------------------------------
8595 06 October 2004.  Summary of changes for version 20041006:
8596
8597 1) ACPI CA Core Subsystem:
8598
8599 Implemented support for the ACPI 3.0 Timer operator. This ASL function 
8600 implements a 64-bit timer with 100 nanosecond granularity.
8601
8602 Defined a new OSL interface, AcpiOsGetTimer. This interface is used to 
8603 implement the ACPI 3.0 Timer operator.  This allows the host OS to 
8604 implement 
8605 the timer with the best clock available. Also, it keeps the core subsystem 
8606 out of the clock handling business, since the host OS (usually) performs 
8607 this function.
8608
8609 Fixed an alignment issue on 64-bit platforms. The HwLowLevelRead(Write) 
8610 functions use a 64-bit address which is part of the packed ACPI Generic 
8611 Address Structure. Since the structure is non-aligned, the alignment 
8612 macros 
8613 are now used to extract the address to a local variable before use.
8614
8615 Fixed a problem where the ToInteger operator assumed all input strings 
8616 were 
8617 hexadecimal. The operator now handles both decimal strings and hex strings 
8618 (prefixed with "0x").
8619
8620 Fixed a problem where the string length in the string object created as a 
8621 result of the internal ConvertToString procedure could be incorrect. This 
8622 potentially affected all implicit conversions and also the ToDecimalString 
8623 and ToHexString operators.
8624
8625 Fixed two problems in the ToString operator. If the length parameter was 
8626 zero, an incorrect string object was created and the value of the input 
8627 length parameter was inadvertently changed from zero to Ones.
8628
8629 Fixed a problem where the optional ResourceSource string in the 
8630 ExtendedIRQ 
8631 resource macro was ignored.
8632
8633 Simplified the interfaces to the internal division functions, reducing 
8634 code 
8635 size and complexity.
8636
8637 Code and Data Size: Current and previous core subsystem library sizes are 
8638 shown below. These are the code and data sizes for the acpica.lib produced 
8639 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8640 any ACPI driver or OSPM code. The debug version of the code includes the 
8641 debug output trace mechanism and has a much larger code and data size. 
8642 Note 
8643 that these values will vary depending on the efficiency of the compiler 
8644 and 
8645 the compiler options used during generation.
8646
8647   Previous Release:
8648     Non-Debug Version:  77.9K Code,  11.4K Data,   89.3K Total
8649     Debug Version:     164.5K Code,  68.3K Data,  232.8K Total
8650   Current Release:
8651     Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
8652     Debug Version:     164.6K Code,  68.5K Data,  233.1K Total
8653
8654
8655 2) iASL Compiler/Disassembler:
8656
8657 Implemented support for the ACPI 3.0 Timer operator.
8658
8659 Fixed a problem where the Default() operator was inadvertently ignored in 
8660
8661 Switch/Case block.  This was a problem in the translation of the Switch 
8662 statement to If...Else pairs.
8663
8664 Added support to allow a standalone Return operator, with no parentheses 
8665 (or 
8666 operands).
8667
8668 Fixed a problem with code generation for the ElseIf operator where the 
8669 translated Else...If parse tree was improperly constructed leading to the 
8670 loss of some code.
8671
8672 ----------------------------------------
8673 22 September 2004.  Summary of changes for version 20040922:
8674
8675 1) ACPI CA Core Subsystem:
8676
8677 Fixed a problem with the implementation of the LNot() operator where 
8678 "Ones" 
8679 was not returned for the TRUE case. Changed the code to return Ones 
8680 instead 
8681 of (!Arg) which was usually 1. This change affects iASL constant folding 
8682 for 
8683 this operator also.
8684
8685 Fixed a problem in AcpiUtInitializeBuffer where an existing buffer was not 
8686 initialized properly -- Now zero the entire buffer in this case where the 
8687 buffer already exists.
8688
8689 Changed the interface to AcpiOsSleep from (UINT32 Seconds, UINT32 
8690 Milliseconds) to simply (ACPI_INTEGER Milliseconds). This simplifies all 
8691 related code considerably. This will require changes/updates to all OS 
8692 interface layers (OSLs.)
8693
8694 Implemented a new external interface, AcpiInstallExceptionHandler, to 
8695 allow 
8696 a system exception handler to be installed. This handler is invoked upon 
8697 any 
8698 run-time exception that occurs during control method execution.
8699
8700 Added support for the DSDT in AcpiTbFindTable. This allows the 
8701 DataTableRegion() operator to access the local copy of the DSDT.
8702
8703 Code and Data Size: Current and previous core subsystem library sizes are 
8704 shown below. These are the code and data sizes for the acpica.lib produced 
8705 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8706 any ACPI driver or OSPM code. The debug version of the code includes the 
8707 debug output trace mechanism and has a much larger code and data size. 
8708 Note 
8709 that these values will vary depending on the efficiency of the compiler 
8710 and 
8711 the compiler options used during generation.
8712
8713   Previous Release:
8714     Non-Debug Version:  77.8K Code,  11.4K Data,   89.2K Total
8715     Debug Version:     164.2K Code,  68.2K Data,  232.4K Total
8716   Current Release:
8717     Non-Debug Version:  77.9K Code,  11.4K Data,   89.3K Total
8718     Debug Version:     164.5K Code,  68.3K Data,  232.8K Total
8719
8720
8721 2) iASL Compiler/Disassembler:
8722
8723 Fixed a problem with constant folding and the LNot operator. LNot was 
8724 returning 1 in the TRUE case, not Ones as per the ACPI specification. This 
8725 could result in the generation of an incorrect folded/reduced constant.
8726
8727 End-Of-File is now allowed within a "//"-style comment.  A parse error no 
8728 longer occurs if such a comment is at the very end of the input ASL source 
8729 file.
8730
8731 Implemented the "-r" option to override the Revision in the table header. 
8732 The initial use of this option will be to simplify the evaluation of the 
8733 AML 
8734 interpreter by allowing a single ASL source module to be compiled for 
8735 either 
8736 32-bit or 64-bit integers.
8737
8738
8739 ----------------------------------------
8740 27 August 2004.  Summary of changes for version 20040827:
8741
8742 1) ACPI CA Core Subsystem:
8743
8744 - Implemented support for implicit object conversion in the non-numeric 
8745 logical operators (LEqual, LGreater, LGreaterEqual, LLess, LLessEqual, and 
8746 LNotEqual.)  Any combination of Integers/Strings/Buffers may now be used; 
8747 the second operand is implicitly converted on the fly to match the type of 
8748 the first operand.  For example:
8749
8750     LEqual (Source1, Source2)
8751
8752 Source1 and Source2 must each evaluate to an integer, a string, or a 
8753 buffer. 
8754 The data type of Source1 dictates the required type of Source2. Source2 is 
8755 implicitly converted if necessary to match the type of Source1.
8756
8757 - Updated and corrected the behavior of the string conversion support.  
8758 The 
8759 rules concerning conversion of buffers to strings (according to the ACPI 
8760 specification) are as follows:
8761
8762 ToDecimalString - explicit byte-wise conversion of buffer to string of 
8763 decimal values (0-255) separated by commas. ToHexString - explicit byte-
8764 wise 
8765 conversion of buffer to string of hex values (0-FF) separated by commas. 
8766 ToString - explicit byte-wise conversion of buffer to string.  Byte-by-
8767 byte 
8768 copy with no transform except NULL terminated. Any other implicit buffer-
8769 to-
8770 string conversion - byte-wise conversion of buffer to string of hex values 
8771 (0-FF) separated by spaces.
8772
8773 - Fixed typo in definition of AcpiGbl_EnableInterpreterSlack.
8774
8775 - Fixed a problem in AcpiNsGetPathnameLength where the returned length was 
8776 one byte too short in the case of a node in the root scope.  This could 
8777 cause a fault during debug output.
8778
8779 - Code and Data Size: Current and previous core subsystem library sizes 
8780 are 
8781 shown below.  These are the code and data sizes for the acpica.lib 
8782 produced 
8783 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8784 any ACPI driver or OSPM code.  The debug version of the code includes the 
8785 debug output trace mechanism and has a much larger code and data size.  
8786 Note 
8787 that these values will vary depending on the efficiency of the compiler 
8788 and 
8789 the compiler options used during generation.
8790
8791   Previous Release:
8792     Non-Debug Version:  77.9K Code,  11.5K Data,   89.4K Total
8793     Debug Version:     164.1K Code,  68.3K Data,  232.4K Total
8794   Current Release:
8795     Non-Debug Version:  77.8K Code,  11.4K Data,   89.2K Total
8796     Debug Version:     164.2K Code,  68.2K Data,  232.4K Total
8797
8798
8799 2) iASL Compiler/Disassembler:
8800
8801 - Fixed a Linux generation error.
8802
8803
8804 ----------------------------------------
8805 16 August 2004.  Summary of changes for version 20040816:
8806
8807 1) ACPI CA Core Subsystem:
8808
8809 Designed and implemented support within the AML interpreter for the so-
8810 called "implicit return".  This support returns the result of the last ASL 
8811 operation within a control method, in the absence of an explicit Return() 
8812 operator.  A few machines depend on this behavior, even though it is not 
8813 explicitly supported by the ASL language.  It is optional support that can 
8814 be enabled at runtime via the AcpiGbl_EnableInterpreterSlack flag.
8815
8816 Removed support for the PCI_Config address space from the internal low 
8817 level 
8818 hardware interfaces (AcpiHwLowLevelRead and AcpiHwLowLevelWrite).  This 
8819 support was not used internally, and would not work correctly anyway 
8820 because 
8821 the PCI bus number and segment number were not supported.  There are 
8822 separate interfaces for PCI configuration space access because of the 
8823 unique 
8824 interface.
8825
8826 Code and Data Size: Current and previous core subsystem library sizes are 
8827 shown below.  These are the code and data sizes for the acpica.lib 
8828 produced 
8829 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8830 any ACPI driver or OSPM code.  The debug version of the code includes the 
8831 debug output trace mechanism and has a much larger code and data size.  
8832 Note 
8833 that these values will vary depending on the efficiency of the compiler 
8834 and 
8835 the compiler options used during generation.
8836
8837   Previous Release:
8838     Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
8839     Debug Version:     164.1K Code,  68.2K Data,  232.3K Total
8840   Current Release:
8841     Non-Debug Version:  77.9K Code,  11.5K Data,   89.4K Total
8842     Debug Version:     164.1K Code,  68.3K Data,  232.4K Total
8843
8844
8845 2) iASL Compiler/Disassembler:
8846
8847 Fixed a problem where constants in ASL expressions at the root level (not 
8848 within a control method) could be inadvertently truncated during code 
8849 generation.  This problem was introduced in the 20040715 release.
8850
8851
8852 ----------------------------------------
8853 15 July 2004.  Summary of changes for version 20040715:
8854
8855 1) ACPI CA Core Subsystem:
8856
8857 Restructured the internal HW GPE interfaces to pass/track the current 
8858 state 
8859 of interrupts (enabled/disabled) in order to avoid possible deadlock and 
8860 increase flexibility of the interfaces.
8861
8862 Implemented a "lexicographical compare" for String and Buffer objects 
8863 within 
8864 the logical operators -- LGreater, LLess, LGreaterEqual, and LLessEqual -- 
8865 as per further clarification to the ACPI specification.  Behavior is 
8866 similar 
8867 to C library "strcmp".
8868
8869 Completed a major reduction in CPU stack use for the AcpiGetFirmwareTable 
8870 external function.  In the 32-bit non-debug case, the stack use has been 
8871 reduced from 168 bytes to 32 bytes.
8872
8873 Deployed a new run-time configuration flag, 
8874 AcpiGbl_EnableInterpreterSlack, 
8875 whose purpose is to allow the AML interpreter to forgive certain bad AML 
8876 constructs.  Default setting is FALSE.
8877
8878 Implemented the first use of AcpiGbl_EnableInterpreterSlack in the Field 
8879 IO 
8880 support code.  If enabled, it allows field access to go beyond the end of 
8881
8882 region definition if the field is within the region length rounded up to 
8883 the 
8884 next access width boundary (a common coding error.)
8885
8886 Renamed OSD_HANDLER to ACPI_OSD_HANDLER, and OSD_EXECUTION_CALLBACK to 
8887 ACPI_OSD_EXEC_CALLBACK for consistency with other ACPI symbols.  Also, 
8888 these 
8889 symbols are lowercased by the latest version of the AcpiSrc tool.
8890
8891 The prototypes for the PCI interfaces in acpiosxf.h have been updated to 
8892 rename "Register" to simply "Reg" to prevent certain compilers from 
8893 complaining.
8894
8895 Code and Data Size: Current and previous core subsystem library sizes are 
8896 shown below.  These are the code and data sizes for the acpica.lib 
8897 produced 
8898 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8899 any ACPI driver or OSPM code.  The debug version of the code includes the 
8900 debug output trace mechanism and has a much larger code and data size.  
8901 Note 
8902 that these values will vary depending on the efficiency of the compiler 
8903 and 
8904 the compiler options used during generation.
8905
8906   Previous Release:
8907     Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
8908     Debug Version:     163.8K Code,  68.2K Data,  232.0K Total
8909   Current Release:
8910     Non-Debug Version:  78.0K Code,  11.5K Data,   89.5K Total
8911     Debug Version:     164.1K Code,  68.2K Data,  232.3K Total
8912
8913
8914 2) iASL Compiler/Disassembler:
8915
8916 Implemented full support for Package objects within the Case() operator.  
8917 Note: The Break() operator is currently not supported within Case blocks 
8918 (TermLists) as there is some question about backward compatibility with 
8919 ACPI 
8920 1.0 interpreters.
8921
8922
8923 Fixed a problem where complex terms were not supported properly within the 
8924 Switch() operator.
8925
8926 Eliminated extraneous warning for compiler-emitted reserved names of the 
8927 form "_T_x".  (Used in Switch/Case operators.)
8928
8929 Eliminated optimization messages for "_T_x" objects and small constants 
8930 within the DefinitionBlock operator.
8931
8932
8933 ----------------------------------------
8934 15 June 2004.  Summary of changes for version 20040615:
8935
8936 1) ACPI CA Core Subsystem:
8937
8938 Implemented support for Buffer and String objects (as per ACPI 2.0) for 
8939 the 
8940 following ASL operators:  LEqual, LGreater, LLess, LGreaterEqual, and 
8941 LLessEqual.
8942
8943 All directory names in the entire source package are lower case, as they 
8944 were in earlier releases.
8945
8946 Implemented "Disassemble" command in the AML debugger that will 
8947 disassemble 
8948 a single control method.
8949
8950 Code and Data Size: Current and previous core subsystem library sizes are 
8951 shown below.  These are the code and data sizes for the acpica.lib 
8952 produced 
8953 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
8954 any ACPI driver or OSPM code.  The debug version of the code includes the 
8955 debug output trace mechanism and has a much larger code and data size.  
8956 Note 
8957 that these values will vary depending on the efficiency of the compiler 
8958 and 
8959 the compiler options used during generation.
8960
8961   Previous Release:
8962     Non-Debug Version:  77.7K Code,  11.5K Data,   89.2K Total
8963     Debug Version:     163.3K Code,  67.2K Data,  230.5K Total
8964
8965   Current Release:
8966     Non-Debug Version:  77.8K Code,  11.5K Data,   89.3K Total
8967     Debug Version:     163.8K Code,  68.2K Data,  232.0K Total
8968
8969
8970 2) iASL Compiler/Disassembler:
8971
8972 Implemented support for Buffer and String objects (as per ACPI 2.0) for 
8973 the 
8974 following ASL operators:  LEqual, LGreater, LLess, LGreaterEqual, and 
8975 LLessEqual.
8976
8977 All directory names in the entire source package are lower case, as they 
8978 were in earlier releases.
8979
8980 Fixed a fault when using the -g or -d<nofilename> options if the FADT was 
8981 not found.
8982
8983 Fixed an issue with the Windows version of the compiler where later 
8984 versions 
8985 of Windows place the FADT in the registry under the name "FADT" and not 
8986 "FACP" as earlier versions did.  This applies when using the -g or -
8987 d<nofilename> options.  The compiler now looks for both strings as 
8988 necessary.
8989
8990 Fixed a problem with compiler namepath optimization where a namepath 
8991 within 
8992 the Scope() operator could not be optimized if the namepath was a subpath 
8993 of 
8994 the current scope path.
8995
8996 ----------------------------------------
8997 27 May 2004.  Summary of changes for version 20040527:
8998
8999 1) ACPI CA Core Subsystem:
9000
9001 Completed a new design and implementation for EBDA (Extended BIOS Data 
9002 Area) 
9003 support in the RSDP scan code.  The original code improperly scanned for 
9004 the 
9005 EBDA by simply scanning from memory location 0 to 0x400.  The correct 
9006 method 
9007 is to first obtain the EBDA pointer from within the BIOS data area, then 
9008 scan 1K of memory starting at the EBDA pointer.  There appear to be few if 
9009 any machines that place the RSDP in the EBDA, however.
9010
9011 Integrated a fix for a possible fault during evaluation of BufferField 
9012 arguments.  Obsolete code that was causing the problem was removed.
9013
9014 Found and fixed a problem in the Field Support Code where data could be 
9015 corrupted on a bit field read that starts on an aligned boundary but does 
9016 not end on an aligned boundary.  Merged the read/write "datum length" 
9017 calculation code into a common procedure.
9018
9019 Rolled in a couple of changes to the FreeBSD-specific header.
9020
9021
9022 Code and Data Size: Current and previous core subsystem library sizes are 
9023 shown below.  These are the code and data sizes for the acpica.lib 
9024 produced 
9025 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9026 any ACPI driver or OSPM code.  The debug version of the code includes the 
9027 debug output trace mechanism and has a much larger code and data size.  
9028 Note 
9029 that these values will vary depending on the efficiency of the compiler 
9030 and 
9031 the compiler options used during generation.
9032
9033   Previous Release:
9034     Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
9035     Debug Version:     163.2K Code,  67.2K Data,  230.4K Total
9036   Current Release:
9037     Non-Debug Version:  77.7K Code,  11.5K Data,   89.2K Total
9038     Debug Version:     163.3K Code,  67.2K Data,  230.5K Total
9039
9040
9041 2) iASL Compiler/Disassembler:
9042
9043 Fixed a generation warning produced by some overly-verbose compilers for a 
9044 64-bit constant.
9045
9046 ----------------------------------------
9047 14 May 2004.  Summary of changes for version 20040514:
9048
9049 1) ACPI CA Core Subsystem:
9050
9051 Fixed a problem where hardware GPE enable bits sometimes not set properly 
9052 during and after GPE method execution.  Result of 04/27 changes.
9053
9054 Removed extra "clear all GPEs" when sleeping/waking.
9055
9056 Removed AcpiHwEnableGpe and AcpiHwDisableGpe, replaced by the single 
9057 AcpiHwWriteGpeEnableReg. Changed a couple of calls to the functions above 
9058 to 
9059 the new AcpiEv* calls as appropriate.
9060
9061 ACPI_OS_NAME was removed from the OS-specific headers.  The default name 
9062 is 
9063 now "Microsoft Windows NT" for maximum compatibility.  However this can be 
9064 changed by modifying the acconfig.h file.
9065
9066 Allow a single invocation of AcpiInstallNotifyHandler for a handler that 
9067 traps both types of notifies (System, Device).  Use ACPI_ALL_NOTIFY flag. 
9068
9069 Run _INI methods on ThermalZone objects.  This is against the ACPI 
9070 specification, but there is apparently ASL code in the field that has 
9071 these 
9072 _INI methods, and apparently "other" AML interpreters execute them.
9073
9074 Performed a full 16/32/64 bit lint that resulted in some small changes.
9075
9076 Added a sleep simulation command to the AML debugger to test sleep code. 
9077
9078 Code and Data Size: Current and previous core subsystem library sizes are 
9079 shown below.  These are the code and data sizes for the acpica.lib 
9080 produced 
9081 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9082 any ACPI driver or OSPM code.  The debug version of the code includes the 
9083 debug output trace mechanism and has a much larger code and data size.  
9084 Note 
9085 that these values will vary depending on the efficiency of the compiler 
9086 and 
9087 the compiler options used during generation.
9088
9089   Previous Release:
9090     Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
9091     Debug Version:     162.9K Code,  67.0K Data,  229.9K Total
9092   Current Release:
9093     Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
9094     Debug Version:     163.2K Code,  67.2K Data,  230.4K Total
9095
9096 ----------------------------------------
9097 27 April 2004.  Summary of changes for version 20040427:
9098
9099 1) ACPI CA Core Subsystem:
9100
9101 Completed a major overhaul of the GPE handling within ACPI CA.  There are 
9102 now three types of GPEs:  wake-only, runtime-only, and combination 
9103 wake/run.  
9104 The only GPEs allowed to be combination wake/run are for button-style 
9105 devices such as a control-method power button, control-method sleep 
9106 button, 
9107 or a notebook lid switch.  GPEs that have an _Lxx or _Exx method and are 
9108 not 
9109 referenced by any _PRW methods are marked for "runtime" and hardware 
9110 enabled.  Any GPE that is referenced by a _PRW method is marked for "wake" 
9111 (and disabled at runtime).  However, at sleep time, only those GPEs that 
9112 have been specifically enabled for wake via the AcpiEnableGpe interface 
9113 will 
9114 actually be hardware enabled.
9115
9116 A new external interface has been added, AcpiSetGpeType(), that is meant 
9117 to 
9118 be used by device drivers to force a GPE to a particular type.  It will be 
9119 especially useful for the drivers for the button devices mentioned above.
9120
9121 Completed restructuring of the ACPI CA initialization sequence so that 
9122 default operation region handlers are installed before GPEs are 
9123 initialized 
9124 and the _PRW methods are executed.  This will prevent errors when the _PRW 
9125 methods attempt to access system memory or I/O space.
9126
9127 GPE enable/disable no longer reads the GPE enable register.  We now keep 
9128 the 
9129 enable info for runtime and wake separate and in the GPE_EVENT_INFO.  We 
9130 thus no longer depend on the hardware to maintain these bits.
9131
9132 Always clear the wake status and fixed/GPE status bits before sleep, even 
9133 for state S5.
9134
9135 Improved the AML debugger output for displaying the GPE blocks and their 
9136 current status.
9137
9138 Added new strings for the _OSI method, of the form "Windows 2001 SPx" 
9139 where 
9140 x = 0,1,2,3,4.
9141
9142 Fixed a problem where the physical address was incorrectly calculated when 
9143 the Load() operator was used to directly load from an Operation Region 
9144 (vs. 
9145 loading from a Field object.)  Also added check for minimum table length 
9146 for 
9147 this case.
9148
9149 Fix for multiple mutex acquisition.  Restore original thread SyncLevel on 
9150 mutex release.
9151
9152 Added ACPI_VALID_SXDS flag to the AcpiGetObjectInfo interface for 
9153 consistency with the other fields returned.
9154
9155 Shrunk the ACPI_GPE_EVENT_INFO structure by 40%.  There is one such 
9156 structure for each GPE in the system, so the size of this structure is 
9157 important.
9158
9159 CPU stack requirement reduction:  Cleaned up the method execution and 
9160 object 
9161 evaluation paths so that now a parameter structure is passed, instead of 
9162 copying the various method parameters over and over again.
9163
9164 In evregion.c:  Correctly exit and reenter the interpreter region if and 
9165 only if dispatching an operation region request to a user-installed 
9166 handler.  
9167 Do not exit/reenter when dispatching to a default handler (e.g., default 
9168 system memory or I/O handlers)
9169
9170
9171 Notes for updating drivers for the new GPE support.  The following changes 
9172 must be made to ACPI-related device drivers that are attached to one or 
9173 more 
9174 GPEs: (This information will be added to the ACPI CA Programmer 
9175 Reference.)
9176
9177 1) AcpiInstallGpeHandler no longer automatically enables the GPE, you must 
9178 explicitly call AcpiEnableGpe.
9179 2) There is a new interface called AcpiSetGpeType. This should be called 
9180 before enabling the GPE.  Also, this interface will automatically disable 
9181 the GPE if it is currently enabled.
9182 3) AcpiEnableGpe no longer supports a GPE type flag.
9183
9184 Specific drivers that must be changed:
9185 1) EC driver:
9186     AcpiInstallGpeHandler (NULL, GpeNum, ACPI_GPE_EDGE_TRIGGERED, 
9187 AeGpeHandler, NULL);
9188     AcpiSetGpeType (NULL, GpeNum, ACPI_GPE_TYPE_RUNTIME);
9189     AcpiEnableGpe (NULL, GpeNum, ACPI_NOT_ISR);
9190
9191 2) Button Drivers (Power, Lid, Sleep):
9192 Run _PRW method under parent device
9193 If _PRW exists: /* This is a control-method button */
9194     Extract GPE number and possibly GpeDevice
9195     AcpiSetGpeType (GpeDevice, GpeNum, ACPI_GPE_TYPE_WAKE_RUN);
9196     AcpiEnableGpe (GpeDevice, GpeNum, ACPI_NOT_ISR);
9197
9198 For all other devices that have _PRWs, we automatically set the GPE type 
9199 to 
9200 ACPI_GPE_TYPE_WAKE, but the GPE is NOT automatically (wake) enabled.  This 
9201 must be done on a selective basis, usually requiring some kind of user app 
9202 to allow the user to pick the wake devices.
9203
9204
9205 Code and Data Size: Current and previous core subsystem library sizes are 
9206 shown below.  These are the code and data sizes for the acpica.lib 
9207 produced 
9208 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9209 any ACPI driver or OSPM code.  The debug version of the code includes the 
9210 debug output trace mechanism and has a much larger code and data size.  
9211 Note 
9212 that these values will vary depending on the efficiency of the compiler 
9213 and 
9214 the compiler options used during generation.
9215
9216   Previous Release:
9217     Non-Debug Version:  77.0K Code,  11.4K Data,   88.4K Total
9218     Debug Version:     161.0K Code,  66.3K Data,  227.3K Total
9219   Current Release:
9220
9221     Non-Debug Version:  77.6K Code,  11.5K Data,   89.1K Total
9222     Debug Version:     162.9K Code,  67.0K Data,  229.9K Total
9223
9224
9225
9226 ----------------------------------------
9227 02 April 2004.  Summary of changes for version 20040402:
9228
9229 1) ACPI CA Core Subsystem:
9230
9231 Fixed an interpreter problem where an indirect store through an ArgX 
9232 parameter was incorrectly applying the "implicit conversion rules" during 
9233 the store.  From the ACPI specification: "If the target is a method local 
9234 or 
9235 argument (LocalX or ArgX), no conversion is performed and the result is 
9236 stored directly to the target".  The new behavior is to disable implicit 
9237 conversion during ALL stores to an ArgX.
9238
9239 Changed the behavior of the _PRW method scan to ignore any and all errors 
9240 returned by a given _PRW.  This prevents the scan from aborting from the 
9241 failure of any single _PRW.
9242
9243 Moved the runtime configuration parameters from the global init procedure 
9244 to 
9245 static variables in acglobal.h.  This will allow the host to override the 
9246 default values easily.
9247
9248 Code and Data Size: Current and previous core subsystem library sizes are 
9249 shown below.  These are the code and data sizes for the acpica.lib 
9250 produced 
9251 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9252 any ACPI driver or OSPM code.  The debug version of the code includes the 
9253 debug output trace mechanism and has a much larger code and data size.  
9254 Note 
9255 that these values will vary depending on the efficiency of the compiler 
9256 and 
9257 the compiler options used during generation.
9258
9259   Previous Release:
9260     Non-Debug Version:  76.9K Code,  11.4K Data,   88.3K Total
9261     Debug Version:     160.8K Code,  66.1K Data,  226.9K Total
9262   Current Release:
9263     Non-Debug Version:  77.0K Code,  11.4K Data,   88.4K Total
9264     Debug Version:     161.0K Code,  66.3K Data,  227.3K Total
9265
9266
9267 2) iASL Compiler/Disassembler:
9268
9269 iASL now fully disassembles SSDTs.  However, External() statements are not 
9270 generated automatically for unresolved symbols at this time.  This is a 
9271 planned feature for future implementation.
9272
9273 Fixed a scoping problem in the disassembler that occurs when the type of 
9274 the 
9275 target of a Scope() operator is overridden.  This problem caused an 
9276 incorrectly nested internal namespace to be constructed.
9277
9278 Any warnings or errors that are emitted during disassembly are now 
9279 commented 
9280 out automatically so that the resulting file can be recompiled without any 
9281 hand editing.
9282
9283 ----------------------------------------
9284 26 March 2004.  Summary of changes for version 20040326:
9285
9286 1) ACPI CA Core Subsystem:
9287
9288 Implemented support for "wake" GPEs via interaction between GPEs and the 
9289 _PRW methods.  Every GPE that is pointed to by one or more _PRWs is 
9290 identified as a WAKE GPE and by default will no longer be enabled at 
9291 runtime.  Previously, we were blindly enabling all GPEs with a 
9292 corresponding 
9293 _Lxx or _Exx method - but most of these turn out to be WAKE GPEs anyway.  
9294 We 
9295 believe this has been the cause of thousands of "spurious" GPEs on some 
9296 systems.
9297
9298 This new GPE behavior is can be reverted to the original behavior (enable 
9299 ALL GPEs at runtime) via a runtime flag.
9300
9301 Fixed a problem where aliased control methods could not access objects 
9302 properly.  The proper scope within the namespace was not initialized 
9303 (transferred to the target of the aliased method) before executing the 
9304 target method.
9305
9306 Fixed a potential race condition on internal object deletion on the return 
9307 object in AcpiEvaluateObject. 
9308
9309 Integrated a fix for resource descriptors where both _MEM and _MTP were 
9310 being extracted instead of just _MEM.  (i.e. bitmask was incorrectly too 
9311 wide, 0x0F instead of 0x03.)
9312
9313 Added a special case for ACPI_ROOT_OBJECT in AcpiUtGetNodeName, preventing 
9314
9315 fault in some cases.
9316
9317 Updated Notify() values for debug statements in evmisc.c
9318
9319 Return proper status from AcpiUtMutexInitialize, not just simply AE_OK.
9320
9321 Code and Data Size: Current and previous core subsystem library sizes are 
9322 shown below.  These are the code and data sizes for the acpica.lib 
9323 produced 
9324 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9325 any ACPI driver or OSPM code.  The debug version of the code includes the 
9326 debug output trace mechanism and has a much larger code and data size.  
9327 Note 
9328 that these values will vary depending on the efficiency of the compiler 
9329 and 
9330 the compiler options used during generation.
9331
9332   Previous Release:
9333
9334     Non-Debug Version:  76.5K Code,  11.3K Data,   87.8K Total
9335     Debug Version:     160.3K Code,  66.0K Data,  226.3K Total
9336   Current Release:
9337     Non-Debug Version:  76.9K Code,  11.4K Data,   88.3K Total
9338     Debug Version:     160.8K Code,  66.1K Data,  226.9K Total
9339
9340 ----------------------------------------
9341 11 March 2004.  Summary of changes for version 20040311:
9342
9343 1) ACPI CA Core Subsystem:
9344
9345 Fixed a problem where errors occurring during the parse phase of control 
9346 method execution did not abort cleanly.  For example, objects created and 
9347 installed in the namespace were not deleted.  This caused all subsequent 
9348 invocations of the method to return the AE_ALREADY_EXISTS exception.
9349
9350 Implemented a mechanism to force a control method to "Serialized" 
9351 execution 
9352 if the method attempts to create namespace objects. (The root of the 
9353 AE_ALREADY_EXISTS problem.)
9354
9355 Implemented support for the predefined _OSI "internal" control method.  
9356 Initial supported strings are "Linux", "Windows 2000", "Windows 2001", and 
9357 "Windows 2001.1", and can be easily upgraded for new strings as necessary.  
9358 This feature will allow "other" operating systems to execute the fully 
9359 tested, "Windows" code path through the ASL code
9360
9361 Global Lock Support:  Now allows multiple acquires and releases with any 
9362 internal thread.  Removed concept of "owning thread" for this special 
9363 mutex.
9364
9365 Fixed two functions that were inappropriately declaring large objects on 
9366 the 
9367 CPU stack:  PsParseLoop, NsEvaluateRelative.  Reduces the stack usage 
9368 during 
9369 method execution considerably.
9370
9371 Fixed a problem in the ACPI 2.0 FACS descriptor (actbl2.h) where the 
9372 S4Bios_f field was incorrectly defined as UINT32 instead of UINT32_BIT.
9373
9374 Fixed a problem where AcpiEvGpeDetect would fault if there were no GPEs 
9375 defined on the machine.
9376
9377 Implemented two runtime options:  One to force all control method 
9378 execution 
9379 to "Serialized" to mimic Windows behavior, another to disable _OSI support 
9380 if it causes problems on a given machine.
9381
9382 Code and Data Size: Current and previous core subsystem library sizes are 
9383 shown below.  These are the code and data sizes for the acpica.lib 
9384 produced 
9385 by the Microsoft Visual C++ 6.0 compiler, and these values do not include 
9386 any ACPI driver or OSPM code.  The debug version of the code includes the 
9387 debug output trace mechanism and has a much larger code and data size.  
9388 Note 
9389 that these values will vary depending on the efficiency of the compiler 
9390 and 
9391 the compiler options used during generation.
9392
9393   Previous Release:
9394     Non-Debug Version:  74.8K Code,  10.1K Data,   84.9K Total
9395     Debug Version:     158.7K Code,  65.1K Data,  223.8K Total
9396   Current Release:
9397     Non-Debug Version:  76.5K Code,  11.3K Data,   87.8K Total
9398     Debug Version:     160.3K Code,  66.0K Data,  226.3K Total
9399
9400 2) iASL Compiler/Disassembler:
9401
9402 Fixed an array size problem for FreeBSD that would cause the compiler to 
9403 fault.
9404
9405 ----------------------------------------
9406 20 February 2004.  Summary of changes for version 20040220:
9407
9408
9409 1) ACPI CA Core Subsystem:
9410
9411 Implemented execution of _SxD methods for Device objects in the 
9412 GetObjectInfo interface.
9413
9414 Fixed calls to _SST method to pass the correct arguments.
9415
9416 Added a call to _SST on wake to restore to "working" state.
9417
9418 Check for End-Of-Buffer failure case in the WalkResources interface.
9419
9420 Integrated fix for 64-bit alignment issue in acglobal.h by moving two 
9421 structures to the beginning of the file.
9422
9423 After wake, clear GPE status register(s) before enabling GPEs.
9424
9425 After wake, clear/enable power button.  (Perhaps we should clear/enable 
9426 all 
9427 fixed events upon wake.)
9428
9429 Fixed a couple of possible memory leaks in the Namespace manager.
9430
9431 Integrated latest acnetbsd.h file.
9432
9433 ----------------------------------------
9434 11 February 2004.  Summary of changes for version 20040211:
9435
9436
9437 1) ACPI CA Core Subsystem:
9438
9439 Completed investigation and implementation of the call-by-reference 
9440 mechanism for control method arguments.
9441
9442 Fixed a problem where a store of an object into an indexed package could 
9443 fail if the store occurs within a different method than the method that 
9444 created the package.
9445
9446 Fixed a problem where the ToDecimal operator could return incorrect 
9447 results.
9448
9449 Fixed a problem where the CopyObject operator could fail on some of the 
9450 more 
9451 obscure objects (e.g., Reference objects.)
9452
9453 Improved the output of the Debug object to display buffer, package, and 
9454 index objects.
9455
9456 Fixed a problem where constructs of the form "RefOf (ArgX)" did not return 
9457 the expected result.
9458
9459 Added permanent ACPI_REPORT_ERROR macros for all instances of the 
9460 ACPI_AML_INTERNAL exception.
9461
9462 Integrated latest version of acfreebsd.h
9463
9464 ----------------------------------------
9465 16 January 2004.  Summary of changes for version 20040116:
9466
9467 The purpose of this release is primarily to update the copyright years in 
9468 each module, thus causing a huge number of diffs.  There are a few small 
9469 functional changes, however.
9470
9471 1) ACPI CA Core Subsystem:
9472
9473 Improved error messages when there is a problem finding one or more of the 
9474 required base ACPI tables
9475
9476 Reintroduced the definition of APIC_HEADER in actbl.h
9477
9478 Changed definition of MADT_ADDRESS_OVERRIDE to 64 bits (actbl.h)
9479
9480 Removed extraneous reference to NewObj in dsmthdat.c
9481
9482 2) iASL compiler
9483
9484 Fixed a problem introduced in December that disabled the correct 
9485 disassembly 
9486 of Resource Templates
9487
9488
9489 ----------------------------------------
9490 03 December 2003.  Summary of changes for version 20031203:
9491
9492 1) ACPI CA Core Subsystem:
9493
9494 Changed the initialization of Operation Regions during subsystem
9495 init to perform two entire walks of the ACPI namespace; The first
9496 to initialize the regions themselves, the second to execute the
9497 _REG methods.  This fixed some interdependencies across _REG
9498 methods found on some machines.
9499
9500 Fixed a problem where a Store(Local0, Local1) could simply update
9501 the object reference count, and not create a new copy of the
9502 object if the Local1 is uninitialized.
9503
9504 Implemented support for the _SST reserved method during sleep
9505 transitions.
9506
9507 Implemented support to clear the SLP_TYP and SLP_EN bits when
9508 waking up, this is apparently required by some machines.
9509
9510 When sleeping, clear the wake status only if SleepState is not S5.
9511
9512 Fixed a problem in AcpiRsExtendedIrqResource() where an incorrect
9513 pointer arithmetic advanced a string pointer too far.
9514
9515 Fixed a problem in AcpiTbGetTablePtr() where a garbage pointer
9516 could be returned if the requested table has not been loaded.
9517
9518 Within the support for IRQ resources, restructured the handling of
9519 the active and edge/level bits.
9520
9521 Fixed a few problems in AcpiPsxExecute() where memory could be
9522 leaked under certain error conditions.
9523
9524 Improved error messages for the cases where the ACPI mode could
9525 not be entered.
9526
9527 Code and Data Size: Current and previous core subsystem library
9528 sizes are shown below.  These are the code and data sizes for the
9529 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
9530 these values do not include any ACPI driver or OSPM code.  The
9531 debug version of the code includes the debug output trace
9532 mechanism and has a much larger code and data size.  Note that
9533 these values will vary depending on the efficiency of the compiler
9534 and the compiler options used during generation.
9535
9536   Previous Release (20031029):
9537     Non-Debug Version:  74.4K Code,  10.1K Data,   84.5K Total
9538     Debug Version:     158.3K Code,  65.0K Data,  223.3K Total
9539   Current Release:
9540     Non-Debug Version:  74.8K Code,  10.1K Data,   84.9K Total
9541     Debug Version:     158.7K Code,  65.1K Data,  223.8K Total
9542
9543 2) iASL Compiler/Disassembler:
9544
9545 Implemented a fix for the iASL disassembler where a bad index was
9546 generated.  This was most noticeable on 64-bit platforms
9547
9548
9549 ----------------------------------------
9550 29 October 2003.  Summary of changes for version 20031029:
9551
9552 1) ACPI CA Core Subsystem:
9553
9554
9555 Fixed a problem where a level-triggered GPE with an associated
9556 _Lxx control method was incorrectly cleared twice.
9557
9558 Fixed a problem with the Field support code where an access can
9559 occur beyond the end-of-region if the field is non-aligned but
9560 extends to the very end of the parent region (resulted in an
9561 AE_AML_REGION_LIMIT exception.)
9562
9563 Fixed a problem with ACPI Fixed Events where an RT Clock handler
9564 would not get invoked on an RTC event.  The RTC event bitmasks for
9565 the PM1 registers were not being initialized properly.
9566
9567 Implemented support for executing _STA and _INI methods for
9568 Processor objects.  Although this is currently not part of the
9569 ACPI specification, there is existing ASL code that depends on the
9570 init-time execution of these methods.
9571
9572 Implemented and deployed a GetDescriptorName function to decode
9573 the various types of internal descriptors.  Guards against null
9574 descriptors during debug output also.
9575
9576 Implemented and deployed a GetNodeName function to extract the 4-
9577 character namespace node name.  This function simplifies the debug
9578 and error output, as well as guarding against null pointers during
9579 output.
9580
9581 Implemented and deployed the ACPI_FORMAT_UINT64 helper macro to
9582 simplify the debug and error output of 64-bit integers.  This
9583 macro replaces the HIDWORD and LODWORD macros for dumping these
9584 integers.
9585
9586 Updated the implementation of the Stall() operator to only call
9587 AcpiOsStall(), and also return an error if the operand is larger
9588 than 255.  This preserves the required behavior of not
9589 relinquishing the processor, as would happen if AcpiOsSleep() was
9590 called for "long stalls".
9591
9592 Constructs of the form "Store(LocalX,LocalX)" where LocalX is not
9593 initialized are now treated as NOOPs.
9594
9595 Cleaned up a handful of warnings during 64-bit generation.
9596
9597 Fixed a reported error where and incorrect GPE number was passed
9598 to the GPE dispatch handler.  This value is only used for error
9599 output, however.  Used this opportunity to clean up and streamline
9600 the GPE dispatch code.
9601
9602 Code and Data Size: Current and previous core subsystem library
9603 sizes are shown below.  These are the code and data sizes for the
9604 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
9605 these values do not include any ACPI driver or OSPM code.  The
9606
9607 debug version of the code includes the debug output trace
9608 mechanism and has a much larger code and data size.  Note that
9609 these values will vary depending on the efficiency of the compiler
9610 and the compiler options used during generation.
9611
9612   Previous Release (20031002):
9613     Non-Debug Version:  74.1K Code,   9.7K Data,   83.8K Total
9614     Debug Version:     157.9K Code,  64.8K Data,  222.7K Total
9615   Current Release:
9616     Non-Debug Version:  74.4K Code,  10.1K Data,   84.5K Total
9617     Debug Version:     158.3K Code,  65.0K Data,  223.3K Total
9618
9619
9620 2) iASL Compiler/Disassembler:
9621
9622 Updated the iASL compiler to return an error if the operand to the
9623 Stall() operator is larger than 255.
9624
9625
9626 ----------------------------------------
9627 02 October 2003.  Summary of changes for version 20031002:
9628
9629
9630 1) ACPI CA Core Subsystem:
9631
9632 Fixed a problem with Index Fields where the index was not
9633 incremented for fields that require multiple writes to the
9634 index/data registers (Fields that are wider than the data
9635 register.)
9636
9637 Fixed a problem with all Field objects where a write could go
9638 beyond the end-of-field if the field was larger than the access
9639 granularity and therefore required multiple writes to complete the
9640 request.  An extra write beyond the end of the field could happen
9641 inadvertently.
9642
9643 Fixed a problem with Index Fields where a BUFFER_OVERFLOW error
9644 would incorrectly be returned if the width of the Data Register
9645 was larger than the specified field access width.
9646
9647 Completed fixes for LoadTable() and Unload() and verified their
9648 operation.  Implemented full support for the "DdbHandle" object
9649 throughout the ACPI CA subsystem.
9650
9651 Implemented full support for the MADT and ECDT tables in the ACPI
9652 CA header files.  Even though these tables are not directly
9653 consumed by ACPI CA, the header definitions are useful for ACPI
9654 device drivers.
9655
9656 Integrated resource descriptor fixes posted to the Linux ACPI
9657 list.  This included checks for minimum descriptor length, and
9658 support for trailing NULL strings within descriptors that have
9659 optional string elements.
9660
9661 Code and Data Size: Current and previous core subsystem library
9662 sizes are shown below.  These are the code and data sizes for the
9663 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
9664 these values do not include any ACPI driver or OSPM code.  The
9665 debug version of the code includes the debug output trace
9666 mechanism and has a much larger code and data size.  Note that
9667 these values will vary depending on the efficiency of the compiler
9668 and the compiler options used during generation.
9669
9670   Previous Release (20030918):
9671     Non-Debug Version:  73.9K Code,   9.7K Data,   83.6K Total
9672     Debug Version:     157.3K Code,  64.5K Data,  221.8K Total
9673   Current Release:
9674     Non-Debug Version:  74.1K Code,   9.7K Data,   83.8K Total
9675     Debug Version:     157.9K Code,  64.8K Data,  222.7K Total
9676
9677
9678 2) iASL Compiler:
9679
9680 Implemented detection of non-ASCII characters within the input
9681 source ASL file.  This catches attempts to compile binary (AML)
9682 files early in the compile, with an informative error message.
9683
9684 Fixed a problem where the disassembler would fault if the output
9685 filename could not be generated or if the output file could not be
9686 opened.
9687
9688 ----------------------------------------
9689 18 September 2003.  Summary of changes for version 20030918:
9690
9691
9692 1) ACPI CA Core Subsystem:
9693
9694 Found and fixed a longstanding problem with the late execution of
9695 the various deferred AML opcodes (such as Operation Regions,
9696 Buffer Fields, Buffers, and Packages).  If the name string
9697 specified for the name of the new object placed the object in a
9698 scope other than the current scope, the initialization/execution
9699 of the opcode failed.  The solution to this problem was to
9700 implement a mechanism where the late execution of such opcodes
9701 does not attempt to lookup/create the name a second time in an
9702 incorrect scope.  This fixes the "region size computed
9703 incorrectly" problem.
9704
9705 Fixed a call to AcpiHwRegisterWrite in hwregs.c that was causing a
9706 Global Lock AE_BAD_PARAMETER error.
9707
9708 Fixed several 64-bit issues with prototypes, casting and data
9709 types.
9710
9711 Removed duplicate prototype from acdisasm.h
9712
9713 Fixed an issue involving EC Operation Region Detach (Shaohua Li)
9714
9715 Code and Data Size: Current and previous core subsystem library
9716 sizes are shown below.  These are the code and data sizes for the
9717 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
9718 these values do not include any ACPI driver or OSPM code.  The
9719 debug version of the code includes the debug output trace
9720 mechanism and has a much larger code and data size.  Note that
9721 these values will vary depending on the efficiency of the compiler
9722 and the compiler options used during generation.
9723
9724   Previous Release:
9725
9726     Non-Debug Version:  73.7K Code,   9.7K Data,   83.4K Total
9727     Debug Version:     156.9K Code,  64.2K Data,  221.1K Total
9728   Current Release:
9729     Non-Debug Version:  73.9K Code,   9.7K Data,   83.6K Total
9730     Debug Version:     157.3K Code,  64.5K Data,  221.8K Total
9731
9732
9733 2) Linux:
9734
9735 Fixed the AcpiOsSleep implementation in osunixxf.c to pass the
9736 correct sleep time in seconds.
9737
9738 ----------------------------------------
9739 14 July 2003.  Summary of changes for version 20030619:
9740
9741 1) ACPI CA Core Subsystem:
9742
9743 Parse SSDTs in order discovered, as opposed to reverse order
9744 (Hrvoje Habjanic)
9745
9746 Fixes from FreeBSD and NetBSD. (Frank van der Linden, Thomas
9747 Klausner,
9748    Nate Lawson)
9749
9750
9751 2) Linux:
9752
9753 Dynamically allocate SDT list (suggested by Andi Kleen)
9754
9755 proc function return value cleanups (Andi Kleen)
9756
9757 Correctly handle NMI watchdog during long stalls (Andrew Morton)
9758
9759 Make it so acpismp=force works (reported by Andrew Morton)
9760
9761
9762 ----------------------------------------
9763 19 June 2003.  Summary of changes for version 20030619:
9764
9765 1) ACPI CA Core Subsystem:
9766
9767 Fix To/FromBCD, eliminating the need for an arch-specific #define.
9768
9769 Do not acquire a semaphore in the S5 shutdown path.
9770
9771 Fix ex_digits_needed for 0. (Takayoshi Kochi)
9772
9773 Fix sleep/stall code reversal. (Andi Kleen)
9774
9775 Revert a change having to do with control method calling
9776 semantics.
9777
9778 2) Linux:
9779
9780 acpiphp update (Takayoshi Kochi)
9781
9782 Export acpi_disabled for sonypi (Stelian Pop)
9783
9784 Mention acpismp=force in config help
9785
9786 Re-add acpitable.c and acpismp=force. This improves backwards
9787
9788 compatibility and also cleans up the code to a significant degree.
9789
9790 Add ASUS Value-add driver (Karol Kozimor and Julien Lerouge)
9791
9792 ----------------------------------------
9793 22 May 2003.  Summary of changes for version 20030522:
9794
9795 1) ACPI CA Core Subsystem:
9796
9797 Found and fixed a reported problem where an AE_NOT_FOUND error
9798 occurred occasionally during _BST evaluation.  This turned out to
9799 be an Owner ID allocation issue where a called method did not get
9800 a new ID assigned to it.  Eventually, (after 64k calls), the Owner
9801 ID UINT16 would wraparound so that the ID would be the same as the
9802 caller's and the called method would delete the caller's
9803 namespace.
9804
9805 Implemented extended error reporting for control methods that are
9806 aborted due to a run-time exception.  Output includes the exact
9807 AML instruction that caused the method abort, a dump of the method
9808 locals and arguments at the time of the abort, and a trace of all
9809 nested control method calls.
9810
9811 Modified the interpreter to allow the creation of buffers of zero
9812 length from the AML code. Implemented new code to ensure that no
9813 attempt is made to actually allocate a memory buffer (of length
9814 zero) - instead, a simple buffer object with a NULL buffer pointer
9815 and length zero is created.  A warning is no longer issued when
9816 the AML attempts to create a zero-length buffer.
9817
9818 Implemented a workaround for the "leading asterisk issue" in
9819 _HIDs, _UIDs, and _CIDs in the AML interpreter.  One leading
9820 asterisk is automatically removed if present in any HID, UID, or
9821 CID strings.  The iASL compiler will still flag this asterisk as
9822 an error, however.
9823
9824 Implemented full support for _CID methods that return a package of
9825 multiple CIDs (Compatible IDs).  The AcpiGetObjectInfo() interface
9826 now additionally returns a device _CID list if present.  This
9827 required a change to the external interface in order to pass an
9828 ACPI_BUFFER object as a parameter since the _CID list is of
9829 variable length.
9830
9831 Fixed a problem with the new AE_SAME_HANDLER exception where
9832 handler initialization code did not know about this exception.
9833
9834 Code and Data Size: Current and previous core subsystem library
9835 sizes are shown below.  These are the code and data sizes for the
9836 acpica.lib produced by the Microsoft Visual C++ 6.0 compiler, and
9837 these values do not include any ACPI driver or OSPM code.  The
9838 debug version of the code includes the debug output trace
9839 mechanism and has a much larger code and data size.  Note that
9840 these values will vary depending on the efficiency of the compiler
9841 and the compiler options used during generation.
9842
9843   Previous Release (20030509):
9844     Non-Debug Version:  73.4K Code,   9.7K Data,   83.1K Total
9845     Debug Version:     156.1K Code,  63.9K Data,  220.0K Total
9846   Current Release:
9847     Non-Debug Version:  73.7K Code,   9.7K Data,   83.4K Total
9848     Debug Version:     156.9K Code,  64.2K Data,  221.1K Total
9849
9850
9851 2) Linux:
9852
9853 Fixed a bug in which we would reinitialize the ACPI interrupt
9854 after it was already working, thus disabling all ACPI and the IRQs
9855 for any other device sharing the interrupt. (Thanks to Stian
9856 Jordet)
9857
9858 Toshiba driver update (John Belmonte)
9859
9860 Return only 0 or 1 for our interrupt handler status (Andrew
9861 Morton)
9862
9863
9864 3) iASL Compiler:
9865
9866 Fixed a reported problem where multiple (nested) ElseIf()
9867 statements were not handled correctly by the compiler, resulting
9868 in incorrect warnings and incorrect AML code.  This was a problem
9869 in both the ASL parser and the code generator.
9870
9871
9872 4) Documentation:
9873
9874 Added changes to existing interfaces, new exception codes, and new
9875 text concerning reference count object management versus garbage
9876 collection.
9877
9878 ----------------------------------------
9879 09 May 2003.  Summary of changes for version 20030509.
9880
9881
9882 1) ACPI CA Core Subsystem:
9883
9884 Changed the subsystem initialization sequence to hold off
9885 installation of address space handlers until the hardware has been
9886 initialized and the system has entered ACPI mode.  This is because
9887 the installation of space handlers can cause _REG methods to be
9888 run.  Previously, the _REG methods could potentially be run before
9889 ACPI mode was enabled.
9890
9891 Fixed some memory leak issues related to address space handler and
9892 notify handler installation.  There were some problems with the
9893 reference count mechanism caused by the fact that the handler
9894 objects are shared across several namespace objects.
9895
9896 Fixed a reported problem where reference counts within the
9897 namespace were not properly updated when named objects created by
9898 method execution were deleted.
9899
9900 Fixed a reported problem where multiple SSDTs caused a deletion
9901 issue during subsystem termination.  Restructured the table data
9902 structures to simplify the linked lists and the related code.
9903
9904 Fixed a problem where the table ID associated with secondary
9905 tables (SSDTs) was not being propagated into the namespace objects
9906 created by those tables.  This would only present a problem for
9907 tables that are unloaded at run-time, however.
9908
9909 Updated AcpiOsReadable and AcpiOsWritable to use the ACPI_SIZE
9910 type as the length parameter (instead of UINT32).
9911
9912 Solved a long-standing problem where an ALREADY_EXISTS error
9913 appears on various systems.  This problem could happen when there
9914 are multiple PCI_Config operation regions under a single PCI root
9915 bus.  This doesn't happen very frequently, but there are some
9916 systems that do this in the ASL.
9917
9918 Fixed a reported problem where the internal DeleteNode function
9919 was incorrectly handling the case where a namespace node was the
9920 first in the parent's child list, and had additional peers (not
9921 the only child, but first in the list of children.)
9922
9923 Code and Data Size: Current core subsystem library sizes are shown
9924 below.  These are the code and data sizes for the acpica.lib
9925 produced by the Microsoft Visual C++ 6.0 compiler, and these
9926 values do not include any ACPI driver or OSPM code.  The debug
9927 version of the code includes the debug output trace mechanism and
9928 has a much larger code and data size.  Note that these values will
9929 vary depending on the efficiency of the compiler and the compiler
9930 options used during generation.
9931
9932   Previous Release
9933     Non-Debug Version:  73.7K Code,   9.5K Data,   83.2K Total
9934     Debug Version:     156.1K Code,  63.6K Data,  219.7K Total
9935   Current Release:
9936     Non-Debug Version:  73.4K Code,   9.7K Data,   83.1K Total
9937     Debug Version:     156.1K Code,  63.9K Data,  220.0K Total
9938
9939
9940 2) Linux:
9941
9942 Allow ":" in OS override string (Ducrot Bruno)
9943
9944 Kobject fix (Greg KH)
9945
9946
9947 3 iASL Compiler/Disassembler:
9948
9949 Fixed a problem in the generation of the C source code files (AML
9950 is emitted in C source statements for BIOS inclusion) where the
9951 Ascii dump that appears within a C comment at the end of each line
9952 could cause a compile time error if the AML sequence happens to
9953 have an open comment or close comment sequence embedded.
9954
9955
9956 ----------------------------------------
9957 24 April 2003.  Summary of changes for version 20030424.
9958
9959
9960 1) ACPI CA Core Subsystem:
9961
9962 Support for big-endian systems has been implemented.  Most of the
9963 support has been invisibly added behind big-endian versions of the
9964 ACPI_MOVE_* macros.
9965
9966 Fixed a problem in AcpiHwDisableGpeBlock() and
9967 AcpiHwClearGpeBlock() where an incorrect offset was passed to the
9968 low level hardware write routine.  The offset parameter was
9969 actually eliminated from the low level read/write routines because
9970 they had become obsolete.
9971
9972 Fixed a problem where a handler object was deleted twice during
9973 the removal of a fixed event handler.
9974
9975
9976 2) Linux:
9977
9978 A fix for SMP systems with link devices was contributed by
9979
9980 Compaq's Dan Zink.
9981
9982 (2.5) Return whether we handled the interrupt in our IRQ handler.
9983 (Linux ISRs no longer return void, so we can propagate the handler
9984 return value from the ACPI CA core back to the OS.)
9985
9986
9987
9988 3) Documentation:
9989
9990 The ACPI CA Programmer Reference has been updated to reflect new
9991 interfaces and changes to existing interfaces.
9992
9993 ----------------------------------------
9994 28 March 2003.  Summary of changes for version 20030328.
9995
9996 1) ACPI CA Core Subsystem:
9997
9998 The GPE Block Device support has been completed.  New interfaces
9999 are AcpiInstallGpeBlock and AcpiRemoveGpeBlock.  The Event
10000 interfaces (enable, disable, clear, getstatus) have been split
10001 into separate interfaces for Fixed Events and General Purpose
10002 Events (GPEs) in order to support GPE Block Devices properly.
10003
10004 Fixed a problem where the error message "Failed to acquire
10005 semaphore" would appear during operations on the embedded
10006 controller (EC).
10007
10008 Code and Data Size: Current core subsystem library sizes are shown
10009 below.  These are the code and data sizes for the acpica.lib
10010 produced by the Microsoft Visual C++ 6.0 compiler, and these
10011 values do not include any ACPI driver or OSPM code.  The debug
10012 version of the code includes the debug output trace mechanism and
10013 has a much larger code and data size.  Note that these values will
10014 vary depending on the efficiency of the compiler and the compiler
10015 options used during generation.
10016
10017   Previous Release
10018     Non-Debug Version:  72.3K Code,   9.5K Data,   81.8K Total
10019     Debug Version:     154.0K Code,  63.4K Data,  217.4K Total
10020   Current Release:
10021     Non-Debug Version:  73.7K Code,   9.5K Data,   83.2K Total
10022     Debug Version:     156.1K Code,  63.6K Data,  219.7K Total
10023
10024
10025 ----------------------------------------
10026 28 February 2003.  Summary of changes for version 20030228.
10027
10028
10029 1) ACPI CA Core Subsystem:
10030
10031 The GPE handling and dispatch code has been completely overhauled
10032 in preparation for support of GPE Block Devices (ID ACPI0006).
10033 This affects internal data structures and code only; there should
10034 be no differences visible externally.  One new file has been
10035 added, evgpeblk.c
10036
10037 The FADT fields GPE0_BLK_LEN and GPE1_BLK_LEN are now the only
10038 fields that are used to determine the GPE block lengths.  The
10039 REGISTER_BIT_WIDTH field of the X_GPEx_BLK extended address
10040 structures are ignored.  This is per the ACPI specification but it
10041 isn't very clear.  The full 256 Block 0/1 GPEs are now supported
10042 (the use of REGISTER_BIT_WIDTH limited the number of GPEs to 128).
10043
10044 In the SCI interrupt handler, removed the read of the PM1_CONTROL
10045 register to look at the SCI_EN bit.  On some machines, this read
10046 causes an SMI event and greatly slows down SCI events.  (This may
10047 in fact be the cause of slow battery status response on some
10048 systems.)
10049
10050 Fixed a problem where a store of a NULL string to a package object
10051 could cause the premature deletion of the object.  This was seen
10052 during execution of the battery _BIF method on some systems,
10053 resulting in no battery data being returned.
10054
10055 Added AcpiWalkResources interface to simplify parsing of resource
10056 lists.
10057
10058 Code and Data Size: Current core subsystem library sizes are shown
10059 below.  These are the code and data sizes for the acpica.lib
10060 produced by the Microsoft Visual C++ 6.0 compiler, and these
10061 values do not include any ACPI driver or OSPM code.  The debug
10062 version of the code includes the debug output trace mechanism and
10063 has a much larger code and data size.  Note that these values will
10064 vary depending on the efficiency of the compiler and the compiler
10065 options used during generation.
10066
10067   Previous Release
10068     Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
10069     Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
10070   Current Release:
10071     Non-Debug Version:  72.3K Code,   9.5K Data,   81.8K Total
10072     Debug Version:     154.0K Code,  63.4K Data,  217.4K Total
10073
10074
10075 2) Linux
10076
10077 S3 fixes (Ole Rohne)
10078
10079 Update ACPI PHP driver with to use new acpi_walk_resource API
10080 (Bjorn Helgaas)
10081
10082 Add S4BIOS support (Pavel Machek)
10083
10084 Map in entire table before performing checksum (John Stultz)
10085
10086 Expand the mem= cmdline to allow the specification of reserved and
10087 ACPI DATA blocks (Pavel Machek)
10088
10089 Never use ACPI on VISWS
10090
10091 Fix derive_pci_id (Ducrot Bruno, Alvaro Lopez)
10092
10093 Revert a change that allowed P_BLK lengths to be 4 or 5. This is
10094 causing us to think that some systems support C2 when they really
10095 don't.
10096
10097 Do not count processor objects for non-present CPUs (Thanks to
10098 Dominik Brodowski)
10099
10100
10101 3) iASL Compiler:
10102
10103 Fixed a problem where ASL include files could not be found and
10104 opened.
10105
10106 Added support for the _PDC reserved name.
10107
10108
10109 ----------------------------------------
10110 22 January 2003.  Summary of changes for version 20030122.
10111
10112
10113 1) ACPI CA Core Subsystem:
10114
10115 Added a check for constructs of the form:  Store (Local0, Local0)
10116 where Local0 is not initialized.  Apparently, some BIOS
10117 programmers believe that this is a NOOP.  Since this store doesn't
10118 do anything anyway, the new prototype behavior will ignore this
10119 error.  This is a case where we can relax the strict checking in
10120 the interpreter in the name of compatibility.
10121
10122
10123 2) Linux
10124
10125 The AcpiSrc Source Conversion Utility has been released with the
10126 Linux package for the first time.  This is the utility that is
10127 used to convert the ACPI CA base source code to the Linux version.
10128
10129 (Both) Handle P_BLK lengths shorter than 6 more gracefully
10130
10131 (Both) Move more headers to include/acpi, and delete an unused
10132 header.
10133
10134 (Both) Move drivers/acpi/include directory to include/acpi
10135
10136 (Both) Boot functions don't use cmdline, so don't pass it around
10137
10138 (Both) Remove include of unused header (Adrian Bunk)
10139
10140 (Both) acpiphp.h includes both linux/acpi.h and acpi_bus.h. Since
10141 the
10142 former now also includes the latter, acpiphp.h only needs the one,
10143 now.
10144
10145 (2.5) Make it possible to select method of bios restoring after S3
10146 resume. [=> no more ugly ifdefs] (Pavel Machek)
10147
10148 (2.5) Make proc write interfaces work (Pavel Machek)
10149
10150 (2.5) Properly init/clean up in cpufreq/acpi (Dominik Brodowski)
10151
10152 (2.5) Break out ACPI Perf code into its own module, under cpufreq
10153 (Dominik Brodowski)
10154
10155 (2.4) S4BIOS support (Ducrot Bruno)
10156
10157 (2.4) Fix acpiphp_glue.c for latest ACPI struct changes (Sergio
10158 Visinoni)
10159
10160
10161 3) iASL Compiler:
10162
10163 Added support to disassemble SSDT and PSDTs.
10164
10165 Implemented support to obtain SSDTs from the Windows registry if
10166 available.
10167
10168
10169 ----------------------------------------
10170 09 January 2003.  Summary of changes for version 20030109.
10171
10172 1) ACPI CA Core Subsystem:
10173
10174 Changed the behavior of the internal Buffer-to-String conversion
10175 function.  The current ACPI specification states that the contents
10176 of the buffer are "converted to a string of two-character
10177 hexadecimal numbers, each separated by a space".  Unfortunately,
10178 this definition is not backwards compatible with existing ACPI 1.0
10179 implementations (although the behavior was not defined in the ACPI
10180 1.0 specification).  The new behavior simply copies data from the
10181 buffer to the string until a null character is found or the end of
10182 the buffer is reached.  The new String object is always null
10183 terminated.  This problem was seen during the generation of _BIF
10184 battery data where incorrect strings were returned for battery
10185 type, etc.  This will also require an errata to the ACPI
10186 specification.
10187
10188 Renamed all instances of NATIVE_UINT and NATIVE_INT to
10189 ACPI_NATIVE_UINT and ACPI_NATIVE_INT, respectively.
10190
10191 Copyright in all module headers (both Linux and non-Linux) has be
10192 updated to 2003.
10193
10194 Code and Data Size: Current core subsystem library sizes are shown
10195 below.  These are the code and data sizes for the acpica.lib
10196 produced by the Microsoft Visual C++ 6.0 compiler, and these
10197 values do not include any ACPI driver or OSPM code.  The debug
10198 version of the code includes the debug output trace mechanism and
10199 has a much larger code and data size.  Note that these values will
10200 vary depending on the efficiency of the compiler and the compiler
10201 options used during generation.
10202
10203   Previous Release
10204     Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
10205     Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
10206   Current Release:
10207     Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
10208     Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
10209
10210
10211 2) Linux
10212
10213 Fixed an oops on module insertion/removal (Matthew Tippett)
10214
10215 (2.4) Fix to handle dynamic size of mp_irqs (Joerg Prante)
10216
10217 (2.5) Replace pr_debug (Randy Dunlap)
10218
10219 (2.5) Remove usage of CPUFREQ_ALL_CPUS (Dominik Brodowski)
10220
10221 (Both) Eliminate spawning of thread from timer callback, in favor
10222 of schedule_work()
10223
10224 (Both) Show Lid status in /proc (Zdenek OGAR Skalak)
10225
10226 (Both) Added define for Fixed Function HW region (Matthew Wilcox)
10227
10228 (Both) Add missing statics to button.c (Pavel Machek)
10229
10230 Several changes have been made to the source code translation
10231 utility that generates the Linux Code in order to make the code
10232 more "Linux-like":
10233
10234 All typedefs on structs and unions have been removed in keeping
10235 with the Linux coding style.
10236
10237 Removed the non-Linux SourceSafe module revision number from each
10238 module header.
10239
10240 Completed major overhaul of symbols to be lowercased for linux.
10241 Doubled the number of symbols that are lowercased.
10242
10243 Fixed a problem where identifiers within procedure headers and
10244 within quotes were not fully lower cased (they were left with a
10245 starting capital.)
10246
10247 Some C macros whose only purpose is to allow the generation of 16-
10248 bit code are now completely removed in the Linux code, increasing
10249 readability and maintainability.
10250
10251 ----------------------------------------
10252
10253 12 December 2002.  Summary of changes for version 20021212.
10254
10255
10256 1) ACPI CA Core Subsystem:
10257
10258 Fixed a problem where the creation of a zero-length AML Buffer
10259 would cause a fault.
10260
10261 Fixed a problem where a Buffer object that pointed to a static AML
10262 buffer (in an ACPI table) could inadvertently be deleted, causing
10263 memory corruption.
10264
10265 Fixed a problem where a user buffer (passed in to the external
10266 ACPI CA interfaces) could be overwritten if the buffer was too
10267 small to complete the operation, causing memory corruption.
10268
10269 Fixed a problem in the Buffer-to-String conversion code where a
10270 string of length one was always returned, regardless of the size
10271 of the input Buffer object.
10272
10273 Removed the NATIVE_CHAR data type across the entire source due to
10274 lack of need and lack of consistent use.
10275
10276 Code and Data Size: Current core subsystem library sizes are shown
10277 below.  These are the code and data sizes for the acpica.lib
10278 produced by the Microsoft Visual C++ 6.0 compiler, and these
10279 values do not include any ACPI driver or OSPM code.  The debug
10280 version of the code includes the debug output trace mechanism and
10281 has a much larger code and data size.  Note that these values will
10282 vary depending on the efficiency of the compiler and the compiler
10283 options used during generation.
10284
10285   Previous Release
10286     Non-Debug Version:  72.1K Code,   9.5K Data,   81.6K Total
10287     Debug Version:     152.7K Code,  62.7K Data,  215.4K Total
10288   Current Release:
10289     Non-Debug Version:  72.0K Code,   9.5K Data,   81.5K Total
10290     Debug Version:     153.0K Code,  62.9K Data,  215.9K Total
10291
10292
10293 ----------------------------------------
10294 05 December 2002.  Summary of changes for version 20021205.
10295
10296 1) ACPI CA Core Subsystem:
10297
10298 Fixed a problem where a store to a String or Buffer object could
10299 cause corruption of the DSDT if the object type being stored was
10300 the same as the target object type and the length of the object
10301 being stored was equal to or smaller than the original (existing)
10302 target object.  This was seen to cause corruption of battery _BIF
10303 buffers if the _BIF method modified the buffer on the fly.
10304
10305 Fixed a problem where an internal error was generated if a control
10306 method invocation was used in an OperationRegion, Buffer, or
10307 Package declaration.  This was caused by the deferred parsing of
10308 the control method and thus the deferred creation of the internal
10309 method object.  The solution to this problem was to create the
10310 internal method object at the moment the method is encountered in
10311 the first pass - so that subsequent references to the method will
10312 able to obtain the required parameter count and thus properly
10313 parse the method invocation.  This problem presented itself as an
10314 AE_AML_INTERNAL during the pass 1 parse phase during table load.
10315
10316 Fixed a problem where the internal String object copy routine did
10317 not always allocate sufficient memory for the target String object
10318 and caused memory corruption.  This problem was seen to cause
10319 "Allocation already present in list!" errors as memory allocation
10320 became corrupted.
10321
10322 Implemented a new function for the evaluation of namespace objects
10323 that allows the specification of the allowable return object
10324 types.  This simplifies a lot of code that checks for a return
10325 object of one or more specific objects returned from the
10326 evaluation (such as _STA, etc.)  This may become and external
10327 function if it would be useful to ACPI-related drivers.
10328
10329 Completed another round of prefixing #defines with "ACPI_" for
10330 clarity.
10331
10332 Completed additional code restructuring to allow more modular
10333 linking for iASL compiler and AcpiExec.  Several files were split
10334 creating new files.  New files:  nsparse.c dsinit.c evgpe.c
10335
10336 Implemented an abort mechanism to terminate an executing control
10337 method via the AML debugger.  This feature is useful for debugging
10338 control methods that depend (wait) for specific hardware
10339 responses.
10340
10341 Code and Data Size: Current core subsystem library sizes are shown
10342 below.  These are the code and data sizes for the acpica.lib
10343 produced by the Microsoft Visual C++ 6.0 compiler, and these
10344 values do not include any ACPI driver or OSPM code.  The debug
10345 version of the code includes the debug output trace mechanism and
10346 has a much larger code and data size.  Note that these values will
10347 vary depending on the efficiency of the compiler and the compiler
10348 options used during generation.
10349
10350   Previous Release
10351     Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
10352     Debug Version:     152.9K Code,  63.3K Data,  216.2K Total
10353   Current Release:
10354     Non-Debug Version:  72.1K Code,   9.5K Data,   81.6K Total
10355     Debug Version:     152.7K Code,  62.7K Data,  215.4K Total
10356
10357
10358 2) iASL Compiler/Disassembler
10359
10360 Fixed a compiler code generation problem for "Interrupt" Resource
10361 Descriptors.  If specified in the ASL, the optional "Resource
10362 Source Index" and "Resource Source" fields were not inserted into
10363 the correct location within the AML resource descriptor, creating
10364 an invalid descriptor.
10365
10366 Fixed a disassembler problem for "Interrupt" resource descriptors.
10367 The optional "Resource Source Index" and "Resource Source" fields
10368 were ignored.
10369
10370
10371 ----------------------------------------
10372 22 November 2002.  Summary of changes for version 20021122.
10373
10374
10375 1) ACPI CA Core Subsystem:
10376
10377 Fixed a reported problem where an object stored to a Method Local
10378 or Arg was not copied to a new object during the store - the
10379 object pointer was simply copied to the Local/Arg.  This caused
10380 all subsequent operations on the Local/Arg to also affect the
10381 original source of the store operation.
10382
10383 Fixed a problem where a store operation to a Method Local or Arg
10384 was not completed properly if the Local/Arg contained a reference
10385 (from RefOf) to a named field.  The general-purpose store-to-
10386 namespace-node code is now used so that this case is handled
10387 automatically.
10388
10389 Fixed a problem where the internal object copy routine would cause
10390 a protection fault if the object being copied was a Package and
10391 contained either 1) a NULL package element or 2) a nested sub-
10392 package.
10393
10394 Fixed a problem with the GPE initialization that resulted from an
10395 ambiguity in the ACPI specification.  One section of the
10396 specification states that both the address and length of the GPE
10397 block must be zero if the block is not supported.  Another section
10398 implies that only the address need be zero if the block is not
10399 supported.  The code has been changed so that both the address and
10400 the length must be non-zero to indicate a valid GPE block (i.e.,
10401 if either the address or the length is zero, the GPE block is
10402 invalid.)
10403
10404 Code and Data Size: Current core subsystem library sizes are shown
10405 below.  These are the code and data sizes for the acpica.lib
10406 produced by the Microsoft Visual C++ 6.0 compiler, and these
10407 values do not include any ACPI driver or OSPM code.  The debug
10408 version of the code includes the debug output trace mechanism and
10409 has a much larger code and data size.  Note that these values will
10410 vary depending on the efficiency of the compiler and the compiler
10411 options used during generation.
10412
10413   Previous Release
10414     Non-Debug Version:  71.3K Code,   9.0K Data,   80.3K Total
10415     Debug Version:     152.7K Code,  63.2K Data,  215.5K Total
10416   Current Release:
10417     Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
10418     Debug Version:     152.9K Code,  63.3K Data,  216.2K Total
10419
10420
10421 2) Linux
10422
10423 Cleaned up EC driver. Exported an external EC read/write
10424 interface. By going through this, other drivers (most notably
10425 sonypi) will be able to serialize access to the EC.
10426
10427
10428 3) iASL Compiler/Disassembler
10429
10430 Implemented support to optionally generate include files for both
10431 ASM and C (the -i switch).  This simplifies BIOS development by
10432 automatically creating include files that contain external
10433 declarations for the symbols that are created within the
10434
10435 (optionally generated) ASM and C AML source files.
10436
10437
10438 ----------------------------------------
10439 15 November 2002.  Summary of changes for version 20021115.
10440
10441 1) ACPI CA Core Subsystem:
10442
10443 Fixed a memory leak problem where an error during resolution of
10444
10445 method arguments during a method invocation from another method
10446 failed to cleanup properly by deleting all successfully resolved
10447 argument objects.
10448
10449 Fixed a problem where the target of the Index() operator was not
10450 correctly constructed if the source object was a package.  This
10451 problem has not been detected because the use of a target operand
10452 with Index() is very rare.
10453
10454 Fixed a problem with the Index() operator where an attempt was
10455 made to delete the operand objects twice.
10456
10457 Fixed a problem where an attempt was made to delete an operand
10458 twice during execution of the CondRefOf() operator if the target
10459 did not exist.
10460
10461 Implemented the first of perhaps several internal create object
10462 functions that create and initialize a specific object type.  This
10463 consolidates duplicated code wherever the object is created, thus
10464 shrinking the size of the subsystem.
10465
10466 Implemented improved debug/error messages for errors that occur
10467 during nested method invocations.  All executing method pathnames
10468 are displayed (with the error) as the call stack is unwound - thus
10469 simplifying debug.
10470
10471 Fixed a problem introduced in the 10/02 release that caused
10472 premature deletion of a buffer object if a buffer was used as an
10473 ASL operand where an integer operand is required (Thus causing an
10474 implicit object conversion from Buffer to Integer.)  The change in
10475 the 10/02 release was attempting to fix a memory leak (albeit
10476 incorrectly.)
10477
10478 Code and Data Size: Current core subsystem library sizes are shown
10479 below.  These are the code and data sizes for the acpica.lib
10480 produced by the Microsoft Visual C++ 6.0 compiler, and these
10481 values do not include any ACPI driver or OSPM code.  The debug
10482 version of the code includes the debug output trace mechanism and
10483 has a much larger code and data size.  Note that these values will
10484 vary depending on the efficiency of the compiler and the compiler
10485 options used during generation.
10486
10487   Previous Release
10488     Non-Debug Version:  71.9K Code,   9.1K Data,   81.0K Total
10489     Debug Version:     153.1K Code,  63.3K Data,  216.4K Total
10490   Current Release:
10491     Non-Debug Version:  71.3K Code,   9.0K Data,   80.3K Total
10492     Debug Version:     152.7K Code,  63.2K Data,  215.5K Total
10493
10494
10495 2) Linux
10496
10497 Changed the implementation of the ACPI semaphores to use down()
10498 instead of down_interruptable().  It is important that the
10499 execution of ACPI control methods not be interrupted by signals.
10500 Methods must run to completion, or the system may be left in an
10501 unknown/unstable state.
10502
10503 Fixed a compilation error when CONFIG_SOFTWARE_SUSPEND is not set.
10504 (Shawn Starr)
10505
10506
10507 3) iASL Compiler/Disassembler
10508
10509
10510 Changed the default location of output files.  All output files
10511 are now placed in the current directory by default instead of in
10512 the directory of the source file.  This change may affect some
10513 existing makefiles, but it brings the behavior of the compiler in
10514 line with other similar tools.  The location of the output files
10515 can be overridden with the -p command line switch.
10516
10517
10518 ----------------------------------------
10519 11 November 2002.  Summary of changes for version 20021111.
10520
10521
10522 0) ACPI Specification 2.0B is released and is now available at:
10523 http://www.acpi.info/index.html
10524
10525
10526 1) ACPI CA Core Subsystem:
10527
10528 Implemented support for the ACPI 2.0 SMBus Operation Regions.
10529 This includes the early detection and handoff of the request to
10530 the SMBus region handler (avoiding all of the complex field
10531 support code), and support for the bidirectional return packet
10532 from an SMBus write operation.  This paves the way for the
10533 development of SMBus drivers in each host operating system.
10534
10535 Fixed a problem where the semaphore WAIT_FOREVER constant was
10536 defined as 32 bits, but must be 16 bits according to the ACPI
10537 specification.  This had the side effect of causing ASL
10538 Mutex/Event timeouts even though the ASL code requested a wait
10539 forever.  Changed all internal references to the ACPI timeout
10540 parameter to 16 bits to prevent future problems.  Changed the name
10541 of WAIT_FOREVER to ACPI_WAIT_FOREVER.
10542
10543 Code and Data Size: Current core subsystem library sizes are shown
10544 below.  These are the code and data sizes for the acpica.lib
10545 produced by the Microsoft Visual C++ 6.0 compiler, and these
10546 values do not include any ACPI driver or OSPM code.  The debug
10547 version of the code includes the debug output trace mechanism and
10548 has a much larger code and data size.  Note that these values will
10549 vary depending on the efficiency of the compiler and the compiler
10550 options used during generation.
10551
10552   Previous Release
10553     Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
10554     Debug Version:     152.3K Code,  63.0K Data,  215.3K Total
10555   Current Release:
10556     Non-Debug Version:  71.9K Code,   9.1K Data,   81.0K Total
10557     Debug Version:     153.1K Code,  63.3K Data,  216.4K Total
10558
10559
10560 2) Linux
10561
10562 Module loading/unloading fixes (John Cagle)
10563
10564
10565 3) iASL Compiler/Disassembler
10566
10567 Added support for the SMBBlockProcessCall keyword (ACPI 2.0)
10568
10569 Implemented support for the disassembly of all SMBus protocol
10570 keywords (SMBQuick, SMBWord, etc.)
10571
10572 ----------------------------------------
10573 01 November 2002.  Summary of changes for version 20021101.
10574
10575
10576 1) ACPI CA Core Subsystem:
10577
10578 Fixed a problem where platforms that have a GPE1 block but no GPE0
10579 block were not handled correctly.  This resulted in a "GPE
10580 overlap" error message.  GPE0 is no longer required.
10581
10582 Removed code added in the previous release that inserted nodes
10583 into the namespace in alphabetical order.  This caused some side-
10584 effects on various machines.  The root cause of the problem is
10585 still under investigation since in theory, the internal ordering
10586 of the namespace nodes should not matter.
10587
10588
10589 Enhanced error reporting for the case where a named object is not
10590 found during control method execution.  The full ACPI namepath
10591 (name reference) of the object that was not found is displayed in
10592 this case.
10593
10594 Note: as a result of the overhaul of the namespace object types in
10595 the previous release, the namespace nodes for the predefined
10596 scopes (_TZ, _PR, etc.) are now of the type ACPI_TYPE_LOCAL_SCOPE
10597 instead of ACPI_TYPE_ANY.  This simplifies the namespace
10598 management code but may affect code that walks the namespace tree
10599 looking for specific object types.
10600
10601 Code and Data Size: Current core subsystem library sizes are shown
10602 below.  These are the code and data sizes for the acpica.lib
10603 produced by the Microsoft Visual C++ 6.0 compiler, and these
10604 values do not include any ACPI driver or OSPM code.  The debug
10605 version of the code includes the debug output trace mechanism and
10606 has a much larger code and data size.  Note that these values will
10607 vary depending on the efficiency of the compiler and the compiler
10608 options used during generation.
10609
10610   Previous Release
10611     Non-Debug Version:  70.7K Code,   8.6K Data,   79.3K Total
10612     Debug Version:     151.7K Code,  62.4K Data,  214.1K Total
10613   Current Release:
10614     Non-Debug Version:  71.4K Code,   9.0K Data,   80.4K Total
10615     Debug Version:     152.3K Code,  63.0K Data,  215.3K Total
10616
10617
10618 2) Linux
10619
10620 Fixed a problem introduced in the previous release where the
10621 Processor and Thermal objects were not recognized and installed in
10622 /proc.  This was related to the scope type change described above.
10623
10624
10625 3) iASL Compiler/Disassembler
10626
10627 Implemented the -g option to get all of the required ACPI tables
10628 from the registry and save them to files (Windows version of the
10629 compiler only.)  The required tables are the FADT, FACS, and DSDT.
10630
10631 Added ACPI table checksum validation during table disassembly in
10632 order to catch corrupted tables.
10633
10634
10635 ----------------------------------------
10636 22 October 2002.  Summary of changes for version 20021022.
10637
10638 1) ACPI CA Core Subsystem:
10639
10640 Implemented a restriction on the Scope operator that the target
10641 must already exist in the namespace at the time the operator is
10642 encountered (during table load or method execution).  In other
10643 words, forward references are not allowed and Scope() cannot
10644 create a new object. This changes the previous behavior where the
10645 interpreter would create the name if not found.  This new behavior
10646 correctly enables the search-to-root algorithm during namespace
10647 lookup of the target name.  Because of this upsearch, this fixes
10648 the known Compaq _SB_.OKEC problem and makes both the AML
10649 interpreter and iASL compiler compatible with other ACPI
10650 implementations.
10651
10652 Completed a major overhaul of the internal ACPI object types for
10653 the ACPI Namespace and the associated operand objects.  Many of
10654 these types had become obsolete with the introduction of the two-
10655 pass namespace load.  This cleanup simplifies the code and makes
10656 the entire namespace load mechanism much clearer and easier to
10657 understand.
10658
10659 Improved debug output for tracking scope opening/closing to help
10660 diagnose scoping issues.  The old scope name as well as the new
10661 scope name are displayed.  Also improved error messages for
10662 problems with ASL Mutex objects and error messages for GPE
10663 problems.
10664
10665 Cleaned up the namespace dump code, removed obsolete code.
10666
10667 All string output (for all namespace/object dumps) now uses the
10668 common ACPI string output procedure which handles escapes properly
10669 and does not emit non-printable characters.
10670
10671 Fixed some issues with constants in the 64-bit version of the
10672 local C library (utclib.c)
10673
10674
10675 2) Linux
10676
10677 EC Driver:  No longer attempts to acquire the Global Lock at
10678 interrupt level.
10679
10680
10681 3) iASL Compiler/Disassembler
10682
10683 Implemented ACPI 2.0B grammar change that disallows all Type 1 and
10684 2 opcodes outside of a control method.  This means that the
10685 "executable" operators (versus the "namespace" operators) cannot
10686 be used at the table level; they can only be used within a control
10687 method.
10688
10689 Implemented the restriction on the Scope() operator where the
10690 target must already exist in the namespace at the time the
10691 operator is encountered (during ASL compilation). In other words,
10692 forward references are not allowed and Scope() cannot create a new
10693 object.  This makes the iASL compiler compatible with other ACPI
10694 implementations and makes the Scope() implementation adhere to the
10695 ACPI specification.
10696
10697 Fixed a problem where namepath optimization for the Alias operator
10698 was optimizing the wrong path (of the two namepaths.)  This caused
10699 a "Missing alias link" error message.
10700
10701 Fixed a problem where an "unknown reserved name" warning could be
10702 incorrectly generated for names like "_SB" when the trailing
10703 underscore is not used in the original ASL.
10704
10705 Fixed a problem where the reserved name check did not handle
10706 NamePaths with multiple NameSegs correctly.  The first nameseg of
10707 the NamePath was examined instead of the last NameSeg.
10708
10709
10710 ----------------------------------------
10711
10712 02 October 2002.  Summary of changes for this release.
10713
10714
10715 1) ACPI CA Core Subsystem version 20021002:
10716
10717 Fixed a problem where a store/copy of a string to an existing
10718 string did not always set the string length properly in the String
10719 object.
10720
10721 Fixed a reported problem with the ToString operator where the
10722 behavior was identical to the ToHexString operator instead of just
10723 simply converting a raw buffer to a string data type.
10724
10725 Fixed a problem where CopyObject and the other "explicit"
10726 conversion operators were not updating the internal namespace node
10727 type as part of the store operation.
10728
10729 Fixed a memory leak during implicit source operand conversion
10730 where the original object was not deleted if it was converted to a
10731 new object of a different type.
10732
10733 Enhanced error messages for all problems associated with namespace
10734 lookups.  Common procedure generates and prints the lookup name as
10735 well as the formatted status.
10736
10737 Completed implementation of a new design for the Alias support
10738 within the namespace.  The existing design did not handle the case
10739 where a new object was assigned to one of the two names due to the
10740 use of an explicit conversion operator, resulting in the two names
10741 pointing to two different objects.  The new design simply points
10742 the Alias name to the original name node - not to the object.
10743 This results in a level of indirection that must be handled in the
10744 name resolution mechanism.
10745
10746 Code and Data Size: Current core subsystem library sizes are shown
10747 below.  These are the code and data sizes for the acpica.lib
10748 produced by the Microsoft Visual C++ 6.0 compiler, and these
10749 values do not include any ACPI driver or OSPM code.  The debug
10750 version of the code includes the debug output trace mechanism and
10751 has a larger code and data size.  Note that these values will vary
10752 depending on the efficiency of the compiler and the compiler
10753 options used during generation.
10754
10755   Previous Release
10756     Non-Debug Version:  69.6K Code,   8.3K Data,   77.9K Total
10757     Debug Version:     150.0K Code,  61.7K Data,  211.7K Total
10758   Current Release:
10759     Non-Debug Version:  70.7K Code,   8.6K Data,   79.3K Total
10760     Debug Version:     151.7K Code,  62.4K Data,  214.1K Total
10761
10762
10763 2) Linux
10764
10765 Initialize thermal driver's timer before it is used. (Knut
10766 Neumann)
10767
10768 Allow handling negative celsius values. (Kochi Takayoshi)
10769
10770 Fix thermal management and make trip points. R/W (Pavel Machek)
10771
10772 Fix /proc/acpi/sleep. (P. Christeas)
10773
10774 IA64 fixes. (David Mosberger)
10775
10776 Fix reversed logic in blacklist code. (Sergio Monteiro Basto)
10777
10778 Replace ACPI_DEBUG define with ACPI_DEBUG_OUTPUT. (Dominik
10779 Brodowski)
10780
10781
10782 3) iASL Compiler/Disassembler
10783
10784 Clarified some warning/error messages.
10785
10786
10787 ----------------------------------------
10788 18 September 2002.  Summary of changes for this release.
10789
10790
10791 1) ACPI CA Core Subsystem version 20020918:
10792
10793 Fixed a reported problem with reference chaining (via the Index()
10794 and RefOf() operators) in the ObjectType() and SizeOf() operators.
10795 The definition of these operators includes the dereferencing of
10796 all chained references to return information on the base object.
10797
10798 Fixed a problem with stores to indexed package elements - the
10799 existing code would not complete the store if an "implicit
10800 conversion" was not performed.  In other words, if the existing
10801 object (package element) was to be replaced completely, the code
10802 didn't handle this case.
10803
10804 Relaxed typechecking on the ASL "Scope" operator to allow the
10805 target name to refer to an object of type Integer, String, or
10806 Buffer, in addition to the scoping object types (Device,
10807 predefined Scopes, Processor, PowerResource, and ThermalZone.)
10808 This allows existing AML code that has workarounds for a bug in
10809 Windows to function properly.  A warning is issued, however.  This
10810 affects both the AML interpreter and the iASL compiler. Below is
10811 an example of this type of ASL code:
10812
10813       Name(DEB,0x00)
10814       Scope(DEB)
10815       {
10816
10817 Fixed some reported problems with 64-bit integer support in the
10818 local implementation of C library functions (clib.c)
10819
10820
10821 2) Linux
10822
10823 Use ACPI fix map region instead of IOAPIC region, since it is
10824 undefined in non-SMP.
10825
10826 Ensure that the SCI has the proper polarity and trigger, even on
10827 systems that do not have an interrupt override entry in the MADT.
10828
10829 2.5 big driver reorganization (Pat Mochel)
10830
10831 Use early table mapping code from acpitable.c (Andi Kleen)
10832
10833 New blacklist entries (Andi Kleen)
10834
10835 Blacklist improvements. Split blacklist code out into a separate
10836 file. Move checking the blacklist to very early. Previously, we
10837 would use ACPI tables, and then halfway through init, check the
10838 blacklist -- too late. Now, it's early enough to completely fall-
10839 back to non-ACPI.
10840
10841
10842 3) iASL Compiler/Disassembler version 20020918:
10843
10844 Fixed a problem where the typechecking code didn't know that an
10845 alias could point to a method.  In other words, aliases were not
10846 being dereferenced during typechecking.
10847
10848
10849 ----------------------------------------
10850 29 August 2002.  Summary of changes for this release.
10851
10852 1) ACPI CA Core Subsystem Version 20020829:
10853
10854 If the target of a Scope() operator already exists, it must be an
10855 object type that actually opens a scope -- such as a Device,
10856 Method, Scope, etc.  This is a fatal runtime error.  Similar error
10857 check has been added to the iASL compiler also.
10858
10859 Tightened up the namespace load to disallow multiple names in the
10860 same scope.  This previously was allowed if both objects were of
10861 the same type.  (i.e., a lookup was the same as entering a new
10862 name).
10863
10864
10865 2) Linux
10866
10867 Ensure that the ACPI interrupt has the proper trigger and
10868 polarity.
10869
10870 local_irq_disable is extraneous. (Matthew Wilcox)
10871
10872 Make "acpi=off" actually do what it says, and not use the ACPI
10873 interpreter *or* the tables.
10874
10875 Added arch-neutral support for parsing SLIT and SRAT tables (Kochi
10876 Takayoshi)
10877
10878
10879 3) iASL Compiler/Disassembler  Version 20020829:
10880
10881 Implemented namepath optimization for name declarations.  For
10882 example, a declaration like "Method (\_SB_.ABCD)" would get
10883 optimized to "Method (ABCD)" if the declaration is within the
10884 \_SB_ scope.  This optimization is in addition to the named
10885 reference path optimization first released in the previous
10886 version. This would seem to complete all possible optimizations
10887 for namepaths within the ASL/AML.
10888
10889 If the target of a Scope() operator already exists, it must be an
10890 object type that actually opens a scope -- such as a Device,
10891 Method, Scope, etc.
10892
10893 Implemented a check and warning for unreachable code in the same
10894 block below a Return() statement.
10895
10896 Fixed a problem where the listing file was not generated if the
10897 compiler aborted if the maximum error count was exceeded (200).
10898
10899 Fixed a problem where the typechecking of method return values was
10900 broken.  This includes the check for a return value when the
10901 method is invoked as a TermArg (a return value is expected.)
10902
10903 Fixed a reported problem where EOF conditions during a quoted
10904 string or comment caused a fault.
10905
10906
10907 ----------------------------------------
10908 15 August 2002.  Summary of changes for this release.
10909
10910 1) ACPI CA Core Subsystem Version 20020815:
10911
10912 Fixed a reported problem where a Store to a method argument that
10913 contains a reference did not perform the indirect store correctly.
10914 This problem was created during the conversion to the new
10915 reference object model - the indirect store to a method argument
10916 code was not updated to reflect the new model.
10917
10918 Reworked the ACPI mode change code to better conform to ACPI 2.0,
10919 handle corner cases, and improve code legibility (Kochi Takayoshi)
10920
10921 Fixed a problem with the pathname parsing for the carat (^)
10922 prefix.  The heavy use of the carat operator by the new namepath
10923 optimization in the iASL compiler uncovered a problem with the AML
10924 interpreter handling of this prefix.  In the case where one or
10925 more carats precede a single nameseg, the nameseg was treated as
10926 standalone and the search rule (to root) was inadvertently
10927 applied.  This could cause both the iASL compiler and the
10928 interpreter to find the wrong object or to miss the error that
10929 should occur if the object does not exist at that exact pathname.
10930
10931 Found and fixed the problem where the HP Pavilion DSDT would not
10932 load.  This was a relatively minor tweak to the table loading code
10933 (a problem caused by the unexpected encounter with a method
10934 invocation not within a control method), but it does not solve the
10935 overall issue of the execution of AML code at the table level.
10936 This investigation is still ongoing.
10937
10938 Code and Data Size: Current core subsystem library sizes are shown
10939 below.  These are the code and data sizes for the acpica.lib
10940 produced by the Microsoft Visual C++ 6.0 compiler, and these
10941 values do not include any ACPI driver or OSPM code.  The debug
10942 version of the code includes the debug output trace mechanism and
10943 has a larger code and data size.  Note that these values will vary
10944 depending on the efficiency of the compiler and the compiler
10945 options used during generation.
10946
10947   Previous Release
10948     Non-Debug Version:  69.1K Code,   8.2K Data,   77.3K Total
10949     Debug Version:     149.4K Code,  61.6K Data,  211.0K Total
10950   Current Release:
10951     Non-Debug Version:  69.6K Code,   8.3K Data,   77.9K Total
10952     Debug Version:     150.0K Code,  61.7K Data,  211.7K Total
10953
10954
10955 2) Linux
10956
10957 Remove redundant slab.h include (Brad Hards)
10958
10959 Fix several bugs in thermal.c (Herbert Nachtnebel)
10960
10961 Make CONFIG_ACPI_BOOT work properly (Pavel Machek)
10962
10963 Change acpi_system_suspend to use updated irq functions (Pavel
10964 Machek)
10965
10966 Export acpi_get_firmware_table (Matthew Wilcox)
10967
10968 Use proper root proc entry for ACPI (Kochi Takayoshi)
10969
10970 Fix early-boot table parsing (Bjorn Helgaas)
10971
10972
10973 3) iASL Compiler/Disassembler
10974
10975 Reworked the compiler options to make them more consistent and to
10976 use two-letter options where appropriate.  We were running out of
10977 sensible letters.   This may break some makefiles, so check the
10978 current options list by invoking the compiler with no parameters.
10979
10980 Completed the design and implementation of the ASL namepath
10981 optimization option for the compiler.  This option optimizes all
10982 references to named objects to the shortest possible path.  The
10983 first attempt tries to utilize a single nameseg (4 characters) and
10984 the "search-to-root" algorithm used by the interpreter.  If that
10985 cannot be used (because either the name is not in the search path
10986 or there is a conflict with another object with the same name),
10987 the pathname is optimized using the carat prefix (usually a
10988 shorter string than specifying the entire path from the root.)
10989
10990 Implemented support to obtain the DSDT from the Windows registry
10991 (when the disassembly option is specified with no input file).
10992 Added this code as the implementation for AcpiOsTableOverride in
10993 the Windows OSL.  Migrated the 16-bit code (used in the AcpiDump
10994 utility) to scan memory for the DSDT to the AcpiOsTableOverride
10995 function in the DOS OSL to make the disassembler truly OS
10996 independent.
10997
10998 Implemented a new option to disassemble and compile in one step.
10999 When used without an input filename, this option will grab the
11000 DSDT from the local machine, disassemble it, and compile it in one
11001 step.
11002
11003 Added a warning message for invalid escapes (a backslash followed
11004 by any character other than the allowable escapes).  This catches
11005 the quoted string error "\_SB_" (which should be "\\_SB_" ).
11006
11007 Also, there are numerous instances in the ACPI specification where
11008 this error occurs.
11009
11010 Added a compiler option to disable all optimizations.  This is
11011 basically the "compatibility mode" because by using this option,
11012 the AML code will come out exactly the same as other ASL
11013 compilers.
11014
11015 Added error messages for incorrectly ordered dependent resource
11016 functions.  This includes: missing EndDependentFn macro at end of
11017 dependent resource list, nested dependent function macros (both
11018 start and end), and missing StartDependentFn macro.  These are
11019 common errors that should be caught at compile time.
11020
11021 Implemented _OSI support for the disassembler and compiler.  _OSI
11022 must be included in the namespace for proper disassembly (because
11023 the disassembler must know the number of arguments.)
11024
11025 Added an "optimization" message type that is optional (off by
11026 default).  This message is used for all optimizations - including
11027 constant folding, integer optimization, and namepath optimization.
11028
11029 ----------------------------------------
11030 25 July 2002.  Summary of changes for this release.
11031
11032
11033 1) ACPI CA Core Subsystem Version 20020725:
11034
11035 The AML Disassembler has been enhanced to produce compilable ASL
11036 code and has been integrated into the iASL compiler (see below) as
11037 well as the single-step disassembly for the AML debugger and the
11038 disassembler for the AcpiDump utility.  All ACPI 2.0A opcodes,
11039 resource templates and macros are fully supported.  The
11040 disassembler has been tested on over 30 different AML files,
11041 producing identical AML when the resulting disassembled ASL file
11042 is recompiled with the same ASL compiler.
11043
11044 Modified the Resource Manager to allow zero interrupts and zero
11045 dma channels during the GetCurrentResources call.  This was
11046 causing problems on some platforms.
11047
11048 Added the AcpiOsRedirectOutput interface to the OSL to simplify
11049 output redirection for the AcpiOsPrintf and AcpiOsVprintf
11050 interfaces.
11051
11052 Code and Data Size: Current core subsystem library sizes are shown
11053 below.  These are the code and data sizes for the acpica.lib
11054 produced by the Microsoft Visual C++ 6.0 compiler, and these
11055 values do not include any ACPI driver or OSPM code.  The debug
11056 version of the code includes the debug output trace mechanism and
11057 has a larger code and data size.  Note that these values will vary
11058 depending on the efficiency of the compiler and the compiler
11059 options used during generation.
11060
11061   Previous Release
11062     Non-Debug Version:  68.7K Code,   7.4K Data,   76.1K Total
11063     Debug Version:     142.9K Code,  58.7K Data,  201.6K Total
11064   Current Release:
11065     Non-Debug Version:  69.1K Code,   8.2K Data,   77.3K Total
11066     Debug Version:     149.4K Code,  61.6K Data,  211.0K Total
11067
11068
11069 2) Linux
11070
11071 Fixed a panic in the EC driver (Dominik Brodowski)
11072
11073 Implemented checksum of the R/XSDT itself during Linux table scan
11074 (Richard Schaal)
11075
11076
11077 3) iASL compiler
11078
11079 The AML disassembler is integrated into the compiler.  The "-d"
11080 option invokes the disassembler  to completely disassemble an
11081 input AML file, producing as output a text ASL file with the
11082 extension ".dsl" (to avoid name collisions with existing .asl
11083 source files.)  A future enhancement will allow the disassembler
11084 to obtain the BIOS DSDT from the registry under Windows.
11085
11086 Fixed a problem with the VendorShort and VendorLong resource
11087 descriptors where an invalid AML sequence was created.
11088
11089 Implemented a fix for BufferData term in the ASL parser.  It was
11090 inadvertently defined twice, allowing invalid syntax to pass and
11091 causing reduction conflicts.
11092
11093 Fixed a problem where the Ones opcode could get converted to a
11094 value of zero if "Ones" was used where a byte, word or dword value
11095 was expected.  The 64-bit value is now truncated to the correct
11096 size with the correct value.
11097
11098
11099
11100 ----------------------------------------
11101 02 July 2002.  Summary of changes for this release.
11102
11103
11104 1) ACPI CA Core Subsystem Version 20020702:
11105
11106 The Table Manager code has been restructured to add several new
11107 features.  Tables that are not required by the core subsystem
11108 (other than the FADT, DSDT, FACS, PSDTs, etc.) are no longer
11109 validated in any way and are returned from AcpiGetFirmwareTable if
11110 requested.  The AcpiOsTableOverride interface is now called for
11111 each table that is loaded by the subsystem in order to allow the
11112 host to override any table it chooses.  Previously, only the DSDT
11113 could be overridden.  Added one new files, tbrsdt.c and
11114 tbgetall.c.
11115
11116 Fixed a problem with the conversion of internal package objects to
11117 external objects (when a package is returned from a control
11118 method.)  The return buffer length was set to zero instead of the
11119 proper length of the package object.
11120
11121 Fixed a reported problem with the use of the RefOf and DeRefOf
11122 operators when passing reference arguments to control methods.  A
11123 new type of Reference object is used internally for references
11124 produced by the RefOf operator.
11125
11126 Added additional error messages in the Resource Manager to explain
11127 AE_BAD_DATA errors when they occur during resource parsing.
11128
11129 Split the AcpiEnableSubsystem into two primitives to enable a
11130 finer granularity initialization sequence.  These two calls should
11131 be called in this order: AcpiEnableSubsystem (flags),
11132 AcpiInitializeObjects (flags).  The flags parameter remains the
11133 same.
11134
11135
11136 2) Linux
11137
11138 Updated the ACPI utilities module to understand the new style of
11139 fully resolved package objects that are now returned from the core
11140 subsystem.  This eliminates errors of the form:
11141
11142     ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PPB_._PRT]
11143     acpi_utils-0430 [145] acpi_evaluate_reference:
11144         Invalid element in package (not a device reference)
11145
11146 The method evaluation utility uses the new buffer allocation
11147 scheme instead of calling AcpiEvaluate Object twice.
11148
11149 Added support for ECDT. This allows the use of the Embedded
11150
11151 Controller before the namespace has been fully initialized, which
11152 is necessary for ACPI 2.0 support, and for some laptops to
11153 initialize properly. (Laptops using ECDT are still rare, so only
11154 limited testing was performed of the added functionality.)
11155
11156 Fixed memory leaks in the EC driver.
11157
11158 Eliminated a brittle code structure in acpi_bus_init().
11159
11160 Eliminated the acpi_evaluate() helper function in utils.c. It is
11161 no longer needed since acpi_evaluate_object can optionally
11162 allocate memory for the return object.
11163
11164 Implemented fix for keyboard hang when getting battery readings on
11165 some systems (Stephen White)
11166
11167 PCI IRQ routing update (Dominik Brodowski)
11168
11169 Fix an ifdef to allow compilation on UP with LAPIC but no IOAPIC
11170 support
11171
11172 ----------------------------------------
11173 11 June 2002.  Summary of changes for this release.
11174
11175
11176 1) ACPI CA Core Subsystem Version 20020611:
11177
11178 Fixed a reported problem where constants such as Zero and One
11179 appearing within _PRT packages were not handled correctly within
11180 the resource manager code.  Originally reported against the ASL
11181 compiler because the code generator now optimizes integers to
11182 their minimal AML representation (i.e. AML constants if possible.)
11183 The _PRT code now handles all AML constant opcodes correctly
11184 (Zero, One, Ones, Revision).
11185
11186 Fixed a problem with the Concatenate operator in the AML
11187 interpreter where a buffer result object was incorrectly marked as
11188 not fully evaluated, causing a run-time error of AE_AML_INTERNAL.
11189
11190 All package sub-objects are now fully resolved before they are
11191 returned from the external ACPI interfaces.  This means that name
11192 strings are resolved to object handles, and constant operators
11193 (Zero, One, Ones, Revision) are resolved to Integers.
11194
11195 Implemented immediate resolution of the AML Constant opcodes
11196 (Zero, One, Ones, Revision) to Integer objects upon detection
11197 within the AML stream. This has simplified and reduced the
11198 generated code size of the subsystem by eliminating about 10
11199 switch statements for these constants (which previously were
11200 contained in Reference objects.)  The complicating issues are that
11201 the Zero opcode is used as a "placeholder" for unspecified
11202 optional target operands and stores to constants are defined to be
11203 no-ops.
11204
11205 Code and Data Size: Current core subsystem library sizes are shown
11206 below. These are the code and data sizes for the acpica.lib
11207 produced by the Microsoft Visual C++ 6.0 compiler, and these
11208 values do not include any ACPI driver or OSPM code.  The debug
11209 version of the code includes the debug output trace mechanism and
11210 has a larger code and data size.  Note that these values will vary
11211 depending on the efficiency of the compiler and the compiler
11212 options used during generation.
11213
11214   Previous Release
11215     Non-Debug Version:  69.3K Code,   7.4K Data,   76.7K Total
11216     Debug Version:     143.8K Code,  58.8K Data,  202.6K Total
11217   Current Release:
11218     Non-Debug Version:  68.7K Code,   7.4K Data,   76.1K Total
11219     Debug Version:     142.9K Code,  58.7K Data,  201.6K Total
11220
11221
11222 2) Linux
11223
11224
11225 Added preliminary support for obtaining _TRA data for PCI root
11226 bridges (Bjorn Helgaas).
11227
11228
11229 3) iASL Compiler Version X2046:
11230
11231 Fixed a problem where the "_DDN" reserved name was defined to be a
11232 control method with one argument.  There are no arguments, and
11233 _DDN does not have to be a control method.
11234
11235 Fixed a problem with the Linux version of the compiler where the
11236 source lines printed with error messages were the wrong lines.
11237 This turned out to be the "LF versus CR/LF" difference between
11238 Windows and Unix.  This appears to be the longstanding issue
11239 concerning listing output and error messages.
11240
11241 Fixed a problem with the Linux version of compiler where opcode
11242 names within error messages were wrong.  This was caused by a
11243 slight difference in the output of the Flex tool on Linux versus
11244 Windows.
11245
11246 Fixed a problem with the Linux compiler where the hex output files
11247 contained some garbage data caused by an internal buffer overrun.
11248
11249
11250 ----------------------------------------
11251 17 May 2002.  Summary of changes for this release.
11252
11253
11254 1) ACPI CA Core Subsystem Version 20020517:
11255
11256 Implemented a workaround to an BIOS bug discovered on the HP
11257 OmniBook where the FADT revision number and the table size are
11258 inconsistent (ACPI 2.0 revision vs. ACPI 1.0 table size).  The new
11259 behavior is to fallback to using only the ACPI 1.0 fields of the
11260 FADT if the table is too small to be a ACPI 2.0 table as claimed
11261 by the revision number.  Although this is a BIOS bug, this is a
11262 case where the workaround is simple enough and with no side
11263 effects, so it seemed prudent to add it.  A warning message is
11264 issued, however.
11265
11266 Implemented minimum size checks for the fixed-length ACPI tables -
11267 - the FADT and FACS, as well as consistency checks between the
11268 revision number and the table size.
11269
11270 Fixed a reported problem in the table override support where the
11271 new table pointer was incorrectly treated as a physical address
11272 instead of a logical address.
11273
11274 Eliminated the use of the AE_AML_ERROR exception and replaced it
11275 with more descriptive codes.
11276
11277 Fixed a problem where an exception would occur if an ASL Field was
11278 defined with no named Field Units underneath it (used by some
11279 index fields).
11280
11281 Code and Data Size: Current core subsystem library sizes are shown
11282 below.  These are the code and data sizes for the acpica.lib
11283 produced by the Microsoft Visual C++ 6.0 compiler, and these
11284 values do not include any ACPI driver or OSPM code.  The debug
11285 version of the code includes the debug output trace mechanism and
11286 has a larger code and data size.  Note that these values will vary
11287 depending on the efficiency of the compiler and the compiler
11288 options used during generation.
11289
11290   Previous Release
11291     Non-Debug Version:  68.8K Code,   7.1K Data,   75.9K Total
11292     Debug Version:     142.9K Code,  58.4K Data,  201.3K Total
11293   Current Release:
11294     Non-Debug Version:  69.3K Code,   7.4K Data,   76.7K Total
11295     Debug Version:     143.8K Code,  58.8K Data,  202.6K Total
11296
11297
11298
11299 2) Linux
11300
11301 Much work done on ACPI init (MADT and PCI IRQ routing support).
11302 (Paul D. and Dominik Brodowski)
11303
11304 Fix PCI IRQ-related panic on boot (Sam Revitch)
11305
11306 Set BM_ARB_DIS when entering a sleep state (Ducrot Bruno)
11307
11308 Fix "MHz" typo (Dominik Brodowski)
11309
11310 Fix RTC year 2000 issue (Dominik Brodowski)
11311
11312 Preclude multiple button proc entries (Eric Brunet)
11313
11314 Moved arch-specific code out of include/platform/aclinux.h
11315
11316 3) iASL Compiler Version X2044:
11317
11318 Implemented error checking for the string used in the EISAID macro
11319 (Usually used in the definition of the _HID object.)  The code now
11320 strictly enforces the PnP format - exactly 7 characters, 3
11321 uppercase letters and 4 hex digits.
11322
11323 If a raw string is used in the definition of the _HID object
11324 (instead of the EISAID macro), the string must contain all
11325 alphanumeric characters (e.g., "*PNP0011" is not allowed because
11326 of the asterisk.)
11327
11328 Implemented checking for invalid use of ACPI reserved names for
11329 most of the name creation operators (Name, Device, Event, Mutex,
11330 OperationRegion, PowerResource, Processor, and ThermalZone.)
11331 Previously, this check was only performed for control methods.
11332
11333 Implemented an additional check on the Name operator to emit an
11334 error if a reserved name that must be implemented in ASL as a
11335 control method is used.  We know that a reserved name must be a
11336 method if it is defined with input arguments.
11337
11338 The warning emitted when a namespace object reference is not found
11339 during the cross reference phase has been changed into an error.
11340 The "External" directive should be used for names defined in other
11341 modules.
11342
11343
11344 4) Tools and Utilities
11345
11346 The 16-bit tools (adump16 and aexec16) have been regenerated and
11347 tested.
11348
11349 Fixed a problem with the output of both acpidump and adump16 where
11350 the indentation of closing parentheses and brackets was not
11351
11352 aligned properly with the parent block.
11353
11354
11355 ----------------------------------------
11356 03 May 2002.  Summary of changes for this release.
11357
11358
11359 1) ACPI CA Core Subsystem Version 20020503:
11360
11361 Added support a new OSL interface that allows the host operating
11362
11363 system software to override the DSDT found in the firmware -
11364 AcpiOsTableOverride.  With this interface, the OSL can examine the
11365 version of the firmware DSDT and replace it with a different one
11366 if desired.
11367
11368 Added new external interfaces for accessing ACPI registers from
11369 device drivers and other system software - AcpiGetRegister and
11370 AcpiSetRegister.  This was simply an externalization of the
11371 existing AcpiHwBitRegister interfaces.
11372
11373 Fixed a regression introduced in the previous build where the
11374 ASL/AML CreateField operator always returned an error,
11375 "destination must be a NS Node".
11376
11377 Extended the maximum time (before failure) to successfully enable
11378 ACPI mode to 3 seconds.
11379
11380 Code and Data Size: Current core subsystem library sizes are shown
11381 below.  These are the code and data sizes for the acpica.lib
11382 produced by the Microsoft Visual C++ 6.0 compiler, and these
11383 values do not include any ACPI driver or OSPM code.  The debug
11384 version of the code includes the debug output trace mechanism and
11385 has a larger code and data size.  Note that these values will vary
11386 depending on the efficiency of the compiler and the compiler
11387 options used during generation.
11388
11389   Previous Release
11390     Non-Debug Version:  68.5K Code,   7.0K Data,   75.5K Total
11391     Debug Version:     142.4K Code,  58.3K Data,  200.7K Total
11392   Current Release:
11393     Non-Debug Version:  68.8K Code,   7.1K Data,   75.9K Total
11394     Debug Version:     142.9K Code,  58.4K Data,  201.3K Total
11395
11396
11397 2) Linux
11398
11399 Enhanced ACPI init code for SMP. We are now fully MPS and $PIR-
11400 free. While 3 out of 4 of our in-house systems work fine, the last
11401 one still hangs when testing the LAPIC timer.
11402
11403 Renamed many files in 2.5 kernel release to omit "acpi_" from the
11404 name.
11405
11406 Added warning on boot for Presario 711FR.
11407
11408 Sleep improvements (Pavel Machek)
11409
11410 ACPI can now be built without CONFIG_PCI enabled.
11411
11412 IA64: Fixed memory map functions (JI Lee)
11413
11414
11415 3) iASL Compiler Version X2043:
11416
11417 Added support to allow the compiler to be integrated into the MS
11418 VC++ development environment for one-button compilation of single
11419 files or entire projects -- with error-to-source-line mapping.
11420
11421 Implemented support for compile-time constant folding for the
11422 Type3, Type4, and Type5 opcodes first defined in the ACPI 2.0
11423 specification.  This allows the ASL writer to use expressions
11424 instead of Integer/Buffer/String constants in terms that must
11425 evaluate to constants at compile time and will also simplify the
11426 emitted AML in any such sub-expressions that can be folded
11427 (evaluated at compile-time.)  This increases the size of the
11428 compiler significantly because a portion of the ACPI CA AML
11429 interpreter is included within the compiler in order to pre-
11430 evaluate constant expressions.
11431
11432
11433 Fixed a problem with the "Unicode" ASL macro that caused the
11434 compiler to fault.  (This macro is used in conjunction with the
11435 _STR reserved name.)
11436
11437 Implemented an AML opcode optimization to use the Zero, One, and
11438 Ones opcodes where possible to further reduce the size of integer
11439 constants and thus reduce the overall size of the generated AML
11440 code.
11441
11442 Implemented error checking for new reserved terms for ACPI version
11443 2.0A.
11444
11445 Implemented the -qr option to display the current list of ACPI
11446 reserved names known to the compiler.
11447
11448 Implemented the -qc option to display the current list of ASL
11449 operators that are allowed within constant expressions and can
11450 therefore be folded at compile time if the operands are constants.
11451
11452
11453 4) Documentation
11454
11455 Updated the Programmer's Reference for new interfaces, data types,
11456 and memory allocation model options.
11457
11458 Updated the iASL Compiler User Reference to apply new format and
11459 add information about new features and options.
11460
11461 ----------------------------------------
11462 19 April 2002.  Summary of changes for this release.
11463
11464 1) ACPI CA Core Subsystem Version 20020419:
11465
11466 The source code base for the Core Subsystem has been completely
11467 cleaned with PC-lint (FlexLint) for both 32-bit and 64-bit
11468 versions.  The Lint option files used are included in the
11469 /acpi/generate/lint directory.
11470
11471 Implemented enhanced status/error checking across the entire
11472 Hardware manager subsystem.  Any hardware errors (reported from
11473 the OSL) are now bubbled up and will abort a running control
11474 method.
11475
11476
11477 Fixed a problem where the per-ACPI-table integer width (32 or 64)
11478 was stored only with control method nodes, causing a fault when
11479 non-control method code was executed during table loading.  The
11480 solution implemented uses a global variable to indicate table
11481 width across the entire ACPI subsystem.  Therefore, ACPI CA does
11482 not support mixed integer widths across different ACPI tables
11483 (DSDT, SSDT).
11484
11485 Fixed a problem where NULL extended fields (X fields) in an ACPI
11486 2.0 ACPI FADT caused the table load to fail.  Although the
11487 existing ACPI specification is a bit fuzzy on this topic, the new
11488 behavior is to fall back on a ACPI 1.0 field if the corresponding
11489 ACPI 2.0 X field is zero (even though the table revision indicates
11490 a full ACPI 2.0 table.)  The ACPI specification will be updated to
11491 clarify this issue.
11492
11493 Fixed a problem with the SystemMemory operation region handler
11494 where memory was always accessed byte-wise even if the AML-
11495 specified access width was larger than a byte.  This caused
11496 problems on systems with memory-mapped I/O.  Memory is now
11497 accessed with the width specified.  On systems that do not support
11498 non-aligned transfers, a check is made to guarantee proper address
11499 alignment before proceeding in order to avoid an AML-caused
11500 alignment fault within the kernel.
11501
11502
11503 Fixed a problem with the ExtendedIrq resource where only one byte
11504 of the 4-byte Irq field was extracted.
11505
11506 Fixed the AcpiExDigitsNeeded() procedure to support _UID.  This
11507 function was out of date and required a rewrite.
11508
11509 Code and Data Size: Current core subsystem library sizes are shown
11510 below.  These are the code and data sizes for the acpica.lib
11511 produced by the Microsoft Visual C++ 6.0 compiler, and these
11512 values do not include any ACPI driver or OSPM code.  The debug
11513 version of the code includes the debug output trace mechanism and
11514 has a larger code and data size.  Note that these values will vary
11515 depending on the efficiency of the compiler and the compiler
11516 options used during generation.
11517
11518   Previous Release
11519     Non-Debug Version:  66.6K Code,   6.5K Data,   73.1K Total
11520     Debug Version:     139.8K Code,  57.4K Data,  197.2K Total
11521   Current Release:
11522     Non-Debug Version:  68.5K Code,   7.0K Data,   75.5K Total
11523     Debug Version:     142.4K Code,  58.3K Data,  200.7K Total
11524
11525
11526 2) Linux
11527
11528 PCI IRQ routing fixes (Dominik Brodowski)
11529
11530
11531 3) iASL Compiler Version X2042:
11532
11533 Implemented an additional compile-time error check for a field
11534 unit whose size + minimum access width would cause a run-time
11535 access beyond the end-of-region.  Previously, only the field size
11536 itself was checked.
11537
11538 The Core subsystem and iASL compiler now share a common parse
11539 object in preparation for compile-time evaluation of the type
11540 3/4/5 ASL operators.
11541
11542
11543 ----------------------------------------
11544 Summary of changes for this release: 03_29_02
11545
11546 1) ACPI CA Core Subsystem Version 20020329:
11547
11548 Implemented support for late evaluation of TermArg operands to
11549 Buffer and Package objects.  This allows complex expressions to be
11550 used in the declarations of these object types.
11551
11552 Fixed an ACPI 1.0 compatibility issue when reading Fields. In ACPI
11553 1.0, if the field was larger than 32 bits, it was returned as a
11554 buffer - otherwise it was returned as an integer.  In ACPI 2.0,
11555 the field is returned as a buffer only if the field is larger than
11556 64 bits.  The TableRevision is now considered when making this
11557 conversion to avoid incompatibility with existing ASL code.
11558
11559 Implemented logical addressing for AcpiOsGetRootPointer.  This
11560 allows an RSDP with either a logical or physical address.  With
11561 this support, the host OS can now override all ACPI tables with
11562 one logical RSDP.  Includes implementation of  "typed" pointer
11563 support to allow a common data type for both physical and logical
11564 pointers internally.  This required a change to the
11565 AcpiOsGetRootPointer interface.
11566
11567 Implemented the use of ACPI 2.0 Generic Address Structures for all
11568 GPE, Fixed Event, and PM Timer I/O.  This allows the use of memory
11569 mapped I/O for these ACPI features.
11570
11571 Initialization now ignores not only non-required tables (All
11572 tables other than the FADT, FACS, DSDT, and SSDTs), but also does
11573 not validate the table headers of unrecognized tables.
11574
11575 Fixed a problem where a notify handler could only be
11576 installed/removed on an object of type Device.  All "notify"
11577
11578 objects are now supported -- Devices, Processor, Power, and
11579 Thermal.
11580
11581 Removed most verbosity from the ACPI_DB_INFO debug level.  Only
11582 critical information is returned when this debug level is enabled.
11583
11584 Code and Data Size: Current core subsystem library sizes are shown
11585 below.  These are the code and data sizes for the acpica.lib
11586 produced by the Microsoft Visual C++ 6.0 compiler, and these
11587 values do not include any ACPI driver or OSPM code.  The debug
11588 version of the code includes the debug output trace mechanism and
11589 has a larger code and data size.  Note that these values will vary
11590 depending on the efficiency of the compiler and the compiler
11591 options used during generation.
11592
11593   Previous Release
11594     Non-Debug Version:  65.4K Code,   6.2K Data,   71.6K Total
11595     Debug Version:     138.0K Code,  56.6K Data,  194.6K Total
11596   Current Release:
11597     Non-Debug Version:  66.6K Code,   6.5K Data,   73.1K Total
11598     Debug Version:     139.8K Code,  57.4K Data,  197.2K Total
11599
11600
11601 2) Linux:
11602
11603 The processor driver (acpi_processor.c) now fully supports ACPI
11604 2.0-based processor performance control (e.g. Intel(R)
11605 SpeedStep(TM) technology) Note that older laptops that only have
11606 the Intel "applet" interface are not supported through this.  The
11607 'limit' and 'performance' interface (/proc) are fully functional.
11608 [Note that basic policy for controlling performance state
11609 transitions will be included in the next version of ospmd.]  The
11610 idle handler was modified to more aggressively use C2, and PIIX4
11611 errata handling underwent a complete overhaul (big thanks to
11612 Dominik Brodowski).
11613
11614 Added support for ACPI-PCI device binding (acpi_pci_root.c). _ADR-
11615 based devices in the ACPI namespace are now dynamically bound
11616 (associated) with their PCI counterparts (e.g. PCI1->01:00.0).
11617 This allows, among other things, ACPI to resolve bus numbers for
11618 subordinate PCI bridges.
11619
11620 Enhanced PCI IRQ routing to get the proper bus number for _PRT
11621 entries defined underneath PCI bridges.
11622
11623 Added IBM 600E to bad bios list due to invalid _ADR value for
11624 PIIX4 PCI-ISA bridge, resulting in improper PCI IRQ routing.
11625
11626 In the process of adding full MADT support (e.g. IOAPIC) for IA32
11627 (acpi.c, mpparse.c) -- stay tuned.
11628
11629 Added back visual differentiation between fixed-feature and
11630 control-method buttons in dmesg.  Buttons are also subtyped (e.g.
11631 button/power/PWRF) to simplify button identification.
11632
11633 We no longer use -Wno-unused when compiling debug. Please ignore
11634 any "_THIS_MODULE defined but not used" messages.
11635
11636 Can now shut down the system using "magic sysrq" key.
11637
11638
11639 3) iASL Compiler version 2041:
11640
11641 Fixed a problem where conversion errors for hex/octal/decimal
11642 constants were not reported.
11643
11644 Implemented a fix for the General Register template Address field.
11645 This field was 8 bits when it should be 64.
11646
11647 Fixed a problem where errors/warnings were no longer being emitted
11648 within the listing output file.
11649
11650 Implemented the ACPI 2.0A restriction on ACPI Table Signatures to
11651 exactly 4 characters, alphanumeric only.
11652
11653
11654
11655
11656 ----------------------------------------
11657 Summary of changes for this release: 03_08_02
11658
11659
11660 1) ACPI CA Core Subsystem Version 20020308:
11661
11662 Fixed a problem with AML Fields where the use of the "AccessAny"
11663 keyword could cause an interpreter error due to attempting to read
11664 or write beyond the end of the parent Operation Region.
11665
11666 Fixed a problem in the SystemMemory Operation Region handler where
11667 an attempt was made to map memory beyond the end of the region.
11668 This was the root cause of the "AE_ERROR" and "AE_NO_MEMORY"
11669 errors on some Linux systems.
11670
11671 Fixed a problem where the interpreter/namespace "search to root"
11672 algorithm was not functioning for some object types.  Relaxed the
11673 internal restriction on the search to allow upsearches for all
11674 external object types as well as most internal types.
11675
11676
11677 2) Linux:
11678
11679 We now use safe_halt() macro versus individual calls to sti | hlt.
11680
11681 Writing to the processor limit interface should now work. "echo 1"
11682 will increase the limit, 2 will decrease, and 0 will reset to the
11683
11684 default.
11685
11686
11687 3) ASL compiler:
11688
11689 Fixed segfault on Linux version.
11690
11691
11692 ----------------------------------------
11693 Summary of changes for this release: 02_25_02
11694
11695 1) ACPI CA Core Subsystem:
11696
11697
11698 Fixed a problem where the GPE bit masks were not initialized
11699 properly, causing erratic GPE behavior.
11700
11701 Implemented limited support for multiple calling conventions.  The
11702 code can be generated with either the VPL (variable parameter
11703 list, or "C") convention, or the FPL (fixed parameter list, or
11704 "Pascal") convention.  The core subsystem is about 3.4% smaller
11705 when generated with FPL.
11706
11707
11708 2) Linux
11709
11710 Re-add some /proc/acpi/event functionality that was lost during
11711 the rewrite
11712
11713 Resolved issue with /proc events for fixed-feature buttons showing
11714 up as the system device.
11715
11716 Fixed checks on C2/C3 latencies to be inclusive of maximum values.
11717
11718 Replaced AE_ERRORs in acpi_osl.c with more specific error codes.
11719
11720 Changed ACPI PRT option from "pci=noacpi-routing" to "pci=noacpi"
11721
11722 Fixed limit interface & usage to fix bugs with passive cooling
11723 hysterisis.
11724
11725 Restructured PRT support.
11726
11727
11728 ----------------------------------------
11729 Summary of changes for this label: 02_14_02
11730
11731
11732 1) ACPI CA Core Subsystem:
11733
11734 Implemented support in AcpiLoadTable to allow loading of FACS and
11735 FADT tables.
11736
11737 Suport for the now-obsolete interim 0.71 64-bit ACPI tables has
11738 been removed.  All 64-bit platforms should be migrated to the ACPI
11739 2.0 tables.  The actbl71.h header has been removed from the source
11740 tree.
11741
11742 All C macros defined within the subsystem have been prefixed with
11743 "ACPI_" to avoid collision with other system include files.
11744
11745 Removed the return value for the two AcpiOsPrint interfaces, since
11746 it is never used and causes lint warnings for ignoring the return
11747 value.
11748
11749 Added error checking to all internal mutex acquire and release
11750 calls.  Although a failure from one of these interfaces is
11751 probably a fatal system error, these checks will cause the
11752 immediate abort of the currently executing method or interface.
11753
11754 Fixed a problem where the AcpiSetCurrentResources interface could
11755 fault.  This was a side effect of the deployment of the new memory
11756 allocation model.
11757
11758 Fixed a couple of problems with the Global Lock support introduced
11759 in the last major build.  The "common" (1.0/2.0) internal FACS was
11760 being overwritten with the FACS signature and clobbering the
11761 Global Lock pointer.  Also, the actual firmware FACS was being
11762 unmapped after construction of the "common" FACS, preventing
11763 access to the actual Global Lock field within it.  The "common"
11764 internal FACS is no longer installed as an actual ACPI table; it
11765 is used simply as a global.
11766
11767 Code and Data Size: Current core subsystem library sizes are shown
11768 below.  These are the code and data sizes for the acpica.lib
11769 produced by the Microsoft Visual C++ 6.0 compiler, and these
11770 values do not include any ACPI driver or OSPM code.  The debug
11771 version of the code includes the debug output trace mechanism and
11772 has a larger code and data size.  Note that these values will vary
11773 depending on the efficiency of the compiler and the compiler
11774 options used during generation.
11775
11776   Previous Release (02_07_01)
11777     Non-Debug Version:  65.2K Code,   6.2K Data,   71.4K Total
11778     Debug Version:     136.9K Code,  56.4K Data,  193.3K Total
11779   Current Release:
11780     Non-Debug Version:  65.4K Code,   6.2K Data,   71.6K Total
11781     Debug Version:     138.0K Code,  56.6K Data,  194.6K Total
11782
11783
11784 2) Linux
11785
11786 Updated Linux-specific code for core macro and OSL interface
11787 changes described above.
11788
11789 Improved /proc/acpi/event. It now can be opened only once and has
11790 proper poll functionality.
11791
11792 Fixed and restructured power management (acpi_bus).
11793
11794 Only create /proc "view by type" when devices of that class exist.
11795
11796 Fixed "charging/discharging" bug (and others) in acpi_battery.
11797
11798 Improved thermal zone code.
11799
11800
11801 3) ASL Compiler, version X2039:
11802
11803
11804 Implemented the new compiler restriction on ASL String hex/octal
11805 escapes to non-null, ASCII values.  An error results if an invalid
11806 value is used.  (This will require an ACPI 2.0 specification
11807 change.)
11808
11809 AML object labels that are output to the optional C and ASM source
11810 are now prefixed with both the ACPI table signature and table ID
11811 to help guarantee uniqueness within a large BIOS project.
11812
11813
11814 ----------------------------------------
11815 Summary of changes for this label: 02_01_02
11816
11817 1) ACPI CA Core Subsystem:
11818
11819 ACPI 2.0 support is complete in the entire Core Subsystem and the
11820 ASL compiler. All new ACPI 2.0 operators are implemented and all
11821 other changes for ACPI 2.0 support are complete.  With
11822 simultaneous code and data optimizations throughout the subsystem,
11823 ACPI 2.0 support has been implemented with almost no additional
11824 cost in terms of code and data size.
11825
11826 Implemented a new mechanism for allocation of return buffers.  If
11827 the buffer length is set to ACPI_ALLOCATE_BUFFER, the buffer will
11828 be allocated on behalf of the caller.  Consolidated all return
11829 buffer validation and allocation to a common procedure.  Return
11830 buffers will be allocated via the primary OSL allocation interface
11831 since it appears that a separate pool is not needed by most users.
11832 If a separate pool is required for these buffers, the caller can
11833 still use the original mechanism and pre-allocate the buffer(s).
11834
11835 Implemented support for string operands within the DerefOf
11836 operator.
11837
11838 Restructured the Hardware and Event managers to be table driven,
11839 simplifying the source code and reducing the amount of generated
11840 code.
11841
11842 Split the common read/write low-level ACPI register bitfield
11843 procedure into a separate read and write, simplifying the code
11844 considerably.
11845
11846 Obsoleted the AcpiOsCallocate OSL interface.  This interface was
11847 used only a handful of times and didn't have enough critical mass
11848 for a separate interface.  Replaced with a common calloc procedure
11849 in the core.
11850
11851 Fixed a reported problem with the GPE number mapping mechanism
11852 that allows GPE1 numbers to be non-contiguous with GPE0.
11853 Reorganized the GPE information and shrunk a large array that was
11854 originally large enough to hold info for all possible GPEs (256)
11855 to simply large enough to hold all GPEs up to the largest GPE
11856 number on the machine.
11857
11858 Fixed a reported problem with resource structure alignment on 64-
11859 bit platforms.
11860
11861 Changed the AcpiEnableEvent and AcpiDisableEvent external
11862 interfaces to not require any flags for the common case of
11863 enabling/disabling a GPE.
11864
11865 Implemented support to allow a "Notify" on a Processor object.
11866
11867 Most TBDs in comments within the source code have been resolved
11868 and eliminated.
11869
11870
11871 Fixed a problem in the interpreter where a standalone parent
11872 prefix (^) was not handled correctly in the interpreter and
11873 debugger.
11874
11875 Removed obsolete and unnecessary GPE save/restore code.
11876
11877 Implemented Field support in the ASL Load operator.  This allows a
11878 table to be loaded from a named field, in addition to loading a
11879 table directly from an Operation Region.
11880
11881 Implemented timeout and handle support in the external Global Lock
11882 interfaces.
11883
11884 Fixed a problem in the AcpiDump utility where pathnames were no
11885 longer being generated correctly during the dump of named objects.
11886
11887 Modified the AML debugger to give a full display of if/while
11888 predicates instead of just one AML opcode at a time.  (The
11889 predicate can have several nested ASL statements.)  The old method
11890 was confusing during single stepping.
11891
11892 Code and Data Size: Current core subsystem library sizes are shown
11893 below. These are the code and data sizes for the acpica.lib
11894 produced by the Microsoft Visual C++ 6.0 compiler, and these
11895 values do not include any ACPI driver or OSPM code.  The debug
11896 version of the code includes the debug output trace mechanism and
11897 has a larger code and data size.  Note that these values will vary
11898 depending on the efficiency of the compiler and the compiler
11899 options used during generation.
11900
11901   Previous Release (12_18_01)
11902      Non-Debug Version:  66.1K Code,   5.5K Data,   71.6K Total
11903      Debug Version:     138.3K Code,  55.9K Data,  194.2K Total
11904    Current Release:
11905      Non-Debug Version:  65.2K Code,   6.2K Data,   71.4K Total
11906      Debug Version:     136.9K Code,  56.4K Data,  193.3K Total
11907
11908 2) Linux
11909
11910  Implemented fix for PIIX reverse throttling errata (Processor
11911 driver)
11912
11913 Added new Limit interface (Processor and Thermal drivers)
11914
11915 New thermal policy (Thermal driver)
11916
11917 Many updates to /proc
11918
11919 Battery "low" event support (Battery driver)
11920
11921 Supports ACPI PCI IRQ routing (PCI Link and PCI root drivers)
11922
11923 IA32 - IA64 initialization unification, no longer experimental
11924
11925 Menuconfig options redesigned
11926
11927 3) ASL Compiler, version X2037:
11928
11929 Implemented several new output features to simplify integration of
11930 AML code into  firmware: 1) Output the AML in C source code with
11931 labels for each named ASL object.  The    original ASL source code
11932 is interleaved as C comments. 2) Output the AML in ASM source code
11933 with labels and interleaved ASL    source. 3) Output the AML in
11934 raw hex table form, in either C or ASM.
11935
11936 Implemented support for optional string parameters to the
11937 LoadTable operator.
11938
11939 Completed support for embedded escape sequences within string
11940 literals.  The compiler now supports all single character escapes
11941 as well as the Octal and Hex escapes.  Note: the insertion of a
11942 null byte into a string literal (via the hex/octal escape) causes
11943 the string to be immediately terminated.  A warning is issued.
11944
11945 Fixed a problem where incorrect AML was generated for the case
11946 where an ASL namepath consists of a single parent prefix (
11947
11948 ) with no trailing name segments.
11949
11950 The compiler has been successfully generated with a 64-bit C
11951 compiler.
11952
11953
11954
11955
11956 ----------------------------------------
11957 Summary of changes for this label: 12_18_01
11958
11959 1) Linux
11960
11961 Enhanced blacklist with reason and severity fields. Any table's
11962 signature may now be used to identify a blacklisted system.
11963
11964 Call _PIC control method to inform the firmware which interrupt
11965 model the OS is using. Turn on any disabled link devices.
11966
11967 Cleaned up busmgr /proc error handling (Andreas Dilger)
11968
11969  2) ACPI CA Core Subsystem:
11970
11971 Implemented ACPI 2.0 semantics for the "Break" operator (Exit from
11972 while loop)
11973
11974 Completed implementation of the ACPI 2.0 "Continue",
11975 "ConcatenateResTemplate", "DataTableRegion", and "LoadTable"
11976 operators.  All new ACPI 2.0 operators are now implemented in both
11977 the ASL compiler and the AML interpreter.  The only remaining ACPI
11978 2.0 task is support for the String data type in the DerefOf
11979 operator.  Fixed a problem with AcquireMutex where the status code
11980 was lost if the caller had to actually wait for the mutex.
11981
11982 Increased the maximum ASL Field size from 64K bits to 4G bits.
11983
11984 Completed implementation of the external Global Lock interfaces --
11985 AcpiAcquireGlobalLock and AcpiReleaseGlobalLock.  The Timeout and
11986 Handler parameters were added.
11987
11988 Completed another pass at removing warnings and issues when
11989 compiling with 64-bit compilers.  The code now compiles cleanly
11990 with the Intel 64-bit C/C++ compiler.  Most notably, the pointer
11991 add and subtract (diff) macros have changed considerably.
11992
11993
11994 Created and deployed a new ACPI_SIZE type that is 64-bits wide on
11995 64-bit platforms, 32-bits on all others.  This type is used
11996 wherever memory allocation and/or the C sizeof() operator is used,
11997 and affects the OSL memory allocation interfaces AcpiOsAllocate
11998 and AcpiOsCallocate.
11999
12000 Implemented sticky user breakpoints in the AML debugger.
12001
12002 Code and Data Size: Current core subsystem library sizes are shown
12003 below. These are the code and data sizes for the acpica.lib
12004 produced by the Microsoft Visual C++ 6.0 compiler, and these
12005 values do not include any ACPI driver or OSPM code.  The debug
12006 version of the code includes the debug output trace mechanism and
12007 has a larger code and data size. Note that these values will vary
12008 depending on the efficiency of the compiler and the compiler
12009 options used during generation.
12010
12011   Previous Release (12_05_01)
12012      Non-Debug Version:  64.7K Code,   5.3K Data,   70.0K Total
12013      Debug Version:     136.2K Code,  55.6K Data,  191.8K Total
12014    Current Release:
12015      Non-Debug Version:  66.1K Code,   5.5K Data,   71.6K Total
12016      Debug Version:     138.3K Code,  55.9K Data,  194.2K Total
12017
12018  3) ASL Compiler, version X2034:
12019
12020 Now checks for (and generates an error if detected) the use of a
12021 Break or Continue statement without an enclosing While statement.
12022
12023
12024 Successfully generated the compiler with the Intel 64-bit C
12025 compiler.
12026
12027  ----------------------------------------
12028 Summary of changes for this label: 12_05_01
12029
12030  1) ACPI CA Core Subsystem:
12031
12032 The ACPI 2.0 CopyObject operator is fully implemented.  This
12033 operator creates a new copy of an object (and is also used to
12034 bypass the "implicit conversion" mechanism of the Store operator.)
12035
12036 The ACPI 2.0 semantics for the SizeOf operator are fully
12037 implemented.  The change is that performing a SizeOf on a
12038 reference object causes an automatic dereference of the object to
12039 tha actual value before the size is evaluated. This behavior was
12040 undefined in ACPI 1.0.
12041
12042 The ACPI 2.0 semantics for the Extended IRQ resource descriptor
12043 have been implemented.  The interrupt polarity and mode are now
12044 independently set.
12045
12046 Fixed a problem where ASL Constants (Zero, One, Ones, Revision)
12047 appearing in Package objects were not properly converted to
12048 integers when the internal Package was converted to an external
12049 object (via the AcpiEvaluateObject interface.)
12050
12051 Fixed a problem with the namespace object deletion mechanism for
12052 objects created by control methods.  There were two parts to this
12053 problem: 1) Objects created during the initialization phase method
12054 parse were not being deleted, and 2) The object owner ID mechanism
12055 to track objects was broken.
12056
12057 Fixed a problem where the use of the ASL Scope operator within a
12058 control method would result in an invalid opcode exception.
12059
12060 Fixed a problem introduced in the previous label where the buffer
12061 length required for the _PRT structure was not being returned
12062 correctly.
12063
12064 Code and Data Size: Current core subsystem library sizes are shown
12065 below. These are the code and data sizes for the acpica.lib
12066 produced by the Microsoft Visual C++ 6.0 compiler, and these
12067 values do not include any ACPI driver or OSPM code.  The debug
12068 version of the code includes the debug output trace mechanism and
12069 has a larger code and data size.  Note that these values will vary
12070 depending on the efficiency of the compiler and the compiler
12071 options used during generation.
12072
12073   Previous Release (11_20_01)
12074      Non-Debug Version:  64.1K Code,   5.3K Data,   69.4K Total
12075      Debug Version:     135.1K Code,  55.4K Data,  190.5K Total
12076
12077   Current Release:
12078      Non-Debug Version:  64.7K Code,   5.3K Data,   70.0K Total
12079      Debug Version:     136.2K Code,  55.6K Data,  191.8K Total
12080
12081  2) Linux:
12082
12083 Updated all files to apply cleanly against 2.4.16.
12084
12085 Added basic PCI Interrupt Routing Table (PRT) support for IA32
12086 (acpi_pci.c), and unified the PRT code for IA32 and IA64.  This
12087 version supports both static and dyanmic PRT entries, but dynamic
12088 entries are treated as if they were static (not yet
12089 reconfigurable).  Architecture- specific code to use this data is
12090 absent on IA32 but should be available shortly.
12091
12092 Changed the initialization sequence to start the ACPI interpreter
12093 (acpi_init) prior to initialization of the PCI driver (pci_init)
12094 in init/main.c.  This ordering is required to support PRT and
12095 facilitate other (future) enhancement.  A side effect is that the
12096 ACPI bus driver and certain device drivers can no longer be loaded
12097 as modules.
12098
12099 Modified the 'make menuconfig' options to allow PCI Interrupt
12100 Routing support to be included without the ACPI Bus and other
12101 device drivers.
12102
12103  3) ASL Compiler, version X2033:
12104
12105 Fixed some issues with the use of the new CopyObject and
12106 DataTableRegion operators.  Both are fully functional.
12107
12108  ----------------------------------------
12109 Summary of changes for this label: 11_20_01
12110
12111  20 November 2001.  Summary of changes for this release.
12112
12113  1) ACPI CA Core Subsystem:
12114
12115 Updated Index support to match ACPI 2.0 semantics.  Storing a
12116 Integer, String, or Buffer to an Index of a Buffer will store only
12117 the least-significant byte of the source to the Indexed buffer
12118 byte.  Multiple writes are not performed.
12119
12120 Fixed a problem where the access type used in an AccessAs ASL
12121 operator was not recorded correctly into the field object.
12122
12123 Fixed a problem where ASL Event objects were created in a
12124 signalled state. Events are now created in an unsignalled state.
12125
12126 The internal object cache is now purged after table loading and
12127 initialization to reduce the use of dynamic kernel memory -- on
12128 the assumption that object use is greatest during the parse phase
12129 of the entire table (versus the run-time use of individual control
12130 methods.)
12131
12132 ACPI 2.0 variable-length packages are now fully operational.
12133
12134 Code and Data Size: Code and Data optimizations have permitted new
12135 feature development with an actual reduction in the library size.
12136 Current core subsystem library sizes are shown below.  These are
12137 the code and data sizes for the acpica.lib produced by the
12138 Microsoft Visual C++ 6.0 compiler, and these values do not include
12139 any ACPI driver or OSPM code.  The debug version of the code
12140 includes the debug output trace mechanism and has a larger code
12141 and data size.  Note that these values will vary depending on the
12142 efficiency of the compiler and the compiler options used during
12143 generation.
12144
12145   Previous Release (11_09_01):
12146      Non-Debug Version:  63.7K Code,   5.2K Data,   68.9K Total
12147      Debug Version:     134.5K Code,  55.4K Data,  189.9K Total
12148
12149   Current Release:
12150      Non-Debug Version:  64.1K Code,   5.3K Data,   69.4K Total
12151      Debug Version:     135.1K Code,  55.4K Data,  190.5K Total
12152
12153  2) Linux:
12154
12155 Enhanced the ACPI boot-time initialization code to allow the use
12156 of Local APIC tables for processor enumeration on IA-32, and to
12157 pave the way for a fully MPS-free boot (on SMP systems) in the
12158 near future.  This functionality replaces
12159 arch/i386/kernel/acpitables.c, which was introduced in an earlier
12160 2.4.15-preX release.  To enable this feature you must add
12161 "acpi_boot=on" to the kernel command line -- see the help entry
12162 for CONFIG_ACPI_BOOT for more information.  An IA-64 release is in
12163 the works...
12164
12165 Restructured the configuration options to allow boot-time table
12166 parsing support without inclusion of the ACPI Interpreter (and
12167 other) code.
12168
12169 NOTE: This release does not include fixes for the reported events,
12170 power-down, and thermal passive cooling issues (coming soon).
12171
12172  3) ASL Compiler:
12173
12174 Added additional typechecking for Fields within restricted access
12175 Operation Regions.  All fields within EC and CMOS regions must be
12176 declared with ByteAcc. All fields withing SMBus regions must be
12177 declared with the BufferAcc access type.
12178
12179 Fixed a problem where the listing file output of control methods
12180 no longer interleaved the actual AML code with the ASL source
12181 code.
12182
12183
12184
12185
12186 ----------------------------------------
12187 Summary of changes for this label: 11_09_01
12188
12189 1) ACPI CA Core Subsystem:
12190
12191 Implemented ACPI 2.0-defined support for writes to fields with a
12192 Buffer, String, or Integer source operand that is smaller than the
12193 target field. In these cases, the source operand is zero-extended
12194 to fill the target field.
12195
12196 Fixed a problem where a Field starting bit offset (within the
12197 parent operation region) was calculated incorrectly if the
12198
12199 alignment of the field differed from the access width.  This
12200 affected CreateWordField, CreateDwordField, CreateQwordField, and
12201 possibly other fields that use the "AccessAny" keyword.
12202
12203 Fixed a problem introduced in the 11_02_01 release where indirect
12204 stores through method arguments did not operate correctly.
12205
12206 2) Linux:
12207
12208 Implemented boot-time ACPI table parsing support
12209 (CONFIG_ACPI_BOOT) for IA32 and IA64 UP/SMP systems.  This code
12210 facilitates the use of ACPI tables (e.g. MADT, SRAT) rather than
12211 legacy BIOS interfaces (e.g. MPS) for the configuration of system
12212 processors, memory, and interrupts during setup_arch().  Note that
12213 this patch does not include the required architecture-specific
12214 changes required to apply this information -- subsequent patches
12215 will be posted for both IA32 and IA64 to achieve this.
12216
12217 Added low-level sleep support for IA32 platforms, courtesy of Pat
12218 Mochel. This allows IA32 systems to transition to/from various
12219 sleeping states (e.g. S1, S3), although the lack of a centralized
12220 driver model and power-manageable drivers will prevent its
12221 (successful) use on most systems.
12222
12223 Revamped the ACPI 'menuconfig' layout: created new "ACPI Support"
12224 submenu, unified IA32 and IA64 options, added new "Boot using ACPI
12225 tables" option, etc.
12226
12227 Increased the default timeout for the EC driver from 1ms to 10ms
12228 (1000 cycles of 10us) to try to address AE_TIME errors during EC
12229 transactions.
12230
12231  ----------------------------------------
12232 Summary of changes for this label: 11_02_01
12233
12234 1) ACPI CA Core Subsystem:
12235
12236 ACPI 2.0 Support: Implemented ACPI 2.0 64-bit Field access
12237 (QWordAcc keyword). All ACPI 2.0 64-bit support is now
12238 implemented.
12239
12240 OSL Interfaces: Several of the OSL (AcpiOs*) interfaces required
12241 changes to support ACPI 2.0 Qword field access.  Read/Write
12242 PciConfiguration(), Read/Write Memory(), and Read/Write Port() now
12243 accept an ACPI_INTEGER (64 bits) as the value parameter.  Also,
12244 the value parameter for the address space handler interface is now
12245 an ACPI_INTEGER.  OSL implementations of these interfaces must now
12246 handle the case where the Width parameter is 64.
12247
12248 Index Fields: Fixed a problem where unaligned bit assembly and
12249 disassembly for IndexFields was not supported correctly.
12250
12251 Index and Bank Fields:  Nested Index and Bank Fields are now
12252 supported. During field access, a check is performed to ensure
12253 that the value written to an Index or Bank register is not out of
12254 the range of the register.  The Index (or Bank) register is
12255 written before each access to the field data. Future support will
12256 include allowing individual IndexFields to be wider than the
12257 DataRegister width.
12258
12259 Fields: Fixed a problem where the AML interpreter was incorrectly
12260 attempting to write beyond the end of a Field/OpRegion.  This was
12261 a boundary case that occurred when a DWORD field was written to a
12262 BYTE access OpRegion, forcing multiple writes and causing the
12263 interpreter to write one datum too many.
12264
12265 Fields: Fixed a problem with Field/OpRegion access where the
12266 starting bit address of a field was incorrectly calculated if the
12267 current access type was wider than a byte (WordAcc, DwordAcc, or
12268 QwordAcc).
12269
12270 Fields: Fixed a problem where forward references to individual
12271 FieldUnits (individual Field names within a Field definition) were
12272 not resolved during the AML table load.
12273
12274 Fields: Fixed a problem where forward references from a Field
12275 definition to the parent Operation Region definition were not
12276 resolved during the AML table load.
12277
12278 Fields: Duplicate FieldUnit names within a scope are now detected
12279 during AML table load.
12280
12281 Acpi Interfaces: Fixed a problem where the AcpiGetName() interface
12282 returned an incorrect name for the root node.
12283
12284 Code and Data Size: Code and Data optimizations have permitted new
12285 feature development with an actual reduction in the library size.
12286 Current core subsystem library sizes are shown below.  These are
12287 the code and data sizes for the acpica.lib produced by the
12288 Microsoft Visual C++ 6.0 compiler, and these values do not include
12289 any ACPI driver or OSPM code.  The debug version of the code
12290 includes the debug output trace mechanism and has a larger code
12291 and data size.  Note that these values will vary depending on the
12292 efficiency of the compiler and the compiler options used during
12293 generation.
12294
12295   Previous Release (10_18_01):
12296      Non-Debug Version:  63.9K Code,   5.1K Data,   69.0K Total
12297      Debug Version:     136.7K Code,  57.4K Data,  194.2K Total
12298
12299   Current Release:
12300      Non-Debug Version:  63.7K Code,   5.2K Data,   68.9K Total
12301      Debug Version:     134.5K Code,  55.4K Data,  189.9K Total
12302
12303  2) Linux:
12304
12305 Improved /proc processor output (Pavel Machek) Re-added
12306 MODULE_LICENSE("GPL") to all modules.
12307
12308  3) ASL Compiler version X2030:
12309
12310 Duplicate FieldUnit names within a scope are now detected and
12311 flagged as errors.
12312
12313  4) Documentation:
12314
12315 Programmer Reference updated to reflect OSL and address space
12316 handler interface changes described above.
12317
12318 ----------------------------------------
12319 Summary of changes for this label: 10_18_01
12320
12321 ACPI CA Core Subsystem:
12322
12323 Fixed a problem with the internal object reference count mechanism
12324 that occasionally caused premature object deletion. This resolves
12325 all of the outstanding problem reports where an object is deleted
12326 in the middle of an interpreter evaluation.  Although this problem
12327 only showed up in rather obscure cases, the solution to the
12328 problem involved an adjustment of all reference counts involving
12329 objects attached to namespace nodes.
12330
12331 Fixed a problem with Field support in the interpreter where
12332 writing to an aligned field whose length is an exact multiple (2
12333 or greater) of the field access granularity would cause an attempt
12334 to write beyond the end of the field.
12335
12336 The top level AML opcode execution functions within the
12337 interpreter have been renamed with a more meaningful and
12338 consistent naming convention.  The modules exmonad.c and
12339 exdyadic.c were eliminated.  New modules are exoparg1.c,
12340 exoparg2.c, exoparg3.c, and exoparg6.c.
12341
12342 Support for the ACPI 2.0 "Mid" ASL operator has been implemented.
12343
12344 Fixed a problem where the AML debugger was causing some internal
12345 objects to not be deleted during subsystem termination.
12346
12347 Fixed a problem with the external AcpiEvaluateObject interface
12348 where the subsystem would fault if the named object to be
12349 evaluated refered to a constant such as Zero, Ones, etc.
12350
12351 Fixed a problem with IndexFields and BankFields where the
12352 subsystem would fault if the index, data, or bank registers were
12353 not defined in the same scope as the field itself.
12354
12355 Added printf format string checking for compilers that support
12356 this feature.  Corrected more than 50 instances of issues with
12357 format specifiers within invocations of ACPI_DEBUG_PRINT
12358 throughout the core subsystem code.
12359
12360 The ASL "Revision" operator now returns the ACPI support level
12361 implemented in the core - the value "2" since the ACPI 2.0 support
12362 is more than 50% implemented.
12363
12364 Enhanced the output of the AML debugger "dump namespace" command
12365 to output in a more human-readable form.
12366
12367 Current core subsystem library code sizes are shown below.  These
12368
12369 are the code and data sizes for the acpica.lib produced by the
12370 Microsoft Visual C++ 6.0 compiler, and these values do not include
12371 any ACPI driver or OSPM code.  The debug version of the code
12372 includes the full debug trace mechanism -- leading to a much
12373
12374 larger code and data size.  Note that these values will vary
12375 depending on the efficiency of the compiler and the compiler
12376 options used during generation.
12377
12378      Previous Label (09_20_01):
12379      Non-Debug Version:    65K Code,     5K Data,     70K Total
12380      Debug Version:       138K Code,    58K Data,    196K Total
12381
12382      This Label:
12383
12384      Non-Debug Version:  63.9K Code,   5.1K Data,   69.0K Total
12385      Debug Version:     136.7K Code,  57.4K Data,  194.2K Total
12386
12387 Linux:
12388
12389 Implemented a "Bad BIOS Blacklist" to track machines that have
12390 known ASL/AML problems.
12391
12392 Enhanced the /proc interface for the thermal zone driver and added
12393 support for _HOT (the critical suspend trip point).  The 'info'
12394 file now includes threshold/policy information, and allows setting
12395 of _SCP (cooling preference) and _TZP (polling frequency) values
12396 to the 'info' file. Examples: "echo tzp=5 > info" sets the polling
12397 frequency to 5 seconds, and "echo scp=1 > info" sets the cooling
12398 preference to the passive/quiet mode (if supported by the ASL).
12399
12400 Implemented a workaround for a gcc bug that resuted in an OOPs
12401 when loading the control method battery driver.
12402
12403  ----------------------------------------
12404 Summary of changes for this label: 09_20_01
12405
12406  ACPI CA Core Subsystem:
12407
12408 The AcpiEnableEvent and AcpiDisableEvent interfaces have been
12409 modified to allow individual GPE levels to be flagged as wake-
12410 enabled (i.e., these GPEs are to remain enabled when the platform
12411 sleeps.)
12412
12413 The AcpiEnterSleepState and AcpiLeaveSleepState interfaces now
12414 support wake-enabled GPEs.  This means that upon entering the
12415 sleep state, all GPEs that are not wake-enabled are disabled.
12416 When leaving the sleep state, these GPEs are reenabled.
12417
12418 A local double-precision divide/modulo module has been added to
12419 enhance portability to OS kernels where a 64-bit math library is
12420 not available.  The new module is "utmath.c".
12421
12422 Several optimizations have been made to reduce the use of CPU
12423 stack.  Originally over 2K, the maximum stack usage is now below
12424 2K at 1860  bytes (1.82k)
12425
12426 Fixed a problem with the AcpiGetFirmwareTable interface where the
12427 root table pointer was not mapped into a logical address properly.
12428
12429 Fixed a problem where a NULL pointer was being dereferenced in the
12430 interpreter code for the ASL Notify operator.
12431
12432 Fixed a problem where the use of the ASL Revision operator
12433 returned an error. This operator now returns the current version
12434 of the ACPI CA core subsystem.
12435
12436 Fixed a problem where objects passed as control method parameters
12437 to AcpiEvaluateObject were always deleted at method termination.
12438 However, these objects may end up being stored into the namespace
12439 by the called method.  The object reference count mechanism was
12440 applied to these objects instead of a force delete.
12441
12442 Fixed a problem where static strings or buffers (contained in the
12443 AML code) that are declared as package elements within the ASL
12444 code could cause a fault because the interpreter would attempt to
12445 delete them.  These objects are now marked with the "static
12446 object" flag to prevent any attempt to delete them.
12447
12448 Implemented an interpreter optimization to use operands directly
12449 from the state object instead of extracting the operands to local
12450 variables.  This reduces stack use and code size, and improves
12451 performance.
12452
12453 The module exxface.c was eliminated as it was an unnecessary extra
12454 layer of code.
12455
12456 Current core subsystem library code sizes are shown below.  These
12457 are the code and data sizes for the acpica.lib produced by the
12458 Microsoft Visual C++ 6.0 compiler, and these values do not include
12459 any ACPI driver or OSPM code.  The debug version of the code
12460 includes the full debug trace mechanism -- leading to a much
12461 larger code and data size.  Note that these values will vary
12462 depending on the efficiency of the compiler and the compiler
12463 options used during generation.
12464
12465   Non-Debug Version:  65K Code,   5K Data,   70K Total
12466 (Previously 69K)   Debug Version:     138K Code,  58K Data,  196K
12467 Total  (Previously 195K)
12468
12469 Linux:
12470
12471 Support for ACPI 2.0 64-bit integers has been added.   All ACPI
12472 Integer objects are now 64 bits wide
12473
12474 All Acpi data types and structures are now in lower case.  Only
12475 Acpi macros are upper case for differentiation.
12476
12477  Documentation:
12478
12479 Changes to the external interfaces as described above.
12480
12481  ----------------------------------------
12482 Summary of changes for this label: 08_31_01
12483
12484  ACPI CA Core Subsystem:
12485
12486 A bug with interpreter implementation of the ASL Divide operator
12487 was found and fixed.  The implicit function return value (not the
12488 explicit store operands) was returning the remainder instead of
12489 the quotient.  This was a longstanding bug and it fixes several
12490 known outstanding issues on various platforms.
12491
12492 The ACPI_DEBUG_PRINT and function trace entry/exit macros have
12493 been further optimized for size.  There are 700 invocations of the
12494 DEBUG_PRINT macro alone, so each optimization reduces the size of
12495 the debug version of the subsystem significantly.
12496
12497 A stack trace mechanism has been implemented.  The maximum stack
12498 usage is about 2K on 32-bit platforms.  The debugger command "stat
12499 stack" will display the current maximum stack usage.
12500
12501 All public symbols and global variables within the subsystem are
12502 now prefixed with the string "Acpi".  This keeps all of the
12503 symbols grouped together in a kernel map, and avoids conflicts
12504 with other kernel subsystems.
12505
12506 Most of the internal fixed lookup tables have been moved into the
12507 code segment via the const operator.
12508
12509 Several enhancements have been made to the interpreter to both
12510 reduce the code size and improve performance.
12511
12512 Current core subsystem library code sizes are shown below.  These
12513 are the code and data sizes for the acpica.lib produced by the
12514 Microsoft Visual C++ 6.0 compiler, and these values do not include
12515 any ACPI driver or OSPM code.  The debug version of the code
12516 includes the full debug trace mechanism which contains over 700
12517 invocations of the DEBUG_PRINT macro, 500 function entry macro
12518 invocations, and over 900 function exit macro invocations --
12519 leading to a much larger code and data size.  Note that these
12520 values will vary depending on the efficiency of the compiler and
12521 the compiler options used during generation.
12522
12523         Non-Debug Version:  64K Code,   5K Data,   69K Total
12524 Debug Version:     137K Code,  58K Data,  195K Total
12525
12526  Linux:
12527
12528 Implemented wbinvd() macro, pending a kernel-wide definition.
12529
12530 Fixed /proc/acpi/event to handle poll() and short reads.
12531
12532  ASL Compiler, version X2026:
12533
12534 Fixed a problem introduced in the previous label where the AML
12535
12536 code emitted for package objects produced packages with zero
12537 length.
12538
12539  ----------------------------------------
12540 Summary of changes for this label: 08_16_01
12541
12542 ACPI CA Core Subsystem:
12543
12544 The following ACPI 2.0 ASL operators have been implemented in the
12545 AML interpreter (These are already supported by the Intel ASL
12546 compiler):  ToDecimalString, ToHexString, ToString, ToInteger, and
12547 ToBuffer.  Support for 64-bit AML constants is implemented in the
12548 AML parser, debugger, and disassembler.
12549
12550 The internal memory tracking mechanism (leak detection code) has
12551 been upgraded to reduce the memory overhead (a separate tracking
12552 block is no longer allocated for each memory allocation), and now
12553 supports all of the internal object caches.
12554
12555 The data structures and code for the internal object caches have
12556 been coelesced and optimized so that there is a single cache and
12557 memory list data structure and a single group of functions that
12558 implement generic cache management.  This has reduced the code
12559 size in both the debug and release versions of the subsystem.
12560
12561 The DEBUG_PRINT macro(s) have been optimized for size and replaced
12562 by ACPI_DEBUG_PRINT.  The syntax for this macro is slightly
12563 different, because it generates a single call to an internal
12564 function.  This results in a savings of about 90 bytes per
12565 invocation, resulting in an overall code and data savings of about
12566 16% in the debug version of the subsystem.
12567
12568  Linux:
12569
12570 Fixed C3 disk corruption problems and re-enabled C3 on supporting
12571 machines.
12572
12573 Integrated low-level sleep code by Patrick Mochel.
12574
12575 Further tweaked source code Linuxization.
12576
12577 Other minor fixes.
12578
12579  ASL Compiler:
12580
12581 Support for ACPI 2.0 variable length packages is fixed/completed.
12582
12583 Fixed a problem where the optional length parameter for the ACPI
12584 2.0 ToString operator.
12585
12586 Fixed multiple extraneous error messages when a syntax error is
12587 detected within the declaration line of a control method.
12588
12589  ----------------------------------------
12590 Summary of changes for this label: 07_17_01
12591
12592 ACPI CA Core Subsystem:
12593
12594 Added a new interface named AcpiGetFirmwareTable to obtain any
12595 ACPI table via the ACPI signature.  The interface can be called at
12596 any time during kernel initialization, even before the kernel
12597 virtual memory manager is initialized and paging is enabled.  This
12598 allows kernel subsystems to obtain ACPI tables very early, even
12599 before the ACPI CA subsystem is initialized.
12600
12601 Fixed a problem where Fields defined with the AnyAcc attribute
12602 could be resolved to the incorrect address under the following
12603 conditions: 1) the field width is larger than 8 bits and 2) the
12604 parent operation region is not defined on a DWORD boundary.
12605
12606 Fixed a problem where the interpreter is not being locked during
12607 namespace initialization (during execution of the _INI control
12608 methods), causing an error when an attempt is made to release it
12609 later.
12610
12611 ACPI 2.0 support in the AML Interpreter has begun and will be
12612 ongoing throughout the rest of this year.  In this label, The Mod
12613 operator is implemented.
12614
12615 Added a new data type to contain full PCI addresses named
12616 ACPI_PCI_ID. This structure contains the PCI Segment, Bus, Device,
12617 and Function values.
12618
12619  Linux:
12620
12621 Enhanced the Linux version of the source code to change most
12622 capitalized ACPI type names to lowercase. For example, all
12623 instances of ACPI_STATUS are changed to acpi_status.  This will
12624 result in a large diff, but the change is strictly cosmetic and
12625 aligns the CA code closer to the Linux coding standard.
12626
12627 OSL Interfaces:
12628
12629 The interfaces to the PCI configuration space have been changed to
12630 add the PCI Segment number and to split the single 32-bit combined
12631 DeviceFunction field into two 16-bit fields.  This was
12632 accomplished by moving the four values that define an address in
12633 PCI configuration space (segment, bus, device, and function) to
12634 the new ACPI_PCI_ID structure.
12635
12636 The changes to the PCI configuration space interfaces led to a
12637 reexamination of the complete set of address space access
12638 interfaces for PCI, I/O, and Memory.  The previously existing 18
12639 interfaces have proven difficult to maintain (any small change
12640 must be propagated across at least 6 interfaces) and do not easily
12641 allow for future expansion to 64 bits if necessary.  Also, on some
12642 systems, it would not be appropriate to demultiplex the access
12643 width (8, 16, 32,or 64) before calling the OSL if the
12644 corresponding native OS interfaces contain a similar access width
12645 parameter.  For these reasons, the 18 address space interfaces
12646 have been replaced by these 6 new ones:
12647
12648 AcpiOsReadPciConfiguration
12649 AcpiOsWritePciConfiguration
12650 AcpiOsReadMemory
12651 AcpiOsWriteMemory
12652 AcpiOsReadPort
12653 AcpiOsWritePort
12654
12655 Added a new interface named AcpiOsGetRootPointer to allow the OSL
12656 to perform the platform and/or OS-specific actions necessary to
12657 obtain the ACPI RSDP table pointer.  On IA-32 platforms, this
12658 interface will simply call down to the CA core to perform the low-
12659 memory search for the table.  On IA-64, the RSDP is obtained from
12660 EFI.  Migrating this interface to the OSL allows the CA core to
12661
12662 remain OS and platform independent.
12663
12664 Added a new interface named AcpiOsSignal to provide a generic
12665 "function code and pointer" interface for various miscellaneous
12666 signals and notifications that must be made to the host OS.   The
12667 first such signals are intended to support the ASL Fatal and
12668 Breakpoint operators.  In the latter case, the AcpiOsBreakpoint
12669 interface has been obsoleted.
12670
12671 The definition of the AcpiFormatException interface has been
12672 changed to simplify its use.  The caller no longer must supply a
12673 buffer to the call; A pointer to a const string is now returned
12674 directly.  This allows the call to be easily used in printf
12675 statements, etc. since the caller does not have to manage a local
12676 buffer.
12677
12678
12679  ASL Compiler, Version X2025:
12680
12681 The ACPI 2.0 Switch/Case/Default operators have been implemented
12682 and are fully functional.  They will work with all ACPI 1.0
12683 interpreters, since the operators are simply translated to If/Else
12684 pairs.
12685
12686 The ACPI 2.0 ElseIf operator is implemented and will also work
12687 with 1.0 interpreters, for the same reason.
12688
12689 Implemented support for ACPI 2.0 variable-length packages.  These
12690 packages have a separate opcode, and their size is determined by
12691 the interpreter at run-time.
12692
12693 Documentation The ACPI CA Programmer Reference has been updated to
12694 reflect the new interfaces and changes to existing interfaces.
12695
12696  ------------------------------------------
12697 Summary of changes for this label: 06_15_01
12698
12699  ACPI CA Core Subsystem:
12700
12701 Fixed a problem where a DWORD-accessed field within a Buffer
12702 object would get its byte address inadvertently rounded down to
12703 the nearest DWORD.  Buffers are always Byte-accessible.
12704
12705  ASL Compiler, version X2024:
12706
12707 Fixed a problem where the Switch() operator would either fault or
12708 hang the compiler.  Note however, that the AML code for this ACPI
12709 2.0 operator is not yet implemented.
12710
12711 Compiler uses the new AcpiOsGetTimer interface to obtain compile
12712 timings.
12713
12714 Implementation of the CreateField operator automatically converts
12715 a reference to a named field within a resource descriptor from a
12716 byte offset to a bit offset if required.
12717
12718 Added some missing named fields from the resource descriptor
12719 support. These are the names that are automatically created by the
12720 compiler to reference fields within a descriptor.  They are only
12721 valid at compile time and are not passed through to the AML
12722 interpreter.
12723
12724 Resource descriptor named fields are now typed as Integers and
12725 subject to compile-time typechecking when used in expressions.
12726
12727  ------------------------------------------
12728 Summary of changes for this label: 05_18_01
12729
12730  ACPI CA Core Subsystem:
12731
12732 Fixed a couple of problems in the Field support code where bits
12733 from adjacent fields could be returned along with the proper field
12734 bits. Restructured the field support code to improve performance,
12735 readability and maintainability.
12736
12737 New DEBUG_PRINTP macro automatically inserts the procedure name
12738 into the output, saving hundreds of copies of procedure name
12739 strings within the source, shrinking the memory footprint of the
12740 debug version of the core subsystem.
12741
12742  Source Code Structure:
12743
12744 The source code directory tree was restructured to reflect the
12745 current organization of the component architecture.  Some files
12746 and directories have been moved and/or renamed.
12747
12748  Linux:
12749
12750 Fixed leaking kacpidpc processes.
12751
12752 Fixed queueing event data even when /proc/acpi/event is not
12753 opened.
12754
12755  ASL Compiler, version X2020:
12756
12757 Memory allocation performance enhancement - over 24X compile time
12758 improvement on large ASL files.  Parse nodes and namestring
12759 buffers are now allocated from a large internal compiler buffer.
12760
12761 The temporary .SRC file is deleted unless the "-s" option is
12762 specified
12763
12764 The "-d" debug output option now sends all output to the .DBG file
12765 instead of the console.
12766
12767 "External" second parameter is now optional
12768
12769 "ElseIf" syntax now properly allows the predicate
12770
12771 Last operand to "Load" now recognized as a Target operand
12772
12773 Debug object can now be used anywhere as a normal object.
12774
12775 ResourceTemplate now returns an object of type BUFFER
12776
12777 EISAID now returns an object of type INTEGER
12778
12779 "Index" now works with a STRING operand
12780
12781 "LoadTable" now accepts optional parameters
12782
12783 "ToString" length parameter is now optional
12784
12785 "Interrupt (ResourceType," parse error fixed.
12786
12787 "Register" with a user-defined region space parse error fixed
12788
12789 Escaped backslash at the end of a string ("\\") scan/parse error
12790 fixed
12791
12792 "Revision" is now an object of type INTEGER.
12793
12794
12795
12796 ------------------------------------------
12797 Summary of changes for this label: 05_02_01
12798
12799 Linux:
12800
12801 /proc/acpi/event now blocks properly.
12802
12803 Removed /proc/sys/acpi. You can still dump your DSDT from
12804 /proc/acpi/dsdt.
12805
12806  ACPI CA Core Subsystem:
12807
12808 Fixed a problem introduced in the previous label where some of the
12809 "small" resource descriptor types were not recognized.
12810
12811 Improved error messages for the case where an ASL Field is outside
12812 the range of the parent operation region.
12813
12814  ASL Compiler, version X2018:
12815
12816
12817 Added error detection for ASL Fields that extend beyond the length
12818 of the parent operation region (only if the length of the region
12819 is known at compile time.)  This includes fields that have a
12820 minimum access width that is smaller than the parent region, and
12821 individual field units that are partially or entirely beyond the
12822 extent of the parent.
12823
12824
12825
12826 ------------------------------------------
12827 Summary of changes for this label: 04_27_01
12828
12829  ACPI CA Core Subsystem:
12830
12831 Fixed a problem where the namespace mutex could be released at the
12832 wrong time during execution of AcpiRemoveAddressSpaceHandler.
12833
12834 Added optional thread ID output for debug traces, to simplify
12835 debugging of multiple threads.  Added context switch notification
12836 when the debug code realizes that a different thread is now
12837 executing ACPI code.
12838
12839 Some additional external data types have been prefixed with the
12840 string "ACPI_" for consistency.  This may effect existing code.
12841 The data types affected are the external callback typedefs - e.g.,
12842
12843 WALK_CALLBACK becomes ACPI_WALK_CALLBACK.
12844
12845  Linux:
12846
12847 Fixed an issue with the OSL semaphore implementation where a
12848 thread was waking up with an error from receiving a SIGCHLD
12849 signal.
12850
12851 Linux version of ACPI CA now uses the system C library for string
12852 manipulation routines instead of a local implementation.
12853
12854 Cleaned up comments and removed TBDs.
12855
12856  ASL Compiler, version X2017:
12857
12858 Enhanced error detection and reporting for all file I/O
12859 operations.
12860
12861  Documentation:
12862
12863 Programmer Reference updated to version 1.06.
12864
12865
12866
12867 ------------------------------------------
12868 Summary of changes for this label: 04_13_01
12869
12870  ACPI CA Core Subsystem:
12871
12872 Restructured support for BufferFields and RegionFields.
12873 BankFields support is now fully operational.  All known 32-bit
12874 limitations on field sizes have been removed.  Both BufferFields
12875 and (Operation) RegionFields are now supported by the same field
12876 management code.
12877
12878 Resource support now supports QWORD address and IO resources. The
12879 16/32/64 bit address structures and the Extended IRQ structure
12880 have been changed to properly handle Source Resource strings.
12881
12882 A ThreadId of -1 is now used to indicate a "mutex not acquired"
12883 condition internally and must never be returned by AcpiOsThreadId.
12884 This reserved value was changed from 0 since Unix systems allow a
12885 thread ID of 0.
12886
12887 Linux:
12888
12889 Driver code reorganized to enhance portability
12890
12891 Added a kernel configuration option to control ACPI_DEBUG
12892
12893 Fixed the EC driver to honor _GLK.
12894
12895 ASL Compiler, version X2016:
12896
12897 Fixed support for the "FixedHw" keyword.  Previously, the FixedHw
12898 address space was set to 0, not 0x7f as it should be.
12899
12900  ------------------------------------------
12901 Summary of changes for this label: 03_13_01
12902
12903  ACPI CA Core Subsystem:
12904
12905 During ACPI initialization, the _SB_._INI method is now run if
12906 present.
12907
12908 Notify handler fix - notifies are deferred until the parent method
12909 completes execution.  This fixes the "mutex already acquired"
12910 issue seen occasionally.
12911
12912 Part of the "implicit conversion" rules in ACPI 2.0 have been
12913 found to cause compatibility problems with existing ASL/AML.  The
12914 convert "result-to-target-type" implementation has been removed
12915 for stores to method Args and Locals.  Source operand conversion
12916 is still fully implemented.  Possible changes to ACPI 2.0
12917 specification pending.
12918
12919 Fix to AcpiRsCalculatePciRoutingTableLength to return correct
12920 length.
12921
12922 Fix for compiler warnings for 64-bit compiles.
12923
12924  Linux:
12925
12926 /proc output aligned for easier parsing.
12927
12928 Release-version compile problem fixed.
12929
12930 New kernel configuration options documented in Configure.help.
12931
12932 IBM 600E - Fixed Sleep button may generate "Invalid <NULL>
12933 context" message.
12934
12935  OSPM:
12936
12937 Power resource driver integrated with bus manager.
12938
12939 Fixed kernel fault during active cooling for thermal zones.
12940
12941 Source Code:
12942
12943 The source code tree has been restructured.
12944
12945
12946
12947 ------------------------------------------
12948 Summary of changes for this label: 03_02_01
12949
12950  Linux OS Services Layer (OSL):
12951
12952 Major revision of all Linux-specific code.
12953
12954 Modularized all ACPI-specific drivers.
12955
12956 Added new thermal zone and power resource drivers.
12957
12958 Revamped /proc interface (new functionality is under /proc/acpi).
12959
12960 New kernel configuration options.
12961
12962  Linux known issues:
12963
12964 New kernel configuration options not documented in Configure.help
12965 yet.
12966
12967
12968 Module dependencies not currently implemented. If used, they
12969 should be loaded in this order: busmgr, power, ec, system,
12970 processor, battery, ac_adapter, button, thermal.
12971
12972 Modules will not load if CONFIG_MODVERSION is set.
12973
12974 IBM 600E - entering S5 may reboot instead of shutting down.
12975
12976 IBM 600E - Sleep button may generate "Invalid <NULL> context"
12977 message.
12978
12979 Some systems may fail with "execution mutex already acquired"
12980 message.
12981
12982  ACPI CA Core Subsystem:
12983
12984 Added a new OSL Interface, AcpiOsGetThreadId.  This was required
12985 for the  deadlock detection code. Defined to return a non-zero, 32-
12986 bit thread ID for the currently executing thread.  May be a non-
12987 zero constant integer on single-thread systems.
12988
12989 Implemented deadlock detection for internal subsystem mutexes.  We
12990 may add conditional compilation for this code (debug only) later.
12991
12992 ASL/AML Mutex object semantics are now fully supported.  This
12993 includes multiple acquires/releases by owner and support for the
12994
12995 Mutex SyncLevel parameter.
12996
12997 A new "Force Release" mechanism automatically frees all ASL
12998 Mutexes that have been acquired but not released when a thread
12999 exits the interpreter.  This forces conformance to the ACPI spec
13000 ("All mutexes must be released when an invocation exits") and
13001 prevents deadlocked ASL threads.  This mechanism can be expanded
13002 (later) to monitor other resource acquisitions if OEM ASL code
13003 continues to misbehave (which it will).
13004
13005 Several new ACPI exception codes have been added for the Mutex
13006 support.
13007
13008 Recursive method calls are now allowed and supported (the ACPI
13009 spec does in fact allow recursive method calls.)  The number of
13010 recursive calls is subject to the restrictions imposed by the
13011 SERIALIZED method keyword and SyncLevel (ACPI 2.0) method
13012 parameter.
13013
13014 Implemented support for the SyncLevel parameter for control
13015 methods (ACPI 2.0 feature)
13016
13017 Fixed a deadlock problem when multiple threads attempted to use
13018 the interpreter.
13019
13020 Fixed a problem where the string length of a String package
13021 element was not always set in a package returned from
13022 AcpiEvaluateObject.
13023
13024 Fixed a problem where the length of a String package element was
13025 not always included in the length of the overall package returned
13026 from AcpiEvaluateObject.
13027
13028 Added external interfaces (Acpi*) to the ACPI debug memory
13029 manager.  This manager keeps a list of all outstanding
13030 allocations, and can therefore detect memory leaks and attempts to
13031 free memory blocks more than once. Useful for code such as the
13032 power manager, etc.  May not be appropriate for device drivers.
13033 Performance with the debug code enabled is slow.
13034
13035 The ACPI Global Lock is now an optional hardware element.
13036
13037  ASL Compiler Version X2015:
13038
13039 Integrated changes to allow the compiler to be generated on
13040 multiple platforms.
13041
13042 Linux makefile added to generate the compiler on Linux
13043
13044  Source Code:
13045
13046 All platform-specific headers have been moved to their own
13047 subdirectory, Include/Platform.
13048
13049 New source file added, Interpreter/ammutex.c
13050
13051 New header file, Include/acstruct.h
13052
13053  Documentation:
13054
13055 The programmer reference has been updated for the following new
13056 interfaces: AcpiOsGetThreadId AcpiAllocate AcpiCallocate AcpiFree
13057
13058  ------------------------------------------
13059 Summary of changes for this label: 02_08_01
13060
13061 Core ACPI CA Subsystem: Fixed a problem where an error was
13062 incorrectly returned if the return resource buffer was larger than
13063 the actual data (in the resource interfaces).
13064
13065 References to named objects within packages are resolved to the
13066
13067 full pathname string before packages are returned directly (via
13068 the AcpiEvaluateObject interface) or indirectly via the resource
13069 interfaces.
13070
13071 Linux OS Services Layer (OSL):
13072
13073 Improved /proc battery interface.
13074
13075
13076 Added C-state debugging output and other miscellaneous fixes.
13077
13078 ASL Compiler Version X2014:
13079
13080 All defined method arguments can now be used as local variables,
13081 including the ones that are not actually passed in as parameters.
13082 The compiler tracks initialization of the arguments and issues an
13083 exception if they are used without prior assignment (just like
13084 locals).
13085
13086 The -o option now specifies a filename prefix that is used for all
13087 output files, including the AML output file.  Otherwise, the
13088 default behavior is as follows:  1) the AML goes to the file
13089 specified in the DSDT.  2) all other output files use the input
13090 source filename as the base.
13091
13092  ------------------------------------------
13093 Summary of changes for this label: 01_25_01
13094
13095 Core ACPI CA Subsystem: Restructured the implementation of object
13096 store support within the  interpreter.  This includes support for
13097 the Store operator as well  as any ASL operators that include a
13098 target operand.
13099
13100 Partially implemented support for Implicit Result-to-Target
13101 conversion. This is when a result object is converted on the fly
13102 to the type of  an existing target object.  Completion of this
13103 support is pending  further analysis of the ACPI specification
13104 concerning this matter.
13105
13106 CPU-specific code has been removed from the subsystem (hardware
13107 directory).
13108
13109 New Power Management Timer functions added
13110
13111 Linux OS Services Layer (OSL): Moved system state transition code
13112 to the core, fixed it, and modified  Linux OSL accordingly.
13113
13114 Fixed C2 and C3 latency calculations.
13115
13116
13117 We no longer use the compilation date for the version message on
13118 initialization, but retrieve the version from AcpiGetSystemInfo().
13119
13120 Incorporated for fix Sony VAIO machines.
13121
13122 Documentation:  The Programmer Reference has been updated and
13123 reformatted.
13124
13125
13126 ASL Compiler:  Version X2013: Fixed a problem where the line
13127 numbering and error reporting could get out  of sync in the
13128 presence of multiple include files.
13129
13130  ------------------------------------------
13131 Summary of changes for this label: 01_15_01
13132
13133 Core ACPI CA Subsystem:
13134
13135 Implemented support for type conversions in the execution of the
13136 ASL  Concatenate operator (The second operand is converted to
13137 match the type  of the first operand before concatenation.)
13138
13139 Support for implicit source operand conversion is partially
13140 implemented.   The ASL source operand types Integer, Buffer, and
13141 String are freely  interchangeable for most ASL operators and are
13142 converted by the interpreter  on the fly as required.  Implicit
13143 Target operand conversion (where the  result is converted to the
13144 target type before storing) is not yet implemented.
13145
13146 Support for 32-bit and 64-bit BCD integers is implemented.
13147
13148 Problem fixed where a field read on an aligned field could cause a
13149 read  past the end of the field.
13150
13151 New exception, AE_AML_NO_RETURN_VALUE, is returned when a method
13152 does not return a value, but the caller expects one.  (The ASL
13153 compiler flags this as a warning.)
13154
13155 ASL Compiler:
13156
13157 Version X2011:
13158 1. Static typechecking of all operands is implemented. This
13159 prevents the use of invalid objects (such as using a Package where
13160 an Integer is required) at compile time instead of at interpreter
13161 run-time.
13162 2. The ASL source line is printed with ALL errors and warnings.
13163 3. Bug fix for source EOF without final linefeed.
13164 4. Debug option is split into a parse trace and a namespace trace.
13165 5. Namespace output option (-n) includes initial values for
13166 integers and strings.
13167 6. Parse-only option added for quick syntax checking.
13168 7. Compiler checks for duplicate ACPI name declarations
13169
13170 Version X2012:
13171 1. Relaxed typechecking to allow interchangeability between
13172 strings, integers, and buffers.  These types are now converted by
13173 the interpreter at runtime.
13174 2. Compiler reports time taken by each internal subsystem in the
13175 debug         output file.
13176
13177
13178  ------------------------------------------
13179 Summary of changes for this label: 12_14_00
13180
13181 ASL Compiler:
13182
13183 This is the first official release of the compiler. Since the
13184 compiler requires elements of the Core Subsystem, this label
13185 synchronizes everything.
13186
13187 ------------------------------------------
13188 Summary of changes for this label: 12_08_00
13189
13190
13191 Fixed a problem where named references within the ASL definition
13192 of both OperationRegions and CreateXXXFields did not work
13193 properly.  The symptom was an AE_AML_OPERAND_TYPE during
13194 initialization of the region/field. This is similar (but not
13195 related internally) to the problem that was fixed in the last
13196 label.
13197
13198 Implemented both 32-bit and 64-bit support for the BCD ASL
13199 functions ToBCD and FromBCD.
13200
13201 Updated all legal headers to include "2000" in the copyright
13202 years.
13203
13204  ------------------------------------------
13205 Summary of changes for this label: 12_01_00
13206
13207 Fixed a problem where method invocations within the ASL definition
13208 of both OperationRegions and CreateXXXFields did not work
13209 properly.  The symptom was an AE_AML_OPERAND_TYPE during
13210 initialization of the region/field:
13211
13212   nsinit-0209: AE_AML_OPERAND_TYPE while getting region arguments
13213 [DEBG]   ammonad-0284: Exec_monadic2_r/Not: bad operand(s)
13214 (0x3005)
13215
13216 Fixed a problem where operators with more than one nested
13217 subexpression would fail.  The symptoms were varied, by mostly
13218 AE_AML_OPERAND_TYPE errors.  This was actually a rather serious
13219 problem that has gone unnoticed until now.
13220
13221   Subtract (Add (1,2), Multiply (3,4))
13222
13223 Fixed a problem where AcpiGetHandle didn't quite get fixed in the
13224 previous build (The prefix part of a relative path was handled
13225 incorrectly).
13226
13227 Fixed a problem where Operation Region initialization failed if
13228 the operation region name was a "namepath" instead of a simple
13229 "nameseg". Symptom was an AE_NO_OPERAND error.
13230
13231 Fixed a problem where an assignment to a local variable via the
13232 indirect RefOf mechanism only worked for the first such
13233 assignment.  Subsequent assignments were ignored.
13234
13235  ------------------------------------------
13236 Summary of changes for this label: 11_15_00
13237
13238 ACPI 2.0 table support with backwards support for ACPI 1.0 and the
13239 0.71 extensions.  Note: although we can read ACPI 2.0 BIOS tables,
13240 the AML  interpreter does NOT have support for the new 2.0 ASL
13241 grammar terms at this time.
13242
13243 All ACPI hardware access is via the GAS structures in the ACPI 2.0
13244 FADT.
13245
13246 All physical memory addresses across all platforms are now 64 bits
13247 wide. Logical address width remains dependent on the platform
13248 (i.e., "void *").
13249
13250 AcpiOsMapMemory interface changed to a 64-bit physical address.
13251
13252 The AML interpreter integer size is now 64 bits, as per the ACPI
13253 2.0 specification.
13254
13255 For backwards compatibility with ACPI 1.0, ACPI tables with a
13256 revision number less than 2 use 32-bit integers only.
13257
13258 Fixed a problem where the evaluation of OpRegion operands did not
13259 always resolve them to numbers properly.
13260
13261 ------------------------------------------
13262 Summary of changes for this label: 10_20_00
13263
13264 Fix for CBN_._STA issue.  This fix will allow correct access to
13265 CBN_ OpRegions when the _STA returns 0x8.
13266
13267 Support to convert ACPI constants (Ones, Zeros, One) to actual
13268 values before a package object is returned
13269
13270 Fix for method call as predicate to if/while construct causing
13271 incorrect if/while behavior
13272
13273 Fix for Else block package lengths sometimes calculated wrong (if
13274 block > 63 bytes)
13275
13276 Fix for Processor object length field, was always zero
13277
13278 Table load abort if FACP sanity check fails
13279
13280 Fix for problem with Scope(name) if name already exists
13281
13282 Warning emitted if a named object referenced cannot be found
13283 (resolved) during method execution.
13284
13285
13286
13287
13288
13289 ------------------------------------------
13290 Summary of changes for this label: 9_29_00
13291
13292 New table initialization interfaces: AcpiInitializeSubsystem no
13293 longer has any parameters AcpiFindRootPointer - Find the RSDP (if
13294 necessary) AcpiLoadTables (RSDP) - load all tables found at RSDP-
13295 >RSDT Obsolete Interfaces AcpiLoadFirmwareTables - replaced by
13296 AcpiLoadTables
13297
13298 Note: These interface changes require changes to all existing OSDs
13299
13300 The PCI_Config default address space handler is always installed
13301 at the root namespace object.
13302
13303 -------------------------------------------
13304 Summary of changes for this label: 09_15_00
13305
13306 The new initialization architecture is implemented.  New
13307 interfaces are: AcpiInitializeSubsystem (replaces AcpiInitialize)
13308 AcpiEnableSubsystem Obsolete Interfaces: AcpiLoadNamespace
13309
13310 (Namespace is automatically loaded when a table is loaded)
13311
13312 The ACPI_OPERAND_OBJECT has been optimized to shrink its size from
13313 52 bytes to 32 bytes.  There is usually one of these for every
13314 namespace object, so the memory savings is significant.
13315
13316 Implemented just-in-time evaluation of the CreateField operators.
13317
13318 Bug fixes for IA-64 support have been integrated.
13319
13320 Additional code review comments have been implemented
13321
13322 The so-called "third pass parse" has been replaced by a final walk
13323 through the namespace to initialize all operation regions (address
13324 spaces) and fields that have not yet been initialized during the
13325 execution of the various _INI and REG methods.
13326
13327 New file - namespace/nsinit.c
13328
13329 -------------------------------------------
13330 Summary of changes for this label: 09_01_00
13331
13332 Namespace manager data structures have been reworked to change the
13333 primary  object from a table to a single object.  This has
13334 resulted in dynamic memory  savings of 3X within the namespace and
13335 2X overall in the ACPI CA subsystem.
13336
13337 Fixed problem where the call to AcpiEvFindPciRootBuses was
13338 inadvertently left  commented out.
13339
13340 Reduced the warning count when generating the source with the GCC
13341 compiler.
13342
13343 Revision numbers added to each module header showing the
13344 SourceSafe version of the file.  Please refer to this version
13345 number when giving us feedback or comments on individual modules.
13346
13347 The main object types within the subsystem have been renamed to
13348 clarify their  purpose:
13349
13350 ACPI_INTERNAL_OBJECT -> ACPI_OPERAND_OBJECT
13351 ACPI_GENERIC_OP -> ACPI_PARSE_OBJECT
13352 ACPI_NAME_TABLE_ENTRY -> ACPI_NAMESPACE_NODE
13353
13354 NOTE: no changes to the initialization sequence are included in
13355 this label.
13356
13357 -------------------------------------------
13358 Summary of changes for this label: 08_23_00
13359
13360 Fixed problem where TerminateControlMethod was being called
13361 multiple times per  method
13362
13363 Fixed debugger problem where single stepping caused a semaphore to
13364 be  oversignalled
13365
13366 Improved performance through additional parse object caching -
13367 added  ACPI_EXTENDED_OP type
13368
13369 -------------------------------------------
13370 Summary of changes for this label: 08_10_00
13371
13372 Parser/Interpreter integration:  Eliminated the creation of
13373 complete parse trees  for ACPI tables and control methods.
13374 Instead, parse subtrees are created and  then deleted as soon as
13375 they are processed (Either entered into the namespace or  executed
13376 by the interpreter).  This reduces the use of dynamic kernel
13377 memory  significantly. (about 10X)
13378
13379 Exception codes broken into classes and renumbered.  Be sure to
13380 recompile all  code that includes acexcep.h.  Hopefully we won't
13381 have to renumber the codes  again now that they are split into
13382 classes (environment, programmer, AML code,  ACPI table, and
13383 internal).
13384
13385 Fixed some additional alignment issues in the Resource Manager
13386 subcomponent
13387
13388 Implemented semaphore tracking in the AcpiExec utility, and fixed
13389 several places  where mutexes/semaphores were being unlocked
13390 without a corresponding lock  operation.  There are no known
13391 semaphore or mutex "leaks" at this time.
13392
13393 Fixed the case where an ASL Return operator is used to return an
13394 unnamed  package.
13395
13396 -------------------------------------------
13397 Summary of changes for this label: 07_28_00
13398
13399 Fixed a problem with the way addresses were calculated in
13400 AcpiAmlReadFieldData()  and AcpiAmlWriteFieldData(). This problem
13401 manifested itself when a Field was  created with WordAccess or
13402 DwordAccess, but the field unit defined within the  Field was less
13403
13404 than a Word or Dword.
13405
13406 Fixed a problem in AmlDumpOperands() module's loop to pull
13407 operands off of the  operand stack to display information. The
13408 problem manifested itself as a TLB  error on 64-bit systems when
13409 accessing an operand stack with two or more  operands.
13410
13411 Fixed a problem with the PCI configuration space handlers where
13412 context was  getting confused between accesses. This required a
13413 change to the generic address  space handler and address space
13414 setup definitions. Handlers now get both a  global handler context
13415 (this is the one passed in by the user when executing
13416 AcpiInstallAddressSpaceHandler() and a specific region context
13417 that is unique to  each region (For example, the _ADR, _SEG and
13418 _BBN values associated with a  specific region). The generic
13419 function definitions have changed to the  following:
13420
13421 typedef ACPI_STATUS (*ADDRESS_SPACE_HANDLER) ( UINT32 Function,
13422 UINT32 Address, UINT32 BitWidth, UINT32 *Value, void
13423 *HandlerContext, // This used to be void *Context void
13424 *RegionContext); // This is an additional parameter
13425
13426 typedef ACPI_STATUS (*ADDRESS_SPACE_SETUP) ( ACPI_HANDLE
13427 RegionHandle, UINT32 Function, void *HandlerContext,  void
13428 **RegionContext); // This used to be **ReturnContext
13429
13430 -------------------------------------------
13431 Summary of changes for this label: 07_21_00
13432
13433 Major file consolidation and rename.  All files within the
13434 interpreter have been  renamed as well as most header files.  This
13435 was done to prevent collisions with  existing files in the host
13436 OSs -- filenames such as "config.h" and "global.h"  seem to be
13437 quite common.  The VC project files have been updated.  All
13438 makefiles  will require modification.
13439
13440 The parser/interpreter integration continues in Phase 5 with the
13441 implementation  of a complete 2-pass parse (the AML is parsed
13442 twice) for each table;  This  avoids the construction of a huge
13443 parse tree and therefore reduces the amount of  dynamic memory
13444 required by the subsystem.  Greater use of the parse object cache
13445 means that performance is unaffected.
13446
13447 Many comments from the two code reviews have been rolled in.
13448
13449 The 64-bit alignment support is complete.
13450
13451 -------------------------------------------
13452 Summary of changes for this label: 06_30_00
13453
13454 With a nod and a tip of the hat to the technology of yesteryear,
13455 we've added  support in the source code for 80 column output
13456 devices.  The code is now mostly  constrained to 80 columns or
13457 less to support environments and editors that 1)  cannot display
13458 or print more than 80 characters on a single line, and 2) cannot
13459 disable line wrapping.
13460
13461 A major restructuring of the namespace data structure has been
13462 completed.  The  result is 1) cleaner and more
13463 understandable/maintainable code, and 2) a  significant reduction
13464 in the dynamic memory requirement for each named ACPI  object
13465 (almost half).
13466
13467 -------------------------------------------
13468 Summary of changes for this label: 06_23_00
13469
13470 Linux support has been added.  In order to obtain approval to get
13471 the ACPI CA  subsystem into the Linux kernel, we've had to make
13472 quite a few changes to the  base subsystem that will affect all
13473 users (all the changes are generic and OS- independent).  The
13474 effects of these global changes have been somewhat far  reaching.
13475 Files have been merged and/or renamed and interfaces have been
13476 renamed.   The major changes are described below.
13477
13478 Osd* interfaces renamed to AcpiOs* to eliminate namespace
13479 pollution/confusion  within our target kernels.  All OSD
13480 interfaces must be modified to match the new  naming convention.
13481
13482 Files merged across the subsystem.  A number of the smaller source
13483 and header  files have been merged to reduce the file count and
13484 increase the density of the  existing files.  There are too many
13485 to list here.  In general, makefiles that  call out individual
13486 files will require rebuilding.
13487
13488 Interpreter files renamed.  All interpreter files now have the
13489 prefix am*  instead of ie* and is*.
13490
13491 Header files renamed:  The acapi.h file is now acpixf.h.  The
13492 acpiosd.h file is  now acpiosxf.h.  We are removing references to
13493 the acronym "API" since it is  somewhat windowsy. The new name is
13494 "external interface" or xface or xf in the  filenames.j
13495
13496
13497 All manifest constants have been forced to upper case (some were
13498 mixed case.)   Also, the string "ACPI_" has been prepended to many
13499 (not all) of the constants,  typedefs, and structs.
13500
13501 The globals "DebugLevel" and "DebugLayer" have been renamed
13502 "AcpiDbgLevel" and  "AcpiDbgLayer" respectively.
13503
13504 All other globals within the subsystem are now prefixed with
13505 "AcpiGbl_" Internal procedures within the subsystem are now
13506 prefixed with "Acpi" (with only  a few exceptions).  The original
13507 two-letter abbreviation for the subcomponent  remains after "Acpi"
13508 - for example, CmCallocate became AcpiCmCallocate.
13509
13510 Added a source code translation/conversion utility.  Used to
13511 generate the Linux  source code, it can be modified to generate
13512 other types of source as well. Can  also be used to cleanup
13513 existing source by removing extraneous spaces and blank  lines.
13514 Found in tools/acpisrc/*
13515
13516 OsdUnMapMemory was renamed to OsdUnmapMemory and then
13517 AcpiOsUnmapMemory.  (UnMap  became Unmap).
13518
13519 A "MaxUnits" parameter has been added to AcpiOsCreateSemaphore.
13520 When set to  one, this indicates that the caller wants to use the
13521
13522 semaphore as a mutex, not a  counting semaphore.  ACPI CA uses
13523 both types.  However, implementers of this  call may want to use
13524 different OS primitives depending on the type of semaphore
13525 requested.  For example, some operating systems provide separate
13526
13527 "mutex" and  "semaphore" interfaces - where the mutex interface is
13528 much faster because it  doesn't have all the overhead of a full
13529 semaphore implementation.
13530
13531 Fixed a deadlock problem where a method that accesses the PCI
13532 address space can  block forever if it is the first access to the
13533 space.
13534
13535 -------------------------------------------
13536 Summary of changes for this label: 06_02_00
13537
13538 Support for environments that cannot handle unaligned data
13539 accesses (e.g.  firmware and OS environments devoid of alignment
13540 handler technology namely  SAL/EFI and the IA-64 Linux kernel) has
13541 been added (via configurable macros) in  these three areas: -
13542 Transfer of data from the raw AML byte stream is done via byte
13543 moves instead of    word/dword/qword moves. - External objects are
13544 aligned within the user buffer, including package   elements (sub-
13545 objects). - Conversion of name strings to UINT32 Acpi Names is now
13546 done byte-wise.
13547
13548 The Store operator was modified to mimic Microsoft's
13549 implementation when storing  to a Buffer Field.
13550
13551 Added a check of the BM_STS bit before entering C3.
13552
13553 The methods subdirectory has been obsoleted and removed.  A new
13554 file, cmeval.c  subsumes the functionality.
13555
13556 A 16-bit (DOS) version of AcpiExec has been developed.  The
13557 makefile is under  the acpiexec directory.