blob: c505de61a5ca468ed017af3f044c7f9bb2635fc4 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/bootmem.h>
Paul Mundt2cb7ce32006-09-27 18:20:58 +090015#include <linux/proc_fs.h>
Paul Mundt27641de2007-05-14 10:48:01 +090016#include <linux/pagemap.h>
Paul Mundt01066622007-03-28 16:38:13 +090017#include <linux/percpu.h>
18#include <linux/io.h>
Paul Mundt94c28512009-10-27 17:07:45 +090019#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/mmu_context.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/tlb.h>
22#include <asm/cacheflush.h>
Paul Mundt07cbb412007-06-06 12:23:06 +090023#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/cache.h>
Paul Mundtb0f3ae02010-02-12 15:40:00 +090025#include <asm/sizes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
28pgd_t swapper_pg_dir[PTRS_PER_PGD];
Stuart Menefyc6feb612008-09-05 16:06:42 +090029
Yoshinori Sato11cbb702006-12-07 18:07:27 +090030#ifdef CONFIG_MMU
Matt Fleming07cad4d2009-11-17 22:03:41 +000031static pte_t *__get_pte_phys(unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032{
33 pgd_t *pgd;
Paul Mundt26ff6c12006-09-27 15:13:36 +090034 pud_t *pud;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 pmd_t *pmd;
36 pte_t *pte;
37
Stuart Menefy99a596f2006-11-21 15:38:05 +090038 pgd = pgd_offset_k(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 if (pgd_none(*pgd)) {
40 pgd_ERROR(*pgd);
Matt Fleming07cad4d2009-11-17 22:03:41 +000041 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 }
43
Stuart Menefy99a596f2006-11-21 15:38:05 +090044 pud = pud_alloc(NULL, pgd, addr);
45 if (unlikely(!pud)) {
46 pud_ERROR(*pud);
Matt Fleming07cad4d2009-11-17 22:03:41 +000047 return NULL;
Paul Mundt26ff6c12006-09-27 15:13:36 +090048 }
49
Stuart Menefy99a596f2006-11-21 15:38:05 +090050 pmd = pmd_alloc(NULL, pud, addr);
51 if (unlikely(!pmd)) {
52 pmd_ERROR(*pmd);
Matt Fleming07cad4d2009-11-17 22:03:41 +000053 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 }
55
56 pte = pte_offset_kernel(pmd, addr);
Matt Fleming07cad4d2009-11-17 22:03:41 +000057 return pte;
58}
59
60static void set_pte_phys(unsigned long addr, unsigned long phys, pgprot_t prot)
61{
62 pte_t *pte;
63
64 pte = __get_pte_phys(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 if (!pte_none(*pte)) {
66 pte_ERROR(*pte);
67 return;
68 }
69
70 set_pte(pte, pfn_pte(phys >> PAGE_SHIFT, prot));
Paul Mundt997d0032009-06-19 15:37:11 +090071 local_flush_tlb_one(get_asid(), addr);
Matt Fleming07cad4d2009-11-17 22:03:41 +000072
73 if (pgprot_val(prot) & _PAGE_WIRED)
74 tlb_wire_entry(NULL, addr, *pte);
75}
76
77static void clear_pte_phys(unsigned long addr, pgprot_t prot)
78{
79 pte_t *pte;
80
81 pte = __get_pte_phys(addr);
82
83 if (pgprot_val(prot) & _PAGE_WIRED)
84 tlb_unwire_entry();
85
86 set_pte(pte, pfn_pte(0, __pgprot(0)));
87 local_flush_tlb_one(get_asid(), addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090void __set_fixmap(enum fixed_addresses idx, unsigned long phys, pgprot_t prot)
91{
92 unsigned long address = __fix_to_virt(idx);
93
94 if (idx >= __end_of_fixed_addresses) {
95 BUG();
96 return;
97 }
98
99 set_pte_phys(address, phys, prot);
100}
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900101
Matt Fleming07cad4d2009-11-17 22:03:41 +0000102void __clear_fixmap(enum fixed_addresses idx, pgprot_t prot)
103{
104 unsigned long address = __fix_to_virt(idx);
105
106 if (idx >= __end_of_fixed_addresses) {
107 BUG();
108 return;
109 }
110
111 clear_pte_phys(address, prot);
112}
113
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900114void __init page_table_range_init(unsigned long start, unsigned long end,
115 pgd_t *pgd_base)
116{
117 pgd_t *pgd;
118 pud_t *pud;
119 pmd_t *pmd;
Paul Mundt0906a3a2009-09-03 17:21:10 +0900120 pte_t *pte;
121 int i, j, k;
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900122 unsigned long vaddr;
123
Paul Mundt0906a3a2009-09-03 17:21:10 +0900124 vaddr = start;
125 i = __pgd_offset(vaddr);
126 j = __pud_offset(vaddr);
127 k = __pmd_offset(vaddr);
128 pgd = pgd_base + i;
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900129
Paul Mundt0906a3a2009-09-03 17:21:10 +0900130 for ( ; (i < PTRS_PER_PGD) && (vaddr != end); pgd++, i++) {
131 pud = (pud_t *)pgd;
132 for ( ; (j < PTRS_PER_PUD) && (vaddr != end); pud++, j++) {
Matt Fleming5d9b4b12009-12-13 14:38:50 +0000133#ifdef __PAGETABLE_PMD_FOLDED
Paul Mundt0906a3a2009-09-03 17:21:10 +0900134 pmd = (pmd_t *)pud;
Matt Fleming5d9b4b12009-12-13 14:38:50 +0000135#else
136 pmd = (pmd_t *)alloc_bootmem_low_pages(PAGE_SIZE);
137 pud_populate(&init_mm, pud, pmd);
138 pmd += k;
139#endif
Paul Mundt0906a3a2009-09-03 17:21:10 +0900140 for (; (k < PTRS_PER_PMD) && (vaddr != end); pmd++, k++) {
141 if (pmd_none(*pmd)) {
142 pte = (pte_t *) alloc_bootmem_low_pages(PAGE_SIZE);
143 pmd_populate_kernel(&init_mm, pmd, pte);
144 BUG_ON(pte != pte_offset_kernel(pmd, 0));
145 }
146 vaddr += PMD_SIZE;
147 }
148 k = 0;
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900149 }
Paul Mundt0906a3a2009-09-03 17:21:10 +0900150 j = 0;
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900151 }
152}
Yoshinori Sato11cbb702006-12-07 18:07:27 +0900153#endif /* CONFIG_MMU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155/*
156 * paging_init() sets up the page tables
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 */
158void __init paging_init(void)
159{
Paul Mundt2de212e2007-06-06 12:09:54 +0900160 unsigned long max_zone_pfns[MAX_NR_ZONES];
Paul Mundt0906a3a2009-09-03 17:21:10 +0900161 unsigned long vaddr, end;
Paul Mundt01066622007-03-28 16:38:13 +0900162 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Paul Mundt01066622007-03-28 16:38:13 +0900164 /* We don't need to map the kernel through the TLB, as
165 * it is permanatly mapped using P1. So clear the
166 * entire pgd. */
167 memset(swapper_pg_dir, 0, sizeof(swapper_pg_dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Stuart Menefy6e4662f2006-11-21 13:53:44 +0900169 /* Set an initial value for the MMU.TTB so we don't have to
170 * check for a null value. */
171 set_TTB(swapper_pg_dir);
172
Paul Mundtacca4f42008-11-10 20:00:45 +0900173 /*
174 * Populate the relevant portions of swapper_pg_dir so that
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900175 * we can use the fixmap entries without calling kmalloc.
Paul Mundtacca4f42008-11-10 20:00:45 +0900176 * pte's will be filled in by __set_fixmap().
177 */
178 vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
Paul Mundt0906a3a2009-09-03 17:21:10 +0900179 end = (FIXADDR_TOP + PMD_SIZE - 1) & PMD_MASK;
180 page_table_range_init(vaddr, end, swapper_pg_dir);
Paul Mundtacca4f42008-11-10 20:00:45 +0900181
182 kmap_coherent_init();
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900183
Paul Mundt2de212e2007-06-06 12:09:54 +0900184 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
185
Paul Mundt01066622007-03-28 16:38:13 +0900186 for_each_online_node(nid) {
187 pg_data_t *pgdat = NODE_DATA(nid);
Paul Mundt01066622007-03-28 16:38:13 +0900188 unsigned long low, start_pfn;
189
Johannes Weiner3560e242008-07-23 21:28:09 -0700190 start_pfn = pgdat->bdata->node_min_pfn;
Paul Mundt01066622007-03-28 16:38:13 +0900191 low = pgdat->bdata->node_low_pfn;
192
Paul Mundt2de212e2007-06-06 12:09:54 +0900193 if (max_zone_pfns[ZONE_NORMAL] < low)
194 max_zone_pfns[ZONE_NORMAL] = low;
Paul Mundt01066622007-03-28 16:38:13 +0900195
196 printk("Node %u: start_pfn = 0x%lx, low = 0x%lx\n",
197 nid, start_pfn, low);
Paul Mundt01066622007-03-28 16:38:13 +0900198 }
Paul Mundt2de212e2007-06-06 12:09:54 +0900199
200 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
Paul Mundt94c28512009-10-27 17:07:45 +0900203/*
204 * Early initialization for any I/O MMUs we might have.
205 */
206static void __init iommu_init(void)
207{
208 no_iommu_init();
209}
210
Paul Mundtd9b94872010-01-18 21:08:32 +0900211unsigned int mem_init_done = 0;
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213void __init mem_init(void)
214{
Paul Mundtdfbb9042007-05-23 17:48:36 +0900215 int codesize, datasize, initsize;
Paul Mundt01066622007-03-28 16:38:13 +0900216 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Paul Mundt94c28512009-10-27 17:07:45 +0900218 iommu_init();
219
Paul Mundt2de212e2007-06-06 12:09:54 +0900220 num_physpages = 0;
221 high_memory = NULL;
222
Paul Mundt01066622007-03-28 16:38:13 +0900223 for_each_online_node(nid) {
224 pg_data_t *pgdat = NODE_DATA(nid);
225 unsigned long node_pages = 0;
226 void *node_high_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Paul Mundt01066622007-03-28 16:38:13 +0900228 num_physpages += pgdat->node_present_pages;
229
230 if (pgdat->node_spanned_pages)
231 node_pages = free_all_bootmem_node(pgdat);
232
233 totalram_pages += node_pages;
234
Paul Mundt2de212e2007-06-06 12:09:54 +0900235 node_high_memory = (void *)__va((pgdat->node_start_pfn +
236 pgdat->node_spanned_pages) <<
237 PAGE_SHIFT);
Paul Mundt01066622007-03-28 16:38:13 +0900238 if (node_high_memory > high_memory)
239 high_memory = node_high_memory;
240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Paul Mundt37443ef2009-08-15 12:29:49 +0900242 /* Set this up early, so we can take care of the zero page */
243 cpu_cache_init();
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 /* clear the zero-page */
246 memset(empty_zero_page, 0, PAGE_SIZE);
247 __flush_wback_region(empty_zero_page, PAGE_SIZE);
248
Paul Mundt35f99c02010-01-20 18:48:17 +0900249 vsyscall_init();
250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 codesize = (unsigned long) &_etext - (unsigned long) &_text;
252 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
253 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
254
Paul Mundt2cb7ce32006-09-27 18:20:58 +0900255 printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, "
Paul Mundtdfbb9042007-05-23 17:48:36 +0900256 "%dk data, %dk init)\n",
Geert Uytterhoevencc013a82009-09-21 17:02:36 -0700257 nr_free_pages() << (PAGE_SHIFT-10),
Paul Mundt2de212e2007-06-06 12:09:54 +0900258 num_physpages << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 codesize >> 10,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 datasize >> 10,
261 initsize >> 10);
262
Paul Mundt35f99c02010-01-20 18:48:17 +0900263 printk(KERN_INFO "virtual kernel memory layout:\n"
264 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
265#ifdef CONFIG_HIGHMEM
266 " pkmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
267#endif
268 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n"
Paul Mundt3125ee72010-01-21 15:54:31 +0900269 " lowmem : 0x%08lx - 0x%08lx (%4ld MB) (cached)\n"
Paul Mundtb0f3ae02010-02-12 15:40:00 +0900270#ifdef CONFIG_UNCACHED_MAPPING
Paul Mundt3125ee72010-01-21 15:54:31 +0900271 " : 0x%08lx - 0x%08lx (%4ld MB) (uncached)\n"
Paul Mundtb0f3ae02010-02-12 15:40:00 +0900272#endif
Paul Mundt35f99c02010-01-20 18:48:17 +0900273 " .init : 0x%08lx - 0x%08lx (%4ld kB)\n"
274 " .data : 0x%08lx - 0x%08lx (%4ld kB)\n"
275 " .text : 0x%08lx - 0x%08lx (%4ld kB)\n",
276 FIXADDR_START, FIXADDR_TOP,
277 (FIXADDR_TOP - FIXADDR_START) >> 10,
278
279#ifdef CONFIG_HIGHMEM
280 PKMAP_BASE, PKMAP_BASE+LAST_PKMAP*PAGE_SIZE,
281 (LAST_PKMAP*PAGE_SIZE) >> 10,
282#endif
283
284 (unsigned long)VMALLOC_START, VMALLOC_END,
285 (VMALLOC_END - VMALLOC_START) >> 20,
286
287 (unsigned long)memory_start, (unsigned long)high_memory,
288 ((unsigned long)high_memory - (unsigned long)memory_start) >> 20,
289
Paul Mundtb0f3ae02010-02-12 15:40:00 +0900290#ifdef CONFIG_UNCACHED_MAPPING
Paul Mundt9edef282010-02-17 16:28:00 +0900291 uncached_start, uncached_end, uncached_size >> 20,
Paul Mundtb0f3ae02010-02-12 15:40:00 +0900292#endif
Paul Mundt3125ee72010-01-21 15:54:31 +0900293
Paul Mundt35f99c02010-01-20 18:48:17 +0900294 (unsigned long)&__init_begin, (unsigned long)&__init_end,
295 ((unsigned long)&__init_end -
296 (unsigned long)&__init_begin) >> 10,
297
298 (unsigned long)&_etext, (unsigned long)&_edata,
299 ((unsigned long)&_edata - (unsigned long)&_etext) >> 10,
300
301 (unsigned long)&_text, (unsigned long)&_etext,
302 ((unsigned long)&_etext - (unsigned long)&_text) >> 10);
Paul Mundtd9b94872010-01-18 21:08:32 +0900303
304 mem_init_done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
307void free_initmem(void)
308{
309 unsigned long addr;
Paul Mundt65463b72005-11-07 00:58:24 -0800310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 addr = (unsigned long)(&__init_begin);
312 for (; addr < (unsigned long)(&__init_end); addr += PAGE_SIZE) {
313 ClearPageReserved(virt_to_page(addr));
Nick Piggin7835e982006-03-22 00:08:40 -0800314 init_page_count(virt_to_page(addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 free_page(addr);
316 totalram_pages++;
317 }
Paul Mundt07cbb412007-06-06 12:23:06 +0900318 printk("Freeing unused kernel memory: %ldk freed\n",
319 ((unsigned long)&__init_end -
320 (unsigned long)&__init_begin) >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
323#ifdef CONFIG_BLK_DEV_INITRD
324void free_initrd_mem(unsigned long start, unsigned long end)
325{
326 unsigned long p;
327 for (p = start; p < end; p += PAGE_SIZE) {
328 ClearPageReserved(virt_to_page(p));
Nick Piggin7835e982006-03-22 00:08:40 -0800329 init_page_count(virt_to_page(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 free_page(p);
331 totalram_pages++;
332 }
Paul Mundt2de212e2007-06-06 12:09:54 +0900333 printk("Freeing initrd memory: %ldk freed\n", (end - start) >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335#endif
Paul Mundt33d63bd2007-06-07 11:32:52 +0900336
337#ifdef CONFIG_MEMORY_HOTPLUG
Paul Mundt33d63bd2007-06-07 11:32:52 +0900338int arch_add_memory(int nid, u64 start, u64 size)
339{
340 pg_data_t *pgdat;
341 unsigned long start_pfn = start >> PAGE_SHIFT;
342 unsigned long nr_pages = size >> PAGE_SHIFT;
343 int ret;
344
345 pgdat = NODE_DATA(nid);
346
347 /* We only have ZONE_NORMAL, so this is easy.. */
Gary Hadec04fc582009-01-06 14:39:14 -0800348 ret = __add_pages(nid, pgdat->node_zones + ZONE_NORMAL,
349 start_pfn, nr_pages);
Paul Mundt33d63bd2007-06-07 11:32:52 +0900350 if (unlikely(ret))
Harvey Harrison866e6b92008-03-04 15:23:47 -0800351 printk("%s: Failed, __add_pages() == %d\n", __func__, ret);
Paul Mundt33d63bd2007-06-07 11:32:52 +0900352
353 return ret;
354}
355EXPORT_SYMBOL_GPL(arch_add_memory);
356
Paul Mundt357d5942007-06-11 15:32:07 +0900357#ifdef CONFIG_NUMA
Paul Mundt33d63bd2007-06-07 11:32:52 +0900358int memory_add_physaddr_to_nid(u64 addr)
359{
360 /* Node 0 for now.. */
361 return 0;
362}
363EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
364#endif
Matt Fleming1f69b6a2009-10-06 21:22:25 +0000365
Paul Mundt3159e7d2008-09-05 15:39:12 +0900366#endif /* CONFIG_MEMORY_HOTPLUG */