/* * Copyright (c) 2000-2004 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * The contents of this file constitute Original Code as defined in and * are subject to the Apple Public Source License Version 1.1 (the * "License"). You may not use this file except in compliance with the * License. Please obtain a copy of the License at * http://www.apple.com/publicsource and read it before using this file. * * This Original Code and all software distributed under the License are * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the * License for the specific language governing rights and limitations * under the License. * * @APPLE_LICENSE_HEADER_END@ */ /* * @OSF_COPYRIGHT@ */ /* * Mach Operating System * Copyright (c) 1991,1990,1989 Carnegie Mellon University * All Rights Reserved. * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include /* * pmap_zero_page zeros the specified (machine independent) page. */ void pmap_zero_page( ppnum_t pn) { assert(pn != vm_page_fictitious_addr); bzero_phys((addr64_t)i386_ptob(pn), PAGE_SIZE); } /* * pmap_zero_part_page * zeros the specified (machine independent) part of a page. */ void pmap_zero_part_page( ppnum_t pn, vm_offset_t offset, vm_size_t len) { assert(pn != vm_page_fictitious_addr); assert(offset + len <= PAGE_SIZE); bzero_phys((addr64_t)(i386_ptob(pn) + offset), len); } /* * pmap_copy_page copies the specified (machine independent) pages. */ void pmap_copy_part_page( ppnum_t psrc, vm_offset_t src_offset, ppnum_t pdst, vm_offset_t dst_offset, vm_size_t len) { vm_offset_t src, dst; assert(psrc != vm_page_fictitious_addr); assert(pdst != vm_page_fictitious_addr); src = (vm_offset_t)i386_ptob(psrc); dst = (vm_offset_t)i386_ptob(pdst); assert(((dst & PAGE_MASK) + dst_offset + len) <= PAGE_SIZE); assert(((src & PAGE_MASK) + src_offset + len) <= PAGE_SIZE); bcopy_phys((addr64_t)src + (src_offset & INTEL_OFFMASK), (addr64_t)dst + (dst_offset & INTEL_OFFMASK), len); } /* * pmap_copy_part_lpage copies part of a virtually addressed page * to a physically addressed page. */ void pmap_copy_part_lpage( vm_offset_t src, ppnum_t pdst, vm_offset_t dst_offset, vm_size_t len) { pt_entry_t *ptep; thread_t thr_act = current_thread(); assert(pdst != vm_page_fictitious_addr); ptep = pmap_pte(thr_act->map->pmap, i386_ptob(pdst)); if (0 == ptep) panic("pmap_copy_part_lpage ptep"); assert(((pdst & PAGE_MASK) + dst_offset + len) <= PAGE_SIZE); if (*(pt_entry_t *) CM2) panic("pmap_copy_part_lpage"); *(int *) CM2 = INTEL_PTE_VALID | INTEL_PTE_RW | (*ptep & PG_FRAME) | INTEL_PTE_REF | INTEL_PTE_MOD; invlpg((unsigned int) CA2); memcpy((void *) (CA2 + (dst_offset & INTEL_OFFMASK)), (void *) src, len); *(pt_entry_t *) CM2 = 0; } /* * pmap_copy_part_rpage copies part of a physically addressed page * to a virtually addressed page. */ void pmap_copy_part_rpage( ppnum_t psrc, vm_offset_t src_offset, vm_offset_t dst, vm_size_t len) { pt_entry_t *ptep; thread_t thr_act = current_thread(); assert(psrc != vm_page_fictitious_addr); ptep = pmap_pte(thr_act->map->pmap, i386_ptob(psrc)); if (0 == ptep) panic("pmap_copy_part_rpage ptep"); assert(((psrc & PAGE_MASK) + src_offset + len) <= PAGE_SIZE); if (*(pt_entry_t *) CM2) panic("pmap_copy_part_rpage"); *(pt_entry_t *) CM2 = INTEL_PTE_VALID | INTEL_PTE_RW | (*ptep & PG_FRAME) | INTEL_PTE_REF; invlpg((unsigned int) CA2); memcpy((void *) dst, (void *) (CA2 + (src_offset & INTEL_OFFMASK)), len); *(pt_entry_t *) CM2 = 0; } /* * kvtophys(addr) * * Convert a kernel virtual address to a physical address */ vm_offset_t kvtophys( vm_offset_t addr) { pt_entry_t *ptep; pmap_paddr_t pa; if ((ptep = pmap_pte(kernel_pmap, addr)) == PT_ENTRY_NULL) { pa = 0; } else { pa = pte_to_pa(*ptep) | (addr & INTEL_OFFMASK); } if (0 == pa) kprintf("kvtophys ret 0!\n"); return (pa); }