blob: 3a5140943f541b7466e2121563980efe4f60523c [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) 1995 Linus Torvalds
7 * Copyright (C) 1995 Waldorf Electronics
8 * Copyright (C) 1994, 95, 96, 97, 98, 99, 2000, 01, 02, 03 Ralf Baechle
9 * Copyright (C) 1996 Stoned Elipot
10 * Copyright (C) 1999 Silicon Graphics, Inc.
Ralf Baechle70342282013-01-22 12:59:30 +010011 * Copyright (C) 2000, 2001, 2002, 2007 Maciej W. Rozycki
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/init.h>
14#include <linux/ioport.h>
Paul Gortmaker73bc2562011-07-23 16:30:40 -040015#include <linux/export.h>
Jon Smirl894673e2006-07-10 04:44:13 -070016#include <linux/screen_info.h>
Tejun Heo9d15ffc2011-12-08 10:22:09 -080017#include <linux/memblock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/initrd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/root_dev.h>
20#include <linux/highmem.h>
21#include <linux/console.h>
Dave Hansen22a98352006-03-27 01:16:04 -080022#include <linux/pfn.h>
Atsushi Nemoto6312e0e2007-06-30 00:55:48 +090023#include <linux/debugfs.h>
Ralf Baechle7aa1c8f2012-10-11 18:14:58 +020024#include <linux/kexec.h>
John Crispin4d9f77d2013-04-13 13:15:47 +020025#include <linux/sizes.h>
Zubair Lutfullah Kakakhelf4649382014-07-16 16:51:32 +010026#include <linux/device.h>
27#include <linux/dma-contiguous.h>
Aurelien Jarno8f4703a2016-05-11 00:50:03 +020028#include <linux/decompress/generic.h>
Marcin Nowakowski73346082016-11-23 14:43:46 +010029#include <linux/of_fdt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#include <asm/addrspace.h>
32#include <asm/bootinfo.h>
Maciej W. Rozycki20d60d92007-10-23 12:43:11 +010033#include <asm/bugs.h>
Ralf Baechleec74e362005-07-13 11:48:45 +000034#include <asm/cache.h>
James Hogane9349452015-01-29 11:14:13 +000035#include <asm/cdmm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/cpu.h>
Paul Burton75dcfc12015-09-22 10:10:55 -070037#include <asm/debug.h>
Christoph Hellwigaa4db772018-06-15 13:08:45 +020038#include <asm/dma-coherence.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/sections.h>
40#include <asm/setup.h>
Ralf Baechle87353d82007-11-19 12:23:51 +000041#include <asm/smp-ops.h>
Dezhong Diaof2ffa5a2010-10-13 00:52:46 -060042#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Aaro Koskinen87db5372015-09-11 17:46:14 +030044#ifdef CONFIG_MIPS_ELF_APPENDED_DTB
45const char __section(.appended_dtb) __appended_dtb[0x100000];
46#endif /* CONFIG_MIPS_ELF_APPENDED_DTB */
47
Ralf Baechleec74e362005-07-13 11:48:45 +000048struct cpuinfo_mips cpu_data[NR_CPUS] __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50EXPORT_SYMBOL(cpu_data);
51
52#ifdef CONFIG_VT
53struct screen_info screen_info;
54#endif
55
56/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 * Setup information
58 *
59 * These are initialized so they are in the .data section
60 */
Ralf Baechleec74e362005-07-13 11:48:45 +000061unsigned long mips_machtype __read_mostly = MACH_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63EXPORT_SYMBOL(mips_machtype);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65struct boot_mem_map boot_mem_map;
66
Dmitri Vorobiev6acc7d42009-11-21 22:34:41 +020067static char __initdata command_line[COMMAND_LINE_SIZE];
68char __initdata arcs_cmdline[COMMAND_LINE_SIZE];
69
70#ifdef CONFIG_CMDLINE_BOOL
71static char __initdata builtin_cmdline[COMMAND_LINE_SIZE] = CONFIG_CMDLINE;
72#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74/*
75 * mips_io_port_base is the begin of the address space to which x86 style
76 * I/O ports are mapped.
77 */
David Daney1befdd52010-10-14 12:36:49 -070078const unsigned long mips_io_port_base = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079EXPORT_SYMBOL(mips_io_port_base);
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static struct resource code_resource = { .name = "Kernel code", };
82static struct resource data_resource = { .name = "Kernel data", };
David Daneye0c5f362017-10-12 12:50:34 -070083static struct resource bss_resource = { .name = "Kernel bss", };
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
John Crispin4d9f77d2013-04-13 13:15:47 +020085static void *detect_magic __initdata = detect_memory_region;
86
Paul Burton6c359eb2018-07-27 18:23:20 -070087#ifdef CONFIG_MIPS_AUTO_PFN_OFFSET
88unsigned long ARCH_PFN_OFFSET;
89EXPORT_SYMBOL(ARCH_PFN_OFFSET);
90#endif
91
Ralf Baechle15d45cc2014-11-22 00:22:09 +010092void __init add_memory_region(phys_addr_t start, phys_addr_t size, long type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
94 int x = boot_mem_map.nr_map;
Ralf Baechle0ec7ec72012-11-15 12:53:59 +010095 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
James Hogan58cae9b2016-08-09 13:21:48 +010097 /*
98 * If the region reaches the top of the physical address space, adjust
99 * the size slightly so that (start + size) doesn't overflow
100 */
Stefan Agnerd7dc8992018-06-14 15:28:02 -0700101 if (start + size - 1 == PHYS_ADDR_MAX)
James Hogan58cae9b2016-08-09 13:21:48 +0100102 --size;
103
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200104 /* Sanity check */
105 if (start + size < start) {
Joe Perches7178d2c2014-10-04 09:50:42 -0700106 pr_warn("Trying to add an invalid memory region, skipped\n");
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200107 return;
108 }
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 /*
Ralf Baechle0ec7ec72012-11-15 12:53:59 +0100111 * Try to merge with existing entry, if any.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 */
Ralf Baechle0ec7ec72012-11-15 12:53:59 +0100113 for (i = 0; i < boot_mem_map.nr_map; i++) {
114 struct boot_mem_map_entry *entry = boot_mem_map.map + i;
115 unsigned long top;
116
117 if (entry->type != type)
118 continue;
119
120 if (start + size < entry->addr)
121 continue; /* no overlap */
122
123 if (entry->addr + entry->size < start)
124 continue; /* no overlap */
125
126 top = max(entry->addr + entry->size, start + size);
127 entry->addr = min(entry->addr, start);
128 entry->size = top - entry->addr;
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 return;
131 }
132
Ralf Baechle0ec7ec72012-11-15 12:53:59 +0100133 if (boot_mem_map.nr_map == BOOT_MEM_MAP_MAX) {
Mike Crowea64ae7a2008-07-28 13:12:52 +0100134 pr_err("Ooops! Too many entries in the memory map!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 return;
136 }
137
138 boot_mem_map.map[x].addr = start;
139 boot_mem_map.map[x].size = size;
140 boot_mem_map.map[x].type = type;
141 boot_mem_map.nr_map++;
142}
143
Ralf Baechle15d45cc2014-11-22 00:22:09 +0100144void __init detect_memory_region(phys_addr_t start, phys_addr_t sz_min, phys_addr_t sz_max)
John Crispin4d9f77d2013-04-13 13:15:47 +0200145{
146 void *dm = &detect_magic;
Ralf Baechle15d45cc2014-11-22 00:22:09 +0100147 phys_addr_t size;
John Crispin4d9f77d2013-04-13 13:15:47 +0200148
149 for (size = sz_min; size < sz_max; size <<= 1) {
150 if (!memcmp(dm, dm + size, sizeof(detect_magic)))
151 break;
152 }
153
154 pr_debug("Memory: %lluMB of RAM detected at 0x%llx (min: %lluMB, max: %lluMB)\n",
155 ((unsigned long long) size) / SZ_1M,
156 (unsigned long long) start,
157 ((unsigned long long) sz_min) / SZ_1M,
158 ((unsigned long long) sz_max) / SZ_1M);
159
160 add_memory_region(start, size, BOOT_MEM_RAM);
161}
162
Mathieu Malaterre427aeea2018-01-02 19:52:21 +0100163static bool __init __maybe_unused memory_region_available(phys_addr_t start,
164 phys_addr_t size)
Marcin Nowakowskid9b5b652016-11-23 14:43:45 +0100165{
166 int i;
167 bool in_ram = false, free = true;
168
169 for (i = 0; i < boot_mem_map.nr_map; i++) {
170 phys_addr_t start_, end_;
171
172 start_ = boot_mem_map.map[i].addr;
173 end_ = boot_mem_map.map[i].addr + boot_mem_map.map[i].size;
174
175 switch (boot_mem_map.map[i].type) {
176 case BOOT_MEM_RAM:
177 if (start >= start_ && start + size <= end_)
178 in_ram = true;
179 break;
180 case BOOT_MEM_RESERVED:
181 if ((start >= start_ && start < end_) ||
182 (start < start_ && start + size >= start_))
183 free = false;
184 break;
185 default:
186 continue;
187 }
188 }
189
190 return in_ram && free;
191}
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193static void __init print_memory_map(void)
194{
195 int i;
196 const int field = 2 * sizeof(unsigned long);
197
198 for (i = 0; i < boot_mem_map.nr_map; i++) {
Mike Crowea64ae7a2008-07-28 13:12:52 +0100199 printk(KERN_INFO " memory: %0*Lx @ %0*Lx ",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 field, (unsigned long long) boot_mem_map.map[i].size,
201 field, (unsigned long long) boot_mem_map.map[i].addr);
202
203 switch (boot_mem_map.map[i].type) {
204 case BOOT_MEM_RAM:
Mike Crowea64ae7a2008-07-28 13:12:52 +0100205 printk(KERN_CONT "(usable)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 break;
David Daney43064c02011-11-22 14:38:03 +0000207 case BOOT_MEM_INIT_RAM:
208 printk(KERN_CONT "(usable after init)\n");
209 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 case BOOT_MEM_ROM_DATA:
Mike Crowea64ae7a2008-07-28 13:12:52 +0100211 printk(KERN_CONT "(ROM data)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 break;
213 case BOOT_MEM_RESERVED:
Mike Crowea64ae7a2008-07-28 13:12:52 +0100214 printk(KERN_CONT "(reserved)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 break;
216 default:
Mike Crowea64ae7a2008-07-28 13:12:52 +0100217 printk(KERN_CONT "type %lu\n", boot_mem_map.map[i].type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 break;
219 }
220 }
221}
222
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200223/*
224 * Manage initrd
225 */
226#ifdef CONFIG_BLK_DEV_INITRD
227
Franck Bui-Huua09fc442006-08-11 17:51:53 +0200228static int __init rd_start_early(char *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Franck Bui-Huua09fc442006-08-11 17:51:53 +0200230 unsigned long start = memparse(p, &p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Ralf Baechle875d43e2005-09-03 15:56:16 -0700232#ifdef CONFIG_64BIT
Franck Bui-Huua7837b72006-10-19 13:20:04 +0200233 /* Guess if the sign extension was forgotten by bootloader */
234 if (start < XKPHYS)
235 start = (int)start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236#endif
Franck Bui-Huua09fc442006-08-11 17:51:53 +0200237 initrd_start = start;
238 initrd_end += start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return 0;
240}
Franck Bui-Huua09fc442006-08-11 17:51:53 +0200241early_param("rd_start", rd_start_early);
242
243static int __init rd_size_early(char *p)
244{
245 initrd_end += memparse(p, &p);
Franck Bui-Huua09fc442006-08-11 17:51:53 +0200246 return 0;
247}
248early_param("rd_size", rd_size_early);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Franck Bui-Huua7837b72006-10-19 13:20:04 +0200250/* it returns the next free pfn after initrd */
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200251static unsigned long __init init_initrd(void)
252{
Franck Bui-Huua7837b72006-10-19 13:20:04 +0200253 unsigned long end;
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200254
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200255 /*
Franck Bui-Huua09fc442006-08-11 17:51:53 +0200256 * Board specific code or command line parser should have
257 * already set up initrd_start and initrd_end. In these cases
258 * perfom sanity checks and use them if all looks good.
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200259 */
Ralf Baechle32028f12009-12-17 01:57:07 +0000260 if (!initrd_start || initrd_end <= initrd_start)
Franck Bui-Huua7837b72006-10-19 13:20:04 +0200261 goto disable;
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200262
Franck Bui-Huua7837b72006-10-19 13:20:04 +0200263 if (initrd_start & ~PAGE_MASK) {
Mike Crowea64ae7a2008-07-28 13:12:52 +0100264 pr_err("initrd start must be page aligned\n");
Franck Bui-Huua7837b72006-10-19 13:20:04 +0200265 goto disable;
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200266 }
Franck Bui-Huua7837b72006-10-19 13:20:04 +0200267 if (initrd_start < PAGE_OFFSET) {
Mike Crowea64ae7a2008-07-28 13:12:52 +0100268 pr_err("initrd start < PAGE_OFFSET\n");
Franck Bui-Huua7837b72006-10-19 13:20:04 +0200269 goto disable;
270 }
271
272 /*
273 * Sanitize initrd addresses. For example firmware
274 * can't guess if they need to pass them through
275 * 64-bits values if the kernel has been built in pure
276 * 32-bit. We need also to switch from KSEG0 to XKPHYS
277 * addresses now, so the code can now safely use __pa().
278 */
279 end = __pa(initrd_end);
280 initrd_end = (unsigned long)__va(end);
281 initrd_start = (unsigned long)__va(__pa(initrd_start));
282
283 ROOT_DEV = Root_RAM0;
284 return PFN_UP(end);
285disable:
286 initrd_start = 0;
287 initrd_end = 0;
288 return 0;
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200289}
290
Aurelien Jarno8f4703a2016-05-11 00:50:03 +0200291/* In some conditions (e.g. big endian bootloader with a little endian
292 kernel), the initrd might appear byte swapped. Try to detect this and
293 byte swap it if needed. */
294static void __init maybe_bswap_initrd(void)
295{
296#if defined(CONFIG_CPU_CAVIUM_OCTEON)
297 u64 buf;
298
299 /* Check for CPIO signature */
300 if (!memcmp((void *)initrd_start, "070701", 6))
301 return;
302
303 /* Check for compressed initrd */
304 if (decompress_method((unsigned char *)initrd_start, 8, NULL))
305 return;
306
307 /* Try again with a byte swapped header */
308 buf = swab64p((u64 *)initrd_start);
309 if (!memcmp(&buf, "070701", 6) ||
310 decompress_method((unsigned char *)(&buf), 8, NULL)) {
311 unsigned long i;
312
313 pr_info("Byteswapped initrd detected\n");
314 for (i = initrd_start; i < ALIGN(initrd_end, 8); i += 8)
315 swab64s((u64 *)i);
316 }
317#endif
318}
319
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200320static void __init finalize_initrd(void)
321{
322 unsigned long size = initrd_end - initrd_start;
323
324 if (size == 0) {
325 printk(KERN_INFO "Initrd not found or empty");
326 goto disable;
327 }
Franck Bui-Huud4df6d42006-10-19 13:20:01 +0200328 if (__pa(initrd_end) > PFN_PHYS(max_low_pfn)) {
Mike Crowea64ae7a2008-07-28 13:12:52 +0100329 printk(KERN_ERR "Initrd extends beyond end of memory");
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200330 goto disable;
331 }
332
Aurelien Jarno8f4703a2016-05-11 00:50:03 +0200333 maybe_bswap_initrd();
334
Mike Rapoportbcec54b2018-09-10 12:23:18 +0300335 memblock_reserve(__pa(initrd_start), size);
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200336 initrd_below_start_ok = 1;
337
Mike Crowea64ae7a2008-07-28 13:12:52 +0100338 pr_info("Initial ramdisk at: 0x%lx (%lu bytes)\n",
339 initrd_start, size);
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200340 return;
341disable:
Mike Crowea64ae7a2008-07-28 13:12:52 +0100342 printk(KERN_CONT " - disabling initrd\n");
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200343 initrd_start = 0;
344 initrd_end = 0;
345}
346
347#else /* !CONFIG_BLK_DEV_INITRD */
348
Ralf Baechle9ba126c2006-10-13 11:22:52 +0100349static unsigned long __init init_initrd(void)
350{
351 return 0;
352}
353
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200354#define finalize_initrd() do {} while (0)
355
356#endif
357
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200358/*
359 * Initialize the bootmem allocator. It also setup initrd related data
360 * if needed.
361 */
Huacai Chenc4617312014-06-26 11:41:28 +0800362#if defined(CONFIG_SGI_IP27) || (defined(CONFIG_CPU_LOONGSON3) && defined(CONFIG_NUMA))
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200363
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200364static void __init bootmem_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200366 init_initrd();
367 finalize_initrd();
368}
369
370#else /* !CONFIG_SGI_IP27 */
371
372static void __init bootmem_init(void)
373{
Stefan Agnerd7dc8992018-06-14 15:28:02 -0700374 phys_addr_t ramstart = PHYS_ADDR_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200377 /*
Greg Ungererf9a7feb2010-09-08 15:50:43 +1000378 * Sanity check any INITRD first. We don't take it into account
379 * for bootmem setup initially, rely on the end-of-kernel-code
380 * as our memory range starting point. Once bootmem is inited we
381 * will reserve the area used for the initrd.
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200382 */
Greg Ungererf9a7feb2010-09-08 15:50:43 +1000383 init_initrd();
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200384
Serge Seminb93ddc42019-04-24 01:47:40 +0300385 /* Reserve memory occupied by kernel. */
386 memblock_reserve(__pa_symbol(&_text),
387 __pa_symbol(&_end) - __pa_symbol(&_text));
Mike Rapoportbcec54b2018-09-10 12:23:18 +0300388
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200389 /*
Franck Bui-Huudb84dc62007-01-10 09:44:04 +0100390 * max_low_pfn is not a number of pages. The number of pages
391 * of the system is given by 'max_low_pfn - min_low_pfn'.
392 */
393 min_low_pfn = ~0UL;
394 max_low_pfn = 0;
395
Serge Semin6ea3ba62019-04-24 01:47:38 +0300396 /* Find the highest and lowest page frame numbers we have available. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 for (i = 0; i < boot_mem_map.nr_map; i++) {
398 unsigned long start, end;
399
400 if (boot_mem_map.map[i].type != BOOT_MEM_RAM)
401 continue;
402
403 start = PFN_UP(boot_mem_map.map[i].addr);
404 end = PFN_DOWN(boot_mem_map.map[i].addr
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200405 + boot_mem_map.map[i].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Marcin Nowakowski67a3ba22018-02-01 12:37:21 +0100407 ramstart = min(ramstart, boot_mem_map.map[i].addr);
408
James Hogan16a767e2016-11-01 13:59:09 +0000409#ifndef CONFIG_HIGHMEM
410 /*
411 * Skip highmem here so we get an accurate max_low_pfn if low
412 * memory stops short of high memory.
413 * If the region overlaps HIGHMEM_START, end is clipped so
414 * max_pfn excludes the highmem portion.
415 */
416 if (start >= PFN_DOWN(HIGHMEM_START))
417 continue;
418 if (end > PFN_DOWN(HIGHMEM_START))
419 end = PFN_DOWN(HIGHMEM_START);
420#endif
421
Franck Bui-Huudb84dc62007-01-10 09:44:04 +0100422 if (end > max_low_pfn)
423 max_low_pfn = end;
424 if (start < min_low_pfn)
425 min_low_pfn = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
427
Paul Burton6c359eb2018-07-27 18:23:20 -0700428 if (min_low_pfn >= max_low_pfn)
429 panic("Incorrect memory mapping !!!");
430
431#ifdef CONFIG_MIPS_AUTO_PFN_OFFSET
432 ARCH_PFN_OFFSET = PFN_UP(ramstart);
433#else
Marcin Nowakowski67a3ba22018-02-01 12:37:21 +0100434 /*
435 * Reserve any memory between the start of RAM and PHYS_OFFSET
436 */
Mike Rapoportbcec54b2018-09-10 12:23:18 +0300437 if (ramstart > PHYS_OFFSET) {
Marcin Nowakowski67a3ba22018-02-01 12:37:21 +0100438 add_memory_region(PHYS_OFFSET, ramstart - PHYS_OFFSET,
439 BOOT_MEM_RESERVED);
Mike Rapoportbcec54b2018-09-10 12:23:18 +0300440 memblock_reserve(PHYS_OFFSET, ramstart - PHYS_OFFSET);
441 }
Marcin Nowakowski67a3ba22018-02-01 12:37:21 +0100442
Franck Bui-Huu6f284a22007-01-10 09:44:05 +0100443 if (min_low_pfn > ARCH_PFN_OFFSET) {
Mike Crowea64ae7a2008-07-28 13:12:52 +0100444 pr_info("Wasting %lu bytes for tracking %lu unused pages\n",
445 (min_low_pfn - ARCH_PFN_OFFSET) * sizeof(struct page),
446 min_low_pfn - ARCH_PFN_OFFSET);
Mathieu Malaterreab3d8442018-01-02 19:53:15 +0100447 } else if (ARCH_PFN_OFFSET - min_low_pfn > 0UL) {
Mike Crowea64ae7a2008-07-28 13:12:52 +0100448 pr_info("%lu free pages won't be used\n",
449 ARCH_PFN_OFFSET - min_low_pfn);
Franck Bui-Huudb84dc62007-01-10 09:44:04 +0100450 }
Franck Bui-Huu6f284a22007-01-10 09:44:05 +0100451 min_low_pfn = ARCH_PFN_OFFSET;
Paul Burton6c359eb2018-07-27 18:23:20 -0700452#endif
Franck Bui-Huudb84dc62007-01-10 09:44:04 +0100453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 /*
455 * Determine low and high memory ranges
456 */
Ralf Baechledc3bf352008-04-18 10:56:07 +0100457 max_pfn = max_low_pfn;
Franck Bui-Huudb84dc62007-01-10 09:44:04 +0100458 if (max_low_pfn > PFN_DOWN(HIGHMEM_START)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459#ifdef CONFIG_HIGHMEM
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200460 highstart_pfn = PFN_DOWN(HIGHMEM_START);
Franck Bui-Huudb84dc62007-01-10 09:44:04 +0100461 highend_pfn = max_low_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462#endif
Franck Bui-Huudb84dc62007-01-10 09:44:04 +0100463 max_low_pfn = PFN_DOWN(HIGHMEM_START);
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Serge Semin6ea3ba62019-04-24 01:47:38 +0300466 /* Install all valid RAM ranges to the memblock memory region */
Ralf Baechlecce335a2007-11-03 02:05:43 +0000467 for (i = 0; i < boot_mem_map.nr_map; i++) {
468 unsigned long start, end;
469
470 start = PFN_UP(boot_mem_map.map[i].addr);
471 end = PFN_DOWN(boot_mem_map.map[i].addr
472 + boot_mem_map.map[i].size);
473
Serge Semin6ea3ba62019-04-24 01:47:38 +0300474 if (start < min_low_pfn)
Atsushi Nemotoe452e942008-01-08 00:41:13 +0900475 start = min_low_pfn;
Ralf Baechlecce335a2007-11-03 02:05:43 +0000476#ifndef CONFIG_HIGHMEM
Serge Semin6ea3ba62019-04-24 01:47:38 +0300477 /* Ignore highmem regions if highmem is unsupported */
Ralf Baechlecce335a2007-11-03 02:05:43 +0000478 if (end > max_low_pfn)
479 end = max_low_pfn;
Serge Semin6ea3ba62019-04-24 01:47:38 +0300480#endif
Ralf Baechlecce335a2007-11-03 02:05:43 +0000481 if (end <= start)
482 continue;
Ralf Baechlecce335a2007-11-03 02:05:43 +0000483
Tejun Heo9d15ffc2011-12-08 10:22:09 -0800484 memblock_add_node(PFN_PHYS(start), PFN_PHYS(end - start), 0);
Ralf Baechlecce335a2007-11-03 02:05:43 +0000485
Serge Semincf0c4872019-04-24 01:47:39 +0300486 /* Reserve any memory except the ordinary RAM ranges. */
David Daney43064c02011-11-22 14:38:03 +0000487 switch (boot_mem_map.map[i].type) {
488 case BOOT_MEM_RAM:
489 break;
Serge Semincf0c4872019-04-24 01:47:39 +0300490 default: /* Reserve the rest of the memory types at boot time */
491 memblock_reserve(PFN_PHYS(start), PFN_PHYS(end - start));
492 break;
David Daney43064c02011-11-22 14:38:03 +0000493 }
494
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200495 /*
Serge Semincf0c4872019-04-24 01:47:39 +0300496 * In any case the added to the memblock memory regions
497 * (highmem/lowmem, available/reserved, etc) are considered
498 * as present, so inform sparsemem about them.
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200499 */
Franck Bui-Huub6f1f0d2006-08-11 17:51:48 +0200500 memory_present(0, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 }
502
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200503 /*
504 * Reserve initrd memory if needed.
505 */
506 finalize_initrd();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
Franck Bui-Huud2043ca2006-08-11 17:51:49 +0200509#endif /* CONFIG_SGI_IP27 */
510
Ralf Baechle982f6ff2009-09-17 02:25:07 +0200511static int usermem __initdata;
Franck Bui-Huua09fc442006-08-11 17:51:53 +0200512
513static int __init early_parse_mem(char *p)
514{
Jaedon Shinad8f7232014-12-12 19:51:15 +0100515 phys_addr_t start, size;
Franck Bui-Huua09fc442006-08-11 17:51:53 +0200516
517 /*
518 * If a user specifies memory size, we
519 * blow away any automatically generated
520 * size.
521 */
522 if (usermem == 0) {
523 boot_mem_map.nr_map = 0;
524 usermem = 1;
Ralf Baechle70342282013-01-22 12:59:30 +0100525 }
Franck Bui-Huua09fc442006-08-11 17:51:53 +0200526 start = 0;
527 size = memparse(p, &p);
528 if (*p == '@')
529 start = memparse(p + 1, &p);
530
531 add_memory_region(start, size, BOOT_MEM_RAM);
Marcin Nowakowski73fbc1e2016-11-23 14:43:49 +0100532
Franck Bui-Huua09fc442006-08-11 17:51:53 +0200533 return 0;
534}
535early_param("mem", early_parse_mem);
Ralf Baechle2925aba2006-06-18 01:32:22 +0100536
Miodrag Dinic296a7622017-06-19 17:50:08 +0200537static int __init early_parse_memmap(char *p)
538{
539 char *oldp;
540 u64 start_at, mem_size;
541
542 if (!p)
543 return -EINVAL;
544
545 if (!strncmp(p, "exactmap", 8)) {
546 pr_err("\"memmap=exactmap\" invalid on MIPS\n");
547 return 0;
548 }
549
550 oldp = p;
551 mem_size = memparse(p, &p);
552 if (p == oldp)
553 return -EINVAL;
554
555 if (*p == '@') {
556 start_at = memparse(p+1, &p);
557 add_memory_region(start_at, mem_size, BOOT_MEM_RAM);
558 } else if (*p == '#') {
559 pr_err("\"memmap=nn#ss\" (force ACPI data) invalid on MIPS\n");
560 return -EINVAL;
561 } else if (*p == '$') {
562 start_at = memparse(p+1, &p);
563 add_memory_region(start_at, mem_size, BOOT_MEM_RESERVED);
564 } else {
565 pr_err("\"memmap\" invalid format!\n");
566 return -EINVAL;
567 }
568
569 if (*p == '\0') {
570 usermem = 1;
571 return 0;
572 } else
573 return -EINVAL;
574}
575early_param("memmap", early_parse_memmap);
576
Corey Minyard4893fc82013-02-12 19:41:48 +0000577#ifdef CONFIG_PROC_VMCORE
578unsigned long setup_elfcorehdr, setup_elfcorehdr_size;
579static int __init early_parse_elfcorehdr(char *p)
580{
581 int i;
582
583 setup_elfcorehdr = memparse(p, &p);
584
585 for (i = 0; i < boot_mem_map.nr_map; i++) {
586 unsigned long start = boot_mem_map.map[i].addr;
587 unsigned long end = (boot_mem_map.map[i].addr +
588 boot_mem_map.map[i].size);
589 if (setup_elfcorehdr >= start && setup_elfcorehdr < end) {
590 /*
591 * Reserve from the elf core header to the end of
592 * the memory segment, that should all be kdump
593 * reserved memory.
594 */
595 setup_elfcorehdr_size = end - setup_elfcorehdr;
596 break;
597 }
598 }
599 /*
600 * If we don't find it in the memory map, then we shouldn't
601 * have to worry about it, as the new kernel won't use it.
602 */
603 return 0;
604}
605early_param("elfcorehdr", early_parse_elfcorehdr);
606#endif
607
Ralf Baechle15d45cc2014-11-22 00:22:09 +0100608static void __init arch_mem_addpart(phys_addr_t mem, phys_addr_t end, int type)
Corey Minyardd3ff9332013-02-12 19:41:47 +0000609{
Ralf Baechle15d45cc2014-11-22 00:22:09 +0100610 phys_addr_t size;
Corey Minyardd3ff9332013-02-12 19:41:47 +0000611 int i;
612
613 size = end - mem;
614 if (!size)
615 return;
616
617 /* Make sure it is in the boot_mem_map */
618 for (i = 0; i < boot_mem_map.nr_map; i++) {
619 if (mem >= boot_mem_map.map[i].addr &&
620 mem < (boot_mem_map.map[i].addr +
621 boot_mem_map.map[i].size))
622 return;
623 }
624 add_memory_region(mem, size, type);
625}
626
Prem Mallappac2882b72013-09-04 23:26:24 +0530627#ifdef CONFIG_KEXEC
628static inline unsigned long long get_total_mem(void)
629{
630 unsigned long long total;
631
632 total = max_pfn - min_low_pfn;
633 return total << PAGE_SHIFT;
634}
635
636static void __init mips_parse_crashkernel(void)
637{
638 unsigned long long total_mem;
639 unsigned long long crash_size, crash_base;
640 int ret;
641
642 total_mem = get_total_mem();
643 ret = parse_crashkernel(boot_command_line, total_mem,
644 &crash_size, &crash_base);
645 if (ret != 0 || crash_size <= 0)
646 return;
647
Marcin Nowakowskia8f108d2016-11-23 14:43:50 +0100648 if (!memory_region_available(crash_base, crash_size)) {
649 pr_warn("Invalid memory region reserved for crash kernel\n");
650 return;
651 }
652
Prem Mallappac2882b72013-09-04 23:26:24 +0530653 crashk_res.start = crash_base;
654 crashk_res.end = crash_base + crash_size - 1;
655}
656
657static void __init request_crashkernel(struct resource *res)
658{
659 int ret;
660
Marcin Nowakowski269aa432016-11-23 14:43:43 +0100661 if (crashk_res.start == crashk_res.end)
662 return;
663
Prem Mallappac2882b72013-09-04 23:26:24 +0530664 ret = request_resource(res, &crashk_res);
665 if (!ret)
666 pr_info("Reserving %ldMB of memory at %ldMB for crashkernel\n",
667 (unsigned long)((crashk_res.end -
668 crashk_res.start + 1) >> 20),
669 (unsigned long)(crashk_res.start >> 20));
670}
671#else /* !defined(CONFIG_KEXEC) */
672static void __init mips_parse_crashkernel(void)
673{
674}
675
676static void __init request_crashkernel(struct resource *res)
677{
678}
679#endif /* !defined(CONFIG_KEXEC) */
680
Jonas Gorski20249722015-10-12 13:13:02 +0200681#define USE_PROM_CMDLINE IS_ENABLED(CONFIG_MIPS_CMDLINE_FROM_BOOTLOADER)
682#define USE_DTB_CMDLINE IS_ENABLED(CONFIG_MIPS_CMDLINE_FROM_DTB)
Jaedon Shin2549cc92015-12-21 12:47:35 +0900683#define EXTEND_WITH_PROM IS_ENABLED(CONFIG_MIPS_CMDLINE_DTB_EXTEND)
Rabin Vincented47e152016-04-28 11:03:09 +0200684#define BUILTIN_EXTEND_WITH_PROM \
685 IS_ENABLED(CONFIG_MIPS_CMDLINE_BUILTIN_EXTEND)
Jonas Gorski20249722015-10-12 13:13:02 +0200686
Paul Burton52c985a2018-08-31 15:28:57 -0700687/*
688 * arch_mem_init - initialize memory management subsystem
689 *
690 * o plat_mem_setup() detects the memory configuration and will record detected
691 * memory areas using add_memory_region.
692 *
693 * At this stage the memory configuration of the system is known to the
694 * kernel but generic memory management system is still entirely uninitialized.
695 *
696 * o bootmem_init()
697 * o sparse_init()
698 * o paging_init()
699 * o dma_contiguous_reserve()
700 *
701 * At this stage the bootmem allocator is ready to use.
702 *
703 * NOTE: historically plat_mem_setup did the entire platform initialization.
704 * This was rather impractical because it meant plat_mem_setup had to
705 * get away without any kind of memory allocator. To keep old code from
706 * breaking plat_setup was just renamed to plat_mem_setup and a second platform
707 * initialization hook for anything else was introduced.
708 */
Ralf Baechle2925aba2006-06-18 01:32:22 +0100709static void __init arch_mem_init(char **cmdline_p)
710{
Franck Bui-Huua09fc442006-08-11 17:51:53 +0200711 extern void plat_mem_setup(void);
712
Paul Burton951d2232018-09-27 22:59:18 +0000713 /*
714 * Initialize boot_command_line to an innocuous but non-empty string in
715 * order to prevent early_init_dt_scan_chosen() from copying
716 * CONFIG_CMDLINE into it without our knowledge. We handle
717 * CONFIG_CMDLINE ourselves below & don't want to duplicate its
718 * content because repeating arguments can be problematic.
719 */
720 strlcpy(boot_command_line, " ", COMMAND_LINE_SIZE);
721
722 /* call board setup routine */
723 plat_mem_setup();
Huacai Chen25517ed2018-11-10 11:50:14 +0800724 memblock_set_bottom_up(true);
Paul Burton951d2232018-09-27 22:59:18 +0000725
726 /*
727 * Make sure all kernel memory is in the maps. The "UP" and
728 * "DOWN" are opposite for initdata since if it crosses over
729 * into another memory section you don't want that to be
730 * freed when the initdata is freed.
731 */
732 arch_mem_addpart(PFN_DOWN(__pa_symbol(&_text)) << PAGE_SHIFT,
733 PFN_UP(__pa_symbol(&_edata)) << PAGE_SHIFT,
734 BOOT_MEM_RAM);
735 arch_mem_addpart(PFN_UP(__pa_symbol(&__init_begin)) << PAGE_SHIFT,
736 PFN_DOWN(__pa_symbol(&__init_end)) << PAGE_SHIFT,
737 BOOT_MEM_INIT_RAM);
Serge Semina703db32019-04-24 01:47:37 +0300738 arch_mem_addpart(PFN_DOWN(__pa_symbol(&__bss_start)) << PAGE_SHIFT,
739 PFN_UP(__pa_symbol(&__bss_stop)) << PAGE_SHIFT,
740 BOOT_MEM_RAM);
Paul Burton951d2232018-09-27 22:59:18 +0000741
742 pr_info("Determined physical RAM map:\n");
743 print_memory_map();
744
Jonas Gorski20249722015-10-12 13:13:02 +0200745#if defined(CONFIG_CMDLINE_BOOL) && defined(CONFIG_CMDLINE_OVERRIDE)
Dmitri Vorobiev6acc7d42009-11-21 22:34:41 +0200746 strlcpy(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE);
747#else
Jonas Gorski20249722015-10-12 13:13:02 +0200748 if ((USE_PROM_CMDLINE && arcs_cmdline[0]) ||
749 (USE_DTB_CMDLINE && !boot_command_line[0]))
750 strlcpy(boot_command_line, arcs_cmdline, COMMAND_LINE_SIZE);
751
752 if (EXTEND_WITH_PROM && arcs_cmdline[0]) {
Rabin Vincente54ad8c2016-04-28 11:03:08 +0200753 if (boot_command_line[0])
754 strlcat(boot_command_line, " ", COMMAND_LINE_SIZE);
Jonas Gorski20249722015-10-12 13:13:02 +0200755 strlcat(boot_command_line, arcs_cmdline, COMMAND_LINE_SIZE);
Dmitri Vorobiev6acc7d42009-11-21 22:34:41 +0200756 }
Jonas Gorski20249722015-10-12 13:13:02 +0200757
758#if defined(CONFIG_CMDLINE_BOOL)
759 if (builtin_cmdline[0]) {
Rabin Vincente54ad8c2016-04-28 11:03:08 +0200760 if (boot_command_line[0])
761 strlcat(boot_command_line, " ", COMMAND_LINE_SIZE);
Jonas Gorski20249722015-10-12 13:13:02 +0200762 strlcat(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE);
763 }
Rabin Vincented47e152016-04-28 11:03:09 +0200764
765 if (BUILTIN_EXTEND_WITH_PROM && arcs_cmdline[0]) {
766 if (boot_command_line[0])
767 strlcat(boot_command_line, " ", COMMAND_LINE_SIZE);
768 strlcat(boot_command_line, arcs_cmdline, COMMAND_LINE_SIZE);
769 }
Dmitri Vorobiev6acc7d42009-11-21 22:34:41 +0200770#endif
Dmitri Vorobiev6acc7d42009-11-21 22:34:41 +0200771#endif
772 strlcpy(command_line, boot_command_line, COMMAND_LINE_SIZE);
Ralf Baechle2925aba2006-06-18 01:32:22 +0100773
774 *cmdline_p = command_line;
775
Franck Bui-Huua09fc442006-08-11 17:51:53 +0200776 parse_early_param();
777
778 if (usermem) {
Mike Crowea64ae7a2008-07-28 13:12:52 +0100779 pr_info("User-defined physical RAM map:\n");
Franck Bui-Huua09fc442006-08-11 17:51:53 +0200780 print_memory_map();
781 }
782
Marcin Nowakowski73346082016-11-23 14:43:46 +0100783 early_init_fdt_reserve_self();
784 early_init_fdt_scan_reserved_mem();
785
Ralf Baechle2925aba2006-06-18 01:32:22 +0100786 bootmem_init();
Mike Rapoportbcec54b2018-09-10 12:23:18 +0300787
788 /*
789 * Prevent memblock from allocating high memory.
790 * This cannot be done before max_low_pfn is detected, so up
791 * to this point is possible to only reserve physical memory
Mike Rapoporteb31d552018-10-30 15:08:04 -0700792 * with memblock_reserve; memblock_alloc* can be used
Mike Rapoportbcec54b2018-09-10 12:23:18 +0300793 * only after this point
794 */
795 memblock_set_current_limit(PFN_PHYS(max_low_pfn));
796
Corey Minyard4893fc82013-02-12 19:41:48 +0000797#ifdef CONFIG_PROC_VMCORE
798 if (setup_elfcorehdr && setup_elfcorehdr_size) {
799 printk(KERN_INFO "kdump reserved memory at %lx-%lx\n",
800 setup_elfcorehdr, setup_elfcorehdr_size);
Mike Rapoportbcec54b2018-09-10 12:23:18 +0300801 memblock_reserve(setup_elfcorehdr, setup_elfcorehdr_size);
Corey Minyard4893fc82013-02-12 19:41:48 +0000802 }
803#endif
Prem Mallappac2882b72013-09-04 23:26:24 +0530804
805 mips_parse_crashkernel();
Ralf Baechle7aa1c8f2012-10-11 18:14:58 +0200806#ifdef CONFIG_KEXEC
807 if (crashk_res.start != crashk_res.end)
Mike Rapoportbcec54b2018-09-10 12:23:18 +0300808 memblock_reserve(crashk_res.start,
809 crashk_res.end - crashk_res.start + 1);
Ralf Baechle7aa1c8f2012-10-11 18:14:58 +0200810#endif
Dezhong Diaof2ffa5a2010-10-13 00:52:46 -0600811 device_tree_init();
Ralf Baechle2925aba2006-06-18 01:32:22 +0100812 sparse_init();
David Daneyee71b7d2010-10-01 13:27:33 -0700813 plat_swiotlb_setup();
Zubair Lutfullah Kakakhelf4649382014-07-16 16:51:32 +0100814
815 dma_contiguous_reserve(PFN_PHYS(max_low_pfn));
Huacai Chena95d069202016-03-17 20:37:10 +0800816
Serge Semin4e50a352019-04-24 01:47:42 +0300817 /* Reserve for hibernation. */
818 memblock_reserve(__pa_symbol(&__nosave_begin),
819 __pa_symbol(&__nosave_end) - __pa_symbol(&__nosave_begin));
Ralf Baechle2925aba2006-06-18 01:32:22 +0100820}
821
Franck Bui-Huu8df32c62006-08-11 17:51:51 +0200822static void __init resource_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
824 int i;
825
Ralf Baechle6adb5fe2006-06-20 12:47:53 +0100826 if (UNCAC_BASE != IO_BASE)
827 return;
828
Franck Bui-Huuf5bffe32006-10-19 13:20:03 +0200829 code_resource.start = __pa_symbol(&_text);
830 code_resource.end = __pa_symbol(&_etext) - 1;
831 data_resource.start = __pa_symbol(&_etext);
832 data_resource.end = __pa_symbol(&_edata) - 1;
David Daneye0c5f362017-10-12 12:50:34 -0700833 bss_resource.start = __pa_symbol(&__bss_start);
834 bss_resource.end = __pa_symbol(&__bss_stop) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 for (i = 0; i < boot_mem_map.nr_map; i++) {
837 struct resource *res;
838 unsigned long start, end;
839
840 start = boot_mem_map.map[i].addr;
841 end = boot_mem_map.map[i].addr + boot_mem_map.map[i].size - 1;
Franck Bui-Huu1c6fd442006-08-11 17:51:52 +0200842 if (start >= HIGHMEM_START)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 continue;
Franck Bui-Huu1c6fd442006-08-11 17:51:52 +0200844 if (end >= HIGHMEM_START)
845 end = HIGHMEM_START - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Mike Rapoport7e1c4e22018-10-30 15:09:57 -0700847 res = memblock_alloc(sizeof(struct resource), SMP_CACHE_BYTES);
Mike Rapoport8a7f97b2019-03-11 23:30:31 -0700848 if (!res)
849 panic("%s: Failed to allocate %zu bytes\n", __func__,
850 sizeof(struct resource));
Toshi Kani35d98e92016-01-26 21:57:22 +0100851
852 res->start = start;
853 res->end = end;
854 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 switch (boot_mem_map.map[i].type) {
857 case BOOT_MEM_RAM:
David Daney43064c02011-11-22 14:38:03 +0000858 case BOOT_MEM_INIT_RAM:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 case BOOT_MEM_ROM_DATA:
860 res->name = "System RAM";
Toshi Kani35d98e92016-01-26 21:57:22 +0100861 res->flags |= IORESOURCE_SYSRAM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 break;
863 case BOOT_MEM_RESERVED:
864 default:
865 res->name = "reserved";
866 }
867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 request_resource(&iomem_resource, res);
869
870 /*
871 * We don't know which RAM region contains kernel data,
872 * so we try it repeatedly and let the resource manager
873 * test it.
874 */
875 request_resource(res, &code_resource);
876 request_resource(res, &data_resource);
David Daneye0c5f362017-10-12 12:50:34 -0700877 request_resource(res, &bss_resource);
Ralf Baechle7aa1c8f2012-10-11 18:14:58 +0200878 request_crashkernel(res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 }
880}
881
Huacai Chen0f3f5062014-06-26 11:41:25 +0800882#ifdef CONFIG_SMP
883static void __init prefill_possible_map(void)
884{
885 int i, possible = num_possible_cpus();
886
887 if (possible > nr_cpu_ids)
888 possible = nr_cpu_ids;
889
890 for (i = 0; i < possible; i++)
891 set_cpu_possible(i, true);
892 for (; i < NR_CPUS; i++)
893 set_cpu_possible(i, false);
894
895 nr_cpu_ids = possible;
896}
897#else
898static inline void prefill_possible_map(void) {}
899#endif
900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901void __init setup_arch(char **cmdline_p)
902{
903 cpu_probe();
Paul Burton3af5a672016-02-08 09:46:31 -0800904 mips_cm_probe();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 prom_init();
Ralf Baechle36a88532007-03-01 11:56:43 +0000906
James Hogane9349452015-01-29 11:14:13 +0000907 setup_early_fdc_console();
Ralf Baechle36a88532007-03-01 11:56:43 +0000908#ifdef CONFIG_EARLY_PRINTK
Dmitri Vorobiev07cdb782008-05-29 17:57:08 +0300909 setup_early_printk();
Ralf Baechle36a88532007-03-01 11:56:43 +0000910#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 cpu_report();
Maciej W. Rozycki20d60d92007-10-23 12:43:11 +0100912 check_bugs_early();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914#if defined(CONFIG_VT)
915#if defined(CONFIG_VGA_CONSOLE)
Ralf Baechlee0daad42007-02-05 00:10:11 +0000916 conswitchp = &vga_con;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917#elif defined(CONFIG_DUMMY_CONSOLE)
Ralf Baechlee0daad42007-02-05 00:10:11 +0000918 conswitchp = &dummy_con;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919#endif
920#endif
921
Ralf Baechle2925aba2006-06-18 01:32:22 +0100922 arch_mem_init(cmdline_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 resource_init();
Ralf Baechle9b6695a2006-02-23 12:23:27 +0000925 plat_smp_setup();
Huacai Chen0f3f5062014-06-26 11:41:25 +0800926 prefill_possible_map();
David Daney6650df32012-05-15 00:04:50 -0700927
928 cpu_cache_init();
Paul Burton058effe2016-09-02 15:17:31 +0100929 paging_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930}
931
Atsushi Nemoto69a6c312007-01-24 01:21:05 +0900932unsigned long kernelsp[NR_CPUS];
933unsigned long fw_arg0, fw_arg1, fw_arg2, fw_arg3;
Atsushi Nemoto6312e0e2007-06-30 00:55:48 +0900934
Jonas Gorski15f37e12016-06-20 11:27:37 +0200935#ifdef CONFIG_USE_OF
936unsigned long fw_passed_dtb;
937#endif
938
Atsushi Nemoto6312e0e2007-06-30 00:55:48 +0900939#ifdef CONFIG_DEBUG_FS
940struct dentry *mips_debugfs_dir;
941static int __init debugfs_mips(void)
942{
Greg Kroah-Hartmand8140422019-01-22 15:57:42 +0100943 mips_debugfs_dir = debugfs_create_dir("mips", NULL);
Atsushi Nemoto6312e0e2007-06-30 00:55:48 +0900944 return 0;
945}
946arch_initcall(debugfs_mips);
947#endif
Christoph Hellwigaa4db772018-06-15 13:08:45 +0200948
Christoph Hellwig5748e1b2018-08-16 16:47:53 +0300949#ifdef CONFIG_DMA_MAYBE_COHERENT
Christoph Hellwigaa4db772018-06-15 13:08:45 +0200950/* User defined DMA coherency from command line. */
951enum coherent_io_user_state coherentio = IO_COHERENCE_DEFAULT;
952EXPORT_SYMBOL_GPL(coherentio);
953int hw_coherentio = 0; /* Actual hardware supported DMA coherency setting. */
954
955static int __init setcoherentio(char *str)
956{
957 coherentio = IO_COHERENCE_ENABLED;
958 pr_info("Hardware DMA cache coherency (command line)\n");
959 return 0;
960}
961early_param("coherentio", setcoherentio);
962
963static int __init setnocoherentio(char *str)
964{
965 coherentio = IO_COHERENCE_DISABLED;
966 pr_info("Software DMA cache coherency (command line)\n");
967 return 0;
968}
969early_param("nocoherentio", setnocoherentio);
970#endif