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/memblock.h>
12 #ifdef CONFIG_BLK_DEV_INITRD
13 #include <linux/initrd.h>
15 #include <linux/of_fdt.h>
16 #include <linux/swap.h>
17 #include <linux/module.h>
18 #include <linux/highmem.h>
20 #include <asm/pgalloc.h>
21 #include <asm/sections.h>
22 #include <asm/arcregs.h>
24 pgd_t swapper_pg_dir
[PTRS_PER_PGD
] __aligned(PAGE_SIZE
);
25 char empty_zero_page
[PAGE_SIZE
] __aligned(PAGE_SIZE
);
26 EXPORT_SYMBOL(empty_zero_page
);
28 static const unsigned long low_mem_start
= CONFIG_LINUX_RAM_BASE
;
29 static unsigned long low_mem_sz
;
32 static unsigned long min_high_pfn
, max_high_pfn
;
33 static u64 high_mem_start
;
34 static u64 high_mem_sz
;
37 #ifdef CONFIG_DISCONTIGMEM
38 struct pglist_data node_data
[MAX_NUMNODES
] __read_mostly
;
39 EXPORT_SYMBOL(node_data
);
42 long __init
arc_get_mem_sz(void)
47 /* User can over-ride above with "mem=nnn[KkMm]" in cmdline */
48 static int __init
setup_mem_sz(char *str
)
50 low_mem_sz
= memparse(str
, NULL
) & PAGE_MASK
;
52 /* early console might not be setup yet - it will show up later */
53 pr_info("\"mem=%s\": mem sz set to %ldM\n", str
, TO_MB(low_mem_sz
));
57 early_param("mem", setup_mem_sz
);
59 void __init
early_init_dt_add_memory_arch(u64 base
, u64 size
)
64 if (base
!= low_mem_start
)
65 panic("CONFIG_LINUX_RAM_BASE != DT memory { }");
71 high_mem_start
= base
;
77 pr_info("Memory @ %llx [%lldM] %s\n",
78 base
, TO_MB(size
), !in_use
? "Not used":"");
82 * First memory setup routine called from setup_arch()
83 * 1. setup swapper's mm @init_mm
84 * 2. Count the pages we have and setup bootmem allocator
87 void __init
setup_arch_memory(void)
89 unsigned long zones_size
[MAX_NR_ZONES
];
90 unsigned long zones_holes
[MAX_NR_ZONES
];
92 init_mm
.start_code
= (unsigned long)_text
;
93 init_mm
.end_code
= (unsigned long)_etext
;
94 init_mm
.end_data
= (unsigned long)_edata
;
95 init_mm
.brk
= (unsigned long)_end
;
97 /* first page of system - kernel .vector starts here */
98 min_low_pfn
= ARCH_PFN_OFFSET
;
100 /* Last usable page of low mem */
101 max_low_pfn
= max_pfn
= PFN_DOWN(low_mem_start
+ low_mem_sz
);
103 #ifdef CONFIG_FLATMEM
104 /* pfn_valid() uses this */
105 max_mapnr
= max_low_pfn
- min_low_pfn
;
108 /*------------- bootmem allocator setup -----------------------*/
111 * seed the bootmem allocator after any DT memory node parsing or
112 * "mem=xxx" cmdline overrides have potentially updated @arc_mem_sz
114 * Only low mem is added, otherwise we have crashes when allocating
115 * mem_map[] itself. NO_BOOTMEM allocates mem_map[] at the end of
116 * avail memory, ending in highmem with a > 32-bit address. However
117 * it then tries to memset it with a truncaed 32-bit handle, causing
121 memblock_add_node(low_mem_start
, low_mem_sz
, 0);
122 memblock_reserve(CONFIG_LINUX_LINK_BASE
,
123 __pa(_end
) - CONFIG_LINUX_LINK_BASE
);
125 #ifdef CONFIG_BLK_DEV_INITRD
126 if (phys_initrd_size
) {
127 memblock_reserve(phys_initrd_start
, phys_initrd_size
);
128 initrd_start
= (unsigned long)__va(phys_initrd_start
);
129 initrd_end
= initrd_start
+ phys_initrd_size
;
133 early_init_fdt_reserve_self();
134 early_init_fdt_scan_reserved_mem();
138 /*----------------- node/zones setup --------------------------*/
139 memset(zones_size
, 0, sizeof(zones_size
));
140 memset(zones_holes
, 0, sizeof(zones_holes
));
142 zones_size
[ZONE_NORMAL
] = max_low_pfn
- min_low_pfn
;
143 zones_holes
[ZONE_NORMAL
] = 0;
146 * We can't use the helper free_area_init(zones[]) because it uses
147 * PAGE_OFFSET to compute the @min_low_pfn which would be wrong
148 * when our kernel doesn't start at PAGE_OFFSET, i.e.
149 * PAGE_OFFSET != CONFIG_LINUX_RAM_BASE
151 free_area_init_node(0, /* node-id */
152 zones_size
, /* num pages per zone */
153 min_low_pfn
, /* first pfn of node */
154 zones_holes
); /* holes */
156 #ifdef CONFIG_HIGHMEM
158 * Populate a new node with highmem
160 * On ARC (w/o PAE) HIGHMEM addresses are actually smaller (0 based)
161 * than addresses in normal ala low memory (0x8000_0000 based).
162 * Even with PAE, the huge peripheral space hole would waste a lot of
163 * mem with single mem_map[]. This warrants a mem_map per region design.
164 * Thus HIGHMEM on ARC is imlemented with DISCONTIGMEM.
166 * DISCONTIGMEM in turns requires multiple nodes. node 0 above is
167 * populated with normal memory zone while node 1 only has highmem
171 min_high_pfn
= PFN_DOWN(high_mem_start
);
172 max_high_pfn
= PFN_DOWN(high_mem_start
+ high_mem_sz
);
174 zones_size
[ZONE_NORMAL
] = 0;
175 zones_holes
[ZONE_NORMAL
] = 0;
177 zones_size
[ZONE_HIGHMEM
] = max_high_pfn
- min_high_pfn
;
178 zones_holes
[ZONE_HIGHMEM
] = 0;
180 free_area_init_node(1, /* node-id */
181 zones_size
, /* num pages per zone */
182 min_high_pfn
, /* first pfn of node */
183 zones_holes
); /* holes */
185 high_memory
= (void *)(min_high_pfn
<< PAGE_SHIFT
);
191 * mem_init - initializes memory
194 * Calculates and displays memory available/used
196 void __init
mem_init(void)
198 #ifdef CONFIG_HIGHMEM
201 reset_all_zones_managed_pages();
202 for (tmp
= min_high_pfn
; tmp
< max_high_pfn
; tmp
++)
203 free_highmem_page(pfn_to_page(tmp
));
207 mem_init_print_info(NULL
);