init.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * Copyright (C) 1994 - 2000 Ralf Baechle
  7. * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
  8. * Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com
  9. * Copyright (C) 2000 MIPS Technologies, Inc. All rights reserved.
  10. */
  11. #include <linux/bug.h>
  12. #include <linux/init.h>
  13. #include <linux/module.h>
  14. #include <linux/signal.h>
  15. #include <linux/sched.h>
  16. #include <linux/smp.h>
  17. #include <linux/kernel.h>
  18. #include <linux/errno.h>
  19. #include <linux/string.h>
  20. #include <linux/types.h>
  21. #include <linux/pagemap.h>
  22. #include <linux/ptrace.h>
  23. #include <linux/mman.h>
  24. #include <linux/mm.h>
  25. #include <linux/bootmem.h>
  26. #include <linux/highmem.h>
  27. #include <linux/swap.h>
  28. #include <linux/proc_fs.h>
  29. #include <linux/pfn.h>
  30. #include <linux/hardirq.h>
  31. #include <linux/gfp.h>
  32. #include <linux/kcore.h>
  33. #include <asm/asm-offsets.h>
  34. #include <asm/bootinfo.h>
  35. #include <asm/cachectl.h>
  36. #include <asm/cpu.h>
  37. #include <asm/dma.h>
  38. #include <asm/kmap_types.h>
  39. #include <asm/mmu_context.h>
  40. #include <asm/sections.h>
  41. #include <asm/pgtable.h>
  42. #include <asm/pgalloc.h>
  43. #include <asm/tlb.h>
  44. #include <asm/fixmap.h>
  45. /*
  46. * We have up to 8 empty zeroed pages so we can map one of the right colour
  47. * when needed. This is necessary only on R4000 / R4400 SC and MC versions
  48. * where we have to avoid VCED / VECI exceptions for good performance at
  49. * any price. Since page is never written to after the initialization we
  50. * don't have to care about aliases on other CPUs.
  51. */
  52. unsigned long empty_zero_page, zero_page_mask;
  53. EXPORT_SYMBOL_GPL(empty_zero_page);
  54. EXPORT_SYMBOL(zero_page_mask);
  55. /*
  56. * Not static inline because used by IP27 special magic initialization code
  57. */
  58. void setup_zero_pages(void)
  59. {
  60. unsigned int order, i;
  61. struct page *page;
  62. if (cpu_has_vce)
  63. order = 3;
  64. else
  65. order = 0;
  66. empty_zero_page = __get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
  67. if (!empty_zero_page)
  68. panic("Oh boy, that early out of memory?");
  69. page = virt_to_page((void *)empty_zero_page);
  70. split_page(page, order);
  71. for (i = 0; i < (1 << order); i++, page++)
  72. mark_page_reserved(page);
  73. zero_page_mask = ((PAGE_SIZE << order) - 1) & PAGE_MASK;
  74. }
  75. static void *__kmap_pgprot(struct page *page, unsigned long addr, pgprot_t prot)
  76. {
  77. enum fixed_addresses idx;
  78. unsigned long vaddr, flags, entrylo;
  79. unsigned long old_ctx;
  80. pte_t pte;
  81. int tlbidx;
  82. BUG_ON(Page_dcache_dirty(page));
  83. preempt_disable();
  84. pagefault_disable();
  85. idx = (addr >> PAGE_SHIFT) & (FIX_N_COLOURS - 1);
  86. idx += in_interrupt() ? FIX_N_COLOURS : 0;
  87. vaddr = __fix_to_virt(FIX_CMAP_END - idx);
  88. pte = mk_pte(page, prot);
  89. #if defined(CONFIG_PHYS_ADDR_T_64BIT) && defined(CONFIG_CPU_MIPS32)
  90. entrylo = pte_to_entrylo(pte.pte_high);
  91. #else
  92. entrylo = pte_to_entrylo(pte_val(pte));
  93. #endif
  94. local_irq_save(flags);
  95. old_ctx = read_c0_entryhi();
  96. write_c0_entryhi(vaddr & (PAGE_MASK << 1));
  97. write_c0_entrylo0(entrylo);
  98. write_c0_entrylo1(entrylo);
  99. #ifdef CONFIG_XPA
  100. entrylo = (pte.pte_low & _PFNX_MASK);
  101. writex_c0_entrylo0(entrylo);
  102. writex_c0_entrylo1(entrylo);
  103. #endif
  104. tlbidx = read_c0_wired();
  105. write_c0_wired(tlbidx + 1);
  106. write_c0_index(tlbidx);
  107. mtc0_tlbw_hazard();
  108. tlb_write_indexed();
  109. tlbw_use_hazard();
  110. write_c0_entryhi(old_ctx);
  111. local_irq_restore(flags);
  112. return (void*) vaddr;
  113. }
  114. void *kmap_coherent(struct page *page, unsigned long addr)
  115. {
  116. return __kmap_pgprot(page, addr, PAGE_KERNEL);
  117. }
  118. void *kmap_noncoherent(struct page *page, unsigned long addr)
  119. {
  120. return __kmap_pgprot(page, addr, PAGE_KERNEL_NC);
  121. }
  122. void kunmap_coherent(void)
  123. {
  124. unsigned int wired;
  125. unsigned long flags, old_ctx;
  126. local_irq_save(flags);
  127. old_ctx = read_c0_entryhi();
  128. wired = read_c0_wired() - 1;
  129. write_c0_wired(wired);
  130. write_c0_index(wired);
  131. write_c0_entryhi(UNIQUE_ENTRYHI(wired));
  132. write_c0_entrylo0(0);
  133. write_c0_entrylo1(0);
  134. mtc0_tlbw_hazard();
  135. tlb_write_indexed();
  136. tlbw_use_hazard();
  137. write_c0_entryhi(old_ctx);
  138. local_irq_restore(flags);
  139. pagefault_enable();
  140. preempt_enable();
  141. }
  142. void copy_user_highpage(struct page *to, struct page *from,
  143. unsigned long vaddr, struct vm_area_struct *vma)
  144. {
  145. void *vfrom, *vto;
  146. vto = kmap_atomic(to);
  147. if (cpu_has_dc_aliases &&
  148. page_mapped(from) && !Page_dcache_dirty(from)) {
  149. vfrom = kmap_coherent(from, vaddr);
  150. copy_page(vto, vfrom);
  151. kunmap_coherent();
  152. } else {
  153. vfrom = kmap_atomic(from);
  154. copy_page(vto, vfrom);
  155. kunmap_atomic(vfrom);
  156. }
  157. if ((!cpu_has_ic_fills_f_dc) ||
  158. pages_do_alias((unsigned long)vto, vaddr & PAGE_MASK))
  159. flush_data_cache_page((unsigned long)vto);
  160. kunmap_atomic(vto);
  161. /* Make sure this page is cleared on other CPU's too before using it */
  162. smp_wmb();
  163. }
  164. void copy_to_user_page(struct vm_area_struct *vma,
  165. struct page *page, unsigned long vaddr, void *dst, const void *src,
  166. unsigned long len)
  167. {
  168. if (cpu_has_dc_aliases &&
  169. page_mapped(page) && !Page_dcache_dirty(page)) {
  170. void *vto = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK);
  171. memcpy(vto, src, len);
  172. kunmap_coherent();
  173. } else {
  174. memcpy(dst, src, len);
  175. if (cpu_has_dc_aliases)
  176. SetPageDcacheDirty(page);
  177. }
  178. if ((vma->vm_flags & VM_EXEC) && !cpu_has_ic_fills_f_dc)
  179. flush_cache_page(vma, vaddr, page_to_pfn(page));
  180. }
  181. void copy_from_user_page(struct vm_area_struct *vma,
  182. struct page *page, unsigned long vaddr, void *dst, const void *src,
  183. unsigned long len)
  184. {
  185. if (cpu_has_dc_aliases &&
  186. page_mapped(page) && !Page_dcache_dirty(page)) {
  187. void *vfrom = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK);
  188. memcpy(dst, vfrom, len);
  189. kunmap_coherent();
  190. } else {
  191. memcpy(dst, src, len);
  192. if (cpu_has_dc_aliases)
  193. SetPageDcacheDirty(page);
  194. }
  195. }
  196. EXPORT_SYMBOL_GPL(copy_from_user_page);
  197. void __init fixrange_init(unsigned long start, unsigned long end,
  198. pgd_t *pgd_base)
  199. {
  200. #ifdef CONFIG_HIGHMEM
  201. pgd_t *pgd;
  202. pud_t *pud;
  203. pmd_t *pmd;
  204. pte_t *pte;
  205. int i, j, k;
  206. unsigned long vaddr;
  207. vaddr = start;
  208. i = __pgd_offset(vaddr);
  209. j = __pud_offset(vaddr);
  210. k = __pmd_offset(vaddr);
  211. pgd = pgd_base + i;
  212. for ( ; (i < PTRS_PER_PGD) && (vaddr < end); pgd++, i++) {
  213. pud = (pud_t *)pgd;
  214. for ( ; (j < PTRS_PER_PUD) && (vaddr < end); pud++, j++) {
  215. pmd = (pmd_t *)pud;
  216. for (; (k < PTRS_PER_PMD) && (vaddr < end); pmd++, k++) {
  217. if (pmd_none(*pmd)) {
  218. pte = (pte_t *) alloc_bootmem_low_pages(PAGE_SIZE);
  219. set_pmd(pmd, __pmd((unsigned long)pte));
  220. BUG_ON(pte != pte_offset_kernel(pmd, 0));
  221. }
  222. vaddr += PMD_SIZE;
  223. }
  224. k = 0;
  225. }
  226. j = 0;
  227. }
  228. #endif
  229. }
  230. #ifndef CONFIG_NEED_MULTIPLE_NODES
  231. int page_is_ram(unsigned long pagenr)
  232. {
  233. int i;
  234. for (i = 0; i < boot_mem_map.nr_map; i++) {
  235. unsigned long addr, end;
  236. switch (boot_mem_map.map[i].type) {
  237. case BOOT_MEM_RAM:
  238. case BOOT_MEM_INIT_RAM:
  239. break;
  240. default:
  241. /* not usable memory */
  242. continue;
  243. }
  244. addr = PFN_UP(boot_mem_map.map[i].addr);
  245. end = PFN_DOWN(boot_mem_map.map[i].addr +
  246. boot_mem_map.map[i].size);
  247. if (pagenr >= addr && pagenr < end)
  248. return 1;
  249. }
  250. return 0;
  251. }
  252. void __init paging_init(void)
  253. {
  254. unsigned long max_zone_pfns[MAX_NR_ZONES];
  255. unsigned long lastpfn __maybe_unused;
  256. pagetable_init();
  257. #ifdef CONFIG_HIGHMEM
  258. kmap_init();
  259. #endif
  260. #ifdef CONFIG_ZONE_DMA
  261. max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
  262. #endif
  263. #ifdef CONFIG_ZONE_DMA32
  264. max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
  265. #endif
  266. max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
  267. lastpfn = max_low_pfn;
  268. #ifdef CONFIG_HIGHMEM
  269. max_zone_pfns[ZONE_HIGHMEM] = highend_pfn;
  270. lastpfn = highend_pfn;
  271. if (cpu_has_dc_aliases && max_low_pfn != highend_pfn) {
  272. printk(KERN_WARNING "This processor doesn't support highmem."
  273. " %ldk highmem ignored\n",
  274. (highend_pfn - max_low_pfn) << (PAGE_SHIFT - 10));
  275. max_zone_pfns[ZONE_HIGHMEM] = max_low_pfn;
  276. lastpfn = max_low_pfn;
  277. }
  278. #endif
  279. free_area_init_nodes(max_zone_pfns);
  280. }
  281. #ifdef CONFIG_64BIT
  282. static struct kcore_list kcore_kseg0;
  283. #endif
  284. static inline void mem_init_free_highmem(void)
  285. {
  286. #ifdef CONFIG_HIGHMEM
  287. unsigned long tmp;
  288. for (tmp = highstart_pfn; tmp < highend_pfn; tmp++) {
  289. struct page *page = pfn_to_page(tmp);
  290. if (!page_is_ram(tmp))
  291. SetPageReserved(page);
  292. else
  293. free_highmem_page(page);
  294. }
  295. #endif
  296. }
  297. unsigned __weak platform_maar_init(unsigned num_maars)
  298. {
  299. return 0;
  300. }
  301. static void maar_init(void)
  302. {
  303. unsigned num_maars, used, i;
  304. if (!cpu_has_maar)
  305. return;
  306. /* Detect the number of MAARs */
  307. write_c0_maari(~0);
  308. back_to_back_c0_hazard();
  309. num_maars = read_c0_maari() + 1;
  310. /* MAARs should be in pairs */
  311. WARN_ON(num_maars % 2);
  312. /* Configure the required MAARs */
  313. used = platform_maar_init(num_maars / 2);
  314. /* Disable any further MAARs */
  315. for (i = (used * 2); i < num_maars; i++) {
  316. write_c0_maari(i);
  317. back_to_back_c0_hazard();
  318. write_c0_maar(0);
  319. back_to_back_c0_hazard();
  320. }
  321. }
  322. void __init mem_init(void)
  323. {
  324. #ifdef CONFIG_HIGHMEM
  325. #ifdef CONFIG_DISCONTIGMEM
  326. #error "CONFIG_HIGHMEM and CONFIG_DISCONTIGMEM dont work together yet"
  327. #endif
  328. max_mapnr = highend_pfn ? highend_pfn : max_low_pfn;
  329. #else
  330. max_mapnr = max_low_pfn;
  331. #endif
  332. high_memory = (void *) __va(max_low_pfn << PAGE_SHIFT);
  333. maar_init();
  334. free_all_bootmem();
  335. setup_zero_pages(); /* Setup zeroed pages. */
  336. mem_init_free_highmem();
  337. mem_init_print_info(NULL);
  338. #ifdef CONFIG_64BIT
  339. if ((unsigned long) &_text > (unsigned long) CKSEG0)
  340. /* The -4 is a hack so that user tools don't have to handle
  341. the overflow. */
  342. kclist_add(&kcore_kseg0, (void *) CKSEG0,
  343. 0x80000000 - 4, KCORE_TEXT);
  344. #endif
  345. }
  346. #endif /* !CONFIG_NEED_MULTIPLE_NODES */
  347. void free_init_pages(const char *what, unsigned long begin, unsigned long end)
  348. {
  349. unsigned long pfn;
  350. for (pfn = PFN_UP(begin); pfn < PFN_DOWN(end); pfn++) {
  351. struct page *page = pfn_to_page(pfn);
  352. void *addr = phys_to_virt(PFN_PHYS(pfn));
  353. memset(addr, POISON_FREE_INITMEM, PAGE_SIZE);
  354. free_reserved_page(page);
  355. }
  356. printk(KERN_INFO "Freeing %s: %ldk freed\n", what, (end - begin) >> 10);
  357. }
  358. #ifdef CONFIG_BLK_DEV_INITRD
  359. void free_initrd_mem(unsigned long start, unsigned long end)
  360. {
  361. free_reserved_area((void *)start, (void *)end, POISON_FREE_INITMEM,
  362. "initrd");
  363. }
  364. #endif
  365. void (*free_init_pages_eva)(void *begin, void *end) = NULL;
  366. void __init_refok free_initmem(void)
  367. {
  368. prom_free_prom_memory();
  369. /*
  370. * Let the platform define a specific function to free the
  371. * init section since EVA may have used any possible mapping
  372. * between virtual and physical addresses.
  373. */
  374. if (free_init_pages_eva)
  375. free_init_pages_eva((void *)&__init_begin, (void *)&__init_end);
  376. else
  377. free_initmem_default(POISON_FREE_INITMEM);
  378. }
  379. #ifndef CONFIG_MIPS_PGD_C0_CONTEXT
  380. unsigned long pgd_current[NR_CPUS];
  381. #endif
  382. /*
  383. * gcc 3.3 and older have trouble determining that PTRS_PER_PGD and PGD_ORDER
  384. * are constants. So we use the variants from asm-offset.h until that gcc
  385. * will officially be retired.
  386. *
  387. * Align swapper_pg_dir in to 64K, allows its address to be loaded
  388. * with a single LUI instruction in the TLB handlers. If we used
  389. * __aligned(64K), its size would get rounded up to the alignment
  390. * size, and waste space. So we place it in its own section and align
  391. * it in the linker script.
  392. */
  393. pgd_t swapper_pg_dir[_PTRS_PER_PGD] __section(.bss..swapper_pg_dir);
  394. #ifndef __PAGETABLE_PMD_FOLDED
  395. pmd_t invalid_pmd_table[PTRS_PER_PMD] __page_aligned_bss;
  396. #endif
  397. pte_t invalid_pte_table[PTRS_PER_PTE] __page_aligned_bss;