init.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  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. pagefault_disable();
  84. idx = (addr >> PAGE_SHIFT) & (FIX_N_COLOURS - 1);
  85. idx += in_interrupt() ? FIX_N_COLOURS : 0;
  86. vaddr = __fix_to_virt(FIX_CMAP_END - idx);
  87. pte = mk_pte(page, prot);
  88. #if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32)
  89. entrylo = pte.pte_high;
  90. #else
  91. entrylo = pte_to_entrylo(pte_val(pte));
  92. #endif
  93. local_irq_save(flags);
  94. old_ctx = read_c0_entryhi();
  95. write_c0_entryhi(vaddr & (PAGE_MASK << 1));
  96. write_c0_entrylo0(entrylo);
  97. write_c0_entrylo1(entrylo);
  98. tlbidx = read_c0_wired();
  99. write_c0_wired(tlbidx + 1);
  100. write_c0_index(tlbidx);
  101. mtc0_tlbw_hazard();
  102. tlb_write_indexed();
  103. tlbw_use_hazard();
  104. write_c0_entryhi(old_ctx);
  105. local_irq_restore(flags);
  106. return (void*) vaddr;
  107. }
  108. void *kmap_coherent(struct page *page, unsigned long addr)
  109. {
  110. return __kmap_pgprot(page, addr, PAGE_KERNEL);
  111. }
  112. void *kmap_noncoherent(struct page *page, unsigned long addr)
  113. {
  114. return __kmap_pgprot(page, addr, PAGE_KERNEL_NC);
  115. }
  116. void kunmap_coherent(void)
  117. {
  118. unsigned int wired;
  119. unsigned long flags, old_ctx;
  120. local_irq_save(flags);
  121. old_ctx = read_c0_entryhi();
  122. wired = read_c0_wired() - 1;
  123. write_c0_wired(wired);
  124. write_c0_index(wired);
  125. write_c0_entryhi(UNIQUE_ENTRYHI(wired));
  126. write_c0_entrylo0(0);
  127. write_c0_entrylo1(0);
  128. mtc0_tlbw_hazard();
  129. tlb_write_indexed();
  130. tlbw_use_hazard();
  131. write_c0_entryhi(old_ctx);
  132. local_irq_restore(flags);
  133. pagefault_enable();
  134. }
  135. void copy_user_highpage(struct page *to, struct page *from,
  136. unsigned long vaddr, struct vm_area_struct *vma)
  137. {
  138. void *vfrom, *vto;
  139. vto = kmap_atomic(to);
  140. if (cpu_has_dc_aliases &&
  141. page_mapped(from) && !Page_dcache_dirty(from)) {
  142. vfrom = kmap_coherent(from, vaddr);
  143. copy_page(vto, vfrom);
  144. kunmap_coherent();
  145. } else {
  146. vfrom = kmap_atomic(from);
  147. copy_page(vto, vfrom);
  148. kunmap_atomic(vfrom);
  149. }
  150. if ((!cpu_has_ic_fills_f_dc) ||
  151. pages_do_alias((unsigned long)vto, vaddr & PAGE_MASK))
  152. flush_data_cache_page((unsigned long)vto);
  153. kunmap_atomic(vto);
  154. /* Make sure this page is cleared on other CPU's too before using it */
  155. smp_wmb();
  156. }
  157. void copy_to_user_page(struct vm_area_struct *vma,
  158. struct page *page, unsigned long vaddr, void *dst, const void *src,
  159. unsigned long len)
  160. {
  161. if (cpu_has_dc_aliases &&
  162. page_mapped(page) && !Page_dcache_dirty(page)) {
  163. void *vto = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK);
  164. memcpy(vto, src, len);
  165. kunmap_coherent();
  166. } else {
  167. memcpy(dst, src, len);
  168. if (cpu_has_dc_aliases)
  169. SetPageDcacheDirty(page);
  170. }
  171. if ((vma->vm_flags & VM_EXEC) && !cpu_has_ic_fills_f_dc)
  172. flush_cache_page(vma, vaddr, page_to_pfn(page));
  173. }
  174. void copy_from_user_page(struct vm_area_struct *vma,
  175. struct page *page, unsigned long vaddr, void *dst, const void *src,
  176. unsigned long len)
  177. {
  178. if (cpu_has_dc_aliases &&
  179. page_mapped(page) && !Page_dcache_dirty(page)) {
  180. void *vfrom = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK);
  181. memcpy(dst, vfrom, len);
  182. kunmap_coherent();
  183. } else {
  184. memcpy(dst, src, len);
  185. if (cpu_has_dc_aliases)
  186. SetPageDcacheDirty(page);
  187. }
  188. }
  189. EXPORT_SYMBOL_GPL(copy_from_user_page);
  190. void __init fixrange_init(unsigned long start, unsigned long end,
  191. pgd_t *pgd_base)
  192. {
  193. #ifdef CONFIG_HIGHMEM
  194. pgd_t *pgd;
  195. pud_t *pud;
  196. pmd_t *pmd;
  197. pte_t *pte;
  198. int i, j, k;
  199. unsigned long vaddr;
  200. vaddr = start;
  201. i = __pgd_offset(vaddr);
  202. j = __pud_offset(vaddr);
  203. k = __pmd_offset(vaddr);
  204. pgd = pgd_base + i;
  205. for ( ; (i < PTRS_PER_PGD) && (vaddr < end); pgd++, i++) {
  206. pud = (pud_t *)pgd;
  207. for ( ; (j < PTRS_PER_PUD) && (vaddr < end); pud++, j++) {
  208. pmd = (pmd_t *)pud;
  209. for (; (k < PTRS_PER_PMD) && (vaddr < end); pmd++, k++) {
  210. if (pmd_none(*pmd)) {
  211. pte = (pte_t *) alloc_bootmem_low_pages(PAGE_SIZE);
  212. set_pmd(pmd, __pmd((unsigned long)pte));
  213. BUG_ON(pte != pte_offset_kernel(pmd, 0));
  214. }
  215. vaddr += PMD_SIZE;
  216. }
  217. k = 0;
  218. }
  219. j = 0;
  220. }
  221. #endif
  222. }
  223. #ifndef CONFIG_NEED_MULTIPLE_NODES
  224. int page_is_ram(unsigned long pagenr)
  225. {
  226. int i;
  227. for (i = 0; i < boot_mem_map.nr_map; i++) {
  228. unsigned long addr, end;
  229. switch (boot_mem_map.map[i].type) {
  230. case BOOT_MEM_RAM:
  231. case BOOT_MEM_INIT_RAM:
  232. break;
  233. default:
  234. /* not usable memory */
  235. continue;
  236. }
  237. addr = PFN_UP(boot_mem_map.map[i].addr);
  238. end = PFN_DOWN(boot_mem_map.map[i].addr +
  239. boot_mem_map.map[i].size);
  240. if (pagenr >= addr && pagenr < end)
  241. return 1;
  242. }
  243. return 0;
  244. }
  245. void __init paging_init(void)
  246. {
  247. unsigned long max_zone_pfns[MAX_NR_ZONES];
  248. unsigned long lastpfn __maybe_unused;
  249. pagetable_init();
  250. #ifdef CONFIG_HIGHMEM
  251. kmap_init();
  252. #endif
  253. #ifdef CONFIG_ZONE_DMA
  254. max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
  255. #endif
  256. #ifdef CONFIG_ZONE_DMA32
  257. max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
  258. #endif
  259. max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
  260. lastpfn = max_low_pfn;
  261. #ifdef CONFIG_HIGHMEM
  262. max_zone_pfns[ZONE_HIGHMEM] = highend_pfn;
  263. lastpfn = highend_pfn;
  264. if (cpu_has_dc_aliases && max_low_pfn != highend_pfn) {
  265. printk(KERN_WARNING "This processor doesn't support highmem."
  266. " %ldk highmem ignored\n",
  267. (highend_pfn - max_low_pfn) << (PAGE_SHIFT - 10));
  268. max_zone_pfns[ZONE_HIGHMEM] = max_low_pfn;
  269. lastpfn = max_low_pfn;
  270. }
  271. #endif
  272. free_area_init_nodes(max_zone_pfns);
  273. }
  274. #ifdef CONFIG_64BIT
  275. static struct kcore_list kcore_kseg0;
  276. #endif
  277. static inline void mem_init_free_highmem(void)
  278. {
  279. #ifdef CONFIG_HIGHMEM
  280. unsigned long tmp;
  281. for (tmp = highstart_pfn; tmp < highend_pfn; tmp++) {
  282. struct page *page = pfn_to_page(tmp);
  283. if (!page_is_ram(tmp))
  284. SetPageReserved(page);
  285. else
  286. free_highmem_page(page);
  287. }
  288. #endif
  289. }
  290. unsigned __weak platform_maar_init(unsigned num_maars)
  291. {
  292. return 0;
  293. }
  294. static void maar_init(void)
  295. {
  296. unsigned num_maars, used, i;
  297. if (!cpu_has_maar)
  298. return;
  299. /* Detect the number of MAARs */
  300. write_c0_maari(~0);
  301. back_to_back_c0_hazard();
  302. num_maars = read_c0_maari() + 1;
  303. /* MAARs should be in pairs */
  304. WARN_ON(num_maars % 2);
  305. /* Configure the required MAARs */
  306. used = platform_maar_init(num_maars / 2);
  307. /* Disable any further MAARs */
  308. for (i = (used * 2); i < num_maars; i++) {
  309. write_c0_maari(i);
  310. back_to_back_c0_hazard();
  311. write_c0_maar(0);
  312. back_to_back_c0_hazard();
  313. }
  314. }
  315. void __init mem_init(void)
  316. {
  317. #ifdef CONFIG_HIGHMEM
  318. #ifdef CONFIG_DISCONTIGMEM
  319. #error "CONFIG_HIGHMEM and CONFIG_DISCONTIGMEM dont work together yet"
  320. #endif
  321. max_mapnr = highend_pfn ? highend_pfn : max_low_pfn;
  322. #else
  323. max_mapnr = max_low_pfn;
  324. #endif
  325. high_memory = (void *) __va(max_low_pfn << PAGE_SHIFT);
  326. maar_init();
  327. free_all_bootmem();
  328. setup_zero_pages(); /* Setup zeroed pages. */
  329. mem_init_free_highmem();
  330. mem_init_print_info(NULL);
  331. #ifdef CONFIG_64BIT
  332. if ((unsigned long) &_text > (unsigned long) CKSEG0)
  333. /* The -4 is a hack so that user tools don't have to handle
  334. the overflow. */
  335. kclist_add(&kcore_kseg0, (void *) CKSEG0,
  336. 0x80000000 - 4, KCORE_TEXT);
  337. #endif
  338. }
  339. #endif /* !CONFIG_NEED_MULTIPLE_NODES */
  340. void free_init_pages(const char *what, unsigned long begin, unsigned long end)
  341. {
  342. unsigned long pfn;
  343. for (pfn = PFN_UP(begin); pfn < PFN_DOWN(end); pfn++) {
  344. struct page *page = pfn_to_page(pfn);
  345. void *addr = phys_to_virt(PFN_PHYS(pfn));
  346. memset(addr, POISON_FREE_INITMEM, PAGE_SIZE);
  347. free_reserved_page(page);
  348. }
  349. printk(KERN_INFO "Freeing %s: %ldk freed\n", what, (end - begin) >> 10);
  350. }
  351. #ifdef CONFIG_BLK_DEV_INITRD
  352. void free_initrd_mem(unsigned long start, unsigned long end)
  353. {
  354. free_reserved_area((void *)start, (void *)end, POISON_FREE_INITMEM,
  355. "initrd");
  356. }
  357. #endif
  358. void (*free_init_pages_eva)(void *begin, void *end) = NULL;
  359. void __init_refok free_initmem(void)
  360. {
  361. prom_free_prom_memory();
  362. /*
  363. * Let the platform define a specific function to free the
  364. * init section since EVA may have used any possible mapping
  365. * between virtual and physical addresses.
  366. */
  367. if (free_init_pages_eva)
  368. free_init_pages_eva((void *)&__init_begin, (void *)&__init_end);
  369. else
  370. free_initmem_default(POISON_FREE_INITMEM);
  371. }
  372. #ifndef CONFIG_MIPS_PGD_C0_CONTEXT
  373. unsigned long pgd_current[NR_CPUS];
  374. #endif
  375. /*
  376. * gcc 3.3 and older have trouble determining that PTRS_PER_PGD and PGD_ORDER
  377. * are constants. So we use the variants from asm-offset.h until that gcc
  378. * will officially be retired.
  379. *
  380. * Align swapper_pg_dir in to 64K, allows its address to be loaded
  381. * with a single LUI instruction in the TLB handlers. If we used
  382. * __aligned(64K), its size would get rounded up to the alignment
  383. * size, and waste space. So we place it in its own section and align
  384. * it in the linker script.
  385. */
  386. pgd_t swapper_pg_dir[_PTRS_PER_PGD] __section(.bss..swapper_pg_dir);
  387. #ifndef __PAGETABLE_PMD_FOLDED
  388. pmd_t invalid_pmd_table[PTRS_PER_PMD] __page_aligned_bss;
  389. #endif
  390. pte_t invalid_pte_table[PTRS_PER_PTE] __page_aligned_bss;