init64.c 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  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. #include <linux/config.h>
  23. #include <linux/signal.h>
  24. #include <linux/sched.h>
  25. #include <linux/kernel.h>
  26. #include <linux/errno.h>
  27. #include <linux/string.h>
  28. #include <linux/types.h>
  29. #include <linux/mman.h>
  30. #include <linux/mm.h>
  31. #include <linux/swap.h>
  32. #include <linux/stddef.h>
  33. #include <linux/vmalloc.h>
  34. #include <linux/init.h>
  35. #include <linux/delay.h>
  36. #include <linux/bootmem.h>
  37. #include <linux/highmem.h>
  38. #include <linux/idr.h>
  39. #include <linux/nodemask.h>
  40. #include <linux/module.h>
  41. #include <asm/pgalloc.h>
  42. #include <asm/page.h>
  43. #include <asm/prom.h>
  44. #include <asm/lmb.h>
  45. #include <asm/rtas.h>
  46. #include <asm/io.h>
  47. #include <asm/mmu_context.h>
  48. #include <asm/pgtable.h>
  49. #include <asm/mmu.h>
  50. #include <asm/uaccess.h>
  51. #include <asm/smp.h>
  52. #include <asm/machdep.h>
  53. #include <asm/tlb.h>
  54. #include <asm/eeh.h>
  55. #include <asm/processor.h>
  56. #include <asm/mmzone.h>
  57. #include <asm/cputable.h>
  58. #include <asm/ppcdebug.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 <asm/imalloc.h>
  65. #if PGTABLE_RANGE > USER_VSID_RANGE
  66. #warning Limited user VSID range means pagetable space is wasted
  67. #endif
  68. #if (TASK_SIZE_USER64 < PGTABLE_RANGE) && (TASK_SIZE_USER64 < USER_VSID_RANGE)
  69. #warning TASK_SIZE is smaller than it needs to be.
  70. #endif
  71. int mem_init_done;
  72. unsigned long ioremap_bot = IMALLOC_BASE;
  73. static unsigned long phbs_io_bot = PHBS_IO_BASE;
  74. extern pgd_t swapper_pg_dir[];
  75. extern struct task_struct *current_set[NR_CPUS];
  76. unsigned long klimit = (unsigned long)_end;
  77. unsigned long _SDR1=0;
  78. unsigned long _ASR=0;
  79. /* max amount of RAM to use */
  80. unsigned long __max_memory;
  81. /* info on what we think the IO hole is */
  82. unsigned long io_hole_start;
  83. unsigned long io_hole_size;
  84. /*
  85. * Do very early mm setup.
  86. */
  87. void __init mm_init_ppc64(void)
  88. {
  89. #ifndef CONFIG_PPC_ISERIES
  90. unsigned long i;
  91. #endif
  92. ppc64_boot_msg(0x100, "MM Init");
  93. /* This is the story of the IO hole... please, keep seated,
  94. * unfortunately, we are out of oxygen masks at the moment.
  95. * So we need some rough way to tell where your big IO hole
  96. * is. On pmac, it's between 2G and 4G, on POWER3, it's around
  97. * that area as well, on POWER4 we don't have one, etc...
  98. * We need that as a "hint" when sizing the TCE table on POWER3
  99. * So far, the simplest way that seem work well enough for us it
  100. * to just assume that the first discontinuity in our physical
  101. * RAM layout is the IO hole. That may not be correct in the future
  102. * (and isn't on iSeries but then we don't care ;)
  103. */
  104. #ifndef CONFIG_PPC_ISERIES
  105. for (i = 1; i < lmb.memory.cnt; i++) {
  106. unsigned long base, prevbase, prevsize;
  107. prevbase = lmb.memory.region[i-1].base;
  108. prevsize = lmb.memory.region[i-1].size;
  109. base = lmb.memory.region[i].base;
  110. if (base > (prevbase + prevsize)) {
  111. io_hole_start = prevbase + prevsize;
  112. io_hole_size = base - (prevbase + prevsize);
  113. break;
  114. }
  115. }
  116. #endif /* CONFIG_PPC_ISERIES */
  117. if (io_hole_start)
  118. printk("IO Hole assumed to be %lx -> %lx\n",
  119. io_hole_start, io_hole_start + io_hole_size - 1);
  120. ppc64_boot_msg(0x100, "MM Init Done");
  121. }
  122. void free_initmem(void)
  123. {
  124. unsigned long addr;
  125. addr = (unsigned long)__init_begin;
  126. for (; addr < (unsigned long)__init_end; addr += PAGE_SIZE) {
  127. memset((void *)addr, 0xcc, PAGE_SIZE);
  128. ClearPageReserved(virt_to_page(addr));
  129. set_page_count(virt_to_page(addr), 1);
  130. free_page(addr);
  131. totalram_pages++;
  132. }
  133. printk ("Freeing unused kernel memory: %luk freed\n",
  134. ((unsigned long)__init_end - (unsigned long)__init_begin) >> 10);
  135. }
  136. #ifdef CONFIG_BLK_DEV_INITRD
  137. void free_initrd_mem(unsigned long start, unsigned long end)
  138. {
  139. if (start < end)
  140. printk ("Freeing initrd memory: %ldk freed\n", (end - start) >> 10);
  141. for (; start < end; start += PAGE_SIZE) {
  142. ClearPageReserved(virt_to_page(start));
  143. set_page_count(virt_to_page(start), 1);
  144. free_page(start);
  145. totalram_pages++;
  146. }
  147. }
  148. #endif
  149. static struct kcore_list kcore_vmem;
  150. static int __init setup_kcore(void)
  151. {
  152. int i;
  153. for (i=0; i < lmb.memory.cnt; i++) {
  154. unsigned long base, size;
  155. struct kcore_list *kcore_mem;
  156. base = lmb.memory.region[i].base;
  157. size = lmb.memory.region[i].size;
  158. /* GFP_ATOMIC to avoid might_sleep warnings during boot */
  159. kcore_mem = kmalloc(sizeof(struct kcore_list), GFP_ATOMIC);
  160. if (!kcore_mem)
  161. panic("mem_init: kmalloc failed\n");
  162. kclist_add(kcore_mem, __va(base), size);
  163. }
  164. kclist_add(&kcore_vmem, (void *)VMALLOC_START, VMALLOC_END-VMALLOC_START);
  165. return 0;
  166. }
  167. module_init(setup_kcore);
  168. void __iomem * reserve_phb_iospace(unsigned long size)
  169. {
  170. void __iomem *virt_addr;
  171. if (phbs_io_bot >= IMALLOC_BASE)
  172. panic("reserve_phb_iospace(): phb io space overflow\n");
  173. virt_addr = (void __iomem *) phbs_io_bot;
  174. phbs_io_bot += size;
  175. return virt_addr;
  176. }
  177. static void zero_ctor(void *addr, kmem_cache_t *cache, unsigned long flags)
  178. {
  179. memset(addr, 0, kmem_cache_size(cache));
  180. }
  181. static const int pgtable_cache_size[2] = {
  182. PTE_TABLE_SIZE, PMD_TABLE_SIZE
  183. };
  184. static const char *pgtable_cache_name[ARRAY_SIZE(pgtable_cache_size)] = {
  185. "pgd_pte_cache", "pud_pmd_cache",
  186. };
  187. kmem_cache_t *pgtable_cache[ARRAY_SIZE(pgtable_cache_size)];
  188. void pgtable_cache_init(void)
  189. {
  190. int i;
  191. BUILD_BUG_ON(PTE_TABLE_SIZE != pgtable_cache_size[PTE_CACHE_NUM]);
  192. BUILD_BUG_ON(PMD_TABLE_SIZE != pgtable_cache_size[PMD_CACHE_NUM]);
  193. BUILD_BUG_ON(PUD_TABLE_SIZE != pgtable_cache_size[PUD_CACHE_NUM]);
  194. BUILD_BUG_ON(PGD_TABLE_SIZE != pgtable_cache_size[PGD_CACHE_NUM]);
  195. for (i = 0; i < ARRAY_SIZE(pgtable_cache_size); i++) {
  196. int size = pgtable_cache_size[i];
  197. const char *name = pgtable_cache_name[i];
  198. pgtable_cache[i] = kmem_cache_create(name,
  199. size, size,
  200. SLAB_HWCACHE_ALIGN
  201. | SLAB_MUST_HWCACHE_ALIGN,
  202. zero_ctor,
  203. NULL);
  204. if (! pgtable_cache[i])
  205. panic("pgtable_cache_init(): could not create %s!\n",
  206. name);
  207. }
  208. }
  209. pgprot_t phys_mem_access_prot(struct file *file, unsigned long addr,
  210. unsigned long size, pgprot_t vma_prot)
  211. {
  212. if (ppc_md.phys_mem_access_prot)
  213. return ppc_md.phys_mem_access_prot(file, addr, size, vma_prot);
  214. if (!page_is_ram(addr >> PAGE_SHIFT))
  215. vma_prot = __pgprot(pgprot_val(vma_prot)
  216. | _PAGE_GUARDED | _PAGE_NO_CACHE);
  217. return vma_prot;
  218. }
  219. EXPORT_SYMBOL(phys_mem_access_prot);