2 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
9 #include <linux/kernel.h>
11 #include <linux/bootmem.h>
12 #include <linux/memblock.h>
13 #include <linux/swap.h>
14 #include <linux/module.h>
16 #include <asm/pgalloc.h>
17 #include <asm/sections.h>
18 #include <asm/arcregs.h>
20 pgd_t swapper_pg_dir
[PTRS_PER_PGD
] __aligned(PAGE_SIZE
);
21 char empty_zero_page
[PAGE_SIZE
] __aligned(PAGE_SIZE
);
22 EXPORT_SYMBOL(empty_zero_page
);
24 /* Default tot mem from .config */
25 static unsigned long arc_mem_sz
= 0x20000000; /* some default */
27 /* User can over-ride above with "mem=nnn[KkMm]" in cmdline */
28 static int __init
setup_mem_sz(char *str
)
30 arc_mem_sz
= memparse(str
, NULL
) & PAGE_MASK
;
32 /* early console might not be setup yet - it will show up later */
33 pr_info("\"mem=%s\": mem sz set to %ldM\n", str
, TO_MB(arc_mem_sz
));
37 early_param("mem", setup_mem_sz
);
39 void __init
early_init_dt_add_memory_arch(u64 base
, u64 size
)
41 arc_mem_sz
= size
& PAGE_MASK
;
42 pr_info("Memory size set via devicetree %ldM\n", TO_MB(arc_mem_sz
));
46 * First memory setup routine called from setup_arch()
47 * 1. setup swapper's mm @init_mm
48 * 2. Count the pages we have and setup bootmem allocator
51 void __init
setup_arch_memory(void)
53 unsigned long zones_size
[MAX_NR_ZONES
] = { 0, 0 };
54 unsigned long end_mem
= CONFIG_LINUX_LINK_BASE
+ arc_mem_sz
;
56 init_mm
.start_code
= (unsigned long)_text
;
57 init_mm
.end_code
= (unsigned long)_etext
;
58 init_mm
.end_data
= (unsigned long)_edata
;
59 init_mm
.brk
= (unsigned long)_end
;
62 * We do it here, so that memory is correctly instantiated
63 * even if "mem=xxx" cmline over-ride is given and/or
64 * DT has memory node. Each causes an update to @arc_mem_sz
65 * and we finally add memory one here
67 memblock_add(CONFIG_LINUX_LINK_BASE
, arc_mem_sz
);
69 /*------------- externs in mm need setting up ---------------*/
71 /* first page of system - kernel .vector starts here */
72 min_low_pfn
= PFN_DOWN(CONFIG_LINUX_LINK_BASE
);
74 /* Last usable page of low mem (no HIGHMEM yet for ARC port) */
75 max_low_pfn
= max_pfn
= PFN_DOWN(end_mem
);
77 max_mapnr
= max_low_pfn
- min_low_pfn
;
79 /*------------- reserve kernel image -----------------------*/
80 memblock_reserve(CONFIG_LINUX_LINK_BASE
,
81 __pa(_end
) - CONFIG_LINUX_LINK_BASE
);
85 /*-------------- node setup --------------------------------*/
86 memset(zones_size
, 0, sizeof(zones_size
));
87 zones_size
[ZONE_NORMAL
] = max_low_pfn
- min_low_pfn
;
90 * We can't use the helper free_area_init(zones[]) because it uses
91 * PAGE_OFFSET to compute the @min_low_pfn which would be wrong
92 * when our kernel doesn't start at PAGE_OFFSET, i.e.
93 * PAGE_OFFSET != CONFIG_LINUX_LINK_BASE
95 free_area_init_node(0, /* node-id */
96 zones_size
, /* num pages per zone */
97 min_low_pfn
, /* first pfn of node */
102 * mem_init - initializes memory
105 * Calculates and displays memory available/used
107 void __init
mem_init(void)
109 high_memory
= (void *)(CONFIG_LINUX_LINK_BASE
+ arc_mem_sz
);
111 mem_init_print_info(NULL
);
115 * free_initmem: Free all the __init memory.
117 void __init_refok
free_initmem(void)
119 free_initmem_default(-1);
122 #ifdef CONFIG_BLK_DEV_INITRD
123 void __init
free_initrd_mem(unsigned long start
, unsigned long end
)
125 free_reserved_area((void *)start
, (void *)end
, -1, "initrd");
129 #ifdef CONFIG_OF_FLATTREE
130 void __init
early_init_dt_setup_initrd_arch(u64 start
, u64 end
)
132 pr_err("%s(%llx, %llx)\n", __func__
, start
, end
);
134 #endif /* CONFIG_OF_FLATTREE */