1 /****************************************************************************** 2 * 3 * Name: acinterp.h - Interpreter subcomponent prototypes and defines 4 * $Revision: 1.173 $ 5 * 6 *****************************************************************************/ 7 8 /****************************************************************************** 9 * 10 * 1. Copyright Notice 11 * 12 * Some or all of this work - Copyright (c) 1999 - 2008, Intel Corp. 13 * All rights reserved. 14 * 15 * 2. License 16 * 17 * 2.1. This is your license from Intel Corp. under its intellectual property 18 * rights. You may have additional license terms from the party that provided 19 * you this software, covering your right to use that party's intellectual 20 * property rights. 21 * 22 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a 23 * copy of the source code appearing in this file ("Covered Code") an 24 * irrevocable, perpetual, worldwide license under Intel's copyrights in the 25 * base code distributed originally by Intel ("Original Intel Code") to copy, 26 * make derivatives, distribute, use and display any portion of the Covered 27 * Code in any form, with the right to sublicense such rights; and 28 * 29 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent 30 * license (with the right to sublicense), under only those claims of Intel 31 * patents that are infringed by the Original Intel Code, to make, use, sell, 32 * offer to sell, and import the Covered Code and derivative works thereof 33 * solely to the minimum extent necessary to exercise the above copyright 34 * license, and in no event shall the patent license extend to any additions 35 * to or modifications of the Original Intel Code. No other license or right 36 * is granted directly or by implication, estoppel or otherwise; 37 * 38 * The above copyright and patent license is granted only if the following 39 * conditions are met: 40 * 41 * 3. Conditions 42 * 43 * 3.1. Redistribution of Source with Rights to Further Distribute Source. 44 * Redistribution of source code of any substantial portion of the Covered 45 * Code or modification with rights to further distribute source must include 46 * the above Copyright Notice, the above License, this list of Conditions, 47 * and the following Disclaimer and Export Compliance provision. In addition, 48 * Licensee must cause all Covered Code to which Licensee contributes to 49 * contain a file documenting the changes Licensee made to create that Covered 50 * Code and the date of any change. Licensee must include in that file the 51 * documentation of any changes made by any predecessor Licensee. Licensee 52 * must include a prominent statement that the modification is derived, 53 * directly or indirectly, from Original Intel Code. 54 * 55 * 3.2. Redistribution of Source with no Rights to Further Distribute Source. 56 * Redistribution of source code of any substantial portion of the Covered 57 * Code or modification without rights to further distribute source must 58 * include the following Disclaimer and Export Compliance provision in the 59 * documentation and/or other materials provided with distribution. In 60 * addition, Licensee may not authorize further sublicense of source of any 61 * portion of the Covered Code, and must include terms to the effect that the 62 * license from Licensee to its licensee is limited to the intellectual 63 * property embodied in the software Licensee provides to its licensee, and 64 * not to intellectual property embodied in modifications its licensee may 65 * make. 66 * 67 * 3.3. Redistribution of Executable. Redistribution in executable form of any 68 * substantial portion of the Covered Code or modification must reproduce the 69 * above Copyright Notice, and the following Disclaimer and Export Compliance 70 * provision in the documentation and/or other materials provided with the 71 * distribution. 72 * 73 * 3.4. Intel retains all right, title, and interest in and to the Original 74 * Intel Code. 75 * 76 * 3.5. Neither the name Intel nor any other trademark owned or controlled by 77 * Intel shall be used in advertising or otherwise to promote the sale, use or 78 * other dealings in products derived from or relating to the Covered Code 79 * without prior written authorization from Intel. 80 * 81 * 4. Disclaimer and Export Compliance 82 * 83 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED 84 * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE 85 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE, 86 * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY 87 * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY 88 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A 89 * PARTICULAR PURPOSE. 90 * 91 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES 92 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR 93 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT, 94 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY 95 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL 96 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS 97 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY 98 * LIMITED REMEDY. 99 * 100 * 4.3. Licensee shall not export, either directly or indirectly, any of this 101 * software or system incorporating such software without first obtaining any 102 * required license or other approval from the U. S. Department of Commerce or 103 * any other agency or department of the United States Government. In the 104 * event Licensee exports any such software from the United States or 105 * re-exports any such software from a foreign destination, Licensee shall 106 * ensure that the distribution and export/re-export of the software is in 107 * compliance with all laws, regulations, orders, or other restrictions of the 108 * U.S. Export Administration Regulations. Licensee agrees that neither it nor 109 * any of its subsidiaries will export/re-export any technical data, process, 110 * software, or service, directly or indirectly, to any country for which the 111 * United States government or any agency thereof requires an export license, 112 * other governmental approval, or letter of assurance, without first obtaining 113 * such license, approval or letter. 114 * 115 *****************************************************************************/ 116 117 #ifndef __ACINTERP_H__ 118 #define __ACINTERP_H__ 119 120 121 #define ACPI_WALK_OPERANDS (&(WalkState->Operands [WalkState->NumOperands -1])) 122 123 /* Macros for tables used for debug output */ 124 125 #define ACPI_EXD_OFFSET(f) (UINT8) ACPI_OFFSET (ACPI_OPERAND_OBJECT,f) 126 #define ACPI_EXD_NSOFFSET(f) (UINT8) ACPI_OFFSET (ACPI_NAMESPACE_NODE,f) 127 #define ACPI_EXD_TABLE_SIZE(name) (sizeof(name) / sizeof (ACPI_EXDUMP_INFO)) 128 129 /* 130 * If possible, pack the following structures to byte alignment, since we 131 * don't care about performance for debug output. Two cases where we cannot 132 * pack the structures: 133 * 134 * 1) Hardware does not support misaligned memory transfers 135 * 2) Compiler does not support pointers within packed structures 136 */ 137 #if (!defined(ACPI_MISALIGNMENT_NOT_SUPPORTED) && !defined(ACPI_PACKED_POINTERS_NOT_SUPPORTED)) 138 #pragma pack(1) 139 #endif 140 141 typedef const struct acpi_exdump_info 142 { 143 UINT8 Opcode; 144 UINT8 Offset; 145 char *Name; 146 147 } ACPI_EXDUMP_INFO; 148 149 /* Values for the Opcode field above */ 150 151 #define ACPI_EXD_INIT 0 152 #define ACPI_EXD_TYPE 1 153 #define ACPI_EXD_UINT8 2 154 #define ACPI_EXD_UINT16 3 155 #define ACPI_EXD_UINT32 4 156 #define ACPI_EXD_UINT64 5 157 #define ACPI_EXD_LITERAL 6 158 #define ACPI_EXD_POINTER 7 159 #define ACPI_EXD_ADDRESS 8 160 #define ACPI_EXD_STRING 9 161 #define ACPI_EXD_BUFFER 10 162 #define ACPI_EXD_PACKAGE 11 163 #define ACPI_EXD_FIELD 12 164 #define ACPI_EXD_REFERENCE 13 165 166 /* restore default alignment */ 167 168 #pragma pack() 169 170 171 /* 172 * exconvrt - object conversion 173 */ 174 ACPI_STATUS 175 AcpiExConvertToInteger ( 176 ACPI_OPERAND_OBJECT *ObjDesc, 177 ACPI_OPERAND_OBJECT **ResultDesc, 178 UINT32 Flags); 179 180 ACPI_STATUS 181 AcpiExConvertToBuffer ( 182 ACPI_OPERAND_OBJECT *ObjDesc, 183 ACPI_OPERAND_OBJECT **ResultDesc); 184 185 ACPI_STATUS 186 AcpiExConvertToString ( 187 ACPI_OPERAND_OBJECT *ObjDesc, 188 ACPI_OPERAND_OBJECT **ResultDesc, 189 UINT32 Type); 190 191 /* Types for ->String conversion */ 192 193 #define ACPI_EXPLICIT_BYTE_COPY 0x00000000 194 #define ACPI_EXPLICIT_CONVERT_HEX 0x00000001 195 #define ACPI_IMPLICIT_CONVERT_HEX 0x00000002 196 #define ACPI_EXPLICIT_CONVERT_DECIMAL 0x00000003 197 198 ACPI_STATUS 199 AcpiExConvertToTargetType ( 200 ACPI_OBJECT_TYPE DestinationType, 201 ACPI_OPERAND_OBJECT *SourceDesc, 202 ACPI_OPERAND_OBJECT **ResultDesc, 203 ACPI_WALK_STATE *WalkState); 204 205 206 /* 207 * exfield - ACPI AML (p-code) execution - field manipulation 208 */ 209 ACPI_STATUS 210 AcpiExCommonBufferSetup ( 211 ACPI_OPERAND_OBJECT *ObjDesc, 212 UINT32 BufferLength, 213 UINT32 *DatumCount); 214 215 ACPI_STATUS 216 AcpiExWriteWithUpdateRule ( 217 ACPI_OPERAND_OBJECT *ObjDesc, 218 ACPI_INTEGER Mask, 219 ACPI_INTEGER FieldValue, 220 UINT32 FieldDatumByteOffset); 221 222 void 223 AcpiExGetBufferDatum( 224 ACPI_INTEGER *Datum, 225 void *Buffer, 226 UINT32 BufferLength, 227 UINT32 ByteGranularity, 228 UINT32 BufferOffset); 229 230 void 231 AcpiExSetBufferDatum ( 232 ACPI_INTEGER MergedDatum, 233 void *Buffer, 234 UINT32 BufferLength, 235 UINT32 ByteGranularity, 236 UINT32 BufferOffset); 237 238 ACPI_STATUS 239 AcpiExReadDataFromField ( 240 ACPI_WALK_STATE *WalkState, 241 ACPI_OPERAND_OBJECT *ObjDesc, 242 ACPI_OPERAND_OBJECT **RetBufferDesc); 243 244 ACPI_STATUS 245 AcpiExWriteDataToField ( 246 ACPI_OPERAND_OBJECT *SourceDesc, 247 ACPI_OPERAND_OBJECT *ObjDesc, 248 ACPI_OPERAND_OBJECT **ResultDesc); 249 250 251 /* 252 * exfldio - low level field I/O 253 */ 254 ACPI_STATUS 255 AcpiExExtractFromField ( 256 ACPI_OPERAND_OBJECT *ObjDesc, 257 void *Buffer, 258 UINT32 BufferLength); 259 260 ACPI_STATUS 261 AcpiExInsertIntoField ( 262 ACPI_OPERAND_OBJECT *ObjDesc, 263 void *Buffer, 264 UINT32 BufferLength); 265 266 ACPI_STATUS 267 AcpiExAccessRegion ( 268 ACPI_OPERAND_OBJECT *ObjDesc, 269 UINT32 FieldDatumByteOffset, 270 ACPI_INTEGER *Value, 271 UINT32 ReadWrite); 272 273 274 /* 275 * exmisc - misc support routines 276 */ 277 ACPI_STATUS 278 AcpiExGetObjectReference ( 279 ACPI_OPERAND_OBJECT *ObjDesc, 280 ACPI_OPERAND_OBJECT **ReturnDesc, 281 ACPI_WALK_STATE *WalkState); 282 283 ACPI_STATUS 284 AcpiExConcatTemplate ( 285 ACPI_OPERAND_OBJECT *ObjDesc, 286 ACPI_OPERAND_OBJECT *ObjDesc2, 287 ACPI_OPERAND_OBJECT **ActualReturnDesc, 288 ACPI_WALK_STATE *WalkState); 289 290 ACPI_STATUS 291 AcpiExDoConcatenate ( 292 ACPI_OPERAND_OBJECT *ObjDesc, 293 ACPI_OPERAND_OBJECT *ObjDesc2, 294 ACPI_OPERAND_OBJECT **ActualReturnDesc, 295 ACPI_WALK_STATE *WalkState); 296 297 ACPI_STATUS 298 AcpiExDoLogicalNumericOp ( 299 UINT16 Opcode, 300 ACPI_INTEGER Integer0, 301 ACPI_INTEGER Integer1, 302 BOOLEAN *LogicalResult); 303 304 ACPI_STATUS 305 AcpiExDoLogicalOp ( 306 UINT16 Opcode, 307 ACPI_OPERAND_OBJECT *Operand0, 308 ACPI_OPERAND_OBJECT *Operand1, 309 BOOLEAN *LogicalResult); 310 311 ACPI_INTEGER 312 AcpiExDoMathOp ( 313 UINT16 Opcode, 314 ACPI_INTEGER Operand0, 315 ACPI_INTEGER Operand1); 316 317 ACPI_STATUS 318 AcpiExCreateMutex ( 319 ACPI_WALK_STATE *WalkState); 320 321 ACPI_STATUS 322 AcpiExCreateProcessor ( 323 ACPI_WALK_STATE *WalkState); 324 325 ACPI_STATUS 326 AcpiExCreatePowerResource ( 327 ACPI_WALK_STATE *WalkState); 328 329 ACPI_STATUS 330 AcpiExCreateRegion ( 331 UINT8 *AmlStart, 332 UINT32 AmlLength, 333 UINT8 RegionSpace, 334 ACPI_WALK_STATE *WalkState); 335 336 ACPI_STATUS 337 AcpiExCreateEvent ( 338 ACPI_WALK_STATE *WalkState); 339 340 ACPI_STATUS 341 AcpiExCreateAlias ( 342 ACPI_WALK_STATE *WalkState); 343 344 ACPI_STATUS 345 AcpiExCreateMethod ( 346 UINT8 *AmlStart, 347 UINT32 AmlLength, 348 ACPI_WALK_STATE *WalkState); 349 350 351 /* 352 * exconfig - dynamic table load/unload 353 */ 354 ACPI_STATUS 355 AcpiExLoadOp ( 356 ACPI_OPERAND_OBJECT *ObjDesc, 357 ACPI_OPERAND_OBJECT *Target, 358 ACPI_WALK_STATE *WalkState); 359 360 ACPI_STATUS 361 AcpiExLoadTableOp ( 362 ACPI_WALK_STATE *WalkState, 363 ACPI_OPERAND_OBJECT **ReturnDesc); 364 365 ACPI_STATUS 366 AcpiExUnloadTable ( 367 ACPI_OPERAND_OBJECT *DdbHandle); 368 369 370 /* 371 * exmutex - mutex support 372 */ 373 ACPI_STATUS 374 AcpiExAcquireMutex ( 375 ACPI_OPERAND_OBJECT *TimeDesc, 376 ACPI_OPERAND_OBJECT *ObjDesc, 377 ACPI_WALK_STATE *WalkState); 378 379 ACPI_STATUS 380 AcpiExAcquireMutexObject ( 381 UINT16 Timeout, 382 ACPI_OPERAND_OBJECT *ObjDesc, 383 ACPI_THREAD_ID ThreadId); 384 385 ACPI_STATUS 386 AcpiExReleaseMutex ( 387 ACPI_OPERAND_OBJECT *ObjDesc, 388 ACPI_WALK_STATE *WalkState); 389 390 ACPI_STATUS 391 AcpiExReleaseMutexObject ( 392 ACPI_OPERAND_OBJECT *ObjDesc); 393 394 void 395 AcpiExReleaseAllMutexes ( 396 ACPI_THREAD_STATE *Thread); 397 398 void 399 AcpiExUnlinkMutex ( 400 ACPI_OPERAND_OBJECT *ObjDesc); 401 402 403 /* 404 * exprep - ACPI AML execution - prep utilities 405 */ 406 ACPI_STATUS 407 AcpiExPrepCommonFieldObject ( 408 ACPI_OPERAND_OBJECT *ObjDesc, 409 UINT8 FieldFlags, 410 UINT8 FieldAttribute, 411 UINT32 FieldBitPosition, 412 UINT32 FieldBitLength); 413 414 ACPI_STATUS 415 AcpiExPrepFieldValue ( 416 ACPI_CREATE_FIELD_INFO *Info); 417 418 419 /* 420 * exsystem - Interface to OS services 421 */ 422 ACPI_STATUS 423 AcpiExSystemDoNotifyOp ( 424 ACPI_OPERAND_OBJECT *Value, 425 ACPI_OPERAND_OBJECT *ObjDesc); 426 427 ACPI_STATUS 428 AcpiExSystemDoSuspend( 429 ACPI_INTEGER Time); 430 431 ACPI_STATUS 432 AcpiExSystemDoStall ( 433 UINT32 Time); 434 435 ACPI_STATUS 436 AcpiExSystemSignalEvent( 437 ACPI_OPERAND_OBJECT *ObjDesc); 438 439 ACPI_STATUS 440 AcpiExSystemWaitEvent( 441 ACPI_OPERAND_OBJECT *Time, 442 ACPI_OPERAND_OBJECT *ObjDesc); 443 444 ACPI_STATUS 445 AcpiExSystemResetEvent( 446 ACPI_OPERAND_OBJECT *ObjDesc); 447 448 ACPI_STATUS 449 AcpiExSystemWaitSemaphore ( 450 ACPI_SEMAPHORE Semaphore, 451 UINT16 Timeout); 452 453 ACPI_STATUS 454 AcpiExSystemWaitMutex ( 455 ACPI_MUTEX Mutex, 456 UINT16 Timeout); 457 458 /* 459 * exoparg1 - ACPI AML execution, 1 operand 460 */ 461 ACPI_STATUS 462 AcpiExOpcode_0A_0T_1R ( 463 ACPI_WALK_STATE *WalkState); 464 465 ACPI_STATUS 466 AcpiExOpcode_1A_0T_0R ( 467 ACPI_WALK_STATE *WalkState); 468 469 ACPI_STATUS 470 AcpiExOpcode_1A_0T_1R ( 471 ACPI_WALK_STATE *WalkState); 472 473 ACPI_STATUS 474 AcpiExOpcode_1A_1T_1R ( 475 ACPI_WALK_STATE *WalkState); 476 477 ACPI_STATUS 478 AcpiExOpcode_1A_1T_0R ( 479 ACPI_WALK_STATE *WalkState); 480 481 /* 482 * exoparg2 - ACPI AML execution, 2 operands 483 */ 484 ACPI_STATUS 485 AcpiExOpcode_2A_0T_0R ( 486 ACPI_WALK_STATE *WalkState); 487 488 ACPI_STATUS 489 AcpiExOpcode_2A_0T_1R ( 490 ACPI_WALK_STATE *WalkState); 491 492 ACPI_STATUS 493 AcpiExOpcode_2A_1T_1R ( 494 ACPI_WALK_STATE *WalkState); 495 496 ACPI_STATUS 497 AcpiExOpcode_2A_2T_1R ( 498 ACPI_WALK_STATE *WalkState); 499 500 501 /* 502 * exoparg3 - ACPI AML execution, 3 operands 503 */ 504 ACPI_STATUS 505 AcpiExOpcode_3A_0T_0R ( 506 ACPI_WALK_STATE *WalkState); 507 508 ACPI_STATUS 509 AcpiExOpcode_3A_1T_1R ( 510 ACPI_WALK_STATE *WalkState); 511 512 513 /* 514 * exoparg6 - ACPI AML execution, 6 operands 515 */ 516 ACPI_STATUS 517 AcpiExOpcode_6A_0T_1R ( 518 ACPI_WALK_STATE *WalkState); 519 520 521 /* 522 * exresolv - Object resolution and get value functions 523 */ 524 ACPI_STATUS 525 AcpiExResolveToValue ( 526 ACPI_OPERAND_OBJECT **StackPtr, 527 ACPI_WALK_STATE *WalkState); 528 529 ACPI_STATUS 530 AcpiExResolveMultiple ( 531 ACPI_WALK_STATE *WalkState, 532 ACPI_OPERAND_OBJECT *Operand, 533 ACPI_OBJECT_TYPE *ReturnType, 534 ACPI_OPERAND_OBJECT **ReturnDesc); 535 536 537 /* 538 * exresnte - resolve namespace node 539 */ 540 ACPI_STATUS 541 AcpiExResolveNodeToValue ( 542 ACPI_NAMESPACE_NODE **StackPtr, 543 ACPI_WALK_STATE *WalkState); 544 545 546 /* 547 * exresop - resolve operand to value 548 */ 549 ACPI_STATUS 550 AcpiExResolveOperands ( 551 UINT16 Opcode, 552 ACPI_OPERAND_OBJECT **StackPtr, 553 ACPI_WALK_STATE *WalkState); 554 555 556 /* 557 * exdump - Interpreter debug output routines 558 */ 559 void 560 AcpiExDumpOperand ( 561 ACPI_OPERAND_OBJECT *ObjDesc, 562 UINT32 Depth); 563 564 void 565 AcpiExDumpOperands ( 566 ACPI_OPERAND_OBJECT **Operands, 567 const char *OpcodeName, 568 UINT32 NumOpcodes); 569 570 void 571 AcpiExDumpObjectDescriptor ( 572 ACPI_OPERAND_OBJECT *Object, 573 UINT32 Flags); 574 575 void 576 AcpiExDumpNamespaceNode ( 577 ACPI_NAMESPACE_NODE *Node, 578 UINT32 Flags); 579 580 581 /* 582 * exnames - AML namestring support 583 */ 584 ACPI_STATUS 585 AcpiExGetNameString ( 586 ACPI_OBJECT_TYPE DataType, 587 UINT8 *InAmlAddress, 588 char **OutNameString, 589 UINT32 *OutNameLength); 590 591 592 /* 593 * exstore - Object store support 594 */ 595 ACPI_STATUS 596 AcpiExStore ( 597 ACPI_OPERAND_OBJECT *ValDesc, 598 ACPI_OPERAND_OBJECT *DestDesc, 599 ACPI_WALK_STATE *WalkState); 600 601 ACPI_STATUS 602 AcpiExStoreObjectToNode ( 603 ACPI_OPERAND_OBJECT *SourceDesc, 604 ACPI_NAMESPACE_NODE *Node, 605 ACPI_WALK_STATE *WalkState, 606 UINT8 ImplicitConversion); 607 608 #define ACPI_IMPLICIT_CONVERSION TRUE 609 #define ACPI_NO_IMPLICIT_CONVERSION FALSE 610 611 612 /* 613 * exstoren - resolve/store object 614 */ 615 ACPI_STATUS 616 AcpiExResolveObject ( 617 ACPI_OPERAND_OBJECT **SourceDescPtr, 618 ACPI_OBJECT_TYPE TargetType, 619 ACPI_WALK_STATE *WalkState); 620 621 ACPI_STATUS 622 AcpiExStoreObjectToObject ( 623 ACPI_OPERAND_OBJECT *SourceDesc, 624 ACPI_OPERAND_OBJECT *DestDesc, 625 ACPI_OPERAND_OBJECT **NewDesc, 626 ACPI_WALK_STATE *WalkState); 627 628 629 /* 630 * exstorob - store object - buffer/string 631 */ 632 ACPI_STATUS 633 AcpiExStoreBufferToBuffer ( 634 ACPI_OPERAND_OBJECT *SourceDesc, 635 ACPI_OPERAND_OBJECT *TargetDesc); 636 637 ACPI_STATUS 638 AcpiExStoreStringToString ( 639 ACPI_OPERAND_OBJECT *SourceDesc, 640 ACPI_OPERAND_OBJECT *TargetDesc); 641 642 643 /* 644 * excopy - object copy 645 */ 646 ACPI_STATUS 647 AcpiExCopyIntegerToIndexField ( 648 ACPI_OPERAND_OBJECT *SourceDesc, 649 ACPI_OPERAND_OBJECT *TargetDesc); 650 651 ACPI_STATUS 652 AcpiExCopyIntegerToBankField ( 653 ACPI_OPERAND_OBJECT *SourceDesc, 654 ACPI_OPERAND_OBJECT *TargetDesc); 655 656 ACPI_STATUS 657 AcpiExCopyDataToNamedField ( 658 ACPI_OPERAND_OBJECT *SourceDesc, 659 ACPI_NAMESPACE_NODE *Node); 660 661 ACPI_STATUS 662 AcpiExCopyIntegerToBufferField ( 663 ACPI_OPERAND_OBJECT *SourceDesc, 664 ACPI_OPERAND_OBJECT *TargetDesc); 665 666 667 /* 668 * exutils - interpreter/scanner utilities 669 */ 670 void 671 AcpiExEnterInterpreter ( 672 void); 673 674 void 675 AcpiExExitInterpreter ( 676 void); 677 678 void 679 AcpiExReacquireInterpreter ( 680 void); 681 682 void 683 AcpiExRelinquishInterpreter ( 684 void); 685 686 void 687 AcpiExTruncateFor32bitTable ( 688 ACPI_OPERAND_OBJECT *ObjDesc); 689 690 void 691 AcpiExAcquireGlobalLock ( 692 UINT32 Rule); 693 694 void 695 AcpiExReleaseGlobalLock ( 696 UINT32 Rule); 697 698 void 699 AcpiExEisaIdToString ( 700 UINT32 NumericId, 701 char *OutString); 702 703 void 704 AcpiExUnsignedIntegerToString ( 705 ACPI_INTEGER Value, 706 char *OutString); 707 708 709 /* 710 * exregion - default OpRegion handlers 711 */ 712 ACPI_STATUS 713 AcpiExSystemMemorySpaceHandler ( 714 UINT32 Function, 715 ACPI_PHYSICAL_ADDRESS Address, 716 UINT32 BitWidth, 717 ACPI_INTEGER *Value, 718 void *HandlerContext, 719 void *RegionContext); 720 721 ACPI_STATUS 722 AcpiExSystemIoSpaceHandler ( 723 UINT32 Function, 724 ACPI_PHYSICAL_ADDRESS Address, 725 UINT32 BitWidth, 726 ACPI_INTEGER *Value, 727 void *HandlerContext, 728 void *RegionContext); 729 730 ACPI_STATUS 731 AcpiExPciConfigSpaceHandler ( 732 UINT32 Function, 733 ACPI_PHYSICAL_ADDRESS Address, 734 UINT32 BitWidth, 735 ACPI_INTEGER *Value, 736 void *HandlerContext, 737 void *RegionContext); 738 739 ACPI_STATUS 740 AcpiExCmosSpaceHandler ( 741 UINT32 Function, 742 ACPI_PHYSICAL_ADDRESS Address, 743 UINT32 BitWidth, 744 ACPI_INTEGER *Value, 745 void *HandlerContext, 746 void *RegionContext); 747 748 ACPI_STATUS 749 AcpiExPciBarSpaceHandler ( 750 UINT32 Function, 751 ACPI_PHYSICAL_ADDRESS Address, 752 UINT32 BitWidth, 753 ACPI_INTEGER *Value, 754 void *HandlerContext, 755 void *RegionContext); 756 757 ACPI_STATUS 758 AcpiExEmbeddedControllerSpaceHandler ( 759 UINT32 Function, 760 ACPI_PHYSICAL_ADDRESS Address, 761 UINT32 BitWidth, 762 ACPI_INTEGER *Value, 763 void *HandlerContext, 764 void *RegionContext); 765 766 ACPI_STATUS 767 AcpiExSmBusSpaceHandler ( 768 UINT32 Function, 769 ACPI_PHYSICAL_ADDRESS Address, 770 UINT32 BitWidth, 771 ACPI_INTEGER *Value, 772 void *HandlerContext, 773 void *RegionContext); 774 775 776 ACPI_STATUS 777 AcpiExDataTableSpaceHandler ( 778 UINT32 Function, 779 ACPI_PHYSICAL_ADDRESS Address, 780 UINT32 BitWidth, 781 ACPI_INTEGER *Value, 782 void *HandlerContext, 783 void *RegionContext); 784 785 #endif /* __INTERP_H__ */ 786