]> git.kernelconcepts.de Git - karo-tx-redboot.git/blobdiff - packages/hal/arm/mx37/var/v2_0/include/hal_mm.h
RedBoot STK5 Release 2010-03-04
[karo-tx-redboot.git] / packages / hal / arm / mx37 / var / v2_0 / include / hal_mm.h
index 71793c70009a0089f3c89e7abfd5179ee0510bfc..da3daa2cccffbc8554f3729b0b3279ec5ae46032 100644 (file)
@@ -166,36 +166,6 @@ union ARM_MMU_FIRST_LEVEL_DESCRIPTOR {
                ARM_ACCESS_TYPE_NO_ACCESS(14) |                 \
                ARM_ACCESS_TYPE_NO_ACCESS(15) )
 
-#if 0
-/*
- * translate the virtual address of ram space to physical address
- * It is dependent on the implementation of hal_mmu_init
- */
-static unsigned long __inline__ hal_virt_to_phy(unsigned long virt)
-{
-       if (virt < 0x08000000) {
-               return virt | 0x40000000;
-       }
-       if ((virt & 0xF0000000) == 0x40000000) {
-               return virt & ~0x08000000;
-       }
-       return virt;
-}
-
-/*
- * remap the physical address of ram space to uncacheable virtual address space
- * It is dependent on the implementation of hal_mmu_init
- */
-static unsigned long __inline__ hal_ioremap_nocache(unsigned long phy)
-{
-       /* 0x48000000~0x48FFFFFF is uncacheable meory space which is mapped to SDRAM*/
-       if ((phy & 0xF0000000) == 0x40000000) {
-               phy |= 0x08000000;
-       }
-       return phy;
-}
-#endif
-
 // ------------------------------------------------------------------------
 #endif // ifndef CYGONCE_HAL_MM_H
 // End of hal_mm.h