init.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. /* init.c: memory initialisation for FRV
  2. *
  3. * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the License, or (at your option) any later version.
  10. *
  11. * Derived from:
  12. * - linux/arch/m68knommu/mm/init.c
  13. * - Copyright (C) 1998 D. Jeff Dionne <jeff@lineo.ca>, Kenneth Albanowski <kjahds@kjahds.com>,
  14. * - Copyright (C) 2000 Lineo, Inc. (www.lineo.com)
  15. * - linux/arch/m68k/mm/init.c
  16. * - Copyright (C) 1995 Hamish Macdonald
  17. */
  18. #include <linux/signal.h>
  19. #include <linux/sched.h>
  20. #include <linux/pagemap.h>
  21. #include <linux/gfp.h>
  22. #include <linux/swap.h>
  23. #include <linux/mm.h>
  24. #include <linux/kernel.h>
  25. #include <linux/string.h>
  26. #include <linux/types.h>
  27. #include <linux/bootmem.h>
  28. #include <linux/highmem.h>
  29. #include <linux/module.h>
  30. #include <asm/setup.h>
  31. #include <asm/segment.h>
  32. #include <asm/page.h>
  33. #include <asm/pgtable.h>
  34. #include <asm/mmu_context.h>
  35. #include <asm/virtconvert.h>
  36. #include <asm/sections.h>
  37. #include <asm/tlb.h>
  38. #undef DEBUG
  39. /*
  40. * BAD_PAGE is the page that is used for page faults when linux
  41. * is out-of-memory. Older versions of linux just did a
  42. * do_exit(), but using this instead means there is less risk
  43. * for a process dying in kernel mode, possibly leaving a inode
  44. * unused etc..
  45. *
  46. * BAD_PAGETABLE is the accompanying page-table: it is initialized
  47. * to point to BAD_PAGE entries.
  48. *
  49. * ZERO_PAGE is a special page that is used for zero-initialized
  50. * data and COW.
  51. */
  52. static unsigned long empty_bad_page_table;
  53. static unsigned long empty_bad_page;
  54. unsigned long empty_zero_page;
  55. EXPORT_SYMBOL(empty_zero_page);
  56. /*****************************************************************************/
  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. unsigned long zones_size[MAX_NR_ZONES] = {0, };
  66. /* allocate some pages for kernel housekeeping tasks */
  67. empty_bad_page_table = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
  68. empty_bad_page = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
  69. empty_zero_page = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
  70. memset((void *) empty_zero_page, 0, PAGE_SIZE);
  71. #ifdef CONFIG_HIGHMEM
  72. if (get_num_physpages() - num_mappedpages) {
  73. pgd_t *pge;
  74. pud_t *pue;
  75. pmd_t *pme;
  76. pkmap_page_table = alloc_bootmem_pages(PAGE_SIZE);
  77. pge = swapper_pg_dir + pgd_index_k(PKMAP_BASE);
  78. pue = pud_offset(pge, PKMAP_BASE);
  79. pme = pmd_offset(pue, PKMAP_BASE);
  80. __set_pmd(pme, virt_to_phys(pkmap_page_table) | _PAGE_TABLE);
  81. }
  82. #endif
  83. /* distribute the allocatable pages across the various zones and pass them to the allocator
  84. */
  85. zones_size[ZONE_NORMAL] = max_low_pfn - min_low_pfn;
  86. #ifdef CONFIG_HIGHMEM
  87. zones_size[ZONE_HIGHMEM] = get_num_physpages() - num_mappedpages;
  88. #endif
  89. free_area_init(zones_size);
  90. #ifdef CONFIG_MMU
  91. /* initialise init's MMU context */
  92. init_new_context(&init_task, &init_mm);
  93. #endif
  94. } /* end paging_init() */
  95. /*****************************************************************************/
  96. /*
  97. *
  98. */
  99. void __init mem_init(void)
  100. {
  101. unsigned long code_size = _etext - _stext;
  102. /* this will put all low memory onto the freelists */
  103. free_all_bootmem();
  104. #if defined(CONFIG_MMU) && defined(CONFIG_HIGHMEM)
  105. {
  106. unsigned long pfn;
  107. for (pfn = get_num_physpages() - 1;
  108. pfn >= num_mappedpages; pfn--)
  109. free_highmem_page(&mem_map[pfn]);
  110. }
  111. #endif
  112. mem_init_print_info(NULL);
  113. if (rom_length > 0 && rom_length >= code_size)
  114. printk("Memory available: %luKiB/%luKiB ROM\n",
  115. (rom_length - code_size) >> 10, rom_length >> 10);
  116. } /* end mem_init() */
  117. /*****************************************************************************/
  118. /*
  119. * free the memory that was only required for initialisation
  120. */
  121. void free_initmem(void)
  122. {
  123. #if defined(CONFIG_RAMKERNEL) && !defined(CONFIG_PROTECT_KERNEL)
  124. free_initmem_default(-1);
  125. #endif
  126. } /* end free_initmem() */
  127. /*****************************************************************************/
  128. /*
  129. * free the initial ramdisk memory
  130. */
  131. #ifdef CONFIG_BLK_DEV_INITRD
  132. void __init free_initrd_mem(unsigned long start, unsigned long end)
  133. {
  134. free_reserved_area((void *)start, (void *)end, -1, "initrd");
  135. } /* end free_initrd_mem() */
  136. #endif