blob: b977475f744616979ad4f80776ec0e5241743b71 [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 Mundt19d8f842010-05-10 15:39:05 +09005 * Copyright (C) 2002 - 2010 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>
Yinghai Lu95f72d12010-07-12 14:36:09 +100019#include <linux/memblock.h>
Paul Mundt94c28512009-10-27 17:07:45 +090020#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/mmu_context.h>
Paul Mundt4bc277a2010-05-11 13:32:19 +090022#include <asm/mmzone.h>
Paul Mundtc77b29d2010-05-18 14:53:23 +090023#include <asm/kexec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/tlb.h>
25#include <asm/cacheflush.h>
Paul Mundt07cbb412007-06-06 12:23:06 +090026#include <asm/sections.h>
Paul Mundt4bc277a2010-05-11 13:32:19 +090027#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/cache.h>
Paul Mundtb0f3ae02010-02-12 15:40:00 +090029#include <asm/sizes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
32pgd_t swapper_pg_dir[PTRS_PER_PGD];
Stuart Menefyc6feb612008-09-05 16:06:42 +090033
Paul Mundt19d8f842010-05-10 15:39:05 +090034void __init generic_mem_init(void)
35{
Yinghai Lu95f72d12010-07-12 14:36:09 +100036 memblock_add(__MEMORY_START, __MEMORY_SIZE);
Paul Mundt19d8f842010-05-10 15:39:05 +090037}
38
Paul Mundt4bc277a2010-05-11 13:32:19 +090039void __init __weak plat_mem_setup(void)
40{
41 /* Nothing to see here, move along. */
42}
43
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
Paul Mundt4bc277a2010-05-11 13:32:19 +0900169void __init allocate_pgdat(unsigned int nid)
170{
171 unsigned long start_pfn, end_pfn;
172#ifdef CONFIG_NEED_MULTIPLE_NODES
173 unsigned long phys;
174#endif
175
176 get_pfn_range_for_nid(nid, &start_pfn, &end_pfn);
177
178#ifdef CONFIG_NEED_MULTIPLE_NODES
Yinghai Lu95f72d12010-07-12 14:36:09 +1000179 phys = __memblock_alloc_base(sizeof(struct pglist_data),
Paul Mundt4bc277a2010-05-11 13:32:19 +0900180 SMP_CACHE_BYTES, end_pfn << PAGE_SHIFT);
181 /* Retry with all of system memory */
182 if (!phys)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000183 phys = __memblock_alloc_base(sizeof(struct pglist_data),
184 SMP_CACHE_BYTES, memblock_end_of_DRAM());
Paul Mundt4bc277a2010-05-11 13:32:19 +0900185 if (!phys)
186 panic("Can't allocate pgdat for node %d\n", nid);
187
188 NODE_DATA(nid) = __va(phys);
189 memset(NODE_DATA(nid), 0, sizeof(struct pglist_data));
190
191 NODE_DATA(nid)->bdata = &bootmem_node_data[nid];
192#endif
193
194 NODE_DATA(nid)->node_start_pfn = start_pfn;
195 NODE_DATA(nid)->node_spanned_pages = end_pfn - start_pfn;
196}
197
198static void __init bootmem_init_one_node(unsigned int nid)
199{
200 unsigned long total_pages, paddr;
201 unsigned long end_pfn;
202 struct pglist_data *p;
Paul Mundt4bc277a2010-05-11 13:32:19 +0900203
204 p = NODE_DATA(nid);
205
206 /* Nothing to do.. */
207 if (!p->node_spanned_pages)
208 return;
209
210 end_pfn = p->node_start_pfn + p->node_spanned_pages;
211
212 total_pages = bootmem_bootmap_pages(p->node_spanned_pages);
213
Yinghai Lu95f72d12010-07-12 14:36:09 +1000214 paddr = memblock_alloc(total_pages << PAGE_SHIFT, PAGE_SIZE);
Paul Mundt4bc277a2010-05-11 13:32:19 +0900215 if (!paddr)
216 panic("Can't allocate bootmap for nid[%d]\n", nid);
217
218 init_bootmem_node(p, paddr >> PAGE_SHIFT, p->node_start_pfn, end_pfn);
219
220 free_bootmem_with_active_regions(nid, end_pfn);
221
222 /*
223 * XXX Handle initial reservations for the system memory node
224 * only for the moment, we'll refactor this later for handling
225 * reservations in other nodes.
226 */
227 if (nid == 0) {
Benjamin Herrenschmidt64106ca2010-08-04 14:11:04 +1000228 struct memblock_region *reg;
229
Paul Mundt4bc277a2010-05-11 13:32:19 +0900230 /* Reserve the sections we're already using. */
Benjamin Herrenschmidt64106ca2010-08-04 14:11:04 +1000231 for_each_memblock(reserved, reg) {
232 reserve_bootmem(reg->base, reg->size, BOOTMEM_DEFAULT);
233 }
Paul Mundt4bc277a2010-05-11 13:32:19 +0900234 }
235
236 sparse_memory_present_with_active_regions(nid);
237}
238
239static void __init do_init_bootmem(void)
240{
Benjamin Herrenschmidt64106ca2010-08-04 14:11:04 +1000241 struct memblock_region *reg;
Paul Mundt4bc277a2010-05-11 13:32:19 +0900242 int i;
243
244 /* Add active regions with valid PFNs. */
Benjamin Herrenschmidt64106ca2010-08-04 14:11:04 +1000245 for_each_memblock(memory, reg) {
Paul Mundt4bc277a2010-05-11 13:32:19 +0900246 unsigned long start_pfn, end_pfn;
Benjamin Herrenschmidt64106ca2010-08-04 14:11:04 +1000247 start_pfn = memblock_region_base_pfn(reg);
248 end_pfn = memblock_region_end_pfn(reg);
Paul Mundt4bc277a2010-05-11 13:32:19 +0900249 __add_active_range(0, start_pfn, end_pfn);
250 }
251
252 /* All of system RAM sits in node 0 for the non-NUMA case */
253 allocate_pgdat(0);
254 node_set_online(0);
255
256 plat_mem_setup();
257
258 for_each_online_node(i)
259 bootmem_init_one_node(i);
260
261 sparse_init();
262}
263
264static void __init early_reserve_mem(void)
265{
266 unsigned long start_pfn;
267
268 /*
269 * Partially used pages are not usable - thus
270 * we are rounding upwards:
271 */
272 start_pfn = PFN_UP(__pa(_end));
273
274 /*
275 * Reserve the kernel text and Reserve the bootmem bitmap. We do
276 * this in two steps (first step was init_bootmem()), because
277 * this catches the (definitely buggy) case of us accidentally
278 * initializing the bootmem allocator with an invalid RAM area.
279 */
Yinghai Lu95f72d12010-07-12 14:36:09 +1000280 memblock_reserve(__MEMORY_START + CONFIG_ZERO_PAGE_OFFSET,
Paul Mundt4bc277a2010-05-11 13:32:19 +0900281 (PFN_PHYS(start_pfn) + PAGE_SIZE - 1) -
282 (__MEMORY_START + CONFIG_ZERO_PAGE_OFFSET));
283
284 /*
285 * Reserve physical pages below CONFIG_ZERO_PAGE_OFFSET.
286 */
287 if (CONFIG_ZERO_PAGE_OFFSET != 0)
Yinghai Lu95f72d12010-07-12 14:36:09 +1000288 memblock_reserve(__MEMORY_START, CONFIG_ZERO_PAGE_OFFSET);
Paul Mundt4bc277a2010-05-11 13:32:19 +0900289
290 /*
291 * Handle additional early reservations
292 */
293 check_for_initrd();
294 reserve_crashkernel();
295}
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297void __init paging_init(void)
298{
Paul Mundt2de212e2007-06-06 12:09:54 +0900299 unsigned long max_zone_pfns[MAX_NR_ZONES];
Paul Mundt0906a3a2009-09-03 17:21:10 +0900300 unsigned long vaddr, end;
Paul Mundt01066622007-03-28 16:38:13 +0900301 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Yinghai Lu95f72d12010-07-12 14:36:09 +1000303 memblock_init();
Paul Mundt4bc277a2010-05-11 13:32:19 +0900304
305 sh_mv.mv_mem_init();
306
307 early_reserve_mem();
308
Yinghai Lu95f72d12010-07-12 14:36:09 +1000309 memblock_enforce_memory_limit(memory_limit);
310 memblock_analyze();
Paul Mundt4bc277a2010-05-11 13:32:19 +0900311
Yinghai Lu95f72d12010-07-12 14:36:09 +1000312 memblock_dump_all();
Paul Mundt4bc277a2010-05-11 13:32:19 +0900313
314 /*
315 * Determine low and high memory ranges:
316 */
Yinghai Lu95f72d12010-07-12 14:36:09 +1000317 max_low_pfn = max_pfn = memblock_end_of_DRAM() >> PAGE_SHIFT;
Paul Mundt4bc277a2010-05-11 13:32:19 +0900318 min_low_pfn = __MEMORY_START >> PAGE_SHIFT;
319
320 nodes_clear(node_online_map);
321
322 memory_start = (unsigned long)__va(__MEMORY_START);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000323 memory_end = memory_start + (memory_limit ?: memblock_phys_mem_size());
Paul Mundt4bc277a2010-05-11 13:32:19 +0900324
325 uncached_init();
326 pmb_init();
327 do_init_bootmem();
328 ioremap_fixed_init();
329
Paul Mundt01066622007-03-28 16:38:13 +0900330 /* We don't need to map the kernel through the TLB, as
331 * it is permanatly mapped using P1. So clear the
332 * entire pgd. */
333 memset(swapper_pg_dir, 0, sizeof(swapper_pg_dir));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Stuart Menefy6e4662f2006-11-21 13:53:44 +0900335 /* Set an initial value for the MMU.TTB so we don't have to
336 * check for a null value. */
337 set_TTB(swapper_pg_dir);
338
Paul Mundtacca4f42008-11-10 20:00:45 +0900339 /*
340 * Populate the relevant portions of swapper_pg_dir so that
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900341 * we can use the fixmap entries without calling kmalloc.
Paul Mundtacca4f42008-11-10 20:00:45 +0900342 * pte's will be filled in by __set_fixmap().
343 */
344 vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
Paul Mundt0906a3a2009-09-03 17:21:10 +0900345 end = (FIXADDR_TOP + PMD_SIZE - 1) & PMD_MASK;
346 page_table_range_init(vaddr, end, swapper_pg_dir);
Paul Mundtacca4f42008-11-10 20:00:45 +0900347
348 kmap_coherent_init();
Stuart Menefy2adb4e12007-11-30 17:59:55 +0900349
Paul Mundt2de212e2007-06-06 12:09:54 +0900350 memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
351
Paul Mundt01066622007-03-28 16:38:13 +0900352 for_each_online_node(nid) {
353 pg_data_t *pgdat = NODE_DATA(nid);
Paul Mundt01066622007-03-28 16:38:13 +0900354 unsigned long low, start_pfn;
355
Johannes Weiner3560e242008-07-23 21:28:09 -0700356 start_pfn = pgdat->bdata->node_min_pfn;
Paul Mundt01066622007-03-28 16:38:13 +0900357 low = pgdat->bdata->node_low_pfn;
358
Paul Mundt2de212e2007-06-06 12:09:54 +0900359 if (max_zone_pfns[ZONE_NORMAL] < low)
360 max_zone_pfns[ZONE_NORMAL] = low;
Paul Mundt01066622007-03-28 16:38:13 +0900361
362 printk("Node %u: start_pfn = 0x%lx, low = 0x%lx\n",
363 nid, start_pfn, low);
Paul Mundt01066622007-03-28 16:38:13 +0900364 }
Paul Mundt2de212e2007-06-06 12:09:54 +0900365
366 free_area_init_nodes(max_zone_pfns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368
Paul Mundt94c28512009-10-27 17:07:45 +0900369/*
370 * Early initialization for any I/O MMUs we might have.
371 */
372static void __init iommu_init(void)
373{
374 no_iommu_init();
375}
376
Paul Mundtd9b94872010-01-18 21:08:32 +0900377unsigned int mem_init_done = 0;
378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379void __init mem_init(void)
380{
Paul Mundtdfbb9042007-05-23 17:48:36 +0900381 int codesize, datasize, initsize;
Paul Mundt01066622007-03-28 16:38:13 +0900382 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Paul Mundt94c28512009-10-27 17:07:45 +0900384 iommu_init();
385
Paul Mundt2de212e2007-06-06 12:09:54 +0900386 num_physpages = 0;
387 high_memory = NULL;
388
Paul Mundt01066622007-03-28 16:38:13 +0900389 for_each_online_node(nid) {
390 pg_data_t *pgdat = NODE_DATA(nid);
391 unsigned long node_pages = 0;
392 void *node_high_memory;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Paul Mundt01066622007-03-28 16:38:13 +0900394 num_physpages += pgdat->node_present_pages;
395
396 if (pgdat->node_spanned_pages)
397 node_pages = free_all_bootmem_node(pgdat);
398
399 totalram_pages += node_pages;
400
Paul Mundt2de212e2007-06-06 12:09:54 +0900401 node_high_memory = (void *)__va((pgdat->node_start_pfn +
402 pgdat->node_spanned_pages) <<
403 PAGE_SHIFT);
Paul Mundt01066622007-03-28 16:38:13 +0900404 if (node_high_memory > high_memory)
405 high_memory = node_high_memory;
406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Paul Mundt37443ef2009-08-15 12:29:49 +0900408 /* Set this up early, so we can take care of the zero page */
409 cpu_cache_init();
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 /* clear the zero-page */
412 memset(empty_zero_page, 0, PAGE_SIZE);
413 __flush_wback_region(empty_zero_page, PAGE_SIZE);
414
Paul Mundt35f99c02010-01-20 18:48:17 +0900415 vsyscall_init();
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 codesize = (unsigned long) &_etext - (unsigned long) &_text;
418 datasize = (unsigned long) &_edata - (unsigned long) &_etext;
419 initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin;
420
Paul Mundt2cb7ce32006-09-27 18:20:58 +0900421 printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, "
Paul Mundtdfbb9042007-05-23 17:48:36 +0900422 "%dk data, %dk init)\n",
Geert Uytterhoevencc013a82009-09-21 17:02:36 -0700423 nr_free_pages() << (PAGE_SHIFT-10),
Paul Mundt2de212e2007-06-06 12:09:54 +0900424 num_physpages << (PAGE_SHIFT-10),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 codesize >> 10,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 datasize >> 10,
427 initsize >> 10);
428
Paul Mundt35f99c02010-01-20 18:48:17 +0900429 printk(KERN_INFO "virtual kernel memory layout:\n"
430 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
431#ifdef CONFIG_HIGHMEM
432 " pkmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
433#endif
434 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n"
Paul Mundt3125ee72010-01-21 15:54:31 +0900435 " lowmem : 0x%08lx - 0x%08lx (%4ld MB) (cached)\n"
Paul Mundtb0f3ae02010-02-12 15:40:00 +0900436#ifdef CONFIG_UNCACHED_MAPPING
Paul Mundt3125ee72010-01-21 15:54:31 +0900437 " : 0x%08lx - 0x%08lx (%4ld MB) (uncached)\n"
Paul Mundtb0f3ae02010-02-12 15:40:00 +0900438#endif
Paul Mundt35f99c02010-01-20 18:48:17 +0900439 " .init : 0x%08lx - 0x%08lx (%4ld kB)\n"
440 " .data : 0x%08lx - 0x%08lx (%4ld kB)\n"
441 " .text : 0x%08lx - 0x%08lx (%4ld kB)\n",
442 FIXADDR_START, FIXADDR_TOP,
443 (FIXADDR_TOP - FIXADDR_START) >> 10,
444
445#ifdef CONFIG_HIGHMEM
446 PKMAP_BASE, PKMAP_BASE+LAST_PKMAP*PAGE_SIZE,
447 (LAST_PKMAP*PAGE_SIZE) >> 10,
448#endif
449
450 (unsigned long)VMALLOC_START, VMALLOC_END,
451 (VMALLOC_END - VMALLOC_START) >> 20,
452
453 (unsigned long)memory_start, (unsigned long)high_memory,
454 ((unsigned long)high_memory - (unsigned long)memory_start) >> 20,
455
Paul Mundtb0f3ae02010-02-12 15:40:00 +0900456#ifdef CONFIG_UNCACHED_MAPPING
Paul Mundt9edef282010-02-17 16:28:00 +0900457 uncached_start, uncached_end, uncached_size >> 20,
Paul Mundtb0f3ae02010-02-12 15:40:00 +0900458#endif
Paul Mundt3125ee72010-01-21 15:54:31 +0900459
Paul Mundt35f99c02010-01-20 18:48:17 +0900460 (unsigned long)&__init_begin, (unsigned long)&__init_end,
461 ((unsigned long)&__init_end -
462 (unsigned long)&__init_begin) >> 10,
463
464 (unsigned long)&_etext, (unsigned long)&_edata,
465 ((unsigned long)&_edata - (unsigned long)&_etext) >> 10,
466
467 (unsigned long)&_text, (unsigned long)&_etext,
468 ((unsigned long)&_etext - (unsigned long)&_text) >> 10);
Paul Mundtd9b94872010-01-18 21:08:32 +0900469
470 mem_init_done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
473void free_initmem(void)
474{
475 unsigned long addr;
Paul Mundt65463b72005-11-07 00:58:24 -0800476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 addr = (unsigned long)(&__init_begin);
478 for (; addr < (unsigned long)(&__init_end); addr += PAGE_SIZE) {
479 ClearPageReserved(virt_to_page(addr));
Nick Piggin7835e982006-03-22 00:08:40 -0800480 init_page_count(virt_to_page(addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 free_page(addr);
482 totalram_pages++;
483 }
Paul Mundt07cbb412007-06-06 12:23:06 +0900484 printk("Freeing unused kernel memory: %ldk freed\n",
485 ((unsigned long)&__init_end -
486 (unsigned long)&__init_begin) >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
489#ifdef CONFIG_BLK_DEV_INITRD
490void free_initrd_mem(unsigned long start, unsigned long end)
491{
492 unsigned long p;
493 for (p = start; p < end; p += PAGE_SIZE) {
494 ClearPageReserved(virt_to_page(p));
Nick Piggin7835e982006-03-22 00:08:40 -0800495 init_page_count(virt_to_page(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 free_page(p);
497 totalram_pages++;
498 }
Paul Mundt2de212e2007-06-06 12:09:54 +0900499 printk("Freeing initrd memory: %ldk freed\n", (end - start) >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501#endif
Paul Mundt33d63bd2007-06-07 11:32:52 +0900502
503#ifdef CONFIG_MEMORY_HOTPLUG
Paul Mundt33d63bd2007-06-07 11:32:52 +0900504int arch_add_memory(int nid, u64 start, u64 size)
505{
506 pg_data_t *pgdat;
507 unsigned long start_pfn = start >> PAGE_SHIFT;
508 unsigned long nr_pages = size >> PAGE_SHIFT;
509 int ret;
510
511 pgdat = NODE_DATA(nid);
512
513 /* We only have ZONE_NORMAL, so this is easy.. */
Gary Hadec04fc582009-01-06 14:39:14 -0800514 ret = __add_pages(nid, pgdat->node_zones + ZONE_NORMAL,
515 start_pfn, nr_pages);
Paul Mundt33d63bd2007-06-07 11:32:52 +0900516 if (unlikely(ret))
Harvey Harrison866e6b92008-03-04 15:23:47 -0800517 printk("%s: Failed, __add_pages() == %d\n", __func__, ret);
Paul Mundt33d63bd2007-06-07 11:32:52 +0900518
519 return ret;
520}
521EXPORT_SYMBOL_GPL(arch_add_memory);
522
Paul Mundt357d5942007-06-11 15:32:07 +0900523#ifdef CONFIG_NUMA
Paul Mundt33d63bd2007-06-07 11:32:52 +0900524int memory_add_physaddr_to_nid(u64 addr)
525{
526 /* Node 0 for now.. */
527 return 0;
528}
529EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
530#endif
Matt Fleming1f69b6a2009-10-06 21:22:25 +0000531
Paul Mundt3159e7d2008-09-05 15:39:12 +0900532#endif /* CONFIG_MEMORY_HOTPLUG */