diff options
| -rw-r--r-- | arch/arm/include/asm/memory.h | 19 | ||||
| -rw-r--r-- | arch/arm/mm/dma-mapping.c | 3 | ||||
| -rw-r--r-- | arch/arm/mm/init.c | 6 |
3 files changed, 17 insertions, 11 deletions
diff --git a/arch/arm/include/asm/memory.h b/arch/arm/include/asm/memory.h index 5421d82a2572..f5e693b8bab3 100644 --- a/arch/arm/include/asm/memory.h +++ b/arch/arm/include/asm/memory.h | |||
| @@ -76,6 +76,17 @@ | |||
| 76 | */ | 76 | */ |
| 77 | #define IOREMAP_MAX_ORDER 24 | 77 | #define IOREMAP_MAX_ORDER 24 |
| 78 | 78 | ||
| 79 | /* | ||
| 80 | * Size of DMA-consistent memory region. Must be multiple of 2M, | ||
| 81 | * between 2MB and 14MB inclusive. | ||
| 82 | */ | ||
| 83 | #ifndef CONSISTENT_DMA_SIZE | ||
| 84 | #define CONSISTENT_DMA_SIZE SZ_2M | ||
| 85 | #endif | ||
| 86 | |||
| 87 | #define CONSISTENT_END (0xffe00000UL) | ||
| 88 | #define CONSISTENT_BASE (CONSISTENT_END - CONSISTENT_DMA_SIZE) | ||
| 89 | |||
| 79 | #else /* CONFIG_MMU */ | 90 | #else /* CONFIG_MMU */ |
| 80 | 91 | ||
| 81 | /* | 92 | /* |
| @@ -113,14 +124,6 @@ | |||
| 113 | #endif /* !CONFIG_MMU */ | 124 | #endif /* !CONFIG_MMU */ |
| 114 | 125 | ||
| 115 | /* | 126 | /* |
| 116 | * Size of DMA-consistent memory region. Must be multiple of 2M, | ||
| 117 | * between 2MB and 14MB inclusive. | ||
| 118 | */ | ||
| 119 | #ifndef CONSISTENT_DMA_SIZE | ||
| 120 | #define CONSISTENT_DMA_SIZE SZ_2M | ||
| 121 | #endif | ||
| 122 | |||
| 123 | /* | ||
| 124 | * Physical vs virtual RAM address space conversion. These are | 127 | * Physical vs virtual RAM address space conversion. These are |
| 125 | * private definitions which should NOT be used outside memory.h | 128 | * private definitions which should NOT be used outside memory.h |
| 126 | * files. Use virt_to_phys/phys_to_virt/__pa/__va instead. | 129 | * files. Use virt_to_phys/phys_to_virt/__pa/__va instead. |
diff --git a/arch/arm/mm/dma-mapping.c b/arch/arm/mm/dma-mapping.c index 26325cb5d368..48eedab1609b 100644 --- a/arch/arm/mm/dma-mapping.c +++ b/arch/arm/mm/dma-mapping.c | |||
| @@ -29,9 +29,6 @@ | |||
| 29 | #error "CONSISTENT_DMA_SIZE must be multiple of 2MiB" | 29 | #error "CONSISTENT_DMA_SIZE must be multiple of 2MiB" |
| 30 | #endif | 30 | #endif |
| 31 | 31 | ||
| 32 | #define CONSISTENT_END (0xffe00000) | ||
| 33 | #define CONSISTENT_BASE (CONSISTENT_END - CONSISTENT_DMA_SIZE) | ||
| 34 | |||
| 35 | #define CONSISTENT_OFFSET(x) (((unsigned long)(x) - CONSISTENT_BASE) >> PAGE_SHIFT) | 32 | #define CONSISTENT_OFFSET(x) (((unsigned long)(x) - CONSISTENT_BASE) >> PAGE_SHIFT) |
| 36 | #define CONSISTENT_PTE_INDEX(x) (((unsigned long)(x) - CONSISTENT_BASE) >> PGDIR_SHIFT) | 33 | #define CONSISTENT_PTE_INDEX(x) (((unsigned long)(x) - CONSISTENT_BASE) >> PGDIR_SHIFT) |
| 37 | #define NUM_CONSISTENT_PTES (CONSISTENT_DMA_SIZE >> PGDIR_SHIFT) | 34 | #define NUM_CONSISTENT_PTES (CONSISTENT_DMA_SIZE >> PGDIR_SHIFT) |
diff --git a/arch/arm/mm/init.c b/arch/arm/mm/init.c index e8e3a74ac5b5..bda481e6bc0f 100644 --- a/arch/arm/mm/init.c +++ b/arch/arm/mm/init.c | |||
| @@ -651,6 +651,9 @@ void __init mem_init(void) | |||
| 651 | printk(KERN_NOTICE "Virtual kernel memory layout:\n" | 651 | printk(KERN_NOTICE "Virtual kernel memory layout:\n" |
| 652 | " vector : 0x%08lx - 0x%08lx (%4ld kB)\n" | 652 | " vector : 0x%08lx - 0x%08lx (%4ld kB)\n" |
| 653 | " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n" | 653 | " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n" |
| 654 | #ifdef CONFIG_MMU | ||
| 655 | " DMA : 0x%08lx - 0x%08lx (%4ld MB)\n" | ||
| 656 | #endif | ||
| 654 | " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n" | 657 | " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n" |
| 655 | " lowmem : 0x%08lx - 0x%08lx (%4ld MB)\n" | 658 | " lowmem : 0x%08lx - 0x%08lx (%4ld MB)\n" |
| 656 | #ifdef CONFIG_HIGHMEM | 659 | #ifdef CONFIG_HIGHMEM |
| @@ -664,6 +667,9 @@ void __init mem_init(void) | |||
| 664 | MLK(UL(CONFIG_VECTORS_BASE), UL(CONFIG_VECTORS_BASE) + | 667 | MLK(UL(CONFIG_VECTORS_BASE), UL(CONFIG_VECTORS_BASE) + |
| 665 | (PAGE_SIZE)), | 668 | (PAGE_SIZE)), |
| 666 | MLK(FIXADDR_START, FIXADDR_TOP), | 669 | MLK(FIXADDR_START, FIXADDR_TOP), |
| 670 | #ifdef CONFIG_MMU | ||
| 671 | MLM(CONSISTENT_BASE, CONSISTENT_END), | ||
| 672 | #endif | ||
| 667 | MLM(VMALLOC_START, (unsigned long)VMALLOC_END), | 673 | MLM(VMALLOC_START, (unsigned long)VMALLOC_END), |
| 668 | MLM(PAGE_OFFSET, (unsigned long)high_memory), | 674 | MLM(PAGE_OFFSET, (unsigned long)high_memory), |
| 669 | #ifdef CONFIG_HIGHMEM | 675 | #ifdef CONFIG_HIGHMEM |
