Merge remote-tracking branch 'remotes/bonzini-gitlab/tags/for-upstream' into staging
[qemu/ar7.git] / target / arm / tlb_helper.c
blob9609333cbdf36f40811bfb7c0138832074e97dcc
1 /*
2 * ARM TLB (Translation lookaside buffer) helpers.
4 * This code is licensed under the GNU GPL v2 or later.
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
8 #include "qemu/osdep.h"
9 #include "cpu.h"
10 #include "internals.h"
11 #include "exec/exec-all.h"
13 static inline uint32_t merge_syn_data_abort(uint32_t template_syn,
14 unsigned int target_el,
15 bool same_el, bool ea,
16 bool s1ptw, bool is_write,
17 int fsc)
19 uint32_t syn;
22 * ISV is only set for data aborts routed to EL2 and
23 * never for stage-1 page table walks faulting on stage 2.
25 * Furthermore, ISV is only set for certain kinds of load/stores.
26 * If the template syndrome does not have ISV set, we should leave
27 * it cleared.
29 * See ARMv8 specs, D7-1974:
30 * ISS encoding for an exception from a Data Abort, the
31 * ISV field.
33 if (!(template_syn & ARM_EL_ISV) || target_el != 2 || s1ptw) {
34 syn = syn_data_abort_no_iss(same_el, 0,
35 ea, 0, s1ptw, is_write, fsc);
36 } else {
38 * Fields: IL, ISV, SAS, SSE, SRT, SF and AR come from the template
39 * syndrome created at translation time.
40 * Now we create the runtime syndrome with the remaining fields.
42 syn = syn_data_abort_with_iss(same_el,
43 0, 0, 0, 0, 0,
44 ea, 0, s1ptw, is_write, fsc,
45 true);
46 /* Merge the runtime syndrome with the template syndrome. */
47 syn |= template_syn;
49 return syn;
52 static void QEMU_NORETURN arm_deliver_fault(ARMCPU *cpu, vaddr addr,
53 MMUAccessType access_type,
54 int mmu_idx, ARMMMUFaultInfo *fi)
56 CPUARMState *env = &cpu->env;
57 int target_el;
58 bool same_el;
59 uint32_t syn, exc, fsr, fsc;
60 ARMMMUIdx arm_mmu_idx = core_to_arm_mmu_idx(env, mmu_idx);
62 target_el = exception_target_el(env);
63 if (fi->stage2) {
64 target_el = 2;
65 env->cp15.hpfar_el2 = extract64(fi->s2addr, 12, 47) << 4;
66 if (arm_is_secure_below_el3(env) && fi->s1ns) {
67 env->cp15.hpfar_el2 |= HPFAR_NS;
70 same_el = (arm_current_el(env) == target_el);
72 if (target_el == 2 || arm_el_is_aa64(env, target_el) ||
73 arm_s1_regime_using_lpae_format(env, arm_mmu_idx)) {
75 * LPAE format fault status register : bottom 6 bits are
76 * status code in the same form as needed for syndrome
78 fsr = arm_fi_to_lfsc(fi);
79 fsc = extract32(fsr, 0, 6);
80 } else {
81 fsr = arm_fi_to_sfsc(fi);
83 * Short format FSR : this fault will never actually be reported
84 * to an EL that uses a syndrome register. Use a (currently)
85 * reserved FSR code in case the constructed syndrome does leak
86 * into the guest somehow.
88 fsc = 0x3f;
91 if (access_type == MMU_INST_FETCH) {
92 syn = syn_insn_abort(same_el, fi->ea, fi->s1ptw, fsc);
93 exc = EXCP_PREFETCH_ABORT;
94 } else {
95 syn = merge_syn_data_abort(env->exception.syndrome, target_el,
96 same_el, fi->ea, fi->s1ptw,
97 access_type == MMU_DATA_STORE,
98 fsc);
99 if (access_type == MMU_DATA_STORE
100 && arm_feature(env, ARM_FEATURE_V6)) {
101 fsr |= (1 << 11);
103 exc = EXCP_DATA_ABORT;
106 env->exception.vaddress = addr;
107 env->exception.fsr = fsr;
108 raise_exception(env, exc, syn, target_el);
111 /* Raise a data fault alignment exception for the specified virtual address */
112 void arm_cpu_do_unaligned_access(CPUState *cs, vaddr vaddr,
113 MMUAccessType access_type,
114 int mmu_idx, uintptr_t retaddr)
116 ARMCPU *cpu = ARM_CPU(cs);
117 ARMMMUFaultInfo fi = {};
119 /* now we have a real cpu fault */
120 cpu_restore_state(cs, retaddr, true);
122 fi.type = ARMFault_Alignment;
123 arm_deliver_fault(cpu, vaddr, access_type, mmu_idx, &fi);
126 #if !defined(CONFIG_USER_ONLY)
129 * arm_cpu_do_transaction_failed: handle a memory system error response
130 * (eg "no device/memory present at address") by raising an external abort
131 * exception
133 void arm_cpu_do_transaction_failed(CPUState *cs, hwaddr physaddr,
134 vaddr addr, unsigned size,
135 MMUAccessType access_type,
136 int mmu_idx, MemTxAttrs attrs,
137 MemTxResult response, uintptr_t retaddr)
139 ARMCPU *cpu = ARM_CPU(cs);
140 ARMMMUFaultInfo fi = {};
142 /* now we have a real cpu fault */
143 cpu_restore_state(cs, retaddr, true);
145 fi.ea = arm_extabort_type(response);
146 fi.type = ARMFault_SyncExternal;
147 arm_deliver_fault(cpu, addr, access_type, mmu_idx, &fi);
150 #endif /* !defined(CONFIG_USER_ONLY) */
152 bool arm_cpu_tlb_fill(CPUState *cs, vaddr address, int size,
153 MMUAccessType access_type, int mmu_idx,
154 bool probe, uintptr_t retaddr)
156 ARMCPU *cpu = ARM_CPU(cs);
157 ARMMMUFaultInfo fi = {};
159 #ifdef CONFIG_USER_ONLY
160 int flags = page_get_flags(useronly_clean_ptr(address));
161 if (flags & PAGE_VALID) {
162 fi.type = ARMFault_Permission;
163 } else {
164 fi.type = ARMFault_Translation;
167 /* now we have a real cpu fault */
168 cpu_restore_state(cs, retaddr, true);
169 arm_deliver_fault(cpu, address, access_type, mmu_idx, &fi);
170 #else
171 hwaddr phys_addr;
172 target_ulong page_size;
173 int prot, ret;
174 MemTxAttrs attrs = {};
175 ARMCacheAttrs cacheattrs = {};
178 * Walk the page table and (if the mapping exists) add the page
179 * to the TLB. On success, return true. Otherwise, if probing,
180 * return false. Otherwise populate fsr with ARM DFSR/IFSR fault
181 * register format, and signal the fault.
183 ret = get_phys_addr(&cpu->env, address, access_type,
184 core_to_arm_mmu_idx(&cpu->env, mmu_idx),
185 &phys_addr, &attrs, &prot, &page_size,
186 &fi, &cacheattrs);
187 if (likely(!ret)) {
189 * Map a single [sub]page. Regions smaller than our declared
190 * target page size are handled specially, so for those we
191 * pass in the exact addresses.
193 if (page_size >= TARGET_PAGE_SIZE) {
194 phys_addr &= TARGET_PAGE_MASK;
195 address &= TARGET_PAGE_MASK;
197 /* Notice and record tagged memory. */
198 if (cpu_isar_feature(aa64_mte, cpu) && cacheattrs.attrs == 0xf0) {
199 arm_tlb_mte_tagged(&attrs) = true;
202 tlb_set_page_with_attrs(cs, address, phys_addr, attrs,
203 prot, mmu_idx, page_size);
204 return true;
205 } else if (probe) {
206 return false;
207 } else {
208 /* now we have a real cpu fault */
209 cpu_restore_state(cs, retaddr, true);
210 arm_deliver_fault(cpu, address, access_type, mmu_idx, &fi);
212 #endif