mmu_context.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /* $Id: mmu_context.h,v 1.54 2002/02/09 19:49:31 davem Exp $ */
  2. #ifndef __SPARC64_MMU_CONTEXT_H
  3. #define __SPARC64_MMU_CONTEXT_H
  4. /* Derived heavily from Linus's Alpha/AXP ASN code... */
  5. #ifndef __ASSEMBLY__
  6. #include <linux/spinlock.h>
  7. #include <asm/system.h>
  8. #include <asm/spitfire.h>
  9. static inline void enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk)
  10. {
  11. }
  12. extern spinlock_t ctx_alloc_lock;
  13. extern unsigned long tlb_context_cache;
  14. extern unsigned long mmu_context_bmap[];
  15. extern void get_new_mmu_context(struct mm_struct *mm);
  16. extern int init_new_context(struct task_struct *tsk, struct mm_struct *mm);
  17. extern void destroy_context(struct mm_struct *mm);
  18. extern void __tsb_context_switch(unsigned long pgd_pa, unsigned long tsb_reg,
  19. unsigned long tsb_vaddr, unsigned long tsb_pte);
  20. static inline void tsb_context_switch(struct mm_struct *mm)
  21. {
  22. __tsb_context_switch(__pa(mm->pgd), mm->context.tsb_reg_val,
  23. mm->context.tsb_map_vaddr,
  24. mm->context.tsb_map_pte);
  25. }
  26. extern void tsb_grow(struct mm_struct *mm, unsigned long mm_rss, gfp_t gfp_flags);
  27. #ifdef CONFIG_SMP
  28. extern void smp_tsb_sync(struct mm_struct *mm);
  29. #else
  30. #define smp_tsb_sync(__mm) do { } while (0)
  31. #endif
  32. /* Set MMU context in the actual hardware. */
  33. #define load_secondary_context(__mm) \
  34. __asm__ __volatile__("stxa %0, [%1] %2\n\t" \
  35. "flush %%g6" \
  36. : /* No outputs */ \
  37. : "r" (CTX_HWBITS((__mm)->context)), \
  38. "r" (SECONDARY_CONTEXT), "i" (ASI_DMMU))
  39. extern void __flush_tlb_mm(unsigned long, unsigned long);
  40. /* Switch the current MM context. */
  41. static inline void switch_mm(struct mm_struct *old_mm, struct mm_struct *mm, struct task_struct *tsk)
  42. {
  43. unsigned long ctx_valid;
  44. int cpu;
  45. /* Note: page_table_lock is used here to serialize switch_mm
  46. * and activate_mm, and their calls to get_new_mmu_context.
  47. * This use of page_table_lock is unrelated to its other uses.
  48. */
  49. spin_lock(&mm->page_table_lock);
  50. ctx_valid = CTX_VALID(mm->context);
  51. if (!ctx_valid)
  52. get_new_mmu_context(mm);
  53. spin_unlock(&mm->page_table_lock);
  54. if (!ctx_valid || (old_mm != mm)) {
  55. load_secondary_context(mm);
  56. tsb_context_switch(mm);
  57. }
  58. /* Even if (mm == old_mm) we _must_ check
  59. * the cpu_vm_mask. If we do not we could
  60. * corrupt the TLB state because of how
  61. * smp_flush_tlb_{page,range,mm} on sparc64
  62. * and lazy tlb switches work. -DaveM
  63. */
  64. cpu = smp_processor_id();
  65. if (!ctx_valid || !cpu_isset(cpu, mm->cpu_vm_mask)) {
  66. cpu_set(cpu, mm->cpu_vm_mask);
  67. __flush_tlb_mm(CTX_HWBITS(mm->context),
  68. SECONDARY_CONTEXT);
  69. }
  70. }
  71. #define deactivate_mm(tsk,mm) do { } while (0)
  72. /* Activate a new MM instance for the current task. */
  73. static inline void activate_mm(struct mm_struct *active_mm, struct mm_struct *mm)
  74. {
  75. int cpu;
  76. /* Note: page_table_lock is used here to serialize switch_mm
  77. * and activate_mm, and their calls to get_new_mmu_context.
  78. * This use of page_table_lock is unrelated to its other uses.
  79. */
  80. spin_lock(&mm->page_table_lock);
  81. if (!CTX_VALID(mm->context))
  82. get_new_mmu_context(mm);
  83. cpu = smp_processor_id();
  84. if (!cpu_isset(cpu, mm->cpu_vm_mask))
  85. cpu_set(cpu, mm->cpu_vm_mask);
  86. spin_unlock(&mm->page_table_lock);
  87. load_secondary_context(mm);
  88. __flush_tlb_mm(CTX_HWBITS(mm->context), SECONDARY_CONTEXT);
  89. tsb_context_switch(mm);
  90. }
  91. #endif /* !(__ASSEMBLY__) */
  92. #endif /* !(__SPARC64_MMU_CONTEXT_H) */