init.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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/slab.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. #undef DEBUG
  39. extern void die_if_kernel(char *,struct pt_regs *,long);
  40. extern void free_initmem(void);
  41. /*
  42. * BAD_PAGE is the page that is used for page faults when linux
  43. * is out-of-memory. Older versions of linux just did a
  44. * do_exit(), but using this instead means there is less risk
  45. * for a process dying in kernel mode, possibly leaving a inode
  46. * unused etc..
  47. *
  48. * BAD_PAGETABLE is the accompanying page-table: it is initialized
  49. * to point to BAD_PAGE entries.
  50. *
  51. * ZERO_PAGE is a special page that is used for zero-initialized
  52. * data and COW.
  53. */
  54. static unsigned long empty_bad_page_table;
  55. static unsigned long empty_bad_page;
  56. unsigned long empty_zero_page;
  57. extern unsigned long memory_start;
  58. extern unsigned long memory_end;
  59. /*
  60. * paging_init() continues the virtual memory environment setup which
  61. * was begun by the code in arch/head.S.
  62. * The parameters are pointers to where to stick the starting and ending
  63. * addresses of available kernel virtual memory.
  64. */
  65. void __init paging_init(void)
  66. {
  67. /*
  68. * Make sure start_mem is page aligned, otherwise bootmem and
  69. * page_alloc get different views of the world.
  70. */
  71. #ifdef DEBUG
  72. unsigned long start_mem = PAGE_ALIGN(memory_start);
  73. #endif
  74. unsigned long end_mem = memory_end & PAGE_MASK;
  75. #ifdef DEBUG
  76. printk (KERN_DEBUG "start_mem is %#lx\nvirtual_end is %#lx\n",
  77. start_mem, end_mem);
  78. #endif
  79. /*
  80. * Initialize the bad page table and bad page to point
  81. * to a couple of allocated pages.
  82. */
  83. empty_bad_page_table = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
  84. empty_bad_page = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
  85. empty_zero_page = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
  86. memset((void *)empty_zero_page, 0, PAGE_SIZE);
  87. /*
  88. * Set up SFC/DFC registers (user data space).
  89. */
  90. set_fs (USER_DS);
  91. #ifdef DEBUG
  92. printk (KERN_DEBUG "before free_area_init\n");
  93. printk (KERN_DEBUG "free_area_init -> start_mem is %#lx\nvirtual_end is %#lx\n",
  94. start_mem, end_mem);
  95. #endif
  96. {
  97. unsigned long zones_size[MAX_NR_ZONES] = {0, };
  98. zones_size[ZONE_DMA] = (end_mem - PAGE_OFFSET) >> PAGE_SHIFT;
  99. free_area_init(zones_size);
  100. }
  101. }
  102. void __init mem_init(void)
  103. {
  104. int codek = 0, datak = 0, initk = 0;
  105. unsigned long tmp;
  106. extern char _etext, _stext, _sdata, _ebss, __init_begin, __init_end;
  107. extern unsigned int _ramend, _rambase;
  108. unsigned long len = _ramend - _rambase;
  109. unsigned long start_mem = memory_start; /* DAVIDM - these must start at end of kernel */
  110. unsigned long end_mem = memory_end; /* DAVIDM - this must not include kernel stack at top */
  111. #ifdef DEBUG
  112. printk(KERN_DEBUG "Mem_init: start=%lx, end=%lx\n", start_mem, end_mem);
  113. #endif
  114. end_mem &= PAGE_MASK;
  115. high_memory = (void *) end_mem;
  116. start_mem = PAGE_ALIGN(start_mem);
  117. max_mapnr = num_physpages = (((unsigned long) high_memory) - PAGE_OFFSET) >> PAGE_SHIFT;
  118. /* this will put all memory onto the freelists */
  119. totalram_pages = free_all_bootmem();
  120. codek = (&_etext - &_stext) >> 10;
  121. datak = (&_ebss - &_sdata) >> 10;
  122. initk = (&__init_begin - &__init_end) >> 10;
  123. tmp = nr_free_pages() << PAGE_SHIFT;
  124. printk(KERN_INFO "Memory available: %luk/%luk RAM, (%dk kernel code, %dk data)\n",
  125. tmp >> 10,
  126. len >> 10,
  127. codek,
  128. datak
  129. );
  130. }
  131. #ifdef CONFIG_BLK_DEV_INITRD
  132. void free_initrd_mem(unsigned long start, unsigned long end)
  133. {
  134. int pages = 0;
  135. for (; start < end; start += PAGE_SIZE) {
  136. ClearPageReserved(virt_to_page(start));
  137. init_page_count(virt_to_page(start));
  138. free_page(start);
  139. totalram_pages++;
  140. pages++;
  141. }
  142. printk (KERN_NOTICE "Freeing initrd memory: %dk freed\n", pages);
  143. }
  144. #endif
  145. void
  146. free_initmem()
  147. {
  148. #ifdef CONFIG_RAMKERNEL
  149. unsigned long addr;
  150. extern char __init_begin, __init_end;
  151. /*
  152. * The following code should be cool even if these sections
  153. * are not page aligned.
  154. */
  155. addr = PAGE_ALIGN((unsigned long)(&__init_begin));
  156. /* next to check that the page we free is not a partial page */
  157. for (; addr + PAGE_SIZE < (unsigned long)(&__init_end); addr +=PAGE_SIZE) {
  158. ClearPageReserved(virt_to_page(addr));
  159. init_page_count(virt_to_page(addr));
  160. free_page(addr);
  161. totalram_pages++;
  162. }
  163. printk(KERN_NOTICE "Freeing unused kernel memory: %ldk freed (0x%x - 0x%x)\n",
  164. (addr - PAGE_ALIGN((long) &__init_begin)) >> 10,
  165. (int)(PAGE_ALIGN((unsigned long)(&__init_begin))),
  166. (int)(addr - PAGE_SIZE));
  167. #endif
  168. }