2 * Copyright (c) 2000-2002 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 <sys/appleapiopts.h>
66 #ifdef __APPLE_API_PRIVATE
68 #include <mach/kern_return.h>
69 #include <mach/vm_param.h>
70 #include <mach/vm_types.h>
71 #include <mach/vm_attributes.h>
72 #include <mach/boolean.h>
73 #include <mach/vm_prot.h>
76 * The following is a description of the interface to the
77 * machine-dependent "physical map" data structure. The module
78 * must provide a "pmap_t" data type that represents the
79 * set of valid virtual-to-physical addresses for one user
80 * address space. [The kernel address space is represented
81 * by a distinguished "pmap_t".] The routines described manage
82 * this type, install and update virtual-to-physical mappings,
83 * and perform operations on physical addresses common to
84 * many address spaces.
87 /* Copy between a physical page and a virtual address */
88 extern kern_return_t
copypv(
97 #define cppvNoModSnk 16
98 #define cppvNoRefSrc 32
99 #define cppvKmap 64 /* User the kernel's vm_map */
101 #if !defined(MACH_KERNEL_PRIVATE)
103 typedef void *pmap_t
;
105 #else /* MACH_KERNEL_PRIVATE */
107 typedef struct pmap
*pmap_t
;
109 #include <machine/pmap.h>
112 * Routines used for initialization.
113 * There is traditionally also a pmap_bootstrap,
114 * used very early by machine-dependent code,
115 * but it is not part of the interface.
118 extern vm_offset_t
pmap_steal_memory(vm_size_t size
);
119 /* During VM initialization,
120 * steal a chunk of memory.
122 extern unsigned int pmap_free_pages(void); /* During VM initialization,
123 * report remaining unused
126 extern void pmap_startup(
129 /* During VM initialization,
130 * use remaining physical pages
131 * to allocate page frames.
133 extern void pmap_init(void); /* Initialization,
138 #ifndef MACHINE_PAGES
140 * If machine/pmap.h defines MACHINE_PAGES, it must implement
141 * the above functions. The pmap module has complete control.
142 * Otherwise, it must implement
147 * and vm/vm_resident.c implements pmap_steal_memory and pmap_startup
148 * using pmap_free_pages, pmap_next_page, pmap_virtual_space,
149 * and pmap_enter. pmap_free_pages may over-estimate the number
150 * of unused physical pages, and pmap_next_page may return FALSE
151 * to indicate that there are no more unused pages to return.
152 * However, for best performance pmap_free_pages should be accurate.
155 extern boolean_t
pmap_next_page(ppnum_t
*pnum
);
156 /* During VM initialization,
157 * return the next unused
160 extern void pmap_virtual_space(
161 vm_offset_t
*virtual_start
,
162 vm_offset_t
*virtual_end
);
163 /* During VM initialization,
164 * report virtual space
165 * available for the kernel.
167 #endif /* MACHINE_PAGES */
170 * Routines to manage the physical map data structure.
172 extern pmap_t
pmap_create(vm_size_t size
); /* Create a pmap_t. */
173 extern pmap_t (pmap_kernel
)(void); /* Return the kernel's pmap */
174 extern void pmap_reference(pmap_t pmap
); /* Gain a reference. */
175 extern void pmap_destroy(pmap_t pmap
); /* Release a reference. */
176 extern void pmap_switch(pmap_t
);
179 extern void pmap_enter( /* Enter a mapping */
187 extern void pmap_remove_some_phys(
193 * Routines that operate on physical addresses.
196 extern void pmap_page_protect( /* Restrict access to page. */
200 extern void (pmap_zero_page
)(
203 extern void (pmap_zero_part_page
)(
208 extern void (pmap_copy_page
)(
212 extern void (pmap_copy_part_page
)(
214 vm_offset_t src_offset
,
216 vm_offset_t dst_offset
,
219 extern void (pmap_copy_part_lpage
)(
222 vm_offset_t dst_offset
,
225 extern void (pmap_copy_part_rpage
)(
227 vm_offset_t src_offset
,
232 * debug/assertions. pmap_verify_free returns true iff
233 * the given physical page is mapped into no pmap.
235 extern boolean_t
pmap_verify_free(ppnum_t pn
);
238 * Statistics routines
240 extern int (pmap_resident_count
)(pmap_t pmap
);
243 * Sundry required (internal) routines
245 extern void pmap_collect(pmap_t pmap
);/* Perform garbage
246 * collection, if any */
249 extern vm_offset_t (pmap_phys_address
)( /* Transform address returned
250 * by device driver mapping
251 * function to physical address
252 * known to this module. */
255 extern int (pmap_phys_to_frame
)( /* Inverse of pmap_phys_addess,
256 * for use by device driver
257 * mapping function in
258 * machine-independent
265 extern void (pmap_copy
)( /* Copy range of mappings,
271 vm_offset_t source_va
);
273 extern kern_return_t (pmap_attribute
)( /* Get/Set special memory
278 vm_machine_attribute_t attribute
,
279 vm_machine_attribute_val_t
* value
);
281 extern kern_return_t (pmap_attribute_cache_sync
)( /* Flush appropriate
283 * page number sent */
286 vm_machine_attribute_t attribute
,
287 vm_machine_attribute_val_t
* value
);
290 * Routines defined as macros.
292 #ifndef PMAP_ACTIVATE_USER
293 #define PMAP_ACTIVATE_USER(act, cpu) { \
296 pmap = (act)->map->pmap; \
297 if (pmap != pmap_kernel()) \
298 PMAP_ACTIVATE(pmap, (act), (cpu)); \
300 #endif /* PMAP_ACTIVATE_USER */
302 #ifndef PMAP_DEACTIVATE_USER
303 #define PMAP_DEACTIVATE_USER(act, cpu) { \
306 pmap = (act)->map->pmap; \
307 if ((pmap) != pmap_kernel()) \
308 PMAP_DEACTIVATE(pmap, (act), (cpu)); \
310 #endif /* PMAP_DEACTIVATE_USER */
312 #ifndef PMAP_ACTIVATE_KERNEL
313 #define PMAP_ACTIVATE_KERNEL(cpu) \
314 PMAP_ACTIVATE(pmap_kernel(), THR_ACT_NULL, cpu)
315 #endif /* PMAP_ACTIVATE_KERNEL */
317 #ifndef PMAP_DEACTIVATE_KERNEL
318 #define PMAP_DEACTIVATE_KERNEL(cpu) \
319 PMAP_DEACTIVATE(pmap_kernel(), THR_ACT_NULL, cpu)
320 #endif /* PMAP_DEACTIVATE_KERNEL */
324 * Macro to be used in place of pmap_enter()
326 #define PMAP_ENTER(pmap, virtual_address, page, protection, flags, wired) \
332 (protection) & ~(page)->page_lock, \
337 #endif /* !PMAP_ENTER */
340 * Routines to manage reference/modify bits based on
341 * physical addresses, simulating them if not provided
344 /* Clear reference bit */
345 extern void pmap_clear_reference(ppnum_t pn
);
346 /* Return reference bit */
347 extern boolean_t (pmap_is_referenced
)(ppnum_t pn
);
349 extern void pmap_set_modify(ppnum_t pn
);
350 /* Clear modify bit */
351 extern void pmap_clear_modify(ppnum_t pn
);
352 /* Return modify bit */
353 extern boolean_t
pmap_is_modified(ppnum_t pn
);
356 * Routines that operate on ranges of virtual addresses.
358 extern void pmap_protect( /* Change protections. */
364 extern void (pmap_pageable
)(
370 #endif /* MACH_KERNEL_PRIVATE */
373 * JMM - This portion is exported to other kernel components right now,
374 * but will be pulled back in the future when the needed functionality
375 * is provided in a cleaner manner.
378 #define PMAP_NULL ((pmap_t) 0)
380 extern pmap_t kernel_pmap
; /* The kernel's map */
381 #define pmap_kernel() (kernel_pmap)
383 /* machine independent WIMG bits */
385 #define VM_MEM_GUARDED 0x1
386 #define VM_MEM_COHERENT 0x2
387 #define VM_MEM_NOT_CACHEABLE 0x4
388 #define VM_MEM_WRITE_THROUGH 0x8
390 #define VM_WIMG_MASK 0xFF
391 #define VM_WIMG_USE_DEFAULT 0x80000000
393 extern void pmap_modify_pages( /* Set modify bit for pages */
398 extern vm_offset_t
pmap_extract(pmap_t pmap
,
401 extern void pmap_change_wiring( /* Specify pageability */
406 extern void pmap_remove( /* Remove mappings. */
412 #endif /* __APPLE_API_PRIVATE */
414 #endif /* _VM_PMAP_H_ */