blob: 58012b6bbe76e0f928e037774fd8d8a68406319d [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>
Paul Mundtb0f3ae02010-02-12 15:40:00 +090024#include <asm/sizes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
27pgd_t swapper_pg_dir[PTRS_PER_PGD];
Stuart Menefyc6feb612008-09-05 16:06:42 +090028
Paul Mundtb0f3ae02010-02-12 15:40:00 +090029#ifdef CONFIG_UNCACHED_MAPPING
Stuart Menefyc6feb612008-09-05 16:06:42 +090030/*
Stuart Menefyc6feb612008-09-05 16:06:42 +090031 * This is the offset of the uncached section from its cached alias.
Paul Mundt3125ee72010-01-21 15:54:31 +090032 *
33 * Legacy platforms handle trivial transitions between cached and
34 * uncached segments by making use of the 1:1 mapping relationship in
35 * 512MB lowmem, others via a special uncached mapping.
36 *
37 * Default value only valid in 29 bit mode, in 32bit mode this will be
38 * updated by the early PMB initialization code.
Stuart Menefyc6feb612008-09-05 16:06:42 +090039 */
Paul Mundtb0f3ae02010-02-12 15:40:00 +090040unsigned long cached_to_uncached = 0x20000000;
41unsigned long uncached_size = SZ_512M;
Stuart Menefyc6feb612008-09-05 16:06:42 +090042#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Yoshinori Sato11cbb702006-12-07 18:07:27 +090044#ifdef CONFIG_MMU
Matt Fleming07cad4d2009-11-17 22:03:41 +000045static pte_t *__get_pte_phys(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
47 pgd_t *pgd;
Paul Mundt26ff6c12006-09-27 15:13:36 +090048 pud_t *pud;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 pmd_t *pmd;
50 pte_t *pte;
51
Stuart Menefy99a596f2006-11-21 15:38:05 +090052 pgd = pgd_offset_k(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 if (pgd_none(*pgd)) {
54 pgd_ERROR(*pgd);
Matt Fleming07cad4d2009-11-17 22:03:41 +000055 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 }
57
Stuart Menefy99a596f2006-11-21 15:38:05 +090058 pud = pud_alloc(NULL, pgd, addr);
59 if (unlikely(!pud)) {
60 pud_ERROR(*pud);
Matt Fleming07cad4d2009-11-17 22:03:41 +000061 return NULL;
Paul Mundt26ff6c12006-09-27 15:13:36 +090062 }
63
Stuart Menefy99a596f2006-11-21 15:38:05 +090064 pmd = pmd_alloc(NULL, pud, addr);
65 if (unlikely(!pmd)) {
66 pmd_ERROR(*pmd);
Matt Fleming07cad4d2009-11-17 22:03:41 +000067 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 }
69
70 pte = pte_offset_kernel(pmd, addr);
Matt Fleming07cad4d2009-11-17 22:03:41 +000071 return pte;
72}
73
74static void set_pte_phys(unsigned long addr, unsigned long phys, pgprot_t prot)
75{
76 pte_t *pte;
77
78 pte = __get_pte_phys(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 if (!pte_none(*pte)) {
80 pte_ERROR(*pte);
81 return;
82 }
83
84 set_pte(pte, pfn_pte(phys >> PAGE_SHIFT, prot));
Paul Mundt997d0032009-06-19 15:37:11 +090085 local_flush_tlb_one(get_asid(), addr);
Matt Fleming07cad4d2009-11-17 22:03:41 +000086
87 if (pgprot_val(prot) & _PAGE_WIRED)
88 tlb_wire_entry(NULL, addr, *pte);
89}
90
91static void clear_pte_phys(unsigned long addr, pgprot_t prot)
92{
93 pte_t *pte;
94
95 pte = __get_pte_phys(addr);
96
97 if (pgprot_val(prot) & _PAGE_WIRED)
98 tlb_unwire_entry();
99
100 set_pte(pte, pfn_pte(0, __pgprot(0)));
101 local_flush_tlb_one(get_asid(), addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104void __set_fixmap(enum fixed_addresses idx, unsigned long phys, pgprot_t prot)
105{
106 unsigned long address = __fix_to_virt(idx);
107
108 if (idx >= __end_of_fixed_addresses) {
109 BUG();
110 return;
111 }
112
113 set_pte_phys(address, phys, prot);
114}
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900115
Matt Fleming07cad4d2009-11-17 22:03:41 +0000116void __clear_fixmap(enum fixed_addresses idx, pgprot_t prot)
117{
118 unsigned long address = __fix_to_virt(idx);
119
120 if (idx >= __end_of_fixed_addresses) {
121 BUG();
122 return;
123 }
124
125 clear_pte_phys(address, prot);
126}
127
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900128void __init page_table_range_init(unsigned long start, unsigned long end,
129 pgd_t *pgd_base)
130{
131 pgd_t *pgd;
132 pud_t *pud;
133 pmd_t *pmd;
Paul Mundt0906a3a2009-09-03 17:21:10 +0900134 pte_t *pte;
135 int i, j, k;
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900136 unsigned long vaddr;
137
Paul Mundt0906a3a2009-09-03 17:21:10 +0900138 vaddr = start;
139 i = __pgd_offset(vaddr);
140 j = __pud_offset(vaddr);
141 k = __pmd_offset(vaddr);
142 pgd = pgd_base + i;
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900143
Paul Mundt0906a3a2009-09-03 17:21:10 +0900144 for ( ; (i < PTRS_PER_PGD) && (vaddr != end); pgd++, i++) {
145 pud = (pud_t *)pgd;
146 for ( ; (j < PTRS_PER_PUD) && (vaddr != end); pud++, j++) {
Matt Fleming5d9b4b12009-12-13 14:38:50 +0000147#ifdef __PAGETABLE_PMD_FOLDED
Paul Mundt0906a3a2009-09-03 17:21:10 +0900148 pmd = (pmd_t *)pud;
Matt Fleming5d9b4b12009-12-13 14:38:50 +0000149#else
150 pmd = (pmd_t *)alloc_bootmem_low_pages(PAGE_SIZE);
151 pud_populate(&init_mm, pud, pmd);
152 pmd += k;
153#endif
Paul Mundt0906a3a2009-09-03 17:21:10 +0900154 for (; (k < PTRS_PER_PMD) && (vaddr != end); pmd++, k++) {
155 if (pmd_none(*pmd)) {
156 pte = (pte_t *) alloc_bootmem_low_pages(PAGE_SIZE);
157 pmd_populate_kernel(&init_mm, pmd, pte);
158 BUG_ON(pte != pte_offset_kernel(pmd, 0));
159 }
160 vaddr += PMD_SIZE;
161 }
162 k = 0;
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900163 }
Paul Mundt0906a3a2009-09-03 17:21:10 +0900164 j = 0;
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900165 }
166}
Yoshinori Sato11cbb702006-12-07 18:07:27 +0900167#endif /* CONFIG_MMU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169/*
170 * paging_init() sets up the page tables
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 */
172void __init paging_init(void)
173{
Paul Mundt2de212e2007-06-06 12:09:54 +0900174 unsigned long max_zone_pfns[MAX_NR_ZONES];
Paul Mundt0906a3a2009-09-03 17:21:10 +0900175 unsigned long vaddr, end;
Paul Mundt01066622007-03-28 16:38:13 +0900176 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Paul Mundt01066622007-03-28 16:38:13 +0900178 /* We don't need to map the kernel through the TLB, as
179 * it is permanatly mapped using P1. So clear the
180 * entire pgd. */
181 memset(swapper_pg_dir, 0, sizeof(swapper_pg_dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Stuart Menefy6e4662f2006-11-21 13:53:44 +0900183 /* Set an initial value for the MMU.TTB so we don't have to
184 * check for a null value. */
185 set_TTB(swapper_pg_dir);
186
Paul Mundtacca4f42008-11-10 20:00:45 +0900187 /*
188 * Populate the relevant portions of swapper_pg_dir so that
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900189 * we can use the fixmap entries without calling kmalloc.
Paul Mundtacca4f42008-11-10 20:00:45 +0900190 * pte's will be filled in by __set_fixmap().
191 */
192 vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
Paul Mundt0906a3a2009-09-03 17:21:10 +0900193 end = (FIXADDR_TOP + PMD_SIZE - 1) & PMD_MASK;
194 page_table_range_init(vaddr, end, swapper_pg_dir);
Paul Mundtacca4f42008-11-10 20:00:45 +0900195
196 kmap_coherent_init();
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900197
Paul Mundt2de212e2007-06-06 12:09:54 +0900198 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
199
Paul Mundt01066622007-03-28 16:38:13 +0900200 for_each_online_node(nid) {
201 pg_data_t *pgdat = NODE_DATA(nid);
Paul Mundt01066622007-03-28 16:38:13 +0900202 unsigned long low, start_pfn;
203
Johannes Weiner3560e242008-07-23 21:28:09 -0700204 start_pfn = pgdat->bdata->node_min_pfn;
Paul Mundt01066622007-03-28 16:38:13 +0900205 low = pgdat->bdata->node_low_pfn;
206
Paul Mundt2de212e2007-06-06 12:09:54 +0900207 if (max_zone_pfns[ZONE_NORMAL] < low)
208 max_zone_pfns[ZONE_NORMAL] = low;
Paul Mundt01066622007-03-28 16:38:13 +0900209
210 printk("Node %u: start_pfn = 0x%lx, low = 0x%lx\n",
211 nid, start_pfn, low);
Paul Mundt01066622007-03-28 16:38:13 +0900212 }
Paul Mundt2de212e2007-06-06 12:09:54 +0900213
214 free_area_init_nodes(max_zone_pfns);
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"
Paul Mundt3125ee72010-01-21 15:54:31 +0900284 " lowmem : 0x%08lx - 0x%08lx (%4ld MB) (cached)\n"
Paul Mundtb0f3ae02010-02-12 15:40:00 +0900285#ifdef CONFIG_UNCACHED_MAPPING
Paul Mundt3125ee72010-01-21 15:54:31 +0900286 " : 0x%08lx - 0x%08lx (%4ld MB) (uncached)\n"
Paul Mundtb0f3ae02010-02-12 15:40:00 +0900287#endif
Paul Mundt35f99c02010-01-20 18:48:17 +0900288 " .init : 0x%08lx - 0x%08lx (%4ld kB)\n"
289 " .data : 0x%08lx - 0x%08lx (%4ld kB)\n"
290 " .text : 0x%08lx - 0x%08lx (%4ld kB)\n",
291 FIXADDR_START, FIXADDR_TOP,
292 (FIXADDR_TOP - FIXADDR_START) >> 10,
293
294#ifdef CONFIG_HIGHMEM
295 PKMAP_BASE, PKMAP_BASE+LAST_PKMAP*PAGE_SIZE,
296 (LAST_PKMAP*PAGE_SIZE) >> 10,
297#endif
298
299 (unsigned long)VMALLOC_START, VMALLOC_END,
300 (VMALLOC_END - VMALLOC_START) >> 20,
301
302 (unsigned long)memory_start, (unsigned long)high_memory,
303 ((unsigned long)high_memory - (unsigned long)memory_start) >> 20,
304
Paul Mundtb0f3ae02010-02-12 15:40:00 +0900305#ifdef CONFIG_UNCACHED_MAPPING
Paul Mundt3125ee72010-01-21 15:54:31 +0900306 (unsigned long)memory_start + cached_to_uncached,
307 (unsigned long)memory_start + cached_to_uncached + uncached_size,
308 uncached_size >> 20,
Paul Mundtb0f3ae02010-02-12 15:40:00 +0900309#endif
Paul Mundt3125ee72010-01-21 15:54:31 +0900310
Paul Mundt35f99c02010-01-20 18:48:17 +0900311 (unsigned long)&__init_begin, (unsigned long)&__init_end,
312 ((unsigned long)&__init_end -
313 (unsigned long)&__init_begin) >> 10,
314
315 (unsigned long)&_etext, (unsigned long)&_edata,
316 ((unsigned long)&_edata - (unsigned long)&_etext) >> 10,
317
318 (unsigned long)&_text, (unsigned long)&_etext,
319 ((unsigned long)&_etext - (unsigned long)&_text) >> 10);
Paul Mundtd9b94872010-01-18 21:08:32 +0900320
321 mem_init_done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
324void free_initmem(void)
325{
326 unsigned long addr;
Paul Mundt65463b72005-11-07 00:58:24 -0800327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 addr = (unsigned long)(&__init_begin);
329 for (; addr < (unsigned long)(&__init_end); addr += PAGE_SIZE) {
330 ClearPageReserved(virt_to_page(addr));
Nick Piggin7835e982006-03-22 00:08:40 -0800331 init_page_count(virt_to_page(addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 free_page(addr);
333 totalram_pages++;
334 }
Paul Mundt07cbb412007-06-06 12:23:06 +0900335 printk("Freeing unused kernel memory: %ldk freed\n",
336 ((unsigned long)&__init_end -
337 (unsigned long)&__init_begin) >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
340#ifdef CONFIG_BLK_DEV_INITRD
341void free_initrd_mem(unsigned long start, unsigned long end)
342{
343 unsigned long p;
344 for (p = start; p < end; p += PAGE_SIZE) {
345 ClearPageReserved(virt_to_page(p));
Nick Piggin7835e982006-03-22 00:08:40 -0800346 init_page_count(virt_to_page(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 free_page(p);
348 totalram_pages++;
349 }
Paul Mundt2de212e2007-06-06 12:09:54 +0900350 printk("Freeing initrd memory: %ldk freed\n", (end - start) >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352#endif
Paul Mundt33d63bd2007-06-07 11:32:52 +0900353
354#ifdef CONFIG_MEMORY_HOTPLUG
Paul Mundt33d63bd2007-06-07 11:32:52 +0900355int arch_add_memory(int nid, u64 start, u64 size)
356{
357 pg_data_t *pgdat;
358 unsigned long start_pfn = start >> PAGE_SHIFT;
359 unsigned long nr_pages = size >> PAGE_SHIFT;
360 int ret;
361
362 pgdat = NODE_DATA(nid);
363
364 /* We only have ZONE_NORMAL, so this is easy.. */
Gary Hadec04fc582009-01-06 14:39:14 -0800365 ret = __add_pages(nid, pgdat->node_zones + ZONE_NORMAL,
366 start_pfn, nr_pages);
Paul Mundt33d63bd2007-06-07 11:32:52 +0900367 if (unlikely(ret))
Harvey Harrison866e6b92008-03-04 15:23:47 -0800368 printk("%s: Failed, __add_pages() == %d\n", __func__, ret);
Paul Mundt33d63bd2007-06-07 11:32:52 +0900369
370 return ret;
371}
372EXPORT_SYMBOL_GPL(arch_add_memory);
373
Paul Mundt357d5942007-06-11 15:32:07 +0900374#ifdef CONFIG_NUMA
Paul Mundt33d63bd2007-06-07 11:32:52 +0900375int memory_add_physaddr_to_nid(u64 addr)
376{
377 /* Node 0 for now.. */
378 return 0;
379}
380EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
381#endif
Matt Fleming1f69b6a2009-10-06 21:22:25 +0000382
Paul Mundt3159e7d2008-09-05 15:39:12 +0900383#endif /* CONFIG_MEMORY_HOTPLUG */