xref: /xnu-8796.121.2/iokit/IOKit/IODeviceTreeSupport.h (revision c54f35ca767986246321eb901baf8f5ff7923f6a)
1*c54f35caSApple OSS Distributions /*
2*c54f35caSApple OSS Distributions  * Copyright (c) 1998-2000 Apple Computer, Inc. All rights reserved.
3*c54f35caSApple OSS Distributions  *
4*c54f35caSApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5*c54f35caSApple OSS Distributions  *
6*c54f35caSApple OSS Distributions  * This file contains Original Code and/or Modifications of Original Code
7*c54f35caSApple OSS Distributions  * as defined in and that are subject to the Apple Public Source License
8*c54f35caSApple OSS Distributions  * Version 2.0 (the 'License'). You may not use this file except in
9*c54f35caSApple OSS Distributions  * compliance with the License. The rights granted to you under the License
10*c54f35caSApple OSS Distributions  * may not be used to create, or enable the creation or redistribution of,
11*c54f35caSApple OSS Distributions  * unlawful or unlicensed copies of an Apple operating system, or to
12*c54f35caSApple OSS Distributions  * circumvent, violate, or enable the circumvention or violation of, any
13*c54f35caSApple OSS Distributions  * terms of an Apple operating system software license agreement.
14*c54f35caSApple OSS Distributions  *
15*c54f35caSApple OSS Distributions  * Please obtain a copy of the License at
16*c54f35caSApple OSS Distributions  * http://www.opensource.apple.com/apsl/ and read it before using this file.
17*c54f35caSApple OSS Distributions  *
18*c54f35caSApple OSS Distributions  * The Original Code and all software distributed under the License are
19*c54f35caSApple OSS Distributions  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20*c54f35caSApple OSS Distributions  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21*c54f35caSApple OSS Distributions  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22*c54f35caSApple OSS Distributions  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23*c54f35caSApple OSS Distributions  * Please see the License for the specific language governing rights and
24*c54f35caSApple OSS Distributions  * limitations under the License.
25*c54f35caSApple OSS Distributions  *
26*c54f35caSApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27*c54f35caSApple OSS Distributions  */
28*c54f35caSApple OSS Distributions /*
29*c54f35caSApple OSS Distributions  * Copyright (c) 1998 Apple Computer, Inc.  All rights reserved.
30*c54f35caSApple OSS Distributions  *
31*c54f35caSApple OSS Distributions  * HISTORY
32*c54f35caSApple OSS Distributions  *
33*c54f35caSApple OSS Distributions  */
34*c54f35caSApple OSS Distributions 
35*c54f35caSApple OSS Distributions #ifndef _IOKIT_IODEVICETREE_H
36*c54f35caSApple OSS Distributions #define _IOKIT_IODEVICETREE_H
37*c54f35caSApple OSS Distributions 
38*c54f35caSApple OSS Distributions #include <IOKit/IORegistryEntry.h>
39*c54f35caSApple OSS Distributions #include <libkern/c++/OSData.h>
40*c54f35caSApple OSS Distributions #include <libkern/c++/OSPtr.h>
41*c54f35caSApple OSS Distributions 
42*c54f35caSApple OSS Distributions class IODeviceMemory;
43*c54f35caSApple OSS Distributions class IOService;
44*c54f35caSApple OSS Distributions 
45*c54f35caSApple OSS Distributions extern const IORegistryPlane *  gIODTPlane;
46*c54f35caSApple OSS Distributions 
47*c54f35caSApple OSS Distributions extern const OSSymbol *         gIODTPHandleKey;
48*c54f35caSApple OSS Distributions 
49*c54f35caSApple OSS Distributions extern const OSSymbol *         gIODTCompatibleKey;
50*c54f35caSApple OSS Distributions extern const OSSymbol *         gIODTTypeKey;
51*c54f35caSApple OSS Distributions extern const OSSymbol *         gIODTModelKey;
52*c54f35caSApple OSS Distributions extern const OSSymbol *         gIODTBridgeModelKey;
53*c54f35caSApple OSS Distributions extern const OSSymbol *         gIODTTargetTypeKey;
54*c54f35caSApple OSS Distributions 
55*c54f35caSApple OSS Distributions extern const OSSymbol *         gIODTAAPLInterruptsKey;
56*c54f35caSApple OSS Distributions extern const OSSymbol *         gIODTDefaultInterruptController;
57*c54f35caSApple OSS Distributions extern const OSSymbol *         gIODTNWInterruptMappingKey;
58*c54f35caSApple OSS Distributions 
59*c54f35caSApple OSS Distributions LIBKERN_RETURNS_NOT_RETAINED IORegistryEntry * IODeviceTreeAlloc( void * dtTop );
60*c54f35caSApple OSS Distributions 
61*c54f35caSApple OSS Distributions 
62*c54f35caSApple OSS Distributions bool IODTMatchNubWithKeys( IORegistryEntry * nub,
63*c54f35caSApple OSS Distributions     const char * keys );
64*c54f35caSApple OSS Distributions 
65*c54f35caSApple OSS Distributions bool IODTCompareNubName( const IORegistryEntry * regEntry,
66*c54f35caSApple OSS Distributions     OSString * name,
67*c54f35caSApple OSS Distributions     LIBKERN_RETURNS_RETAINED_ON_NONZERO OSString ** matchingName );
68*c54f35caSApple OSS Distributions bool IODTCompareNubName( const IORegistryEntry * regEntry,
69*c54f35caSApple OSS Distributions     OSString * name,
70*c54f35caSApple OSS Distributions     OSSharedPtr<OSString>& matchingName );
71*c54f35caSApple OSS Distributions 
72*c54f35caSApple OSS Distributions enum {
73*c54f35caSApple OSS Distributions 	kIODTRecursive      = 0x00000001,
74*c54f35caSApple OSS Distributions 	kIODTExclusive      = 0x00000002
75*c54f35caSApple OSS Distributions };
76*c54f35caSApple OSS Distributions 
77*c54f35caSApple OSS Distributions OSCollectionIterator * IODTFindMatchingEntries( IORegistryEntry * from,
78*c54f35caSApple OSS Distributions     IOOptionBits options, const char * keys );
79*c54f35caSApple OSS Distributions 
80*c54f35caSApple OSS Distributions #if !defined(__arm64__)
81*c54f35caSApple OSS Distributions typedef SInt32 (*IODTCompareAddressCellFunc)
82*c54f35caSApple OSS Distributions (UInt32 cellCount, UInt32 left[], UInt32 right[]);
83*c54f35caSApple OSS Distributions #else
84*c54f35caSApple OSS Distributions typedef SInt64 (*IODTCompareAddressCellFunc)
85*c54f35caSApple OSS Distributions (UInt32 cellCount, UInt32 left[], UInt32 right[]);
86*c54f35caSApple OSS Distributions #endif
87*c54f35caSApple OSS Distributions 
88*c54f35caSApple OSS Distributions typedef void (*IODTNVLocationFunc)
89*c54f35caSApple OSS Distributions (IORegistryEntry * entry,
90*c54f35caSApple OSS Distributions     UInt8 * busNum, UInt8 * deviceNum, UInt8 * functionNum );
91*c54f35caSApple OSS Distributions 
92*c54f35caSApple OSS Distributions void IODTSetResolving( IORegistryEntry *        regEntry,
93*c54f35caSApple OSS Distributions     IODTCompareAddressCellFunc      compareFunc,
94*c54f35caSApple OSS Distributions     IODTNVLocationFunc              locationFunc );
95*c54f35caSApple OSS Distributions 
96*c54f35caSApple OSS Distributions void IODTGetCellCounts( IORegistryEntry * regEntry,
97*c54f35caSApple OSS Distributions     UInt32 * sizeCount, UInt32 * addressCount);
98*c54f35caSApple OSS Distributions 
99*c54f35caSApple OSS Distributions bool IODTResolveAddressCell( IORegistryEntry * regEntry,
100*c54f35caSApple OSS Distributions     UInt32 cellsIn[],
101*c54f35caSApple OSS Distributions     IOPhysicalAddress * phys, IOPhysicalLength * len );
102*c54f35caSApple OSS Distributions 
103*c54f35caSApple OSS Distributions LIBKERN_RETURNS_NOT_RETAINED OSArray *
104*c54f35caSApple OSS Distributions IODTResolveAddressing( IORegistryEntry * regEntry,
105*c54f35caSApple OSS Distributions     const char * addressPropertyName,
106*c54f35caSApple OSS Distributions     IODeviceMemory * parent );
107*c54f35caSApple OSS Distributions 
108*c54f35caSApple OSS Distributions struct IONVRAMDescriptor {
109*c54f35caSApple OSS Distributions 	unsigned int format:4;
110*c54f35caSApple OSS Distributions 	unsigned int marker:1;
111*c54f35caSApple OSS Distributions 	unsigned int bridgeCount:3;
112*c54f35caSApple OSS Distributions 	unsigned int busNum:2;
113*c54f35caSApple OSS Distributions 	unsigned int bridgeDevices:6 * 5;
114*c54f35caSApple OSS Distributions 	unsigned int functionNum:3;
115*c54f35caSApple OSS Distributions 	unsigned int deviceNum:5;
116*c54f35caSApple OSS Distributions } __attribute__((aligned(2), packed));
117*c54f35caSApple OSS Distributions 
118*c54f35caSApple OSS Distributions IOReturn IODTMakeNVDescriptor( IORegistryEntry * regEntry,
119*c54f35caSApple OSS Distributions     IONVRAMDescriptor * hdr );
120*c54f35caSApple OSS Distributions 
121*c54f35caSApple OSS Distributions LIBKERN_RETURNS_NOT_RETAINED OSData *
122*c54f35caSApple OSS Distributions IODTFindSlotName( IORegistryEntry * regEntry, UInt32 deviceNumber );
123*c54f35caSApple OSS Distributions 
124*c54f35caSApple OSS Distributions const OSSymbol * IODTInterruptControllerName(
125*c54f35caSApple OSS Distributions 	IORegistryEntry * regEntry );
126*c54f35caSApple OSS Distributions 
127*c54f35caSApple OSS Distributions bool IODTMapInterrupts( IORegistryEntry * regEntry );
128*c54f35caSApple OSS Distributions 
129*c54f35caSApple OSS Distributions enum {
130*c54f35caSApple OSS Distributions 	kIODTInterruptShared = 0x00000001
131*c54f35caSApple OSS Distributions };
132*c54f35caSApple OSS Distributions IOReturn IODTGetInterruptOptions( IORegistryEntry * regEntry, int source, IOOptionBits * options );
133*c54f35caSApple OSS Distributions 
134*c54f35caSApple OSS Distributions #ifdef __cplusplus
135*c54f35caSApple OSS Distributions extern "C" {
136*c54f35caSApple OSS Distributions #endif
137*c54f35caSApple OSS Distributions 
138*c54f35caSApple OSS Distributions IOReturn IONDRVLibrariesInitialize( IOService * provider );
139*c54f35caSApple OSS Distributions 
140*c54f35caSApple OSS Distributions #ifdef __cplusplus
141*c54f35caSApple OSS Distributions }
142*c54f35caSApple OSS Distributions #endif
143*c54f35caSApple OSS Distributions 
144*c54f35caSApple OSS Distributions #endif /* _IOKIT_IODEVICETREE_H */
145