blob: 60f7c6122d6e00eeae2053a8a86d4f954b88a099 [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 */
Ralf Baechleb8688682007-09-11 18:05:33 +010011#include <linux/bug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/init.h>
13#include <linux/module.h>
14#include <linux/signal.h>
15#include <linux/sched.h>
Ralf Baechle631330f2009-06-19 14:05:26 +010016#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/kernel.h>
18#include <linux/errno.h>
19#include <linux/string.h>
20#include <linux/types.h>
21#include <linux/pagemap.h>
22#include <linux/ptrace.h>
23#include <linux/mman.h>
24#include <linux/mm.h>
25#include <linux/bootmem.h>
26#include <linux/highmem.h>
27#include <linux/swap.h>
Daniel Jacobowitz3d503752005-01-20 19:59:54 -050028#include <linux/proc_fs.h>
Dave Hansen22a98352006-03-27 01:16:04 -080029#include <linux/pfn.h>
Kevin Cernekee0f334a32009-09-07 11:11:31 -070030#include <linux/hardirq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Ralf Baechle9975e772007-08-13 12:44:41 +010033#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/bootinfo.h>
35#include <asm/cachectl.h>
36#include <asm/cpu.h>
37#include <asm/dma.h>
Ralf Baechlef8829ca2006-10-21 23:17:35 +010038#include <asm/kmap_types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/mmu_context.h>
40#include <asm/sections.h>
41#include <asm/pgtable.h>
42#include <asm/pgalloc.h>
43#include <asm/tlb.h>
Ralf Baechlef8829ca2006-10-21 23:17:35 +010044#include <asm/fixmap.h>
45
46/* Atomicity and interruptability */
47#ifdef CONFIG_MIPS_MT_SMTC
48
49#include <asm/mipsmtregs.h>
50
51#define ENTER_CRITICAL(flags) \
52 { \
53 unsigned int mvpflags; \
54 local_irq_save(flags);\
55 mvpflags = dvpe()
56#define EXIT_CRITICAL(flags) \
57 evpe(mvpflags); \
58 local_irq_restore(flags); \
59 }
60#else
61
62#define ENTER_CRITICAL(flags) local_irq_save(flags)
63#define EXIT_CRITICAL(flags) local_irq_restore(flags)
64
65#endif /* CONFIG_MIPS_MT_SMTC */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067/*
68 * We have up to 8 empty zeroed pages so we can map one of the right colour
Ralf Baechle70342282013-01-22 12:59:30 +010069 * when needed. This is necessary only on R4000 / R4400 SC and MC versions
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 * where we have to avoid VCED / VECI exceptions for good performance at
71 * any price. Since page is never written to after the initialization we
72 * don't have to care about aliases on other CPUs.
73 */
74unsigned long empty_zero_page, zero_page_mask;
Ralf Baechle497d2ad2008-06-06 14:23:06 +010075EXPORT_SYMBOL_GPL(empty_zero_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77/*
78 * Not static inline because used by IP27 special magic initialization code
79 */
Jiang Liu316059222013-04-29 15:06:43 -070080void setup_zero_pages(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
Jiang Liu316059222013-04-29 15:06:43 -070082 unsigned int order, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 struct page *page;
84
85 if (cpu_has_vce)
86 order = 3;
87 else
88 order = 0;
89
90 empty_zero_page = __get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
91 if (!empty_zero_page)
92 panic("Oh boy, that early out of memory?");
93
Franck Bui-Huu99e3b942006-10-19 13:19:59 +020094 page = virt_to_page((void *)empty_zero_page);
Nick Piggin8dfcc9b2006-03-22 00:08:05 -080095 split_page(page, order);
Jiang Liu316059222013-04-29 15:06:43 -070096 for (i = 0; i < (1 << order); i++, page++)
97 mark_page_reserved(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Jiang Liu316059222013-04-29 15:06:43 -070099 zero_page_mask = ((PAGE_SIZE << order) - 1) & PAGE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100102#ifdef CONFIG_MIPS_MT_SMTC
103static pte_t *kmap_coherent_pte;
104static void __init kmap_coherent_init(void)
105{
106 unsigned long vaddr;
107
108 /* cache the first coherent kmap pte */
109 vaddr = __fix_to_virt(FIX_CMAP_BEGIN);
110 kmap_coherent_pte = kmap_get_fixmap_pte(vaddr);
111}
112#else
113static inline void kmap_coherent_init(void) {}
114#endif
115
Ralf Baechle7575a492007-03-23 21:36:37 +0000116void *kmap_coherent(struct page *page, unsigned long addr)
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100117{
118 enum fixed_addresses idx;
119 unsigned long vaddr, flags, entrylo;
120 unsigned long old_ctx;
121 pte_t pte;
122 int tlbidx;
123
Ralf Baechleb8688682007-09-11 18:05:33 +0100124 BUG_ON(Page_dcache_dirty(page));
125
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100126 inc_preempt_count();
127 idx = (addr >> PAGE_SHIFT) & (FIX_N_COLOURS - 1);
128#ifdef CONFIG_MIPS_MT_SMTC
Kevin Cernekee0f334a32009-09-07 11:11:31 -0700129 idx += FIX_N_COLOURS * smp_processor_id() +
130 (in_interrupt() ? (FIX_N_COLOURS * NR_CPUS) : 0);
131#else
132 idx += in_interrupt() ? FIX_N_COLOURS : 0;
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100133#endif
134 vaddr = __fix_to_virt(FIX_CMAP_END - idx);
135 pte = mk_pte(page, PAGE_KERNEL);
Chris Dearman962f4802007-09-19 00:46:32 +0100136#if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32)
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100137 entrylo = pte.pte_high;
138#else
David Daney6dd93442010-02-10 15:12:47 -0800139 entrylo = pte_to_entrylo(pte_val(pte));
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100140#endif
141
142 ENTER_CRITICAL(flags);
143 old_ctx = read_c0_entryhi();
144 write_c0_entryhi(vaddr & (PAGE_MASK << 1));
145 write_c0_entrylo0(entrylo);
146 write_c0_entrylo1(entrylo);
147#ifdef CONFIG_MIPS_MT_SMTC
148 set_pte(kmap_coherent_pte - (FIX_CMAP_END - idx), pte);
149 /* preload TLB instead of local_flush_tlb_one() */
150 mtc0_tlbw_hazard();
151 tlb_probe();
152 tlb_probe_hazard();
153 tlbidx = read_c0_index();
154 mtc0_tlbw_hazard();
155 if (tlbidx < 0)
156 tlb_write_random();
157 else
158 tlb_write_indexed();
159#else
160 tlbidx = read_c0_wired();
161 write_c0_wired(tlbidx + 1);
162 write_c0_index(tlbidx);
163 mtc0_tlbw_hazard();
164 tlb_write_indexed();
165#endif
166 tlbw_use_hazard();
167 write_c0_entryhi(old_ctx);
168 EXIT_CRITICAL(flags);
169
170 return (void*) vaddr;
171}
172
173#define UNIQUE_ENTRYHI(idx) (CKSEG0 + ((idx) << (PAGE_SHIFT + 1)))
174
Ralf Baechleeacb9d62007-04-26 15:46:25 +0100175void kunmap_coherent(void)
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100176{
177#ifndef CONFIG_MIPS_MT_SMTC
178 unsigned int wired;
179 unsigned long flags, old_ctx;
180
181 ENTER_CRITICAL(flags);
182 old_ctx = read_c0_entryhi();
183 wired = read_c0_wired() - 1;
184 write_c0_wired(wired);
185 write_c0_index(wired);
186 write_c0_entryhi(UNIQUE_ENTRYHI(wired));
187 write_c0_entrylo0(0);
188 write_c0_entrylo1(0);
189 mtc0_tlbw_hazard();
190 tlb_write_indexed();
191 tlbw_use_hazard();
192 write_c0_entryhi(old_ctx);
193 EXIT_CRITICAL(flags);
194#endif
195 dec_preempt_count();
196 preempt_check_resched();
197}
198
Atsushi Nemotobcd02282006-12-12 17:14:56 +0000199void copy_user_highpage(struct page *to, struct page *from,
200 unsigned long vaddr, struct vm_area_struct *vma)
201{
202 void *vfrom, *vto;
203
Cong Wang9c020482011-11-25 23:14:15 +0800204 vto = kmap_atomic(to);
Ralf Baechle9a74b3e2008-02-16 22:34:25 +0000205 if (cpu_has_dc_aliases &&
206 page_mapped(from) && !Page_dcache_dirty(from)) {
Atsushi Nemotobcd02282006-12-12 17:14:56 +0000207 vfrom = kmap_coherent(from, vaddr);
208 copy_page(vto, vfrom);
Ralf Baechleeacb9d62007-04-26 15:46:25 +0100209 kunmap_coherent();
Atsushi Nemotobcd02282006-12-12 17:14:56 +0000210 } else {
Cong Wang9c020482011-11-25 23:14:15 +0800211 vfrom = kmap_atomic(from);
Atsushi Nemotobcd02282006-12-12 17:14:56 +0000212 copy_page(vto, vfrom);
Cong Wang9c020482011-11-25 23:14:15 +0800213 kunmap_atomic(vfrom);
Atsushi Nemotobcd02282006-12-12 17:14:56 +0000214 }
Ralf Baechle39b8d522008-04-28 17:14:26 +0100215 if ((!cpu_has_ic_fills_f_dc) ||
Atsushi Nemotobcd02282006-12-12 17:14:56 +0000216 pages_do_alias((unsigned long)vto, vaddr & PAGE_MASK))
217 flush_data_cache_page((unsigned long)vto);
Cong Wang9c020482011-11-25 23:14:15 +0800218 kunmap_atomic(vto);
Atsushi Nemotobcd02282006-12-12 17:14:56 +0000219 /* Make sure this page is cleared on other CPU's too before using it */
220 smp_wmb();
221}
222
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100223void copy_to_user_page(struct vm_area_struct *vma,
224 struct page *page, unsigned long vaddr, void *dst, const void *src,
225 unsigned long len)
226{
Ralf Baechle9a74b3e2008-02-16 22:34:25 +0000227 if (cpu_has_dc_aliases &&
228 page_mapped(page) && !Page_dcache_dirty(page)) {
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100229 void *vto = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK);
230 memcpy(vto, src, len);
Ralf Baechleeacb9d62007-04-26 15:46:25 +0100231 kunmap_coherent();
Ralf Baechle985c30e2007-10-15 16:30:24 +0100232 } else {
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100233 memcpy(dst, src, len);
Ralf Baechle985c30e2007-10-15 16:30:24 +0100234 if (cpu_has_dc_aliases)
235 SetPageDcacheDirty(page);
236 }
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100237 if ((vma->vm_flags & VM_EXEC) && !cpu_has_ic_fills_f_dc)
238 flush_cache_page(vma, vaddr, page_to_pfn(page));
239}
240
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100241void copy_from_user_page(struct vm_area_struct *vma,
242 struct page *page, unsigned long vaddr, void *dst, const void *src,
243 unsigned long len)
244{
Ralf Baechle9a74b3e2008-02-16 22:34:25 +0000245 if (cpu_has_dc_aliases &&
246 page_mapped(page) && !Page_dcache_dirty(page)) {
Ralf Baechle985c30e2007-10-15 16:30:24 +0100247 void *vfrom = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK);
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100248 memcpy(dst, vfrom, len);
Ralf Baechleeacb9d62007-04-26 15:46:25 +0100249 kunmap_coherent();
Ralf Baechle985c30e2007-10-15 16:30:24 +0100250 } else {
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100251 memcpy(dst, src, len);
Ralf Baechle985c30e2007-10-15 16:30:24 +0100252 if (cpu_has_dc_aliases)
253 SetPageDcacheDirty(page);
254 }
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100255}
256
Ralf Baechle84fd0892005-02-07 16:13:07 +0000257void __init fixrange_init(unsigned long start, unsigned long end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 pgd_t *pgd_base)
259{
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100260#if defined(CONFIG_HIGHMEM) || defined(CONFIG_MIPS_MT_SMTC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 pgd_t *pgd;
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000262 pud_t *pud;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 pmd_t *pmd;
264 pte_t *pte;
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000265 int i, j, k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 unsigned long vaddr;
267
268 vaddr = start;
269 i = __pgd_offset(vaddr);
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000270 j = __pud_offset(vaddr);
271 k = __pmd_offset(vaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 pgd = pgd_base + i;
273
Kevin Cernekee464fd832011-01-05 23:31:30 -0800274 for ( ; (i < PTRS_PER_PGD) && (vaddr < end); pgd++, i++) {
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000275 pud = (pud_t *)pgd;
Kevin Cernekee464fd832011-01-05 23:31:30 -0800276 for ( ; (j < PTRS_PER_PUD) && (vaddr < end); pud++, j++) {
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000277 pmd = (pmd_t *)pud;
Kevin Cernekee464fd832011-01-05 23:31:30 -0800278 for (; (k < PTRS_PER_PMD) && (vaddr < end); pmd++, k++) {
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000279 if (pmd_none(*pmd)) {
280 pte = (pte_t *) alloc_bootmem_low_pages(PAGE_SIZE);
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100281 set_pmd(pmd, __pmd((unsigned long)pte));
Ralf Baechleb72b7092009-03-30 14:49:44 +0200282 BUG_ON(pte != pte_offset_kernel(pmd, 0));
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000283 }
284 vaddr += PMD_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
Ralf Baechlec6e8b582005-02-10 12:19:59 +0000286 k = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 }
288 j = 0;
289 }
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100290#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Yoichi Yuasab4819b52005-06-25 14:54:31 -0700293#ifndef CONFIG_NEED_MULTIPLE_NODES
Wu Fengguang61ef2482010-01-22 16:16:19 +0800294int page_is_ram(unsigned long pagenr)
Atsushi Nemoto565200a2006-07-07 00:26:02 +0900295{
296 int i;
297
298 for (i = 0; i < boot_mem_map.nr_map; i++) {
299 unsigned long addr, end;
300
David Daney43064c02011-11-22 14:38:03 +0000301 switch (boot_mem_map.map[i].type) {
302 case BOOT_MEM_RAM:
303 case BOOT_MEM_INIT_RAM:
304 break;
305 default:
Atsushi Nemoto565200a2006-07-07 00:26:02 +0900306 /* not usable memory */
307 continue;
David Daney43064c02011-11-22 14:38:03 +0000308 }
Atsushi Nemoto565200a2006-07-07 00:26:02 +0900309
310 addr = PFN_UP(boot_mem_map.map[i].addr);
311 end = PFN_DOWN(boot_mem_map.map[i].addr +
312 boot_mem_map.map[i].size);
313
314 if (pagenr >= addr && pagenr < end)
315 return 1;
316 }
317
318 return 0;
319}
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321void __init paging_init(void)
322{
Ralf Baechlecce335a2007-11-03 02:05:43 +0000323 unsigned long max_zone_pfns[MAX_NR_ZONES];
David Daneyd3ce0e92011-01-24 14:51:37 -0800324 unsigned long lastpfn __maybe_unused;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 pagetable_init();
327
328#ifdef CONFIG_HIGHMEM
329 kmap_init();
330#endif
Ralf Baechlef8829ca2006-10-21 23:17:35 +0100331 kmap_coherent_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Atsushi Nemoto05502332007-03-21 00:36:02 +0900333#ifdef CONFIG_ZONE_DMA
Ralf Baechlecce335a2007-11-03 02:05:43 +0000334 max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335#endif
Ralf Baechlecce335a2007-11-03 02:05:43 +0000336#ifdef CONFIG_ZONE_DMA32
337 max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
338#endif
339 max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
340 lastpfn = max_low_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341#ifdef CONFIG_HIGHMEM
Ralf Baechlecce335a2007-11-03 02:05:43 +0000342 max_zone_pfns[ZONE_HIGHMEM] = highend_pfn;
343 lastpfn = highend_pfn;
Franck Bui-Huucbb8fc02006-12-06 16:48:28 +0100344
Ralf Baechlecce335a2007-11-03 02:05:43 +0000345 if (cpu_has_dc_aliases && max_low_pfn != highend_pfn) {
Franck Bui-Huucbb8fc02006-12-06 16:48:28 +0100346 printk(KERN_WARNING "This processor doesn't support highmem."
Ralf Baechlecce335a2007-11-03 02:05:43 +0000347 " %ldk highmem ignored\n",
348 (highend_pfn - max_low_pfn) << (PAGE_SHIFT - 10));
349 max_zone_pfns[ZONE_HIGHMEM] = max_low_pfn;
350 lastpfn = max_low_pfn;
Franck Bui-Huucbb8fc02006-12-06 16:48:28 +0100351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352#endif
353
Ralf Baechlecce335a2007-11-03 02:05:43 +0000354 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
Daniel Jacobowitz3d503752005-01-20 19:59:54 -0500357#ifdef CONFIG_64BIT
358static struct kcore_list kcore_kseg0;
359#endif
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361void __init mem_init(void)
362{
363 unsigned long codesize, reservedpages, datasize, initsize;
364 unsigned long tmp, ram;
365
366#ifdef CONFIG_HIGHMEM
367#ifdef CONFIG_DISCONTIGMEM
368#error "CONFIG_HIGHMEM and CONFIG_DISCONTIGMEM dont work together yet"
369#endif
Kevin Cernekeeb6da0ff2010-05-30 00:32:51 -0700370 max_mapnr = highend_pfn ? highend_pfn : max_low_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371#else
Atsushi Nemoto565200a2006-07-07 00:26:02 +0900372 max_mapnr = max_low_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373#endif
374 high_memory = (void *) __va(max_low_pfn << PAGE_SHIFT);
375
376 totalram_pages += free_all_bootmem();
Jiang Liu316059222013-04-29 15:06:43 -0700377 setup_zero_pages(); /* Setup zeroed pages. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 reservedpages = ram = 0;
380 for (tmp = 0; tmp < max_low_pfn; tmp++)
David Daney43064c02011-11-22 14:38:03 +0000381 if (page_is_ram(tmp) && pfn_valid(tmp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 ram++;
Chad Reeseb1c231f2006-05-30 17:16:49 -0700383 if (PageReserved(pfn_to_page(tmp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 reservedpages++;
385 }
Atsushi Nemoto565200a2006-07-07 00:26:02 +0900386 num_physpages = ram;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388#ifdef CONFIG_HIGHMEM
389 for (tmp = highstart_pfn; tmp < highend_pfn; tmp++) {
Ralf Baechlea8049c52007-11-04 04:42:03 +0000390 struct page *page = pfn_to_page(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 if (!page_is_ram(tmp)) {
393 SetPageReserved(page);
394 continue;
395 }
396 ClearPageReserved(page);
Nick Piggin7835e982006-03-22 00:08:40 -0800397 init_page_count(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 __free_page(page);
399 totalhigh_pages++;
400 }
401 totalram_pages += totalhigh_pages;
Atsushi Nemoto565200a2006-07-07 00:26:02 +0900402 num_physpages += totalhigh_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403#endif
404
405 codesize = (unsigned long) &_etext - (unsigned long) &_text;
406 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
407 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
408
Daniel Jacobowitz3d503752005-01-20 19:59:54 -0500409#ifdef CONFIG_64BIT
410 if ((unsigned long) &_text > (unsigned long) CKSEG0)
411 /* The -4 is a hack so that user tools don't have to handle
412 the overflow. */
KAMEZAWA Hiroyukic30bb2a2009-09-22 16:45:43 -0700413 kclist_add(&kcore_kseg0, (void *) CKSEG0,
414 0x80000000 - 4, KCORE_TEXT);
Daniel Jacobowitz3d503752005-01-20 19:59:54 -0500415#endif
Daniel Jacobowitz3d503752005-01-20 19:59:54 -0500416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
418 "%ldk reserved, %ldk data, %ldk init, %ldk highmem)\n",
Geert Uytterhoevencc013a82009-09-21 17:02:36 -0700419 nr_free_pages() << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 ram << (PAGE_SHIFT-10),
421 codesize >> 10,
422 reservedpages << (PAGE_SHIFT-10),
423 datasize >> 10,
424 initsize >> 10,
Andreas Fenkart4b529402010-01-08 14:42:31 -0800425 totalhigh_pages << (PAGE_SHIFT-10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
Yoichi Yuasab4819b52005-06-25 14:54:31 -0700427#endif /* !CONFIG_NEED_MULTIPLE_NODES */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Atsushi Nemotoc44e8d52006-12-30 00:43:59 +0900429void free_init_pages(const char *what, unsigned long begin, unsigned long end)
Ralf Baechle6fd11a22006-03-24 13:21:50 +0000430{
Franck Bui-Huuacd86b82006-10-19 13:20:05 +0200431 unsigned long pfn;
Ralf Baechle6fd11a22006-03-24 13:21:50 +0000432
Franck Bui-Huuacd86b82006-10-19 13:20:05 +0200433 for (pfn = PFN_UP(begin); pfn < PFN_DOWN(end); pfn++) {
434 struct page *page = pfn_to_page(pfn);
435 void *addr = phys_to_virt(PFN_PHYS(pfn));
436
Franck Bui-Huuacd86b82006-10-19 13:20:05 +0200437 memset(addr, POISON_FREE_INITMEM, PAGE_SIZE);
Jiang Liu316059222013-04-29 15:06:43 -0700438 free_reserved_page(page);
Ralf Baechle6fd11a22006-03-24 13:21:50 +0000439 }
440 printk(KERN_INFO "Freeing %s: %ldk freed\n", what, (end - begin) >> 10);
441}
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443#ifdef CONFIG_BLK_DEV_INITRD
444void free_initrd_mem(unsigned long start, unsigned long end)
445{
Jiang Liu316059222013-04-29 15:06:43 -0700446 free_reserved_area(start, end, POISON_FREE_INITMEM, "initrd");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448#endif
449
Atsushi Nemotofb4bb132007-07-22 23:44:20 +0900450void __init_refok free_initmem(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
Atsushi Nemotoc44e8d52006-12-30 00:43:59 +0900452 prom_free_prom_memory();
Jiang Liu316059222013-04-29 15:06:43 -0700453 free_initmem_default(POISON_FREE_INITMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}
Atsushi Nemoto69a6c312007-01-24 01:21:05 +0900455
David Daney82622282009-10-14 12:16:56 -0700456#ifndef CONFIG_MIPS_PGD_C0_CONTEXT
Atsushi Nemoto69a6c312007-01-24 01:21:05 +0900457unsigned long pgd_current[NR_CPUS];
David Daney82622282009-10-14 12:16:56 -0700458#endif
Ralf Baechle9975e772007-08-13 12:44:41 +0100459
460/*
461 * gcc 3.3 and older have trouble determining that PTRS_PER_PGD and PGD_ORDER
462 * are constants. So we use the variants from asm-offset.h until that gcc
463 * will officially be retired.
David Daney485172b2012-08-14 11:08:01 -0700464 *
465 * Align swapper_pg_dir in to 64K, allows its address to be loaded
466 * with a single LUI instruction in the TLB handlers. If we used
467 * __aligned(64K), its size would get rounded up to the alignment
468 * size, and waste space. So we place it in its own section and align
469 * it in the linker script.
Ralf Baechle9975e772007-08-13 12:44:41 +0100470 */
David Daney485172b2012-08-14 11:08:01 -0700471pgd_t swapper_pg_dir[_PTRS_PER_PGD] __section(.bss..swapper_pg_dir);
David Daney325f8a02009-12-04 13:52:36 -0800472#ifndef __PAGETABLE_PMD_FOLDED
David Daney485172b2012-08-14 11:08:01 -0700473pmd_t invalid_pmd_table[PTRS_PER_PMD] __page_aligned_bss;
Atsushi Nemoto69a6c312007-01-24 01:21:05 +0900474#endif
David Daney485172b2012-08-14 11:08:01 -0700475pte_t invalid_pte_table[PTRS_PER_PTE] __page_aligned_bss;