]> git.saurik.com Git - apple/xnu.git/blobdiff - osfmk/i386/phys.c
xnu-4570.1.46.tar.gz
[apple/xnu.git] / osfmk / i386 / phys.c
index bfbb48d4ba6243ce5119ae37cf2d14004edc8dd5..49147fc2ae560b1cb29d884c991ea21ed6abd236 100644 (file)
@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright (c) 2000-2004 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2000-2012 Apple Inc. All rights reserved.
  *
  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
  * 
  *
  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
  * 
@@ -54,7 +54,6 @@
  * the rights to redistribute these changes.
  */
 
  * the rights to redistribute these changes.
  */
 
-#include <mach_rt.h>
 #include <mach_debug.h>
 #include <mach_ldebug.h>
 
 #include <mach_debug.h>
 #include <mach_ldebug.h>
 
@@ -156,26 +155,11 @@ pmap_copy_part_lpage(
        __unused vm_offset_t    dst_offset,
        __unused vm_size_t      len)
 {
        __unused vm_offset_t    dst_offset,
        __unused vm_size_t      len)
 {
-#ifdef __i386__
-        mapwindow_t *map;
-#endif
 
        assert(pdst != vm_page_fictitious_addr);
        assert(pdst != vm_page_guard_addr);
        assert((dst_offset + len) <= PAGE_SIZE);
 
 
        assert(pdst != vm_page_fictitious_addr);
        assert(pdst != vm_page_guard_addr);
        assert((dst_offset + len) <= PAGE_SIZE);
 
-#ifdef __i386__
-        mp_disable_preemption();
-
-        map = pmap_get_mapwindow(INTEL_PTE_VALID | INTEL_PTE_RW | (i386_ptob(pdst) & PG_FRAME) | 
-                                 INTEL_PTE_REF | INTEL_PTE_MOD);
-
-       memcpy((void *) (map->prv_CADDR + (dst_offset & INTEL_OFFMASK)), (void *) src, len);
-
-       pmap_put_mapwindow(map);
-
-       mp_enable_preemption();
-#endif
 }
 
 /*
 }
 
 /*
@@ -189,26 +173,11 @@ pmap_copy_part_rpage(
        __unused vm_offset_t    dst,
        __unused vm_size_t      len)
 {
        __unused vm_offset_t    dst,
        __unused vm_size_t      len)
 {
-#ifdef __i386__
-        mapwindow_t *map;
-#endif
 
        assert(psrc != vm_page_fictitious_addr);
        assert(psrc != vm_page_guard_addr);
        assert((src_offset + len) <= PAGE_SIZE);
 
 
        assert(psrc != vm_page_fictitious_addr);
        assert(psrc != vm_page_guard_addr);
        assert((src_offset + len) <= PAGE_SIZE);
 
-#ifdef __i386__
-        mp_disable_preemption();
-
-        map = pmap_get_mapwindow(INTEL_PTE_VALID | INTEL_PTE_RW | (i386_ptob(psrc) & PG_FRAME) | 
-                                 INTEL_PTE_REF);
-
-       memcpy((void *) dst, (void *) (map->prv_CADDR + (src_offset & INTEL_OFFMASK)), len);
-
-       pmap_put_mapwindow(map);
-
-       mp_enable_preemption();
-#endif
 }
 
 /*
 }
 
 /*
@@ -231,9 +200,14 @@ kvtophys(
 
 extern pt_entry_t *debugger_ptep;
 extern vm_map_offset_t debugger_window_kva;
 
 extern pt_entry_t *debugger_ptep;
 extern vm_map_offset_t debugger_window_kva;
+extern int _bcopy(const void *, void *, vm_size_t);
+extern int _bcopy2(const void *, void *);
+extern int _bcopy4(const void *, void *);
+extern int _bcopy8(const void *, void *);
 
 
-__private_extern__ void ml_copy_phys(addr64_t src64, addr64_t dst64, vm_size_t bytes) {
+__private_extern__ int ml_copy_phys(addr64_t src64, addr64_t dst64, vm_size_t bytes) {
        void *src, *dst;
        void *src, *dst;
+       int err = 0;
 
        mp_disable_preemption();
 #if NCOPY_WINDOWS > 0
 
        mp_disable_preemption();
 #if NCOPY_WINDOWS > 0
@@ -244,9 +218,6 @@ __private_extern__ void ml_copy_phys(addr64_t src64, addr64_t dst64, vm_size_t b
        src = (void *) ((uintptr_t)src_map->prv_CADDR | ((uint32_t)src64 & INTEL_OFFMASK));
        dst = (void *) ((uintptr_t)dst_map->prv_CADDR | ((uint32_t)dst64 & INTEL_OFFMASK));
 #elif defined(__x86_64__)
        src = (void *) ((uintptr_t)src_map->prv_CADDR | ((uint32_t)src64 & INTEL_OFFMASK));
        dst = (void *) ((uintptr_t)dst_map->prv_CADDR | ((uint32_t)dst64 & INTEL_OFFMASK));
 #elif defined(__x86_64__)
-       src = PHYSMAP_PTOV(src64);
-       dst = PHYSMAP_PTOV(dst64);
-
        addr64_t debug_pa = 0;
 
        /* If either destination or source are outside the
        addr64_t debug_pa = 0;
 
        /* If either destination or source are outside the
@@ -256,10 +227,15 @@ __private_extern__ void ml_copy_phys(addr64_t src64, addr64_t dst64, vm_size_t b
 
        if (physmap_enclosed(src64) == FALSE) {
                src = (void *)(debugger_window_kva | (src64 & INTEL_OFFMASK));
 
        if (physmap_enclosed(src64) == FALSE) {
                src = (void *)(debugger_window_kva | (src64 & INTEL_OFFMASK));
+               dst = PHYSMAP_PTOV(dst64);
                debug_pa = src64 & PG_FRAME;
        } else if (physmap_enclosed(dst64) == FALSE) {
                debug_pa = src64 & PG_FRAME;
        } else if (physmap_enclosed(dst64) == FALSE) {
+               src = PHYSMAP_PTOV(src64);
                dst = (void *)(debugger_window_kva | (dst64 & INTEL_OFFMASK));
                debug_pa = dst64 & PG_FRAME;
                dst = (void *)(debugger_window_kva | (dst64 & INTEL_OFFMASK));
                debug_pa = dst64 & PG_FRAME;
+       } else {
+               src = PHYSMAP_PTOV(src64);
+               dst = PHYSMAP_PTOV(dst64);
        }
        /* DRK: debugger only routine, we don't bother checking for an
         * identical mapping.
        }
        /* DRK: debugger only routine, we don't bother checking for an
         * identical mapping.
@@ -282,27 +258,33 @@ __private_extern__ void ml_copy_phys(addr64_t src64, addr64_t dst64, vm_size_t b
                panic("ml_copy_phys spans pages, src: 0x%llx, dst: 0x%llx", src64, dst64);
        }
 
                panic("ml_copy_phys spans pages, src: 0x%llx, dst: 0x%llx", src64, dst64);
        }
 
+       /*
+        * For device register access from the debugger,
+        * 2-byte/16-bit, 4-byte/32-bit and 8-byte/64-bit copies are handled
+        * by assembly routines ensuring the required access widths.
+        * 1-byte and other copies are handled by the regular _bcopy.
+        */
        switch (bytes) {
        switch (bytes) {
-       case 1:
-               *((uint8_t *) dst) = *((volatile uint8_t *) src);
-               break;
        case 2:
        case 2:
-               *((uint16_t *) dst) = *((volatile uint16_t *) src);
+               err = _bcopy2(src, dst);
                break;
        case 4:
                break;
        case 4:
-               *((uint32_t *) dst) = *((volatile uint32_t *) src);
+               err = _bcopy4(src, dst);
                break;
                break;
-               /* Should perform two 32-bit reads */
        case 8:
        case 8:
-               *((uint64_t *) dst) = *((volatile uint64_t *) src);
+               err = _bcopy8(src, dst);
                break;
                break;
+       case 1:
        default:
        default:
-               bcopy(src, dst, bytes);
+               err = _bcopy(src, dst, bytes);
                break;
        }
                break;
        }
+
 #if NCOPY_WINDOWS > 0
        pmap_put_mapwindow(src_map);
        pmap_put_mapwindow(dst_map);
 #endif
        mp_enable_preemption();
 #if NCOPY_WINDOWS > 0
        pmap_put_mapwindow(src_map);
        pmap_put_mapwindow(dst_map);
 #endif
        mp_enable_preemption();
+
+       return err;
 }
 }