xref: /openbmc/linux/arch/arm64/include/asm/mmu_context.h (revision d3ea42aad584493b99c109e59ced77db145a68e1)
1b3901d54SCatalin Marinas /*
2b3901d54SCatalin Marinas  * Based on arch/arm/include/asm/mmu_context.h
3b3901d54SCatalin Marinas  *
4b3901d54SCatalin Marinas  * Copyright (C) 1996 Russell King.
5b3901d54SCatalin Marinas  * Copyright (C) 2012 ARM Ltd.
6b3901d54SCatalin Marinas  *
7b3901d54SCatalin Marinas  * This program is free software; you can redistribute it and/or modify
8b3901d54SCatalin Marinas  * it under the terms of the GNU General Public License version 2 as
9b3901d54SCatalin Marinas  * published by the Free Software Foundation.
10b3901d54SCatalin Marinas  *
11b3901d54SCatalin Marinas  * This program is distributed in the hope that it will be useful,
12b3901d54SCatalin Marinas  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13b3901d54SCatalin Marinas  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14b3901d54SCatalin Marinas  * GNU General Public License for more details.
15b3901d54SCatalin Marinas  *
16b3901d54SCatalin Marinas  * You should have received a copy of the GNU General Public License
17b3901d54SCatalin Marinas  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18b3901d54SCatalin Marinas  */
19b3901d54SCatalin Marinas #ifndef __ASM_MMU_CONTEXT_H
20b3901d54SCatalin Marinas #define __ASM_MMU_CONTEXT_H
21b3901d54SCatalin Marinas 
22b3901d54SCatalin Marinas #include <linux/compiler.h>
23b3901d54SCatalin Marinas #include <linux/sched.h>
24b3901d54SCatalin Marinas 
25b3901d54SCatalin Marinas #include <asm/cacheflush.h>
26b3901d54SCatalin Marinas #include <asm/proc-fns.h>
27b3901d54SCatalin Marinas #include <asm-generic/mm_hooks.h>
28b3901d54SCatalin Marinas #include <asm/cputype.h>
29b3901d54SCatalin Marinas #include <asm/pgtable.h>
30adf75899SMark Rutland #include <asm/sysreg.h>
319e8e865bSMark Rutland #include <asm/tlbflush.h>
32b3901d54SCatalin Marinas 
33ec45d1cfSWill Deacon static inline void contextidr_thread_switch(struct task_struct *next)
34ec45d1cfSWill Deacon {
35*d3ea42aaSMark Rutland 	if (!IS_ENABLED(CONFIG_PID_IN_CONTEXTIDR))
36*d3ea42aaSMark Rutland 		return;
37*d3ea42aaSMark Rutland 
38adf75899SMark Rutland 	write_sysreg(task_pid_nr(next), contextidr_el1);
39adf75899SMark Rutland 	isb();
40ec45d1cfSWill Deacon }
41ec45d1cfSWill Deacon 
42b3901d54SCatalin Marinas /*
43b3901d54SCatalin Marinas  * Set TTBR0 to empty_zero_page. No translations will be possible via TTBR0.
44b3901d54SCatalin Marinas  */
45b3901d54SCatalin Marinas static inline void cpu_set_reserved_ttbr0(void)
46b3901d54SCatalin Marinas {
475227cfa7SMark Rutland 	unsigned long ttbr = virt_to_phys(empty_zero_page);
48b3901d54SCatalin Marinas 
49adf75899SMark Rutland 	write_sysreg(ttbr, ttbr0_el1);
50adf75899SMark Rutland 	isb();
51b3901d54SCatalin Marinas }
52b3901d54SCatalin Marinas 
53dd006da2SArd Biesheuvel /*
54dd006da2SArd Biesheuvel  * TCR.T0SZ value to use when the ID map is active. Usually equals
55dd006da2SArd Biesheuvel  * TCR_T0SZ(VA_BITS), unless system RAM is positioned very high in
56dd006da2SArd Biesheuvel  * physical memory, in which case it will be smaller.
57dd006da2SArd Biesheuvel  */
58dd006da2SArd Biesheuvel extern u64 idmap_t0sz;
59dd006da2SArd Biesheuvel 
60dd006da2SArd Biesheuvel static inline bool __cpu_uses_extended_idmap(void)
61dd006da2SArd Biesheuvel {
62dd006da2SArd Biesheuvel 	return (!IS_ENABLED(CONFIG_ARM64_VA_BITS_48) &&
63dd006da2SArd Biesheuvel 		unlikely(idmap_t0sz != TCR_T0SZ(VA_BITS)));
64dd006da2SArd Biesheuvel }
65dd006da2SArd Biesheuvel 
66c51e97d8SWill Deacon /*
67c51e97d8SWill Deacon  * Set TCR.T0SZ to its default value (based on VA_BITS)
68c51e97d8SWill Deacon  */
69609116d2SMark Rutland static inline void __cpu_set_tcr_t0sz(unsigned long t0sz)
70dd006da2SArd Biesheuvel {
71dd006da2SArd Biesheuvel 	unsigned long tcr;
72dd006da2SArd Biesheuvel 
73c51e97d8SWill Deacon 	if (!__cpu_uses_extended_idmap())
74c51e97d8SWill Deacon 		return;
75c51e97d8SWill Deacon 
76adf75899SMark Rutland 	tcr = read_sysreg(tcr_el1);
77adf75899SMark Rutland 	tcr &= ~TCR_T0SZ_MASK;
78adf75899SMark Rutland 	tcr |= t0sz << TCR_T0SZ_OFFSET;
79adf75899SMark Rutland 	write_sysreg(tcr, tcr_el1);
80adf75899SMark Rutland 	isb();
81dd006da2SArd Biesheuvel }
82dd006da2SArd Biesheuvel 
83609116d2SMark Rutland #define cpu_set_default_tcr_t0sz()	__cpu_set_tcr_t0sz(TCR_T0SZ(VA_BITS))
84609116d2SMark Rutland #define cpu_set_idmap_tcr_t0sz()	__cpu_set_tcr_t0sz(idmap_t0sz)
85609116d2SMark Rutland 
86b3901d54SCatalin Marinas /*
879e8e865bSMark Rutland  * Remove the idmap from TTBR0_EL1 and install the pgd of the active mm.
889e8e865bSMark Rutland  *
899e8e865bSMark Rutland  * The idmap lives in the same VA range as userspace, but uses global entries
909e8e865bSMark Rutland  * and may use a different TCR_EL1.T0SZ. To avoid issues resulting from
919e8e865bSMark Rutland  * speculative TLB fetches, we must temporarily install the reserved page
929e8e865bSMark Rutland  * tables while we invalidate the TLBs and set up the correct TCR_EL1.T0SZ.
939e8e865bSMark Rutland  *
949e8e865bSMark Rutland  * If current is a not a user task, the mm covers the TTBR1_EL1 page tables,
959e8e865bSMark Rutland  * which should not be installed in TTBR0_EL1. In this case we can leave the
969e8e865bSMark Rutland  * reserved page tables in place.
979e8e865bSMark Rutland  */
989e8e865bSMark Rutland static inline void cpu_uninstall_idmap(void)
999e8e865bSMark Rutland {
1009e8e865bSMark Rutland 	struct mm_struct *mm = current->active_mm;
1019e8e865bSMark Rutland 
1029e8e865bSMark Rutland 	cpu_set_reserved_ttbr0();
1039e8e865bSMark Rutland 	local_flush_tlb_all();
1049e8e865bSMark Rutland 	cpu_set_default_tcr_t0sz();
1059e8e865bSMark Rutland 
1069e8e865bSMark Rutland 	if (mm != &init_mm)
1079e8e865bSMark Rutland 		cpu_switch_mm(mm->pgd, mm);
1089e8e865bSMark Rutland }
1099e8e865bSMark Rutland 
110609116d2SMark Rutland static inline void cpu_install_idmap(void)
111609116d2SMark Rutland {
112609116d2SMark Rutland 	cpu_set_reserved_ttbr0();
113609116d2SMark Rutland 	local_flush_tlb_all();
114609116d2SMark Rutland 	cpu_set_idmap_tcr_t0sz();
115609116d2SMark Rutland 
116609116d2SMark Rutland 	cpu_switch_mm(idmap_pg_dir, &init_mm);
117609116d2SMark Rutland }
118609116d2SMark Rutland 
1199e8e865bSMark Rutland /*
12050e1881dSMark Rutland  * Atomically replaces the active TTBR1_EL1 PGD with a new VA-compatible PGD,
12150e1881dSMark Rutland  * avoiding the possibility of conflicting TLB entries being allocated.
12250e1881dSMark Rutland  */
12350e1881dSMark Rutland static inline void cpu_replace_ttbr1(pgd_t *pgd)
12450e1881dSMark Rutland {
12550e1881dSMark Rutland 	typedef void (ttbr_replace_func)(phys_addr_t);
12650e1881dSMark Rutland 	extern ttbr_replace_func idmap_cpu_replace_ttbr1;
12750e1881dSMark Rutland 	ttbr_replace_func *replace_phys;
12850e1881dSMark Rutland 
12950e1881dSMark Rutland 	phys_addr_t pgd_phys = virt_to_phys(pgd);
13050e1881dSMark Rutland 
13150e1881dSMark Rutland 	replace_phys = (void *)virt_to_phys(idmap_cpu_replace_ttbr1);
13250e1881dSMark Rutland 
13350e1881dSMark Rutland 	cpu_install_idmap();
13450e1881dSMark Rutland 	replace_phys(pgd_phys);
13550e1881dSMark Rutland 	cpu_uninstall_idmap();
13650e1881dSMark Rutland }
13750e1881dSMark Rutland 
13850e1881dSMark Rutland /*
1395aec715dSWill Deacon  * It would be nice to return ASIDs back to the allocator, but unfortunately
1405aec715dSWill Deacon  * that introduces a race with a generation rollover where we could erroneously
1415aec715dSWill Deacon  * free an ASID allocated in a future generation. We could workaround this by
1425aec715dSWill Deacon  * freeing the ASID from the context of the dying mm (e.g. in arch_exit_mmap),
1435aec715dSWill Deacon  * but we'd then need to make sure that we didn't dirty any TLBs afterwards.
1445aec715dSWill Deacon  * Setting a reserved TTBR0 or EPD0 would work, but it all gets ugly when you
1455aec715dSWill Deacon  * take CPU migration into account.
146b3901d54SCatalin Marinas  */
147b3901d54SCatalin Marinas #define destroy_context(mm)		do { } while(0)
1485aec715dSWill Deacon void check_and_switch_context(struct mm_struct *mm, unsigned int cpu);
149b3901d54SCatalin Marinas 
15065da0a8eSArd Biesheuvel #define init_new_context(tsk,mm)	({ atomic64_set(&(mm)->context.id, 0); 0; })
151b3901d54SCatalin Marinas 
152b3901d54SCatalin Marinas /*
153b3901d54SCatalin Marinas  * This is called when "tsk" is about to enter lazy TLB mode.
154b3901d54SCatalin Marinas  *
155b3901d54SCatalin Marinas  * mm:  describes the currently active mm context
156b3901d54SCatalin Marinas  * tsk: task which is entering lazy tlb
157b3901d54SCatalin Marinas  * cpu: cpu number which is entering lazy tlb
158b3901d54SCatalin Marinas  *
159b3901d54SCatalin Marinas  * tsk->mm will be NULL
160b3901d54SCatalin Marinas  */
161b3901d54SCatalin Marinas static inline void
162b3901d54SCatalin Marinas enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk)
163b3901d54SCatalin Marinas {
164b3901d54SCatalin Marinas }
165b3901d54SCatalin Marinas 
166b3901d54SCatalin Marinas /*
167b3901d54SCatalin Marinas  * This is the actual mm switch as far as the scheduler
168b3901d54SCatalin Marinas  * is concerned.  No registers are touched.  We avoid
169b3901d54SCatalin Marinas  * calling the CPU specific function when the mm hasn't
170b3901d54SCatalin Marinas  * actually changed.
171b3901d54SCatalin Marinas  */
172b3901d54SCatalin Marinas static inline void
173b3901d54SCatalin Marinas switch_mm(struct mm_struct *prev, struct mm_struct *next,
174b3901d54SCatalin Marinas 	  struct task_struct *tsk)
175b3901d54SCatalin Marinas {
176b3901d54SCatalin Marinas 	unsigned int cpu = smp_processor_id();
177b3901d54SCatalin Marinas 
178c2775b2eSWill Deacon 	if (prev == next)
179c2775b2eSWill Deacon 		return;
180c2775b2eSWill Deacon 
181e53f21bcSCatalin Marinas 	/*
182e53f21bcSCatalin Marinas 	 * init_mm.pgd does not contain any user mappings and it is always
183e53f21bcSCatalin Marinas 	 * active for kernel addresses in TTBR1. Just set the reserved TTBR0.
184e53f21bcSCatalin Marinas 	 */
185e53f21bcSCatalin Marinas 	if (next == &init_mm) {
186e53f21bcSCatalin Marinas 		cpu_set_reserved_ttbr0();
187e53f21bcSCatalin Marinas 		return;
188e53f21bcSCatalin Marinas 	}
189e53f21bcSCatalin Marinas 
190c2775b2eSWill Deacon 	check_and_switch_context(next, cpu);
191b3901d54SCatalin Marinas }
192b3901d54SCatalin Marinas 
193b3901d54SCatalin Marinas #define deactivate_mm(tsk,mm)	do { } while (0)
194b3901d54SCatalin Marinas #define activate_mm(prev,next)	switch_mm(prev, next, NULL)
195b3901d54SCatalin Marinas 
19613f417f3SSuzuki K Poulose void verify_cpu_asid_bits(void);
19713f417f3SSuzuki K Poulose 
198b3901d54SCatalin Marinas #endif
199