setup.c 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988
  1. /*
  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.
  11. * Copyright (C) 2000, 2001, 2002, 2007 Maciej W. Rozycki
  12. */
  13. #include <linux/init.h>
  14. #include <linux/ioport.h>
  15. #include <linux/export.h>
  16. #include <linux/screen_info.h>
  17. #include <linux/memblock.h>
  18. #include <linux/bootmem.h>
  19. #include <linux/initrd.h>
  20. #include <linux/root_dev.h>
  21. #include <linux/highmem.h>
  22. #include <linux/console.h>
  23. #include <linux/pfn.h>
  24. #include <linux/debugfs.h>
  25. #include <linux/kexec.h>
  26. #include <linux/sizes.h>
  27. #include <linux/device.h>
  28. #include <linux/dma-contiguous.h>
  29. #include <linux/decompress/generic.h>
  30. #include <asm/addrspace.h>
  31. #include <asm/bootinfo.h>
  32. #include <asm/bugs.h>
  33. #include <asm/cache.h>
  34. #include <asm/cdmm.h>
  35. #include <asm/cpu.h>
  36. #include <asm/debug.h>
  37. #include <asm/sections.h>
  38. #include <asm/setup.h>
  39. #include <asm/smp-ops.h>
  40. #include <asm/prom.h>
  41. #ifdef CONFIG_MIPS_ELF_APPENDED_DTB
  42. const char __section(.appended_dtb) __appended_dtb[0x100000];
  43. #endif /* CONFIG_MIPS_ELF_APPENDED_DTB */
  44. struct cpuinfo_mips cpu_data[NR_CPUS] __read_mostly;
  45. EXPORT_SYMBOL(cpu_data);
  46. #ifdef CONFIG_VT
  47. struct screen_info screen_info;
  48. #endif
  49. /*
  50. * Setup information
  51. *
  52. * These are initialized so they are in the .data section
  53. */
  54. unsigned long mips_machtype __read_mostly = MACH_UNKNOWN;
  55. EXPORT_SYMBOL(mips_machtype);
  56. struct boot_mem_map boot_mem_map;
  57. static char __initdata command_line[COMMAND_LINE_SIZE];
  58. char __initdata arcs_cmdline[COMMAND_LINE_SIZE];
  59. #ifdef CONFIG_CMDLINE_BOOL
  60. static char __initdata builtin_cmdline[COMMAND_LINE_SIZE] = CONFIG_CMDLINE;
  61. #endif
  62. /*
  63. * mips_io_port_base is the begin of the address space to which x86 style
  64. * I/O ports are mapped.
  65. */
  66. const unsigned long mips_io_port_base = -1;
  67. EXPORT_SYMBOL(mips_io_port_base);
  68. static struct resource code_resource = { .name = "Kernel code", };
  69. static struct resource data_resource = { .name = "Kernel data", };
  70. static void *detect_magic __initdata = detect_memory_region;
  71. void __init add_memory_region(phys_addr_t start, phys_addr_t size, long type)
  72. {
  73. int x = boot_mem_map.nr_map;
  74. int i;
  75. /*
  76. * If the region reaches the top of the physical address space, adjust
  77. * the size slightly so that (start + size) doesn't overflow
  78. */
  79. if (start + size - 1 == (phys_addr_t)ULLONG_MAX)
  80. --size;
  81. /* Sanity check */
  82. if (start + size < start) {
  83. pr_warn("Trying to add an invalid memory region, skipped\n");
  84. return;
  85. }
  86. /*
  87. * Try to merge with existing entry, if any.
  88. */
  89. for (i = 0; i < boot_mem_map.nr_map; i++) {
  90. struct boot_mem_map_entry *entry = boot_mem_map.map + i;
  91. unsigned long top;
  92. if (entry->type != type)
  93. continue;
  94. if (start + size < entry->addr)
  95. continue; /* no overlap */
  96. if (entry->addr + entry->size < start)
  97. continue; /* no overlap */
  98. top = max(entry->addr + entry->size, start + size);
  99. entry->addr = min(entry->addr, start);
  100. entry->size = top - entry->addr;
  101. return;
  102. }
  103. if (boot_mem_map.nr_map == BOOT_MEM_MAP_MAX) {
  104. pr_err("Ooops! Too many entries in the memory map!\n");
  105. return;
  106. }
  107. boot_mem_map.map[x].addr = start;
  108. boot_mem_map.map[x].size = size;
  109. boot_mem_map.map[x].type = type;
  110. boot_mem_map.nr_map++;
  111. }
  112. void __init detect_memory_region(phys_addr_t start, phys_addr_t sz_min, phys_addr_t sz_max)
  113. {
  114. void *dm = &detect_magic;
  115. phys_addr_t size;
  116. for (size = sz_min; size < sz_max; size <<= 1) {
  117. if (!memcmp(dm, dm + size, sizeof(detect_magic)))
  118. break;
  119. }
  120. pr_debug("Memory: %lluMB of RAM detected at 0x%llx (min: %lluMB, max: %lluMB)\n",
  121. ((unsigned long long) size) / SZ_1M,
  122. (unsigned long long) start,
  123. ((unsigned long long) sz_min) / SZ_1M,
  124. ((unsigned long long) sz_max) / SZ_1M);
  125. add_memory_region(start, size, BOOT_MEM_RAM);
  126. }
  127. bool __init memory_region_available(phys_addr_t start, phys_addr_t size)
  128. {
  129. int i;
  130. bool in_ram = false, free = true;
  131. for (i = 0; i < boot_mem_map.nr_map; i++) {
  132. phys_addr_t start_, end_;
  133. start_ = boot_mem_map.map[i].addr;
  134. end_ = boot_mem_map.map[i].addr + boot_mem_map.map[i].size;
  135. switch (boot_mem_map.map[i].type) {
  136. case BOOT_MEM_RAM:
  137. if (start >= start_ && start + size <= end_)
  138. in_ram = true;
  139. break;
  140. case BOOT_MEM_RESERVED:
  141. if ((start >= start_ && start < end_) ||
  142. (start < start_ && start + size >= start_))
  143. free = false;
  144. break;
  145. default:
  146. continue;
  147. }
  148. }
  149. return in_ram && free;
  150. }
  151. static void __init print_memory_map(void)
  152. {
  153. int i;
  154. const int field = 2 * sizeof(unsigned long);
  155. for (i = 0; i < boot_mem_map.nr_map; i++) {
  156. printk(KERN_INFO " memory: %0*Lx @ %0*Lx ",
  157. field, (unsigned long long) boot_mem_map.map[i].size,
  158. field, (unsigned long long) boot_mem_map.map[i].addr);
  159. switch (boot_mem_map.map[i].type) {
  160. case BOOT_MEM_RAM:
  161. printk(KERN_CONT "(usable)\n");
  162. break;
  163. case BOOT_MEM_INIT_RAM:
  164. printk(KERN_CONT "(usable after init)\n");
  165. break;
  166. case BOOT_MEM_ROM_DATA:
  167. printk(KERN_CONT "(ROM data)\n");
  168. break;
  169. case BOOT_MEM_RESERVED:
  170. printk(KERN_CONT "(reserved)\n");
  171. break;
  172. default:
  173. printk(KERN_CONT "type %lu\n", boot_mem_map.map[i].type);
  174. break;
  175. }
  176. }
  177. }
  178. /*
  179. * Manage initrd
  180. */
  181. #ifdef CONFIG_BLK_DEV_INITRD
  182. static int __init rd_start_early(char *p)
  183. {
  184. unsigned long start = memparse(p, &p);
  185. #ifdef CONFIG_64BIT
  186. /* Guess if the sign extension was forgotten by bootloader */
  187. if (start < XKPHYS)
  188. start = (int)start;
  189. #endif
  190. initrd_start = start;
  191. initrd_end += start;
  192. return 0;
  193. }
  194. early_param("rd_start", rd_start_early);
  195. static int __init rd_size_early(char *p)
  196. {
  197. initrd_end += memparse(p, &p);
  198. return 0;
  199. }
  200. early_param("rd_size", rd_size_early);
  201. /* it returns the next free pfn after initrd */
  202. static unsigned long __init init_initrd(void)
  203. {
  204. unsigned long end;
  205. /*
  206. * Board specific code or command line parser should have
  207. * already set up initrd_start and initrd_end. In these cases
  208. * perfom sanity checks and use them if all looks good.
  209. */
  210. if (!initrd_start || initrd_end <= initrd_start)
  211. goto disable;
  212. if (initrd_start & ~PAGE_MASK) {
  213. pr_err("initrd start must be page aligned\n");
  214. goto disable;
  215. }
  216. if (initrd_start < PAGE_OFFSET) {
  217. pr_err("initrd start < PAGE_OFFSET\n");
  218. goto disable;
  219. }
  220. /*
  221. * Sanitize initrd addresses. For example firmware
  222. * can't guess if they need to pass them through
  223. * 64-bits values if the kernel has been built in pure
  224. * 32-bit. We need also to switch from KSEG0 to XKPHYS
  225. * addresses now, so the code can now safely use __pa().
  226. */
  227. end = __pa(initrd_end);
  228. initrd_end = (unsigned long)__va(end);
  229. initrd_start = (unsigned long)__va(__pa(initrd_start));
  230. ROOT_DEV = Root_RAM0;
  231. return PFN_UP(end);
  232. disable:
  233. initrd_start = 0;
  234. initrd_end = 0;
  235. return 0;
  236. }
  237. /* In some conditions (e.g. big endian bootloader with a little endian
  238. kernel), the initrd might appear byte swapped. Try to detect this and
  239. byte swap it if needed. */
  240. static void __init maybe_bswap_initrd(void)
  241. {
  242. #if defined(CONFIG_CPU_CAVIUM_OCTEON)
  243. u64 buf;
  244. /* Check for CPIO signature */
  245. if (!memcmp((void *)initrd_start, "070701", 6))
  246. return;
  247. /* Check for compressed initrd */
  248. if (decompress_method((unsigned char *)initrd_start, 8, NULL))
  249. return;
  250. /* Try again with a byte swapped header */
  251. buf = swab64p((u64 *)initrd_start);
  252. if (!memcmp(&buf, "070701", 6) ||
  253. decompress_method((unsigned char *)(&buf), 8, NULL)) {
  254. unsigned long i;
  255. pr_info("Byteswapped initrd detected\n");
  256. for (i = initrd_start; i < ALIGN(initrd_end, 8); i += 8)
  257. swab64s((u64 *)i);
  258. }
  259. #endif
  260. }
  261. static void __init finalize_initrd(void)
  262. {
  263. unsigned long size = initrd_end - initrd_start;
  264. if (size == 0) {
  265. printk(KERN_INFO "Initrd not found or empty");
  266. goto disable;
  267. }
  268. if (__pa(initrd_end) > PFN_PHYS(max_low_pfn)) {
  269. printk(KERN_ERR "Initrd extends beyond end of memory");
  270. goto disable;
  271. }
  272. maybe_bswap_initrd();
  273. reserve_bootmem(__pa(initrd_start), size, BOOTMEM_DEFAULT);
  274. initrd_below_start_ok = 1;
  275. pr_info("Initial ramdisk at: 0x%lx (%lu bytes)\n",
  276. initrd_start, size);
  277. return;
  278. disable:
  279. printk(KERN_CONT " - disabling initrd\n");
  280. initrd_start = 0;
  281. initrd_end = 0;
  282. }
  283. #else /* !CONFIG_BLK_DEV_INITRD */
  284. static unsigned long __init init_initrd(void)
  285. {
  286. return 0;
  287. }
  288. #define finalize_initrd() do {} while (0)
  289. #endif
  290. /*
  291. * Initialize the bootmem allocator. It also setup initrd related data
  292. * if needed.
  293. */
  294. #if defined(CONFIG_SGI_IP27) || (defined(CONFIG_CPU_LOONGSON3) && defined(CONFIG_NUMA))
  295. static void __init bootmem_init(void)
  296. {
  297. init_initrd();
  298. finalize_initrd();
  299. }
  300. #else /* !CONFIG_SGI_IP27 */
  301. static unsigned long __init bootmap_bytes(unsigned long pages)
  302. {
  303. unsigned long bytes = DIV_ROUND_UP(pages, 8);
  304. return ALIGN(bytes, sizeof(long));
  305. }
  306. static void __init bootmem_init(void)
  307. {
  308. unsigned long reserved_end;
  309. unsigned long mapstart = ~0UL;
  310. unsigned long bootmap_size;
  311. bool bootmap_valid = false;
  312. int i;
  313. /*
  314. * Sanity check any INITRD first. We don't take it into account
  315. * for bootmem setup initially, rely on the end-of-kernel-code
  316. * as our memory range starting point. Once bootmem is inited we
  317. * will reserve the area used for the initrd.
  318. */
  319. init_initrd();
  320. reserved_end = (unsigned long) PFN_UP(__pa_symbol(&_end));
  321. /*
  322. * max_low_pfn is not a number of pages. The number of pages
  323. * of the system is given by 'max_low_pfn - min_low_pfn'.
  324. */
  325. min_low_pfn = ~0UL;
  326. max_low_pfn = 0;
  327. /*
  328. * Find the highest page frame number we have available.
  329. */
  330. for (i = 0; i < boot_mem_map.nr_map; i++) {
  331. unsigned long start, end;
  332. if (boot_mem_map.map[i].type != BOOT_MEM_RAM)
  333. continue;
  334. start = PFN_UP(boot_mem_map.map[i].addr);
  335. end = PFN_DOWN(boot_mem_map.map[i].addr
  336. + boot_mem_map.map[i].size);
  337. #ifndef CONFIG_HIGHMEM
  338. /*
  339. * Skip highmem here so we get an accurate max_low_pfn if low
  340. * memory stops short of high memory.
  341. * If the region overlaps HIGHMEM_START, end is clipped so
  342. * max_pfn excludes the highmem portion.
  343. */
  344. if (start >= PFN_DOWN(HIGHMEM_START))
  345. continue;
  346. if (end > PFN_DOWN(HIGHMEM_START))
  347. end = PFN_DOWN(HIGHMEM_START);
  348. #endif
  349. if (end > max_low_pfn)
  350. max_low_pfn = end;
  351. if (start < min_low_pfn)
  352. min_low_pfn = start;
  353. if (end <= reserved_end)
  354. continue;
  355. #ifdef CONFIG_BLK_DEV_INITRD
  356. /* Skip zones before initrd and initrd itself */
  357. if (initrd_end && end <= (unsigned long)PFN_UP(__pa(initrd_end)))
  358. continue;
  359. #endif
  360. if (start >= mapstart)
  361. continue;
  362. mapstart = max(reserved_end, start);
  363. }
  364. if (min_low_pfn >= max_low_pfn)
  365. panic("Incorrect memory mapping !!!");
  366. if (min_low_pfn > ARCH_PFN_OFFSET) {
  367. pr_info("Wasting %lu bytes for tracking %lu unused pages\n",
  368. (min_low_pfn - ARCH_PFN_OFFSET) * sizeof(struct page),
  369. min_low_pfn - ARCH_PFN_OFFSET);
  370. } else if (min_low_pfn < ARCH_PFN_OFFSET) {
  371. pr_info("%lu free pages won't be used\n",
  372. ARCH_PFN_OFFSET - min_low_pfn);
  373. }
  374. min_low_pfn = ARCH_PFN_OFFSET;
  375. /*
  376. * Determine low and high memory ranges
  377. */
  378. max_pfn = max_low_pfn;
  379. if (max_low_pfn > PFN_DOWN(HIGHMEM_START)) {
  380. #ifdef CONFIG_HIGHMEM
  381. highstart_pfn = PFN_DOWN(HIGHMEM_START);
  382. highend_pfn = max_low_pfn;
  383. #endif
  384. max_low_pfn = PFN_DOWN(HIGHMEM_START);
  385. }
  386. #ifdef CONFIG_BLK_DEV_INITRD
  387. /*
  388. * mapstart should be after initrd_end
  389. */
  390. if (initrd_end)
  391. mapstart = max(mapstart, (unsigned long)PFN_UP(__pa(initrd_end)));
  392. #endif
  393. /*
  394. * check that mapstart doesn't overlap with any of
  395. * memory regions that have been reserved through eg. DTB
  396. */
  397. bootmap_size = bootmap_bytes(max_low_pfn - min_low_pfn);
  398. bootmap_valid = memory_region_available(PFN_PHYS(mapstart),
  399. bootmap_size);
  400. for (i = 0; i < boot_mem_map.nr_map && !bootmap_valid; i++) {
  401. unsigned long mapstart_addr;
  402. switch (boot_mem_map.map[i].type) {
  403. case BOOT_MEM_RESERVED:
  404. mapstart_addr = PFN_ALIGN(boot_mem_map.map[i].addr +
  405. boot_mem_map.map[i].size);
  406. if (PHYS_PFN(mapstart_addr) < mapstart)
  407. break;
  408. bootmap_valid = memory_region_available(mapstart_addr,
  409. bootmap_size);
  410. if (bootmap_valid)
  411. mapstart = PHYS_PFN(mapstart_addr);
  412. break;
  413. default:
  414. break;
  415. }
  416. }
  417. if (!bootmap_valid)
  418. panic("No memory area to place a bootmap bitmap");
  419. /*
  420. * Initialize the boot-time allocator with low memory only.
  421. */
  422. if (bootmap_size != init_bootmem_node(NODE_DATA(0), mapstart,
  423. min_low_pfn, max_low_pfn))
  424. panic("Unexpected memory size required for bootmap");
  425. for (i = 0; i < boot_mem_map.nr_map; i++) {
  426. unsigned long start, end;
  427. start = PFN_UP(boot_mem_map.map[i].addr);
  428. end = PFN_DOWN(boot_mem_map.map[i].addr
  429. + boot_mem_map.map[i].size);
  430. if (start <= min_low_pfn)
  431. start = min_low_pfn;
  432. if (start >= end)
  433. continue;
  434. #ifndef CONFIG_HIGHMEM
  435. if (end > max_low_pfn)
  436. end = max_low_pfn;
  437. /*
  438. * ... finally, is the area going away?
  439. */
  440. if (end <= start)
  441. continue;
  442. #endif
  443. memblock_add_node(PFN_PHYS(start), PFN_PHYS(end - start), 0);
  444. }
  445. /*
  446. * Register fully available low RAM pages with the bootmem allocator.
  447. */
  448. for (i = 0; i < boot_mem_map.nr_map; i++) {
  449. unsigned long start, end, size;
  450. start = PFN_UP(boot_mem_map.map[i].addr);
  451. end = PFN_DOWN(boot_mem_map.map[i].addr
  452. + boot_mem_map.map[i].size);
  453. /*
  454. * Reserve usable memory.
  455. */
  456. switch (boot_mem_map.map[i].type) {
  457. case BOOT_MEM_RAM:
  458. break;
  459. case BOOT_MEM_INIT_RAM:
  460. memory_present(0, start, end);
  461. continue;
  462. default:
  463. /* Not usable memory */
  464. if (start > min_low_pfn && end < max_low_pfn)
  465. reserve_bootmem(boot_mem_map.map[i].addr,
  466. boot_mem_map.map[i].size,
  467. BOOTMEM_DEFAULT);
  468. continue;
  469. }
  470. /*
  471. * We are rounding up the start address of usable memory
  472. * and at the end of the usable range downwards.
  473. */
  474. if (start >= max_low_pfn)
  475. continue;
  476. if (start < reserved_end)
  477. start = reserved_end;
  478. if (end > max_low_pfn)
  479. end = max_low_pfn;
  480. /*
  481. * ... finally, is the area going away?
  482. */
  483. if (end <= start)
  484. continue;
  485. size = end - start;
  486. /* Register lowmem ranges */
  487. free_bootmem(PFN_PHYS(start), size << PAGE_SHIFT);
  488. memory_present(0, start, end);
  489. }
  490. /*
  491. * Reserve the bootmap memory.
  492. */
  493. reserve_bootmem(PFN_PHYS(mapstart), bootmap_size, BOOTMEM_DEFAULT);
  494. #ifdef CONFIG_RELOCATABLE
  495. /*
  496. * The kernel reserves all memory below its _end symbol as bootmem,
  497. * but the kernel may now be at a much higher address. The memory
  498. * between the original and new locations may be returned to the system.
  499. */
  500. if (__pa_symbol(_text) > __pa_symbol(VMLINUX_LOAD_ADDRESS)) {
  501. unsigned long offset;
  502. extern void show_kernel_relocation(const char *level);
  503. offset = __pa_symbol(_text) - __pa_symbol(VMLINUX_LOAD_ADDRESS);
  504. free_bootmem(__pa_symbol(VMLINUX_LOAD_ADDRESS), offset);
  505. #if defined(CONFIG_DEBUG_KERNEL) && defined(CONFIG_DEBUG_INFO)
  506. /*
  507. * This information is necessary when debugging the kernel
  508. * But is a security vulnerability otherwise!
  509. */
  510. show_kernel_relocation(KERN_INFO);
  511. #endif
  512. }
  513. #endif
  514. /*
  515. * Reserve initrd memory if needed.
  516. */
  517. finalize_initrd();
  518. }
  519. #endif /* CONFIG_SGI_IP27 */
  520. /*
  521. * arch_mem_init - initialize memory management subsystem
  522. *
  523. * o plat_mem_setup() detects the memory configuration and will record detected
  524. * memory areas using add_memory_region.
  525. *
  526. * At this stage the memory configuration of the system is known to the
  527. * kernel but generic memory management system is still entirely uninitialized.
  528. *
  529. * o bootmem_init()
  530. * o sparse_init()
  531. * o paging_init()
  532. * o dma_contiguous_reserve()
  533. *
  534. * At this stage the bootmem allocator is ready to use.
  535. *
  536. * NOTE: historically plat_mem_setup did the entire platform initialization.
  537. * This was rather impractical because it meant plat_mem_setup had to
  538. * get away without any kind of memory allocator. To keep old code from
  539. * breaking plat_setup was just renamed to plat_mem_setup and a second platform
  540. * initialization hook for anything else was introduced.
  541. */
  542. static int usermem __initdata;
  543. static int __init early_parse_mem(char *p)
  544. {
  545. phys_addr_t start, size;
  546. /*
  547. * If a user specifies memory size, we
  548. * blow away any automatically generated
  549. * size.
  550. */
  551. if (usermem == 0) {
  552. boot_mem_map.nr_map = 0;
  553. usermem = 1;
  554. }
  555. start = 0;
  556. size = memparse(p, &p);
  557. if (*p == '@')
  558. start = memparse(p + 1, &p);
  559. add_memory_region(start, size, BOOT_MEM_RAM);
  560. return 0;
  561. }
  562. early_param("mem", early_parse_mem);
  563. #ifdef CONFIG_PROC_VMCORE
  564. unsigned long setup_elfcorehdr, setup_elfcorehdr_size;
  565. static int __init early_parse_elfcorehdr(char *p)
  566. {
  567. int i;
  568. setup_elfcorehdr = memparse(p, &p);
  569. for (i = 0; i < boot_mem_map.nr_map; i++) {
  570. unsigned long start = boot_mem_map.map[i].addr;
  571. unsigned long end = (boot_mem_map.map[i].addr +
  572. boot_mem_map.map[i].size);
  573. if (setup_elfcorehdr >= start && setup_elfcorehdr < end) {
  574. /*
  575. * Reserve from the elf core header to the end of
  576. * the memory segment, that should all be kdump
  577. * reserved memory.
  578. */
  579. setup_elfcorehdr_size = end - setup_elfcorehdr;
  580. break;
  581. }
  582. }
  583. /*
  584. * If we don't find it in the memory map, then we shouldn't
  585. * have to worry about it, as the new kernel won't use it.
  586. */
  587. return 0;
  588. }
  589. early_param("elfcorehdr", early_parse_elfcorehdr);
  590. #endif
  591. static void __init arch_mem_addpart(phys_addr_t mem, phys_addr_t end, int type)
  592. {
  593. phys_addr_t size;
  594. int i;
  595. size = end - mem;
  596. if (!size)
  597. return;
  598. /* Make sure it is in the boot_mem_map */
  599. for (i = 0; i < boot_mem_map.nr_map; i++) {
  600. if (mem >= boot_mem_map.map[i].addr &&
  601. mem < (boot_mem_map.map[i].addr +
  602. boot_mem_map.map[i].size))
  603. return;
  604. }
  605. add_memory_region(mem, size, type);
  606. }
  607. #ifdef CONFIG_KEXEC
  608. static inline unsigned long long get_total_mem(void)
  609. {
  610. unsigned long long total;
  611. total = max_pfn - min_low_pfn;
  612. return total << PAGE_SHIFT;
  613. }
  614. static void __init mips_parse_crashkernel(void)
  615. {
  616. unsigned long long total_mem;
  617. unsigned long long crash_size, crash_base;
  618. int ret;
  619. total_mem = get_total_mem();
  620. ret = parse_crashkernel(boot_command_line, total_mem,
  621. &crash_size, &crash_base);
  622. if (ret != 0 || crash_size <= 0)
  623. return;
  624. crashk_res.start = crash_base;
  625. crashk_res.end = crash_base + crash_size - 1;
  626. }
  627. static void __init request_crashkernel(struct resource *res)
  628. {
  629. int ret;
  630. ret = request_resource(res, &crashk_res);
  631. if (!ret)
  632. pr_info("Reserving %ldMB of memory at %ldMB for crashkernel\n",
  633. (unsigned long)((crashk_res.end -
  634. crashk_res.start + 1) >> 20),
  635. (unsigned long)(crashk_res.start >> 20));
  636. }
  637. #else /* !defined(CONFIG_KEXEC) */
  638. static void __init mips_parse_crashkernel(void)
  639. {
  640. }
  641. static void __init request_crashkernel(struct resource *res)
  642. {
  643. }
  644. #endif /* !defined(CONFIG_KEXEC) */
  645. #define USE_PROM_CMDLINE IS_ENABLED(CONFIG_MIPS_CMDLINE_FROM_BOOTLOADER)
  646. #define USE_DTB_CMDLINE IS_ENABLED(CONFIG_MIPS_CMDLINE_FROM_DTB)
  647. #define EXTEND_WITH_PROM IS_ENABLED(CONFIG_MIPS_CMDLINE_DTB_EXTEND)
  648. #define BUILTIN_EXTEND_WITH_PROM \
  649. IS_ENABLED(CONFIG_MIPS_CMDLINE_BUILTIN_EXTEND)
  650. static void __init arch_mem_init(char **cmdline_p)
  651. {
  652. struct memblock_region *reg;
  653. extern void plat_mem_setup(void);
  654. /* call board setup routine */
  655. plat_mem_setup();
  656. /*
  657. * Make sure all kernel memory is in the maps. The "UP" and
  658. * "DOWN" are opposite for initdata since if it crosses over
  659. * into another memory section you don't want that to be
  660. * freed when the initdata is freed.
  661. */
  662. arch_mem_addpart(PFN_DOWN(__pa_symbol(&_text)) << PAGE_SHIFT,
  663. PFN_UP(__pa_symbol(&_edata)) << PAGE_SHIFT,
  664. BOOT_MEM_RAM);
  665. arch_mem_addpart(PFN_UP(__pa_symbol(&__init_begin)) << PAGE_SHIFT,
  666. PFN_DOWN(__pa_symbol(&__init_end)) << PAGE_SHIFT,
  667. BOOT_MEM_INIT_RAM);
  668. pr_info("Determined physical RAM map:\n");
  669. print_memory_map();
  670. #if defined(CONFIG_CMDLINE_BOOL) && defined(CONFIG_CMDLINE_OVERRIDE)
  671. strlcpy(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE);
  672. #else
  673. if ((USE_PROM_CMDLINE && arcs_cmdline[0]) ||
  674. (USE_DTB_CMDLINE && !boot_command_line[0]))
  675. strlcpy(boot_command_line, arcs_cmdline, COMMAND_LINE_SIZE);
  676. if (EXTEND_WITH_PROM && arcs_cmdline[0]) {
  677. if (boot_command_line[0])
  678. strlcat(boot_command_line, " ", COMMAND_LINE_SIZE);
  679. strlcat(boot_command_line, arcs_cmdline, COMMAND_LINE_SIZE);
  680. }
  681. #if defined(CONFIG_CMDLINE_BOOL)
  682. if (builtin_cmdline[0]) {
  683. if (boot_command_line[0])
  684. strlcat(boot_command_line, " ", COMMAND_LINE_SIZE);
  685. strlcat(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE);
  686. }
  687. if (BUILTIN_EXTEND_WITH_PROM && arcs_cmdline[0]) {
  688. if (boot_command_line[0])
  689. strlcat(boot_command_line, " ", COMMAND_LINE_SIZE);
  690. strlcat(boot_command_line, arcs_cmdline, COMMAND_LINE_SIZE);
  691. }
  692. #endif
  693. #endif
  694. strlcpy(command_line, boot_command_line, COMMAND_LINE_SIZE);
  695. *cmdline_p = command_line;
  696. parse_early_param();
  697. if (usermem) {
  698. pr_info("User-defined physical RAM map:\n");
  699. print_memory_map();
  700. }
  701. bootmem_init();
  702. #ifdef CONFIG_PROC_VMCORE
  703. if (setup_elfcorehdr && setup_elfcorehdr_size) {
  704. printk(KERN_INFO "kdump reserved memory at %lx-%lx\n",
  705. setup_elfcorehdr, setup_elfcorehdr_size);
  706. reserve_bootmem(setup_elfcorehdr, setup_elfcorehdr_size,
  707. BOOTMEM_DEFAULT);
  708. }
  709. #endif
  710. mips_parse_crashkernel();
  711. #ifdef CONFIG_KEXEC
  712. if (crashk_res.start != crashk_res.end)
  713. reserve_bootmem(crashk_res.start,
  714. crashk_res.end - crashk_res.start + 1,
  715. BOOTMEM_DEFAULT);
  716. #endif
  717. device_tree_init();
  718. sparse_init();
  719. plat_swiotlb_setup();
  720. dma_contiguous_reserve(PFN_PHYS(max_low_pfn));
  721. /* Tell bootmem about cma reserved memblock section */
  722. for_each_memblock(reserved, reg)
  723. if (reg->size != 0)
  724. reserve_bootmem(reg->base, reg->size, BOOTMEM_DEFAULT);
  725. reserve_bootmem_region(__pa_symbol(&__nosave_begin),
  726. __pa_symbol(&__nosave_end)); /* Reserve for hibernation */
  727. }
  728. static void __init resource_init(void)
  729. {
  730. int i;
  731. if (UNCAC_BASE != IO_BASE)
  732. return;
  733. code_resource.start = __pa_symbol(&_text);
  734. code_resource.end = __pa_symbol(&_etext) - 1;
  735. data_resource.start = __pa_symbol(&_etext);
  736. data_resource.end = __pa_symbol(&_edata) - 1;
  737. for (i = 0; i < boot_mem_map.nr_map; i++) {
  738. struct resource *res;
  739. unsigned long start, end;
  740. start = boot_mem_map.map[i].addr;
  741. end = boot_mem_map.map[i].addr + boot_mem_map.map[i].size - 1;
  742. if (start >= HIGHMEM_START)
  743. continue;
  744. if (end >= HIGHMEM_START)
  745. end = HIGHMEM_START - 1;
  746. res = alloc_bootmem(sizeof(struct resource));
  747. res->start = start;
  748. res->end = end;
  749. res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
  750. switch (boot_mem_map.map[i].type) {
  751. case BOOT_MEM_RAM:
  752. case BOOT_MEM_INIT_RAM:
  753. case BOOT_MEM_ROM_DATA:
  754. res->name = "System RAM";
  755. res->flags |= IORESOURCE_SYSRAM;
  756. break;
  757. case BOOT_MEM_RESERVED:
  758. default:
  759. res->name = "reserved";
  760. }
  761. request_resource(&iomem_resource, res);
  762. /*
  763. * We don't know which RAM region contains kernel data,
  764. * so we try it repeatedly and let the resource manager
  765. * test it.
  766. */
  767. request_resource(res, &code_resource);
  768. request_resource(res, &data_resource);
  769. request_crashkernel(res);
  770. }
  771. }
  772. #ifdef CONFIG_SMP
  773. static void __init prefill_possible_map(void)
  774. {
  775. int i, possible = num_possible_cpus();
  776. if (possible > nr_cpu_ids)
  777. possible = nr_cpu_ids;
  778. for (i = 0; i < possible; i++)
  779. set_cpu_possible(i, true);
  780. for (; i < NR_CPUS; i++)
  781. set_cpu_possible(i, false);
  782. nr_cpu_ids = possible;
  783. }
  784. #else
  785. static inline void prefill_possible_map(void) {}
  786. #endif
  787. void __init setup_arch(char **cmdline_p)
  788. {
  789. cpu_probe();
  790. mips_cm_probe();
  791. prom_init();
  792. setup_early_fdc_console();
  793. #ifdef CONFIG_EARLY_PRINTK
  794. setup_early_printk();
  795. #endif
  796. cpu_report();
  797. check_bugs_early();
  798. #if defined(CONFIG_VT)
  799. #if defined(CONFIG_VGA_CONSOLE)
  800. conswitchp = &vga_con;
  801. #elif defined(CONFIG_DUMMY_CONSOLE)
  802. conswitchp = &dummy_con;
  803. #endif
  804. #endif
  805. arch_mem_init(cmdline_p);
  806. resource_init();
  807. plat_smp_setup();
  808. prefill_possible_map();
  809. cpu_cache_init();
  810. paging_init();
  811. }
  812. unsigned long kernelsp[NR_CPUS];
  813. unsigned long fw_arg0, fw_arg1, fw_arg2, fw_arg3;
  814. #ifdef CONFIG_USE_OF
  815. unsigned long fw_passed_dtb;
  816. #endif
  817. #ifdef CONFIG_DEBUG_FS
  818. struct dentry *mips_debugfs_dir;
  819. static int __init debugfs_mips(void)
  820. {
  821. struct dentry *d;
  822. d = debugfs_create_dir("mips", NULL);
  823. if (!d)
  824. return -ENOMEM;
  825. mips_debugfs_dir = d;
  826. return 0;
  827. }
  828. arch_initcall(debugfs_mips);
  829. #endif