blob: ea2d15370bb72ecef36f99656049b092073bff9c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 1994 - 2000 Ralf Baechle
7 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
8 * Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com
9 * Copyright (C) 2000 MIPS Technologies, Inc. All rights reserved.
10 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/init.h>
12#include <linux/module.h>
13#include <linux/signal.h>
14#include <linux/sched.h>
15#include <linux/kernel.h>
16#include <linux/errno.h>
17#include <linux/string.h>
18#include <linux/types.h>
19#include <linux/pagemap.h>
20#include <linux/ptrace.h>
21#include <linux/mman.h>
22#include <linux/mm.h>
23#include <linux/bootmem.h>
24#include <linux/highmem.h>
25#include <linux/swap.h>
Daniel Jacobowitz3d503752005-01-20 19:59:54 -050026#include <linux/proc_fs.h>
Dave Hansen22a98352006-03-27 01:16:04 -080027#include <linux/pfn.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#include <asm/bootinfo.h>
30#include <asm/cachectl.h>
31#include <asm/cpu.h>
32#include <asm/dma.h>
Ralf Baechlef8829ca2006-10-21 23:17:35 +010033#include <asm/kmap_types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/mmu_context.h>
35#include <asm/sections.h>
36#include <asm/pgtable.h>
37#include <asm/pgalloc.h>
38#include <asm/tlb.h>
Ralf Baechlef8829ca2006-10-21 23:17:35 +010039#include <asm/fixmap.h>
40
41/* Atomicity and interruptability */
42#ifdef CONFIG_MIPS_MT_SMTC
43
44#include <asm/mipsmtregs.h>
45
46#define ENTER_CRITICAL(flags) \
47 { \
48 unsigned int mvpflags; \
49 local_irq_save(flags);\
50 mvpflags = dvpe()
51#define EXIT_CRITICAL(flags) \
52 evpe(mvpflags); \
53 local_irq_restore(flags); \
54 }
55#else
56
57#define ENTER_CRITICAL(flags) local_irq_save(flags)
58#define EXIT_CRITICAL(flags) local_irq_restore(flags)
59
60#endif /* CONFIG_MIPS_MT_SMTC */
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
63
64unsigned long highstart_pfn, highend_pfn;
65
66/*
67 * We have up to 8 empty zeroed pages so we can map one of the right colour
68 * when needed. This is necessary only on R4000 / R4400 SC and MC versions
69 * where we have to avoid VCED / VECI exceptions for good performance at
70 * any price. Since page is never written to after the initialization we
71 * don't have to care about aliases on other CPUs.
72 */
73unsigned long empty_zero_page, zero_page_mask;
74
75/*
76 * Not static inline because used by IP27 special magic initialization code
77 */
78unsigned long setup_zero_pages(void)
79{
Nick Piggin8dfcc9b2006-03-22 00:08:05 -080080 unsigned int order;
81 unsigned long size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 struct page *page;
83
84 if (cpu_has_vce)
85 order = 3;
86 else
87 order = 0;
88
89 empty_zero_page = __get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
90 if (!empty_zero_page)
91 panic("Oh boy, that early out of memory?");
92
Franck Bui-Huu99e3b942006-10-19 13:19:59 +020093 page = virt_to_page((void *)empty_zero_page);
Nick Piggin8dfcc9b2006-03-22 00:08:05 -080094 split_page(page, order);
Franck Bui-Huu99e3b942006-10-19 13:19:59 +020095 while (page < virt_to_page((void *)(empty_zero_page + (PAGE_SIZE << order)))) {
Hugh Dickins68352e62005-12-12 00:37:23 -080096 SetPageReserved(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 page++;
98 }
99
100 size = PAGE_SIZE << order;
101 zero_page_mask = (size - 1) & PAGE_MASK;
102
103 return 1UL << order;
104}
105
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100106/*
107 * These are almost like kmap_atomic / kunmap_atmic except they take an
108 * additional address argument as the hint.
109 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111#define kmap_get_fixmap_pte(vaddr) \
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000112 pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr), (vaddr)), (vaddr)), (vaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100114#ifdef CONFIG_MIPS_MT_SMTC
115static pte_t *kmap_coherent_pte;
116static void __init kmap_coherent_init(void)
117{
118 unsigned long vaddr;
119
120 /* cache the first coherent kmap pte */
121 vaddr = __fix_to_virt(FIX_CMAP_BEGIN);
122 kmap_coherent_pte = kmap_get_fixmap_pte(vaddr);
123}
124#else
125static inline void kmap_coherent_init(void) {}
126#endif
127
128static inline void *kmap_coherent(struct page *page, unsigned long addr)
129{
130 enum fixed_addresses idx;
131 unsigned long vaddr, flags, entrylo;
132 unsigned long old_ctx;
133 pte_t pte;
134 int tlbidx;
135
136 inc_preempt_count();
137 idx = (addr >> PAGE_SHIFT) & (FIX_N_COLOURS - 1);
138#ifdef CONFIG_MIPS_MT_SMTC
139 idx += FIX_N_COLOURS * smp_processor_id();
140#endif
141 vaddr = __fix_to_virt(FIX_CMAP_END - idx);
142 pte = mk_pte(page, PAGE_KERNEL);
143#if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32_R1)
144 entrylo = pte.pte_high;
145#else
146 entrylo = pte_val(pte) >> 6;
147#endif
148
149 ENTER_CRITICAL(flags);
150 old_ctx = read_c0_entryhi();
151 write_c0_entryhi(vaddr & (PAGE_MASK << 1));
152 write_c0_entrylo0(entrylo);
153 write_c0_entrylo1(entrylo);
154#ifdef CONFIG_MIPS_MT_SMTC
155 set_pte(kmap_coherent_pte - (FIX_CMAP_END - idx), pte);
156 /* preload TLB instead of local_flush_tlb_one() */
157 mtc0_tlbw_hazard();
158 tlb_probe();
159 tlb_probe_hazard();
160 tlbidx = read_c0_index();
161 mtc0_tlbw_hazard();
162 if (tlbidx < 0)
163 tlb_write_random();
164 else
165 tlb_write_indexed();
166#else
167 tlbidx = read_c0_wired();
168 write_c0_wired(tlbidx + 1);
169 write_c0_index(tlbidx);
170 mtc0_tlbw_hazard();
171 tlb_write_indexed();
172#endif
173 tlbw_use_hazard();
174 write_c0_entryhi(old_ctx);
175 EXIT_CRITICAL(flags);
176
177 return (void*) vaddr;
178}
179
180#define UNIQUE_ENTRYHI(idx) (CKSEG0 + ((idx) << (PAGE_SHIFT + 1)))
181
182static inline void kunmap_coherent(struct page *page)
183{
184#ifndef CONFIG_MIPS_MT_SMTC
185 unsigned int wired;
186 unsigned long flags, old_ctx;
187
188 ENTER_CRITICAL(flags);
189 old_ctx = read_c0_entryhi();
190 wired = read_c0_wired() - 1;
191 write_c0_wired(wired);
192 write_c0_index(wired);
193 write_c0_entryhi(UNIQUE_ENTRYHI(wired));
194 write_c0_entrylo0(0);
195 write_c0_entrylo1(0);
196 mtc0_tlbw_hazard();
197 tlb_write_indexed();
198 tlbw_use_hazard();
199 write_c0_entryhi(old_ctx);
200 EXIT_CRITICAL(flags);
201#endif
202 dec_preempt_count();
203 preempt_check_resched();
204}
205
206void copy_to_user_page(struct vm_area_struct *vma,
207 struct page *page, unsigned long vaddr, void *dst, const void *src,
208 unsigned long len)
209{
210 if (cpu_has_dc_aliases) {
211 void *vto = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK);
212 memcpy(vto, src, len);
213 kunmap_coherent(page);
214 } else
215 memcpy(dst, src, len);
216 if ((vma->vm_flags & VM_EXEC) && !cpu_has_ic_fills_f_dc)
217 flush_cache_page(vma, vaddr, page_to_pfn(page));
218}
219
220EXPORT_SYMBOL(copy_to_user_page);
221
222void copy_from_user_page(struct vm_area_struct *vma,
223 struct page *page, unsigned long vaddr, void *dst, const void *src,
224 unsigned long len)
225{
226 if (cpu_has_dc_aliases) {
227 void *vfrom =
228 kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK);
229 memcpy(dst, vfrom, len);
230 kunmap_coherent(page);
231 } else
232 memcpy(dst, src, len);
233}
234
235EXPORT_SYMBOL(copy_from_user_page);
236
237
238#ifdef CONFIG_HIGHMEM
239pte_t *kmap_pte;
240pgprot_t kmap_prot;
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242static void __init kmap_init(void)
243{
244 unsigned long kmap_vstart;
245
246 /* cache the first kmap pte */
247 kmap_vstart = __fix_to_virt(FIX_KMAP_BEGIN);
248 kmap_pte = kmap_get_fixmap_pte(kmap_vstart);
249
250 kmap_prot = PAGE_KERNEL;
251}
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100252#endif /* CONFIG_HIGHMEM */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Ralf Baechle84fd0892005-02-07 16:13:07 +0000254void __init fixrange_init(unsigned long start, unsigned long end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 pgd_t *pgd_base)
256{
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100257#if defined(CONFIG_HIGHMEM) || defined(CONFIG_MIPS_MT_SMTC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 pgd_t *pgd;
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000259 pud_t *pud;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 pmd_t *pmd;
261 pte_t *pte;
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000262 int i, j, k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 unsigned long vaddr;
264
265 vaddr = start;
266 i = __pgd_offset(vaddr);
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000267 j = __pud_offset(vaddr);
268 k = __pmd_offset(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 pgd = pgd_base + i;
270
271 for ( ; (i < PTRS_PER_PGD) && (vaddr != end); pgd++, i++) {
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000272 pud = (pud_t *)pgd;
273 for ( ; (j < PTRS_PER_PUD) && (vaddr != end); pud++, j++) {
274 pmd = (pmd_t *)pud;
275 for (; (k < PTRS_PER_PMD) && (vaddr != end); pmd++, k++) {
276 if (pmd_none(*pmd)) {
277 pte = (pte_t *) alloc_bootmem_low_pages(PAGE_SIZE);
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100278 set_pmd(pmd, __pmd((unsigned long)pte));
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000279 if (pte != pte_offset_kernel(pmd, 0))
280 BUG();
281 }
282 vaddr += PMD_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000284 k = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
286 j = 0;
287 }
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100288#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Yoichi Yuasab4819b52005-06-25 14:54:31 -0700291#ifndef CONFIG_NEED_MULTIPLE_NODES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292extern void pagetable_init(void);
293
Atsushi Nemoto565200a2006-07-07 00:26:02 +0900294static int __init page_is_ram(unsigned long pagenr)
295{
296 int i;
297
298 for (i = 0; i < boot_mem_map.nr_map; i++) {
299 unsigned long addr, end;
300
301 if (boot_mem_map.map[i].type != BOOT_MEM_RAM)
302 /* not usable memory */
303 continue;
304
305 addr = PFN_UP(boot_mem_map.map[i].addr);
306 end = PFN_DOWN(boot_mem_map.map[i].addr +
307 boot_mem_map.map[i].size);
308
309 if (pagenr >= addr && pagenr < end)
310 return 1;
311 }
312
313 return 0;
314}
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316void __init paging_init(void)
317{
Atsushi Nemotob58e5d02006-09-30 03:34:06 +0900318 unsigned long zones_size[MAX_NR_ZONES] = { 0, };
Franck Bui-Huucbb8fc02006-12-06 16:48:28 +0100319 unsigned long max_dma, low;
Atsushi Nemoto565200a2006-07-07 00:26:02 +0900320#ifndef CONFIG_FLATMEM
Atsushi Nemotob58e5d02006-09-30 03:34:06 +0900321 unsigned long zholes_size[MAX_NR_ZONES] = { 0, };
Atsushi Nemoto565200a2006-07-07 00:26:02 +0900322 unsigned long i, j, pfn;
323#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 pagetable_init();
326
327#ifdef CONFIG_HIGHMEM
328 kmap_init();
329#endif
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100330 kmap_coherent_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 max_dma = virt_to_phys((char *)MAX_DMA_ADDRESS) >> PAGE_SHIFT;
333 low = max_low_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335#ifdef CONFIG_ISA
336 if (low < max_dma)
337 zones_size[ZONE_DMA] = low;
338 else {
339 zones_size[ZONE_DMA] = max_dma;
340 zones_size[ZONE_NORMAL] = low - max_dma;
341 }
342#else
343 zones_size[ZONE_DMA] = low;
344#endif
345#ifdef CONFIG_HIGHMEM
Franck Bui-Huucbb8fc02006-12-06 16:48:28 +0100346 zones_size[ZONE_HIGHMEM] = highend_pfn - highstart_pfn;
347
348 if (cpu_has_dc_aliases && zones_size[ZONE_HIGHMEM]) {
349 printk(KERN_WARNING "This processor doesn't support highmem."
350 " %ldk highmem ignored\n", zones_size[ZONE_HIGHMEM]);
351 zones_size[ZONE_HIGHMEM] = 0;
352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353#endif
354
Atsushi Nemoto565200a2006-07-07 00:26:02 +0900355#ifdef CONFIG_FLATMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 free_area_init(zones_size);
Atsushi Nemoto565200a2006-07-07 00:26:02 +0900357#else
358 pfn = 0;
359 for (i = 0; i < MAX_NR_ZONES; i++)
360 for (j = 0; j < zones_size[i]; j++, pfn++)
361 if (!page_is_ram(pfn))
362 zholes_size[i]++;
363 free_area_init_node(0, NODE_DATA(0), zones_size, 0, zholes_size);
364#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
366
Daniel Jacobowitz3d503752005-01-20 19:59:54 -0500367static struct kcore_list kcore_mem, kcore_vmalloc;
368#ifdef CONFIG_64BIT
369static struct kcore_list kcore_kseg0;
370#endif
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372void __init mem_init(void)
373{
374 unsigned long codesize, reservedpages, datasize, initsize;
375 unsigned long tmp, ram;
376
377#ifdef CONFIG_HIGHMEM
378#ifdef CONFIG_DISCONTIGMEM
379#error "CONFIG_HIGHMEM and CONFIG_DISCONTIGMEM dont work together yet"
380#endif
Atsushi Nemoto565200a2006-07-07 00:26:02 +0900381 max_mapnr = highend_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382#else
Atsushi Nemoto565200a2006-07-07 00:26:02 +0900383 max_mapnr = max_low_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384#endif
385 high_memory = (void *) __va(max_low_pfn << PAGE_SHIFT);
386
387 totalram_pages += free_all_bootmem();
388 totalram_pages -= setup_zero_pages(); /* Setup zeroed pages. */
389
390 reservedpages = ram = 0;
391 for (tmp = 0; tmp < max_low_pfn; tmp++)
392 if (page_is_ram(tmp)) {
393 ram++;
Chad Reeseb1c231f2006-05-30 17:16:49 -0700394 if (PageReserved(pfn_to_page(tmp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 reservedpages++;
396 }
Atsushi Nemoto565200a2006-07-07 00:26:02 +0900397 num_physpages = ram;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399#ifdef CONFIG_HIGHMEM
400 for (tmp = highstart_pfn; tmp < highend_pfn; tmp++) {
401 struct page *page = mem_map + tmp;
402
403 if (!page_is_ram(tmp)) {
404 SetPageReserved(page);
405 continue;
406 }
407 ClearPageReserved(page);
408#ifdef CONFIG_LIMITED_DMA
409 set_page_address(page, lowmem_page_address(page));
410#endif
Nick Piggin7835e982006-03-22 00:08:40 -0800411 init_page_count(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 __free_page(page);
413 totalhigh_pages++;
414 }
415 totalram_pages += totalhigh_pages;
Atsushi Nemoto565200a2006-07-07 00:26:02 +0900416 num_physpages += totalhigh_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417#endif
418
419 codesize = (unsigned long) &_etext - (unsigned long) &_text;
420 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
421 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
422
Daniel Jacobowitz3d503752005-01-20 19:59:54 -0500423#ifdef CONFIG_64BIT
424 if ((unsigned long) &_text > (unsigned long) CKSEG0)
425 /* The -4 is a hack so that user tools don't have to handle
426 the overflow. */
427 kclist_add(&kcore_kseg0, (void *) CKSEG0, 0x80000000 - 4);
428#endif
429 kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
430 kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
431 VMALLOC_END-VMALLOC_START);
432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
434 "%ldk reserved, %ldk data, %ldk init, %ldk highmem)\n",
435 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
436 ram << (PAGE_SHIFT-10),
437 codesize >> 10,
438 reservedpages << (PAGE_SHIFT-10),
439 datasize >> 10,
440 initsize >> 10,
441 (unsigned long) (totalhigh_pages << (PAGE_SHIFT-10)));
442}
Yoichi Yuasab4819b52005-06-25 14:54:31 -0700443#endif /* !CONFIG_NEED_MULTIPLE_NODES */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Franck Bui-Huuacd86b82006-10-19 13:20:05 +0200445static void free_init_pages(char *what, unsigned long begin, unsigned long end)
Ralf Baechle6fd11a22006-03-24 13:21:50 +0000446{
Franck Bui-Huuacd86b82006-10-19 13:20:05 +0200447 unsigned long pfn;
Ralf Baechle6fd11a22006-03-24 13:21:50 +0000448
Franck Bui-Huuacd86b82006-10-19 13:20:05 +0200449 for (pfn = PFN_UP(begin); pfn < PFN_DOWN(end); pfn++) {
450 struct page *page = pfn_to_page(pfn);
451 void *addr = phys_to_virt(PFN_PHYS(pfn));
452
453 ClearPageReserved(page);
454 init_page_count(page);
455 memset(addr, POISON_FREE_INITMEM, PAGE_SIZE);
456 __free_page(page);
Ralf Baechle6fd11a22006-03-24 13:21:50 +0000457 totalram_pages++;
458 }
459 printk(KERN_INFO "Freeing %s: %ldk freed\n", what, (end - begin) >> 10);
460}
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462#ifdef CONFIG_BLK_DEV_INITRD
463void free_initrd_mem(unsigned long start, unsigned long end)
464{
Franck Bui-Huuacd86b82006-10-19 13:20:05 +0200465 free_init_pages("initrd memory",
466 virt_to_phys((void *)start),
467 virt_to_phys((void *)end));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468}
469#endif
470
471extern unsigned long prom_free_prom_memory(void);
472
473void free_initmem(void)
474{
Franck Bui-Huuacd86b82006-10-19 13:20:05 +0200475 unsigned long freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477 freed = prom_free_prom_memory();
Ralf Baechle6fd11a22006-03-24 13:21:50 +0000478 if (freed)
479 printk(KERN_INFO "Freeing firmware memory: %ldk freed\n",freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Franck Bui-Huuacd86b82006-10-19 13:20:05 +0200481 free_init_pages("unused kernel memory",
482 __pa_symbol(&__init_begin),
483 __pa_symbol(&__init_end));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}