Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
| 5 | /* Derived heavily from Linus's Alpha/AXP ASN code... */ |
| 6 | |
| 7 | #ifndef __ASSEMBLY__ |
| 8 | |
| 9 | #include <linux/spinlock.h> |
| 10 | #include <asm/system.h> |
| 11 | #include <asm/spitfire.h> |
| 12 | |
| 13 | static inline void enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk) |
| 14 | { |
| 15 | } |
| 16 | |
| 17 | extern spinlock_t ctx_alloc_lock; |
| 18 | extern unsigned long tlb_context_cache; |
| 19 | extern unsigned long mmu_context_bmap[]; |
| 20 | |
| 21 | extern void get_new_mmu_context(struct mm_struct *mm); |
David S. Miller | 09f9428 | 2006-01-31 18:31:06 -0800 | [diff] [blame] | 22 | extern int init_new_context(struct task_struct *tsk, struct mm_struct *mm); |
| 23 | extern void destroy_context(struct mm_struct *mm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
David S. Miller | 618e9ed | 2006-02-09 17:21:53 -0800 | [diff] [blame^] | 25 | extern void __tsb_context_switch(unsigned long pgd_pa, |
| 26 | unsigned long tsb_reg, |
| 27 | unsigned long tsb_vaddr, |
| 28 | unsigned long tsb_pte, |
| 29 | unsigned long tsb_descr_pa); |
David S. Miller | 98c5584 | 2006-01-31 18:31:20 -0800 | [diff] [blame] | 30 | |
| 31 | static inline void tsb_context_switch(struct mm_struct *mm) |
| 32 | { |
| 33 | __tsb_context_switch(__pa(mm->pgd), mm->context.tsb_reg_val, |
| 34 | mm->context.tsb_map_vaddr, |
David S. Miller | 618e9ed | 2006-02-09 17:21:53 -0800 | [diff] [blame^] | 35 | mm->context.tsb_map_pte, |
| 36 | __pa(&mm->context.tsb_descr)); |
David S. Miller | 98c5584 | 2006-01-31 18:31:20 -0800 | [diff] [blame] | 37 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
David S. Miller | bd40791 | 2006-01-31 18:31:38 -0800 | [diff] [blame] | 39 | extern void tsb_grow(struct mm_struct *mm, unsigned long mm_rss, gfp_t gfp_flags); |
| 40 | #ifdef CONFIG_SMP |
| 41 | extern void smp_tsb_sync(struct mm_struct *mm); |
| 42 | #else |
| 43 | #define smp_tsb_sync(__mm) do { } while (0) |
| 44 | #endif |
| 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | /* Set MMU context in the actual hardware. */ |
| 47 | #define load_secondary_context(__mm) \ |
David S. Miller | 8b11bd1 | 2006-02-07 22:13:05 -0800 | [diff] [blame] | 48 | __asm__ __volatile__( \ |
| 49 | "\n661: stxa %0, [%1] %2\n" \ |
| 50 | " .section .sun4v_1insn_patch, \"ax\"\n" \ |
| 51 | " .word 661b\n" \ |
| 52 | " stxa %0, [%1] %3\n" \ |
| 53 | " .previous\n" \ |
| 54 | " flush %%g6\n" \ |
| 55 | : /* No outputs */ \ |
| 56 | : "r" (CTX_HWBITS((__mm)->context)), \ |
| 57 | "r" (SECONDARY_CONTEXT), "i" (ASI_DMMU), "i" (ASI_MMU)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
| 59 | extern void __flush_tlb_mm(unsigned long, unsigned long); |
| 60 | |
| 61 | /* Switch the current MM context. */ |
| 62 | static inline void switch_mm(struct mm_struct *old_mm, struct mm_struct *mm, struct task_struct *tsk) |
| 63 | { |
| 64 | unsigned long ctx_valid; |
Hugh Dickins | dedeb00 | 2005-11-07 14:09:01 -0800 | [diff] [blame] | 65 | int cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
Hugh Dickins | dedeb00 | 2005-11-07 14:09:01 -0800 | [diff] [blame] | 67 | /* Note: page_table_lock is used here to serialize switch_mm |
| 68 | * and activate_mm, and their calls to get_new_mmu_context. |
| 69 | * This use of page_table_lock is unrelated to its other uses. |
| 70 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | spin_lock(&mm->page_table_lock); |
Hugh Dickins | dedeb00 | 2005-11-07 14:09:01 -0800 | [diff] [blame] | 72 | ctx_valid = CTX_VALID(mm->context); |
| 73 | if (!ctx_valid) |
| 74 | get_new_mmu_context(mm); |
| 75 | spin_unlock(&mm->page_table_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
| 77 | if (!ctx_valid || (old_mm != mm)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | load_secondary_context(mm); |
David S. Miller | 98c5584 | 2006-01-31 18:31:20 -0800 | [diff] [blame] | 79 | tsb_context_switch(mm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | } |
| 81 | |
Hugh Dickins | dedeb00 | 2005-11-07 14:09:01 -0800 | [diff] [blame] | 82 | /* Even if (mm == old_mm) we _must_ check |
| 83 | * the cpu_vm_mask. If we do not we could |
| 84 | * corrupt the TLB state because of how |
| 85 | * smp_flush_tlb_{page,range,mm} on sparc64 |
| 86 | * and lazy tlb switches work. -DaveM |
| 87 | */ |
| 88 | cpu = smp_processor_id(); |
| 89 | if (!ctx_valid || !cpu_isset(cpu, mm->cpu_vm_mask)) { |
| 90 | cpu_set(cpu, mm->cpu_vm_mask); |
| 91 | __flush_tlb_mm(CTX_HWBITS(mm->context), |
| 92 | SECONDARY_CONTEXT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | #define deactivate_mm(tsk,mm) do { } while (0) |
| 97 | |
| 98 | /* Activate a new MM instance for the current task. */ |
| 99 | static inline void activate_mm(struct mm_struct *active_mm, struct mm_struct *mm) |
| 100 | { |
| 101 | int cpu; |
| 102 | |
Hugh Dickins | dedeb00 | 2005-11-07 14:09:01 -0800 | [diff] [blame] | 103 | /* Note: page_table_lock is used here to serialize switch_mm |
| 104 | * and activate_mm, and their calls to get_new_mmu_context. |
| 105 | * This use of page_table_lock is unrelated to its other uses. |
| 106 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | spin_lock(&mm->page_table_lock); |
| 108 | if (!CTX_VALID(mm->context)) |
| 109 | get_new_mmu_context(mm); |
| 110 | cpu = smp_processor_id(); |
| 111 | if (!cpu_isset(cpu, mm->cpu_vm_mask)) |
| 112 | cpu_set(cpu, mm->cpu_vm_mask); |
| 113 | spin_unlock(&mm->page_table_lock); |
| 114 | |
| 115 | load_secondary_context(mm); |
| 116 | __flush_tlb_mm(CTX_HWBITS(mm->context), SECONDARY_CONTEXT); |
David S. Miller | 98c5584 | 2006-01-31 18:31:20 -0800 | [diff] [blame] | 117 | tsb_context_switch(mm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | #endif /* !(__ASSEMBLY__) */ |
| 121 | |
| 122 | #endif /* !(__SPARC64_MMU_CONTEXT_H) */ |