]> git.saurik.com Git - apple/xnu.git/blame_incremental - iokit/Kernel/IOKitKernelInternal.h
xnu-4903.270.47.tar.gz
[apple/xnu.git] / iokit / Kernel / IOKitKernelInternal.h
... / ...
CommitLineData
1/*
2 * Copyright (c) 1998-2000 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5 *
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.
14 *
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
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.
25 *
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28
29
30#ifndef _IOKIT_KERNELINTERNAL_H
31#define _IOKIT_KERNELINTERNAL_H
32
33#include <sys/cdefs.h>
34
35__BEGIN_DECLS
36
37#include <vm/vm_pageout.h>
38#include <mach/memory_object_types.h>
39#include <device/device_port.h>
40#include <IOKit/IODMACommand.h>
41#include <IOKit/IOKitServer.h>
42
43/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
44
45#if (KDEBUG_LEVEL >= KDEBUG_LEVEL_STANDARD)
46
47#define IOServiceTrace(csc, a, b, c, d) do { \
48 if(kIOTraceIOService & gIOKitTrace) { \
49 KERNEL_DEBUG_CONSTANT(IODBG_IOSERVICE(csc), a, b, c, d, 0); \
50 } \
51} while(0)
52
53#else /* (KDEBUG_LEVEL >= KDEBUG_LEVEL_STANDARD) */
54
55#define IOServiceTrace(csc, a, b, c, d) do { \
56 (void)a; \
57 (void)b; \
58 (void)c; \
59 (void)d; \
60} while (0)
61
62#endif /* (KDEBUG_LEVEL >= KDEBUG_LEVEL_STANDARD) */
63
64/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
65
66typedef kern_return_t (*IOIteratePageableMapsCallback)(vm_map_t map, void * ref);
67
68void IOLibInit(void);
69kern_return_t IOIteratePageableMaps(vm_size_t size,
70 IOIteratePageableMapsCallback callback, void * ref);
71vm_map_t IOPageableMapForAddress(uintptr_t address);
72
73struct IOMemoryDescriptorMapAllocRef {
74 vm_map_t map;
75 mach_vm_address_t mapped;
76 mach_vm_size_t size;
77 vm_prot_t prot;
78 vm_tag_t tag;
79 IOOptionBits options;
80};
81
82kern_return_t
83IOMemoryDescriptorMapAlloc(vm_map_t map, void * ref);
84
85
86mach_vm_address_t
87IOKernelAllocateWithPhysicalRestrict(mach_vm_size_t size, mach_vm_address_t maxPhys,
88 mach_vm_size_t alignment, bool contiguous);
89void
90IOKernelFreePhysical(mach_vm_address_t address, mach_vm_size_t size);
91
92#if IOTRACKING
93IOReturn
94IOMemoryMapTracking(IOTrackingUser * tracking, task_t * task,
95 mach_vm_address_t * address, mach_vm_size_t * size);
96#endif /* IOTRACKING */
97
98extern vm_size_t debug_iomallocpageable_size;
99
100extern ppnum_t gIOLastPage;
101
102extern IOSimpleLock * gIOPageAllocLock;
103extern queue_head_t gIOPageAllocList;
104
105/* Physical to physical copy (ints must be disabled) */
106extern void bcopy_phys(addr64_t from, addr64_t to, vm_size_t size);
107
108__END_DECLS
109
110#define __IODEQUALIFY(type, expr) \
111 ({ typeof(expr) expr_ = (type)(uintptr_t)(expr); \
112 (type)(uintptr_t)(expr_); })
113
114
115struct IODMACommandInternal {
116 IOMDDMAWalkSegmentState fState;
117 IOMDDMACharacteristics fMDSummary;
118
119 UInt64 fPreparedOffset;
120 UInt64 fPreparedLength;
121
122 UInt32 fSourceAlignMask;
123
124 UInt8 fCursor;
125 UInt8 fCheckAddressing;
126 UInt8 fIterateOnly;
127 UInt8 fMisaligned;
128 UInt8 fMapContig;
129 UInt8 fPrepared;
130 UInt8 fDoubleBuffer;
131 UInt8 fNewMD;
132 UInt8 fLocalMapperAllocValid;
133 UInt8 fIOVMAddrValid;
134 UInt8 fForceDoubleBuffer;
135 UInt8 fSetActiveNoMapper;
136
137 vm_page_t fCopyPageAlloc;
138 vm_page_t fCopyNext;
139 vm_page_t fNextRemapPage;
140
141 ppnum_t fCopyPageCount;
142
143 uint64_t fLocalMapperAlloc;
144 uint64_t fLocalMapperAllocLength;
145
146 class IOBufferMemoryDescriptor * fCopyMD;
147
148 IOService * fDevice;
149
150 // IODMAEventSource use
151 IOReturn fStatus;
152 UInt64 fActualByteCount;
153 AbsoluteTime fTimeStamp;
154};
155
156struct IOMemoryDescriptorDevicePager {
157 void * devicePager;
158 unsigned int pagerContig:1;
159 unsigned int unused:31;
160 IOMemoryDescriptor * memory;
161};
162
163struct IOMemoryDescriptorReserved {
164 IOMemoryDescriptorDevicePager dp;
165 uint64_t preparationID;
166 // for kernel IOMD subclasses... they have no expansion
167 uint64_t kernReserved[4];
168 vm_tag_t kernelTag;
169 vm_tag_t userTag;
170};
171
172struct iopa_t {
173 IOLock * lock;
174 queue_head_t list;
175 vm_size_t pagecount;
176 vm_size_t bytecount;
177};
178
179struct iopa_page_t {
180 queue_chain_t link;
181 uint64_t avail;
182 uint32_t signature;
183};
184typedef struct iopa_page_t iopa_page_t;
185
186typedef uintptr_t (*iopa_proc_t)(iopa_t * a);
187
188enum{
189 kIOPageAllocSignature = 'iopa'
190};
191
192extern "C" void iopa_init(iopa_t * a);
193extern "C" uintptr_t iopa_alloc(iopa_t * a, iopa_proc_t alloc, vm_size_t bytes, uint32_t balign);
194extern "C" uintptr_t iopa_free(iopa_t * a, uintptr_t addr, vm_size_t bytes);
195extern "C" uint32_t gIOPageAllocChunkBytes;
196
197extern "C" iopa_t gIOBMDPageAllocator;
198
199extern "C" struct timeval gIOLastSleepTime;
200extern "C" struct timeval gIOLastWakeTime;
201
202extern clock_sec_t gIOConsoleLockTime;
203
204extern bool gCPUsRunning;
205
206extern OSSet * gIORemoveOnReadProperties;
207
208extern "C" void IOKitInitializeTime( void );
209
210extern "C" OSString * IOCopyLogNameForPID(int pid);
211
212extern "C" void IOKitKernelLogBuffer(const char * title, const void * buffer, size_t size,
213 void (*output)(const char *format, ...));
214
215#if defined(__i386__) || defined(__x86_64__)
216#ifndef __cplusplus
217#error xx
218#endif
219
220extern const OSSymbol * gIOCreateEFIDevicePathSymbol;
221extern "C" void IOSetKeyStoreData(LIBKERN_CONSUMED IOMemoryDescriptor * data);
222extern "C" void IOSetAPFSKeyStoreData(LIBKERN_CONSUMED IOMemoryDescriptor* data);
223#endif
224extern const OSSymbol * gAKSGetKey;
225
226void IOScreenLockTimeUpdate(clock_sec_t secs);
227
228void IOCPUInitialize(void);
229IOReturn IOInstallServicePlatformActions(IOService * service);
230IOReturn IORemoveServicePlatformActions(IOService * service);
231
232#endif /* ! _IOKIT_KERNELINTERNAL_H */