init.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * linux/arch/h8300/mm/init.c
  4. *
  5. * Copyright (C) 1998 D. Jeff Dionne <jeff@lineo.ca>,
  6. * Kenneth Albanowski <kjahds@kjahds.com>,
  7. * Copyright (C) 2000 Lineo, Inc. (www.lineo.com)
  8. *
  9. * Based on:
  10. *
  11. * linux/arch/m68knommu/mm/init.c
  12. * linux/arch/m68k/mm/init.c
  13. *
  14. * Copyright (C) 1995 Hamish Macdonald
  15. *
  16. * JAN/1999 -- hacked to support ColdFire (gerg@snapgear.com)
  17. * DEC/2000 -- linux 2.4 support <davidm@snapgear.com>
  18. */
  19. #include <linux/signal.h>
  20. #include <linux/sched.h>
  21. #include <linux/kernel.h>
  22. #include <linux/errno.h>
  23. #include <linux/string.h>
  24. #include <linux/types.h>
  25. #include <linux/ptrace.h>
  26. #include <linux/mman.h>
  27. #include <linux/mm.h>
  28. #include <linux/swap.h>
  29. #include <linux/init.h>
  30. #include <linux/highmem.h>
  31. #include <linux/pagemap.h>
  32. #include <linux/bootmem.h>
  33. #include <linux/gfp.h>
  34. #include <asm/setup.h>
  35. #include <asm/segment.h>
  36. #include <asm/page.h>
  37. #include <asm/pgtable.h>
  38. #include <asm/sections.h>
  39. /*
  40. * ZERO_PAGE is a special page that is used for zero-initialized
  41. * data and COW.
  42. */
  43. unsigned long empty_zero_page;
  44. /*
  45. * paging_init() continues the virtual memory environment setup which
  46. * was begun by the code in arch/head.S.
  47. * The parameters are pointers to where to stick the starting and ending
  48. * addresses of available kernel virtual memory.
  49. */
  50. void __init paging_init(void)
  51. {
  52. /*
  53. * Make sure start_mem is page aligned, otherwise bootmem and
  54. * page_alloc get different views og the world.
  55. */
  56. unsigned long start_mem = PAGE_ALIGN(memory_start);
  57. unsigned long end_mem = memory_end & PAGE_MASK;
  58. pr_debug("start_mem is %#lx\nvirtual_end is %#lx\n",
  59. start_mem, end_mem);
  60. /*
  61. * Initialize the bad page table and bad page to point
  62. * to a couple of allocated pages.
  63. */
  64. empty_zero_page = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
  65. memset((void *)empty_zero_page, 0, PAGE_SIZE);
  66. /*
  67. * Set up SFC/DFC registers (user data space).
  68. */
  69. set_fs(USER_DS);
  70. pr_debug("before free_area_init\n");
  71. pr_debug("free_area_init -> start_mem is %#lx\nvirtual_end is %#lx\n",
  72. start_mem, end_mem);
  73. {
  74. unsigned long zones_size[MAX_NR_ZONES] = {0, };
  75. zones_size[ZONE_NORMAL] = (end_mem - PAGE_OFFSET) >> PAGE_SHIFT;
  76. free_area_init(zones_size);
  77. }
  78. }
  79. void __init mem_init(void)
  80. {
  81. pr_devel("Mem_init: start=%lx, end=%lx\n", memory_start, memory_end);
  82. high_memory = (void *) (memory_end & PAGE_MASK);
  83. max_mapnr = MAP_NR(high_memory);
  84. /* this will put all low memory onto the freelists */
  85. free_all_bootmem();
  86. mem_init_print_info(NULL);
  87. }
  88. #ifdef CONFIG_BLK_DEV_INITRD
  89. void free_initrd_mem(unsigned long start, unsigned long end)
  90. {
  91. free_reserved_area((void *)start, (void *)end, -1, "initrd");
  92. }
  93. #endif
  94. void
  95. free_initmem(void)
  96. {
  97. free_initmem_default(-1);
  98. }