2 * Copyright (c) 1998-2000 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@
29 * Copyright (c) 1998 Apple Computer, Inc. All rights reserved.
35 #ifndef __IOKIT_IOLIB_H
36 #define __IOKIT_IOLIB_H
39 #error IOLib.h is for kernel use only
42 #include <sys/cdefs.h>
44 #include <sys/appleapiopts.h>
46 #include <IOKit/system.h>
48 #include <IOKit/IOReturn.h>
49 #include <IOKit/IOTypes.h>
50 #include <IOKit/IOLocks.h>
52 #include <libkern/OSAtomic.h>
56 #include <kern/thread_call.h>
57 #include <kern/clock.h>
63 #define min(a,b) ((a) < (b) ? (a) : (b))
64 #define max(a,b) ((a) > (b) ? (a) : (b))
67 * These are opaque to the user.
69 typedef thread_t IOThread
;
70 typedef void (*IOThreadFunc
)(void *argument
);
73 * Memory allocation functions.
76 /*! @function IOMalloc
77 @abstract Allocates general purpose, wired memory in the kernel map.
78 @discussion This is a general purpose utility to allocate memory in the kernel. There are no alignment guarantees given on the returned memory, and alignment may vary depending on the kernel configuration. This function may block and so should not be called from interrupt level or while a simple lock is held.
79 @param size Size of the memory requested.
80 @result Pointer to the allocated memory, or zero on failure. */
82 void * IOMalloc(vm_size_t size
);
85 @abstract Frees memory allocated with IOMalloc.
86 @discussion This function frees memory allocated with IOMalloc, it may block and so should not be called from interrupt level or while a simple lock is held.
87 @param address Pointer to the allocated memory.
88 @param size Size of the memory allocated. */
90 void IOFree(void * address
, vm_size_t size
);
92 /*! @function IOMallocAligned
93 @abstract Allocates wired memory in the kernel map, with an alignment restriction.
94 @discussion This is a utility to allocate memory in the kernel, with an alignment restriction which is specified as a byte count. This function may block and so should not be called from interrupt level or while a simple lock is held.
95 @param size Size of the memory requested.
96 @param alignment Byte count of the alignment for the memory. For example, pass 256 to get memory allocated at an address with bit 0-7 zero.
97 @result Pointer to the allocated memory, or zero on failure. */
99 void * IOMallocAligned(vm_size_t size
, vm_offset_t alignment
);
101 /*! @function IOFreeAligned
102 @abstract Frees memory allocated with IOMallocAligned.
103 @discussion This function frees memory allocated with IOMallocAligned, it may block and so should not be called from interrupt level or while a simple lock is held.
104 @param address Pointer to the allocated memory.
105 @param size Size of the memory allocated. */
107 void IOFreeAligned(void * address
, vm_size_t size
);
109 /*! @function IOMallocContiguous
110 @abstract Allocates wired memory in the kernel map, with an alignment restriction and physically contiguous.
111 @discussion This is a utility to allocate memory in the kernel, with an alignment restriction which is specified as a byte count, and will allocate only physically contiguous memory. The request may fail if memory is fragmented, and may cause large amounts of paging activity. This function may block and so should not be called from interrupt level or while a simple lock is held.
112 @param size Size of the memory requested.
113 @param alignment Byte count of the alignment for the memory. For example, pass 256 to get memory allocated at an address with bits 0-7 zero.
114 @param physicalAddress IOMallocContiguous returns the physical address of the allocated memory here, if physicalAddress is a non-zero pointer.
115 @result Virtual address of the allocated memory, or zero on failure. */
117 void * IOMallocContiguous(vm_size_t size
, vm_size_t alignment
,
118 IOPhysicalAddress
* physicalAddress
);
120 /*! @function IOFreeContiguous
121 @abstract Frees memory allocated with IOMallocContiguous.
122 @discussion This function frees memory allocated with IOMallocContiguous, it may block and so should not be called from interrupt level or while a simple lock is held.
123 @param address Virtual address of the allocated memory.
124 @param size Size of the memory allocated. */
126 void IOFreeContiguous(void * address
, vm_size_t size
);
129 /*! @function IOMallocPageable
130 @abstract Allocates pageable memory in the kernel map.
131 @discussion This is a utility to allocate pageable memory in the kernel. This function may block and so should not be called from interrupt level or while a simple lock is held.
132 @param size Size of the memory requested.
133 @param alignment Byte count of the alignment for the memory. For example, pass 256 to get memory allocated at an address with bits 0-7 zero.
134 @result Pointer to the allocated memory, or zero on failure. */
136 void * IOMallocPageable(vm_size_t size
, vm_size_t alignment
);
138 /*! @function IOFreePageable
139 @abstract Frees memory allocated with IOMallocPageable.
140 @discussion This function frees memory allocated with IOMallocPageable, it may block and so should not be called from interrupt level or while a simple lock is held.
141 @param address Virtual address of the allocated memory.
142 @param size Size of the memory allocated. */
144 void IOFreePageable(void * address
, vm_size_t size
);
147 * Typed memory allocation macros. Both may block.
149 #define IONew(type,number) (type*)IOMalloc(sizeof(type) * (number) )
150 #define IODelete(ptr,type,number) IOFree( (ptr) , sizeof(type) * (number) )
152 /////////////////////////////////////////////////////////////////////////////
155 // These functions are now implemented in IOMapper.cpp
158 /////////////////////////////////////////////////////////////////////////////
160 /*! @function IOMappedRead8
161 @abstract Read one byte from the desired "Physical" IOSpace address.
162 @discussion Read one byte from the desired "Physical" IOSpace address. This function allows the developer to read an address returned from any memory descriptor's getPhysicalSegment routine. It can then be used by segmenting a physical page slightly to tag the physical page with its kernel space virtual address.
163 @param address The desired address, as returned by IOMemoryDescriptor::getPhysicalSegment.
164 @result Data contained at that location */
166 UInt8
IOMappedRead8(IOPhysicalAddress address
);
168 /*! @function IOMappedRead16
169 @abstract Read two bytes from the desired "Physical" IOSpace address.
170 @discussion Read two bytes from the desired "Physical" IOSpace address. This function allows the developer to read an address returned from any memory descriptor's getPhysicalSegment routine. It can then be used by segmenting a physical page slightly to tag the physical page with its kernel space virtual address.
171 @param address The desired address, as returned by IOMemoryDescriptor::getPhysicalSegment.
172 @result Data contained at that location */
174 UInt16
IOMappedRead16(IOPhysicalAddress address
);
176 /*! @function IOMappedRead32
177 @abstract Read four bytes from the desired "Physical" IOSpace address.
178 @discussion Read four bytes from the desired "Physical" IOSpace address. This function allows the developer to read an address returned from any memory descriptor's getPhysicalSegment routine. It can then be used by segmenting a physical page slightly to tag the physical page with its kernel space virtual address.
179 @param address The desired address, as returned by IOMemoryDescriptor::getPhysicalSegment.
180 @result Data contained at that location */
182 UInt32
IOMappedRead32(IOPhysicalAddress address
);
184 /*! @function IOMappedRead64
185 @abstract Read eight bytes from the desired "Physical" IOSpace address.
186 @discussion Read eight bytes from the desired "Physical" IOSpace address. This function allows the developer to read an address returned from any memory descriptor's getPhysicalSegment routine. It can then be used by segmenting a physical page slightly to tag the physical page with its kernel space virtual address.
187 @param address The desired address, as returned by IOMemoryDescriptor::getPhysicalSegment.
188 @result Data contained at that location */
190 UInt64
IOMappedRead64(IOPhysicalAddress address
);
192 /*! @function IOMappedWrite8
193 @abstract Write one byte to the desired "Physical" IOSpace address.
194 @discussion Write one byte to the desired "Physical" IOSpace address. This function allows the developer to write to an address returned from any memory descriptor's getPhysicalSegment routine.
195 @param address The desired address, as returned by IOMemoryDescriptor::getPhysicalSegment.
196 @param value Data to be writen to the desired location */
198 void IOMappedWrite8(IOPhysicalAddress address
, UInt8 value
);
200 /*! @function IOMappedWrite16
201 @abstract Write two bytes to the desired "Physical" IOSpace address.
202 @discussion Write two bytes to the desired "Physical" IOSpace address. This function allows the developer to write to an address returned from any memory descriptor's getPhysicalSegment routine.
203 @param address The desired address, as returned by IOMemoryDescriptor::getPhysicalSegment.
204 @param value Data to be writen to the desired location */
206 void IOMappedWrite16(IOPhysicalAddress address
, UInt16 value
);
208 /*! @function IOMappedWrite32
209 @abstract Write four bytes to the desired "Physical" IOSpace address.
210 @discussion Write four bytes to the desired "Physical" IOSpace address. This function allows the developer to write to an address returned from any memory descriptor's getPhysicalSegment routine.
211 @param address The desired address, as returned by IOMemoryDescriptor::getPhysicalSegment.
212 @param value Data to be writen to the desired location */
214 void IOMappedWrite32(IOPhysicalAddress address
, UInt32 value
);
216 /*! @function IOMappedWrite64
217 @abstract Write eight bytes to the desired "Physical" IOSpace address.
218 @discussion Write eight bytes to the desired "Physical" IOSpace address. This function allows the developer to write to an address returned from any memory descriptor's getPhysicalSegment routine.
219 @param address The desired address, as returned by IOMemoryDescriptor::getPhysicalSegment.
220 @param value Data to be writen to the desired location */
222 void IOMappedWrite64(IOPhysicalAddress address
, UInt64 value
);
224 /*! @function IOSetProcessorCacheMode
225 @abstract Sets the processor cache mode for mapped memory.
226 @discussion This function sets the cache mode of an already mapped & wired memory range. Note this may not be supported on I/O mappings or shared memory - it is far preferable to set the cache mode as mappings are created with the IOMemoryDescriptor::map method.
227 @param task Task the memory is mapped into.
228 @param address Virtual address of the memory.
229 @param length Length of the range to set.
230 @param cacheMode A constant from IOTypes.h, <br>
231 kIOMapDefaultCache to inhibit the cache in I/O areas, kIOMapCopybackCache in general purpose RAM.<br>
232 kIOMapInhibitCache, kIOMapWriteThruCache, kIOMapCopybackCache to set the appropriate caching.<br>
233 @result An IOReturn code.*/
235 IOReturn
IOSetProcessorCacheMode( task_t task
, IOVirtualAddress address
,
236 IOByteCount length
, IOOptionBits cacheMode
);
238 /*! @function IOFlushProcessorCache
239 @abstract Flushes the processor cache for mapped memory.
240 @discussion This function flushes the processor cache of an already mapped memory range. Note in most cases it is preferable to use IOMemoryDescriptor::prepare and complete to manage cache coherency since they are aware of the architecture's requirements. Flushing the processor cache is not required for coherency in most situations.
241 @param task Task the memory is mapped into.
242 @param address Virtual address of the memory.
243 @param length Length of the range to set.
244 @result An IOReturn code. */
246 IOReturn
IOFlushProcessorCache( task_t task
, IOVirtualAddress address
,
247 IOByteCount length
);
249 /*! @function IOThreadSelf
250 @abstract Returns the osfmk identifier for the currently running thread.
251 @discussion This function returns the current thread (a pointer to the currently active osfmk thread_shuttle). */
253 #define IOThreadSelf() (current_thread())
255 /*! @function IOCreateThread
256 @abstract Create a kernel thread.
257 @discussion This function creates a kernel thread, and passes the caller supplied argument to the new thread.
258 @param function A C-function pointer where the thread will begin execution.
259 @param argument Caller specified data to be passed to the new thread.
260 @result An IOThread identifier for the new thread, equivalent to an osfmk thread_t. */
262 IOThread
IOCreateThread(IOThreadFunc function
, void *argument
);
264 /*! @function IOExitThread
265 @abstract Terminate exceution of current thread.
266 @discussion This function destroys the currently running thread, and does not return. */
268 volatile void IOExitThread(void);
270 /*! @function IOSleep
271 @abstract Sleep the calling thread for a number of milliseconds.
272 @discussion This function blocks the calling thread for at least the number of specified milliseconds, giving time to other processes.
273 @param milliseconds The integer number of milliseconds to wait. */
275 void IOSleep(unsigned milliseconds
);
277 /*! @function IODelay
278 @abstract Spin delay for a number of microseconds.
279 @discussion This function spins to delay for at least the number of specified microseconds. Since the CPU is busy spinning no time is made available to other processes; this method of delay should be used only for short periods. Also, the AbsoluteTime based APIs of kern/clock.h provide finer grained and lower cost delays.
280 @param microseconds The integer number of microseconds to spin wait. */
282 void IODelay(unsigned microseconds
);
285 @abstract Log a message to console in text mode, and /var/log/system.log.
286 @discussion This function allows a driver to log diagnostic information to the screen during verbose boots, and to a log file found at /var/log/system.log. IOLog should not be called from interrupt context.
287 @param format A printf() style format string (see printf() documentation).
288 @param other arguments described by the format string. */
290 void IOLog(const char *format
, ...)
291 __attribute__((format(printf
, 1, 2)));
295 void kprintf(const char *format
, ...);
297 #ifndef _FN_KPRINTF_DECLARED
298 #define _FN_KPRINTF_DECLARED
302 * Convert a integer constant (typically a #define or enum) to a string
303 * via an array of IONamedValue.
305 const char *IOFindNameForValue(int value
,
306 const IONamedValue
*namedValueArray
);
309 * Convert a string to an int via an array of IONamedValue. Returns
310 * kIOReturnSuccess of string found, else returns kIOReturnBadArgument.
312 IOReturn
IOFindValueForName(const char *string
,
313 const IONamedValue
*regValueArray
,
314 int *value
); /* RETURNED */
316 /*! @function Debugger
317 @abstract Enter the kernel debugger.
318 @discussion This function freezes the kernel and enters the builtin debugger. It may not be possible to exit the debugger without a second machine.
319 @param reason A C-string to describe why the debugger is being entered. */
321 void Debugger(const char * reason
);
323 struct OSDictionary
* IOBSDNameMatching( const char * name
);
324 struct OSDictionary
* IOOFPathMatching( const char * path
, char * buf
, int maxLen
);
327 * Convert between size and a power-of-two alignment.
329 IOAlignment
IOSizeToAlignment(unsigned int size
);
330 unsigned int IOAlignmentToSize(IOAlignment align
);
333 * Multiply and divide routines for IOFixed datatype.
336 static inline IOFixed
IOFixedMultiply(IOFixed a
, IOFixed b
)
338 return (IOFixed
)((((SInt64
) a
) * ((SInt64
) b
)) >> 16);
341 static inline IOFixed
IOFixedDivide(IOFixed a
, IOFixed b
)
343 return (IOFixed
)((((SInt64
) a
) << 16) / ((SInt64
) b
));
347 * IORound and IOTrunc convenience functions, in the spirit
348 * of vm's round_page() and trunc_page().
350 #define IORound(value,multiple) \
351 ((((value) + (multiple) - 1) / (multiple)) * (multiple))
353 #define IOTrunc(value,multiple) \
354 (((value) / (multiple)) * (multiple));
357 #ifdef __APPLE_API_OBSOLETE
359 /* The following API is deprecated */
365 void IOPanic(const char *reason
);
367 /* The API exported by kern/clock.h
368 should be used for high resolution timing. */
370 void IOGetTime( mach_timespec_t
* clock_time
);
372 extern mach_timespec_t IOZeroTvalspec
;
374 #endif /* __APPLE_API_OBSOLETE */
378 #endif /* !__IOKIT_IOLIB_H */