]> git.saurik.com Git - apple/xnu.git/blob - iokit/IOKit/IOMapper.h
7834c74838c93c59bf16487cb9e1d67cb2bb9fac
[apple/xnu.git] / iokit / IOKit / IOMapper.h
1 /*
2 * Copyright (c) 1998-2003 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 #ifndef __IOKIT_IOMAPPER_H
30 #define __IOKIT_IOMAPPER_H
31
32 #include <sys/cdefs.h>
33
34 __BEGIN_DECLS
35 #include <IOKit/IOTypes.h>
36 #include <mach/vm_types.h>
37
38 // These are C accessors to the system mapper for non-IOKit clients
39 ppnum_t IOMapperIOVMAlloc(unsigned pages);
40 void IOMapperIOVMFree(ppnum_t addr, unsigned pages);
41
42 ppnum_t IOMapperInsertPage(ppnum_t addr, unsigned offset, ppnum_t page);
43 void IOMapperInsertPPNPages(ppnum_t addr, unsigned offset,
44 ppnum_t *pageList, unsigned pageCount);
45 void IOMapperInsertUPLPages(ppnum_t addr, unsigned offset,
46 upl_page_info_t *pageList, unsigned pageCount);
47
48 mach_vm_address_t IOMallocPhysical(mach_vm_size_t size, mach_vm_address_t mask);
49
50 void IOFreePhysical(mach_vm_address_t address, mach_vm_size_t size);
51
52 __END_DECLS
53
54 #if __cplusplus
55
56 #include <IOKit/IOService.h>
57 #include <IOKit/IOMemoryDescriptor.h>
58
59 class OSData;
60
61 class IOMapper : public IOService
62 {
63 OSDeclareAbstractStructors(IOMapper);
64
65 // Give the platform expert access to setMapperRequired();
66 friend class IOPlatformExpert;
67
68 private:
69 enum SystemMapperState {
70 kNoMapper = 0,
71 kUnknown = 1,
72 kHasMapper = 2, // Any other value is pointer to a live mapper
73 kWaitMask = 3,
74 };
75 protected:
76 void *fTable;
77 ppnum_t fTablePhys;
78 IOItemCount fTableSize;
79 OSData *fTableHandle;
80 bool fIsSystem;
81
82
83 static void setMapperRequired(bool hasMapper);
84 static void waitForSystemMapper();
85
86 virtual bool initHardware(IOService *provider) = 0;
87
88 virtual bool allocTable(IOByteCount size);
89
90 public:
91 #if !(defined(__ppc__) && defined(KPI_10_4_0_PPC_COMPAT))
92 virtual bool start(IOService *provider);
93 virtual void free();
94 #endif
95
96 // Static routines capable of allocating tables that are physically
97 // contiguous in real memory space.
98 static OSData * NewARTTable(IOByteCount size,
99 void ** virtAddrP, ppnum_t *physAddrP);
100 static void FreeARTTable(OSData *handle, IOByteCount size);
101
102
103 // To get access to the system mapper IOMapper::gSystem
104 static IOMapper *gSystem;
105
106 virtual ppnum_t iovmAlloc(IOItemCount pages) = 0;
107 virtual void iovmFree(ppnum_t addr, IOItemCount pages) = 0;
108
109 virtual void iovmInsert(ppnum_t addr, IOItemCount offset, ppnum_t page) = 0;
110 virtual void iovmInsert(ppnum_t addr, IOItemCount offset,
111 ppnum_t *pageList, IOItemCount pageCount);
112 virtual void iovmInsert(ppnum_t addr, IOItemCount offset,
113 upl_page_info_t *pageList, IOItemCount pageCount);
114 static void checkForSystemMapper()
115 { if ((vm_address_t) gSystem & kWaitMask) waitForSystemMapper(); };
116
117 // Function will panic if the given address is not found in a valid
118 // iovm mapping.
119 virtual addr64_t mapAddr(IOPhysicalAddress addr) = 0;
120
121 #if !(defined(__ppc__) && defined(KPI_10_4_0_PPC_COMPAT))
122 // Get the address mask to or into an address to bypass this mapper
123 virtual bool getBypassMask(addr64_t *maskP) const
124 OSMetaClassDeclareReservedUsed(IOMapper, 0);
125 #endif
126
127 private:
128 #if (defined(__ppc__) && defined(KPI_10_4_0_PPC_COMPAT))
129 OSMetaClassDeclareReservedUnused(IOMapper, 0);
130 #endif
131 OSMetaClassDeclareReservedUnused(IOMapper, 1);
132 OSMetaClassDeclareReservedUnused(IOMapper, 2);
133 OSMetaClassDeclareReservedUnused(IOMapper, 3);
134 OSMetaClassDeclareReservedUnused(IOMapper, 4);
135 OSMetaClassDeclareReservedUnused(IOMapper, 5);
136 OSMetaClassDeclareReservedUnused(IOMapper, 6);
137 OSMetaClassDeclareReservedUnused(IOMapper, 7);
138 OSMetaClassDeclareReservedUnused(IOMapper, 8);
139 OSMetaClassDeclareReservedUnused(IOMapper, 9);
140 OSMetaClassDeclareReservedUnused(IOMapper, 10);
141 OSMetaClassDeclareReservedUnused(IOMapper, 11);
142 OSMetaClassDeclareReservedUnused(IOMapper, 12);
143 OSMetaClassDeclareReservedUnused(IOMapper, 13);
144 OSMetaClassDeclareReservedUnused(IOMapper, 14);
145 OSMetaClassDeclareReservedUnused(IOMapper, 15);
146 };
147
148 #endif /* __cplusplus */
149
150 #endif /* !__IOKIT_IOMAPPER_H */