blob: f3e23ad075cb65e00ddb8f7211629980bdd4a817 [file] [log] [blame]
Paul Mundt01066622007-03-28 16:38:13 +09001/*
2 * linux/arch/sh/mm/init.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 1999 Niibe Yutaka
Paul Mundt01066622007-03-28 16:38:13 +09005 * Copyright (C) 2002 - 2007 Paul Mundt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * Based on linux/arch/i386/mm/init.c:
8 * Copyright (C) 1995 Linus Torvalds
9 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/mm.h>
11#include <linux/swap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/bootmem.h>
Paul Mundt2cb7ce32006-09-27 18:20:58 +090014#include <linux/proc_fs.h>
Paul Mundt27641de2007-05-14 10:48:01 +090015#include <linux/pagemap.h>
Paul Mundt01066622007-03-28 16:38:13 +090016#include <linux/percpu.h>
17#include <linux/io.h>
Paul Mundt94c28512009-10-27 17:07:45 +090018#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/mmu_context.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/tlb.h>
21#include <asm/cacheflush.h>
Paul Mundt07cbb412007-06-06 12:23:06 +090022#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/cache.h>
24
25DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
26pgd_t swapper_pg_dir[PTRS_PER_PGD];
Stuart Menefyc6feb612008-09-05 16:06:42 +090027
28#ifdef CONFIG_SUPERH32
29/*
30 * Handle trivial transitions between cached and uncached
31 * segments, making use of the 1:1 mapping relationship in
32 * 512MB lowmem.
33 *
34 * This is the offset of the uncached section from its cached alias.
35 * Default value only valid in 29 bit mode, in 32bit mode will be
36 * overridden in pmb_init.
37 */
38unsigned long cached_to_uncached = P2SEG - P1SEG;
39#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Yoshinori Sato11cbb702006-12-07 18:07:27 +090041#ifdef CONFIG_MMU
Matt Fleming07cad4d2009-11-17 22:03:41 +000042static pte_t *__get_pte_phys(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043{
44 pgd_t *pgd;
Paul Mundt26ff6c12006-09-27 15:13:36 +090045 pud_t *pud;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 pmd_t *pmd;
47 pte_t *pte;
48
Stuart Menefy99a596f2006-11-21 15:38:05 +090049 pgd = pgd_offset_k(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 if (pgd_none(*pgd)) {
51 pgd_ERROR(*pgd);
Matt Fleming07cad4d2009-11-17 22:03:41 +000052 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 }
54
Stuart Menefy99a596f2006-11-21 15:38:05 +090055 pud = pud_alloc(NULL, pgd, addr);
56 if (unlikely(!pud)) {
57 pud_ERROR(*pud);
Matt Fleming07cad4d2009-11-17 22:03:41 +000058 return NULL;
Paul Mundt26ff6c12006-09-27 15:13:36 +090059 }
60
Stuart Menefy99a596f2006-11-21 15:38:05 +090061 pmd = pmd_alloc(NULL, pud, addr);
62 if (unlikely(!pmd)) {
63 pmd_ERROR(*pmd);
Matt Fleming07cad4d2009-11-17 22:03:41 +000064 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 }
66
67 pte = pte_offset_kernel(pmd, addr);
Matt Fleming07cad4d2009-11-17 22:03:41 +000068 return pte;
69}
70
71static void set_pte_phys(unsigned long addr, unsigned long phys, pgprot_t prot)
72{
73 pte_t *pte;
74
75 pte = __get_pte_phys(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 if (!pte_none(*pte)) {
77 pte_ERROR(*pte);
78 return;
79 }
80
81 set_pte(pte, pfn_pte(phys >> PAGE_SHIFT, prot));
Paul Mundt997d0032009-06-19 15:37:11 +090082 local_flush_tlb_one(get_asid(), addr);
Matt Fleming07cad4d2009-11-17 22:03:41 +000083
84 if (pgprot_val(prot) & _PAGE_WIRED)
85 tlb_wire_entry(NULL, addr, *pte);
86}
87
88static void clear_pte_phys(unsigned long addr, pgprot_t prot)
89{
90 pte_t *pte;
91
92 pte = __get_pte_phys(addr);
93
94 if (pgprot_val(prot) & _PAGE_WIRED)
95 tlb_unwire_entry();
96
97 set_pte(pte, pfn_pte(0, __pgprot(0)));
98 local_flush_tlb_one(get_asid(), addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101void __set_fixmap(enum fixed_addresses idx, unsigned long phys, pgprot_t prot)
102{
103 unsigned long address = __fix_to_virt(idx);
104
105 if (idx >= __end_of_fixed_addresses) {
106 BUG();
107 return;
108 }
109
110 set_pte_phys(address, phys, prot);
111}
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900112
Matt Fleming07cad4d2009-11-17 22:03:41 +0000113void __clear_fixmap(enum fixed_addresses idx, pgprot_t prot)
114{
115 unsigned long address = __fix_to_virt(idx);
116
117 if (idx >= __end_of_fixed_addresses) {
118 BUG();
119 return;
120 }
121
122 clear_pte_phys(address, prot);
123}
124
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900125void __init page_table_range_init(unsigned long start, unsigned long end,
126 pgd_t *pgd_base)
127{
128 pgd_t *pgd;
129 pud_t *pud;
130 pmd_t *pmd;
Paul Mundt0906a3a2009-09-03 17:21:10 +0900131 pte_t *pte;
132 int i, j, k;
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900133 unsigned long vaddr;
134
Paul Mundt0906a3a2009-09-03 17:21:10 +0900135 vaddr = start;
136 i = __pgd_offset(vaddr);
137 j = __pud_offset(vaddr);
138 k = __pmd_offset(vaddr);
139 pgd = pgd_base + i;
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900140
Paul Mundt0906a3a2009-09-03 17:21:10 +0900141 for ( ; (i < PTRS_PER_PGD) && (vaddr != end); pgd++, i++) {
142 pud = (pud_t *)pgd;
143 for ( ; (j < PTRS_PER_PUD) && (vaddr != end); pud++, j++) {
Matt Fleming5d9b4b12009-12-13 14:38:50 +0000144#ifdef __PAGETABLE_PMD_FOLDED
Paul Mundt0906a3a2009-09-03 17:21:10 +0900145 pmd = (pmd_t *)pud;
Matt Fleming5d9b4b12009-12-13 14:38:50 +0000146#else
147 pmd = (pmd_t *)alloc_bootmem_low_pages(PAGE_SIZE);
148 pud_populate(&init_mm, pud, pmd);
149 pmd += k;
150#endif
Paul Mundt0906a3a2009-09-03 17:21:10 +0900151 for (; (k < PTRS_PER_PMD) && (vaddr != end); pmd++, k++) {
152 if (pmd_none(*pmd)) {
153 pte = (pte_t *) alloc_bootmem_low_pages(PAGE_SIZE);
154 pmd_populate_kernel(&init_mm, pmd, pte);
155 BUG_ON(pte != pte_offset_kernel(pmd, 0));
156 }
157 vaddr += PMD_SIZE;
158 }
159 k = 0;
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900160 }
Paul Mundt0906a3a2009-09-03 17:21:10 +0900161 j = 0;
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900162 }
163}
Yoshinori Sato11cbb702006-12-07 18:07:27 +0900164#endif /* CONFIG_MMU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/*
167 * paging_init() sets up the page tables
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 */
169void __init paging_init(void)
170{
Paul Mundt2de212e2007-06-06 12:09:54 +0900171 unsigned long max_zone_pfns[MAX_NR_ZONES];
Paul Mundt0906a3a2009-09-03 17:21:10 +0900172 unsigned long vaddr, end;
Paul Mundt01066622007-03-28 16:38:13 +0900173 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Paul Mundt01066622007-03-28 16:38:13 +0900175 /* We don't need to map the kernel through the TLB, as
176 * it is permanatly mapped using P1. So clear the
177 * entire pgd. */
178 memset(swapper_pg_dir, 0, sizeof(swapper_pg_dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Stuart Menefy6e4662f2006-11-21 13:53:44 +0900180 /* Set an initial value for the MMU.TTB so we don't have to
181 * check for a null value. */
182 set_TTB(swapper_pg_dir);
183
Paul Mundtacca4f42008-11-10 20:00:45 +0900184 /*
185 * Populate the relevant portions of swapper_pg_dir so that
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900186 * we can use the fixmap entries without calling kmalloc.
Paul Mundtacca4f42008-11-10 20:00:45 +0900187 * pte's will be filled in by __set_fixmap().
188 */
189 vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
Paul Mundt0906a3a2009-09-03 17:21:10 +0900190 end = (FIXADDR_TOP + PMD_SIZE - 1) & PMD_MASK;
191 page_table_range_init(vaddr, end, swapper_pg_dir);
Paul Mundtacca4f42008-11-10 20:00:45 +0900192
193 kmap_coherent_init();
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900194
Paul Mundt2de212e2007-06-06 12:09:54 +0900195 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
196
Paul Mundt01066622007-03-28 16:38:13 +0900197 for_each_online_node(nid) {
198 pg_data_t *pgdat = NODE_DATA(nid);
Paul Mundt01066622007-03-28 16:38:13 +0900199 unsigned long low, start_pfn;
200
Johannes Weiner3560e242008-07-23 21:28:09 -0700201 start_pfn = pgdat->bdata->node_min_pfn;
Paul Mundt01066622007-03-28 16:38:13 +0900202 low = pgdat->bdata->node_low_pfn;
203
Paul Mundt2de212e2007-06-06 12:09:54 +0900204 if (max_zone_pfns[ZONE_NORMAL] < low)
205 max_zone_pfns[ZONE_NORMAL] = low;
Paul Mundt01066622007-03-28 16:38:13 +0900206
207 printk("Node %u: start_pfn = 0x%lx, low = 0x%lx\n",
208 nid, start_pfn, low);
Paul Mundt01066622007-03-28 16:38:13 +0900209 }
Paul Mundt2de212e2007-06-06 12:09:54 +0900210
211 free_area_init_nodes(max_zone_pfns);
Stuart Menefycbaa1182007-11-30 17:06:36 +0900212
213 /* Set up the uncached fixmap */
214 set_fixmap_nocache(FIX_UNCACHED, __pa(&__uncached_start));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
Paul Mundt94c28512009-10-27 17:07:45 +0900217/*
218 * Early initialization for any I/O MMUs we might have.
219 */
220static void __init iommu_init(void)
221{
222 no_iommu_init();
223}
224
Paul Mundtd9b94872010-01-18 21:08:32 +0900225unsigned int mem_init_done = 0;
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227void __init mem_init(void)
228{
Paul Mundtdfbb9042007-05-23 17:48:36 +0900229 int codesize, datasize, initsize;
Paul Mundt01066622007-03-28 16:38:13 +0900230 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Paul Mundt94c28512009-10-27 17:07:45 +0900232 iommu_init();
233
Paul Mundt2de212e2007-06-06 12:09:54 +0900234 num_physpages = 0;
235 high_memory = NULL;
236
Paul Mundt01066622007-03-28 16:38:13 +0900237 for_each_online_node(nid) {
238 pg_data_t *pgdat = NODE_DATA(nid);
239 unsigned long node_pages = 0;
240 void *node_high_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Paul Mundt01066622007-03-28 16:38:13 +0900242 num_physpages += pgdat->node_present_pages;
243
244 if (pgdat->node_spanned_pages)
245 node_pages = free_all_bootmem_node(pgdat);
246
247 totalram_pages += node_pages;
248
Paul Mundt2de212e2007-06-06 12:09:54 +0900249 node_high_memory = (void *)__va((pgdat->node_start_pfn +
250 pgdat->node_spanned_pages) <<
251 PAGE_SHIFT);
Paul Mundt01066622007-03-28 16:38:13 +0900252 if (node_high_memory > high_memory)
253 high_memory = node_high_memory;
254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Paul Mundt37443ef2009-08-15 12:29:49 +0900256 /* Set this up early, so we can take care of the zero page */
257 cpu_cache_init();
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 /* clear the zero-page */
260 memset(empty_zero_page, 0, PAGE_SIZE);
261 __flush_wback_region(empty_zero_page, PAGE_SIZE);
262
Paul Mundt35f99c02010-01-20 18:48:17 +0900263 /* Initialize the vDSO */
264 vsyscall_init();
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 codesize = (unsigned long) &_etext - (unsigned long) &_text;
267 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
268 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
269
Paul Mundt2cb7ce32006-09-27 18:20:58 +0900270 printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, "
Paul Mundtdfbb9042007-05-23 17:48:36 +0900271 "%dk data, %dk init)\n",
Geert Uytterhoevencc013a82009-09-21 17:02:36 -0700272 nr_free_pages() << (PAGE_SHIFT-10),
Paul Mundt2de212e2007-06-06 12:09:54 +0900273 num_physpages << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 codesize >> 10,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 datasize >> 10,
276 initsize >> 10);
277
Paul Mundt35f99c02010-01-20 18:48:17 +0900278 printk(KERN_INFO "virtual kernel memory layout:\n"
279 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
280#ifdef CONFIG_HIGHMEM
281 " pkmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
282#endif
283 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n"
284 " lowmem : 0x%08lx - 0x%08lx (%4ld MB)\n"
285 " .init : 0x%08lx - 0x%08lx (%4ld kB)\n"
286 " .data : 0x%08lx - 0x%08lx (%4ld kB)\n"
287 " .text : 0x%08lx - 0x%08lx (%4ld kB)\n",
288 FIXADDR_START, FIXADDR_TOP,
289 (FIXADDR_TOP - FIXADDR_START) >> 10,
290
291#ifdef CONFIG_HIGHMEM
292 PKMAP_BASE, PKMAP_BASE+LAST_PKMAP*PAGE_SIZE,
293 (LAST_PKMAP*PAGE_SIZE) >> 10,
294#endif
295
296 (unsigned long)VMALLOC_START, VMALLOC_END,
297 (VMALLOC_END - VMALLOC_START) >> 20,
298
299 (unsigned long)memory_start, (unsigned long)high_memory,
300 ((unsigned long)high_memory - (unsigned long)memory_start) >> 20,
301
302 (unsigned long)&__init_begin, (unsigned long)&__init_end,
303 ((unsigned long)&__init_end -
304 (unsigned long)&__init_begin) >> 10,
305
306 (unsigned long)&_etext, (unsigned long)&_edata,
307 ((unsigned long)&_edata - (unsigned long)&_etext) >> 10,
308
309 (unsigned long)&_text, (unsigned long)&_etext,
310 ((unsigned long)&_etext - (unsigned long)&_text) >> 10);
Paul Mundtd9b94872010-01-18 21:08:32 +0900311
312 mem_init_done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313}
314
315void free_initmem(void)
316{
317 unsigned long addr;
Paul Mundt65463b72005-11-07 00:58:24 -0800318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 addr = (unsigned long)(&__init_begin);
320 for (; addr < (unsigned long)(&__init_end); addr += PAGE_SIZE) {
321 ClearPageReserved(virt_to_page(addr));
Nick Piggin7835e982006-03-22 00:08:40 -0800322 init_page_count(virt_to_page(addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 free_page(addr);
324 totalram_pages++;
325 }
Paul Mundt07cbb412007-06-06 12:23:06 +0900326 printk("Freeing unused kernel memory: %ldk freed\n",
327 ((unsigned long)&__init_end -
328 (unsigned long)&__init_begin) >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
331#ifdef CONFIG_BLK_DEV_INITRD
332void free_initrd_mem(unsigned long start, unsigned long end)
333{
334 unsigned long p;
335 for (p = start; p < end; p += PAGE_SIZE) {
336 ClearPageReserved(virt_to_page(p));
Nick Piggin7835e982006-03-22 00:08:40 -0800337 init_page_count(virt_to_page(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 free_page(p);
339 totalram_pages++;
340 }
Paul Mundt2de212e2007-06-06 12:09:54 +0900341 printk("Freeing initrd memory: %ldk freed\n", (end - start) >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343#endif
Paul Mundt33d63bd2007-06-07 11:32:52 +0900344
345#ifdef CONFIG_MEMORY_HOTPLUG
Paul Mundt33d63bd2007-06-07 11:32:52 +0900346int arch_add_memory(int nid, u64 start, u64 size)
347{
348 pg_data_t *pgdat;
349 unsigned long start_pfn = start >> PAGE_SHIFT;
350 unsigned long nr_pages = size >> PAGE_SHIFT;
351 int ret;
352
353 pgdat = NODE_DATA(nid);
354
355 /* We only have ZONE_NORMAL, so this is easy.. */
Gary Hadec04fc582009-01-06 14:39:14 -0800356 ret = __add_pages(nid, pgdat->node_zones + ZONE_NORMAL,
357 start_pfn, nr_pages);
Paul Mundt33d63bd2007-06-07 11:32:52 +0900358 if (unlikely(ret))
Harvey Harrison866e6b92008-03-04 15:23:47 -0800359 printk("%s: Failed, __add_pages() == %d\n", __func__, ret);
Paul Mundt33d63bd2007-06-07 11:32:52 +0900360
361 return ret;
362}
363EXPORT_SYMBOL_GPL(arch_add_memory);
364
Paul Mundt357d5942007-06-11 15:32:07 +0900365#ifdef CONFIG_NUMA
Paul Mundt33d63bd2007-06-07 11:32:52 +0900366int memory_add_physaddr_to_nid(u64 addr)
367{
368 /* Node 0 for now.. */
369 return 0;
370}
371EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
372#endif
Matt Fleming1f69b6a2009-10-06 21:22:25 +0000373
Paul Mundt3159e7d2008-09-05 15:39:12 +0900374#endif /* CONFIG_MEMORY_HOTPLUG */