init.c 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. /*
  2. * linux/arch/h8300/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/m68knommu/mm/init.c
  11. * linux/arch/m68k/mm/init.c
  12. *
  13. * Copyright (C) 1995 Hamish Macdonald
  14. *
  15. * JAN/1999 -- hacked to support ColdFire (gerg@snapgear.com)
  16. * DEC/2000 -- linux 2.4 support <davidm@snapgear.com>
  17. */
  18. #include <linux/signal.h>
  19. #include <linux/sched.h>
  20. #include <linux/kernel.h>
  21. #include <linux/errno.h>
  22. #include <linux/string.h>
  23. #include <linux/types.h>
  24. #include <linux/ptrace.h>
  25. #include <linux/mman.h>
  26. #include <linux/mm.h>
  27. #include <linux/swap.h>
  28. #include <linux/init.h>
  29. #include <linux/highmem.h>
  30. #include <linux/pagemap.h>
  31. #include <linux/bootmem.h>
  32. #include <linux/gfp.h>
  33. #include <asm/setup.h>
  34. #include <asm/segment.h>
  35. #include <asm/page.h>
  36. #include <asm/pgtable.h>
  37. #undef DEBUG
  38. /*
  39. * BAD_PAGE is the page that is used for page faults when linux
  40. * is out-of-memory. Older versions of linux just did a
  41. * do_exit(), but using this instead means there is less risk
  42. * for a process dying in kernel mode, possibly leaving a inode
  43. * unused etc..
  44. *
  45. * BAD_PAGETABLE is the accompanying page-table: it is initialized
  46. * to point to BAD_PAGE entries.
  47. *
  48. * ZERO_PAGE is a special page that is used for zero-initialized
  49. * data and COW.
  50. */
  51. static unsigned long empty_bad_page_table;
  52. static unsigned long empty_bad_page;
  53. unsigned long empty_zero_page;
  54. extern unsigned long rom_length;
  55. extern unsigned long memory_start;
  56. extern unsigned long memory_end;
  57. /*
  58. * paging_init() continues the virtual memory environment setup which
  59. * was begun by the code in arch/head.S.
  60. * The parameters are pointers to where to stick the starting and ending
  61. * addresses of available kernel virtual memory.
  62. */
  63. void __init paging_init(void)
  64. {
  65. /*
  66. * Make sure start_mem is page aligned, otherwise bootmem and
  67. * page_alloc get different views og the world.
  68. */
  69. #ifdef DEBUG
  70. unsigned long start_mem = PAGE_ALIGN(memory_start);
  71. #endif
  72. unsigned long end_mem = memory_end & PAGE_MASK;
  73. #ifdef DEBUG
  74. printk ("start_mem is %#lx\nvirtual_end is %#lx\n",
  75. start_mem, end_mem);
  76. #endif
  77. /*
  78. * Initialize the bad page table and bad page to point
  79. * to a couple of allocated pages.
  80. */
  81. empty_bad_page_table = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
  82. empty_bad_page = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
  83. empty_zero_page = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
  84. memset((void *)empty_zero_page, 0, PAGE_SIZE);
  85. /*
  86. * Set up SFC/DFC registers (user data space).
  87. */
  88. set_fs (USER_DS);
  89. #ifdef DEBUG
  90. printk ("before free_area_init\n");
  91. printk ("free_area_init -> start_mem is %#lx\nvirtual_end is %#lx\n",
  92. start_mem, end_mem);
  93. #endif
  94. {
  95. unsigned long zones_size[MAX_NR_ZONES] = {0, };
  96. zones_size[ZONE_DMA] = 0 >> PAGE_SHIFT;
  97. zones_size[ZONE_NORMAL] = (end_mem - PAGE_OFFSET) >> PAGE_SHIFT;
  98. #ifdef CONFIG_HIGHMEM
  99. zones_size[ZONE_HIGHMEM] = 0;
  100. #endif
  101. free_area_init(zones_size);
  102. }
  103. }
  104. void __init mem_init(void)
  105. {
  106. int codek = 0, datak = 0, initk = 0;
  107. /* DAVIDM look at setup memory map generically with reserved area */
  108. unsigned long tmp;
  109. extern char _etext, _stext, _sdata, _ebss, __init_begin, __init_end;
  110. extern unsigned long _ramend, _ramstart;
  111. unsigned long len = &_ramend - &_ramstart;
  112. unsigned long start_mem = memory_start; /* DAVIDM - these must start at end of kernel */
  113. unsigned long end_mem = memory_end; /* DAVIDM - this must not include kernel stack at top */
  114. #ifdef DEBUG
  115. printk(KERN_DEBUG "Mem_init: start=%lx, end=%lx\n", start_mem, end_mem);
  116. #endif
  117. end_mem &= PAGE_MASK;
  118. high_memory = (void *) end_mem;
  119. start_mem = PAGE_ALIGN(start_mem);
  120. max_mapnr = num_physpages = MAP_NR(high_memory);
  121. /* this will put all memory onto the freelists */
  122. totalram_pages = free_all_bootmem();
  123. codek = (&_etext - &_stext) >> 10;
  124. datak = (&_ebss - &_sdata) >> 10;
  125. initk = (&__init_begin - &__init_end) >> 10;
  126. tmp = nr_free_pages() << PAGE_SHIFT;
  127. printk(KERN_INFO "Memory available: %luk/%luk RAM, %luk/%luk ROM (%dk kernel code, %dk data)\n",
  128. tmp >> 10,
  129. len >> 10,
  130. (rom_length > 0) ? ((rom_length >> 10) - codek) : 0,
  131. rom_length >> 10,
  132. codek,
  133. datak
  134. );
  135. }
  136. #ifdef CONFIG_BLK_DEV_INITRD
  137. void free_initrd_mem(unsigned long start, unsigned long end)
  138. {
  139. int pages = 0;
  140. for (; start < end; start += PAGE_SIZE) {
  141. ClearPageReserved(virt_to_page(start));
  142. init_page_count(virt_to_page(start));
  143. free_page(start);
  144. totalram_pages++;
  145. pages++;
  146. }
  147. printk ("Freeing initrd memory: %dk freed\n", pages);
  148. }
  149. #endif
  150. void
  151. free_initmem(void)
  152. {
  153. #ifdef CONFIG_RAMKERNEL
  154. unsigned long addr;
  155. extern char __init_begin, __init_end;
  156. /*
  157. * the following code should be cool even if these sections
  158. * are not page aligned.
  159. */
  160. addr = PAGE_ALIGN((unsigned long)(&__init_begin));
  161. /* next to check that the page we free is not a partial page */
  162. for (; addr + PAGE_SIZE < (unsigned long)(&__init_end); addr +=PAGE_SIZE) {
  163. ClearPageReserved(virt_to_page(addr));
  164. init_page_count(virt_to_page(addr));
  165. free_page(addr);
  166. totalram_pages++;
  167. }
  168. printk(KERN_INFO "Freeing unused kernel memory: %ldk freed (0x%x - 0x%x)\n",
  169. (addr - PAGE_ALIGN((long) &__init_begin)) >> 10,
  170. (int)(PAGE_ALIGN((unsigned long)(&__init_begin))),
  171. (int)(addr - PAGE_SIZE));
  172. #endif
  173. }