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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __ALPHA_MMU_CONTEXT_H
  2. #define __ALPHA_MMU_CONTEXT_H
  3. /*
  4.  * get a new mmu context..
  5.  *
  6.  * Copyright (C) 1996, Linus Torvalds
  7.  */
  8. #include <linux/config.h>
  9. #include <asm/system.h>
  10. #include <asm/machvec.h>
  11. /*
  12.  * Force a context reload. This is needed when we change the page
  13.  * table pointer or when we update the ASN of the current process.
  14.  */
  15. /* Don't get into trouble with dueling __EXTERN_INLINEs.  */
  16. #ifndef __EXTERN_INLINE
  17. #include <asm/io.h>
  18. #endif
  19. extern inline unsigned long
  20. __reload_thread(struct thread_struct *pcb)
  21. {
  22. register unsigned long a0 __asm__("$16");
  23. register unsigned long v0 __asm__("$0");
  24. a0 = virt_to_phys(pcb);
  25. __asm__ __volatile__(
  26. "call_pal %2 #__reload_thread"
  27. : "=r"(v0), "=r"(a0)
  28. : "i"(PAL_swpctx), "r"(a0)
  29. : "$1", "$16", "$22", "$23", "$24", "$25");
  30. return v0;
  31. }
  32. /*
  33.  * The maximum ASN's the processor supports.  On the EV4 this is 63
  34.  * but the PAL-code doesn't actually use this information.  On the
  35.  * EV5 this is 127, and EV6 has 255.
  36.  *
  37.  * On the EV4, the ASNs are more-or-less useless anyway, as they are
  38.  * only used as an icache tag, not for TB entries.  On the EV5 and EV6,
  39.  * ASN's also validate the TB entries, and thus make a lot more sense.
  40.  *
  41.  * The EV4 ASN's don't even match the architecture manual, ugh.  And
  42.  * I quote: "If a processor implements address space numbers (ASNs),
  43.  * and the old PTE has the Address Space Match (ASM) bit clear (ASNs
  44.  * in use) and the Valid bit set, then entries can also effectively be
  45.  * made coherent by assigning a new, unused ASN to the currently
  46.  * running process and not reusing the previous ASN before calling the
  47.  * appropriate PALcode routine to invalidate the translation buffer (TB)". 
  48.  *
  49.  * In short, the EV4 has a "kind of" ASN capability, but it doesn't actually
  50.  * work correctly and can thus not be used (explaining the lack of PAL-code
  51.  * support).
  52.  */
  53. #define EV4_MAX_ASN 63
  54. #define EV5_MAX_ASN 127
  55. #define EV6_MAX_ASN 255
  56. #ifdef CONFIG_ALPHA_GENERIC
  57. # define MAX_ASN (alpha_mv.max_asn)
  58. #else
  59. # ifdef CONFIG_ALPHA_EV4
  60. #  define MAX_ASN EV4_MAX_ASN
  61. # elif defined(CONFIG_ALPHA_EV5)
  62. #  define MAX_ASN EV5_MAX_ASN
  63. # else
  64. #  define MAX_ASN EV6_MAX_ASN
  65. # endif
  66. #endif
  67. /*
  68.  * cpu_last_asn(processor):
  69.  * 63                                            0
  70.  * +-------------+----------------+--------------+
  71.  * | asn version | this processor | hardware asn |
  72.  * +-------------+----------------+--------------+
  73.  */
  74. #ifdef CONFIG_SMP
  75. #include <asm/smp.h>
  76. #define cpu_last_asn(cpuid) (cpu_data[cpuid].last_asn)
  77. #else
  78. extern unsigned long last_asn;
  79. #define cpu_last_asn(cpuid) last_asn
  80. #endif /* CONFIG_SMP */
  81. #define WIDTH_HARDWARE_ASN 8
  82. #define ASN_FIRST_VERSION (1UL << WIDTH_HARDWARE_ASN)
  83. #define HARDWARE_ASN_MASK ((1UL << WIDTH_HARDWARE_ASN) - 1)
  84. /*
  85.  * NOTE! The way this is set up, the high bits of the "asn_cache" (and
  86.  * the "mm->context") are the ASN _version_ code. A version of 0 is
  87.  * always considered invalid, so to invalidate another process you only
  88.  * need to do "p->mm->context = 0".
  89.  *
  90.  * If we need more ASN's than the processor has, we invalidate the old
  91.  * user TLB's (tbiap()) and start a new ASN version. That will automatically
  92.  * force a new asn for any other processes the next time they want to
  93.  * run.
  94.  */
  95. #ifndef __EXTERN_INLINE
  96. #define __EXTERN_INLINE extern inline
  97. #define __MMU_EXTERN_INLINE
  98. #endif
  99. static inline unsigned long
  100. __get_new_mm_context(struct mm_struct *mm, long cpu)
  101. {
  102. unsigned long asn = cpu_last_asn(cpu);
  103. unsigned long next = asn + 1;
  104. if ((asn & HARDWARE_ASN_MASK) >= MAX_ASN) {
  105. tbiap();
  106. imb();
  107. next = (asn & ~HARDWARE_ASN_MASK) + ASN_FIRST_VERSION;
  108. }
  109. cpu_last_asn(cpu) = next;
  110. return next;
  111. }
  112. __EXTERN_INLINE void
  113. ev5_switch_mm(struct mm_struct *prev_mm, struct mm_struct *next_mm,
  114.       struct task_struct *next, long cpu)
  115. {
  116. /* Check if our ASN is of an older version, and thus invalid. */
  117. unsigned long asn;
  118. unsigned long mmc;
  119. #ifdef CONFIG_SMP
  120. cpu_data[cpu].asn_lock = 1;
  121. barrier();
  122. #endif
  123. asn = cpu_last_asn(cpu);
  124. mmc = next_mm->context[cpu];
  125. if ((mmc ^ asn) & ~HARDWARE_ASN_MASK) {
  126. mmc = __get_new_mm_context(next_mm, cpu);
  127. next_mm->context[cpu] = mmc;
  128. }
  129. #ifdef CONFIG_SMP
  130. else
  131. cpu_data[cpu].need_new_asn = 1;
  132. #endif
  133. /* Always update the PCB ASN.  Another thread may have allocated
  134.    a new mm->context (via flush_tlb_mm) without the ASN serial
  135.    number wrapping.  We have no way to detect when this is needed.  */
  136. next->thread.asn = mmc & HARDWARE_ASN_MASK;
  137. }
  138. __EXTERN_INLINE void
  139. ev4_switch_mm(struct mm_struct *prev_mm, struct mm_struct *next_mm,
  140.       struct task_struct *next, long cpu)
  141. {
  142. /* As described, ASN's are broken for TLB usage.  But we can
  143.    optimize for switching between threads -- if the mm is
  144.    unchanged from current we needn't flush.  */
  145. /* ??? May not be needed because EV4 PALcode recognizes that
  146.    ASN's are broken and does a tbiap itself on swpctx, under
  147.    the "Must set ASN or flush" rule.  At least this is true
  148.    for a 1992 SRM, reports Joseph Martin (jmartin@hlo.dec.com).
  149.    I'm going to leave this here anyway, just to Be Sure.  -- r~  */
  150. if (prev_mm != next_mm)
  151. tbiap();
  152. /* Do continue to allocate ASNs, because we can still use them
  153.    to avoid flushing the icache.  */
  154. ev5_switch_mm(prev_mm, next_mm, next, cpu);
  155. }
  156. extern void __load_new_mm_context(struct mm_struct *);
  157. #ifdef CONFIG_SMP
  158. #define check_mmu_context()
  159. do {
  160. int cpu = smp_processor_id();
  161. cpu_data[cpu].asn_lock = 0;
  162. barrier();
  163. if (cpu_data[cpu].need_new_asn) {
  164. struct mm_struct * mm = current->active_mm;
  165. cpu_data[cpu].need_new_asn = 0;
  166. if (!mm->context[cpu])
  167. __load_new_mm_context(mm);
  168. }
  169. } while(0)
  170. #else
  171. #define check_mmu_context()  do { } while(0)
  172. #endif
  173. __EXTERN_INLINE void
  174. ev5_activate_mm(struct mm_struct *prev_mm, struct mm_struct *next_mm)
  175. {
  176. __load_new_mm_context(next_mm);
  177. }
  178. __EXTERN_INLINE void
  179. ev4_activate_mm(struct mm_struct *prev_mm, struct mm_struct *next_mm)
  180. {
  181. __load_new_mm_context(next_mm);
  182. tbiap();
  183. }
  184. #ifdef CONFIG_ALPHA_GENERIC
  185. # define switch_mm(a,b,c,d) alpha_mv.mv_switch_mm((a),(b),(c),(d))
  186. # define activate_mm(x,y) alpha_mv.mv_activate_mm((x),(y))
  187. #else
  188. # ifdef CONFIG_ALPHA_EV4
  189. #  define switch_mm(a,b,c,d) ev4_switch_mm((a),(b),(c),(d))
  190. #  define activate_mm(x,y) ev4_activate_mm((x),(y))
  191. # else
  192. #  define switch_mm(a,b,c,d) ev5_switch_mm((a),(b),(c),(d))
  193. #  define activate_mm(x,y) ev5_activate_mm((x),(y))
  194. # endif
  195. #endif
  196. extern inline int
  197. init_new_context(struct task_struct *tsk, struct mm_struct *mm)
  198. {
  199. int i;
  200. for (i = 0; i < smp_num_cpus; i++)
  201. mm->context[cpu_logical_map(i)] = 0;
  202.         tsk->thread.ptbr = ((unsigned long)mm->pgd - IDENT_ADDR) >> PAGE_SHIFT;
  203. return 0;
  204. }
  205. extern inline void
  206. destroy_context(struct mm_struct *mm)
  207. {
  208. /* Nothing to do.  */
  209. }
  210. static inline void
  211. enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk, unsigned cpu)
  212. {
  213. tsk->thread.ptbr = ((unsigned long)mm->pgd - IDENT_ADDR) >> PAGE_SHIFT;
  214. }
  215. #ifdef __MMU_EXTERN_INLINE
  216. #undef __EXTERN_INLINE
  217. #undef __MMU_EXTERN_INLINE
  218. #endif
  219. #endif /* __ALPHA_MMU_CONTEXT_H */