diff options
author | Michal Simek <monstr@monstr.eu> | 2011-12-15 09:02:37 -0500 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2012-03-23 04:28:13 -0400 |
commit | 2f2f371f8907d169650f594850ca6096e2f73b77 (patch) | |
tree | 053824b8bd18fdd71119510be569fa0ff7ec0c29 /arch/microblaze/mm/init.c | |
parent | baab8a828d2d6b5b073c192ebe777514bbf3c831 (diff) |
microblaze: Highmem support
The first highmem implementation.
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch/microblaze/mm/init.c')
-rw-r--r-- | arch/microblaze/mm/init.c | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/arch/microblaze/mm/init.c b/arch/microblaze/mm/init.c index 43b3f604bafe..95297b13dd9e 100644 --- a/arch/microblaze/mm/init.c +++ b/arch/microblaze/mm/init.c | |||
@@ -49,6 +49,53 @@ unsigned long memory_size; | |||
49 | EXPORT_SYMBOL(memory_size); | 49 | EXPORT_SYMBOL(memory_size); |
50 | unsigned long lowmem_size; | 50 | unsigned long lowmem_size; |
51 | 51 | ||
52 | #ifdef CONFIG_HIGHMEM | ||
53 | pte_t *kmap_pte; | ||
54 | EXPORT_SYMBOL(kmap_pte); | ||
55 | pgprot_t kmap_prot; | ||
56 | EXPORT_SYMBOL(kmap_prot); | ||
57 | |||
58 | static inline pte_t *virt_to_kpte(unsigned long vaddr) | ||
59 | { | ||
60 | return pte_offset_kernel(pmd_offset(pgd_offset_k(vaddr), | ||
61 | vaddr), vaddr); | ||
62 | } | ||
63 | |||
64 | static void __init highmem_init(void) | ||
65 | { | ||
66 | pr_debug("%x\n", (u32)PKMAP_BASE); | ||
67 | map_page(PKMAP_BASE, 0, 0); /* XXX gross */ | ||
68 | pkmap_page_table = virt_to_kpte(PKMAP_BASE); | ||
69 | |||
70 | kmap_pte = virt_to_kpte(__fix_to_virt(FIX_KMAP_BEGIN)); | ||
71 | kmap_prot = PAGE_KERNEL; | ||
72 | } | ||
73 | |||
74 | static unsigned long highmem_setup(void) | ||
75 | { | ||
76 | unsigned long pfn; | ||
77 | unsigned long reservedpages = 0; | ||
78 | |||
79 | for (pfn = max_low_pfn; pfn < max_pfn; ++pfn) { | ||
80 | struct page *page = pfn_to_page(pfn); | ||
81 | |||
82 | /* FIXME not sure about */ | ||
83 | if (memblock_is_reserved(pfn << PAGE_SHIFT)) | ||
84 | continue; | ||
85 | ClearPageReserved(page); | ||
86 | init_page_count(page); | ||
87 | __free_page(page); | ||
88 | totalhigh_pages++; | ||
89 | reservedpages++; | ||
90 | } | ||
91 | totalram_pages += totalhigh_pages; | ||
92 | printk(KERN_INFO "High memory: %luk\n", | ||
93 | totalhigh_pages << (PAGE_SHIFT-10)); | ||
94 | |||
95 | return reservedpages; | ||
96 | } | ||
97 | #endif /* CONFIG_HIGHMEM */ | ||
98 | |||
52 | /* | 99 | /* |
53 | * paging_init() sets up the page tables - in fact we've already done this. | 100 | * paging_init() sets up the page tables - in fact we've already done this. |
54 | */ | 101 | */ |
@@ -66,7 +113,14 @@ static void __init paging_init(void) | |||
66 | /* Clean every zones */ | 113 | /* Clean every zones */ |
67 | memset(zones_size, 0, sizeof(zones_size)); | 114 | memset(zones_size, 0, sizeof(zones_size)); |
68 | 115 | ||
116 | #ifdef CONFIG_HIGHMEM | ||
117 | highmem_init(); | ||
118 | |||
119 | zones_size[ZONE_DMA] = max_low_pfn; | ||
120 | zones_size[ZONE_HIGHMEM] = max_pfn; | ||
121 | #else | ||
69 | zones_size[ZONE_DMA] = max_pfn; | 122 | zones_size[ZONE_DMA] = max_pfn; |
123 | #endif | ||
70 | 124 | ||
71 | /* We don't have holes in memory map */ | 125 | /* We don't have holes in memory map */ |
72 | free_area_init_nodes(zones_size); | 126 | free_area_init_nodes(zones_size); |
@@ -241,6 +295,10 @@ void __init mem_init(void) | |||
241 | } | 295 | } |
242 | } | 296 | } |
243 | 297 | ||
298 | #ifdef CONFIG_HIGHMEM | ||
299 | reservedpages -= highmem_setup(); | ||
300 | #endif | ||
301 | |||
244 | codesize = (unsigned long)&_sdata - (unsigned long)&_stext; | 302 | codesize = (unsigned long)&_sdata - (unsigned long)&_stext; |
245 | datasize = (unsigned long)&_edata - (unsigned long)&_sdata; | 303 | datasize = (unsigned long)&_edata - (unsigned long)&_sdata; |
246 | initsize = (unsigned long)&__init_end - (unsigned long)&__init_begin; | 304 | initsize = (unsigned long)&__init_end - (unsigned long)&__init_begin; |
@@ -259,6 +317,10 @@ void __init mem_init(void) | |||
259 | #ifdef CONFIG_MMU | 317 | #ifdef CONFIG_MMU |
260 | pr_info("Kernel virtual memory layout:\n"); | 318 | pr_info("Kernel virtual memory layout:\n"); |
261 | pr_info(" * 0x%08lx..0x%08lx : fixmap\n", FIXADDR_START, FIXADDR_TOP); | 319 | pr_info(" * 0x%08lx..0x%08lx : fixmap\n", FIXADDR_START, FIXADDR_TOP); |
320 | #ifdef CONFIG_HIGHMEM | ||
321 | pr_info(" * 0x%08lx..0x%08lx : highmem PTEs\n", | ||
322 | PKMAP_BASE, PKMAP_ADDR(LAST_PKMAP)); | ||
323 | #endif /* CONFIG_HIGHMEM */ | ||
262 | pr_info(" * 0x%08lx..0x%08lx : early ioremap\n", | 324 | pr_info(" * 0x%08lx..0x%08lx : early ioremap\n", |
263 | ioremap_bot, ioremap_base); | 325 | ioremap_bot, ioremap_base); |
264 | pr_info(" * 0x%08lx..0x%08lx : vmalloc & ioremap\n", | 326 | pr_info(" * 0x%08lx..0x%08lx : vmalloc & ioremap\n", |
@@ -346,7 +408,9 @@ asmlinkage void __init mmu_init(void) | |||
346 | 408 | ||
347 | if (lowmem_size > CONFIG_LOWMEM_SIZE) { | 409 | if (lowmem_size > CONFIG_LOWMEM_SIZE) { |
348 | lowmem_size = CONFIG_LOWMEM_SIZE; | 410 | lowmem_size = CONFIG_LOWMEM_SIZE; |
411 | #ifndef CONFIG_HIGHMEM | ||
349 | memory_size = lowmem_size; | 412 | memory_size = lowmem_size; |
413 | #endif | ||
350 | } | 414 | } |
351 | 415 | ||
352 | mm_cmdline_setup(); /* FIXME parse args from command line - not used */ | 416 | mm_cmdline_setup(); /* FIXME parse args from command line - not used */ |
@@ -375,7 +439,11 @@ asmlinkage void __init mmu_init(void) | |||
375 | mapin_ram(); | 439 | mapin_ram(); |
376 | 440 | ||
377 | /* Extend vmalloc and ioremap area as big as possible */ | 441 | /* Extend vmalloc and ioremap area as big as possible */ |
442 | #ifdef CONFIG_HIGHMEM | ||
443 | ioremap_base = ioremap_bot = PKMAP_BASE; | ||
444 | #else | ||
378 | ioremap_base = ioremap_bot = FIXADDR_START; | 445 | ioremap_base = ioremap_bot = FIXADDR_START; |
446 | #endif | ||
379 | 447 | ||
380 | /* Initialize the context management stuff */ | 448 | /* Initialize the context management stuff */ |
381 | mmu_context_init(); | 449 | mmu_context_init(); |