2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
26 * Mach Operating System
27 * Copyright (c) 1991,1990,1989,1988,1987 Carnegie Mellon University
28 * All Rights Reserved.
30 * Permission to use, copy, modify and distribute this software and its
31 * documentation is hereby granted, provided that both the copyright
32 * notice and this permission notice appear in all copies of the
33 * software, derivative works or modified versions, and any portions
34 * thereof, and that both notices appear in supporting documentation.
36 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
37 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
38 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
40 * Carnegie Mellon requests users of this software to return to
42 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
43 * School of Computer Science
44 * Carnegie Mellon University
45 * Pittsburgh PA 15213-3890
47 * any improvements or extensions that they make and grant Carnegie Mellon
48 * the rights to redistribute these changes.
54 * Author: Avadis Tevanian, Jr.
57 * Machine address mapping definitions -- machine-independent
58 * section. [For machine-dependent section, see "machine/pmap.h".]
64 #include <mach/kern_return.h>
65 #include <mach/vm_param.h>
66 #include <mach/vm_types.h>
67 #include <mach/vm_attributes.h>
68 #include <mach/boolean.h>
69 #include <mach/vm_prot.h>
72 * The following is a description of the interface to the
73 * machine-dependent "physical map" data structure. The module
74 * must provide a "pmap_t" data type that represents the
75 * set of valid virtual-to-physical addresses for one user
76 * address space. [The kernel address space is represented
77 * by a distinguished "pmap_t".] The routines described manage
78 * this type, install and update virtual-to-physical mappings,
79 * and perform operations on physical addresses common to
80 * many address spaces.
83 #ifndef MACH_KERNEL_PRIVATE
87 #else /* MACH_KERNEL_PRIVATE */
89 typedef struct pmap
*pmap_t
;
91 #include <machine/pmap.h>
94 * Routines used for initialization.
95 * There is traditionally also a pmap_bootstrap,
96 * used very early by machine-dependent code,
97 * but it is not part of the interface.
100 extern vm_offset_t
pmap_steal_memory(vm_size_t size
);
101 /* During VM initialization,
102 * steal a chunk of memory.
104 extern unsigned int pmap_free_pages(void); /* During VM initialization,
105 * report remaining unused
108 extern void pmap_startup(
111 /* During VM initialization,
112 * use remaining physical pages
113 * to allocate page frames.
115 extern void pmap_init(void); /* Initialization,
120 #ifndef MACHINE_PAGES
122 * If machine/pmap.h defines MACHINE_PAGES, it must implement
123 * the above functions. The pmap module has complete control.
124 * Otherwise, it must implement
129 * and vm/vm_resident.c implements pmap_steal_memory and pmap_startup
130 * using pmap_free_pages, pmap_next_page, pmap_virtual_space,
131 * and pmap_enter. pmap_free_pages may over-estimate the number
132 * of unused physical pages, and pmap_next_page may return FALSE
133 * to indicate that there are no more unused pages to return.
134 * However, for best performance pmap_free_pages should be accurate.
137 extern boolean_t
pmap_next_page(vm_offset_t
*paddr
);
138 /* During VM initialization,
139 * return the next unused
142 extern void pmap_virtual_space(
143 vm_offset_t
*virtual_start
,
144 vm_offset_t
*virtual_end
);
145 /* During VM initialization,
146 * report virtual space
147 * available for the kernel.
149 #endif /* MACHINE_PAGES */
152 * Routines to manage the physical map data structure.
154 extern pmap_t
pmap_create(vm_size_t size
); /* Create a pmap_t. */
155 extern pmap_t (pmap_kernel
)(void); /* Return the kernel's pmap */
156 extern void pmap_reference(pmap_t pmap
); /* Gain a reference. */
157 extern void pmap_destroy(pmap_t pmap
); /* Release a reference. */
158 extern void pmap_switch(pmap_t
);
161 extern void pmap_enter( /* Enter a mapping */
170 * Routines that operate on physical addresses.
172 extern void pmap_page_protect( /* Restrict access to page. */
176 extern void (pmap_zero_page
)(
179 extern void (pmap_zero_part_page
)(
184 extern void (pmap_copy_page
)(
188 extern void (pmap_copy_part_page
)(
190 vm_offset_t src_offset
,
192 vm_offset_t dst_offset
,
195 extern void (pmap_copy_part_lpage
)(
198 vm_offset_t dst_offset
,
201 extern void (pmap_copy_part_rpage
)(
203 vm_offset_t src_offset
,
208 * debug/assertions. pmap_verify_free returns true iff
209 * the given physical page is mapped into no pmap.
211 extern boolean_t
pmap_verify_free(vm_offset_t paddr
);
214 * Statistics routines
216 extern int (pmap_resident_count
)(pmap_t pmap
);
219 * Sundry required (internal) routines
221 extern void pmap_collect(pmap_t pmap
);/* Perform garbage
222 * collection, if any */
225 extern vm_offset_t (pmap_phys_address
)( /* Transform address returned
226 * by device driver mapping
227 * function to physical address
228 * known to this module. */
231 extern int (pmap_phys_to_frame
)( /* Inverse of pmap_phys_addess,
232 * for use by device driver
233 * mapping function in
234 * machine-independent
241 extern void (pmap_copy
)( /* Copy range of mappings,
247 vm_offset_t source_va
);
249 extern kern_return_t (pmap_attribute
)( /* Get/Set special memory
254 vm_machine_attribute_t attribute
,
255 vm_machine_attribute_val_t
* value
);
258 * Routines defined as macros.
260 #ifndef PMAP_ACTIVATE_USER
261 #define PMAP_ACTIVATE_USER(act, cpu) { \
264 pmap = (act)->map->pmap; \
265 if (pmap != pmap_kernel()) \
266 PMAP_ACTIVATE(pmap, (act), (cpu)); \
268 #endif /* PMAP_ACTIVATE_USER */
270 #ifndef PMAP_DEACTIVATE_USER
271 #define PMAP_DEACTIVATE_USER(act, cpu) { \
274 pmap = (act)->map->pmap; \
275 if ((pmap) != pmap_kernel()) \
276 PMAP_DEACTIVATE(pmap, (act), (cpu)); \
278 #endif /* PMAP_DEACTIVATE_USER */
280 #ifndef PMAP_ACTIVATE_KERNEL
281 #define PMAP_ACTIVATE_KERNEL(cpu) \
282 PMAP_ACTIVATE(pmap_kernel(), THR_ACT_NULL, cpu)
283 #endif /* PMAP_ACTIVATE_KERNEL */
285 #ifndef PMAP_DEACTIVATE_KERNEL
286 #define PMAP_DEACTIVATE_KERNEL(cpu) \
287 PMAP_DEACTIVATE(pmap_kernel(), THR_ACT_NULL, cpu)
288 #endif /* PMAP_DEACTIVATE_KERNEL */
292 * Macro to be used in place of pmap_enter()
294 #define PMAP_ENTER(pmap, virtual_address, page, protection, wired) \
300 (protection) & ~(page)->page_lock, \
304 #endif /* !PMAP_ENTER */
306 #endif /* MACH_KERNEL_PRIVATE */
309 * JMM - This portion is exported to other kernel components right now,
310 * but will be pulled back in the future when the needed functionality
311 * is provided in a cleaner manner.
314 #define PMAP_NULL ((pmap_t) 0)
316 extern pmap_t kernel_pmap
; /* The kernel's map */
317 #define pmap_kernel() (kernel_pmap)
320 * Routines to manage reference/modify bits based on
321 * physical addresses, simulating them if not provided
324 /* Clear reference bit */
325 extern void pmap_clear_reference(vm_offset_t paddr
);
326 /* Return reference bit */
327 extern boolean_t (pmap_is_referenced
)(vm_offset_t paddr
);
329 extern void pmap_set_modify(vm_offset_t paddr
);
330 /* Clear modify bit */
331 extern void pmap_clear_modify(vm_offset_t paddr
);
332 /* Return modify bit */
333 extern boolean_t
pmap_is_modified(vm_offset_t paddr
);
336 * Routines that operate on ranges of virtual addresses.
338 extern void pmap_remove( /* Remove mappings. */
343 extern void pmap_protect( /* Change protections. */
349 extern void (pmap_pageable
)(
355 extern void pmap_modify_pages( /* Set modify bit for pages */
360 extern vm_offset_t
pmap_extract(pmap_t pmap
,
363 extern void pmap_change_wiring( /* Specify pageability */
367 #endif /* _VM_PMAP_H_ */