init_no.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /*
  2. * linux/arch/m68knommu/mm/init.c
  3. *
  4. * Copyright (C) 1998 D. Jeff Dionne <jeff@lineo.ca>,
  5. * Kenneth Albanowski <kjahds@kjahds.com>,
  6. * Copyright (C) 2000 Lineo, Inc. (www.lineo.com)
  7. *
  8. * Based on:
  9. *
  10. * linux/arch/m68k/mm/init.c
  11. *
  12. * Copyright (C) 1995 Hamish Macdonald
  13. *
  14. * JAN/1999 -- hacked to support ColdFire (gerg@snapgear.com)
  15. * DEC/2000 -- linux 2.4 support <davidm@snapgear.com>
  16. */
  17. #include <linux/signal.h>
  18. #include <linux/sched.h>
  19. #include <linux/kernel.h>
  20. #include <linux/errno.h>
  21. #include <linux/string.h>
  22. #include <linux/types.h>
  23. #include <linux/ptrace.h>
  24. #include <linux/mman.h>
  25. #include <linux/mm.h>
  26. #include <linux/swap.h>
  27. #include <linux/init.h>
  28. #include <linux/highmem.h>
  29. #include <linux/pagemap.h>
  30. #include <linux/bootmem.h>
  31. #include <linux/gfp.h>
  32. #include <asm/setup.h>
  33. #include <asm/segment.h>
  34. #include <asm/page.h>
  35. #include <asm/pgtable.h>
  36. #include <asm/system.h>
  37. #include <asm/machdep.h>
  38. /*
  39. * ZERO_PAGE is a special page that is used for zero-initialized
  40. * data and COW.
  41. */
  42. void *empty_zero_page;
  43. extern unsigned long memory_start;
  44. extern unsigned long memory_end;
  45. /*
  46. * paging_init() continues the virtual memory environment setup which
  47. * was begun by the code in arch/head.S.
  48. * The parameters are pointers to where to stick the starting and ending
  49. * addresses of available kernel virtual memory.
  50. */
  51. void __init paging_init(void)
  52. {
  53. /*
  54. * Make sure start_mem is page aligned, otherwise bootmem and
  55. * page_alloc get different views of the world.
  56. */
  57. unsigned long end_mem = memory_end & PAGE_MASK;
  58. unsigned long zones_size[MAX_NR_ZONES] = {0, };
  59. empty_zero_page = alloc_bootmem_pages(PAGE_SIZE);
  60. memset(empty_zero_page, 0, PAGE_SIZE);
  61. /*
  62. * Set up SFC/DFC registers (user data space).
  63. */
  64. set_fs (USER_DS);
  65. zones_size[ZONE_DMA] = (end_mem - PAGE_OFFSET) >> PAGE_SHIFT;
  66. free_area_init(zones_size);
  67. }
  68. void __init mem_init(void)
  69. {
  70. int codek = 0, datak = 0, initk = 0;
  71. unsigned long tmp;
  72. extern char _etext, _stext, _sdata, _ebss, __init_begin, __init_end;
  73. extern unsigned int _ramend, _rambase;
  74. unsigned long len = _ramend - _rambase;
  75. unsigned long start_mem = memory_start; /* DAVIDM - these must start at end of kernel */
  76. unsigned long end_mem = memory_end; /* DAVIDM - this must not include kernel stack at top */
  77. pr_debug("Mem_init: start=%lx, end=%lx\n", start_mem, end_mem);
  78. end_mem &= PAGE_MASK;
  79. high_memory = (void *) end_mem;
  80. start_mem = PAGE_ALIGN(start_mem);
  81. max_mapnr = num_physpages = (((unsigned long) high_memory) - PAGE_OFFSET) >> PAGE_SHIFT;
  82. /* this will put all memory onto the freelists */
  83. totalram_pages = free_all_bootmem();
  84. codek = (&_etext - &_stext) >> 10;
  85. datak = (&_ebss - &_sdata) >> 10;
  86. initk = (&__init_begin - &__init_end) >> 10;
  87. tmp = nr_free_pages() << PAGE_SHIFT;
  88. printk(KERN_INFO "Memory available: %luk/%luk RAM, (%dk kernel code, %dk data)\n",
  89. tmp >> 10,
  90. len >> 10,
  91. codek,
  92. datak
  93. );
  94. }
  95. #ifdef CONFIG_BLK_DEV_INITRD
  96. void free_initrd_mem(unsigned long start, unsigned long end)
  97. {
  98. int pages = 0;
  99. for (; start < end; start += PAGE_SIZE) {
  100. ClearPageReserved(virt_to_page(start));
  101. init_page_count(virt_to_page(start));
  102. free_page(start);
  103. totalram_pages++;
  104. pages++;
  105. }
  106. pr_notice("Freeing initrd memory: %luk freed\n",
  107. pages * (PAGE_SIZE / 1024));
  108. }
  109. #endif
  110. void free_initmem(void)
  111. {
  112. #ifdef CONFIG_RAMKERNEL
  113. unsigned long addr;
  114. extern char __init_begin, __init_end;
  115. /*
  116. * The following code should be cool even if these sections
  117. * are not page aligned.
  118. */
  119. addr = PAGE_ALIGN((unsigned long)(&__init_begin));
  120. /* next to check that the page we free is not a partial page */
  121. for (; addr + PAGE_SIZE < (unsigned long)(&__init_end); addr +=PAGE_SIZE) {
  122. ClearPageReserved(virt_to_page(addr));
  123. init_page_count(virt_to_page(addr));
  124. free_page(addr);
  125. totalram_pages++;
  126. }
  127. pr_notice("Freeing unused kernel memory: %luk freed (0x%x - 0x%x)\n",
  128. (addr - PAGE_ALIGN((long) &__init_begin)) >> 10,
  129. (int)(PAGE_ALIGN((unsigned long)(&__init_begin))),
  130. (int)(addr - PAGE_SIZE));
  131. #endif
  132. }