init.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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/slab.h>
  33. #include <asm/setup.h>
  34. #include <asm/segment.h>
  35. #include <asm/page.h>
  36. #include <asm/pgtable.h>
  37. #include <asm/system.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 rom_length;
  58. extern unsigned long memory_start;
  59. extern unsigned long memory_end;
  60. /*
  61. * paging_init() continues the virtual memory environment setup which
  62. * was begun by the code in arch/head.S.
  63. * The parameters are pointers to where to stick the starting and ending
  64. * addresses of available kernel virtual memory.
  65. */
  66. void paging_init(void)
  67. {
  68. /*
  69. * Make sure start_mem is page aligned, otherwise bootmem and
  70. * page_alloc get different views og the world.
  71. */
  72. #ifdef DEBUG
  73. unsigned long start_mem = PAGE_ALIGN(memory_start);
  74. #endif
  75. unsigned long end_mem = memory_end & PAGE_MASK;
  76. #ifdef DEBUG
  77. printk ("start_mem is %#lx\nvirtual_end is %#lx\n",
  78. start_mem, end_mem);
  79. #endif
  80. /*
  81. * Initialize the bad page table and bad page to point
  82. * to a couple of allocated pages.
  83. */
  84. empty_bad_page_table = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
  85. empty_bad_page = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
  86. empty_zero_page = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
  87. memset((void *)empty_zero_page, 0, PAGE_SIZE);
  88. /*
  89. * Set up SFC/DFC registers (user data space).
  90. */
  91. set_fs (USER_DS);
  92. #ifdef DEBUG
  93. printk ("before free_area_init\n");
  94. printk ("free_area_init -> start_mem is %#lx\nvirtual_end is %#lx\n",
  95. start_mem, end_mem);
  96. #endif
  97. {
  98. unsigned long zones_size[MAX_NR_ZONES] = {0, };
  99. zones_size[ZONE_DMA] = 0 >> PAGE_SHIFT;
  100. zones_size[ZONE_NORMAL] = (end_mem - PAGE_OFFSET) >> PAGE_SHIFT;
  101. #ifdef CONFIG_HIGHMEM
  102. zones_size[ZONE_HIGHMEM] = 0;
  103. #endif
  104. free_area_init(zones_size);
  105. }
  106. }
  107. void mem_init(void)
  108. {
  109. int codek = 0, datak = 0, initk = 0;
  110. /* DAVIDM look at setup memory map generically with reserved area */
  111. unsigned long tmp;
  112. extern char _etext, _stext, _sdata, _ebss, __init_begin, __init_end;
  113. extern unsigned long _ramend, _ramstart;
  114. unsigned long len = &_ramend - &_ramstart;
  115. unsigned long start_mem = memory_start; /* DAVIDM - these must start at end of kernel */
  116. unsigned long end_mem = memory_end; /* DAVIDM - this must not include kernel stack at top */
  117. #ifdef DEBUG
  118. printk(KERN_DEBUG "Mem_init: start=%lx, end=%lx\n", start_mem, end_mem);
  119. #endif
  120. end_mem &= PAGE_MASK;
  121. high_memory = (void *) end_mem;
  122. start_mem = PAGE_ALIGN(start_mem);
  123. max_mapnr = num_physpages = MAP_NR(high_memory);
  124. /* this will put all memory onto the freelists */
  125. totalram_pages = free_all_bootmem();
  126. codek = (&_etext - &_stext) >> 10;
  127. datak = (&_ebss - &_sdata) >> 10;
  128. initk = (&__init_begin - &__init_end) >> 10;
  129. tmp = nr_free_pages() << PAGE_SHIFT;
  130. printk(KERN_INFO "Memory available: %luk/%luk RAM, %luk/%luk ROM (%dk kernel code, %dk data)\n",
  131. tmp >> 10,
  132. len >> 10,
  133. (rom_length > 0) ? ((rom_length >> 10) - codek) : 0,
  134. rom_length >> 10,
  135. codek,
  136. datak
  137. );
  138. }
  139. #ifdef CONFIG_BLK_DEV_INITRD
  140. void free_initrd_mem(unsigned long start, unsigned long end)
  141. {
  142. int pages = 0;
  143. for (; start < end; start += PAGE_SIZE) {
  144. ClearPageReserved(virt_to_page(start));
  145. init_page_count(virt_to_page(start));
  146. free_page(start);
  147. totalram_pages++;
  148. pages++;
  149. }
  150. printk ("Freeing initrd memory: %dk freed\n", pages);
  151. }
  152. #endif
  153. void
  154. free_initmem()
  155. {
  156. #ifdef CONFIG_RAMKERNEL
  157. unsigned long addr;
  158. extern char __init_begin, __init_end;
  159. /*
  160. * the following code should be cool even if these sections
  161. * are not page aligned.
  162. */
  163. addr = PAGE_ALIGN((unsigned long)(&__init_begin));
  164. /* next to check that the page we free is not a partial page */
  165. for (; addr + PAGE_SIZE < (unsigned long)(&__init_end); addr +=PAGE_SIZE) {
  166. ClearPageReserved(virt_to_page(addr));
  167. init_page_count(virt_to_page(addr));
  168. free_page(addr);
  169. totalram_pages++;
  170. }
  171. printk(KERN_INFO "Freeing unused kernel memory: %ldk freed (0x%x - 0x%x)\n",
  172. (addr - PAGE_ALIGN((long) &__init_begin)) >> 10,
  173. (int)(PAGE_ALIGN((unsigned long)(&__init_begin))),
  174. (int)(addr - PAGE_SIZE));
  175. #endif
  176. }