trap.c revision 1.36 1 1.36 maxv /* $NetBSD: trap.c,v 1.36 2020/08/02 06:58:16 maxv Exp $ */
2 1.1 matt
3 1.1 matt /*-
4 1.1 matt * Copyright (c) 2014 The NetBSD Foundation, Inc.
5 1.1 matt * All rights reserved.
6 1.1 matt *
7 1.1 matt * This code is derived from software contributed to The NetBSD Foundation
8 1.1 matt * by Matt Thomas of 3am Software Foundry.
9 1.1 matt *
10 1.1 matt * Redistribution and use in source and binary forms, with or without
11 1.1 matt * modification, are permitted provided that the following conditions
12 1.1 matt * are met:
13 1.1 matt * 1. Redistributions of source code must retain the above copyright
14 1.1 matt * notice, this list of conditions and the following disclaimer.
15 1.1 matt * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 matt * notice, this list of conditions and the following disclaimer in the
17 1.1 matt * documentation and/or other materials provided with the distribution.
18 1.1 matt *
19 1.1 matt * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.1 matt * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1 matt * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1 matt * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1 matt * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1 matt * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1 matt * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1 matt * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1 matt * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1 matt * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1 matt * POSSIBILITY OF SUCH DAMAGE.
30 1.1 matt */
31 1.1 matt
32 1.1 matt #include <sys/cdefs.h>
33 1.1 matt
34 1.36 maxv __KERNEL_RCSID(1, "$NetBSD: trap.c,v 1.36 2020/08/02 06:58:16 maxv Exp $");
35 1.1 matt
36 1.4 ryo #include "opt_arm_intr_impl.h"
37 1.4 ryo #include "opt_compat_netbsd32.h"
38 1.22 jmcneill #include "opt_dtrace.h"
39 1.4 ryo
40 1.1 matt #include <sys/param.h>
41 1.8 ryo #include <sys/kauth.h>
42 1.1 matt #include <sys/types.h>
43 1.4 ryo #include <sys/atomic.h>
44 1.1 matt #include <sys/cpu.h>
45 1.28 ryo #include <sys/evcnt.h>
46 1.4 ryo #ifdef KDB
47 1.4 ryo #include <sys/kdb.h>
48 1.4 ryo #endif
49 1.3 nisimura #include <sys/proc.h>
50 1.3 nisimura #include <sys/systm.h>
51 1.3 nisimura #include <sys/signal.h>
52 1.3 nisimura #include <sys/signalvar.h>
53 1.3 nisimura #include <sys/siginfo.h>
54 1.28 ryo #include <sys/xcall.h>
55 1.1 matt
56 1.4 ryo #ifdef ARM_INTR_IMPL
57 1.4 ryo #include ARM_INTR_IMPL
58 1.4 ryo #else
59 1.4 ryo #error ARM_INTR_IMPL not defined
60 1.4 ryo #endif
61 1.4 ryo
62 1.4 ryo #ifndef ARM_IRQ_HANDLER
63 1.4 ryo #error ARM_IRQ_HANDLER not defined
64 1.4 ryo #endif
65 1.4 ryo
66 1.4 ryo #include <aarch64/userret.h>
67 1.4 ryo #include <aarch64/frame.h>
68 1.4 ryo #include <aarch64/machdep.h>
69 1.4 ryo #include <aarch64/armreg.h>
70 1.1 matt #include <aarch64/locore.h>
71 1.36 maxv #include <aarch64/cpufunc.h>
72 1.1 matt
73 1.4 ryo #ifdef KDB
74 1.4 ryo #include <machine/db_machdep.h>
75 1.4 ryo #endif
76 1.4 ryo #ifdef DDB
77 1.4 ryo #include <ddb/db_output.h>
78 1.4 ryo #include <machine/db_machdep.h>
79 1.4 ryo #endif
80 1.22 jmcneill #ifdef KDTRACE_HOOKS
81 1.22 jmcneill #include <sys/dtrace_bsd.h>
82 1.22 jmcneill #endif
83 1.4 ryo
84 1.8 ryo #ifdef DDB
85 1.8 ryo int sigill_debug = 0;
86 1.8 ryo #endif
87 1.4 ryo
88 1.22 jmcneill #ifdef KDTRACE_HOOKS
89 1.22 jmcneill dtrace_doubletrap_func_t dtrace_doubletrap_func = NULL;
90 1.22 jmcneill dtrace_trap_func_t dtrace_trap_func = NULL;
91 1.22 jmcneill int (*dtrace_invop_jump_addr)(struct trapframe *);
92 1.22 jmcneill #endif
93 1.22 jmcneill
94 1.28 ryo enum emul_arm_result {
95 1.28 ryo EMUL_ARM_SUCCESS = 0,
96 1.28 ryo EMUL_ARM_UNKNOWN,
97 1.28 ryo EMUL_ARM_FAULT,
98 1.28 ryo };
99 1.28 ryo
100 1.4 ryo const char * const trap_names[] = {
101 1.4 ryo [ESR_EC_UNKNOWN] = "Unknown Reason (Illegal Instruction)",
102 1.4 ryo [ESR_EC_SERROR] = "SError Interrupt",
103 1.4 ryo [ESR_EC_WFX] = "WFI or WFE instruction execution",
104 1.4 ryo [ESR_EC_ILL_STATE] = "Illegal Execution State",
105 1.4 ryo
106 1.25 maxv [ESR_EC_BTE_A64] = "Branch Target Exception",
107 1.25 maxv
108 1.4 ryo [ESR_EC_SYS_REG] = "MSR/MRS/SYS instruction",
109 1.4 ryo [ESR_EC_SVC_A64] = "SVC Instruction Execution",
110 1.4 ryo [ESR_EC_HVC_A64] = "HVC Instruction Execution",
111 1.4 ryo [ESR_EC_SMC_A64] = "SMC Instruction Execution",
112 1.4 ryo
113 1.4 ryo [ESR_EC_INSN_ABT_EL0] = "Instruction Abort (EL0)",
114 1.4 ryo [ESR_EC_INSN_ABT_EL1] = "Instruction Abort (EL1)",
115 1.4 ryo [ESR_EC_DATA_ABT_EL0] = "Data Abort (EL0)",
116 1.4 ryo [ESR_EC_DATA_ABT_EL1] = "Data Abort (EL1)",
117 1.4 ryo
118 1.4 ryo [ESR_EC_PC_ALIGNMENT] = "Misaligned PC",
119 1.4 ryo [ESR_EC_SP_ALIGNMENT] = "Misaligned SP",
120 1.4 ryo
121 1.4 ryo [ESR_EC_FP_ACCESS] = "Access to SIMD/FP Registers",
122 1.4 ryo [ESR_EC_FP_TRAP_A64] = "FP Exception",
123 1.4 ryo
124 1.4 ryo [ESR_EC_BRKPNT_EL0] = "Breakpoint Exception (EL0)",
125 1.4 ryo [ESR_EC_BRKPNT_EL1] = "Breakpoint Exception (EL1)",
126 1.4 ryo [ESR_EC_SW_STEP_EL0] = "Software Step (EL0)",
127 1.4 ryo [ESR_EC_SW_STEP_EL1] = "Software Step (EL1)",
128 1.4 ryo [ESR_EC_WTCHPNT_EL0] = "Watchpoint (EL0)",
129 1.4 ryo [ESR_EC_WTCHPNT_EL1] = "Watchpoint (EL1)",
130 1.4 ryo [ESR_EC_BKPT_INSN_A64] = "BKPT Instruction Execution",
131 1.4 ryo
132 1.4 ryo [ESR_EC_CP15_RT] = "A32: MCR/MRC access to CP15",
133 1.4 ryo [ESR_EC_CP15_RRT] = "A32: MCRR/MRRC access to CP15",
134 1.4 ryo [ESR_EC_CP14_RT] = "A32: MCR/MRC access to CP14",
135 1.4 ryo [ESR_EC_CP14_DT] = "A32: LDC/STC access to CP14",
136 1.4 ryo [ESR_EC_CP14_RRT] = "A32: MRRC access to CP14",
137 1.4 ryo [ESR_EC_SVC_A32] = "A32: SVC Instruction Execution",
138 1.4 ryo [ESR_EC_HVC_A32] = "A32: HVC Instruction Execution",
139 1.4 ryo [ESR_EC_SMC_A32] = "A32: SMC Instruction Execution",
140 1.4 ryo [ESR_EC_FPID] = "A32: MCR/MRC access to CP10",
141 1.4 ryo [ESR_EC_FP_TRAP_A32] = "A32: FP Exception",
142 1.4 ryo [ESR_EC_BKPT_INSN_A32] = "A32: BKPT Instruction Execution",
143 1.4 ryo [ESR_EC_VECTOR_CATCH] = "A32: Vector Catch Exception"
144 1.4 ryo };
145 1.4 ryo
146 1.6 christos const char *
147 1.4 ryo eclass_trapname(uint32_t eclass)
148 1.3 nisimura {
149 1.4 ryo static char trapnamebuf[sizeof("Unknown trap 0x????????")];
150 1.4 ryo
151 1.4 ryo if (eclass >= __arraycount(trap_names) || trap_names[eclass] == NULL) {
152 1.4 ryo snprintf(trapnamebuf, sizeof(trapnamebuf),
153 1.6 christos "Unknown trap %#02x", eclass);
154 1.4 ryo return trapnamebuf;
155 1.4 ryo }
156 1.4 ryo return trap_names[eclass];
157 1.3 nisimura }
158 1.3 nisimura
159 1.1 matt void
160 1.4 ryo userret(struct lwp *l)
161 1.1 matt {
162 1.1 matt mi_userret(l);
163 1.1 matt }
164 1.2 nisimura
165 1.3 nisimura void
166 1.4 ryo trap_doast(struct trapframe *tf)
167 1.3 nisimura {
168 1.3 nisimura struct lwp * const l = curlwp;
169 1.4 ryo
170 1.4 ryo /*
171 1.4 ryo * allow to have a chance of context switch just prior to user
172 1.4 ryo * exception return.
173 1.4 ryo */
174 1.4 ryo #ifdef __HAVE_PREEMPTION
175 1.4 ryo kpreempt_disable();
176 1.4 ryo #endif
177 1.4 ryo struct cpu_info * const ci = curcpu();
178 1.4 ryo
179 1.4 ryo ci->ci_data.cpu_ntrap++;
180 1.4 ryo
181 1.4 ryo KDASSERT(ci->ci_cpl == IPL_NONE);
182 1.4 ryo #ifdef __HAVE_PREEMPTION
183 1.4 ryo kpreempt_enable();
184 1.4 ryo #endif
185 1.4 ryo
186 1.4 ryo if (l->l_pflag & LP_OWEUPC) {
187 1.4 ryo l->l_pflag &= ~LP_OWEUPC;
188 1.4 ryo ADDUPROF(l);
189 1.3 nisimura }
190 1.4 ryo
191 1.4 ryo userret(l);
192 1.4 ryo }
193 1.4 ryo
194 1.4 ryo void
195 1.4 ryo trap_el1h_sync(struct trapframe *tf)
196 1.4 ryo {
197 1.4 ryo const uint32_t esr = tf->tf_esr;
198 1.4 ryo const uint32_t eclass = __SHIFTOUT(esr, ESR_EC); /* exception class */
199 1.4 ryo
200 1.4 ryo /* re-enable traps and interrupts */
201 1.4 ryo if (!(tf->tf_spsr & SPSR_I))
202 1.4 ryo daif_enable(DAIF_D|DAIF_A|DAIF_I|DAIF_F);
203 1.4 ryo else
204 1.4 ryo daif_enable(DAIF_D|DAIF_A);
205 1.4 ryo
206 1.22 jmcneill #ifdef KDTRACE_HOOKS
207 1.22 jmcneill if (dtrace_trap_func != NULL && (*dtrace_trap_func)(tf, eclass))
208 1.22 jmcneill return;
209 1.22 jmcneill #endif
210 1.22 jmcneill
211 1.4 ryo switch (eclass) {
212 1.4 ryo case ESR_EC_INSN_ABT_EL1:
213 1.4 ryo case ESR_EC_DATA_ABT_EL1:
214 1.6 christos data_abort_handler(tf, eclass);
215 1.4 ryo break;
216 1.4 ryo
217 1.22 jmcneill case ESR_EC_BKPT_INSN_A64:
218 1.22 jmcneill #ifdef KDTRACE_HOOKS
219 1.22 jmcneill if (__SHIFTOUT(esr, ESR_ISS) == 0x40d &&
220 1.22 jmcneill dtrace_invop_jump_addr != 0) {
221 1.22 jmcneill (*dtrace_invop_jump_addr)(tf);
222 1.22 jmcneill break;
223 1.22 jmcneill }
224 1.22 jmcneill /* FALLTHROUGH */
225 1.22 jmcneill #endif
226 1.4 ryo case ESR_EC_BRKPNT_EL1:
227 1.4 ryo case ESR_EC_SW_STEP_EL1:
228 1.4 ryo case ESR_EC_WTCHPNT_EL1:
229 1.4 ryo #ifdef DDB
230 1.4 ryo if (eclass == ESR_EC_BRKPNT_EL1)
231 1.4 ryo kdb_trap(DB_TRAP_BREAKPOINT, tf);
232 1.4 ryo else if (eclass == ESR_EC_BKPT_INSN_A64)
233 1.4 ryo kdb_trap(DB_TRAP_BKPT_INSN, tf);
234 1.4 ryo else if (eclass == ESR_EC_WTCHPNT_EL1)
235 1.4 ryo kdb_trap(DB_TRAP_WATCHPOINT, tf);
236 1.4 ryo else if (eclass == ESR_EC_SW_STEP_EL1)
237 1.4 ryo kdb_trap(DB_TRAP_SW_STEP, tf);
238 1.4 ryo else
239 1.4 ryo kdb_trap(DB_TRAP_UNKNOWN, tf);
240 1.4 ryo #else
241 1.4 ryo panic("No debugger in kernel");
242 1.4 ryo #endif
243 1.4 ryo break;
244 1.4 ryo
245 1.4 ryo case ESR_EC_FP_ACCESS:
246 1.35 riastrad if ((curlwp->l_flag & (LW_SYSTEM|LW_SYSTEM_FPU)) ==
247 1.35 riastrad (LW_SYSTEM|LW_SYSTEM_FPU)) {
248 1.35 riastrad fpu_load(curlwp);
249 1.35 riastrad break;
250 1.35 riastrad }
251 1.35 riastrad /*FALLTHROUGH*/
252 1.4 ryo case ESR_EC_FP_TRAP_A64:
253 1.4 ryo case ESR_EC_PC_ALIGNMENT:
254 1.4 ryo case ESR_EC_SP_ALIGNMENT:
255 1.4 ryo case ESR_EC_ILL_STATE:
256 1.27 maxv case ESR_EC_BTE_A64:
257 1.4 ryo default:
258 1.13 ryo panic("Trap: fatal %s: pc=%016" PRIx64 " sp=%016" PRIx64
259 1.13 ryo " esr=%08x", eclass_trapname(eclass), tf->tf_pc, tf->tf_sp,
260 1.6 christos esr);
261 1.4 ryo break;
262 1.3 nisimura }
263 1.3 nisimura }
264 1.3 nisimura
265 1.28 ryo /*
266 1.28 ryo * There are some systems with different cache line sizes for each cpu.
267 1.28 ryo * Userland programs can be preempted between CPUs at any time, so in such
268 1.28 ryo * a system, the minimum cache line size must be visible to userland.
269 1.28 ryo */
270 1.28 ryo #define CTR_EL0_USR_MASK \
271 1.28 ryo (CTR_EL0_DIC | CTR_EL0_IDC | CTR_EL0_DMIN_LINE | CTR_EL0_IMIN_LINE)
272 1.28 ryo uint64_t ctr_el0_usr __read_mostly;
273 1.28 ryo
274 1.28 ryo static xcfunc_t
275 1.28 ryo configure_cpu_traps0(void *arg1, void *arg2)
276 1.28 ryo {
277 1.28 ryo struct cpu_info * const ci = curcpu();
278 1.28 ryo uint64_t sctlr;
279 1.28 ryo uint64_t ctr_el0_raw = reg_ctr_el0_read();
280 1.28 ryo
281 1.28 ryo #ifdef DEBUG_FORCE_TRAP_CTR_EL0
282 1.28 ryo goto need_ctr_trap;
283 1.28 ryo #endif
284 1.28 ryo
285 1.28 ryo if ((__SHIFTOUT(ctr_el0_raw, CTR_EL0_DMIN_LINE) >
286 1.28 ryo __SHIFTOUT(ctr_el0_usr, CTR_EL0_DMIN_LINE)) ||
287 1.28 ryo (__SHIFTOUT(ctr_el0_raw, CTR_EL0_IMIN_LINE) >
288 1.28 ryo __SHIFTOUT(ctr_el0_usr, CTR_EL0_IMIN_LINE)))
289 1.28 ryo goto need_ctr_trap;
290 1.28 ryo
291 1.28 ryo if ((__SHIFTOUT(ctr_el0_raw, CTR_EL0_DIC) == 1 &&
292 1.28 ryo __SHIFTOUT(ctr_el0_usr, CTR_EL0_DIC) == 0) ||
293 1.28 ryo (__SHIFTOUT(ctr_el0_raw, CTR_EL0_IDC) == 1 &&
294 1.28 ryo __SHIFTOUT(ctr_el0_usr, CTR_EL0_IDC) == 0))
295 1.28 ryo goto need_ctr_trap;
296 1.28 ryo
297 1.28 ryo #if 0 /* XXX: To do or not to do */
298 1.28 ryo /*
299 1.28 ryo * IDC==0, but (LoC==0 || LoUIS==LoUU==0)?
300 1.28 ryo * Would it be better to show IDC=1 to userland?
301 1.28 ryo */
302 1.28 ryo if (__SHIFTOUT(ctr_el0_raw, CTR_EL0_IDC) == 0 &&
303 1.28 ryo __SHIFTOUT(ctr_el0_usr, CTR_EL0_IDC) == 1)
304 1.28 ryo goto need_ctr_trap;
305 1.28 ryo #endif
306 1.28 ryo
307 1.28 ryo return 0;
308 1.28 ryo
309 1.28 ryo need_ctr_trap:
310 1.28 ryo evcnt_attach_dynamic(&ci->ci_uct_trap, EVCNT_TYPE_MISC, NULL,
311 1.28 ryo ci->ci_cpuname, "ctr_el0 trap");
312 1.28 ryo
313 1.28 ryo /* trap CTR_EL0 access from EL0 on this cpu */
314 1.28 ryo sctlr = reg_sctlr_el1_read();
315 1.28 ryo sctlr &= ~SCTLR_UCT;
316 1.28 ryo reg_sctlr_el1_write(sctlr);
317 1.28 ryo
318 1.28 ryo return 0;
319 1.28 ryo }
320 1.28 ryo
321 1.28 ryo void
322 1.28 ryo configure_cpu_traps(void)
323 1.28 ryo {
324 1.28 ryo CPU_INFO_ITERATOR cii;
325 1.28 ryo struct cpu_info *ci;
326 1.28 ryo uint64_t where;
327 1.28 ryo
328 1.28 ryo /* remember minimum cache line size out of all CPUs */
329 1.28 ryo for (CPU_INFO_FOREACH(cii, ci)) {
330 1.28 ryo uint64_t ctr_el0_cpu = ci->ci_id.ac_ctr;
331 1.28 ryo uint64_t clidr = ci->ci_id.ac_clidr;
332 1.28 ryo
333 1.28 ryo if (__SHIFTOUT(clidr, CLIDR_LOC) == 0 ||
334 1.28 ryo (__SHIFTOUT(clidr, CLIDR_LOUIS) == 0 &&
335 1.28 ryo __SHIFTOUT(clidr, CLIDR_LOUU) == 0)) {
336 1.28 ryo /* this means the same as IDC=1 */
337 1.28 ryo ctr_el0_cpu |= CTR_EL0_IDC;
338 1.28 ryo }
339 1.28 ryo
340 1.28 ryo /*
341 1.28 ryo * if DIC==1, there is no need to icache sync. however,
342 1.28 ryo * to calculate the minimum cacheline, in this case
343 1.28 ryo * ICacheLine is treated as the maximum.
344 1.28 ryo */
345 1.28 ryo if (__SHIFTOUT(ctr_el0_cpu, CTR_EL0_DIC) == 1)
346 1.28 ryo ctr_el0_cpu |= CTR_EL0_IMIN_LINE;
347 1.28 ryo
348 1.29 ryo /* Neoverse N1 erratum 1542419 */
349 1.29 ryo if (CPU_ID_NEOVERSEN1_P(ci->ci_id.ac_midr) &&
350 1.29 ryo __SHIFTOUT(ctr_el0_cpu, CTR_EL0_DIC) == 1)
351 1.29 ryo ctr_el0_cpu &= ~CTR_EL0_DIC;
352 1.29 ryo
353 1.28 ryo if (cii == 0) {
354 1.28 ryo ctr_el0_usr = ctr_el0_cpu;
355 1.28 ryo continue;
356 1.28 ryo }
357 1.28 ryo
358 1.28 ryo /* keep minimum cache line size, and worst DIC/IDC */
359 1.28 ryo ctr_el0_usr &= (ctr_el0_cpu & CTR_EL0_DIC) | ~CTR_EL0_DIC;
360 1.28 ryo ctr_el0_usr &= (ctr_el0_cpu & CTR_EL0_IDC) | ~CTR_EL0_IDC;
361 1.28 ryo if (__SHIFTOUT(ctr_el0_cpu, CTR_EL0_DMIN_LINE) <
362 1.28 ryo __SHIFTOUT(ctr_el0_usr, CTR_EL0_DMIN_LINE)) {
363 1.28 ryo ctr_el0_usr &= ~CTR_EL0_DMIN_LINE;
364 1.28 ryo ctr_el0_usr |= ctr_el0_cpu & CTR_EL0_DMIN_LINE;
365 1.28 ryo }
366 1.28 ryo if ((ctr_el0_cpu & CTR_EL0_DIC) == 0 &&
367 1.28 ryo (__SHIFTOUT(ctr_el0_cpu, CTR_EL0_IMIN_LINE) <
368 1.28 ryo __SHIFTOUT(ctr_el0_usr, CTR_EL0_IMIN_LINE))) {
369 1.28 ryo ctr_el0_usr &= ~CTR_EL0_IMIN_LINE;
370 1.28 ryo ctr_el0_usr |= ctr_el0_cpu & CTR_EL0_IMIN_LINE;
371 1.28 ryo }
372 1.28 ryo }
373 1.28 ryo
374 1.28 ryo where = xc_broadcast(0,
375 1.28 ryo (xcfunc_t)configure_cpu_traps0, NULL, NULL);
376 1.28 ryo xc_wait(where);
377 1.28 ryo }
378 1.28 ryo
379 1.28 ryo static enum emul_arm_result
380 1.28 ryo emul_aarch64_insn(struct trapframe *tf)
381 1.28 ryo {
382 1.28 ryo uint32_t insn;
383 1.28 ryo
384 1.32 ryo if (ufetch_32((uint32_t *)tf->tf_pc, &insn)) {
385 1.32 ryo tf->tf_far = reg_far_el1_read();
386 1.28 ryo return EMUL_ARM_FAULT;
387 1.32 ryo }
388 1.28 ryo
389 1.28 ryo if ((insn & 0xffffffe0) == 0xd53b0020) {
390 1.28 ryo /* mrs x?,ctr_el0 */
391 1.28 ryo unsigned int Xt = insn & 31;
392 1.28 ryo if (Xt != 31) { /* !xzr */
393 1.28 ryo uint64_t ctr_el0 = reg_ctr_el0_read();
394 1.28 ryo ctr_el0 &= ~CTR_EL0_USR_MASK;
395 1.28 ryo ctr_el0 |= (ctr_el0_usr & CTR_EL0_USR_MASK);
396 1.28 ryo tf->tf_reg[Xt] = ctr_el0;
397 1.28 ryo }
398 1.28 ryo curcpu()->ci_uct_trap.ev_count++;
399 1.28 ryo
400 1.28 ryo } else {
401 1.28 ryo return EMUL_ARM_UNKNOWN;
402 1.28 ryo }
403 1.28 ryo
404 1.28 ryo tf->tf_pc += 4;
405 1.28 ryo return EMUL_ARM_SUCCESS;
406 1.28 ryo }
407 1.28 ryo
408 1.3 nisimura void
409 1.4 ryo trap_el0_sync(struct trapframe *tf)
410 1.3 nisimura {
411 1.4 ryo struct lwp * const l = curlwp;
412 1.4 ryo const uint32_t esr = tf->tf_esr;
413 1.4 ryo const uint32_t eclass = __SHIFTOUT(esr, ESR_EC); /* exception class */
414 1.4 ryo
415 1.14 ryo /* disable trace */
416 1.14 ryo reg_mdscr_el1_write(reg_mdscr_el1_read() & ~MDSCR_SS);
417 1.4 ryo /* enable traps and interrupts */
418 1.4 ryo daif_enable(DAIF_D|DAIF_A|DAIF_I|DAIF_F);
419 1.4 ryo
420 1.4 ryo switch (eclass) {
421 1.4 ryo case ESR_EC_INSN_ABT_EL0:
422 1.4 ryo case ESR_EC_DATA_ABT_EL0:
423 1.6 christos data_abort_handler(tf, eclass);
424 1.4 ryo userret(l);
425 1.4 ryo break;
426 1.4 ryo
427 1.4 ryo case ESR_EC_SVC_A64:
428 1.4 ryo (*l->l_proc->p_md.md_syscall)(tf);
429 1.4 ryo break;
430 1.4 ryo case ESR_EC_FP_ACCESS:
431 1.4 ryo fpu_load(l);
432 1.4 ryo userret(l);
433 1.4 ryo break;
434 1.4 ryo case ESR_EC_FP_TRAP_A64:
435 1.4 ryo do_trapsignal(l, SIGFPE, FPE_FLTUND, NULL, esr); /* XXX */
436 1.4 ryo userret(l);
437 1.4 ryo break;
438 1.4 ryo
439 1.4 ryo case ESR_EC_PC_ALIGNMENT:
440 1.5 christos do_trapsignal(l, SIGBUS, BUS_ADRALN, (void *)tf->tf_pc, esr);
441 1.4 ryo userret(l);
442 1.4 ryo break;
443 1.4 ryo case ESR_EC_SP_ALIGNMENT:
444 1.5 christos do_trapsignal(l, SIGBUS, BUS_ADRALN, (void *)tf->tf_sp, esr);
445 1.4 ryo userret(l);
446 1.4 ryo break;
447 1.4 ryo
448 1.4 ryo case ESR_EC_BKPT_INSN_A64:
449 1.4 ryo case ESR_EC_BRKPNT_EL0:
450 1.4 ryo case ESR_EC_WTCHPNT_EL0:
451 1.5 christos do_trapsignal(l, SIGTRAP, TRAP_BRKPT, (void *)tf->tf_pc, esr);
452 1.4 ryo userret(l);
453 1.4 ryo break;
454 1.14 ryo case ESR_EC_SW_STEP_EL0:
455 1.14 ryo /* disable trace, and send trace trap */
456 1.14 ryo tf->tf_spsr &= ~SPSR_SS;
457 1.14 ryo do_trapsignal(l, SIGTRAP, TRAP_TRACE, (void *)tf->tf_pc, esr);
458 1.14 ryo userret(l);
459 1.14 ryo break;
460 1.4 ryo
461 1.28 ryo case ESR_EC_SYS_REG:
462 1.28 ryo switch (emul_aarch64_insn(tf)) {
463 1.28 ryo case EMUL_ARM_SUCCESS:
464 1.28 ryo break;
465 1.28 ryo case EMUL_ARM_UNKNOWN:
466 1.28 ryo goto unknown;
467 1.28 ryo case EMUL_ARM_FAULT:
468 1.28 ryo do_trapsignal(l, SIGSEGV, SEGV_MAPERR,
469 1.32 ryo (void *)tf->tf_far, esr);
470 1.28 ryo break;
471 1.28 ryo }
472 1.28 ryo userret(l);
473 1.28 ryo break;
474 1.28 ryo
475 1.4 ryo default:
476 1.4 ryo case ESR_EC_UNKNOWN:
477 1.28 ryo unknown:
478 1.8 ryo #ifdef DDB
479 1.8 ryo if (sigill_debug) {
480 1.8 ryo /* show illegal instruction */
481 1.11 ryo printf("TRAP: pid %d (%s), uid %d: %s:"
482 1.11 ryo " esr=0x%lx: pc=0x%lx: %s\n",
483 1.8 ryo curlwp->l_proc->p_pid, curlwp->l_proc->p_comm,
484 1.8 ryo l->l_cred ? kauth_cred_geteuid(l->l_cred) : -1,
485 1.11 ryo eclass_trapname(eclass), tf->tf_esr, tf->tf_pc,
486 1.31 ryo strdisasm(tf->tf_pc, tf->tf_spsr));
487 1.8 ryo }
488 1.8 ryo #endif
489 1.4 ryo /* illegal or not implemented instruction */
490 1.5 christos do_trapsignal(l, SIGILL, ILL_ILLTRP, (void *)tf->tf_pc, esr);
491 1.4 ryo userret(l);
492 1.4 ryo break;
493 1.4 ryo }
494 1.3 nisimura }
495 1.3 nisimura
496 1.4 ryo void
497 1.4 ryo interrupt(struct trapframe *tf)
498 1.4 ryo {
499 1.4 ryo struct cpu_info * const ci = curcpu();
500 1.2 nisimura
501 1.12 ryo #ifdef STACKCHECKS
502 1.12 ryo struct lwp *l = curlwp;
503 1.12 ryo void *sp = (void *)reg_sp_read();
504 1.12 ryo if (l->l_addr >= sp) {
505 1.12 ryo panic("lwp/interrupt stack overflow detected."
506 1.12 ryo " lwp=%p, sp=%p, l_addr=%p", l, sp, l->l_addr);
507 1.12 ryo }
508 1.12 ryo #endif
509 1.12 ryo
510 1.14 ryo /* disable trace */
511 1.14 ryo reg_mdscr_el1_write(reg_mdscr_el1_read() & ~MDSCR_SS);
512 1.14 ryo
513 1.4 ryo /* enable traps */
514 1.4 ryo daif_enable(DAIF_D|DAIF_A);
515 1.2 nisimura
516 1.4 ryo ci->ci_intr_depth++;
517 1.4 ryo ARM_IRQ_HANDLER(tf);
518 1.4 ryo ci->ci_intr_depth--;
519 1.2 nisimura
520 1.4 ryo cpu_dosoftints();
521 1.4 ryo }
522 1.2 nisimura
523 1.21 rin #ifdef COMPAT_NETBSD32
524 1.21 rin
525 1.21 rin /*
526 1.21 rin * 32-bit length Thumb instruction. See ARMv7 DDI0406A A6.3.
527 1.21 rin */
528 1.21 rin #define THUMB_32BIT(hi) (((hi) & 0xe000) == 0xe000 && ((hi) & 0x1800))
529 1.21 rin
530 1.31 ryo int
531 1.31 ryo fetch_arm_insn(uint64_t pc, uint64_t spsr, uint32_t *insn)
532 1.21 rin {
533 1.21 rin
534 1.21 rin /* THUMB? */
535 1.31 ryo if (spsr & SPSR_A32_T) {
536 1.31 ryo uint16_t *p = (uint16_t *)(pc & ~1UL); /* XXX */
537 1.21 rin uint16_t hi, lo;
538 1.21 rin
539 1.31 ryo if (ufetch_16(p, &hi))
540 1.26 rin return -1;
541 1.26 rin
542 1.21 rin if (!THUMB_32BIT(hi)) {
543 1.21 rin /* 16-bit Thumb instruction */
544 1.21 rin *insn = hi;
545 1.21 rin return 2;
546 1.21 rin }
547 1.21 rin
548 1.26 rin /* 32-bit Thumb instruction */
549 1.31 ryo if (ufetch_16(p + 1, &lo))
550 1.26 rin return -1;
551 1.21 rin
552 1.21 rin *insn = ((uint32_t)hi << 16) | lo;
553 1.21 rin return 4;
554 1.21 rin }
555 1.21 rin
556 1.31 ryo if (ufetch_32((uint32_t *)pc, insn))
557 1.26 rin return -1;
558 1.26 rin
559 1.21 rin return 4;
560 1.21 rin }
561 1.21 rin
562 1.32 ryo static bool
563 1.32 ryo arm_cond_match(uint32_t insn, uint64_t spsr)
564 1.32 ryo {
565 1.32 ryo bool invert = (insn >> 28) & 1;
566 1.32 ryo bool match;
567 1.32 ryo
568 1.32 ryo switch (insn >> 29) {
569 1.32 ryo case 0: /* EQ or NE */
570 1.32 ryo match = spsr & SPSR_Z;
571 1.32 ryo break;
572 1.32 ryo case 1: /* CS/HI or CC/LO */
573 1.32 ryo match = spsr & SPSR_C;
574 1.32 ryo break;
575 1.32 ryo case 2: /* MI or PL */
576 1.32 ryo match = spsr & SPSR_N;
577 1.32 ryo break;
578 1.32 ryo case 3: /* VS or VC */
579 1.32 ryo match = spsr & SPSR_V;
580 1.32 ryo break;
581 1.32 ryo case 4: /* HI or LS */
582 1.32 ryo match = ((spsr & (SPSR_C | SPSR_Z)) == SPSR_C);
583 1.32 ryo break;
584 1.32 ryo case 5: /* GE or LT */
585 1.32 ryo match = (!(spsr & SPSR_N) == !(spsr & SPSR_V));
586 1.32 ryo break;
587 1.32 ryo case 6: /* GT or LE */
588 1.32 ryo match = !(spsr & SPSR_Z) &&
589 1.32 ryo (!(spsr & SPSR_N) == !(spsr & SPSR_V));
590 1.32 ryo break;
591 1.32 ryo case 7: /* AL */
592 1.32 ryo match = true;
593 1.32 ryo break;
594 1.32 ryo }
595 1.32 ryo return (!match != !invert);
596 1.32 ryo }
597 1.32 ryo
598 1.33 ryo uint8_t atomic_swap_8(volatile uint8_t *, uint8_t);
599 1.33 ryo
600 1.33 ryo static int
601 1.33 ryo emul_arm_swp(uint32_t insn, struct trapframe *tf)
602 1.33 ryo {
603 1.33 ryo struct faultbuf fb;
604 1.33 ryo vaddr_t vaddr;
605 1.33 ryo uint32_t val;
606 1.33 ryo int Rn, Rd, Rm, error;
607 1.33 ryo
608 1.33 ryo Rn = __SHIFTOUT(insn, 0x000f0000);
609 1.33 ryo Rd = __SHIFTOUT(insn, 0x0000f000);
610 1.33 ryo Rm = __SHIFTOUT(insn, 0x0000000f);
611 1.33 ryo
612 1.33 ryo vaddr = tf->tf_reg[Rn] & 0xffffffff;
613 1.33 ryo val = tf->tf_reg[Rm];
614 1.33 ryo
615 1.33 ryo /* fault if insn is swp, and unaligned access */
616 1.33 ryo if ((insn & 0x00400000) == 0 && (vaddr & 3) != 0) {
617 1.33 ryo tf->tf_far = vaddr;
618 1.33 ryo return EFAULT;
619 1.33 ryo }
620 1.33 ryo
621 1.33 ryo /* vaddr will always point to userspace, since it has only 32bit */
622 1.33 ryo if ((error = cpu_set_onfault(&fb)) == 0) {
623 1.36 maxv if (aarch64_pan_enabled)
624 1.36 maxv reg_pan_write(0); /* disable PAN */
625 1.33 ryo if (insn & 0x00400000) {
626 1.33 ryo /* swpb */
627 1.34 ryo val = atomic_swap_8((uint8_t *)vaddr, val);
628 1.33 ryo } else {
629 1.33 ryo /* swp */
630 1.34 ryo val = atomic_swap_32((uint32_t *)vaddr, val);
631 1.33 ryo }
632 1.33 ryo cpu_unset_onfault();
633 1.33 ryo tf->tf_reg[Rd] = val;
634 1.33 ryo } else {
635 1.33 ryo tf->tf_far = reg_far_el1_read();
636 1.33 ryo }
637 1.36 maxv if (aarch64_pan_enabled)
638 1.36 maxv reg_pan_write(1); /* enable PAN */
639 1.33 ryo return error;
640 1.33 ryo }
641 1.33 ryo
642 1.32 ryo static enum emul_arm_result
643 1.32 ryo emul_thumb_insn(struct trapframe *tf, uint32_t insn, int insn_size)
644 1.32 ryo {
645 1.32 ryo /* T32-16bit or 32bit instructions */
646 1.32 ryo switch (insn_size) {
647 1.32 ryo case 2:
648 1.32 ryo /* Breakpoint used by GDB */
649 1.32 ryo if (insn == 0xdefe) {
650 1.32 ryo do_trapsignal(curlwp, SIGTRAP, TRAP_BRKPT,
651 1.32 ryo (void *)tf->tf_pc, 0);
652 1.32 ryo return EMUL_ARM_SUCCESS;
653 1.32 ryo }
654 1.32 ryo /* XXX: some T32 IT instruction deprecated should be emulated */
655 1.32 ryo break;
656 1.32 ryo case 4:
657 1.32 ryo break;
658 1.32 ryo default:
659 1.32 ryo return EMUL_ARM_FAULT;
660 1.32 ryo }
661 1.32 ryo return EMUL_ARM_UNKNOWN;
662 1.32 ryo }
663 1.32 ryo
664 1.26 rin static enum emul_arm_result
665 1.21 rin emul_arm_insn(struct trapframe *tf)
666 1.21 rin {
667 1.21 rin uint32_t insn;
668 1.21 rin int insn_size;
669 1.21 rin
670 1.31 ryo insn_size = fetch_arm_insn(tf->tf_pc, tf->tf_spsr, &insn);
671 1.32 ryo tf->tf_far = reg_far_el1_read();
672 1.21 rin
673 1.32 ryo if (tf->tf_spsr & SPSR_A32_T)
674 1.32 ryo return emul_thumb_insn(tf, insn, insn_size);
675 1.32 ryo if (insn_size != 4)
676 1.32 ryo return EMUL_ARM_FAULT;
677 1.21 rin
678 1.32 ryo /* Breakpoint used by GDB */
679 1.32 ryo if (insn == 0xe6000011 || insn == 0xe7ffdefe) {
680 1.32 ryo do_trapsignal(curlwp, SIGTRAP, TRAP_BRKPT,
681 1.32 ryo (void *)tf->tf_pc, 0);
682 1.32 ryo return EMUL_ARM_SUCCESS;
683 1.32 ryo }
684 1.30 rin
685 1.32 ryo /* Unconditional instruction extension space? */
686 1.32 ryo if ((insn & 0xf0000000) == 0xf0000000)
687 1.32 ryo goto unknown_insn;
688 1.21 rin
689 1.33 ryo /* swp,swpb */
690 1.33 ryo if ((insn & 0x0fb00ff0) == 0x01000090) {
691 1.33 ryo if (arm_cond_match(insn, tf->tf_spsr)) {
692 1.33 ryo if (emul_arm_swp(insn, tf) != 0)
693 1.33 ryo return EMUL_ARM_FAULT;
694 1.33 ryo }
695 1.33 ryo goto emulated;
696 1.33 ryo }
697 1.33 ryo
698 1.32 ryo /*
699 1.32 ryo * Emulate ARMv6 instructions with cache operations
700 1.32 ryo * register (c7), that can be used in user mode.
701 1.32 ryo */
702 1.32 ryo switch (insn & 0x0fff0fff) {
703 1.32 ryo case 0x0e070f95:
704 1.32 ryo if (arm_cond_match(insn, tf->tf_spsr)) {
705 1.21 rin /*
706 1.21 rin * mcr p15, 0, <Rd>, c7, c5, 4
707 1.21 rin * (flush prefetch buffer)
708 1.21 rin */
709 1.21 rin __asm __volatile("isb sy" ::: "memory");
710 1.32 ryo }
711 1.32 ryo goto emulated;
712 1.32 ryo case 0x0e070f9a:
713 1.32 ryo if (arm_cond_match(insn, tf->tf_spsr)) {
714 1.21 rin /*
715 1.21 rin * mcr p15, 0, <Rd>, c7, c10, 4
716 1.21 rin * (data synchronization barrier)
717 1.21 rin */
718 1.21 rin __asm __volatile("dsb sy" ::: "memory");
719 1.32 ryo }
720 1.32 ryo goto emulated;
721 1.32 ryo case 0x0e070fba:
722 1.32 ryo if (arm_cond_match(insn, tf->tf_spsr)) {
723 1.21 rin /*
724 1.21 rin * mcr p15, 0, <Rd>, c7, c10, 5
725 1.21 rin * (data memory barrier)
726 1.21 rin */
727 1.21 rin __asm __volatile("dmb sy" ::: "memory");
728 1.21 rin }
729 1.32 ryo goto emulated;
730 1.32 ryo default:
731 1.21 rin break;
732 1.21 rin }
733 1.21 rin
734 1.32 ryo unknown_insn:
735 1.21 rin /* unknown, or unsupported instruction */
736 1.26 rin return EMUL_ARM_UNKNOWN;
737 1.21 rin
738 1.21 rin emulated:
739 1.21 rin tf->tf_pc += insn_size;
740 1.26 rin return EMUL_ARM_SUCCESS;
741 1.21 rin }
742 1.21 rin #endif /* COMPAT_NETBSD32 */
743 1.21 rin
744 1.2 nisimura void
745 1.4 ryo trap_el0_32sync(struct trapframe *tf)
746 1.2 nisimura {
747 1.4 ryo struct lwp * const l = curlwp;
748 1.4 ryo const uint32_t esr = tf->tf_esr;
749 1.4 ryo const uint32_t eclass = __SHIFTOUT(esr, ESR_EC); /* exception class */
750 1.4 ryo
751 1.14 ryo /* disable trace */
752 1.14 ryo reg_mdscr_el1_write(reg_mdscr_el1_read() & ~MDSCR_SS);
753 1.4 ryo /* enable traps and interrupts */
754 1.4 ryo daif_enable(DAIF_D|DAIF_A|DAIF_I|DAIF_F);
755 1.4 ryo
756 1.4 ryo switch (eclass) {
757 1.11 ryo #ifdef COMPAT_NETBSD32
758 1.11 ryo case ESR_EC_INSN_ABT_EL0:
759 1.11 ryo case ESR_EC_DATA_ABT_EL0:
760 1.11 ryo data_abort_handler(tf, eclass);
761 1.11 ryo userret(l);
762 1.11 ryo break;
763 1.11 ryo
764 1.11 ryo case ESR_EC_SVC_A32:
765 1.11 ryo (*l->l_proc->p_md.md_syscall)(tf);
766 1.11 ryo break;
767 1.19 skrll
768 1.4 ryo case ESR_EC_FP_ACCESS:
769 1.4 ryo fpu_load(l);
770 1.4 ryo userret(l);
771 1.4 ryo break;
772 1.19 skrll
773 1.11 ryo case ESR_EC_FP_TRAP_A32:
774 1.11 ryo do_trapsignal(l, SIGFPE, FPE_FLTUND, NULL, esr); /* XXX */
775 1.4 ryo userret(l);
776 1.18 jmcneill break;
777 1.4 ryo
778 1.4 ryo case ESR_EC_PC_ALIGNMENT:
779 1.5 christos do_trapsignal(l, SIGBUS, BUS_ADRALN, (void *)tf->tf_pc, esr);
780 1.4 ryo userret(l);
781 1.4 ryo break;
782 1.19 skrll
783 1.4 ryo case ESR_EC_SP_ALIGNMENT:
784 1.11 ryo do_trapsignal(l, SIGBUS, BUS_ADRALN,
785 1.11 ryo (void *)tf->tf_reg[13], esr); /* sp is r13 on AArch32 */
786 1.4 ryo userret(l);
787 1.4 ryo break;
788 1.4 ryo
789 1.11 ryo case ESR_EC_BKPT_INSN_A32:
790 1.11 ryo do_trapsignal(l, SIGTRAP, TRAP_BRKPT, (void *)tf->tf_pc, esr);
791 1.11 ryo userret(l);
792 1.4 ryo break;
793 1.11 ryo
794 1.21 rin case ESR_EC_UNKNOWN:
795 1.26 rin switch (emul_arm_insn(tf)) {
796 1.26 rin case EMUL_ARM_SUCCESS:
797 1.26 rin break;
798 1.26 rin case EMUL_ARM_UNKNOWN:
799 1.21 rin goto unknown;
800 1.26 rin case EMUL_ARM_FAULT:
801 1.26 rin do_trapsignal(l, SIGSEGV, SEGV_MAPERR,
802 1.32 ryo (void *)tf->tf_far, esr);
803 1.26 rin break;
804 1.26 rin }
805 1.21 rin userret(l);
806 1.21 rin break;
807 1.21 rin
808 1.4 ryo case ESR_EC_CP15_RT:
809 1.4 ryo case ESR_EC_CP15_RRT:
810 1.4 ryo case ESR_EC_CP14_RT:
811 1.4 ryo case ESR_EC_CP14_DT:
812 1.4 ryo case ESR_EC_CP14_RRT:
813 1.21 rin unknown:
814 1.4 ryo #endif /* COMPAT_NETBSD32 */
815 1.4 ryo default:
816 1.11 ryo #ifdef DDB
817 1.11 ryo if (sigill_debug) {
818 1.11 ryo /* show illegal instruction */
819 1.11 ryo printf("TRAP: pid %d (%s), uid %d: %s:"
820 1.11 ryo " esr=0x%lx: pc=0x%lx: %s\n",
821 1.11 ryo curlwp->l_proc->p_pid, curlwp->l_proc->p_comm,
822 1.11 ryo l->l_cred ? kauth_cred_geteuid(l->l_cred) : -1,
823 1.11 ryo eclass_trapname(eclass), tf->tf_esr, tf->tf_pc,
824 1.31 ryo strdisasm(tf->tf_pc, tf->tf_spsr));
825 1.11 ryo }
826 1.11 ryo #endif
827 1.11 ryo /* illegal or not implemented instruction */
828 1.5 christos do_trapsignal(l, SIGILL, ILL_ILLTRP, (void *)tf->tf_pc, esr);
829 1.4 ryo userret(l);
830 1.4 ryo break;
831 1.4 ryo }
832 1.4 ryo }
833 1.4 ryo
834 1.4 ryo #define bad_trap_panic(trapfunc) \
835 1.4 ryo void \
836 1.4 ryo trapfunc(struct trapframe *tf) \
837 1.4 ryo { \
838 1.4 ryo panic("%s", __func__); \
839 1.4 ryo }
840 1.4 ryo bad_trap_panic(trap_el1t_sync)
841 1.4 ryo bad_trap_panic(trap_el1t_irq)
842 1.4 ryo bad_trap_panic(trap_el1t_fiq)
843 1.4 ryo bad_trap_panic(trap_el1t_error)
844 1.4 ryo bad_trap_panic(trap_el1h_fiq)
845 1.4 ryo bad_trap_panic(trap_el1h_error)
846 1.4 ryo bad_trap_panic(trap_el0_fiq)
847 1.4 ryo bad_trap_panic(trap_el0_error)
848 1.4 ryo bad_trap_panic(trap_el0_32fiq)
849 1.4 ryo bad_trap_panic(trap_el0_32error)
850 1.2 nisimura
851 1.4 ryo void
852 1.4 ryo cpu_jump_onfault(struct trapframe *tf, const struct faultbuf *fb, int val)
853 1.4 ryo {
854 1.2 nisimura tf->tf_reg[19] = fb->fb_reg[FB_X19];
855 1.2 nisimura tf->tf_reg[20] = fb->fb_reg[FB_X20];
856 1.2 nisimura tf->tf_reg[21] = fb->fb_reg[FB_X21];
857 1.2 nisimura tf->tf_reg[22] = fb->fb_reg[FB_X22];
858 1.2 nisimura tf->tf_reg[23] = fb->fb_reg[FB_X23];
859 1.2 nisimura tf->tf_reg[24] = fb->fb_reg[FB_X24];
860 1.2 nisimura tf->tf_reg[25] = fb->fb_reg[FB_X25];
861 1.2 nisimura tf->tf_reg[26] = fb->fb_reg[FB_X26];
862 1.2 nisimura tf->tf_reg[27] = fb->fb_reg[FB_X27];
863 1.2 nisimura tf->tf_reg[28] = fb->fb_reg[FB_X28];
864 1.2 nisimura tf->tf_reg[29] = fb->fb_reg[FB_X29];
865 1.2 nisimura tf->tf_sp = fb->fb_reg[FB_SP];
866 1.4 ryo tf->tf_pc = fb->fb_reg[FB_LR];
867 1.4 ryo tf->tf_reg[0] = val;
868 1.2 nisimura }
869 1.2 nisimura
870 1.6 christos #ifdef TRAP_SIGDEBUG
871 1.6 christos static void
872 1.6 christos frame_dump(const struct trapframe *tf)
873 1.6 christos {
874 1.6 christos const struct reg *r = &tf->tf_regs;
875 1.6 christos
876 1.6 christos printf("trapframe %p\n", tf);
877 1.6 christos for (size_t i = 0; i < __arraycount(r->r_reg); i++) {
878 1.7 christos printf(" r%.2zu %#018" PRIx64 "%c", i, r->r_reg[i],
879 1.6 christos " \n"[i && (i & 1) == 0]);
880 1.6 christos }
881 1.6 christos
882 1.6 christos printf("\n");
883 1.6 christos printf(" sp %#018" PRIx64 " pc %#018" PRIx64 "\n",
884 1.6 christos r->r_sp, r->r_pc);
885 1.6 christos printf(" spsr %#018" PRIx64 " tpidr %#018" PRIx64 "\n",
886 1.6 christos r->r_spsr, r->r_tpidr);
887 1.6 christos printf(" esr %#018" PRIx64 " far %#018" PRIx64 "\n",
888 1.6 christos tf->tf_esr, tf->tf_far);
889 1.6 christos
890 1.6 christos printf("\n");
891 1.6 christos hexdump(printf, "Stack dump", tf, 256);
892 1.6 christos }
893 1.6 christos
894 1.6 christos static void
895 1.6 christos sigdebug(const struct trapframe *tf, const ksiginfo_t *ksi)
896 1.6 christos {
897 1.6 christos struct lwp *l = curlwp;
898 1.6 christos struct proc *p = l->l_proc;
899 1.6 christos const uint32_t eclass = __SHIFTOUT(ksi->ksi_trap, ESR_EC);
900 1.6 christos
901 1.6 christos printf("pid %d.%d (%s): signal %d (trap %#x) "
902 1.6 christos "@pc %#" PRIx64 ", addr %p, error=%s\n",
903 1.6 christos p->p_pid, l->l_lid, p->p_comm, ksi->ksi_signo, ksi->ksi_trap,
904 1.6 christos tf->tf_regs.r_pc, ksi->ksi_addr, eclass_trapname(eclass));
905 1.6 christos frame_dump(tf);
906 1.6 christos }
907 1.6 christos #endif
908 1.6 christos
909 1.6 christos void do_trapsignal1(
910 1.6 christos #ifdef TRAP_SIGDEBUG
911 1.6 christos const char *func,
912 1.6 christos size_t line,
913 1.6 christos struct trapframe *tf,
914 1.6 christos #endif
915 1.6 christos struct lwp *l, int signo, int code, void *addr, int trap)
916 1.6 christos {
917 1.6 christos ksiginfo_t ksi;
918 1.6 christos
919 1.6 christos KSI_INIT_TRAP(&ksi);
920 1.6 christos ksi.ksi_signo = signo;
921 1.6 christos ksi.ksi_code = code;
922 1.6 christos ksi.ksi_addr = addr;
923 1.6 christos ksi.ksi_trap = trap;
924 1.6 christos #ifdef TRAP_SIGDEBUG
925 1.6 christos printf("%s, %zu: ", func, line);
926 1.6 christos sigdebug(tf, &ksi);
927 1.6 christos #endif
928 1.6 christos (*l->l_proc->p_emul->e_trapsignal)(l, &ksi);
929 1.6 christos }
930 1.23 ad
931 1.23 ad bool
932 1.23 ad cpu_intr_p(void)
933 1.23 ad {
934 1.23 ad uint64_t ncsw;
935 1.23 ad int idepth;
936 1.23 ad lwp_t *l;
937 1.23 ad
938 1.23 ad #ifdef __HAVE_PIC_FAST_SOFTINTS
939 1.23 ad /* XXX Copied from cpu.h. Looks incomplete - needs fixing. */
940 1.23 ad if (ci->ci_cpl < IPL_VM)
941 1.23 ad return false;
942 1.23 ad #endif
943 1.23 ad
944 1.23 ad l = curlwp;
945 1.23 ad if (__predict_false(l->l_cpu == NULL)) {
946 1.23 ad KASSERT(l == &lwp0);
947 1.23 ad return false;
948 1.23 ad }
949 1.23 ad do {
950 1.23 ad ncsw = l->l_ncsw;
951 1.23 ad __insn_barrier();
952 1.24 skrll idepth = l->l_cpu->ci_intr_depth;
953 1.23 ad __insn_barrier();
954 1.23 ad } while (__predict_false(ncsw != l->l_ncsw));
955 1.23 ad
956 1.23 ad return idepth > 0;
957 1.23 ad }
958