init.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. /*
  2. * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
  3. *
  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.
  7. */
  8. #include <linux/kernel.h>
  9. #include <linux/mm.h>
  10. #include <linux/bootmem.h>
  11. #include <linux/memblock.h>
  12. #ifdef CONFIG_BLK_DEV_INITRD
  13. #include <linux/initrd.h>
  14. #endif
  15. #include <linux/swap.h>
  16. #include <linux/module.h>
  17. #include <asm/page.h>
  18. #include <asm/pgalloc.h>
  19. #include <asm/sections.h>
  20. #include <asm/arcregs.h>
  21. pgd_t swapper_pg_dir[PTRS_PER_PGD] __aligned(PAGE_SIZE);
  22. char empty_zero_page[PAGE_SIZE] __aligned(PAGE_SIZE);
  23. EXPORT_SYMBOL(empty_zero_page);
  24. /* Default tot mem from .config */
  25. static unsigned long arc_mem_sz = 0x20000000; /* some default */
  26. /* User can over-ride above with "mem=nnn[KkMm]" in cmdline */
  27. static int __init setup_mem_sz(char *str)
  28. {
  29. arc_mem_sz = memparse(str, NULL) & PAGE_MASK;
  30. /* early console might not be setup yet - it will show up later */
  31. pr_info("\"mem=%s\": mem sz set to %ldM\n", str, TO_MB(arc_mem_sz));
  32. return 0;
  33. }
  34. early_param("mem", setup_mem_sz);
  35. void __init early_init_dt_add_memory_arch(u64 base, u64 size)
  36. {
  37. arc_mem_sz = size & PAGE_MASK;
  38. pr_info("Memory size set via devicetree %ldM\n", TO_MB(arc_mem_sz));
  39. }
  40. #ifdef CONFIG_BLK_DEV_INITRD
  41. static int __init early_initrd(char *p)
  42. {
  43. unsigned long start, size;
  44. char *endp;
  45. start = memparse(p, &endp);
  46. if (*endp == ',') {
  47. size = memparse(endp + 1, NULL);
  48. initrd_start = (unsigned long)__va(start);
  49. initrd_end = (unsigned long)__va(start + size);
  50. }
  51. return 0;
  52. }
  53. early_param("initrd", early_initrd);
  54. #endif
  55. /*
  56. * First memory setup routine called from setup_arch()
  57. * 1. setup swapper's mm @init_mm
  58. * 2. Count the pages we have and setup bootmem allocator
  59. * 3. zone setup
  60. */
  61. void __init setup_arch_memory(void)
  62. {
  63. unsigned long zones_size[MAX_NR_ZONES] = { 0, 0 };
  64. unsigned long end_mem = CONFIG_LINUX_LINK_BASE + arc_mem_sz;
  65. init_mm.start_code = (unsigned long)_text;
  66. init_mm.end_code = (unsigned long)_etext;
  67. init_mm.end_data = (unsigned long)_edata;
  68. init_mm.brk = (unsigned long)_end;
  69. /*
  70. * We do it here, so that memory is correctly instantiated
  71. * even if "mem=xxx" cmline over-ride is given and/or
  72. * DT has memory node. Each causes an update to @arc_mem_sz
  73. * and we finally add memory one here
  74. */
  75. memblock_add(CONFIG_LINUX_LINK_BASE, arc_mem_sz);
  76. /*------------- externs in mm need setting up ---------------*/
  77. /* first page of system - kernel .vector starts here */
  78. min_low_pfn = PFN_DOWN(CONFIG_LINUX_LINK_BASE);
  79. /* Last usable page of low mem (no HIGHMEM yet for ARC port) */
  80. max_low_pfn = max_pfn = PFN_DOWN(end_mem);
  81. max_mapnr = max_low_pfn - min_low_pfn;
  82. /*------------- reserve kernel image -----------------------*/
  83. memblock_reserve(CONFIG_LINUX_LINK_BASE,
  84. __pa(_end) - CONFIG_LINUX_LINK_BASE);
  85. #ifdef CONFIG_BLK_DEV_INITRD
  86. /*------------- reserve initrd image -----------------------*/
  87. if (initrd_start)
  88. memblock_reserve(__pa(initrd_start), initrd_end - initrd_start);
  89. #endif
  90. memblock_dump_all();
  91. /*-------------- node setup --------------------------------*/
  92. memset(zones_size, 0, sizeof(zones_size));
  93. zones_size[ZONE_NORMAL] = max_low_pfn - min_low_pfn;
  94. /*
  95. * We can't use the helper free_area_init(zones[]) because it uses
  96. * PAGE_OFFSET to compute the @min_low_pfn which would be wrong
  97. * when our kernel doesn't start at PAGE_OFFSET, i.e.
  98. * PAGE_OFFSET != CONFIG_LINUX_LINK_BASE
  99. */
  100. free_area_init_node(0, /* node-id */
  101. zones_size, /* num pages per zone */
  102. min_low_pfn, /* first pfn of node */
  103. NULL); /* NO holes */
  104. }
  105. /*
  106. * mem_init - initializes memory
  107. *
  108. * Frees up bootmem
  109. * Calculates and displays memory available/used
  110. */
  111. void __init mem_init(void)
  112. {
  113. high_memory = (void *)(CONFIG_LINUX_LINK_BASE + arc_mem_sz);
  114. free_all_bootmem();
  115. mem_init_print_info(NULL);
  116. }
  117. /*
  118. * free_initmem: Free all the __init memory.
  119. */
  120. void __init_refok free_initmem(void)
  121. {
  122. free_initmem_default(-1);
  123. }
  124. #ifdef CONFIG_BLK_DEV_INITRD
  125. void __init free_initrd_mem(unsigned long start, unsigned long end)
  126. {
  127. free_reserved_area((void *)start, (void *)end, -1, "initrd");
  128. }
  129. #endif