andes.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:8k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  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) 1997, 1998, 1999 Ralf Baechle (ralf@gnu.org)
  7.  * Copyright (C) 1999 Silicon Graphics, Inc.
  8.  * Copyright (C) 2000 Kanoj Sarcar (kanoj@sgi.com)
  9.  */
  10. #include <linux/init.h>
  11. #include <linux/kernel.h>
  12. #include <linux/sched.h>
  13. #include <linux/mm.h>
  14. #include <asm/page.h>
  15. #include <asm/pgtable.h>
  16. #include <asm/r10kcache.h>
  17. #include <asm/system.h>
  18. #include <asm/mmu_context.h>
  19. static int scache_lsz64;
  20. /*
  21.  * This version has been tuned on an Origin.  For other machines the arguments
  22.  * of the pref instructin may have to be tuned differently.
  23.  */
  24. static void andes_clear_page(void * page)
  25. {
  26. __asm__ __volatile__(
  27. ".settnoreordernt"
  28. ".settnoatnt"
  29. "daddiut$1,%0,%2n"
  30. "1:tpref 7,512(%0)nt"
  31. "sdt$0,(%0)nt"
  32. "sdt$0,8(%0)nt"
  33. "sdt$0,16(%0)nt"
  34. "sdt$0,24(%0)nt"
  35. "daddiut%0,64nt"
  36. "sdt$0,-32(%0)nt"
  37. "sdt$0,-24(%0)nt"
  38. "sdt$0,-16(%0)nt"
  39. "bnet$1,%0,1bnt"
  40. "sdt$0,-8(%0)nt"
  41. ".settatnt"
  42. ".settreorder"
  43. : "=r" (page)
  44. : "0" (page), "I" (PAGE_SIZE)
  45. : "memory");
  46. }
  47. /* R10000 has no Create_Dirty type cacheops.  */
  48. static void andes_copy_page(void * to, void * from)
  49. {
  50. unsigned long dummy1, dummy2, reg1, reg2, reg3, reg4;
  51. __asm__ __volatile__(
  52. ".settnoreordernt"
  53. ".settnoatnt"
  54. "daddiut$1,%0,%8n"
  55. "1:tpreft0,2*128(%1)nt"
  56. "preft1,2*128(%0)nt"
  57. "ldt%2,(%1)nt"
  58. "ldt%3,8(%1)nt"
  59. "ldt%4,16(%1)nt"
  60. "ldt%5,24(%1)nt"
  61. "sdt%2,(%0)nt"
  62. "sdt%3,8(%0)nt"
  63. "sdt%4,16(%0)nt"
  64. "sdt%5,24(%0)nt"
  65. "daddiut%0,64nt"
  66. "daddiut%1,64nt"
  67. "ldt%2,-32(%1)nt"
  68. "ldt%3,-24(%1)nt"
  69. "ldt%4,-16(%1)nt"
  70. "ldt%5,-8(%1)nt"
  71. "sdt%2,-32(%0)nt"
  72. "sdt%3,-24(%0)nt"
  73. "sdt%4,-16(%0)nt"
  74. "bnet$1,%0,1bnt"
  75. " sdt%5,-8(%0)nt"
  76. ".settatnt"
  77. ".settreorder"
  78. :"=r" (dummy1), "=r" (dummy2), "=&r" (reg1), "=&r" (reg2),
  79.  "=&r" (reg3), "=&r" (reg4)
  80. :"0" (to), "1" (from), "I" (PAGE_SIZE));
  81. }
  82. /* Cache operations.  These are only used with the virtual memory system,
  83.    not for non-coherent I/O so it's ok to ignore the secondary caches.  */
  84. static void
  85. andes_flush_cache_l1(void)
  86. {
  87. blast_dcache32(); blast_icache64();
  88. }
  89. /*
  90.  * This is only used during initialization time. vmalloc() also calls
  91.  * this, but that will be changed pretty soon.
  92.  */
  93. static void andes_flush_cache_l2(void)
  94. {
  95. switch (sc_lsize()) {
  96. case 64:
  97. blast_scache64();
  98. break;
  99. case 128:
  100. blast_scache128();
  101. break;
  102. default:
  103. printk(KERN_EMERG "Unknown L2 line sizen");
  104. while(1);
  105. }
  106. }
  107. void
  108. andes_flush_icache_page(unsigned long page)
  109. {
  110. if (scache_lsz64)
  111. blast_scache64_page(page);
  112. else
  113. blast_scache128_page(page);
  114. }
  115. static void
  116. andes_flush_cache_sigtramp(unsigned long addr)
  117. {
  118. protected_writeback_dcache_line(addr & ~(dc_lsize - 1));
  119. protected_flush_icache_line(addr & ~(ic_lsize - 1));
  120. }
  121. #define NTLB_ENTRIES       64
  122. #define NTLB_ENTRIES_HALF  32
  123. void local_flush_tlb_all(void)
  124. {
  125. unsigned long flags;
  126. unsigned long old_ctx;
  127. unsigned long entry;
  128. #ifdef DEBUG_TLB
  129. printk("[tlball]");
  130. #endif
  131. __save_and_cli(flags);
  132. /* Save old context and create impossible VPN2 value */
  133. old_ctx = get_entryhi() & ASID_MASK;
  134. set_entryhi(CKSEG0);
  135. set_entrylo0(0);
  136. set_entrylo1(0);
  137. entry = get_wired();
  138. /* Blast 'em all away. */
  139. while (entry < NTLB_ENTRIES) {
  140. set_index(entry);
  141. tlb_write_indexed();
  142. entry++;
  143. }
  144. set_entryhi(old_ctx);
  145. __restore_flags(flags);
  146. }
  147. void local_flush_tlb_mm(struct mm_struct *mm)
  148. {
  149. if (CPU_CONTEXT(smp_processor_id(), mm) != 0) {
  150. unsigned long flags;
  151. #ifdef DEBUG_TLB
  152. printk("[tlbmm<%d>]", mm->context);
  153. #endif
  154. __save_and_cli(flags);
  155. get_new_mmu_context(mm, smp_processor_id());
  156. if(mm == current->mm)
  157. set_entryhi(CPU_CONTEXT(smp_processor_id(), mm)
  158.     & ASID_MASK);
  159. __restore_flags(flags);
  160. }
  161. }
  162. void local_flush_tlb_range(struct mm_struct *mm, unsigned long start,
  163.                            unsigned long end)
  164. {
  165. if (CPU_CONTEXT(smp_processor_id(), mm) != 0) {
  166. unsigned long flags;
  167. int size;
  168. #ifdef DEBUG_TLB
  169. printk("[tlbrange<%02x,%08lx,%08lx>]",
  170.        (mm->context & ASID_MASK), start, end);
  171. #endif
  172. __save_and_cli(flags);
  173. size = (end - start + (PAGE_SIZE - 1)) >> PAGE_SHIFT;
  174. size = (size + 1) >> 1;
  175. if (size <= NTLB_ENTRIES_HALF) {
  176. int oldpid = (get_entryhi() & ASID_MASK);
  177. int newpid = (CPU_CONTEXT(smp_processor_id(), mm)
  178.       & ASID_MASK);
  179. start &= (PAGE_MASK << 1);
  180. end += ((PAGE_SIZE << 1) - 1);
  181. end &= (PAGE_MASK << 1);
  182. while(start < end) {
  183. int idx;
  184. set_entryhi(start | newpid);
  185. start += (PAGE_SIZE << 1);
  186. tlb_probe();
  187. idx = get_index();
  188. set_entrylo0(0);
  189. set_entrylo1(0);
  190. set_entryhi(KSEG0);
  191. if(idx < 0)
  192. continue;
  193. tlb_write_indexed();
  194. }
  195. set_entryhi(oldpid);
  196. } else {
  197. get_new_mmu_context(mm, smp_processor_id());
  198. if(mm == current->mm)
  199. set_entryhi(CPU_CONTEXT(smp_processor_id(), mm)
  200.     & ASID_MASK);
  201. }
  202. __restore_flags(flags);
  203. }
  204. }
  205. void local_flush_tlb_page(struct vm_area_struct *vma, unsigned long page)
  206. {
  207. if (CPU_CONTEXT(smp_processor_id(), vma->vm_mm) != 0) {
  208. unsigned long flags;
  209. int oldpid, newpid, idx;
  210. #ifdef DEBUG_TLB
  211. printk("[tlbpage<%d,%08lx>]", vma->vm_mm->context, page);
  212. #endif
  213. newpid = (CPU_CONTEXT(smp_processor_id(), vma->vm_mm) &
  214.   ASID_MASK);
  215. page &= (PAGE_MASK << 1);
  216. __save_and_cli(flags);
  217. oldpid = (get_entryhi() & ASID_MASK);
  218. set_entryhi(page | newpid);
  219. tlb_probe();
  220. idx = get_index();
  221. set_entrylo0(0);
  222. set_entrylo1(0);
  223. set_entryhi(KSEG0);
  224. if (idx < 0)
  225. goto finish;
  226. tlb_write_indexed();
  227. finish:
  228. set_entryhi(oldpid);
  229. __restore_flags(flags);
  230. }
  231. }
  232. /* XXX Simplify this.  On the R10000 writing a TLB entry for an virtual
  233.    address that already exists will overwrite the old entry and not result
  234.    in TLB malfunction or TLB shutdown.  */
  235. static void andes_update_mmu_cache(struct vm_area_struct * vma,
  236.                                    unsigned long address, pte_t pte)
  237. {
  238. unsigned long flags;
  239. pgd_t *pgdp;
  240. pmd_t *pmdp;
  241. pte_t *ptep;
  242. int idx, pid;
  243. /*
  244.  * Handle debugger faulting in for debugee.
  245.  */
  246. if (current->active_mm != vma->vm_mm)
  247. return;
  248. pid = get_entryhi() & ASID_MASK;
  249. if ((pid != (CPU_CONTEXT(smp_processor_id(), vma->vm_mm) & ASID_MASK))
  250.     || (CPU_CONTEXT(smp_processor_id(), vma->vm_mm) == 0)) {
  251. printk(KERN_WARNING
  252.        "%s: Wheee, bogus tlbpid mmpid=%d tlbpid=%dn",
  253.        __FUNCTION__, (int) (CPU_CONTEXT(smp_processor_id(),
  254.        vma->vm_mm) & ASID_MASK), pid);
  255. }
  256. __save_and_cli(flags);
  257. address &= (PAGE_MASK << 1);
  258. set_entryhi(address | (pid));
  259. pgdp = pgd_offset(vma->vm_mm, address);
  260. tlb_probe();
  261. pmdp = pmd_offset(pgdp, address);
  262. idx = get_index();
  263. ptep = pte_offset(pmdp, address);
  264. set_entrylo0(pte_val(*ptep++) >> 6);
  265. set_entrylo1(pte_val(*ptep) >> 6);
  266. set_entryhi(address | (pid));
  267. if (idx < 0) {
  268. tlb_write_random();
  269. } else {
  270. tlb_write_indexed();
  271. }
  272. set_entryhi(pid);
  273. __restore_flags(flags);
  274. }
  275. void __init ld_mmu_andes(void)
  276. {
  277. printk("Primary instruction cache %dkb, linesize %d bytesn",
  278.        icache_size >> 10, ic_lsize);
  279. printk("Primary data cache %dkb, linesize %d bytesn",
  280.        dcache_size >> 10, dc_lsize);
  281. printk("Secondary cache sized at %ldK, linesize %ldn",
  282.        scache_size() >> 10, sc_lsize());
  283. _clear_page = andes_clear_page;
  284. _copy_page = andes_copy_page;
  285. _flush_cache_l1 = andes_flush_cache_l1;
  286. _flush_cache_l2 = andes_flush_cache_l2;
  287. _flush_cache_sigtramp = andes_flush_cache_sigtramp;
  288. switch (sc_lsize()) {
  289. case 64:
  290. scache_lsz64 = 1;
  291. break;
  292. case 128:
  293. scache_lsz64 = 0;
  294. break;
  295. default:
  296. printk(KERN_EMERG "Unknown L2 line sizen");
  297. while(1);
  298. }
  299. _update_mmu_cache = andes_update_mmu_cache;
  300.         flush_cache_l1();
  301. /*
  302.  * You should never change this register:
  303.  *   - On R4600 1.7 the tlbp never hits for pages smaller than
  304.  *     the value in the c0_pagemask register.
  305.  *   - The entire mm handling assumes the c0_pagemask register to
  306.  *     be set for 4kb pages.
  307.  */
  308. write_32bit_cp0_register(CP0_PAGEMASK, PM_4K);
  309. write_32bit_cp0_register(CP0_FRAMEMASK, 0);
  310.         /* From this point on the ARC firmware is dead.  */
  311. local_flush_tlb_all();
  312. /* Did I tell you that ARC SUCKS?  */
  313. }