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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/cris/mm/tlb.c
  3.  *
  4.  *  Copyright (C) 2000, 2001  Axis Communications AB
  5.  *  
  6.  *  Authors:   Bjorn Wesen (bjornw@axis.com)
  7.  *
  8.  */
  9. #include <linux/sched.h>
  10. #include <linux/kernel.h>
  11. #include <linux/errno.h>
  12. #include <linux/string.h>
  13. #include <linux/types.h>
  14. #include <linux/ptrace.h>
  15. #include <linux/mman.h>
  16. #include <linux/mm.h>
  17. #include <linux/init.h>
  18. #include <asm/system.h>
  19. #include <asm/segment.h>
  20. #include <asm/pgtable.h>
  21. #include <asm/svinto.h>
  22. #include <asm/mmu_context.h>
  23. #define D(x)
  24. /* CRIS in Etrax100LX TLB */
  25. #define NUM_TLB_ENTRIES 64
  26. #define NUM_PAGEID 64
  27. #define INVALID_PAGEID 63
  28. #define NO_CONTEXT -1
  29. /* The TLB can host up to 64 different mm contexts at the same time.
  30.  * The running context is R_MMU_CONTEXT, and each TLB entry contains a
  31.  * page_id that has to match to give a hit. In page_id_map, we keep track
  32.  * of which mm's we have assigned which page_id's, so that we know when
  33.  * to invalidate TLB entries.
  34.  *
  35.  * The last page_id is never running - it is used as an invalid page_id
  36.  * so we can make TLB entries that will never match.
  37.  *
  38.  * Notice that we need to make the flushes atomic, otherwise an interrupt
  39.  * handler that uses vmalloced memory might cause a TLB load in the middle
  40.  * of a flush causing.
  41.  */
  42. struct mm_struct *page_id_map[NUM_PAGEID];
  43. static int map_replace_ptr = 1;  /* which page_id_map entry to replace next */
  44. /* invalidate all TLB entries */
  45. void
  46. flush_tlb_all(void)
  47. {
  48. int i;
  49. unsigned long flags;
  50. /* the vpn of i & 0xf is so we dont write similar TLB entries
  51.  * in the same 4-way entry group. details.. 
  52.  */
  53. save_and_cli(flags); /* flush needs to be atomic */
  54. for(i = 0; i < NUM_TLB_ENTRIES; i++) {
  55. *R_TLB_SELECT = ( IO_FIELD(R_TLB_SELECT, index, i) );
  56. *R_TLB_HI = ( IO_FIELD(R_TLB_HI, page_id, INVALID_PAGEID ) |
  57.       IO_FIELD(R_TLB_HI, vpn,     i & 0xf ) );
  58. *R_TLB_LO = ( IO_STATE(R_TLB_LO, global,no       ) |
  59.       IO_STATE(R_TLB_LO, valid, no       ) |
  60.       IO_STATE(R_TLB_LO, kernel,no  ) |
  61.       IO_STATE(R_TLB_LO, we,    no       ) |
  62.       IO_FIELD(R_TLB_LO, pfn,   0        ) );
  63. }
  64. restore_flags(flags);
  65. D(printk("tlb: flushed alln"));
  66. }
  67. /* invalidate the selected mm context only */
  68. void
  69. flush_tlb_mm(struct mm_struct *mm)
  70. {
  71. int i;
  72. int page_id = mm->context;
  73. unsigned long flags;
  74. D(printk("tlb: flush mm context %d (%p)n", page_id, mm));
  75. if(page_id == NO_CONTEXT)
  76. return;
  77. /* mark the TLB entries that match the page_id as invalid.
  78.  * here we could also check the _PAGE_GLOBAL bit and NOT flush
  79.  * global pages. is it worth the extra I/O ? 
  80.  */
  81. save_and_cli(flags);  /* flush needs to be atomic */
  82. for(i = 0; i < NUM_TLB_ENTRIES; i++) {
  83. *R_TLB_SELECT = IO_FIELD(R_TLB_SELECT, index, i);
  84. if (IO_EXTRACT(R_TLB_HI, page_id, *R_TLB_HI) == page_id) {
  85. *R_TLB_HI = ( IO_FIELD(R_TLB_HI, page_id, INVALID_PAGEID ) |
  86.       IO_FIELD(R_TLB_HI, vpn,     i & 0xf ) );
  87. *R_TLB_LO = ( IO_STATE(R_TLB_LO, global,no  ) |
  88.       IO_STATE(R_TLB_LO, valid, no  ) |
  89.       IO_STATE(R_TLB_LO, kernel,no  ) |
  90.       IO_STATE(R_TLB_LO, we,    no  ) |
  91.       IO_FIELD(R_TLB_LO, pfn,   0   ) );
  92. }
  93. }
  94. restore_flags(flags);
  95. }
  96. /* invalidate a single page */
  97. void
  98. flush_tlb_page(struct vm_area_struct *vma, 
  99.        unsigned long addr)
  100. {
  101. struct mm_struct *mm = vma->vm_mm;
  102. int page_id = mm->context;
  103. int i;
  104. unsigned long flags;
  105. D(printk("tlb: flush page %p in context %d (%p)n", addr, page_id, mm));
  106. if(page_id == NO_CONTEXT)
  107. return;
  108. addr &= PAGE_MASK; /* perhaps not necessary */
  109. /* invalidate those TLB entries that match both the mm context
  110.  * and the virtual address requested 
  111.  */
  112. save_and_cli(flags);  /* flush needs to be atomic */
  113. for(i = 0; i < NUM_TLB_ENTRIES; i++) {
  114. unsigned long tlb_hi;
  115. *R_TLB_SELECT = IO_FIELD(R_TLB_SELECT, index, i);
  116. tlb_hi = *R_TLB_HI;
  117. if (IO_EXTRACT(R_TLB_HI, page_id, tlb_hi) == page_id &&
  118.     (tlb_hi & PAGE_MASK) == addr) {
  119. *R_TLB_HI = IO_FIELD(R_TLB_HI, page_id, INVALID_PAGEID ) |
  120. addr; /* same addr as before works. */
  121. *R_TLB_LO = ( IO_STATE(R_TLB_LO, global,no  ) |
  122.       IO_STATE(R_TLB_LO, valid, no  ) |
  123.       IO_STATE(R_TLB_LO, kernel,no  ) |
  124.       IO_STATE(R_TLB_LO, we,    no  ) |
  125.       IO_FIELD(R_TLB_LO, pfn,   0   ) );
  126. }
  127. }
  128. restore_flags(flags);
  129. }
  130. /* invalidate a page range */
  131. void
  132. flush_tlb_range(struct mm_struct *mm, 
  133. unsigned long start,
  134. unsigned long end)
  135. {
  136. int page_id = mm->context;
  137. int i;
  138. unsigned long flags;
  139. D(printk("tlb: flush range %p<->%p in context %d (%p)n",
  140.  start, end, page_id, mm));
  141. if(page_id == NO_CONTEXT)
  142. return;
  143. start &= PAGE_MASK;  /* probably not necessary */
  144. end &= PAGE_MASK;    /* dito */
  145. /* invalidate those TLB entries that match both the mm context
  146.  * and the virtual address range
  147.  */
  148. save_and_cli(flags);  /* flush needs to be atomic */
  149. for(i = 0; i < NUM_TLB_ENTRIES; i++) {
  150. unsigned long tlb_hi, vpn;
  151. *R_TLB_SELECT = IO_FIELD(R_TLB_SELECT, index, i);
  152. tlb_hi = *R_TLB_HI;
  153. vpn = tlb_hi & PAGE_MASK;
  154. if (IO_EXTRACT(R_TLB_HI, page_id, tlb_hi) == page_id &&
  155.     vpn >= start && vpn < end) {
  156. *R_TLB_HI = ( IO_FIELD(R_TLB_HI, page_id, INVALID_PAGEID ) |
  157.       IO_FIELD(R_TLB_HI, vpn,     i & 0xf ) );
  158. *R_TLB_LO = ( IO_STATE(R_TLB_LO, global,no  ) |
  159.       IO_STATE(R_TLB_LO, valid, no  ) |
  160.       IO_STATE(R_TLB_LO, kernel,no  ) |
  161.       IO_STATE(R_TLB_LO, we,    no  ) |
  162.       IO_FIELD(R_TLB_LO, pfn,   0   ) );
  163. }
  164. }
  165. restore_flags(flags);
  166. }
  167. /* dump the entire TLB for debug purposes */
  168. #if 0
  169. void
  170. dump_tlb_all(void)
  171. {
  172. int i;
  173. unsigned long flags;
  174. printk("TLB dump. LO is: pfn | reserved | global | valid | kernel | we  |n");
  175. save_and_cli(flags);
  176. for(i = 0; i < NUM_TLB_ENTRIES; i++) {
  177. *R_TLB_SELECT = ( IO_FIELD(R_TLB_SELECT, index, i) );
  178. printk("Entry %d: HI 0x%08lx, LO 0x%08lxn",
  179.        i, *R_TLB_HI, *R_TLB_LO);
  180. }
  181. restore_flags(flags);
  182. }
  183. #endif
  184. /*
  185.  * Initialize the context related info for a new mm_struct
  186.  * instance.
  187.  */
  188. int
  189. init_new_context(struct task_struct *tsk, struct mm_struct *mm)
  190. {
  191. mm->context = NO_CONTEXT;
  192. return 0;
  193. }
  194. /* the following functions are similar to those used in the PPC port */
  195. static inline void
  196. alloc_context(struct mm_struct *mm)
  197. {
  198. struct mm_struct *old_mm;
  199. D(printk("tlb: alloc context %d (%p)n", map_replace_ptr, mm));
  200. /* did we replace an mm ? */
  201. old_mm = page_id_map[map_replace_ptr];
  202. if(old_mm) {
  203. /* throw out any TLB entries belonging to the mm we replace
  204.  * in the map
  205.  */
  206. flush_tlb_mm(old_mm);
  207. old_mm->context = NO_CONTEXT;
  208. }
  209. /* insert it into the page_id_map */
  210. mm->context = map_replace_ptr;
  211. page_id_map[map_replace_ptr] = mm;
  212. map_replace_ptr++;
  213. if(map_replace_ptr == INVALID_PAGEID)
  214. map_replace_ptr = 0;         /* wrap around */
  215. }
  216. /* 
  217.  * if needed, get a new MMU context for the mm. otherwise nothing is done.
  218.  */
  219. void
  220. get_mmu_context(struct mm_struct *mm)
  221. {
  222. if(mm->context == NO_CONTEXT)
  223. alloc_context(mm);
  224. }
  225. /* called in schedule() just before actually doing the switch_to */
  226. void 
  227. switch_mm(struct mm_struct *prev, struct mm_struct *next,
  228.   struct task_struct *tsk, int cpu)
  229. {
  230. /* make sure we have a context */
  231. get_mmu_context(next);
  232. /* remember the pgd for the fault handlers
  233.  * this is similar to the pgd register in some other CPU's.
  234.  * we need our own copy of it because current and active_mm
  235.  * might be invalid at points where we still need to derefer
  236.  * the pgd.
  237.  */
  238. current_pgd = next->pgd;
  239. /* switch context in the MMU */
  240. D(printk("switching mmu_context to %d (%p)n", next->context, next));
  241. *R_MMU_CONTEXT = IO_FIELD(R_MMU_CONTEXT, page_id, next->context);
  242. }
  243. /* called by __exit_mm to destroy the used MMU context if any before
  244.  * destroying the mm itself. this is only called when the last user of the mm
  245.  * drops it.
  246.  *
  247.  * the only thing we really need to do here is mark the used PID slot
  248.  * as empty.
  249.  */
  250. void
  251. destroy_context(struct mm_struct *mm)
  252. {
  253. if(mm->context != NO_CONTEXT) {
  254. D(printk("destroy_context %d (%p)n", mm->context, mm));
  255. flush_tlb_mm(mm);  /* TODO this might be redundant ? */
  256. page_id_map[mm->context] = NULL;
  257. /* mm->context = NO_CONTEXT; redundant.. mm will be freed */
  258. }
  259. }
  260. /* called once during VM initialization, from init.c */
  261. void __init
  262. tlb_init(void)
  263. {
  264. int i;
  265. /* clear the page_id map */
  266. for (i = 1; i < sizeof (page_id_map) / sizeof (page_id_map[0]); i++)
  267. page_id_map[i] = NULL;
  268. /* invalidate the entire TLB */
  269. flush_tlb_all();
  270. /* the init_mm has context 0 from the boot */
  271. page_id_map[0] = &init_mm;
  272. }