2 * Copyright (c) 1998-2006 Apple Computer, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
28 #ifndef __IOKIT_IOTYPES_H
29 #define __IOKIT_IOTYPES_H
36 #include <IOKit/system.h>
38 #include <mach/message.h>
39 #include <mach/vm_types.h>
42 #include <IOKit/IOReturn.h>
49 #if defined (__cplusplus)
52 #define NULL ((void *)0)
59 #ifndef __MACTYPES__ /* CF MacTypes.h */
60 #ifndef __TYPES__ /* guess... Mac Types.h */
63 #include <libkern/OSTypes.h>
65 #endif /* __TYPES__ */
66 #endif /* __MACTYPES__ */
69 #include <libkern/OSBase.h>
72 typedef UInt32 IOOptionBits
;
73 typedef SInt32 IOFixed
;
74 typedef UInt32 IOVersion
;
75 typedef UInt32 IOItemCount
;
76 typedef UInt32 IOCacheMode
;
78 typedef UInt32 IOByteCount32
;
79 typedef UInt64 IOByteCount64
;
81 typedef UInt32 IOPhysicalAddress32
;
82 typedef UInt64 IOPhysicalAddress64
;
83 typedef UInt32 IOPhysicalLength32
;
84 typedef UInt64 IOPhysicalLength64
;
87 typedef mach_vm_address_t IOVirtualAddress
;
89 typedef vm_address_t IOVirtualAddress
;
92 #if defined(__LP64__) && defined(KERNEL)
93 typedef IOByteCount64 IOByteCount
;
95 typedef IOByteCount32 IOByteCount
;
98 typedef IOVirtualAddress IOLogicalAddress
;
100 #if defined(__LP64__) && defined(KERNEL)
102 typedef IOPhysicalAddress64 IOPhysicalAddress
;
103 typedef IOPhysicalLength64 IOPhysicalLength
;
104 #define IOPhysical32( hi, lo ) ((UInt64) lo + ((UInt64)(hi) << 32))
105 #define IOPhysSize 64
109 typedef IOPhysicalAddress32 IOPhysicalAddress
;
110 typedef IOPhysicalLength32 IOPhysicalLength
;
111 #define IOPhysical32( hi, lo ) (lo)
112 #define IOPhysSize 32
119 IOPhysicalAddress address
;
125 IOVirtualAddress address
;
130 typedef IOVirtualRange IOAddressRange
;
131 #else /* !__LP64__ */
134 mach_vm_address_t address
;
135 mach_vm_size_t length
;
137 #endif /* !__LP64__ */
140 * Map between #defined or enum'd constants and text description.
149 * Memory alignment -- specified as a power of two.
151 typedef unsigned int IOAlignment
;
153 #define IO_NULL_VM_TASK ((vm_task_t)0)
157 * Pull in machine specific stuff.
160 //#include <IOKit/machine/IOTypes.h>
164 #ifndef __IOKIT_PORTS_DEFINED__
165 #define __IOKIT_PORTS_DEFINED__
169 typedef OSObject
* io_object_t
;
171 typedef struct OSObject
* io_object_t
;
174 typedef mach_port_t io_object_t
;
176 #endif /* __IOKIT_PORTS_DEFINED__ */
178 #include <device/device_types.h>
180 typedef io_object_t io_connect_t
;
181 typedef io_object_t io_enumerator_t
;
182 typedef io_object_t io_iterator_t
;
183 typedef io_object_t io_registry_entry_t
;
184 typedef io_object_t io_service_t
;
186 #define IO_OBJECT_NULL ((io_object_t) 0)
188 #endif /* MACH_KERNEL */
190 // IOConnectMapMemory memoryTypes
192 kIODefaultMemoryType
= 0
198 kIOWriteThruCache
= 2,
199 kIOCopybackCache
= 3,
200 kIOWriteCombineCache
= 4
203 // IOMemory mapping options
205 kIOMapAnywhere
= 0x00000001,
207 kIOMapCacheMask
= 0x00000700,
208 kIOMapCacheShift
= 8,
209 kIOMapDefaultCache
= kIODefaultCache
<< kIOMapCacheShift
,
210 kIOMapInhibitCache
= kIOInhibitCache
<< kIOMapCacheShift
,
211 kIOMapWriteThruCache
= kIOWriteThruCache
<< kIOMapCacheShift
,
212 kIOMapCopybackCache
= kIOCopybackCache
<< kIOMapCacheShift
,
213 kIOMapWriteCombineCache
= kIOWriteCombineCache
<< kIOMapCacheShift
,
215 kIOMapUserOptionsMask
= 0x00000fff,
217 kIOMapReadOnly
= 0x00001000,
219 kIOMapStatic
= 0x01000000,
220 kIOMapReference
= 0x02000000,
221 kIOMapUnique
= 0x04000000
222 #ifdef XNU_KERNEL_PRIVATE
223 , kIOMap64Bit
= 0x08000000
227 /*! @enum Scale Factors
228 @discussion Used when a scale_factor parameter is required to define a unit of time.
229 @constant kNanosecondScale Scale factor for nanosecond based times.
230 @constant kMicrosecondScale Scale factor for microsecond based times.
231 @constant kMillisecondScale Scale factor for millisecond based times.
232 @constant kTickScale Scale factor for the standard (100Hz) tick.
233 @constant kSecondScale Scale factor for second based times. */
236 kNanosecondScale
= 1,
237 kMicrosecondScale
= 1000,
238 kMillisecondScale
= 1000 * 1000,
239 kSecondScale
= 1000 * 1000 * 1000,
240 kTickScale
= (kSecondScale
/ 100)
244 kIOConnectMethodVarOutputSize
= -3
247 /* compatibility types */
251 typedef unsigned int IODeviceNumber
;
259 #endif /* ! __IOKIT_IOTYPES_H */