mmu_context.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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,
  19. unsigned long tsb_reg,
  20. unsigned long tsb_vaddr,
  21. unsigned long tsb_pte,
  22. unsigned long tsb_descr_pa);
  23. static inline void tsb_context_switch(struct mm_struct *mm)
  24. {
  25. __tsb_context_switch(__pa(mm->pgd), mm->context.tsb_reg_val,
  26. mm->context.tsb_map_vaddr,
  27. mm->context.tsb_map_pte,
  28. __pa(&mm->context.tsb_descr));
  29. }
  30. extern void tsb_grow(struct mm_struct *mm, unsigned long mm_rss, gfp_t gfp_flags);
  31. #ifdef CONFIG_SMP
  32. extern void smp_tsb_sync(struct mm_struct *mm);
  33. #else
  34. #define smp_tsb_sync(__mm) do { } while (0)
  35. #endif
  36. /* Set MMU context in the actual hardware. */
  37. #define load_secondary_context(__mm) \
  38. __asm__ __volatile__( \
  39. "\n661: stxa %0, [%1] %2\n" \
  40. " .section .sun4v_1insn_patch, \"ax\"\n" \
  41. " .word 661b\n" \
  42. " stxa %0, [%1] %3\n" \
  43. " .previous\n" \
  44. " flush %%g6\n" \
  45. : /* No outputs */ \
  46. : "r" (CTX_HWBITS((__mm)->context)), \
  47. "r" (SECONDARY_CONTEXT), "i" (ASI_DMMU), "i" (ASI_MMU))
  48. extern void __flush_tlb_mm(unsigned long, unsigned long);
  49. /* Switch the current MM context. */
  50. static inline void switch_mm(struct mm_struct *old_mm, struct mm_struct *mm, struct task_struct *tsk)
  51. {
  52. unsigned long ctx_valid;
  53. int cpu;
  54. /* Note: page_table_lock is used here to serialize switch_mm
  55. * and activate_mm, and their calls to get_new_mmu_context.
  56. * This use of page_table_lock is unrelated to its other uses.
  57. */
  58. spin_lock(&mm->page_table_lock);
  59. ctx_valid = CTX_VALID(mm->context);
  60. if (!ctx_valid)
  61. get_new_mmu_context(mm);
  62. spin_unlock(&mm->page_table_lock);
  63. if (!ctx_valid || (old_mm != mm)) {
  64. load_secondary_context(mm);
  65. tsb_context_switch(mm);
  66. }
  67. /* Even if (mm == old_mm) we _must_ check
  68. * the cpu_vm_mask. If we do not we could
  69. * corrupt the TLB state because of how
  70. * smp_flush_tlb_{page,range,mm} on sparc64
  71. * and lazy tlb switches work. -DaveM
  72. */
  73. cpu = smp_processor_id();
  74. if (!ctx_valid || !cpu_isset(cpu, mm->cpu_vm_mask)) {
  75. cpu_set(cpu, mm->cpu_vm_mask);
  76. __flush_tlb_mm(CTX_HWBITS(mm->context),
  77. SECONDARY_CONTEXT);
  78. }
  79. }
  80. #define deactivate_mm(tsk,mm) do { } while (0)
  81. /* Activate a new MM instance for the current task. */
  82. static inline void activate_mm(struct mm_struct *active_mm, struct mm_struct *mm)
  83. {
  84. int cpu;
  85. /* Note: page_table_lock is used here to serialize switch_mm
  86. * and activate_mm, and their calls to get_new_mmu_context.
  87. * This use of page_table_lock is unrelated to its other uses.
  88. */
  89. spin_lock(&mm->page_table_lock);
  90. if (!CTX_VALID(mm->context))
  91. get_new_mmu_context(mm);
  92. cpu = smp_processor_id();
  93. if (!cpu_isset(cpu, mm->cpu_vm_mask))
  94. cpu_set(cpu, mm->cpu_vm_mask);
  95. spin_unlock(&mm->page_table_lock);
  96. load_secondary_context(mm);
  97. __flush_tlb_mm(CTX_HWBITS(mm->context), SECONDARY_CONTEXT);
  98. tsb_context_switch(mm);
  99. }
  100. #endif /* !(__ASSEMBLY__) */
  101. #endif /* !(__SPARC64_MMU_CONTEXT_H) */