2 * Switch an MMU context.
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
8 * Copyright (C) 2001 - 2013 Tensilica Inc.
11 #ifndef _XTENSA_MMU_CONTEXT_H
12 #define _XTENSA_MMU_CONTEXT_H
15 #include <asm/nommu_context.h>
18 #include <linux/stringify.h>
19 #include <linux/sched.h>
20 #include <linux/mm_types.h>
22 #include <asm/vectors.h>
24 #include <asm/pgtable.h>
25 #include <asm/cacheflush.h>
26 #include <asm/tlbflush.h>
27 #include <asm-generic/mm_hooks.h>
28 #include <asm-generic/percpu.h>
30 #if (XCHAL_HAVE_TLBS != 1)
31 # error "Linux must have an MMU!"
34 DECLARE_PER_CPU(unsigned long, asid_cache);
35 #define cpu_asid_cache(cpu) per_cpu(asid_cache, cpu)
38 * NO_CONTEXT is the invalid ASID value that we don't ever assign to
39 * any user or kernel context. We use the reserved values in the
40 * ASID_INSERT macro below.
50 #define ASID_USER_FIRST 4
51 #define ASID_MASK ((1 << XCHAL_MMU_ASID_BITS) - 1)
52 #define ASID_INSERT(x) (0x03020001 | (((x) & ASID_MASK) << 8))
57 static inline void set_rasid_register (unsigned long val)
59 __asm__ __volatile__ (" wsr %0, rasid\n\t"
60 " isync\n" : : "a" (val));
63 static inline unsigned long get_rasid_register (void)
66 __asm__ __volatile__ (" rsr %0, rasid\n\t" : "=a" (tmp));
70 static inline void get_new_mmu_context(struct mm_struct *mm, unsigned int cpu)
72 unsigned long asid = cpu_asid_cache(cpu);
73 if ((++asid & ASID_MASK) == 0) {
75 * Start new asid cycle; continue counting with next
76 * incarnation bits; skipping over 0, 1, 2, 3.
78 local_flush_tlb_all();
79 asid += ASID_USER_FIRST;
81 cpu_asid_cache(cpu) = asid;
82 mm->context.asid[cpu] = asid;
83 mm->context.cpu = cpu;
86 static inline void get_mmu_context(struct mm_struct *mm, unsigned int cpu)
89 * Check if our ASID is of an older version and thus invalid.
93 unsigned long asid = mm->context.asid[cpu];
95 if (asid == NO_CONTEXT ||
96 ((asid ^ cpu_asid_cache(cpu)) & ~ASID_MASK))
97 get_new_mmu_context(mm, cpu);
101 static inline void activate_context(struct mm_struct *mm, unsigned int cpu)
103 get_mmu_context(mm, cpu);
104 set_rasid_register(ASID_INSERT(mm->context.asid[cpu]));
105 invalidate_page_directory();
109 * Initialize the context related info for a new mm_struct
110 * instance. Valid cpu values are 0..(NR_CPUS-1), so initializing
111 * to -1 says the process has never run on any core.
114 static inline int init_new_context(struct task_struct *tsk,
115 struct mm_struct *mm)
118 for_each_possible_cpu(cpu) {
119 mm->context.asid[cpu] = NO_CONTEXT;
121 mm->context.cpu = -1;
125 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next,
126 struct task_struct *tsk)
128 unsigned int cpu = smp_processor_id();
129 int migrated = next->context.cpu != cpu;
130 /* Flush the icache if we migrated to a new core. */
132 __invalidate_icache_all();
133 next->context.cpu = cpu;
135 if (migrated || prev != next)
136 activate_context(next, cpu);
139 #define activate_mm(prev, next) switch_mm((prev), (next), NULL)
140 #define deactivate_mm(tsk, mm) do { } while (0)
143 * Destroy context related info for an mm_struct that is about
146 static inline void destroy_context(struct mm_struct *mm)
148 invalidate_page_directory();
152 static inline void enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk)
158 #endif /* CONFIG_MMU */
159 #endif /* _XTENSA_MMU_CONTEXT_H */