mmu_context.h 3.4 KB

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