blob: 2760353591ab1088dee0daa9eb4a1784a9d754de [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* $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
13static inline void enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk)
14{
15}
16
17extern spinlock_t ctx_alloc_lock;
18extern unsigned long tlb_context_cache;
19extern unsigned long mmu_context_bmap[];
20
21extern void get_new_mmu_context(struct mm_struct *mm);
David S. Miller09f94282006-01-31 18:31:06 -080022extern int init_new_context(struct task_struct *tsk, struct mm_struct *mm);
23extern void destroy_context(struct mm_struct *mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
David S. Miller98c55842006-01-31 18:31:20 -080025extern void __tsb_context_switch(unsigned long pgd_pa, unsigned long tsb_reg,
26 unsigned long tsb_vaddr, unsigned long tsb_pte);
27
28static inline void tsb_context_switch(struct mm_struct *mm)
29{
30 __tsb_context_switch(__pa(mm->pgd), mm->context.tsb_reg_val,
31 mm->context.tsb_map_vaddr,
32 mm->context.tsb_map_pte);
33}
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
David S. Millerbd407912006-01-31 18:31:38 -080035extern void tsb_grow(struct mm_struct *mm, unsigned long mm_rss, gfp_t gfp_flags);
36#ifdef CONFIG_SMP
37extern void smp_tsb_sync(struct mm_struct *mm);
38#else
39#define smp_tsb_sync(__mm) do { } while (0)
40#endif
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042/* Set MMU context in the actual hardware. */
43#define load_secondary_context(__mm) \
David S. Miller8b11bd12006-02-07 22:13:05 -080044 __asm__ __volatile__( \
45 "\n661: stxa %0, [%1] %2\n" \
46 " .section .sun4v_1insn_patch, \"ax\"\n" \
47 " .word 661b\n" \
48 " stxa %0, [%1] %3\n" \
49 " .previous\n" \
50 " flush %%g6\n" \
51 : /* No outputs */ \
52 : "r" (CTX_HWBITS((__mm)->context)), \
53 "r" (SECONDARY_CONTEXT), "i" (ASI_DMMU), "i" (ASI_MMU))
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55extern void __flush_tlb_mm(unsigned long, unsigned long);
56
57/* Switch the current MM context. */
58static inline void switch_mm(struct mm_struct *old_mm, struct mm_struct *mm, struct task_struct *tsk)
59{
60 unsigned long ctx_valid;
Hugh Dickinsdedeb002005-11-07 14:09:01 -080061 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Hugh Dickinsdedeb002005-11-07 14:09:01 -080063 /* Note: page_table_lock is used here to serialize switch_mm
64 * and activate_mm, and their calls to get_new_mmu_context.
65 * This use of page_table_lock is unrelated to its other uses.
66 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 spin_lock(&mm->page_table_lock);
Hugh Dickinsdedeb002005-11-07 14:09:01 -080068 ctx_valid = CTX_VALID(mm->context);
69 if (!ctx_valid)
70 get_new_mmu_context(mm);
71 spin_unlock(&mm->page_table_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73 if (!ctx_valid || (old_mm != mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 load_secondary_context(mm);
David S. Miller98c55842006-01-31 18:31:20 -080075 tsb_context_switch(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 }
77
Hugh Dickinsdedeb002005-11-07 14:09:01 -080078 /* Even if (mm == old_mm) we _must_ check
79 * the cpu_vm_mask. If we do not we could
80 * corrupt the TLB state because of how
81 * smp_flush_tlb_{page,range,mm} on sparc64
82 * and lazy tlb switches work. -DaveM
83 */
84 cpu = smp_processor_id();
85 if (!ctx_valid || !cpu_isset(cpu, mm->cpu_vm_mask)) {
86 cpu_set(cpu, mm->cpu_vm_mask);
87 __flush_tlb_mm(CTX_HWBITS(mm->context),
88 SECONDARY_CONTEXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
92#define deactivate_mm(tsk,mm) do { } while (0)
93
94/* Activate a new MM instance for the current task. */
95static inline void activate_mm(struct mm_struct *active_mm, struct mm_struct *mm)
96{
97 int cpu;
98
Hugh Dickinsdedeb002005-11-07 14:09:01 -080099 /* Note: page_table_lock is used here to serialize switch_mm
100 * and activate_mm, and their calls to get_new_mmu_context.
101 * This use of page_table_lock is unrelated to its other uses.
102 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 spin_lock(&mm->page_table_lock);
104 if (!CTX_VALID(mm->context))
105 get_new_mmu_context(mm);
106 cpu = smp_processor_id();
107 if (!cpu_isset(cpu, mm->cpu_vm_mask))
108 cpu_set(cpu, mm->cpu_vm_mask);
109 spin_unlock(&mm->page_table_lock);
110
111 load_secondary_context(mm);
112 __flush_tlb_mm(CTX_HWBITS(mm->context), SECONDARY_CONTEXT);
David S. Miller98c55842006-01-31 18:31:20 -0800113 tsb_context_switch(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
116#endif /* !(__ASSEMBLY__) */
117
118#endif /* !(__SPARC64_MMU_CONTEXT_H) */