init.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:47k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*  $Id: init.c,v 1.207 2001/11/30 06:55:39 davem Exp $
  2.  *  arch/sparc64/mm/init.c
  3.  *
  4.  *  Copyright (C) 1996-1999 David S. Miller (davem@caip.rutgers.edu)
  5.  *  Copyright (C) 1997-1999 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
  6.  */
  7.  
  8. #include <linux/config.h>
  9. #include <linux/kernel.h>
  10. #include <linux/sched.h>
  11. #include <linux/string.h>
  12. #include <linux/init.h>
  13. #include <linux/bootmem.h>
  14. #include <linux/mm.h>
  15. #include <linux/slab.h>
  16. #include <linux/blk.h>
  17. #include <linux/swap.h>
  18. #include <linux/swapctl.h>
  19. #include <linux/pagemap.h>
  20. #include <linux/fs.h>
  21. #include <linux/seq_file.h>
  22. #include <asm/head.h>
  23. #include <asm/system.h>
  24. #include <asm/page.h>
  25. #include <asm/pgalloc.h>
  26. #include <asm/pgtable.h>
  27. #include <asm/oplib.h>
  28. #include <asm/iommu.h>
  29. #include <asm/io.h>
  30. #include <asm/uaccess.h>
  31. #include <asm/mmu_context.h>
  32. #include <asm/dma.h>
  33. #include <asm/starfire.h>
  34. #include <asm/tlb.h>
  35. #include <asm/spitfire.h>
  36. mmu_gather_t mmu_gathers[NR_CPUS];
  37. extern void device_scan(void);
  38. struct sparc_phys_banks sp_banks[SPARC_PHYS_BANKS];
  39. unsigned long *sparc64_valid_addr_bitmap;
  40. /* Ugly, but necessary... -DaveM */
  41. unsigned long phys_base;
  42. enum ultra_tlb_layout tlb_type = spitfire;
  43. /* get_new_mmu_context() uses "cache + 1".  */
  44. spinlock_t ctx_alloc_lock = SPIN_LOCK_UNLOCKED;
  45. unsigned long tlb_context_cache = CTX_FIRST_VERSION - 1;
  46. #define CTX_BMAP_SLOTS (1UL << (CTX_VERSION_SHIFT - 6))
  47. unsigned long mmu_context_bmap[CTX_BMAP_SLOTS];
  48. /* References to section boundaries */
  49. extern char __init_begin, __init_end, _start, _end, etext, edata;
  50. /* Initial ramdisk setup */
  51. extern unsigned int sparc_ramdisk_image;
  52. extern unsigned int sparc_ramdisk_size;
  53. struct page *mem_map_zero;
  54. int bigkernel = 0;
  55. int do_check_pgt_cache(int low, int high)
  56. {
  57.         int freed = 0;
  58. if (pgtable_cache_size > high) {
  59. do {
  60. #ifdef CONFIG_SMP
  61. if (pgd_quicklist)
  62. free_pgd_slow(get_pgd_fast()), freed++;
  63. #endif
  64. if (pte_quicklist[0])
  65. free_pte_slow(pte_alloc_one_fast(NULL, 0)), freed++;
  66. if (pte_quicklist[1])
  67. free_pte_slow(pte_alloc_one_fast(NULL, 1 << (PAGE_SHIFT + 10))), freed++;
  68. } while (pgtable_cache_size > low);
  69. }
  70. #ifndef CONFIG_SMP 
  71.         if (pgd_cache_size > high / 4) {
  72. struct page *page, *page2;
  73.                 for (page2 = NULL, page = (struct page *)pgd_quicklist; page;) {
  74.                         if ((unsigned long)page->pprev_hash == 3) {
  75.                                 if (page2)
  76.                                         page2->next_hash = page->next_hash;
  77.                                 else
  78.                                         (struct page *)pgd_quicklist = page->next_hash;
  79.                                 page->next_hash = NULL;
  80.                                 page->pprev_hash = NULL;
  81.                                 pgd_cache_size -= 2;
  82.                                 __free_page(page);
  83.                                 freed++;
  84.                                 if (page2)
  85.                                         page = page2->next_hash;
  86.                                 else
  87.                                         page = (struct page *)pgd_quicklist;
  88.                                 if (pgd_cache_size <= low / 4)
  89.                                         break;
  90.                                 continue;
  91.                         }
  92.                         page2 = page;
  93.                         page = page->next_hash;
  94.                 }
  95.         }
  96. #endif
  97.         return freed;
  98. }
  99. extern void __update_mmu_cache(struct vm_area_struct *, unsigned long, pte_t);
  100. #ifdef CONFIG_DEBUG_DCFLUSH
  101. atomic_t dcpage_flushes = ATOMIC_INIT(0);
  102. #ifdef CONFIG_SMP
  103. atomic_t dcpage_flushes_xcall = ATOMIC_INIT(0);
  104. #endif
  105. #endif
  106. __inline__ void flush_dcache_page_impl(struct page *page)
  107. {
  108. #ifdef CONFIG_DEBUG_DCFLUSH
  109. atomic_inc(&dcpage_flushes);
  110. #endif
  111. #if (L1DCACHE_SIZE > PAGE_SIZE)
  112. __flush_dcache_page(page->virtual,
  113.     ((tlb_type == spitfire) &&
  114.      page->mapping != NULL));
  115. #else
  116. if (page->mapping != NULL &&
  117.     tlb_type == spitfire)
  118. __flush_icache_page(__pa(page->virtual));
  119. #endif
  120. }
  121. #define PG_dcache_dirty PG_arch_1
  122. #define dcache_dirty_cpu(page) 
  123. (((page)->flags >> 24) & (NR_CPUS - 1UL))
  124. static __inline__ void set_dcache_dirty(struct page *page)
  125. {
  126. unsigned long mask = smp_processor_id();
  127. unsigned long non_cpu_bits = (1UL << 24UL) - 1UL;
  128. mask = (mask << 24) | (1UL << PG_dcache_dirty);
  129. __asm__ __volatile__("1:nt"
  130.      "ldx [%2], %%g7nt"
  131.      "and %%g7, %1, %%g5nt"
  132.      "or %%g5, %0, %%g5nt"
  133.      "casx [%2], %%g7, %%g5nt"
  134.      "cmp %%g7, %%g5nt"
  135.      "bne,pn %%xcc, 1bnt"
  136.      " membar #StoreLoad | #StoreStore"
  137.      : /* no outputs */
  138.      : "r" (mask), "r" (non_cpu_bits), "r" (&page->flags)
  139.      : "g5", "g7");
  140. }
  141. static __inline__ void clear_dcache_dirty_cpu(struct page *page, unsigned long cpu)
  142. {
  143. unsigned long mask = (1UL << PG_dcache_dirty);
  144. __asm__ __volatile__("! test_and_clear_dcache_dirtyn"
  145.      "1:nt"
  146.      "ldx [%2], %%g7nt"
  147.      "srlx %%g7, 24, %%g5nt"
  148.      "cmp %%g5, %0nt"
  149.      "bne,pn %%icc, 2fnt"
  150.      " andn %%g7, %1, %%g5nt"
  151.      "casx [%2], %%g7, %%g5nt"
  152.      "cmp %%g7, %%g5nt"
  153.      "bne,pn %%xcc, 1bnt"
  154.      " membar #StoreLoad | #StoreStoren"
  155.      "2:"
  156.      : /* no outputs */
  157.      : "r" (cpu), "r" (mask), "r" (&page->flags)
  158.      : "g5", "g7");
  159. }
  160. void update_mmu_cache(struct vm_area_struct *vma, unsigned long address, pte_t pte)
  161. {
  162. struct page *page = pte_page(pte);
  163. unsigned long pg_flags;
  164. if (VALID_PAGE(page) &&
  165.     page->mapping &&
  166.     ((pg_flags = page->flags) & (1UL << PG_dcache_dirty))) {
  167. int cpu = (pg_flags >> 24);
  168. /* This is just to optimize away some function calls
  169.  * in the SMP case.
  170.  */
  171. if (cpu == smp_processor_id())
  172. flush_dcache_page_impl(page);
  173. else
  174. smp_flush_dcache_page_impl(page, cpu);
  175. clear_dcache_dirty_cpu(page, cpu);
  176. }
  177. __update_mmu_cache(vma, address, pte);
  178. }
  179. void flush_dcache_page(struct page *page)
  180. {
  181. int dirty = test_bit(PG_dcache_dirty, &page->flags);
  182. int dirty_cpu = dcache_dirty_cpu(page);
  183. if (page->mapping &&
  184.     page->mapping->i_mmap == NULL &&
  185.     page->mapping->i_mmap_shared == NULL) {
  186. if (dirty) {
  187. if (dirty_cpu == smp_processor_id())
  188. return;
  189. smp_flush_dcache_page_impl(page, dirty_cpu);
  190. }
  191. set_dcache_dirty(page);
  192. } else {
  193. /* We could delay the flush for the !page->mapping
  194.  * case too.  But that case is for exec env/arg
  195.  * pages and those are %99 certainly going to get
  196.  * faulted into the tlb (and thus flushed) anyways.
  197.  */
  198. flush_dcache_page_impl(page);
  199. }
  200. }
  201. void flush_icache_range(unsigned long start, unsigned long end)
  202. {
  203. /* Cheetah has coherent I-cache. */
  204. if (tlb_type == spitfire) {
  205. unsigned long kaddr;
  206. for (kaddr = start; kaddr < end; kaddr += PAGE_SIZE)
  207. __flush_icache_page(__get_phys(kaddr));
  208. }
  209. }
  210. void show_mem(void)
  211. {
  212. printk("Mem-info:n");
  213. show_free_areas();
  214. printk("Free swap:       %6dkBn",
  215.        nr_swap_pages << (PAGE_SHIFT-10));
  216. printk("%ld pages of RAMn", num_physpages);
  217. printk("%d free pagesn", nr_free_pages());
  218. printk("%d pages in page table cachen",pgtable_cache_size);
  219. #ifndef CONFIG_SMP
  220. printk("%d entries in page dir cachen",pgd_cache_size);
  221. #endif
  222. show_buffers();
  223. }
  224. void mmu_info(struct seq_file *m)
  225. {
  226. if (tlb_type == cheetah)
  227. seq_printf(m, "MMU Typet: Cheetahn");
  228. else if (tlb_type == spitfire)
  229. seq_printf(m, "MMU Typet: Spitfiren");
  230. else
  231. seq_printf(m, "MMU Typet: ???n");
  232. #ifdef CONFIG_DEBUG_DCFLUSH
  233. seq_printf(m, "DCPageFlushest: %dn",
  234.    atomic_read(&dcpage_flushes));
  235. #ifdef CONFIG_SMP
  236. seq_printf(m, "DCPageFlushesXCt: %dn",
  237.    atomic_read(&dcpage_flushes_xcall));
  238. #endif /* CONFIG_SMP */
  239. #endif /* CONFIG_DEBUG_DCFLUSH */
  240. }
  241. struct linux_prom_translation {
  242. unsigned long virt;
  243. unsigned long size;
  244. unsigned long data;
  245. };
  246. extern unsigned long prom_boot_page;
  247. extern void prom_remap(unsigned long physpage, unsigned long virtpage, int mmu_ihandle);
  248. extern int prom_get_mmu_ihandle(void);
  249. extern void register_prom_callbacks(void);
  250. /* Exported for SMP bootup purposes. */
  251. unsigned long kern_locked_tte_data;
  252. void __init early_pgtable_allocfail(char *type)
  253. {
  254. prom_printf("inherit_prom_mappings: Cannot alloc kernel %s.n", type);
  255. prom_halt();
  256. }
  257. #define BASE_PAGE_SIZE 8192
  258. static pmd_t *prompmd;
  259. /*
  260.  * Translate PROM's mapping we capture at boot time into physical address.
  261.  * The second parameter is only set from prom_callback() invocations.
  262.  */
  263. unsigned long prom_virt_to_phys(unsigned long promva, int *error)
  264. {
  265. pmd_t *pmdp = prompmd + ((promva >> 23) & 0x7ff);
  266. pte_t *ptep;
  267. unsigned long base;
  268. if (pmd_none(*pmdp)) {
  269. if (error)
  270. *error = 1;
  271. return(0);
  272. }
  273. ptep = (pte_t *)pmd_page(*pmdp) + ((promva >> 13) & 0x3ff);
  274. if (!pte_present(*ptep)) {
  275. if (error)
  276. *error = 1;
  277. return(0);
  278. }
  279. if (error) {
  280. *error = 0;
  281. return(pte_val(*ptep));
  282. }
  283. base = pte_val(*ptep) & _PAGE_PADDR;
  284. return(base + (promva & (BASE_PAGE_SIZE - 1)));
  285. }
  286. static void inherit_prom_mappings(void)
  287. {
  288. struct linux_prom_translation *trans;
  289. unsigned long phys_page, tte_vaddr, tte_data;
  290. void (*remap_func)(unsigned long, unsigned long, int);
  291. pmd_t *pmdp;
  292. pte_t *ptep;
  293. int node, n, i, tsz;
  294. extern unsigned int obp_iaddr_patch[2], obp_daddr_patch[2];
  295. node = prom_finddevice("/virtual-memory");
  296. n = prom_getproplen(node, "translations");
  297. if (n == 0 || n == -1) {
  298. prom_printf("Couldn't get translation propertyn");
  299. prom_halt();
  300. }
  301. n += 5 * sizeof(struct linux_prom_translation);
  302. for (tsz = 1; tsz < n; tsz <<= 1)
  303. /* empty */;
  304. trans = __alloc_bootmem(tsz, SMP_CACHE_BYTES, 0UL);
  305. if (trans == NULL) {
  306. prom_printf("inherit_prom_mappings: Cannot alloc translations.n");
  307. prom_halt();
  308. }
  309. memset(trans, 0, tsz);
  310. if ((n = prom_getproperty(node, "translations", (char *)trans, tsz)) == -1) {
  311. prom_printf("Couldn't get translation propertyn");
  312. prom_halt();
  313. }
  314. n = n / sizeof(*trans);
  315. /*
  316.  * The obp translations are saved based on 8k pagesize, since obp can use
  317.  * a mixture of pagesizes. Misses to the 0xf0000000 - 0x100000000, ie obp 
  318.  * range, are handled in entry.S and do not use the vpte scheme (see rant
  319.  * in inherit_locked_prom_mappings()).
  320.  */
  321. #define OBP_PMD_SIZE 2048
  322. prompmd = __alloc_bootmem(OBP_PMD_SIZE, OBP_PMD_SIZE, 0UL);
  323. if (prompmd == NULL)
  324. early_pgtable_allocfail("pmd");
  325. memset(prompmd, 0, OBP_PMD_SIZE);
  326. for (i = 0; i < n; i++) {
  327. unsigned long vaddr;
  328. if (trans[i].virt >= LOW_OBP_ADDRESS && trans[i].virt < HI_OBP_ADDRESS) {
  329. for (vaddr = trans[i].virt;
  330.      ((vaddr < trans[i].virt + trans[i].size) && 
  331.      (vaddr < HI_OBP_ADDRESS));
  332.      vaddr += BASE_PAGE_SIZE) {
  333. unsigned long val;
  334. pmdp = prompmd + ((vaddr >> 23) & 0x7ff);
  335. if (pmd_none(*pmdp)) {
  336. ptep = __alloc_bootmem(BASE_PAGE_SIZE,
  337.        BASE_PAGE_SIZE,
  338.        0UL);
  339. if (ptep == NULL)
  340. early_pgtable_allocfail("pte");
  341. memset(ptep, 0, BASE_PAGE_SIZE);
  342. pmd_set(pmdp, ptep);
  343. }
  344. ptep = (pte_t *)pmd_page(*pmdp) +
  345. ((vaddr >> 13) & 0x3ff);
  346. val = trans[i].data;
  347. /* Clear diag TTE bits. */
  348. if (tlb_type == spitfire)
  349. val &= ~0x0003fe0000000000UL;
  350. set_pte (ptep, __pte(val | _PAGE_MODIFIED));
  351. trans[i].data += BASE_PAGE_SIZE;
  352. }
  353. }
  354. }
  355. phys_page = __pa(prompmd);
  356. obp_iaddr_patch[0] |= (phys_page >> 10);
  357. obp_iaddr_patch[1] |= (phys_page & 0x3ff);
  358. flushi((long)&obp_iaddr_patch[0]);
  359. obp_daddr_patch[0] |= (phys_page >> 10);
  360. obp_daddr_patch[1] |= (phys_page & 0x3ff);
  361. flushi((long)&obp_daddr_patch[0]);
  362. /* Now fixup OBP's idea about where we really are mapped. */
  363. prom_printf("Remapping the kernel... ");
  364. /* Spitfire Errata #32 workaround */
  365. __asm__ __volatile__("stxa %0, [%1] %2nt"
  366.      "flush %%g6"
  367.      : /* No outputs */
  368.      : "r" (0),
  369.      "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
  370. switch (tlb_type) {
  371. default:
  372. case spitfire:
  373. phys_page = spitfire_get_dtlb_data(sparc64_highest_locked_tlbent());
  374. break;
  375. case cheetah:
  376. phys_page = cheetah_get_litlb_data(sparc64_highest_locked_tlbent());
  377. break;
  378. };
  379. phys_page &= _PAGE_PADDR;
  380. phys_page += ((unsigned long)&prom_boot_page -
  381.       (unsigned long)KERNBASE);
  382. if (tlb_type == spitfire) {
  383. /* Lock this into i/d tlb entry 59 */
  384. __asm__ __volatile__(
  385. "stxa %%g0, [%2] %3nt"
  386. "stxa %0, [%1] %4nt"
  387. "membar #Syncnt"
  388. "flush %%g6nt"
  389. "stxa %%g0, [%2] %5nt"
  390. "stxa %0, [%1] %6nt"
  391. "membar #Syncnt"
  392. "flush %%g6"
  393. : : "r" (phys_page | _PAGE_VALID | _PAGE_SZ8K | _PAGE_CP |
  394.  _PAGE_CV | _PAGE_P | _PAGE_L | _PAGE_W),
  395. "r" (59 << 3), "r" (TLB_TAG_ACCESS),
  396. "i" (ASI_DMMU), "i" (ASI_DTLB_DATA_ACCESS),
  397. "i" (ASI_IMMU), "i" (ASI_ITLB_DATA_ACCESS)
  398. : "memory");
  399. } else if (tlb_type == cheetah) {
  400. /* Lock this into i/d tlb-0 entry 11 */
  401. __asm__ __volatile__(
  402. "stxa %%g0, [%2] %3nt"
  403. "stxa %0, [%1] %4nt"
  404. "membar #Syncnt"
  405. "flush %%g6nt"
  406. "stxa %%g0, [%2] %5nt"
  407. "stxa %0, [%1] %6nt"
  408. "membar #Syncnt"
  409. "flush %%g6"
  410. : : "r" (phys_page | _PAGE_VALID | _PAGE_SZ8K | _PAGE_CP |
  411.  _PAGE_CV | _PAGE_P | _PAGE_L | _PAGE_W),
  412. "r" ((0 << 16) | (11 << 3)), "r" (TLB_TAG_ACCESS),
  413. "i" (ASI_DMMU), "i" (ASI_DTLB_DATA_ACCESS),
  414. "i" (ASI_IMMU), "i" (ASI_ITLB_DATA_ACCESS)
  415. : "memory");
  416. } else {
  417. /* Implement me :-) */
  418. BUG();
  419. }
  420. tte_vaddr = (unsigned long) KERNBASE;
  421. /* Spitfire Errata #32 workaround */
  422. __asm__ __volatile__("stxa %0, [%1] %2nt"
  423.      "flush %%g6"
  424.      : /* No outputs */
  425.      : "r" (0),
  426.      "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
  427. if (tlb_type == spitfire)
  428. tte_data = spitfire_get_dtlb_data(sparc64_highest_locked_tlbent());
  429. else
  430. tte_data = cheetah_get_ldtlb_data(sparc64_highest_locked_tlbent());
  431. kern_locked_tte_data = tte_data;
  432. remap_func = (void *)  ((unsigned long) &prom_remap -
  433. (unsigned long) &prom_boot_page);
  434. /* Spitfire Errata #32 workaround */
  435. __asm__ __volatile__("stxa %0, [%1] %2nt"
  436.      "flush %%g6"
  437.      : /* No outputs */
  438.      : "r" (0),
  439.      "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
  440. remap_func((tlb_type == spitfire ?
  441.     (spitfire_get_dtlb_data(sparc64_highest_locked_tlbent()) & _PAGE_PADDR) :
  442.     (cheetah_get_litlb_data(sparc64_highest_locked_tlbent()) & _PAGE_PADDR)),
  443.    (unsigned long) KERNBASE,
  444.    prom_get_mmu_ihandle());
  445. if (bigkernel)
  446. remap_func(((tte_data + 0x400000) & _PAGE_PADDR),
  447. (unsigned long) KERNBASE + 0x400000, prom_get_mmu_ihandle());
  448. /* Flush out that temporary mapping. */
  449. spitfire_flush_dtlb_nucleus_page(0x0);
  450. spitfire_flush_itlb_nucleus_page(0x0);
  451. /* Now lock us back into the TLBs via OBP. */
  452. prom_dtlb_load(sparc64_highest_locked_tlbent(), tte_data, tte_vaddr);
  453. prom_itlb_load(sparc64_highest_locked_tlbent(), tte_data, tte_vaddr);
  454. if (bigkernel) {
  455. prom_dtlb_load(sparc64_highest_locked_tlbent()-1, tte_data + 0x400000, 
  456. tte_vaddr + 0x400000);
  457. prom_itlb_load(sparc64_highest_locked_tlbent()-1, tte_data + 0x400000, 
  458. tte_vaddr + 0x400000);
  459. }
  460. /* Re-read translations property. */
  461. if ((n = prom_getproperty(node, "translations", (char *)trans, tsz)) == -1) {
  462. prom_printf("Couldn't get translation propertyn");
  463. prom_halt();
  464. }
  465. n = n / sizeof(*trans);
  466. for (i = 0; i < n; i++) {
  467. unsigned long vaddr = trans[i].virt;
  468. unsigned long size = trans[i].size;
  469. if (vaddr < 0xf0000000UL) {
  470. unsigned long avoid_start = (unsigned long) KERNBASE;
  471. unsigned long avoid_end = avoid_start + (4 * 1024 * 1024);
  472. if (bigkernel)
  473. avoid_end += (4 * 1024 * 1024);
  474. if (vaddr < avoid_start) {
  475. unsigned long top = vaddr + size;
  476. if (top > avoid_start)
  477. top = avoid_start;
  478. prom_unmap(top - vaddr, vaddr);
  479. }
  480. if ((vaddr + size) > avoid_end) {
  481. unsigned long bottom = vaddr;
  482. if (bottom < avoid_end)
  483. bottom = avoid_end;
  484. prom_unmap((vaddr + size) - bottom, bottom);
  485. }
  486. }
  487. }
  488. prom_printf("done.n");
  489. register_prom_callbacks();
  490. }
  491. /* The OBP specifications for sun4u mark 0xfffffffc00000000 and
  492.  * upwards as reserved for use by the firmware (I wonder if this
  493.  * will be the same on Cheetah...).  We use this virtual address
  494.  * range for the VPTE table mappings of the nucleus so we need
  495.  * to zap them when we enter the PROM.  -DaveM
  496.  */
  497. static void __flush_nucleus_vptes(void)
  498. {
  499. unsigned long prom_reserved_base = 0xfffffffc00000000UL;
  500. int i;
  501. /* Only DTLB must be checked for VPTE entries. */
  502. if (tlb_type == spitfire) {
  503. for (i = 0; i < 63; i++) {
  504. unsigned long tag;
  505. /* Spitfire Errata #32 workaround */
  506. __asm__ __volatile__("stxa %0, [%1] %2nt"
  507.      "flush %%g6"
  508.      : /* No outputs */
  509.      : "r" (0),
  510.      "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
  511. tag = spitfire_get_dtlb_tag(i);
  512. if (((tag & ~(PAGE_MASK)) == 0) &&
  513.     ((tag &  (PAGE_MASK)) >= prom_reserved_base)) {
  514. __asm__ __volatile__("stxa %%g0, [%0] %1nt"
  515.      "membar #Sync"
  516.      : /* no outputs */
  517.      : "r" (TLB_TAG_ACCESS), "i" (ASI_DMMU));
  518. spitfire_put_dtlb_data(i, 0x0UL);
  519. }
  520. }
  521. } else if (tlb_type == cheetah) {
  522. for (i = 0; i < 512; i++) {
  523. unsigned long tag = cheetah_get_dtlb_tag(i);
  524. if ((tag & ~PAGE_MASK) == 0 &&
  525.     (tag & PAGE_MASK) >= prom_reserved_base) {
  526. __asm__ __volatile__("stxa %%g0, [%0] %1nt"
  527.      "membar #Sync"
  528.      : /* no outputs */
  529.      : "r" (TLB_TAG_ACCESS), "i" (ASI_DMMU));
  530. cheetah_put_dtlb_data(i, 0x0UL);
  531. }
  532. }
  533. } else {
  534. /* Implement me :-) */
  535. BUG();
  536. }
  537. }
  538. static int prom_ditlb_set = 0;
  539. struct prom_tlb_entry {
  540. int tlb_ent;
  541. unsigned long tlb_tag;
  542. unsigned long tlb_data;
  543. };
  544. struct prom_tlb_entry prom_itlb[16], prom_dtlb[16];
  545. void prom_world(int enter)
  546. {
  547. unsigned long pstate;
  548. int i;
  549. if (!enter)
  550. set_fs(current->thread.current_ds);
  551. if (!prom_ditlb_set)
  552. return;
  553. /* Make sure the following runs atomically. */
  554. __asm__ __volatile__("flushwnt"
  555.      "rdpr %%pstate, %0nt"
  556.      "wrpr %0, %1, %%pstate"
  557.      : "=r" (pstate)
  558.      : "i" (PSTATE_IE));
  559. if (enter) {
  560. /* Kick out nucleus VPTEs. */
  561. __flush_nucleus_vptes();
  562. /* Install PROM world. */
  563. for (i = 0; i < 16; i++) {
  564. if (prom_dtlb[i].tlb_ent != -1) {
  565. __asm__ __volatile__("stxa %0, [%1] %2nt"
  566.      "membar #Sync"
  567. : : "r" (prom_dtlb[i].tlb_tag), "r" (TLB_TAG_ACCESS),
  568. "i" (ASI_DMMU));
  569. if (tlb_type == spitfire)
  570. spitfire_put_dtlb_data(prom_dtlb[i].tlb_ent,
  571.        prom_dtlb[i].tlb_data);
  572. else if (tlb_type == cheetah)
  573. cheetah_put_ldtlb_data(prom_dtlb[i].tlb_ent,
  574.        prom_dtlb[i].tlb_data);
  575. }
  576. if (prom_itlb[i].tlb_ent != -1) {
  577. __asm__ __volatile__("stxa %0, [%1] %2nt"
  578.      "membar #Sync"
  579.      : : "r" (prom_itlb[i].tlb_tag),
  580.      "r" (TLB_TAG_ACCESS),
  581.      "i" (ASI_IMMU));
  582. if (tlb_type == spitfire)
  583. spitfire_put_itlb_data(prom_itlb[i].tlb_ent,
  584.        prom_itlb[i].tlb_data);
  585. else if (tlb_type == cheetah)
  586. cheetah_put_litlb_data(prom_itlb[i].tlb_ent,
  587.        prom_itlb[i].tlb_data);
  588. }
  589. }
  590. } else {
  591. for (i = 0; i < 16; i++) {
  592. if (prom_dtlb[i].tlb_ent != -1) {
  593. __asm__ __volatile__("stxa %%g0, [%0] %1nt"
  594.      "membar #Sync"
  595. : : "r" (TLB_TAG_ACCESS), "i" (ASI_DMMU));
  596. if (tlb_type == spitfire)
  597. spitfire_put_dtlb_data(prom_dtlb[i].tlb_ent, 0x0UL);
  598. else
  599. cheetah_put_ldtlb_data(prom_dtlb[i].tlb_ent, 0x0UL);
  600. }
  601. if (prom_itlb[i].tlb_ent != -1) {
  602. __asm__ __volatile__("stxa %%g0, [%0] %1nt"
  603.      "membar #Sync"
  604.      : : "r" (TLB_TAG_ACCESS),
  605.      "i" (ASI_IMMU));
  606. if (tlb_type == spitfire)
  607. spitfire_put_itlb_data(prom_itlb[i].tlb_ent, 0x0UL);
  608. else
  609. cheetah_put_litlb_data(prom_itlb[i].tlb_ent, 0x0UL);
  610. }
  611. }
  612. }
  613. __asm__ __volatile__("wrpr %0, 0, %%pstate"
  614.      : : "r" (pstate));
  615. }
  616. void inherit_locked_prom_mappings(int save_p)
  617. {
  618. int i;
  619. int dtlb_seen = 0;
  620. int itlb_seen = 0;
  621. /* Fucking losing PROM has more mappings in the TLB, but
  622.  * it (conveniently) fails to mention any of these in the
  623.  * translations property.  The only ones that matter are
  624.  * the locked PROM tlb entries, so we impose the following
  625.  * irrecovable rule on the PROM, it is allowed 8 locked
  626.  * entries in the ITLB and 8 in the DTLB.
  627.  *
  628.  * Supposedly the upper 16GB of the address space is
  629.  * reserved for OBP, BUT I WISH THIS WAS DOCUMENTED
  630.  * SOMEWHERE!!!!!!!!!!!!!!!!!  Furthermore the entire interface
  631.  * used between the client program and the firmware on sun5
  632.  * systems to coordinate mmu mappings is also COMPLETELY
  633.  * UNDOCUMENTED!!!!!! Thanks S(t)un!
  634.  */
  635. if (save_p) {
  636. for (i = 0; i < 16; i++) {
  637. prom_itlb[i].tlb_ent = -1;
  638. prom_dtlb[i].tlb_ent = -1;
  639. }
  640. }
  641. if (tlb_type == spitfire) {
  642. int high = SPITFIRE_HIGHEST_LOCKED_TLBENT - bigkernel;
  643. for (i = 0; i < high; i++) {
  644. unsigned long data;
  645. /* Spitfire Errata #32 workaround */
  646. __asm__ __volatile__("stxa %0, [%1] %2nt"
  647.      "flush %%g6"
  648.      : /* No outputs */
  649.      : "r" (0),
  650.      "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
  651. data = spitfire_get_dtlb_data(i);
  652. if ((data & (_PAGE_L|_PAGE_VALID)) == (_PAGE_L|_PAGE_VALID)) {
  653. unsigned long tag;
  654. /* Spitfire Errata #32 workaround */
  655. __asm__ __volatile__("stxa %0, [%1] %2nt"
  656.      "flush %%g6"
  657.      : /* No outputs */
  658.      : "r" (0),
  659.      "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
  660. tag = spitfire_get_dtlb_tag(i);
  661. if (save_p) {
  662. prom_dtlb[dtlb_seen].tlb_ent = i;
  663. prom_dtlb[dtlb_seen].tlb_tag = tag;
  664. prom_dtlb[dtlb_seen].tlb_data = data;
  665. }
  666. __asm__ __volatile__("stxa %%g0, [%0] %1nt"
  667.      "membar #Sync"
  668.      : : "r" (TLB_TAG_ACCESS), "i" (ASI_DMMU));
  669. spitfire_put_dtlb_data(i, 0x0UL);
  670. dtlb_seen++;
  671. if (dtlb_seen > 15)
  672. break;
  673. }
  674. }
  675. for (i = 0; i < high; i++) {
  676. unsigned long data;
  677. /* Spitfire Errata #32 workaround */
  678. __asm__ __volatile__("stxa %0, [%1] %2nt"
  679.      "flush %%g6"
  680.      : /* No outputs */
  681.      : "r" (0),
  682.      "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
  683. data = spitfire_get_itlb_data(i);
  684. if ((data & (_PAGE_L|_PAGE_VALID)) == (_PAGE_L|_PAGE_VALID)) {
  685. unsigned long tag;
  686. /* Spitfire Errata #32 workaround */
  687. __asm__ __volatile__("stxa %0, [%1] %2nt"
  688.      "flush %%g6"
  689.      : /* No outputs */
  690.      : "r" (0),
  691.      "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
  692. tag = spitfire_get_itlb_tag(i);
  693. if (save_p) {
  694. prom_itlb[itlb_seen].tlb_ent = i;
  695. prom_itlb[itlb_seen].tlb_tag = tag;
  696. prom_itlb[itlb_seen].tlb_data = data;
  697. }
  698. __asm__ __volatile__("stxa %%g0, [%0] %1nt"
  699.      "membar #Sync"
  700.      : : "r" (TLB_TAG_ACCESS), "i" (ASI_IMMU));
  701. spitfire_put_itlb_data(i, 0x0UL);
  702. itlb_seen++;
  703. if (itlb_seen > 15)
  704. break;
  705. }
  706. }
  707. } else if (tlb_type == cheetah) {
  708. int high = CHEETAH_HIGHEST_LOCKED_TLBENT - bigkernel;
  709. for (i = 0; i < high; i++) {
  710. unsigned long data;
  711. data = cheetah_get_ldtlb_data(i);
  712. if ((data & (_PAGE_L|_PAGE_VALID)) == (_PAGE_L|_PAGE_VALID)) {
  713. unsigned long tag;
  714. tag = cheetah_get_ldtlb_tag(i);
  715. if (save_p) {
  716. prom_dtlb[dtlb_seen].tlb_ent = i;
  717. prom_dtlb[dtlb_seen].tlb_tag = tag;
  718. prom_dtlb[dtlb_seen].tlb_data = data;
  719. }
  720. __asm__ __volatile__("stxa %%g0, [%0] %1nt"
  721.      "membar #Sync"
  722.      : : "r" (TLB_TAG_ACCESS), "i" (ASI_DMMU));
  723. cheetah_put_ldtlb_data(i, 0x0UL);
  724. dtlb_seen++;
  725. if (dtlb_seen > 15)
  726. break;
  727. }
  728. }
  729. for (i = 0; i < high; i++) {
  730. unsigned long data;
  731. data = cheetah_get_litlb_data(i);
  732. if ((data & (_PAGE_L|_PAGE_VALID)) == (_PAGE_L|_PAGE_VALID)) {
  733. unsigned long tag;
  734. tag = cheetah_get_litlb_tag(i);
  735. if (save_p) {
  736. prom_itlb[itlb_seen].tlb_ent = i;
  737. prom_itlb[itlb_seen].tlb_tag = tag;
  738. prom_itlb[itlb_seen].tlb_data = data;
  739. }
  740. __asm__ __volatile__("stxa %%g0, [%0] %1nt"
  741.      "membar #Sync"
  742.      : : "r" (TLB_TAG_ACCESS), "i" (ASI_IMMU));
  743. cheetah_put_litlb_data(i, 0x0UL);
  744. itlb_seen++;
  745. if (itlb_seen > 15)
  746. break;
  747. }
  748. }
  749. } else {
  750. /* Implement me :-) */
  751. BUG();
  752. }
  753. if (save_p)
  754. prom_ditlb_set = 1;
  755. }
  756. /* Give PROM back his world, done during reboots... */
  757. void prom_reload_locked(void)
  758. {
  759. int i;
  760. for (i = 0; i < 16; i++) {
  761. if (prom_dtlb[i].tlb_ent != -1) {
  762. __asm__ __volatile__("stxa %0, [%1] %2nt"
  763.      "membar #Sync"
  764. : : "r" (prom_dtlb[i].tlb_tag), "r" (TLB_TAG_ACCESS),
  765. "i" (ASI_DMMU));
  766. if (tlb_type == spitfire)
  767. spitfire_put_dtlb_data(prom_dtlb[i].tlb_ent,
  768.        prom_dtlb[i].tlb_data);
  769. else if (tlb_type == cheetah)
  770. cheetah_put_ldtlb_data(prom_dtlb[i].tlb_ent,
  771.       prom_dtlb[i].tlb_data);
  772. }
  773. if (prom_itlb[i].tlb_ent != -1) {
  774. __asm__ __volatile__("stxa %0, [%1] %2nt"
  775.      "membar #Sync"
  776.      : : "r" (prom_itlb[i].tlb_tag),
  777.      "r" (TLB_TAG_ACCESS),
  778.      "i" (ASI_IMMU));
  779. if (tlb_type == spitfire)
  780. spitfire_put_itlb_data(prom_itlb[i].tlb_ent,
  781.        prom_itlb[i].tlb_data);
  782. else
  783. cheetah_put_litlb_data(prom_itlb[i].tlb_ent,
  784.        prom_itlb[i].tlb_data);
  785. }
  786. }
  787. }
  788. void __flush_dcache_range(unsigned long start, unsigned long end)
  789. {
  790. unsigned long va;
  791. if (tlb_type == spitfire) {
  792. int n = 0;
  793. for (va = start; va < end; va += 32) {
  794. spitfire_put_dcache_tag(va & 0x3fe0, 0x0);
  795. if (++n >= 512)
  796. break;
  797. }
  798. } else {
  799. start = __pa(start);
  800. end = __pa(end);
  801. for (va = start; va < end; va += 32)
  802. __asm__ __volatile__("stxa %%g0, [%0] %1nt"
  803.      "membar #Sync"
  804.      : /* no outputs */
  805.      : "r" (va),
  806.        "i" (ASI_DCACHE_INVALIDATE));
  807. }
  808. }
  809. void __flush_cache_all(void)
  810. {
  811. /* Cheetah should be fine here too. */
  812. if (tlb_type == spitfire) {
  813. unsigned long va;
  814. flushw_all();
  815. for (va =  0; va < (PAGE_SIZE << 1); va += 32)
  816. spitfire_put_icache_tag(va, 0x0);
  817. __asm__ __volatile__("flush %g6");
  818. }
  819. }
  820. /* If not locked, zap it. */
  821. void __flush_tlb_all(void)
  822. {
  823. unsigned long pstate;
  824. int i;
  825. __asm__ __volatile__("flushwnt"
  826.      "rdpr %%pstate, %0nt"
  827.      "wrpr %0, %1, %%pstate"
  828.      : "=r" (pstate)
  829.      : "i" (PSTATE_IE));
  830. if (tlb_type == spitfire) {
  831. for (i = 0; i < 64; i++) {
  832. /* Spitfire Errata #32 workaround */
  833. __asm__ __volatile__("stxa %0, [%1] %2nt"
  834.      "flush %%g6"
  835.      : /* No outputs */
  836.      : "r" (0),
  837.      "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
  838. if (!(spitfire_get_dtlb_data(i) & _PAGE_L)) {
  839. __asm__ __volatile__("stxa %%g0, [%0] %1nt"
  840.      "membar #Sync"
  841.      : /* no outputs */
  842.      : "r" (TLB_TAG_ACCESS), "i" (ASI_DMMU));
  843. spitfire_put_dtlb_data(i, 0x0UL);
  844. }
  845. /* Spitfire Errata #32 workaround */
  846. __asm__ __volatile__("stxa %0, [%1] %2nt"
  847.      "flush %%g6"
  848.      : /* No outputs */
  849.      : "r" (0),
  850.      "r" (PRIMARY_CONTEXT), "i" (ASI_DMMU));
  851. if (!(spitfire_get_itlb_data(i) & _PAGE_L)) {
  852. __asm__ __volatile__("stxa %%g0, [%0] %1nt"
  853.      "membar #Sync"
  854.      : /* no outputs */
  855.      : "r" (TLB_TAG_ACCESS), "i" (ASI_IMMU));
  856. spitfire_put_itlb_data(i, 0x0UL);
  857. }
  858. }
  859. } else if (tlb_type == cheetah) {
  860. cheetah_flush_dtlb_all();
  861. cheetah_flush_itlb_all();
  862. }
  863. __asm__ __volatile__("wrpr %0, 0, %%pstate"
  864.      : : "r" (pstate));
  865. }
  866. /* Caller does TLB context flushing on local CPU if necessary.
  867.  * The caller also ensures that CTX_VALID(mm->context) is false.
  868.  *
  869.  * We must be careful about boundary cases so that we never
  870.  * let the user have CTX 0 (nucleus) or we ever use a CTX
  871.  * version of zero (and thus NO_CONTEXT would not be caught
  872.  * by version mis-match tests in mmu_context.h).
  873.  */
  874. void get_new_mmu_context(struct mm_struct *mm)
  875. {
  876. unsigned long ctx, new_ctx;
  877. spin_lock(&ctx_alloc_lock);
  878. ctx = CTX_HWBITS(tlb_context_cache + 1);
  879. new_ctx = find_next_zero_bit(mmu_context_bmap, 1UL << CTX_VERSION_SHIFT, ctx);
  880. if (new_ctx >= (1UL << CTX_VERSION_SHIFT)) {
  881. new_ctx = find_next_zero_bit(mmu_context_bmap, ctx, 1);
  882. if (new_ctx >= ctx) {
  883. int i;
  884. new_ctx = (tlb_context_cache & CTX_VERSION_MASK) +
  885. CTX_FIRST_VERSION;
  886. if (new_ctx == 1)
  887. new_ctx = CTX_FIRST_VERSION;
  888. /* Don't call memset, for 16 entries that's just
  889.  * plain silly...
  890.  */
  891. mmu_context_bmap[0] = 3;
  892. mmu_context_bmap[1] = 0;
  893. mmu_context_bmap[2] = 0;
  894. mmu_context_bmap[3] = 0;
  895. for (i = 4; i < CTX_BMAP_SLOTS; i += 4) {
  896. mmu_context_bmap[i + 0] = 0;
  897. mmu_context_bmap[i + 1] = 0;
  898. mmu_context_bmap[i + 2] = 0;
  899. mmu_context_bmap[i + 3] = 0;
  900. }
  901. goto out;
  902. }
  903. }
  904. mmu_context_bmap[new_ctx>>6] |= (1UL << (new_ctx & 63));
  905. new_ctx |= (tlb_context_cache & CTX_VERSION_MASK);
  906. out:
  907. tlb_context_cache = new_ctx;
  908. spin_unlock(&ctx_alloc_lock);
  909. mm->context = new_ctx;
  910. }
  911. #ifndef CONFIG_SMP
  912. struct pgtable_cache_struct pgt_quicklists;
  913. #endif
  914. /* OK, we have to color these pages. The page tables are accessed
  915.  * by non-Dcache enabled mapping in the VPTE area by the dtlb_backend.S
  916.  * code, as well as by PAGE_OFFSET range direct-mapped addresses by 
  917.  * other parts of the kernel. By coloring, we make sure that the tlbmiss 
  918.  * fast handlers do not get data from old/garbage dcache lines that 
  919.  * correspond to an old/stale virtual address (user/kernel) that 
  920.  * previously mapped the pagetable page while accessing vpte range 
  921.  * addresses. The idea is that if the vpte color and PAGE_OFFSET range 
  922.  * color is the same, then when the kernel initializes the pagetable 
  923.  * using the later address range, accesses with the first address
  924.  * range will see the newly initialized data rather than the garbage.
  925.  */
  926. #if (L1DCACHE_SIZE > PAGE_SIZE) /* is there D$ aliasing problem */
  927. #define DC_ALIAS_SHIFT 1
  928. #else
  929. #define DC_ALIAS_SHIFT 0
  930. #endif
  931. pte_t *pte_alloc_one(struct mm_struct *mm, unsigned long address)
  932. {
  933. struct page *page = alloc_pages(GFP_KERNEL, DC_ALIAS_SHIFT);
  934. unsigned long color = VPTE_COLOR(address);
  935. if (page) {
  936. unsigned long *to_free;
  937. unsigned long paddr;
  938. pte_t *pte;
  939. #if (L1DCACHE_SIZE > PAGE_SIZE) /* is there D$ aliasing problem */
  940. set_page_count((page + 1), 1);
  941. #endif
  942. paddr = (unsigned long) page_address(page);
  943. memset((char *)paddr, 0, (PAGE_SIZE << DC_ALIAS_SHIFT));
  944. if (!color) {
  945. pte = (pte_t *) paddr;
  946. to_free = (unsigned long *) (paddr + PAGE_SIZE);
  947. } else {
  948. pte = (pte_t *) (paddr + PAGE_SIZE);
  949. to_free = (unsigned long *) paddr;
  950. }
  951. #if (L1DCACHE_SIZE > PAGE_SIZE) /* is there D$ aliasing problem */
  952. /* Now free the other one up, adjust cache size. */
  953. *to_free = (unsigned long) pte_quicklist[color ^ 0x1];
  954. pte_quicklist[color ^ 0x1] = to_free;
  955. pgtable_cache_size++;
  956. #endif
  957. return pte;
  958. }
  959. return NULL;
  960. }
  961. void sparc_ultra_dump_itlb(void)
  962. {
  963.         int slot;
  964. if (tlb_type == spitfire) {
  965. printk ("Contents of itlb: ");
  966. for (slot = 0; slot < 14; slot++) printk ("    ");
  967. printk ("%2x:%016lx,%016lxn",
  968. 0,
  969. spitfire_get_itlb_tag(0), spitfire_get_itlb_data(0));
  970. for (slot = 1; slot < 64; slot+=3) {
  971. printk ("%2x:%016lx,%016lx %2x:%016lx,%016lx %2x:%016lx,%016lxn", 
  972. slot,
  973. spitfire_get_itlb_tag(slot), spitfire_get_itlb_data(slot),
  974. slot+1,
  975. spitfire_get_itlb_tag(slot+1), spitfire_get_itlb_data(slot+1),
  976. slot+2,
  977. spitfire_get_itlb_tag(slot+2), spitfire_get_itlb_data(slot+2));
  978. }
  979. } else if (tlb_type == cheetah) {
  980. printk ("Contents of itlb0:n");
  981. for (slot = 0; slot < 16; slot+=2) {
  982. printk ("%2x:%016lx,%016lx %2x:%016lx,%016lxn",
  983. slot,
  984. cheetah_get_litlb_tag(slot), cheetah_get_litlb_data(slot),
  985. slot+1,
  986. cheetah_get_litlb_tag(slot+1), cheetah_get_litlb_data(slot+1));
  987. }
  988. printk ("Contents of itlb2:n");
  989. for (slot = 0; slot < 128; slot+=2) {
  990. printk ("%2x:%016lx,%016lx %2x:%016lx,%016lxn",
  991. slot,
  992. cheetah_get_itlb_tag(slot), cheetah_get_itlb_data(slot),
  993. slot+1,
  994. cheetah_get_itlb_tag(slot+1), cheetah_get_itlb_data(slot+1));
  995. }
  996. }
  997. }
  998. void sparc_ultra_dump_dtlb(void)
  999. {
  1000.         int slot;
  1001. if (tlb_type == spitfire) {
  1002. printk ("Contents of dtlb: ");
  1003. for (slot = 0; slot < 14; slot++) printk ("    ");
  1004. printk ("%2x:%016lx,%016lxn", 0,
  1005. spitfire_get_dtlb_tag(0), spitfire_get_dtlb_data(0));
  1006. for (slot = 1; slot < 64; slot+=3) {
  1007. printk ("%2x:%016lx,%016lx %2x:%016lx,%016lx %2x:%016lx,%016lxn", 
  1008. slot,
  1009. spitfire_get_dtlb_tag(slot), spitfire_get_dtlb_data(slot),
  1010. slot+1,
  1011. spitfire_get_dtlb_tag(slot+1), spitfire_get_dtlb_data(slot+1),
  1012. slot+2,
  1013. spitfire_get_dtlb_tag(slot+2), spitfire_get_dtlb_data(slot+2));
  1014. }
  1015. } else if (tlb_type == cheetah) {
  1016. printk ("Contents of dtlb0:n");
  1017. for (slot = 0; slot < 16; slot+=2) {
  1018. printk ("%2x:%016lx,%016lx %2x:%016lx,%016lxn",
  1019. slot,
  1020. cheetah_get_ldtlb_tag(slot), cheetah_get_ldtlb_data(slot),
  1021. slot+1,
  1022. cheetah_get_ldtlb_tag(slot+1), cheetah_get_ldtlb_data(slot+1));
  1023. }
  1024. printk ("Contents of dtlb2:n");
  1025. for (slot = 0; slot < 512; slot+=2) {
  1026. printk ("%2x:%016lx,%016lx %2x:%016lx,%016lxn",
  1027. slot,
  1028. cheetah_get_dtlb_tag(slot), cheetah_get_dtlb_data(slot),
  1029. slot+1,
  1030. cheetah_get_dtlb_tag(slot+1), cheetah_get_dtlb_data(slot+1));
  1031. }
  1032. }
  1033. }
  1034. extern unsigned long cmdline_memory_size;
  1035. unsigned long __init bootmem_init(unsigned long *pages_avail)
  1036. {
  1037. unsigned long bootmap_size, start_pfn, end_pfn;
  1038. unsigned long end_of_phys_memory = 0UL;
  1039. unsigned long bootmap_pfn, bytes_avail, size;
  1040. int i;
  1041. bytes_avail = 0UL;
  1042. for (i = 0; sp_banks[i].num_bytes != 0; i++) {
  1043. end_of_phys_memory = sp_banks[i].base_addr +
  1044. sp_banks[i].num_bytes;
  1045. bytes_avail += sp_banks[i].num_bytes;
  1046. if (cmdline_memory_size) {
  1047. if (bytes_avail > cmdline_memory_size) {
  1048. unsigned long slack = bytes_avail - cmdline_memory_size;
  1049. bytes_avail -= slack;
  1050. end_of_phys_memory -= slack;
  1051. sp_banks[i].num_bytes -= slack;
  1052. if (sp_banks[i].num_bytes == 0) {
  1053. sp_banks[i].base_addr = 0xdeadbeef;
  1054. } else {
  1055. sp_banks[i+1].num_bytes = 0;
  1056. sp_banks[i+1].base_addr = 0xdeadbeef;
  1057. }
  1058. break;
  1059. }
  1060. }
  1061. }
  1062. *pages_avail = bytes_avail >> PAGE_SHIFT;
  1063. /* Start with page aligned address of last symbol in kernel
  1064.  * image.  The kernel is hard mapped below PAGE_OFFSET in a
  1065.  * 4MB locked TLB translation.
  1066.  */
  1067. start_pfn  = PAGE_ALIGN((unsigned long) &_end) -
  1068. ((unsigned long) KERNBASE);
  1069. /* Adjust up to the physical address where the kernel begins. */
  1070. start_pfn += phys_base;
  1071. /* Now shift down to get the real physical page frame number. */
  1072. start_pfn >>= PAGE_SHIFT;
  1073. bootmap_pfn = start_pfn;
  1074. end_pfn = end_of_phys_memory >> PAGE_SHIFT;
  1075. #ifdef CONFIG_BLK_DEV_INITRD
  1076. /* Now have to check initial ramdisk, so that bootmap does not overwrite it */
  1077. if (sparc_ramdisk_image) {
  1078. if (sparc_ramdisk_image >= (unsigned long)&_end - 2 * PAGE_SIZE)
  1079. sparc_ramdisk_image -= KERNBASE;
  1080. initrd_start = sparc_ramdisk_image + phys_base;
  1081. initrd_end = initrd_start + sparc_ramdisk_size;
  1082. if (initrd_end > end_of_phys_memory) {
  1083. printk(KERN_CRIT "initrd extends beyond end of memory "
  1084.                    "(0x%016lx > 0x%016lx)ndisabling initrdn",
  1085.        initrd_end, end_of_phys_memory);
  1086. initrd_start = 0;
  1087. }
  1088. if (initrd_start) {
  1089. if (initrd_start >= (start_pfn << PAGE_SHIFT) &&
  1090.     initrd_start < (start_pfn << PAGE_SHIFT) + 2 * PAGE_SIZE)
  1091. bootmap_pfn = PAGE_ALIGN (initrd_end) >> PAGE_SHIFT;
  1092. }
  1093. }
  1094. #endif
  1095. /* Initialize the boot-time allocator. */
  1096. bootmap_size = init_bootmem_node(NODE_DATA(0), bootmap_pfn, phys_base>>PAGE_SHIFT, end_pfn);
  1097. /* Now register the available physical memory with the
  1098.  * allocator.
  1099.  */
  1100. for (i = 0; sp_banks[i].num_bytes != 0; i++)
  1101. free_bootmem(sp_banks[i].base_addr,
  1102.      sp_banks[i].num_bytes);
  1103. #ifdef CONFIG_BLK_DEV_INITRD
  1104. if (initrd_start) {
  1105. size = initrd_end - initrd_start;
  1106. /* Resert the initrd image area. */
  1107. reserve_bootmem(initrd_start, size);
  1108. *pages_avail -= PAGE_ALIGN(size) >> PAGE_SHIFT;
  1109. initrd_start += PAGE_OFFSET;
  1110. initrd_end += PAGE_OFFSET;
  1111. }
  1112. #endif
  1113. /* Reserve the kernel text/data/bss. */
  1114. size = (start_pfn << PAGE_SHIFT) - phys_base;
  1115. reserve_bootmem(phys_base, size);
  1116. *pages_avail -= PAGE_ALIGN(size) >> PAGE_SHIFT;
  1117. /* Reserve the bootmem map.   We do not account for it
  1118.  * in pages_avail because we will release that memory
  1119.  * in free_all_bootmem.
  1120.  */
  1121. size = bootmap_size;
  1122. reserve_bootmem((bootmap_pfn << PAGE_SHIFT), size);
  1123. *pages_avail -= PAGE_ALIGN(size) >> PAGE_SHIFT;
  1124. return end_pfn;
  1125. }
  1126. /* paging_init() sets up the page tables */
  1127. extern void sun_serial_setup(void);
  1128. extern void cheetah_ecache_flush_init(void);
  1129. static unsigned long last_valid_pfn;
  1130. void __init paging_init(void)
  1131. {
  1132. extern pmd_t swapper_pmd_dir[1024];
  1133. extern unsigned int sparc64_vpte_patchme1[1];
  1134. extern unsigned int sparc64_vpte_patchme2[1];
  1135. unsigned long alias_base = phys_base + PAGE_OFFSET;
  1136. unsigned long second_alias_page = 0;
  1137. unsigned long pt, flags, end_pfn, pages_avail;
  1138. unsigned long shift = alias_base - ((unsigned long)KERNBASE);
  1139. unsigned long real_end;
  1140. set_bit(0, mmu_context_bmap);
  1141. real_end = (unsigned long)&_end;
  1142. if ((real_end > ((unsigned long)KERNBASE + 0x400000)))
  1143. bigkernel = 1;
  1144. #ifdef CONFIG_BLK_DEV_INITRD
  1145. if (sparc_ramdisk_image)
  1146. real_end = (PAGE_ALIGN(real_end) + PAGE_ALIGN(sparc_ramdisk_size));
  1147. #endif
  1148. /* We assume physical memory starts at some 4mb multiple,
  1149.  * if this were not true we wouldn't boot up to this point
  1150.  * anyways.
  1151.  */
  1152. pt  = phys_base | _PAGE_VALID | _PAGE_SZ4MB;
  1153. pt |= _PAGE_CP | _PAGE_CV | _PAGE_P | _PAGE_L | _PAGE_W;
  1154. __save_and_cli(flags);
  1155. if (tlb_type == spitfire) {
  1156. __asm__ __volatile__(
  1157. " stxa %1, [%0] %3n"
  1158. " stxa %2, [%5] %4n"
  1159. " membar #Syncn"
  1160. " flush %%g6n"
  1161. " nopn"
  1162. " nopn"
  1163. " nopn"
  1164. : /* No outputs */
  1165. : "r" (TLB_TAG_ACCESS), "r" (alias_base), "r" (pt),
  1166.   "i" (ASI_DMMU), "i" (ASI_DTLB_DATA_ACCESS), "r" (61 << 3)
  1167. : "memory");
  1168. if (real_end >= KERNBASE + 0x340000) {
  1169. second_alias_page = alias_base + 0x400000;
  1170. __asm__ __volatile__(
  1171. " stxa %1, [%0] %3n"
  1172. " stxa %2, [%5] %4n"
  1173. " membar #Syncn"
  1174. " flush %%g6n"
  1175. " nopn"
  1176. " nopn"
  1177. " nopn"
  1178. : /* No outputs */
  1179. : "r" (TLB_TAG_ACCESS), "r" (second_alias_page), "r" (pt + 0x400000),
  1180.   "i" (ASI_DMMU), "i" (ASI_DTLB_DATA_ACCESS), "r" (60 << 3)
  1181. : "memory");
  1182. }
  1183. } else if (tlb_type == cheetah) {
  1184. __asm__ __volatile__(
  1185. " stxa %1, [%0] %3n"
  1186. " stxa %2, [%5] %4n"
  1187. " membar #Syncn"
  1188. " flush %%g6n"
  1189. " nopn"
  1190. " nopn"
  1191. " nopn"
  1192. : /* No outputs */
  1193. : "r" (TLB_TAG_ACCESS), "r" (alias_base), "r" (pt),
  1194.   "i" (ASI_DMMU), "i" (ASI_DTLB_DATA_ACCESS), "r" ((0<<16) | (13<<3))
  1195. : "memory");
  1196. if (real_end >= KERNBASE + 0x340000) {
  1197. second_alias_page = alias_base + 0x400000;
  1198. __asm__ __volatile__(
  1199. " stxa %1, [%0] %3n"
  1200. " stxa %2, [%5] %4n"
  1201. " membar #Syncn"
  1202. " flush %%g6n"
  1203. " nopn"
  1204. " nopn"
  1205. " nopn"
  1206. : /* No outputs */
  1207. : "r" (TLB_TAG_ACCESS), "r" (second_alias_page), "r" (pt + 0x400000),
  1208.   "i" (ASI_DMMU), "i" (ASI_DTLB_DATA_ACCESS), "r" ((0<<16) | (12<<3))
  1209. : "memory");
  1210. }
  1211. }
  1212. __restore_flags(flags);
  1213. /* Now set kernel pgd to upper alias so physical page computations
  1214.  * work.
  1215.  */
  1216. init_mm.pgd += ((shift) / (sizeof(pgd_t)));
  1217. memset(swapper_pmd_dir, 0, sizeof(swapper_pmd_dir));
  1218. /* Now can init the kernel/bad page tables. */
  1219. pgd_set(&swapper_pg_dir[0], swapper_pmd_dir + (shift / sizeof(pgd_t)));
  1220. sparc64_vpte_patchme1[0] |= (pgd_val(init_mm.pgd[0]) >> 10);
  1221. sparc64_vpte_patchme2[0] |= (pgd_val(init_mm.pgd[0]) & 0x3ff);
  1222. flushi((long)&sparc64_vpte_patchme1[0]);
  1223. /* Setup bootmem... */
  1224. pages_avail = 0;
  1225. last_valid_pfn = end_pfn = bootmem_init(&pages_avail);
  1226. #ifdef CONFIG_SUN_SERIAL
  1227. /* This does not logically belong here, but we need to
  1228.  * call it at the moment we are able to use the bootmem
  1229.  * allocator.
  1230.  */
  1231. sun_serial_setup();
  1232. #endif
  1233. /* Inherit non-locked OBP mappings. */
  1234. inherit_prom_mappings();
  1235. /* Ok, we can use our TLB miss and window trap handlers safely.
  1236.  * We need to do a quick peek here to see if we are on StarFire
  1237.  * or not, so setup_tba can setup the IRQ globals correctly (it
  1238.  * needs to get the hard smp processor id correctly).
  1239.  */
  1240. {
  1241. extern void setup_tba(int);
  1242. setup_tba(this_is_starfire);
  1243. }
  1244. inherit_locked_prom_mappings(1);
  1245. /* We only created DTLB mapping of this stuff. */
  1246. spitfire_flush_dtlb_nucleus_page(alias_base);
  1247. if (second_alias_page)
  1248. spitfire_flush_dtlb_nucleus_page(second_alias_page);
  1249. __flush_tlb_all();
  1250. {
  1251. unsigned long zones_size[MAX_NR_ZONES];
  1252. unsigned long zholes_size[MAX_NR_ZONES];
  1253. unsigned long npages;
  1254. int znum;
  1255. for (znum = 0; znum < MAX_NR_ZONES; znum++)
  1256. zones_size[znum] = zholes_size[znum] = 0;
  1257. npages = end_pfn - (phys_base >> PAGE_SHIFT);
  1258. zones_size[ZONE_DMA] = npages;
  1259. zholes_size[ZONE_DMA] = npages - pages_avail;
  1260. free_area_init_node(0, NULL, NULL, zones_size,
  1261.     phys_base, zholes_size);
  1262. }
  1263. device_scan();
  1264. }
  1265. /* Ok, it seems that the prom can allocate some more memory chunks
  1266.  * as a side effect of some prom calls we perform during the
  1267.  * boot sequence.  My most likely theory is that it is from the
  1268.  * prom_set_traptable() call, and OBP is allocating a scratchpad
  1269.  * for saving client program register state etc.
  1270.  */
  1271. void __init sort_memlist(struct linux_mlist_p1275 *thislist)
  1272. {
  1273. int swapi = 0;
  1274. int i, mitr;
  1275. unsigned long tmpaddr, tmpsize;
  1276. unsigned long lowest;
  1277. for (i = 0; thislist[i].theres_more != 0; i++) {
  1278. lowest = thislist[i].start_adr;
  1279. for (mitr = i+1; thislist[mitr-1].theres_more != 0; mitr++)
  1280. if (thislist[mitr].start_adr < lowest) {
  1281. lowest = thislist[mitr].start_adr;
  1282. swapi = mitr;
  1283. }
  1284. if (lowest == thislist[i].start_adr)
  1285. continue;
  1286. tmpaddr = thislist[swapi].start_adr;
  1287. tmpsize = thislist[swapi].num_bytes;
  1288. for (mitr = swapi; mitr > i; mitr--) {
  1289. thislist[mitr].start_adr = thislist[mitr-1].start_adr;
  1290. thislist[mitr].num_bytes = thislist[mitr-1].num_bytes;
  1291. }
  1292. thislist[i].start_adr = tmpaddr;
  1293. thislist[i].num_bytes = tmpsize;
  1294. }
  1295. }
  1296. void __init rescan_sp_banks(void)
  1297. {
  1298. struct linux_prom64_registers memlist[64];
  1299. struct linux_mlist_p1275 avail[64], *mlist;
  1300. unsigned long bytes, base_paddr;
  1301. int num_regs, node = prom_finddevice("/memory");
  1302. int i;
  1303. num_regs = prom_getproperty(node, "available",
  1304.     (char *) memlist, sizeof(memlist));
  1305. num_regs = (num_regs / sizeof(struct linux_prom64_registers));
  1306. for (i = 0; i < num_regs; i++) {
  1307. avail[i].start_adr = memlist[i].phys_addr;
  1308. avail[i].num_bytes = memlist[i].reg_size;
  1309. avail[i].theres_more = &avail[i + 1];
  1310. }
  1311. avail[i - 1].theres_more = NULL;
  1312. sort_memlist(avail);
  1313. mlist = &avail[0];
  1314. i = 0;
  1315. bytes = mlist->num_bytes;
  1316. base_paddr = mlist->start_adr;
  1317.   
  1318. sp_banks[0].base_addr = base_paddr;
  1319. sp_banks[0].num_bytes = bytes;
  1320. while (mlist->theres_more != NULL){
  1321. i++;
  1322. mlist = mlist->theres_more;
  1323. bytes = mlist->num_bytes;
  1324. if (i >= SPARC_PHYS_BANKS-1) {
  1325. printk ("The machine has more banks than "
  1326. "this kernel can supportn"
  1327. "Increase the SPARC_PHYS_BANKS "
  1328. "setting (currently %d)n",
  1329. SPARC_PHYS_BANKS);
  1330. i = SPARC_PHYS_BANKS-1;
  1331. break;
  1332. }
  1333.     
  1334. sp_banks[i].base_addr = mlist->start_adr;
  1335. sp_banks[i].num_bytes = mlist->num_bytes;
  1336. }
  1337. i++;
  1338. sp_banks[i].base_addr = 0xdeadbeefbeefdeadUL;
  1339. sp_banks[i].num_bytes = 0;
  1340. for (i = 0; sp_banks[i].num_bytes != 0; i++)
  1341. sp_banks[i].num_bytes &= PAGE_MASK;
  1342. }
  1343. static void __init taint_real_pages(void)
  1344. {
  1345. struct sparc_phys_banks saved_sp_banks[SPARC_PHYS_BANKS];
  1346. int i;
  1347. for (i = 0; i < SPARC_PHYS_BANKS; i++) {
  1348. saved_sp_banks[i].base_addr =
  1349. sp_banks[i].base_addr;
  1350. saved_sp_banks[i].num_bytes =
  1351. sp_banks[i].num_bytes;
  1352. }
  1353. rescan_sp_banks();
  1354. /* Find changes discovered in the sp_bank rescan and
  1355.  * reserve the lost portions in the bootmem maps.
  1356.  */
  1357. for (i = 0; saved_sp_banks[i].num_bytes; i++) {
  1358. unsigned long old_start, old_end;
  1359. old_start = saved_sp_banks[i].base_addr;
  1360. old_end = old_start +
  1361. saved_sp_banks[i].num_bytes;
  1362. while (old_start < old_end) {
  1363. int n;
  1364. for (n = 0; sp_banks[n].num_bytes; n++) {
  1365. unsigned long new_start, new_end;
  1366. new_start = sp_banks[n].base_addr;
  1367. new_end = new_start + sp_banks[n].num_bytes;
  1368. if (new_start <= old_start &&
  1369.     new_end >= (old_start + PAGE_SIZE)) {
  1370. set_bit (old_start >> 22,
  1371.  sparc64_valid_addr_bitmap);
  1372. goto do_next_page;
  1373. }
  1374. }
  1375. reserve_bootmem(old_start, PAGE_SIZE);
  1376. do_next_page:
  1377. old_start += PAGE_SIZE;
  1378. }
  1379. }
  1380. }
  1381. void __init mem_init(void)
  1382. {
  1383. unsigned long codepages, datapages, initpages;
  1384. unsigned long addr, last;
  1385. int i;
  1386. i = last_valid_pfn >> ((22 - PAGE_SHIFT) + 6);
  1387. i += 1;
  1388. sparc64_valid_addr_bitmap = (unsigned long *)
  1389. __alloc_bootmem(i << 3, SMP_CACHE_BYTES, 0UL);
  1390. if (sparc64_valid_addr_bitmap == NULL) {
  1391. prom_printf("mem_init: Cannot alloc valid_addr_bitmap.n");
  1392. prom_halt();
  1393. }
  1394. memset(sparc64_valid_addr_bitmap, 0, i << 3);
  1395. addr = PAGE_OFFSET + phys_base;
  1396. last = PAGE_ALIGN((unsigned long)&_end) -
  1397. ((unsigned long) KERNBASE);
  1398. last += PAGE_OFFSET + phys_base;
  1399. while (addr < last) {
  1400. set_bit(__pa(addr) >> 22, sparc64_valid_addr_bitmap);
  1401. addr += PAGE_SIZE;
  1402. }
  1403. taint_real_pages();
  1404. max_mapnr = last_valid_pfn - (phys_base >> PAGE_SHIFT);
  1405. high_memory = __va(last_valid_pfn << PAGE_SHIFT);
  1406. num_physpages = free_all_bootmem() - 1;
  1407. /*
  1408.  * Set up the zero page, mark it reserved, so that page count
  1409.  * is not manipulated when freeing the page from user ptes.
  1410.  */
  1411. mem_map_zero = _alloc_pages(GFP_KERNEL, 0);
  1412. if (mem_map_zero == NULL) {
  1413. prom_printf("paging_init: Cannot alloc zero page.n");
  1414. prom_halt();
  1415. }
  1416. SetPageReserved(mem_map_zero);
  1417. clear_page(page_address(mem_map_zero));
  1418. codepages = (((unsigned long) &etext) - ((unsigned long)&_start));
  1419. codepages = PAGE_ALIGN(codepages) >> PAGE_SHIFT;
  1420. datapages = (((unsigned long) &edata) - ((unsigned long)&etext));
  1421. datapages = PAGE_ALIGN(datapages) >> PAGE_SHIFT;
  1422. initpages = (((unsigned long) &__init_end) - ((unsigned long) &__init_begin));
  1423. initpages = PAGE_ALIGN(initpages) >> PAGE_SHIFT;
  1424. #ifndef CONFIG_SMP
  1425. {
  1426. /* Put empty_pg_dir on pgd_quicklist */
  1427. extern pgd_t empty_pg_dir[1024];
  1428. unsigned long addr = (unsigned long)empty_pg_dir;
  1429. unsigned long alias_base = phys_base + PAGE_OFFSET -
  1430. (long)(KERNBASE);
  1431. memset(empty_pg_dir, 0, sizeof(empty_pg_dir));
  1432. addr += alias_base;
  1433. free_pgd_fast((pgd_t *)addr);
  1434. num_physpages++;
  1435. }
  1436. #endif
  1437. printk("Memory: %uk available (%ldk kernel code, %ldk data, %ldk init) [%016lx,%016lx]n",
  1438.        nr_free_pages() << (PAGE_SHIFT-10),
  1439.        codepages << (PAGE_SHIFT-10),
  1440.        datapages << (PAGE_SHIFT-10), 
  1441.        initpages << (PAGE_SHIFT-10), 
  1442.        PAGE_OFFSET, (last_valid_pfn << PAGE_SHIFT));
  1443. if (tlb_type == cheetah)
  1444. cheetah_ecache_flush_init();
  1445. }
  1446. void free_initmem (void)
  1447. {
  1448. unsigned long addr, initend;
  1449. /*
  1450.  * The init section is aligned to 8k in vmlinux.lds. Page align for >8k pagesizes.
  1451.  */
  1452. addr = PAGE_ALIGN((unsigned long)(&__init_begin));
  1453. initend = (unsigned long)(&__init_end) & PAGE_MASK;
  1454. for (; addr < initend; addr += PAGE_SIZE) {
  1455. unsigned long page;
  1456. struct page *p;
  1457. page = (addr +
  1458. ((unsigned long) __va(phys_base)) -
  1459. ((unsigned long) KERNBASE));
  1460. p = virt_to_page(page);
  1461. ClearPageReserved(p);
  1462. set_page_count(p, 1);
  1463. __free_page(p);
  1464. num_physpages++;
  1465. }
  1466. }
  1467. #ifdef CONFIG_BLK_DEV_INITRD
  1468. void free_initrd_mem(unsigned long start, unsigned long end)
  1469. {
  1470. if (start < end)
  1471. printk ("Freeing initrd memory: %ldk freedn", (end - start) >> 10);
  1472. for (; start < end; start += PAGE_SIZE) {
  1473. struct page *p = virt_to_page(start);
  1474. ClearPageReserved(p);
  1475. set_page_count(p, 1);
  1476. __free_page(p);
  1477. num_physpages++;
  1478. }
  1479. }
  1480. #endif
  1481. void si_meminfo(struct sysinfo *val)
  1482. {
  1483. val->totalram = num_physpages;
  1484. val->sharedram = 0;
  1485. val->freeram = nr_free_pages();
  1486. val->bufferram = atomic_read(&buffermem_pages);
  1487. /* These are always zero on Sparc64. */
  1488. val->totalhigh = 0;
  1489. val->freehigh = 0;
  1490. val->mem_unit = PAGE_SIZE;
  1491. }