init_64.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /*
  2. * PowerPC version
  3. * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
  4. *
  5. * Modifications by Paul Mackerras (PowerMac) (paulus@cs.anu.edu.au)
  6. * and Cort Dougan (PReP) (cort@cs.nmt.edu)
  7. * Copyright (C) 1996 Paul Mackerras
  8. * Amiga/APUS changes by Jesper Skov (jskov@cygnus.co.uk).
  9. *
  10. * Derived from "arch/i386/mm/init.c"
  11. * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
  12. *
  13. * Dave Engebretsen <engebret@us.ibm.com>
  14. * Rework for PPC64 port.
  15. *
  16. * This program is free software; you can redistribute it and/or
  17. * modify it under the terms of the GNU General Public License
  18. * as published by the Free Software Foundation; either version
  19. * 2 of the License, or (at your option) any later version.
  20. *
  21. */
  22. #undef DEBUG
  23. #include <linux/config.h>
  24. #include <linux/signal.h>
  25. #include <linux/sched.h>
  26. #include <linux/kernel.h>
  27. #include <linux/errno.h>
  28. #include <linux/string.h>
  29. #include <linux/types.h>
  30. #include <linux/mman.h>
  31. #include <linux/mm.h>
  32. #include <linux/swap.h>
  33. #include <linux/stddef.h>
  34. #include <linux/vmalloc.h>
  35. #include <linux/init.h>
  36. #include <linux/delay.h>
  37. #include <linux/bootmem.h>
  38. #include <linux/highmem.h>
  39. #include <linux/idr.h>
  40. #include <linux/nodemask.h>
  41. #include <linux/module.h>
  42. #include <asm/pgalloc.h>
  43. #include <asm/page.h>
  44. #include <asm/prom.h>
  45. #include <asm/lmb.h>
  46. #include <asm/rtas.h>
  47. #include <asm/io.h>
  48. #include <asm/mmu_context.h>
  49. #include <asm/pgtable.h>
  50. #include <asm/mmu.h>
  51. #include <asm/uaccess.h>
  52. #include <asm/smp.h>
  53. #include <asm/machdep.h>
  54. #include <asm/tlb.h>
  55. #include <asm/eeh.h>
  56. #include <asm/processor.h>
  57. #include <asm/mmzone.h>
  58. #include <asm/cputable.h>
  59. #include <asm/sections.h>
  60. #include <asm/system.h>
  61. #include <asm/iommu.h>
  62. #include <asm/abs_addr.h>
  63. #include <asm/vdso.h>
  64. #include "mmu_decl.h"
  65. #ifdef DEBUG
  66. #define DBG(fmt...) printk(fmt)
  67. #else
  68. #define DBG(fmt...)
  69. #endif
  70. #if PGTABLE_RANGE > USER_VSID_RANGE
  71. #warning Limited user VSID range means pagetable space is wasted
  72. #endif
  73. #if (TASK_SIZE_USER64 < PGTABLE_RANGE) && (TASK_SIZE_USER64 < USER_VSID_RANGE)
  74. #warning TASK_SIZE is smaller than it needs to be.
  75. #endif
  76. /* max amount of RAM to use */
  77. unsigned long __max_memory;
  78. void free_initmem(void)
  79. {
  80. unsigned long addr;
  81. addr = (unsigned long)__init_begin;
  82. for (; addr < (unsigned long)__init_end; addr += PAGE_SIZE) {
  83. memset((void *)addr, 0xcc, PAGE_SIZE);
  84. ClearPageReserved(virt_to_page(addr));
  85. init_page_count(virt_to_page(addr));
  86. free_page(addr);
  87. totalram_pages++;
  88. }
  89. printk ("Freeing unused kernel memory: %luk freed\n",
  90. ((unsigned long)__init_end - (unsigned long)__init_begin) >> 10);
  91. }
  92. #ifdef CONFIG_BLK_DEV_INITRD
  93. void free_initrd_mem(unsigned long start, unsigned long end)
  94. {
  95. if (start < end)
  96. printk ("Freeing initrd memory: %ldk freed\n", (end - start) >> 10);
  97. for (; start < end; start += PAGE_SIZE) {
  98. ClearPageReserved(virt_to_page(start));
  99. init_page_count(virt_to_page(start));
  100. free_page(start);
  101. totalram_pages++;
  102. }
  103. }
  104. #endif
  105. static struct kcore_list kcore_vmem;
  106. static int __init setup_kcore(void)
  107. {
  108. int i;
  109. for (i=0; i < lmb.memory.cnt; i++) {
  110. unsigned long base, size;
  111. struct kcore_list *kcore_mem;
  112. base = lmb.memory.region[i].base;
  113. size = lmb.memory.region[i].size;
  114. /* GFP_ATOMIC to avoid might_sleep warnings during boot */
  115. kcore_mem = kmalloc(sizeof(struct kcore_list), GFP_ATOMIC);
  116. if (!kcore_mem)
  117. panic("mem_init: kmalloc failed\n");
  118. kclist_add(kcore_mem, __va(base), size);
  119. }
  120. kclist_add(&kcore_vmem, (void *)VMALLOC_START, VMALLOC_END-VMALLOC_START);
  121. return 0;
  122. }
  123. module_init(setup_kcore);
  124. static void zero_ctor(void *addr, kmem_cache_t *cache, unsigned long flags)
  125. {
  126. memset(addr, 0, kmem_cache_size(cache));
  127. }
  128. #ifdef CONFIG_PPC_64K_PAGES
  129. static const unsigned int pgtable_cache_size[3] = {
  130. PTE_TABLE_SIZE, PMD_TABLE_SIZE, PGD_TABLE_SIZE
  131. };
  132. static const char *pgtable_cache_name[ARRAY_SIZE(pgtable_cache_size)] = {
  133. "pte_pmd_cache", "pmd_cache", "pgd_cache",
  134. };
  135. #else
  136. static const unsigned int pgtable_cache_size[2] = {
  137. PTE_TABLE_SIZE, PMD_TABLE_SIZE
  138. };
  139. static const char *pgtable_cache_name[ARRAY_SIZE(pgtable_cache_size)] = {
  140. "pgd_pte_cache", "pud_pmd_cache",
  141. };
  142. #endif /* CONFIG_PPC_64K_PAGES */
  143. kmem_cache_t *pgtable_cache[ARRAY_SIZE(pgtable_cache_size)];
  144. void pgtable_cache_init(void)
  145. {
  146. int i;
  147. for (i = 0; i < ARRAY_SIZE(pgtable_cache_size); i++) {
  148. int size = pgtable_cache_size[i];
  149. const char *name = pgtable_cache_name[i];
  150. DBG("Allocating page table cache %s (#%d) "
  151. "for size: %08x...\n", name, i, size);
  152. pgtable_cache[i] = kmem_cache_create(name,
  153. size, size,
  154. SLAB_HWCACHE_ALIGN |
  155. SLAB_MUST_HWCACHE_ALIGN,
  156. zero_ctor,
  157. NULL);
  158. if (! pgtable_cache[i])
  159. panic("pgtable_cache_init(): could not create %s!\n",
  160. name);
  161. }
  162. }