Also document BGE_FAKE_AUTONEG in LINT.
[dragonfly.git] / sys / contrib / dev / acpica / acinterp.h
1 /******************************************************************************
2  *
3  * Name: acinterp.h - Interpreter subcomponent prototypes and defines
4  *       $Revision: 145 $
5  *
6  *****************************************************************************/
7
8 /******************************************************************************
9  *
10  * 1. Copyright Notice
11  *
12  * Some or all of this work - Copyright (c) 1999 - 2003, 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 /* $DragonFly: src/sys/contrib/dev/acpica/Attic/acinterp.h,v 1.1 2003/09/24 03:32:15 drhodus Exp $                                                               */
117
118 #ifndef __ACINTERP_H__
119 #define __ACINTERP_H__
120
121
122 #define ACPI_WALK_OPERANDS       (&(WalkState->Operands [WalkState->NumOperands -1]))
123
124
125 ACPI_STATUS
126 AcpiExResolveOperands (
127     UINT16                  Opcode,
128     ACPI_OPERAND_OBJECT     **StackPtr,
129     ACPI_WALK_STATE         *WalkState);
130
131 ACPI_STATUS
132 AcpiExCheckObjectType (
133     ACPI_OBJECT_TYPE        TypeNeeded,
134     ACPI_OBJECT_TYPE        ThisType,
135     void                    *Object);
136
137 /*
138  * exxface - External interpreter interfaces
139  */
140
141 ACPI_STATUS
142 AcpiExLoadTable (
143     ACPI_TABLE_TYPE         TableId);
144
145 ACPI_STATUS
146 AcpiExExecuteMethod (
147     ACPI_NAMESPACE_NODE     *MethodNode,
148     ACPI_OPERAND_OBJECT     **Params,
149     ACPI_OPERAND_OBJECT     **ReturnObjDesc);
150
151
152 /*
153  * exconvrt - object conversion
154  */
155
156 ACPI_STATUS
157 AcpiExConvertToInteger (
158     ACPI_OPERAND_OBJECT     *ObjDesc,
159     ACPI_OPERAND_OBJECT     **ResultDesc,
160     ACPI_WALK_STATE         *WalkState);
161
162 ACPI_STATUS
163 AcpiExConvertToBuffer (
164     ACPI_OPERAND_OBJECT     *ObjDesc,
165     ACPI_OPERAND_OBJECT     **ResultDesc,
166     ACPI_WALK_STATE         *WalkState);
167
168 ACPI_STATUS
169 AcpiExConvertToString (
170     ACPI_OPERAND_OBJECT     *ObjDesc,
171     ACPI_OPERAND_OBJECT     **ResultDesc,
172     UINT32                  Base,
173     UINT32                  MaxLength,
174     ACPI_WALK_STATE         *WalkState);
175
176 ACPI_STATUS
177 AcpiExConvertToTargetType (
178     ACPI_OBJECT_TYPE        DestinationType,
179     ACPI_OPERAND_OBJECT     *SourceDesc,
180     ACPI_OPERAND_OBJECT     **ResultDesc,
181     ACPI_WALK_STATE         *WalkState);
182
183 UINT32
184 AcpiExConvertToAscii (
185     ACPI_INTEGER            Integer,
186     UINT32                  Base,
187     UINT8                   *String,
188     UINT8                   MaxLength);
189
190 /*
191  * exfield - ACPI AML (p-code) execution - field manipulation
192  */
193
194 ACPI_STATUS
195 AcpiExExtractFromField (
196     ACPI_OPERAND_OBJECT     *ObjDesc,
197     void                    *Buffer,
198     UINT32                  BufferLength);
199
200 ACPI_STATUS
201 AcpiExInsertIntoField (
202     ACPI_OPERAND_OBJECT     *ObjDesc,
203     void                    *Buffer,
204     UINT32                  BufferLength);
205
206 ACPI_STATUS
207 AcpiExSetupRegion (
208     ACPI_OPERAND_OBJECT     *ObjDesc,
209     UINT32                  FieldDatumByteOffset);
210
211 ACPI_STATUS
212 AcpiExAccessRegion (
213     ACPI_OPERAND_OBJECT     *ObjDesc,
214     UINT32                  FieldDatumByteOffset,
215     ACPI_INTEGER            *Value,
216     UINT32                  ReadWrite);
217
218 BOOLEAN
219 AcpiExRegisterOverflow (
220     ACPI_OPERAND_OBJECT     *ObjDesc,
221     ACPI_INTEGER            Value);
222
223 ACPI_STATUS
224 AcpiExFieldDatumIo (
225     ACPI_OPERAND_OBJECT     *ObjDesc,
226     UINT32                  FieldDatumByteOffset,
227     ACPI_INTEGER            *Value,
228     UINT32                  ReadWrite);
229
230 ACPI_STATUS
231 AcpiExWriteWithUpdateRule (
232     ACPI_OPERAND_OBJECT     *ObjDesc,
233     ACPI_INTEGER            Mask,
234     ACPI_INTEGER            FieldValue,
235     UINT32                  FieldDatumByteOffset);
236
237 void
238 AcpiExGetBufferDatum(
239     ACPI_INTEGER            *Datum,
240     void                    *Buffer,
241     UINT32                  ByteGranularity,
242     UINT32                  Offset);
243
244 void
245 AcpiExSetBufferDatum (
246     ACPI_INTEGER            MergedDatum,
247     void                    *Buffer,
248     UINT32                  ByteGranularity,
249     UINT32                  Offset);
250
251 ACPI_STATUS
252 AcpiExReadDataFromField (
253     ACPI_WALK_STATE         *WalkState,
254     ACPI_OPERAND_OBJECT     *ObjDesc,
255     ACPI_OPERAND_OBJECT     **RetBufferDesc);
256
257 ACPI_STATUS
258 AcpiExWriteDataToField (
259     ACPI_OPERAND_OBJECT     *SourceDesc,
260     ACPI_OPERAND_OBJECT     *ObjDesc,
261     ACPI_OPERAND_OBJECT     **ResultDesc);
262
263 /*
264  * exmisc - ACPI AML (p-code) execution - specific opcodes
265  */
266
267 ACPI_STATUS
268 AcpiExOpcode_3A_0T_0R (
269     ACPI_WALK_STATE         *WalkState);
270
271 ACPI_STATUS
272 AcpiExOpcode_3A_1T_1R (
273     ACPI_WALK_STATE         *WalkState);
274
275 ACPI_STATUS
276 AcpiExOpcode_6A_0T_1R (
277     ACPI_WALK_STATE         *WalkState);
278
279 BOOLEAN
280 AcpiExDoMatch (
281     UINT32                  MatchOp,
282     ACPI_INTEGER            PackageValue,
283     ACPI_INTEGER            MatchValue);
284
285 ACPI_STATUS
286 AcpiExGetObjectReference (
287     ACPI_OPERAND_OBJECT     *ObjDesc,
288     ACPI_OPERAND_OBJECT     **ReturnDesc,
289     ACPI_WALK_STATE         *WalkState);
290
291 ACPI_STATUS
292 AcpiExResolveMultiple (
293     ACPI_WALK_STATE         *WalkState,
294     ACPI_OPERAND_OBJECT     *Operand,
295     ACPI_OBJECT_TYPE        *ReturnType,
296     ACPI_OPERAND_OBJECT     **ReturnDesc);
297
298 ACPI_STATUS
299 AcpiExConcatTemplate (
300     ACPI_OPERAND_OBJECT     *ObjDesc,
301     ACPI_OPERAND_OBJECT     *ObjDesc2,
302     ACPI_OPERAND_OBJECT     **ActualReturnDesc,
303     ACPI_WALK_STATE         *WalkState);
304
305 ACPI_STATUS
306 AcpiExDoConcatenate (
307     ACPI_OPERAND_OBJECT     *ObjDesc,
308     ACPI_OPERAND_OBJECT     *ObjDesc2,
309     ACPI_OPERAND_OBJECT     **ActualReturnDesc,
310     ACPI_WALK_STATE         *WalkState);
311
312 BOOLEAN
313 AcpiExDoLogicalOp (
314     UINT16                  Opcode,
315     ACPI_INTEGER            Operand0,
316     ACPI_INTEGER            Operand1);
317
318 ACPI_INTEGER
319 AcpiExDoMathOp (
320     UINT16                  Opcode,
321     ACPI_INTEGER            Operand0,
322     ACPI_INTEGER            Operand1);
323
324 ACPI_STATUS
325 AcpiExCreateMutex (
326     ACPI_WALK_STATE         *WalkState);
327
328 ACPI_STATUS
329 AcpiExCreateProcessor (
330     ACPI_WALK_STATE         *WalkState);
331
332 ACPI_STATUS
333 AcpiExCreatePowerResource (
334     ACPI_WALK_STATE         *WalkState);
335
336 ACPI_STATUS
337 AcpiExCreateRegion (
338     UINT8                   *AmlStart,
339     UINT32                  AmlLength,
340     UINT8                   RegionSpace,
341     ACPI_WALK_STATE         *WalkState);
342
343 ACPI_STATUS
344 AcpiExCreateTableRegion (
345     ACPI_WALK_STATE         *WalkState);
346
347 ACPI_STATUS
348 AcpiExCreateEvent (
349     ACPI_WALK_STATE         *WalkState);
350
351 ACPI_STATUS
352 AcpiExCreateAlias (
353     ACPI_WALK_STATE         *WalkState);
354
355 ACPI_STATUS
356 AcpiExCreateMethod (
357     UINT8                   *AmlStart,
358     UINT32                  AmlLength,
359     ACPI_WALK_STATE         *WalkState);
360
361
362 /*
363  * exconfig - dynamic table load/unload
364  */
365
366 ACPI_STATUS
367 AcpiExAddTable (
368     ACPI_TABLE_HEADER       *Table,
369     ACPI_NAMESPACE_NODE     *ParentNode,
370     ACPI_OPERAND_OBJECT     **DdbHandle);
371
372 ACPI_STATUS
373 AcpiExLoadOp (
374     ACPI_OPERAND_OBJECT     *ObjDesc,
375     ACPI_OPERAND_OBJECT     *Target,
376     ACPI_WALK_STATE         *WalkState);
377
378 ACPI_STATUS
379 AcpiExLoadTableOp (
380     ACPI_WALK_STATE         *WalkState,
381     ACPI_OPERAND_OBJECT     **ReturnDesc);
382
383 ACPI_STATUS
384 AcpiExUnloadTable (
385     ACPI_OPERAND_OBJECT     *DdbHandle);
386
387
388 /*
389  * exmutex - mutex support
390  */
391
392 ACPI_STATUS
393 AcpiExAcquireMutex (
394     ACPI_OPERAND_OBJECT     *TimeDesc,
395     ACPI_OPERAND_OBJECT     *ObjDesc,
396     ACPI_WALK_STATE         *WalkState);
397
398 ACPI_STATUS
399 AcpiExReleaseMutex (
400     ACPI_OPERAND_OBJECT     *ObjDesc,
401     ACPI_WALK_STATE         *WalkState);
402
403 void
404 AcpiExReleaseAllMutexes (
405     ACPI_THREAD_STATE       *Thread);
406
407 void
408 AcpiExUnlinkMutex (
409     ACPI_OPERAND_OBJECT     *ObjDesc);
410
411 void
412 AcpiExLinkMutex (
413     ACPI_OPERAND_OBJECT     *ObjDesc,
414     ACPI_THREAD_STATE       *Thread);
415
416 /*
417  * exprep - ACPI AML (p-code) execution - prep utilities
418  */
419
420 ACPI_STATUS
421 AcpiExPrepCommonFieldObject (
422     ACPI_OPERAND_OBJECT     *ObjDesc,
423     UINT8                   FieldFlags,
424     UINT8                   FieldAttribute,
425     UINT32                  FieldBitPosition,
426     UINT32                  FieldBitLength);
427
428 ACPI_STATUS
429 AcpiExPrepFieldValue (
430     ACPI_CREATE_FIELD_INFO  *Info);
431
432 /*
433  * exsystem - Interface to OS services
434  */
435
436 ACPI_STATUS
437 AcpiExSystemDoNotifyOp (
438     ACPI_OPERAND_OBJECT     *Value,
439     ACPI_OPERAND_OBJECT     *ObjDesc);
440
441 ACPI_STATUS
442 AcpiExSystemDoSuspend(
443     UINT32                  Time);
444
445 ACPI_STATUS
446 AcpiExSystemDoStall (
447     UINT32                  Time);
448
449 ACPI_STATUS
450 AcpiExSystemAcquireMutex(
451     ACPI_OPERAND_OBJECT     *Time,
452     ACPI_OPERAND_OBJECT     *ObjDesc);
453
454 ACPI_STATUS
455 AcpiExSystemReleaseMutex(
456     ACPI_OPERAND_OBJECT     *ObjDesc);
457
458 ACPI_STATUS
459 AcpiExSystemSignalEvent(
460     ACPI_OPERAND_OBJECT     *ObjDesc);
461
462 ACPI_STATUS
463 AcpiExSystemWaitEvent(
464     ACPI_OPERAND_OBJECT     *Time,
465     ACPI_OPERAND_OBJECT     *ObjDesc);
466
467 ACPI_STATUS
468 AcpiExSystemResetEvent(
469     ACPI_OPERAND_OBJECT     *ObjDesc);
470
471 ACPI_STATUS
472 AcpiExSystemWaitSemaphore (
473     ACPI_HANDLE             Semaphore,
474     UINT16                  Timeout);
475
476
477 /*
478  * exmonadic - ACPI AML (p-code) execution, monadic operators
479  */
480
481 ACPI_STATUS
482 AcpiExOpcode_1A_0T_0R (
483     ACPI_WALK_STATE         *WalkState);
484
485 ACPI_STATUS
486 AcpiExOpcode_1A_0T_1R (
487     ACPI_WALK_STATE         *WalkState);
488
489 ACPI_STATUS
490 AcpiExOpcode_1A_1T_1R (
491     ACPI_WALK_STATE         *WalkState);
492
493 ACPI_STATUS
494 AcpiExOpcode_1A_1T_0R (
495     ACPI_WALK_STATE         *WalkState);
496
497 /*
498  * exdyadic - ACPI AML (p-code) execution, dyadic operators
499  */
500
501 ACPI_STATUS
502 AcpiExOpcode_2A_0T_0R (
503     ACPI_WALK_STATE         *WalkState);
504
505 ACPI_STATUS
506 AcpiExOpcode_2A_0T_1R (
507     ACPI_WALK_STATE         *WalkState);
508
509 ACPI_STATUS
510 AcpiExOpcode_2A_1T_1R (
511     ACPI_WALK_STATE         *WalkState);
512
513 ACPI_STATUS
514 AcpiExOpcode_2A_2T_1R (
515     ACPI_WALK_STATE         *WalkState);
516
517
518 /*
519  * exresolv  - Object resolution and get value functions
520  */
521
522 ACPI_STATUS
523 AcpiExResolveToValue (
524     ACPI_OPERAND_OBJECT     **StackPtr,
525     ACPI_WALK_STATE         *WalkState);
526
527 ACPI_STATUS
528 AcpiExResolveNodeToValue (
529     ACPI_NAMESPACE_NODE     **StackPtr,
530     ACPI_WALK_STATE         *WalkState);
531
532 ACPI_STATUS
533 AcpiExResolveObjectToValue (
534     ACPI_OPERAND_OBJECT     **StackPtr,
535     ACPI_WALK_STATE         *WalkState);
536
537
538 /*
539  * exdump - Scanner debug output routines
540  */
541
542 void
543 AcpiExDumpOperand (
544     ACPI_OPERAND_OBJECT     *EntryDesc);
545
546 void
547 AcpiExDumpOperands (
548     ACPI_OPERAND_OBJECT     **Operands,
549     ACPI_INTERPRETER_MODE   InterpreterMode,
550     char                    *Ident,
551     UINT32                  NumLevels,
552     char                    *Note,
553     char                    *ModuleName,
554     UINT32                  LineNumber);
555
556 void
557 AcpiExDumpObjectDescriptor (
558     ACPI_OPERAND_OBJECT     *Object,
559     UINT32                  Flags);
560
561 void
562 AcpiExDumpNode (
563     ACPI_NAMESPACE_NODE     *Node,
564     UINT32                  Flags);
565
566 void
567 AcpiExOutString (
568     char                    *Title,
569     char                    *Value);
570
571 void
572 AcpiExOutPointer (
573     char                    *Title,
574     void                    *Value);
575
576 void
577 AcpiExOutInteger (
578     char                    *Title,
579     UINT32                  Value);
580
581 void
582 AcpiExOutAddress (
583     char                    *Title,
584     ACPI_PHYSICAL_ADDRESS   Value);
585
586
587 /*
588  * exnames - interpreter/scanner name load/execute
589  */
590
591 char *
592 AcpiExAllocateNameString (
593     UINT32                  PrefixCount,
594     UINT32                  NumNameSegs);
595
596 UINT32
597 AcpiExGoodChar (
598     UINT32                  Character);
599
600 ACPI_STATUS
601 AcpiExNameSegment (
602     UINT8                   **InAmlAddress,
603     char                    *NameString);
604
605 ACPI_STATUS
606 AcpiExGetNameString (
607     ACPI_OBJECT_TYPE        DataType,
608     UINT8                   *InAmlAddress,
609     char                    **OutNameString,
610     UINT32                  *OutNameLength);
611
612 ACPI_STATUS
613 AcpiExDoName (
614     ACPI_OBJECT_TYPE        DataType,
615     ACPI_INTERPRETER_MODE   LoadExecMode);
616
617
618 /*
619  * exstore - Object store support
620  */
621
622 ACPI_STATUS
623 AcpiExStore (
624     ACPI_OPERAND_OBJECT     *ValDesc,
625     ACPI_OPERAND_OBJECT     *DestDesc,
626     ACPI_WALK_STATE         *WalkState);
627
628 ACPI_STATUS
629 AcpiExStoreObjectToIndex (
630     ACPI_OPERAND_OBJECT     *ValDesc,
631     ACPI_OPERAND_OBJECT     *DestDesc,
632     ACPI_WALK_STATE         *WalkState);
633
634 ACPI_STATUS
635 AcpiExStoreObjectToNode (
636     ACPI_OPERAND_OBJECT     *SourceDesc,
637     ACPI_NAMESPACE_NODE     *Node,
638     ACPI_WALK_STATE         *WalkState);
639
640
641 /*
642  * exstoren
643  */
644
645 ACPI_STATUS
646 AcpiExResolveObject (
647     ACPI_OPERAND_OBJECT     **SourceDescPtr,
648     ACPI_OBJECT_TYPE        TargetType,
649     ACPI_WALK_STATE         *WalkState);
650
651 ACPI_STATUS
652 AcpiExStoreObjectToObject (
653     ACPI_OPERAND_OBJECT     *SourceDesc,
654     ACPI_OPERAND_OBJECT     *DestDesc,
655     ACPI_OPERAND_OBJECT     **NewDesc,
656     ACPI_WALK_STATE         *WalkState);
657
658
659 /*
660  * excopy - object copy
661  */
662
663 ACPI_STATUS
664 AcpiExStoreBufferToBuffer (
665     ACPI_OPERAND_OBJECT     *SourceDesc,
666     ACPI_OPERAND_OBJECT     *TargetDesc);
667
668 ACPI_STATUS
669 AcpiExStoreStringToString (
670     ACPI_OPERAND_OBJECT     *SourceDesc,
671     ACPI_OPERAND_OBJECT     *TargetDesc);
672
673 ACPI_STATUS
674 AcpiExCopyIntegerToIndexField (
675     ACPI_OPERAND_OBJECT     *SourceDesc,
676     ACPI_OPERAND_OBJECT     *TargetDesc);
677
678 ACPI_STATUS
679 AcpiExCopyIntegerToBankField (
680     ACPI_OPERAND_OBJECT     *SourceDesc,
681     ACPI_OPERAND_OBJECT     *TargetDesc);
682
683 ACPI_STATUS
684 AcpiExCopyDataToNamedField (
685     ACPI_OPERAND_OBJECT     *SourceDesc,
686     ACPI_NAMESPACE_NODE     *Node);
687
688 ACPI_STATUS
689 AcpiExCopyIntegerToBufferField (
690     ACPI_OPERAND_OBJECT     *SourceDesc,
691     ACPI_OPERAND_OBJECT     *TargetDesc);
692
693 /*
694  * exutils - interpreter/scanner utilities
695  */
696
697 ACPI_STATUS
698 AcpiExEnterInterpreter (
699     void);
700
701 void
702 AcpiExExitInterpreter (
703     void);
704
705 void
706 AcpiExTruncateFor32bitTable (
707     ACPI_OPERAND_OBJECT     *ObjDesc);
708
709 BOOLEAN
710 AcpiExAcquireGlobalLock (
711     UINT32                  Rule);
712
713 void
714 AcpiExReleaseGlobalLock (
715     BOOLEAN                 Locked);
716
717 UINT32
718 AcpiExDigitsNeeded (
719     ACPI_INTEGER            Value,
720     UINT32                  Base);
721
722 void
723 AcpiExEisaIdToString (
724     UINT32                  NumericId,
725     char                    *OutString);
726
727 void
728 AcpiExUnsignedIntegerToString (
729     ACPI_INTEGER            Value,
730     char                    *OutString);
731
732
733 /*
734  * exregion - default OpRegion handlers
735  */
736
737 ACPI_STATUS
738 AcpiExSystemMemorySpaceHandler (
739     UINT32                  Function,
740     ACPI_PHYSICAL_ADDRESS   Address,
741     UINT32                  BitWidth,
742     ACPI_INTEGER            *Value,
743     void                    *HandlerContext,
744     void                    *RegionContext);
745
746 ACPI_STATUS
747 AcpiExSystemIoSpaceHandler (
748     UINT32                  Function,
749     ACPI_PHYSICAL_ADDRESS   Address,
750     UINT32                  BitWidth,
751     ACPI_INTEGER            *Value,
752     void                    *HandlerContext,
753     void                    *RegionContext);
754
755 ACPI_STATUS
756 AcpiExPciConfigSpaceHandler (
757     UINT32                  Function,
758     ACPI_PHYSICAL_ADDRESS   Address,
759     UINT32                  BitWidth,
760     ACPI_INTEGER            *Value,
761     void                    *HandlerContext,
762     void                    *RegionContext);
763
764 ACPI_STATUS
765 AcpiExCmosSpaceHandler (
766     UINT32                  Function,
767     ACPI_PHYSICAL_ADDRESS   Address,
768     UINT32                  BitWidth,
769     ACPI_INTEGER            *Value,
770     void                    *HandlerContext,
771     void                    *RegionContext);
772
773 ACPI_STATUS
774 AcpiExPciBarSpaceHandler (
775     UINT32                  Function,
776     ACPI_PHYSICAL_ADDRESS   Address,
777     UINT32                  BitWidth,
778     ACPI_INTEGER            *Value,
779     void                    *HandlerContext,
780     void                    *RegionContext);
781
782 ACPI_STATUS
783 AcpiExEmbeddedControllerSpaceHandler (
784     UINT32                  Function,
785     ACPI_PHYSICAL_ADDRESS   Address,
786     UINT32                  BitWidth,
787     ACPI_INTEGER            *Value,
788     void                    *HandlerContext,
789     void                    *RegionContext);
790
791 ACPI_STATUS
792 AcpiExSmBusSpaceHandler (
793     UINT32                  Function,
794     ACPI_PHYSICAL_ADDRESS   Address,
795     UINT32                  BitWidth,
796     ACPI_INTEGER            *Value,
797     void                    *HandlerContext,
798     void                    *RegionContext);
799
800
801 ACPI_STATUS
802 AcpiExDataTableSpaceHandler (
803     UINT32                  Function,
804     ACPI_PHYSICAL_ADDRESS   Address,
805     UINT32                  BitWidth,
806     ACPI_INTEGER            *Value,
807     void                    *HandlerContext,
808     void                    *RegionContext);
809
810 #endif /* __INTERP_H__ */