1
2
3
4
5
6
7
8
9#include "qemu/osdep.h"
10#include "qemu/units.h"
11#include "target/arm/idau.h"
12#include "trace.h"
13#include "cpu.h"
14#include "internals.h"
15#include "exec/gdbstub.h"
16#include "exec/helper-proto.h"
17#include "qemu/host-utils.h"
18#include "qemu/main-loop.h"
19#include "qemu/bitops.h"
20#include "qemu/crc32c.h"
21#include "qemu/qemu-print.h"
22#include "exec/exec-all.h"
23#include <zlib.h>
24#include "hw/semihosting/semihost.h"
25#include "sysemu/cpus.h"
26#include "sysemu/kvm.h"
27#include "qemu/range.h"
28#include "qapi/qapi-commands-machine-target.h"
29#include "qapi/error.h"
30#include "qemu/guest-random.h"
31#ifdef CONFIG_TCG
32#include "arm_ldst.h"
33#include "exec/cpu_ldst.h"
34#endif
35
36static void v7m_msr_xpsr(CPUARMState *env, uint32_t mask,
37 uint32_t reg, uint32_t val)
38{
39
40 if (!(reg & 4)) {
41 uint32_t apsrmask = 0;
42
43 if (mask & 8) {
44 apsrmask |= XPSR_NZCV | XPSR_Q;
45 }
46 if ((mask & 4) && arm_feature(env, ARM_FEATURE_THUMB_DSP)) {
47 apsrmask |= XPSR_GE;
48 }
49 xpsr_write(env, val, apsrmask);
50 }
51}
52
53static uint32_t v7m_mrs_xpsr(CPUARMState *env, uint32_t reg, unsigned el)
54{
55 uint32_t mask = 0;
56
57 if ((reg & 1) && el) {
58 mask |= XPSR_EXCP;
59 }
60 if (!(reg & 4)) {
61 mask |= XPSR_NZCV | XPSR_Q;
62 if (arm_feature(env, ARM_FEATURE_THUMB_DSP)) {
63 mask |= XPSR_GE;
64 }
65 }
66
67 return xpsr_read(env) & mask;
68}
69
70static uint32_t v7m_mrs_control(CPUARMState *env, uint32_t secure)
71{
72 uint32_t value = env->v7m.control[secure];
73
74 if (!secure) {
75
76 value |= env->v7m.control[M_REG_S] & R_V7M_CONTROL_FPCA_MASK;
77 }
78 return value;
79}
80
81#ifdef CONFIG_USER_ONLY
82
83void HELPER(v7m_msr)(CPUARMState *env, uint32_t maskreg, uint32_t val)
84{
85 uint32_t mask = extract32(maskreg, 8, 4);
86 uint32_t reg = extract32(maskreg, 0, 8);
87
88 switch (reg) {
89 case 0 ... 7:
90 v7m_msr_xpsr(env, mask, reg, val);
91 break;
92 case 20:
93
94 break;
95 default:
96
97 break;
98 }
99}
100
101uint32_t HELPER(v7m_mrs)(CPUARMState *env, uint32_t reg)
102{
103 switch (reg) {
104 case 0 ... 7:
105 return v7m_mrs_xpsr(env, reg, 0);
106 case 20:
107 return v7m_mrs_control(env, 0);
108 default:
109
110 return 0;
111 }
112}
113
114void HELPER(v7m_bxns)(CPUARMState *env, uint32_t dest)
115{
116
117 g_assert_not_reached();
118}
119
120void HELPER(v7m_blxns)(CPUARMState *env, uint32_t dest)
121{
122
123 g_assert_not_reached();
124}
125
126void HELPER(v7m_preserve_fp_state)(CPUARMState *env)
127{
128
129 g_assert_not_reached();
130}
131
132void HELPER(v7m_vlstm)(CPUARMState *env, uint32_t fptr)
133{
134
135 g_assert_not_reached();
136}
137
138void HELPER(v7m_vlldm)(CPUARMState *env, uint32_t fptr)
139{
140
141 g_assert_not_reached();
142}
143
144uint32_t HELPER(v7m_tt)(CPUARMState *env, uint32_t addr, uint32_t op)
145{
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164 return 0;
165}
166
167#else
168
169
170
171
172
173typedef enum StackingMode {
174 STACK_NORMAL,
175 STACK_IGNFAULTS,
176 STACK_LAZYFP,
177} StackingMode;
178
179static bool v7m_stack_write(ARMCPU *cpu, uint32_t addr, uint32_t value,
180 ARMMMUIdx mmu_idx, StackingMode mode)
181{
182 CPUState *cs = CPU(cpu);
183 CPUARMState *env = &cpu->env;
184 MemTxAttrs attrs = {};
185 MemTxResult txres;
186 target_ulong page_size;
187 hwaddr physaddr;
188 int prot;
189 ARMMMUFaultInfo fi = {};
190 bool secure = mmu_idx & ARM_MMU_IDX_M_S;
191 int exc;
192 bool exc_secure;
193
194 if (get_phys_addr(env, addr, MMU_DATA_STORE, mmu_idx, &physaddr,
195 &attrs, &prot, &page_size, &fi, NULL)) {
196
197 if (fi.type == ARMFault_QEMU_SFault) {
198 if (mode == STACK_LAZYFP) {
199 qemu_log_mask(CPU_LOG_INT,
200 "...SecureFault with SFSR.LSPERR "
201 "during lazy stacking\n");
202 env->v7m.sfsr |= R_V7M_SFSR_LSPERR_MASK;
203 } else {
204 qemu_log_mask(CPU_LOG_INT,
205 "...SecureFault with SFSR.AUVIOL "
206 "during stacking\n");
207 env->v7m.sfsr |= R_V7M_SFSR_AUVIOL_MASK;
208 }
209 env->v7m.sfsr |= R_V7M_SFSR_SFARVALID_MASK;
210 env->v7m.sfar = addr;
211 exc = ARMV7M_EXCP_SECURE;
212 exc_secure = false;
213 } else {
214 if (mode == STACK_LAZYFP) {
215 qemu_log_mask(CPU_LOG_INT,
216 "...MemManageFault with CFSR.MLSPERR\n");
217 env->v7m.cfsr[secure] |= R_V7M_CFSR_MLSPERR_MASK;
218 } else {
219 qemu_log_mask(CPU_LOG_INT,
220 "...MemManageFault with CFSR.MSTKERR\n");
221 env->v7m.cfsr[secure] |= R_V7M_CFSR_MSTKERR_MASK;
222 }
223 exc = ARMV7M_EXCP_MEM;
224 exc_secure = secure;
225 }
226 goto pend_fault;
227 }
228 address_space_stl_le(arm_addressspace(cs, attrs), physaddr, value,
229 attrs, &txres);
230 if (txres != MEMTX_OK) {
231
232 if (mode == STACK_LAZYFP) {
233 qemu_log_mask(CPU_LOG_INT, "...BusFault with BFSR.LSPERR\n");
234 env->v7m.cfsr[M_REG_NS] |= R_V7M_CFSR_LSPERR_MASK;
235 } else {
236 qemu_log_mask(CPU_LOG_INT, "...BusFault with BFSR.STKERR\n");
237 env->v7m.cfsr[M_REG_NS] |= R_V7M_CFSR_STKERR_MASK;
238 }
239 exc = ARMV7M_EXCP_BUS;
240 exc_secure = false;
241 goto pend_fault;
242 }
243 return true;
244
245pend_fault:
246
247
248
249
250
251
252
253
254
255
256
257
258 switch (mode) {
259 case STACK_NORMAL:
260 armv7m_nvic_set_pending_derived(env->nvic, exc, exc_secure);
261 break;
262 case STACK_LAZYFP:
263 armv7m_nvic_set_pending_lazyfp(env->nvic, exc, exc_secure);
264 break;
265 case STACK_IGNFAULTS:
266 break;
267 }
268 return false;
269}
270
271static bool v7m_stack_read(ARMCPU *cpu, uint32_t *dest, uint32_t addr,
272 ARMMMUIdx mmu_idx)
273{
274 CPUState *cs = CPU(cpu);
275 CPUARMState *env = &cpu->env;
276 MemTxAttrs attrs = {};
277 MemTxResult txres;
278 target_ulong page_size;
279 hwaddr physaddr;
280 int prot;
281 ARMMMUFaultInfo fi = {};
282 bool secure = mmu_idx & ARM_MMU_IDX_M_S;
283 int exc;
284 bool exc_secure;
285 uint32_t value;
286
287 if (get_phys_addr(env, addr, MMU_DATA_LOAD, mmu_idx, &physaddr,
288 &attrs, &prot, &page_size, &fi, NULL)) {
289
290 if (fi.type == ARMFault_QEMU_SFault) {
291 qemu_log_mask(CPU_LOG_INT,
292 "...SecureFault with SFSR.AUVIOL during unstack\n");
293 env->v7m.sfsr |= R_V7M_SFSR_AUVIOL_MASK | R_V7M_SFSR_SFARVALID_MASK;
294 env->v7m.sfar = addr;
295 exc = ARMV7M_EXCP_SECURE;
296 exc_secure = false;
297 } else {
298 qemu_log_mask(CPU_LOG_INT,
299 "...MemManageFault with CFSR.MUNSTKERR\n");
300 env->v7m.cfsr[secure] |= R_V7M_CFSR_MUNSTKERR_MASK;
301 exc = ARMV7M_EXCP_MEM;
302 exc_secure = secure;
303 }
304 goto pend_fault;
305 }
306
307 value = address_space_ldl(arm_addressspace(cs, attrs), physaddr,
308 attrs, &txres);
309 if (txres != MEMTX_OK) {
310
311 qemu_log_mask(CPU_LOG_INT, "...BusFault with BFSR.UNSTKERR\n");
312 env->v7m.cfsr[M_REG_NS] |= R_V7M_CFSR_UNSTKERR_MASK;
313 exc = ARMV7M_EXCP_BUS;
314 exc_secure = false;
315 goto pend_fault;
316 }
317
318 *dest = value;
319 return true;
320
321pend_fault:
322
323
324
325
326
327
328
329 armv7m_nvic_set_pending(env->nvic, exc, exc_secure);
330 return false;
331}
332
333void HELPER(v7m_preserve_fp_state)(CPUARMState *env)
334{
335
336
337
338
339
340
341 ARMCPU *cpu = env_archcpu(env);
342 bool is_secure = env->v7m.fpccr[M_REG_S] & R_V7M_FPCCR_S_MASK;
343 bool negpri = !(env->v7m.fpccr[M_REG_S] & R_V7M_FPCCR_HFRDY_MASK);
344 bool is_priv = !(env->v7m.fpccr[is_secure] & R_V7M_FPCCR_USER_MASK);
345 bool splimviol = env->v7m.fpccr[is_secure] & R_V7M_FPCCR_SPLIMVIOL_MASK;
346 uint32_t fpcar = env->v7m.fpcar[is_secure];
347 bool stacked_ok = true;
348 bool ts = is_secure && (env->v7m.fpccr[M_REG_S] & R_V7M_FPCCR_TS_MASK);
349 bool take_exception;
350
351
352 qemu_mutex_lock_iothread();
353
354
355 if (!v7m_cpacr_pass(env, is_secure, is_priv)) {
356 armv7m_nvic_set_pending_lazyfp(env->nvic, ARMV7M_EXCP_USAGE, is_secure);
357 env->v7m.cfsr[is_secure] |= R_V7M_CFSR_NOCP_MASK;
358 stacked_ok = false;
359 } else if (!is_secure && !extract32(env->v7m.nsacr, 10, 1)) {
360 armv7m_nvic_set_pending_lazyfp(env->nvic, ARMV7M_EXCP_USAGE, M_REG_S);
361 env->v7m.cfsr[M_REG_S] |= R_V7M_CFSR_NOCP_MASK;
362 stacked_ok = false;
363 }
364
365 if (!splimviol && stacked_ok) {
366
367 int i;
368 ARMMMUIdx mmu_idx;
369
370 mmu_idx = arm_v7m_mmu_idx_all(env, is_secure, is_priv, negpri);
371 for (i = 0; i < (ts ? 32 : 16); i += 2) {
372 uint64_t dn = *aa32_vfp_dreg(env, i / 2);
373 uint32_t faddr = fpcar + 4 * i;
374 uint32_t slo = extract64(dn, 0, 32);
375 uint32_t shi = extract64(dn, 32, 32);
376
377 if (i >= 16) {
378 faddr += 8;
379 }
380 stacked_ok = stacked_ok &&
381 v7m_stack_write(cpu, faddr, slo, mmu_idx, STACK_LAZYFP) &&
382 v7m_stack_write(cpu, faddr + 4, shi, mmu_idx, STACK_LAZYFP);
383 }
384
385 stacked_ok = stacked_ok &&
386 v7m_stack_write(cpu, fpcar + 0x40,
387 vfp_get_fpscr(env), mmu_idx, STACK_LAZYFP);
388 }
389
390
391
392
393
394
395
396
397
398 take_exception = !stacked_ok &&
399 armv7m_nvic_can_take_pending_exception(env->nvic);
400
401 qemu_mutex_unlock_iothread();
402
403 if (take_exception) {
404 raise_exception_ra(env, EXCP_LAZYFP, 0, 1, GETPC());
405 }
406
407 env->v7m.fpccr[is_secure] &= ~R_V7M_FPCCR_LSPACT_MASK;
408
409 if (ts) {
410
411 int i;
412
413 for (i = 0; i < 32; i += 2) {
414 *aa32_vfp_dreg(env, i / 2) = 0;
415 }
416 vfp_set_fpscr(env, 0);
417 }
418
419
420
421
422}
423
424
425
426
427
428
429
430static void write_v7m_control_spsel_for_secstate(CPUARMState *env,
431 bool new_spsel,
432 bool secstate)
433{
434 bool old_is_psp = v7m_using_psp(env);
435
436 env->v7m.control[secstate] =
437 deposit32(env->v7m.control[secstate],
438 R_V7M_CONTROL_SPSEL_SHIFT,
439 R_V7M_CONTROL_SPSEL_LENGTH, new_spsel);
440
441 if (secstate == env->v7m.secure) {
442 bool new_is_psp = v7m_using_psp(env);
443 uint32_t tmp;
444
445 if (old_is_psp != new_is_psp) {
446 tmp = env->v7m.other_sp;
447 env->v7m.other_sp = env->regs[13];
448 env->regs[13] = tmp;
449 }
450 }
451}
452
453
454
455
456
457static void write_v7m_control_spsel(CPUARMState *env, bool new_spsel)
458{
459 write_v7m_control_spsel_for_secstate(env, new_spsel, env->v7m.secure);
460}
461
462void write_v7m_exception(CPUARMState *env, uint32_t new_exc)
463{
464
465
466
467
468 bool new_is_psp, old_is_psp = v7m_using_psp(env);
469 uint32_t tmp;
470
471 env->v7m.exception = new_exc;
472
473 new_is_psp = v7m_using_psp(env);
474
475 if (old_is_psp != new_is_psp) {
476 tmp = env->v7m.other_sp;
477 env->v7m.other_sp = env->regs[13];
478 env->regs[13] = tmp;
479 }
480}
481
482
483static void switch_v7m_security_state(CPUARMState *env, bool new_secstate)
484{
485 uint32_t new_ss_msp, new_ss_psp;
486
487 if (env->v7m.secure == new_secstate) {
488 return;
489 }
490
491
492
493
494
495 new_ss_msp = env->v7m.other_ss_msp;
496 new_ss_psp = env->v7m.other_ss_psp;
497
498 if (v7m_using_psp(env)) {
499 env->v7m.other_ss_psp = env->regs[13];
500 env->v7m.other_ss_msp = env->v7m.other_sp;
501 } else {
502 env->v7m.other_ss_msp = env->regs[13];
503 env->v7m.other_ss_psp = env->v7m.other_sp;
504 }
505
506 env->v7m.secure = new_secstate;
507
508 if (v7m_using_psp(env)) {
509 env->regs[13] = new_ss_psp;
510 env->v7m.other_sp = new_ss_msp;
511 } else {
512 env->regs[13] = new_ss_msp;
513 env->v7m.other_sp = new_ss_psp;
514 }
515}
516
517void HELPER(v7m_bxns)(CPUARMState *env, uint32_t dest)
518{
519
520
521
522
523
524 uint32_t min_magic;
525
526 if (arm_feature(env, ARM_FEATURE_M_SECURITY)) {
527
528 min_magic = FNC_RETURN_MIN_MAGIC;
529 } else {
530
531 min_magic = EXC_RETURN_MIN_MAGIC;
532 }
533
534 if (dest >= min_magic) {
535
536
537
538
539
540
541
542 env->regs[15] = dest & ~1;
543 env->thumb = dest & 1;
544 HELPER(exception_internal)(env, EXCP_EXCEPTION_EXIT);
545
546 }
547
548
549 assert(env->v7m.secure);
550
551 if (!(dest & 1)) {
552 env->v7m.control[M_REG_S] &= ~R_V7M_CONTROL_SFPA_MASK;
553 }
554 switch_v7m_security_state(env, dest & 1);
555 env->thumb = 1;
556 env->regs[15] = dest & ~1;
557 arm_rebuild_hflags(env);
558}
559
560void HELPER(v7m_blxns)(CPUARMState *env, uint32_t dest)
561{
562
563
564
565
566
567
568 uint32_t nextinst = env->regs[15] | 1;
569 uint32_t sp = env->regs[13] - 8;
570 uint32_t saved_psr;
571
572
573 assert(env->v7m.secure);
574
575 if (dest & 1) {
576
577
578
579
580 env->regs[14] = nextinst;
581 env->thumb = 1;
582 env->regs[15] = dest & ~1;
583 return;
584 }
585
586
587 if (!QEMU_IS_ALIGNED(sp, 8)) {
588 qemu_log_mask(LOG_GUEST_ERROR,
589 "BLXNS with misaligned SP is UNPREDICTABLE\n");
590 }
591
592 if (sp < v7m_sp_limit(env)) {
593 raise_exception(env, EXCP_STKOF, 0, 1);
594 }
595
596 saved_psr = env->v7m.exception;
597 if (env->v7m.control[M_REG_S] & R_V7M_CONTROL_SFPA_MASK) {
598 saved_psr |= XPSR_SFPA;
599 }
600
601
602 cpu_stl_data_ra(env, sp, nextinst, GETPC());
603 cpu_stl_data_ra(env, sp + 4, saved_psr, GETPC());
604
605 env->regs[13] = sp;
606 env->regs[14] = 0xfeffffff;
607 if (arm_v7m_is_handler_mode(env)) {
608
609
610
611
612
613 write_v7m_exception(env, 1);
614 }
615 env->v7m.control[M_REG_S] &= ~R_V7M_CONTROL_SFPA_MASK;
616 switch_v7m_security_state(env, 0);
617 env->thumb = 1;
618 env->regs[15] = dest;
619 arm_rebuild_hflags(env);
620}
621
622static uint32_t *get_v7m_sp_ptr(CPUARMState *env, bool secure, bool threadmode,
623 bool spsel)
624{
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641 bool want_psp = threadmode && spsel;
642
643 if (secure == env->v7m.secure) {
644 if (want_psp == v7m_using_psp(env)) {
645 return &env->regs[13];
646 } else {
647 return &env->v7m.other_sp;
648 }
649 } else {
650 if (want_psp) {
651 return &env->v7m.other_ss_psp;
652 } else {
653 return &env->v7m.other_ss_msp;
654 }
655 }
656}
657
658static bool arm_v7m_load_vector(ARMCPU *cpu, int exc, bool targets_secure,
659 uint32_t *pvec)
660{
661 CPUState *cs = CPU(cpu);
662 CPUARMState *env = &cpu->env;
663 MemTxResult result;
664 uint32_t addr = env->v7m.vecbase[targets_secure] + exc * 4;
665 uint32_t vector_entry;
666 MemTxAttrs attrs = {};
667 ARMMMUIdx mmu_idx;
668 bool exc_secure;
669
670 mmu_idx = arm_v7m_mmu_idx_for_secstate_and_priv(env, targets_secure, true);
671
672
673
674
675
676
677
678
679
680 attrs.secure = targets_secure;
681 attrs.user = false;
682
683 if (arm_feature(env, ARM_FEATURE_M_SECURITY)) {
684 V8M_SAttributes sattrs = {};
685
686 v8m_security_lookup(env, addr, MMU_DATA_LOAD, mmu_idx, &sattrs);
687 if (sattrs.ns) {
688 attrs.secure = false;
689 } else if (!targets_secure) {
690
691
692
693
694 exc_secure = true;
695 goto load_fail;
696 }
697 }
698
699 vector_entry = address_space_ldl(arm_addressspace(cs, attrs), addr,
700 attrs, &result);
701 if (result != MEMTX_OK) {
702
703
704
705
706 exc_secure = !(cpu->env.v7m.aircr & R_V7M_AIRCR_BFHFNMINS_MASK);
707 goto load_fail;
708 }
709 *pvec = vector_entry;
710 return true;
711
712load_fail:
713
714
715
716
717
718
719
720
721
722
723
724 if (!(cpu->env.v7m.aircr & R_V7M_AIRCR_BFHFNMINS_MASK)) {
725 exc_secure = true;
726 }
727 env->v7m.hfsr |= R_V7M_HFSR_VECTTBL_MASK | R_V7M_HFSR_FORCED_MASK;
728 armv7m_nvic_set_pending_derived(env->nvic, ARMV7M_EXCP_HARD, exc_secure);
729 return false;
730}
731
732static uint32_t v7m_integrity_sig(CPUARMState *env, uint32_t lr)
733{
734
735
736
737
738
739 uint32_t sig = 0xfefa125a;
740
741 if (!arm_feature(env, ARM_FEATURE_VFP) || (lr & R_V7M_EXCRET_FTYPE_MASK)) {
742 sig |= 1;
743 }
744 return sig;
745}
746
747static bool v7m_push_callee_stack(ARMCPU *cpu, uint32_t lr, bool dotailchain,
748 bool ignore_faults)
749{
750
751
752
753
754
755 CPUARMState *env = &cpu->env;
756 uint32_t *frame_sp_p;
757 uint32_t frameptr;
758 ARMMMUIdx mmu_idx;
759 bool stacked_ok;
760 uint32_t limit;
761 bool want_psp;
762 uint32_t sig;
763 StackingMode smode = ignore_faults ? STACK_IGNFAULTS : STACK_NORMAL;
764
765 if (dotailchain) {
766 bool mode = lr & R_V7M_EXCRET_MODE_MASK;
767 bool priv = !(env->v7m.control[M_REG_S] & R_V7M_CONTROL_NPRIV_MASK) ||
768 !mode;
769
770 mmu_idx = arm_v7m_mmu_idx_for_secstate_and_priv(env, M_REG_S, priv);
771 frame_sp_p = get_v7m_sp_ptr(env, M_REG_S, mode,
772 lr & R_V7M_EXCRET_SPSEL_MASK);
773 want_psp = mode && (lr & R_V7M_EXCRET_SPSEL_MASK);
774 if (want_psp) {
775 limit = env->v7m.psplim[M_REG_S];
776 } else {
777 limit = env->v7m.msplim[M_REG_S];
778 }
779 } else {
780 mmu_idx = arm_mmu_idx(env);
781 frame_sp_p = &env->regs[13];
782 limit = v7m_sp_limit(env);
783 }
784
785 frameptr = *frame_sp_p - 0x28;
786 if (frameptr < limit) {
787
788
789
790
791
792
793 qemu_log_mask(CPU_LOG_INT,
794 "...STKOF during callee-saves register stacking\n");
795 env->v7m.cfsr[env->v7m.secure] |= R_V7M_CFSR_STKOF_MASK;
796 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_USAGE,
797 env->v7m.secure);
798 *frame_sp_p = limit;
799 return true;
800 }
801
802
803
804
805
806 sig = v7m_integrity_sig(env, lr);
807 stacked_ok =
808 v7m_stack_write(cpu, frameptr, sig, mmu_idx, smode) &&
809 v7m_stack_write(cpu, frameptr + 0x8, env->regs[4], mmu_idx, smode) &&
810 v7m_stack_write(cpu, frameptr + 0xc, env->regs[5], mmu_idx, smode) &&
811 v7m_stack_write(cpu, frameptr + 0x10, env->regs[6], mmu_idx, smode) &&
812 v7m_stack_write(cpu, frameptr + 0x14, env->regs[7], mmu_idx, smode) &&
813 v7m_stack_write(cpu, frameptr + 0x18, env->regs[8], mmu_idx, smode) &&
814 v7m_stack_write(cpu, frameptr + 0x1c, env->regs[9], mmu_idx, smode) &&
815 v7m_stack_write(cpu, frameptr + 0x20, env->regs[10], mmu_idx, smode) &&
816 v7m_stack_write(cpu, frameptr + 0x24, env->regs[11], mmu_idx, smode);
817
818
819 *frame_sp_p = frameptr;
820
821 return !stacked_ok;
822}
823
824static void v7m_exception_taken(ARMCPU *cpu, uint32_t lr, bool dotailchain,
825 bool ignore_stackfaults)
826{
827
828
829
830
831
832 CPUARMState *env = &cpu->env;
833 uint32_t addr;
834 bool targets_secure;
835 int exc;
836 bool push_failed = false;
837
838 armv7m_nvic_get_pending_irq_info(env->nvic, &exc, &targets_secure);
839 qemu_log_mask(CPU_LOG_INT, "...taking pending %s exception %d\n",
840 targets_secure ? "secure" : "nonsecure", exc);
841
842 if (dotailchain) {
843
844 if (!arm_feature(env, ARM_FEATURE_VFP)) {
845 lr |= R_V7M_EXCRET_FTYPE_MASK;
846 }
847 lr = deposit32(lr, 24, 8, 0xff);
848 }
849
850 if (arm_feature(env, ARM_FEATURE_V8)) {
851 if (arm_feature(env, ARM_FEATURE_M_SECURITY) &&
852 (lr & R_V7M_EXCRET_S_MASK)) {
853
854
855
856
857
858 if (targets_secure) {
859 if (dotailchain && !(lr & R_V7M_EXCRET_ES_MASK)) {
860
861
862
863
864
865
866
867 lr &= ~R_V7M_EXCRET_DCRS_MASK;
868 }
869 } else {
870
871
872
873
874
875 if (lr & R_V7M_EXCRET_DCRS_MASK &&
876 !(dotailchain && !(lr & R_V7M_EXCRET_ES_MASK))) {
877 push_failed = v7m_push_callee_stack(cpu, lr, dotailchain,
878 ignore_stackfaults);
879 }
880 lr |= R_V7M_EXCRET_DCRS_MASK;
881 }
882 }
883
884 lr &= ~R_V7M_EXCRET_ES_MASK;
885 if (targets_secure || !arm_feature(env, ARM_FEATURE_M_SECURITY)) {
886 lr |= R_V7M_EXCRET_ES_MASK;
887 }
888 lr &= ~R_V7M_EXCRET_SPSEL_MASK;
889 if (env->v7m.control[targets_secure] & R_V7M_CONTROL_SPSEL_MASK) {
890 lr |= R_V7M_EXCRET_SPSEL_MASK;
891 }
892
893
894
895
896
897
898
899 if (arm_feature(env, ARM_FEATURE_M_SECURITY)) {
900 if (!targets_secure) {
901
902
903
904
905
906
907
908 int i;
909
910 for (i = 0; i < 13; i++) {
911
912 if (i < 4 || i > 11 || (lr & R_V7M_EXCRET_S_MASK)) {
913 env->regs[i] = 0;
914 }
915 }
916
917 xpsr_write(env, 0, XPSR_NZCV | XPSR_Q | XPSR_GE | XPSR_IT);
918 }
919 }
920 }
921
922 if (push_failed && !ignore_stackfaults) {
923
924
925
926
927
928 qemu_log_mask(CPU_LOG_INT,
929 "...derived exception on callee-saves register stacking");
930 v7m_exception_taken(cpu, lr, true, true);
931 return;
932 }
933
934 if (!arm_v7m_load_vector(cpu, exc, targets_secure, &addr)) {
935
936 qemu_log_mask(CPU_LOG_INT, "...derived exception on vector table load");
937 v7m_exception_taken(cpu, lr, true, true);
938 return;
939 }
940
941
942
943
944
945
946 armv7m_nvic_acknowledge_irq(env->nvic);
947
948
949 switch_v7m_security_state(env, targets_secure);
950 write_v7m_control_spsel(env, 0);
951 arm_clear_exclusive(env);
952
953 env->v7m.control[M_REG_S] &=
954 ~(R_V7M_CONTROL_FPCA_MASK | R_V7M_CONTROL_SFPA_MASK);
955
956 env->condexec_bits = 0;
957 env->regs[14] = lr;
958 env->regs[15] = addr & 0xfffffffe;
959 env->thumb = addr & 1;
960 arm_rebuild_hflags(env);
961}
962
963static void v7m_update_fpccr(CPUARMState *env, uint32_t frameptr,
964 bool apply_splim)
965{
966
967
968
969
970 bool is_secure = env->v7m.secure;
971 void *nvic = env->nvic;
972
973
974
975
976
977
978 uint32_t *fpccr_s = &env->v7m.fpccr[M_REG_S];
979 uint32_t *fpccr_ns = &env->v7m.fpccr[M_REG_NS];
980 uint32_t *fpccr = &env->v7m.fpccr[is_secure];
981 bool hfrdy, bfrdy, mmrdy, ns_ufrdy, s_ufrdy, sfrdy, monrdy;
982
983 env->v7m.fpcar[is_secure] = frameptr & ~0x7;
984
985 if (apply_splim && arm_feature(env, ARM_FEATURE_V8)) {
986 bool splimviol;
987 uint32_t splim = v7m_sp_limit(env);
988 bool ign = armv7m_nvic_neg_prio_requested(nvic, is_secure) &&
989 (env->v7m.ccr[is_secure] & R_V7M_CCR_STKOFHFNMIGN_MASK);
990
991 splimviol = !ign && frameptr < splim;
992 *fpccr = FIELD_DP32(*fpccr, V7M_FPCCR, SPLIMVIOL, splimviol);
993 }
994
995 *fpccr = FIELD_DP32(*fpccr, V7M_FPCCR, LSPACT, 1);
996
997 *fpccr_s = FIELD_DP32(*fpccr_s, V7M_FPCCR, S, is_secure);
998
999 *fpccr = FIELD_DP32(*fpccr, V7M_FPCCR, USER, arm_current_el(env) == 0);
1000
1001 *fpccr = FIELD_DP32(*fpccr, V7M_FPCCR, THREAD,
1002 !arm_v7m_is_handler_mode(env));
1003
1004 hfrdy = armv7m_nvic_get_ready_status(nvic, ARMV7M_EXCP_HARD, false);
1005 *fpccr_s = FIELD_DP32(*fpccr_s, V7M_FPCCR, HFRDY, hfrdy);
1006
1007 bfrdy = armv7m_nvic_get_ready_status(nvic, ARMV7M_EXCP_BUS, false);
1008 *fpccr_s = FIELD_DP32(*fpccr_s, V7M_FPCCR, BFRDY, bfrdy);
1009
1010 mmrdy = armv7m_nvic_get_ready_status(nvic, ARMV7M_EXCP_MEM, is_secure);
1011 *fpccr = FIELD_DP32(*fpccr, V7M_FPCCR, MMRDY, mmrdy);
1012
1013 ns_ufrdy = armv7m_nvic_get_ready_status(nvic, ARMV7M_EXCP_USAGE, false);
1014 *fpccr_ns = FIELD_DP32(*fpccr_ns, V7M_FPCCR, UFRDY, ns_ufrdy);
1015
1016 monrdy = armv7m_nvic_get_ready_status(nvic, ARMV7M_EXCP_DEBUG, false);
1017 *fpccr_s = FIELD_DP32(*fpccr_s, V7M_FPCCR, MONRDY, monrdy);
1018
1019 if (arm_feature(env, ARM_FEATURE_M_SECURITY)) {
1020 s_ufrdy = armv7m_nvic_get_ready_status(nvic, ARMV7M_EXCP_USAGE, true);
1021 *fpccr_s = FIELD_DP32(*fpccr_s, V7M_FPCCR, UFRDY, s_ufrdy);
1022
1023 sfrdy = armv7m_nvic_get_ready_status(nvic, ARMV7M_EXCP_SECURE, false);
1024 *fpccr_s = FIELD_DP32(*fpccr_s, V7M_FPCCR, SFRDY, sfrdy);
1025 }
1026}
1027
1028void HELPER(v7m_vlstm)(CPUARMState *env, uint32_t fptr)
1029{
1030
1031 bool s = env->v7m.fpccr[M_REG_S] & R_V7M_FPCCR_S_MASK;
1032 bool lspact = env->v7m.fpccr[s] & R_V7M_FPCCR_LSPACT_MASK;
1033 uintptr_t ra = GETPC();
1034
1035 assert(env->v7m.secure);
1036
1037 if (!(env->v7m.control[M_REG_S] & R_V7M_CONTROL_SFPA_MASK)) {
1038 return;
1039 }
1040
1041
1042 if (!v7m_cpacr_pass(env, true, arm_current_el(env) != 0)) {
1043 raise_exception_ra(env, EXCP_NOCP, 0, 1, GETPC());
1044 }
1045
1046 if (lspact) {
1047
1048 raise_exception_ra(env, EXCP_LSERR, 0, 1, GETPC());
1049 }
1050
1051 if (fptr & 7) {
1052 raise_exception_ra(env, EXCP_UNALIGNED, 0, 1, GETPC());
1053 }
1054
1055
1056
1057
1058
1059
1060
1061
1062 if (!(env->v7m.fpccr[M_REG_S] & R_V7M_FPCCR_LSPEN_MASK)) {
1063 bool ts = env->v7m.fpccr[M_REG_S] & R_V7M_FPCCR_TS_MASK;
1064 int i;
1065
1066 for (i = 0; i < (ts ? 32 : 16); i += 2) {
1067 uint64_t dn = *aa32_vfp_dreg(env, i / 2);
1068 uint32_t faddr = fptr + 4 * i;
1069 uint32_t slo = extract64(dn, 0, 32);
1070 uint32_t shi = extract64(dn, 32, 32);
1071
1072 if (i >= 16) {
1073 faddr += 8;
1074 }
1075 cpu_stl_data_ra(env, faddr, slo, ra);
1076 cpu_stl_data_ra(env, faddr + 4, shi, ra);
1077 }
1078 cpu_stl_data_ra(env, fptr + 0x40, vfp_get_fpscr(env), ra);
1079
1080
1081
1082
1083
1084 if (ts) {
1085 for (i = 0; i < 32; i += 2) {
1086 *aa32_vfp_dreg(env, i / 2) = 0;
1087 }
1088 vfp_set_fpscr(env, 0);
1089 }
1090 } else {
1091 v7m_update_fpccr(env, fptr, false);
1092 }
1093
1094 env->v7m.control[M_REG_S] &= ~R_V7M_CONTROL_FPCA_MASK;
1095}
1096
1097void HELPER(v7m_vlldm)(CPUARMState *env, uint32_t fptr)
1098{
1099 uintptr_t ra = GETPC();
1100
1101
1102 assert(env->v7m.secure);
1103
1104 if (!(env->v7m.control[M_REG_S] & R_V7M_CONTROL_SFPA_MASK)) {
1105 return;
1106 }
1107
1108
1109 if (!v7m_cpacr_pass(env, true, arm_current_el(env) != 0)) {
1110 raise_exception_ra(env, EXCP_NOCP, 0, 1, GETPC());
1111 }
1112
1113 if (env->v7m.fpccr[M_REG_S] & R_V7M_FPCCR_LSPACT_MASK) {
1114
1115 env->v7m.fpccr[M_REG_S] &= ~R_V7M_FPCCR_LSPACT_MASK;
1116 } else {
1117 bool ts = env->v7m.fpccr[M_REG_S] & R_V7M_FPCCR_TS_MASK;
1118 int i;
1119 uint32_t fpscr;
1120
1121 if (fptr & 7) {
1122 raise_exception_ra(env, EXCP_UNALIGNED, 0, 1, GETPC());
1123 }
1124
1125 for (i = 0; i < (ts ? 32 : 16); i += 2) {
1126 uint32_t slo, shi;
1127 uint64_t dn;
1128 uint32_t faddr = fptr + 4 * i;
1129
1130 if (i >= 16) {
1131 faddr += 8;
1132 }
1133
1134 slo = cpu_ldl_data_ra(env, faddr, ra);
1135 shi = cpu_ldl_data_ra(env, faddr + 4, ra);
1136
1137 dn = (uint64_t) shi << 32 | slo;
1138 *aa32_vfp_dreg(env, i / 2) = dn;
1139 }
1140 fpscr = cpu_ldl_data_ra(env, fptr + 0x40, ra);
1141 vfp_set_fpscr(env, fpscr);
1142 }
1143
1144 env->v7m.control[M_REG_S] |= R_V7M_CONTROL_FPCA_MASK;
1145}
1146
1147static bool v7m_push_stack(ARMCPU *cpu)
1148{
1149
1150
1151
1152
1153
1154
1155
1156 bool stacked_ok = true, limitviol = false;
1157 CPUARMState *env = &cpu->env;
1158 uint32_t xpsr = xpsr_read(env);
1159 uint32_t frameptr = env->regs[13];
1160 ARMMMUIdx mmu_idx = arm_mmu_idx(env);
1161 uint32_t framesize;
1162 bool nsacr_cp10 = extract32(env->v7m.nsacr, 10, 1);
1163
1164 if ((env->v7m.control[M_REG_S] & R_V7M_CONTROL_FPCA_MASK) &&
1165 (env->v7m.secure || nsacr_cp10)) {
1166 if (env->v7m.secure &&
1167 env->v7m.fpccr[M_REG_S] & R_V7M_FPCCR_TS_MASK) {
1168 framesize = 0xa8;
1169 } else {
1170 framesize = 0x68;
1171 }
1172 } else {
1173 framesize = 0x20;
1174 }
1175
1176
1177 if ((frameptr & 4) &&
1178 (env->v7m.ccr[env->v7m.secure] & R_V7M_CCR_STKALIGN_MASK)) {
1179 frameptr -= 4;
1180 xpsr |= XPSR_SPREALIGN;
1181 }
1182
1183 xpsr &= ~XPSR_SFPA;
1184 if (env->v7m.secure &&
1185 (env->v7m.control[M_REG_S] & R_V7M_CONTROL_SFPA_MASK)) {
1186 xpsr |= XPSR_SFPA;
1187 }
1188
1189 frameptr -= framesize;
1190
1191 if (arm_feature(env, ARM_FEATURE_V8)) {
1192 uint32_t limit = v7m_sp_limit(env);
1193
1194 if (frameptr < limit) {
1195
1196
1197
1198
1199
1200
1201 qemu_log_mask(CPU_LOG_INT,
1202 "...STKOF during stacking\n");
1203 env->v7m.cfsr[env->v7m.secure] |= R_V7M_CFSR_STKOF_MASK;
1204 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_USAGE,
1205 env->v7m.secure);
1206 env->regs[13] = limit;
1207
1208
1209
1210
1211
1212
1213 limitviol = true;
1214 stacked_ok = false;
1215 }
1216 }
1217
1218
1219
1220
1221
1222
1223
1224 stacked_ok = stacked_ok &&
1225 v7m_stack_write(cpu, frameptr, env->regs[0], mmu_idx, STACK_NORMAL) &&
1226 v7m_stack_write(cpu, frameptr + 4, env->regs[1],
1227 mmu_idx, STACK_NORMAL) &&
1228 v7m_stack_write(cpu, frameptr + 8, env->regs[2],
1229 mmu_idx, STACK_NORMAL) &&
1230 v7m_stack_write(cpu, frameptr + 12, env->regs[3],
1231 mmu_idx, STACK_NORMAL) &&
1232 v7m_stack_write(cpu, frameptr + 16, env->regs[12],
1233 mmu_idx, STACK_NORMAL) &&
1234 v7m_stack_write(cpu, frameptr + 20, env->regs[14],
1235 mmu_idx, STACK_NORMAL) &&
1236 v7m_stack_write(cpu, frameptr + 24, env->regs[15],
1237 mmu_idx, STACK_NORMAL) &&
1238 v7m_stack_write(cpu, frameptr + 28, xpsr, mmu_idx, STACK_NORMAL);
1239
1240 if (env->v7m.control[M_REG_S] & R_V7M_CONTROL_FPCA_MASK) {
1241
1242 bool fpccr_s = env->v7m.fpccr[M_REG_S] & R_V7M_FPCCR_S_MASK;
1243 bool lspact = env->v7m.fpccr[fpccr_s] & R_V7M_FPCCR_LSPACT_MASK;
1244
1245 if (lspact && arm_feature(env, ARM_FEATURE_M_SECURITY)) {
1246 qemu_log_mask(CPU_LOG_INT,
1247 "...SecureFault because LSPACT and FPCA both set\n");
1248 env->v7m.sfsr |= R_V7M_SFSR_LSERR_MASK;
1249 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_SECURE, false);
1250 } else if (!env->v7m.secure && !nsacr_cp10) {
1251 qemu_log_mask(CPU_LOG_INT,
1252 "...Secure UsageFault with CFSR.NOCP because "
1253 "NSACR.CP10 prevents stacking FP regs\n");
1254 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_USAGE, M_REG_S);
1255 env->v7m.cfsr[M_REG_S] |= R_V7M_CFSR_NOCP_MASK;
1256 } else {
1257 if (!(env->v7m.fpccr[M_REG_S] & R_V7M_FPCCR_LSPEN_MASK)) {
1258
1259 int i;
1260 bool cpacr_pass = v7m_cpacr_pass(env, env->v7m.secure,
1261 arm_current_el(env) != 0);
1262
1263 if (stacked_ok && !cpacr_pass) {
1264
1265
1266
1267
1268
1269 qemu_log_mask(CPU_LOG_INT,
1270 "...UsageFault with CFSR.NOCP because "
1271 "CPACR.CP10 prevents stacking FP regs\n");
1272 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_USAGE,
1273 env->v7m.secure);
1274 env->v7m.cfsr[env->v7m.secure] |= R_V7M_CFSR_NOCP_MASK;
1275 stacked_ok = false;
1276 }
1277
1278 for (i = 0; i < ((framesize == 0xa8) ? 32 : 16); i += 2) {
1279 uint64_t dn = *aa32_vfp_dreg(env, i / 2);
1280 uint32_t faddr = frameptr + 0x20 + 4 * i;
1281 uint32_t slo = extract64(dn, 0, 32);
1282 uint32_t shi = extract64(dn, 32, 32);
1283
1284 if (i >= 16) {
1285 faddr += 8;
1286 }
1287 stacked_ok = stacked_ok &&
1288 v7m_stack_write(cpu, faddr, slo,
1289 mmu_idx, STACK_NORMAL) &&
1290 v7m_stack_write(cpu, faddr + 4, shi,
1291 mmu_idx, STACK_NORMAL);
1292 }
1293 stacked_ok = stacked_ok &&
1294 v7m_stack_write(cpu, frameptr + 0x60,
1295 vfp_get_fpscr(env), mmu_idx, STACK_NORMAL);
1296 if (cpacr_pass) {
1297 for (i = 0; i < ((framesize == 0xa8) ? 32 : 16); i += 2) {
1298 *aa32_vfp_dreg(env, i / 2) = 0;
1299 }
1300 vfp_set_fpscr(env, 0);
1301 }
1302 } else {
1303
1304 v7m_update_fpccr(env, frameptr + 0x20, true);
1305 }
1306 }
1307 }
1308
1309
1310
1311
1312
1313
1314 if (!limitviol) {
1315 env->regs[13] = frameptr;
1316 }
1317
1318 return !stacked_ok;
1319}
1320
1321static void do_v7m_exception_exit(ARMCPU *cpu)
1322{
1323 CPUARMState *env = &cpu->env;
1324 uint32_t excret;
1325 uint32_t xpsr, xpsr_mask;
1326 bool ufault = false;
1327 bool sfault = false;
1328 bool return_to_sp_process;
1329 bool return_to_handler;
1330 bool rettobase = false;
1331 bool exc_secure = false;
1332 bool return_to_secure;
1333 bool ftype;
1334 bool restore_s16_s31;
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347 if (!arm_v7m_is_handler_mode(env)) {
1348 return;
1349 }
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359 excret = env->regs[15];
1360 if (env->thumb) {
1361 excret |= 1;
1362 }
1363
1364 qemu_log_mask(CPU_LOG_INT, "Exception return: magic PC %" PRIx32
1365 " previous exception %d\n",
1366 excret, env->v7m.exception);
1367
1368 if ((excret & R_V7M_EXCRET_RES1_MASK) != R_V7M_EXCRET_RES1_MASK) {
1369 qemu_log_mask(LOG_GUEST_ERROR, "M profile: zero high bits in exception "
1370 "exit PC value 0x%" PRIx32 " are UNPREDICTABLE\n",
1371 excret);
1372 }
1373
1374 ftype = excret & R_V7M_EXCRET_FTYPE_MASK;
1375
1376 if (!arm_feature(env, ARM_FEATURE_VFP) && !ftype) {
1377 qemu_log_mask(LOG_GUEST_ERROR, "M profile: zero FTYPE in exception "
1378 "exit PC value 0x%" PRIx32 " is UNPREDICTABLE "
1379 "if FPU not present\n",
1380 excret);
1381 ftype = true;
1382 }
1383
1384 if (arm_feature(env, ARM_FEATURE_M_SECURITY)) {
1385
1386
1387
1388
1389 if (!env->v7m.secure &&
1390 ((excret & R_V7M_EXCRET_ES_MASK) ||
1391 !(excret & R_V7M_EXCRET_DCRS_MASK))) {
1392 sfault = 1;
1393
1394 excret &= ~R_V7M_EXCRET_ES_MASK;
1395 }
1396 exc_secure = excret & R_V7M_EXCRET_ES_MASK;
1397 }
1398
1399 if (env->v7m.exception != ARMV7M_EXCP_NMI) {
1400
1401
1402
1403
1404
1405
1406
1407 if (arm_feature(env, ARM_FEATURE_M_SECURITY)) {
1408 if (armv7m_nvic_raw_execution_priority(env->nvic) >= 0) {
1409 env->v7m.faultmask[exc_secure] = 0;
1410 }
1411 } else {
1412 env->v7m.faultmask[M_REG_NS] = 0;
1413 }
1414 }
1415
1416 switch (armv7m_nvic_complete_irq(env->nvic, env->v7m.exception,
1417 exc_secure)) {
1418 case -1:
1419
1420 ufault = true;
1421 break;
1422 case 0:
1423
1424 break;
1425 case 1:
1426
1427
1428
1429
1430
1431 rettobase = true;
1432 break;
1433 default:
1434 g_assert_not_reached();
1435 }
1436
1437 return_to_handler = !(excret & R_V7M_EXCRET_MODE_MASK);
1438 return_to_sp_process = excret & R_V7M_EXCRET_SPSEL_MASK;
1439 return_to_secure = arm_feature(env, ARM_FEATURE_M_SECURITY) &&
1440 (excret & R_V7M_EXCRET_S_MASK);
1441
1442 if (arm_feature(env, ARM_FEATURE_V8)) {
1443 if (!arm_feature(env, ARM_FEATURE_M_SECURITY)) {
1444
1445
1446
1447
1448 if ((excret & R_V7M_EXCRET_S_MASK) ||
1449 (excret & R_V7M_EXCRET_ES_MASK) ||
1450 !(excret & R_V7M_EXCRET_DCRS_MASK)) {
1451 ufault = true;
1452 }
1453 }
1454 if (excret & R_V7M_EXCRET_RES0_MASK) {
1455 ufault = true;
1456 }
1457 } else {
1458
1459 switch (excret & 0xf) {
1460 case 1:
1461 break;
1462 case 13:
1463 case 9:
1464
1465
1466
1467
1468 if (!rettobase &&
1469 !(env->v7m.ccr[env->v7m.secure] &
1470 R_V7M_CCR_NONBASETHRDENA_MASK)) {
1471 ufault = true;
1472 }
1473 break;
1474 default:
1475 ufault = true;
1476 }
1477 }
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487 write_v7m_control_spsel_for_secstate(env, return_to_sp_process, exc_secure);
1488
1489
1490
1491
1492
1493 if ((env->v7m.fpccr[M_REG_S] & R_V7M_FPCCR_CLRONRET_MASK) &&
1494 (env->v7m.control[M_REG_S] & R_V7M_CONTROL_FPCA_MASK)) {
1495 if (env->v7m.fpccr[M_REG_S] & R_V7M_FPCCR_LSPACT_MASK) {
1496 env->v7m.sfsr |= R_V7M_SFSR_LSERR_MASK;
1497 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_SECURE, false);
1498 qemu_log_mask(CPU_LOG_INT, "...taking SecureFault on existing "
1499 "stackframe: error during lazy state deactivation\n");
1500 v7m_exception_taken(cpu, excret, true, false);
1501 return;
1502 } else {
1503
1504 int i;
1505
1506 for (i = 0; i < 16; i += 2) {
1507 *aa32_vfp_dreg(env, i / 2) = 0;
1508 }
1509 vfp_set_fpscr(env, 0);
1510 }
1511 }
1512
1513 if (sfault) {
1514 env->v7m.sfsr |= R_V7M_SFSR_INVER_MASK;
1515 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_SECURE, false);
1516 qemu_log_mask(CPU_LOG_INT, "...taking SecureFault on existing "
1517 "stackframe: failed EXC_RETURN.ES validity check\n");
1518 v7m_exception_taken(cpu, excret, true, false);
1519 return;
1520 }
1521
1522 if (ufault) {
1523
1524
1525
1526
1527 env->v7m.cfsr[env->v7m.secure] |= R_V7M_CFSR_INVPC_MASK;
1528 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_USAGE, env->v7m.secure);
1529 qemu_log_mask(CPU_LOG_INT, "...taking UsageFault on existing "
1530 "stackframe: failed exception return integrity check\n");
1531 v7m_exception_taken(cpu, excret, true, false);
1532 return;
1533 }
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545 if (armv7m_nvic_can_take_pending_exception(env->nvic)) {
1546 qemu_log_mask(CPU_LOG_INT, "...tailchaining to pending exception\n");
1547 v7m_exception_taken(cpu, excret, true, false);
1548 return;
1549 }
1550
1551 switch_v7m_security_state(env, return_to_secure);
1552
1553 {
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564 uint32_t *frame_sp_p = get_v7m_sp_ptr(env,
1565 return_to_secure,
1566 !return_to_handler,
1567 return_to_sp_process);
1568 uint32_t frameptr = *frame_sp_p;
1569 bool pop_ok = true;
1570 ARMMMUIdx mmu_idx;
1571 bool return_to_priv = return_to_handler ||
1572 !(env->v7m.control[return_to_secure] & R_V7M_CONTROL_NPRIV_MASK);
1573
1574 mmu_idx = arm_v7m_mmu_idx_for_secstate_and_priv(env, return_to_secure,
1575 return_to_priv);
1576
1577 if (!QEMU_IS_ALIGNED(frameptr, 8) &&
1578 arm_feature(env, ARM_FEATURE_V8)) {
1579 qemu_log_mask(LOG_GUEST_ERROR,
1580 "M profile exception return with non-8-aligned SP "
1581 "for destination state is UNPREDICTABLE\n");
1582 }
1583
1584
1585 if (return_to_secure &&
1586 ((excret & R_V7M_EXCRET_ES_MASK) == 0 ||
1587 (excret & R_V7M_EXCRET_DCRS_MASK) == 0)) {
1588 uint32_t actual_sig;
1589
1590 pop_ok = v7m_stack_read(cpu, &actual_sig, frameptr, mmu_idx);
1591
1592 if (pop_ok && v7m_integrity_sig(env, excret) != actual_sig) {
1593
1594 env->v7m.sfsr |= R_V7M_SFSR_INVIS_MASK;
1595 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_SECURE, false);
1596 qemu_log_mask(CPU_LOG_INT, "...taking SecureFault on existing "
1597 "stackframe: failed exception return integrity "
1598 "signature check\n");
1599 v7m_exception_taken(cpu, excret, true, false);
1600 return;
1601 }
1602
1603 pop_ok = pop_ok &&
1604 v7m_stack_read(cpu, &env->regs[4], frameptr + 0x8, mmu_idx) &&
1605 v7m_stack_read(cpu, &env->regs[5], frameptr + 0xc, mmu_idx) &&
1606 v7m_stack_read(cpu, &env->regs[6], frameptr + 0x10, mmu_idx) &&
1607 v7m_stack_read(cpu, &env->regs[7], frameptr + 0x14, mmu_idx) &&
1608 v7m_stack_read(cpu, &env->regs[8], frameptr + 0x18, mmu_idx) &&
1609 v7m_stack_read(cpu, &env->regs[9], frameptr + 0x1c, mmu_idx) &&
1610 v7m_stack_read(cpu, &env->regs[10], frameptr + 0x20, mmu_idx) &&
1611 v7m_stack_read(cpu, &env->regs[11], frameptr + 0x24, mmu_idx);
1612
1613 frameptr += 0x28;
1614 }
1615
1616
1617 pop_ok = pop_ok &&
1618 v7m_stack_read(cpu, &env->regs[0], frameptr, mmu_idx) &&
1619 v7m_stack_read(cpu, &env->regs[1], frameptr + 0x4, mmu_idx) &&
1620 v7m_stack_read(cpu, &env->regs[2], frameptr + 0x8, mmu_idx) &&
1621 v7m_stack_read(cpu, &env->regs[3], frameptr + 0xc, mmu_idx) &&
1622 v7m_stack_read(cpu, &env->regs[12], frameptr + 0x10, mmu_idx) &&
1623 v7m_stack_read(cpu, &env->regs[14], frameptr + 0x14, mmu_idx) &&
1624 v7m_stack_read(cpu, &env->regs[15], frameptr + 0x18, mmu_idx) &&
1625 v7m_stack_read(cpu, &xpsr, frameptr + 0x1c, mmu_idx);
1626
1627 if (!pop_ok) {
1628
1629
1630
1631
1632 qemu_log_mask(CPU_LOG_INT, "...derived exception on unstacking\n");
1633 v7m_exception_taken(cpu, excret, true, false);
1634 return;
1635 }
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646 if (env->regs[15] & 1) {
1647 env->regs[15] &= ~1U;
1648 if (!arm_feature(env, ARM_FEATURE_V8)) {
1649 qemu_log_mask(LOG_GUEST_ERROR,
1650 "M profile return from interrupt with misaligned "
1651 "PC is UNPREDICTABLE on v7M\n");
1652 }
1653 }
1654
1655 if (arm_feature(env, ARM_FEATURE_V8)) {
1656
1657
1658
1659
1660
1661 bool will_be_handler = (xpsr & XPSR_EXCP) != 0;
1662 if (return_to_handler != will_be_handler) {
1663
1664
1665
1666
1667
1668
1669 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_USAGE,
1670 env->v7m.secure);
1671 env->v7m.cfsr[env->v7m.secure] |= R_V7M_CFSR_INVPC_MASK;
1672 qemu_log_mask(CPU_LOG_INT, "...taking UsageFault on existing "
1673 "stackframe: failed exception return integrity "
1674 "check\n");
1675 v7m_exception_taken(cpu, excret, true, false);
1676 return;
1677 }
1678 }
1679
1680 if (!ftype) {
1681
1682 if (!return_to_secure &&
1683 (env->v7m.fpccr[M_REG_S] & R_V7M_FPCCR_LSPACT_MASK)) {
1684 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_SECURE, false);
1685 env->v7m.sfsr |= R_V7M_SFSR_LSERR_MASK;
1686 qemu_log_mask(CPU_LOG_INT,
1687 "...taking SecureFault on existing stackframe: "
1688 "Secure LSPACT set but exception return is "
1689 "not to secure state\n");
1690 v7m_exception_taken(cpu, excret, true, false);
1691 return;
1692 }
1693
1694 restore_s16_s31 = return_to_secure &&
1695 (env->v7m.fpccr[M_REG_S] & R_V7M_FPCCR_TS_MASK);
1696
1697 if (env->v7m.fpccr[return_to_secure] & R_V7M_FPCCR_LSPACT_MASK) {
1698
1699 env->v7m.fpccr[return_to_secure] &= ~R_V7M_FPCCR_LSPACT_MASK;
1700 } else {
1701 int i;
1702 uint32_t fpscr;
1703 bool cpacr_pass, nsacr_pass;
1704
1705 cpacr_pass = v7m_cpacr_pass(env, return_to_secure,
1706 return_to_priv);
1707 nsacr_pass = return_to_secure ||
1708 extract32(env->v7m.nsacr, 10, 1);
1709
1710 if (!cpacr_pass) {
1711 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_USAGE,
1712 return_to_secure);
1713 env->v7m.cfsr[return_to_secure] |= R_V7M_CFSR_NOCP_MASK;
1714 qemu_log_mask(CPU_LOG_INT,
1715 "...taking UsageFault on existing "
1716 "stackframe: CPACR.CP10 prevents unstacking "
1717 "FP regs\n");
1718 v7m_exception_taken(cpu, excret, true, false);
1719 return;
1720 } else if (!nsacr_pass) {
1721 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_USAGE, true);
1722 env->v7m.cfsr[M_REG_S] |= R_V7M_CFSR_INVPC_MASK;
1723 qemu_log_mask(CPU_LOG_INT,
1724 "...taking Secure UsageFault on existing "
1725 "stackframe: NSACR.CP10 prevents unstacking "
1726 "FP regs\n");
1727 v7m_exception_taken(cpu, excret, true, false);
1728 return;
1729 }
1730
1731 for (i = 0; i < (restore_s16_s31 ? 32 : 16); i += 2) {
1732 uint32_t slo, shi;
1733 uint64_t dn;
1734 uint32_t faddr = frameptr + 0x20 + 4 * i;
1735
1736 if (i >= 16) {
1737 faddr += 8;
1738 }
1739
1740 pop_ok = pop_ok &&
1741 v7m_stack_read(cpu, &slo, faddr, mmu_idx) &&
1742 v7m_stack_read(cpu, &shi, faddr + 4, mmu_idx);
1743
1744 if (!pop_ok) {
1745 break;
1746 }
1747
1748 dn = (uint64_t)shi << 32 | slo;
1749 *aa32_vfp_dreg(env, i / 2) = dn;
1750 }
1751 pop_ok = pop_ok &&
1752 v7m_stack_read(cpu, &fpscr, frameptr + 0x60, mmu_idx);
1753 if (pop_ok) {
1754 vfp_set_fpscr(env, fpscr);
1755 }
1756 if (!pop_ok) {
1757
1758
1759
1760
1761 for (i = 0; i < (restore_s16_s31 ? 32 : 16); i += 2) {
1762 *aa32_vfp_dreg(env, i / 2) = 0;
1763 }
1764 vfp_set_fpscr(env, 0);
1765 }
1766 }
1767 }
1768 env->v7m.control[M_REG_S] = FIELD_DP32(env->v7m.control[M_REG_S],
1769 V7M_CONTROL, FPCA, !ftype);
1770
1771
1772 frameptr += 0x20;
1773 if (!ftype) {
1774 frameptr += 0x48;
1775 if (restore_s16_s31) {
1776 frameptr += 0x40;
1777 }
1778 }
1779
1780
1781
1782
1783
1784
1785
1786 if (xpsr & XPSR_SPREALIGN) {
1787 frameptr |= 4;
1788 }
1789 *frame_sp_p = frameptr;
1790 }
1791
1792 xpsr_mask = ~(XPSR_SPREALIGN | XPSR_SFPA);
1793 if (!arm_feature(env, ARM_FEATURE_THUMB_DSP)) {
1794 xpsr_mask &= ~XPSR_GE;
1795 }
1796
1797 xpsr_write(env, xpsr, xpsr_mask);
1798
1799 if (env->v7m.secure) {
1800 bool sfpa = xpsr & XPSR_SFPA;
1801
1802 env->v7m.control[M_REG_S] = FIELD_DP32(env->v7m.control[M_REG_S],
1803 V7M_CONTROL, SFPA, sfpa);
1804 }
1805
1806
1807
1808
1809
1810
1811
1812 if (return_to_handler != arm_v7m_is_handler_mode(env)) {
1813
1814
1815
1816
1817 bool ignore_stackfaults;
1818
1819 assert(!arm_feature(env, ARM_FEATURE_V8));
1820 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_USAGE, false);
1821 env->v7m.cfsr[env->v7m.secure] |= R_V7M_CFSR_INVPC_MASK;
1822 ignore_stackfaults = v7m_push_stack(cpu);
1823 qemu_log_mask(CPU_LOG_INT, "...taking UsageFault on new stackframe: "
1824 "failed exception return integrity check\n");
1825 v7m_exception_taken(cpu, excret, false, ignore_stackfaults);
1826 return;
1827 }
1828
1829
1830 arm_clear_exclusive(env);
1831 arm_rebuild_hflags(env);
1832 qemu_log_mask(CPU_LOG_INT, "...successful exception return\n");
1833}
1834
1835static bool do_v7m_function_return(ARMCPU *cpu)
1836{
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849 CPUARMState *env = &cpu->env;
1850 uint32_t newpc, newpsr, newpsr_exc;
1851
1852 qemu_log_mask(CPU_LOG_INT, "...really v7M secure function return\n");
1853
1854 {
1855 bool threadmode, spsel;
1856 TCGMemOpIdx oi;
1857 ARMMMUIdx mmu_idx;
1858 uint32_t *frame_sp_p;
1859 uint32_t frameptr;
1860
1861
1862 threadmode = !arm_v7m_is_handler_mode(env);
1863 spsel = env->v7m.control[M_REG_S] & R_V7M_CONTROL_SPSEL_MASK;
1864
1865 frame_sp_p = get_v7m_sp_ptr(env, true, threadmode, spsel);
1866 frameptr = *frame_sp_p;
1867
1868
1869
1870
1871
1872 mmu_idx = arm_v7m_mmu_idx_for_secstate(env, true);
1873 oi = make_memop_idx(MO_LE, arm_to_core_mmu_idx(mmu_idx));
1874 newpc = helper_le_ldul_mmu(env, frameptr, oi, 0);
1875 newpsr = helper_le_ldul_mmu(env, frameptr + 4, oi, 0);
1876
1877
1878 newpsr_exc = newpsr & XPSR_EXCP;
1879 if (!((env->v7m.exception == 0 && newpsr_exc == 0) ||
1880 (env->v7m.exception == 1 && newpsr_exc != 0))) {
1881
1882 env->v7m.cfsr[env->v7m.secure] |= R_V7M_CFSR_INVPC_MASK;
1883 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_USAGE,
1884 env->v7m.secure);
1885 qemu_log_mask(CPU_LOG_INT,
1886 "...taking INVPC UsageFault: "
1887 "IPSR consistency check failed\n");
1888 return false;
1889 }
1890
1891 *frame_sp_p = frameptr + 8;
1892 }
1893
1894
1895 switch_v7m_security_state(env, true);
1896 env->v7m.exception = newpsr_exc;
1897 env->v7m.control[M_REG_S] &= ~R_V7M_CONTROL_SFPA_MASK;
1898 if (newpsr & XPSR_SFPA) {
1899 env->v7m.control[M_REG_S] |= R_V7M_CONTROL_SFPA_MASK;
1900 }
1901 xpsr_write(env, 0, XPSR_IT);
1902 env->thumb = newpc & 1;
1903 env->regs[15] = newpc & ~1;
1904 arm_rebuild_hflags(env);
1905
1906 qemu_log_mask(CPU_LOG_INT, "...function return successful\n");
1907 return true;
1908}
1909
1910static bool v7m_read_half_insn(ARMCPU *cpu, ARMMMUIdx mmu_idx,
1911 uint32_t addr, uint16_t *insn)
1912{
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925 CPUState *cs = CPU(cpu);
1926 CPUARMState *env = &cpu->env;
1927 V8M_SAttributes sattrs = {};
1928 MemTxAttrs attrs = {};
1929 ARMMMUFaultInfo fi = {};
1930 MemTxResult txres;
1931 target_ulong page_size;
1932 hwaddr physaddr;
1933 int prot;
1934
1935 v8m_security_lookup(env, addr, MMU_INST_FETCH, mmu_idx, &sattrs);
1936 if (!sattrs.nsc || sattrs.ns) {
1937
1938
1939
1940
1941 env->v7m.sfsr |= R_V7M_SFSR_INVEP_MASK;
1942 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_SECURE, false);
1943 qemu_log_mask(CPU_LOG_INT,
1944 "...really SecureFault with SFSR.INVEP\n");
1945 return false;
1946 }
1947 if (get_phys_addr(env, addr, MMU_INST_FETCH, mmu_idx,
1948 &physaddr, &attrs, &prot, &page_size, &fi, NULL)) {
1949
1950 env->v7m.cfsr[env->v7m.secure] |= R_V7M_CFSR_IACCVIOL_MASK;
1951 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_MEM, env->v7m.secure);
1952 qemu_log_mask(CPU_LOG_INT, "...really MemManage with CFSR.IACCVIOL\n");
1953 return false;
1954 }
1955 *insn = address_space_lduw_le(arm_addressspace(cs, attrs), physaddr,
1956 attrs, &txres);
1957 if (txres != MEMTX_OK) {
1958 env->v7m.cfsr[M_REG_NS] |= R_V7M_CFSR_IBUSERR_MASK;
1959 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_BUS, false);
1960 qemu_log_mask(CPU_LOG_INT, "...really BusFault with CFSR.IBUSERR\n");
1961 return false;
1962 }
1963 return true;
1964}
1965
1966static bool v7m_handle_execute_nsc(ARMCPU *cpu)
1967{
1968
1969
1970
1971
1972
1973
1974 CPUARMState *env = &cpu->env;
1975 ARMMMUIdx mmu_idx;
1976 uint16_t insn;
1977
1978
1979
1980
1981
1982 assert(!env->v7m.secure);
1983 assert(arm_feature(env, ARM_FEATURE_M_SECURITY));
1984
1985
1986 mmu_idx = arm_v7m_mmu_idx_for_secstate(env, true);
1987
1988 if (!v7m_read_half_insn(cpu, mmu_idx, env->regs[15], &insn)) {
1989 return false;
1990 }
1991
1992 if (!env->thumb) {
1993 goto gen_invep;
1994 }
1995
1996 if (insn != 0xe97f) {
1997
1998
1999
2000
2001 goto gen_invep;
2002 }
2003
2004 if (!v7m_read_half_insn(cpu, mmu_idx, env->regs[15] + 2, &insn)) {
2005 return false;
2006 }
2007
2008 if (insn != 0xe97f) {
2009
2010
2011
2012
2013 goto gen_invep;
2014 }
2015
2016
2017
2018
2019
2020 qemu_log_mask(CPU_LOG_INT, "...really an SG instruction at 0x%08" PRIx32
2021 ", executing it\n", env->regs[15]);
2022 env->regs[14] &= ~1;
2023 env->v7m.control[M_REG_S] &= ~R_V7M_CONTROL_SFPA_MASK;
2024 switch_v7m_security_state(env, true);
2025 xpsr_write(env, 0, XPSR_IT);
2026 env->regs[15] += 4;
2027 arm_rebuild_hflags(env);
2028 return true;
2029
2030gen_invep:
2031 env->v7m.sfsr |= R_V7M_SFSR_INVEP_MASK;
2032 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_SECURE, false);
2033 qemu_log_mask(CPU_LOG_INT,
2034 "...really SecureFault with SFSR.INVEP\n");
2035 return false;
2036}
2037
2038void arm_v7m_cpu_do_interrupt(CPUState *cs)
2039{
2040 ARMCPU *cpu = ARM_CPU(cs);
2041 CPUARMState *env = &cpu->env;
2042 uint32_t lr;
2043 bool ignore_stackfaults;
2044
2045 arm_log_exception(cs->exception_index);
2046
2047
2048
2049
2050
2051 switch (cs->exception_index) {
2052 case EXCP_UDEF:
2053 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_USAGE, env->v7m.secure);
2054 env->v7m.cfsr[env->v7m.secure] |= R_V7M_CFSR_UNDEFINSTR_MASK;
2055 break;
2056 case EXCP_NOCP:
2057 {
2058
2059
2060
2061
2062
2063 int target_secstate;
2064
2065 if (env->exception.target_el == 3) {
2066 target_secstate = M_REG_S;
2067 } else {
2068 target_secstate = env->v7m.secure;
2069 }
2070 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_USAGE, target_secstate);
2071 env->v7m.cfsr[target_secstate] |= R_V7M_CFSR_NOCP_MASK;
2072 break;
2073 }
2074 case EXCP_INVSTATE:
2075 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_USAGE, env->v7m.secure);
2076 env->v7m.cfsr[env->v7m.secure] |= R_V7M_CFSR_INVSTATE_MASK;
2077 break;
2078 case EXCP_STKOF:
2079 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_USAGE, env->v7m.secure);
2080 env->v7m.cfsr[env->v7m.secure] |= R_V7M_CFSR_STKOF_MASK;
2081 break;
2082 case EXCP_LSERR:
2083 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_SECURE, false);
2084 env->v7m.sfsr |= R_V7M_SFSR_LSERR_MASK;
2085 break;
2086 case EXCP_UNALIGNED:
2087 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_USAGE, env->v7m.secure);
2088 env->v7m.cfsr[env->v7m.secure] |= R_V7M_CFSR_UNALIGNED_MASK;
2089 break;
2090 case EXCP_SWI:
2091
2092 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_SVC, env->v7m.secure);
2093 break;
2094 case EXCP_PREFETCH_ABORT:
2095 case EXCP_DATA_ABORT:
2096
2097
2098
2099
2100
2101 switch (env->exception.fsr & 0xf) {
2102 case M_FAKE_FSR_NSC_EXEC:
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112 if (v7m_handle_execute_nsc(cpu)) {
2113 return;
2114 }
2115 break;
2116 case M_FAKE_FSR_SFAULT:
2117
2118
2119
2120
2121 switch (cs->exception_index) {
2122 case EXCP_PREFETCH_ABORT:
2123 if (env->v7m.secure) {
2124 env->v7m.sfsr |= R_V7M_SFSR_INVTRAN_MASK;
2125 qemu_log_mask(CPU_LOG_INT,
2126 "...really SecureFault with SFSR.INVTRAN\n");
2127 } else {
2128 env->v7m.sfsr |= R_V7M_SFSR_INVEP_MASK;
2129 qemu_log_mask(CPU_LOG_INT,
2130 "...really SecureFault with SFSR.INVEP\n");
2131 }
2132 break;
2133 case EXCP_DATA_ABORT:
2134
2135 env->v7m.sfsr |= R_V7M_SFSR_AUVIOL_MASK;
2136 qemu_log_mask(CPU_LOG_INT,
2137 "...really SecureFault with SFSR.AUVIOL\n");
2138 break;
2139 }
2140 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_SECURE, false);
2141 break;
2142 case 0x8:
2143 switch (cs->exception_index) {
2144 case EXCP_PREFETCH_ABORT:
2145 env->v7m.cfsr[M_REG_NS] |= R_V7M_CFSR_IBUSERR_MASK;
2146 qemu_log_mask(CPU_LOG_INT, "...with CFSR.IBUSERR\n");
2147 break;
2148 case EXCP_DATA_ABORT:
2149 env->v7m.cfsr[M_REG_NS] |=
2150 (R_V7M_CFSR_PRECISERR_MASK | R_V7M_CFSR_BFARVALID_MASK);
2151 env->v7m.bfar = env->exception.vaddress;
2152 qemu_log_mask(CPU_LOG_INT,
2153 "...with CFSR.PRECISERR and BFAR 0x%x\n",
2154 env->v7m.bfar);
2155 break;
2156 }
2157 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_BUS, false);
2158 break;
2159 default:
2160
2161
2162
2163
2164 switch (cs->exception_index) {
2165 case EXCP_PREFETCH_ABORT:
2166 env->v7m.cfsr[env->v7m.secure] |= R_V7M_CFSR_IACCVIOL_MASK;
2167 qemu_log_mask(CPU_LOG_INT, "...with CFSR.IACCVIOL\n");
2168 break;
2169 case EXCP_DATA_ABORT:
2170 env->v7m.cfsr[env->v7m.secure] |=
2171 (R_V7M_CFSR_DACCVIOL_MASK | R_V7M_CFSR_MMARVALID_MASK);
2172 env->v7m.mmfar[env->v7m.secure] = env->exception.vaddress;
2173 qemu_log_mask(CPU_LOG_INT,
2174 "...with CFSR.DACCVIOL and MMFAR 0x%x\n",
2175 env->v7m.mmfar[env->v7m.secure]);
2176 break;
2177 }
2178 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_MEM,
2179 env->v7m.secure);
2180 break;
2181 }
2182 break;
2183 case EXCP_SEMIHOST:
2184 qemu_log_mask(CPU_LOG_INT,
2185 "...handling as semihosting call 0x%x\n",
2186 env->regs[0]);
2187 env->regs[0] = do_arm_semihosting(env);
2188 return;
2189 case EXCP_BKPT:
2190 armv7m_nvic_set_pending(env->nvic, ARMV7M_EXCP_DEBUG, false);
2191 break;
2192 case EXCP_IRQ:
2193 break;
2194 case EXCP_EXCEPTION_EXIT:
2195 if (env->regs[15] < EXC_RETURN_MIN_MAGIC) {
2196
2197 assert(env->regs[15] >= FNC_RETURN_MIN_MAGIC);
2198 assert(arm_feature(env, ARM_FEATURE_M_SECURITY));
2199 if (do_v7m_function_return(cpu)) {
2200 return;
2201 }
2202 } else {
2203 do_v7m_exception_exit(cpu);
2204 return;
2205 }
2206 break;
2207 case EXCP_LAZYFP:
2208
2209
2210
2211
2212 break;
2213 default:
2214 cpu_abort(cs, "Unhandled exception 0x%x\n", cs->exception_index);
2215 return;
2216 }
2217
2218 if (arm_feature(env, ARM_FEATURE_V8)) {
2219 lr = R_V7M_EXCRET_RES1_MASK |
2220 R_V7M_EXCRET_DCRS_MASK;
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233 if (env->v7m.secure) {
2234 lr |= R_V7M_EXCRET_S_MASK;
2235 }
2236 } else {
2237 lr = R_V7M_EXCRET_RES1_MASK |
2238 R_V7M_EXCRET_S_MASK |
2239 R_V7M_EXCRET_DCRS_MASK |
2240 R_V7M_EXCRET_ES_MASK;
2241 if (env->v7m.control[M_REG_NS] & R_V7M_CONTROL_SPSEL_MASK) {
2242 lr |= R_V7M_EXCRET_SPSEL_MASK;
2243 }
2244 }
2245 if (!(env->v7m.control[M_REG_S] & R_V7M_CONTROL_FPCA_MASK)) {
2246 lr |= R_V7M_EXCRET_FTYPE_MASK;
2247 }
2248 if (!arm_v7m_is_handler_mode(env)) {
2249 lr |= R_V7M_EXCRET_MODE_MASK;
2250 }
2251
2252 ignore_stackfaults = v7m_push_stack(cpu);
2253 v7m_exception_taken(cpu, lr, false, ignore_stackfaults);
2254}
2255
2256uint32_t HELPER(v7m_mrs)(CPUARMState *env, uint32_t reg)
2257{
2258 unsigned el = arm_current_el(env);
2259
2260
2261 switch (reg) {
2262 case 0 ... 7:
2263 return v7m_mrs_xpsr(env, reg, el);
2264 case 20:
2265 return v7m_mrs_control(env, env->v7m.secure);
2266 case 0x94:
2267
2268
2269
2270
2271 if (!env->v7m.secure) {
2272 return 0;
2273 }
2274 return env->v7m.control[M_REG_NS] |
2275 (env->v7m.control[M_REG_S] & R_V7M_CONTROL_FPCA_MASK);
2276 }
2277
2278 if (el == 0) {
2279 return 0;
2280 }
2281
2282 if (arm_feature(env, ARM_FEATURE_M_SECURITY)) {
2283 switch (reg) {
2284 case 0x88:
2285 if (!env->v7m.secure) {
2286 return 0;
2287 }
2288 return env->v7m.other_ss_msp;
2289 case 0x89:
2290 if (!env->v7m.secure) {
2291 return 0;
2292 }
2293 return env->v7m.other_ss_psp;
2294 case 0x8a:
2295 if (!env->v7m.secure) {
2296 return 0;
2297 }
2298 return env->v7m.msplim[M_REG_NS];
2299 case 0x8b:
2300 if (!env->v7m.secure) {
2301 return 0;
2302 }
2303 return env->v7m.psplim[M_REG_NS];
2304 case 0x90:
2305 if (!env->v7m.secure) {
2306 return 0;
2307 }
2308 return env->v7m.primask[M_REG_NS];
2309 case 0x91:
2310 if (!env->v7m.secure) {
2311 return 0;
2312 }
2313 return env->v7m.basepri[M_REG_NS];
2314 case 0x93:
2315 if (!env->v7m.secure) {
2316 return 0;
2317 }
2318 return env->v7m.faultmask[M_REG_NS];
2319 case 0x98:
2320 {
2321
2322
2323
2324
2325 bool spsel = env->v7m.control[M_REG_NS] & R_V7M_CONTROL_SPSEL_MASK;
2326
2327 if (!env->v7m.secure) {
2328 return 0;
2329 }
2330 if (!arm_v7m_is_handler_mode(env) && spsel) {
2331 return env->v7m.other_ss_psp;
2332 } else {
2333 return env->v7m.other_ss_msp;
2334 }
2335 }
2336 default:
2337 break;
2338 }
2339 }
2340
2341 switch (reg) {
2342 case 8:
2343 return v7m_using_psp(env) ? env->v7m.other_sp : env->regs[13];
2344 case 9:
2345 return v7m_using_psp(env) ? env->regs[13] : env->v7m.other_sp;
2346 case 10:
2347 if (!arm_feature(env, ARM_FEATURE_V8)) {
2348 goto bad_reg;
2349 }
2350 return env->v7m.msplim[env->v7m.secure];
2351 case 11:
2352 if (!arm_feature(env, ARM_FEATURE_V8)) {
2353 goto bad_reg;
2354 }
2355 return env->v7m.psplim[env->v7m.secure];
2356 case 16:
2357 return env->v7m.primask[env->v7m.secure];
2358 case 17:
2359 case 18:
2360 return env->v7m.basepri[env->v7m.secure];
2361 case 19:
2362 return env->v7m.faultmask[env->v7m.secure];
2363 default:
2364 bad_reg:
2365 qemu_log_mask(LOG_GUEST_ERROR, "Attempt to read unknown special"
2366 " register %d\n", reg);
2367 return 0;
2368 }
2369}
2370
2371void HELPER(v7m_msr)(CPUARMState *env, uint32_t maskreg, uint32_t val)
2372{
2373
2374
2375
2376
2377
2378
2379
2380
2381 uint32_t mask = extract32(maskreg, 8, 4);
2382 uint32_t reg = extract32(maskreg, 0, 8);
2383 int cur_el = arm_current_el(env);
2384
2385 if (cur_el == 0 && reg > 7 && reg != 20) {
2386
2387
2388
2389
2390 return;
2391 }
2392
2393 if (arm_feature(env, ARM_FEATURE_M_SECURITY)) {
2394 switch (reg) {
2395 case 0x88:
2396 if (!env->v7m.secure) {
2397 return;
2398 }
2399 env->v7m.other_ss_msp = val;
2400 return;
2401 case 0x89:
2402 if (!env->v7m.secure) {
2403 return;
2404 }
2405 env->v7m.other_ss_psp = val;
2406 return;
2407 case 0x8a:
2408 if (!env->v7m.secure) {
2409 return;
2410 }
2411 env->v7m.msplim[M_REG_NS] = val & ~7;
2412 return;
2413 case 0x8b:
2414 if (!env->v7m.secure) {
2415 return;
2416 }
2417 env->v7m.psplim[M_REG_NS] = val & ~7;
2418 return;
2419 case 0x90:
2420 if (!env->v7m.secure) {
2421 return;
2422 }
2423 env->v7m.primask[M_REG_NS] = val & 1;
2424 return;
2425 case 0x91:
2426 if (!env->v7m.secure || !arm_feature(env, ARM_FEATURE_M_MAIN)) {
2427 return;
2428 }
2429 env->v7m.basepri[M_REG_NS] = val & 0xff;
2430 return;
2431 case 0x93:
2432 if (!env->v7m.secure || !arm_feature(env, ARM_FEATURE_M_MAIN)) {
2433 return;
2434 }
2435 env->v7m.faultmask[M_REG_NS] = val & 1;
2436 return;
2437 case 0x94:
2438 if (!env->v7m.secure) {
2439 return;
2440 }
2441 write_v7m_control_spsel_for_secstate(env,
2442 val & R_V7M_CONTROL_SPSEL_MASK,
2443 M_REG_NS);
2444 if (arm_feature(env, ARM_FEATURE_M_MAIN)) {
2445 env->v7m.control[M_REG_NS] &= ~R_V7M_CONTROL_NPRIV_MASK;
2446 env->v7m.control[M_REG_NS] |= val & R_V7M_CONTROL_NPRIV_MASK;
2447 }
2448
2449
2450
2451
2452 if (arm_feature(env, ARM_FEATURE_VFP) &&
2453 extract32(env->v7m.nsacr, 10, 1)) {
2454 env->v7m.control[M_REG_S] &= ~R_V7M_CONTROL_FPCA_MASK;
2455 env->v7m.control[M_REG_S] |= val & R_V7M_CONTROL_FPCA_MASK;
2456 }
2457 return;
2458 case 0x98:
2459 {
2460
2461
2462
2463
2464 bool spsel = env->v7m.control[M_REG_NS] & R_V7M_CONTROL_SPSEL_MASK;
2465 bool is_psp = !arm_v7m_is_handler_mode(env) && spsel;
2466 uint32_t limit;
2467
2468 if (!env->v7m.secure) {
2469 return;
2470 }
2471
2472 limit = is_psp ? env->v7m.psplim[false] : env->v7m.msplim[false];
2473
2474 if (val < limit) {
2475 CPUState *cs = env_cpu(env);
2476
2477 cpu_restore_state(cs, GETPC(), true);
2478 raise_exception(env, EXCP_STKOF, 0, 1);
2479 }
2480
2481 if (is_psp) {
2482 env->v7m.other_ss_psp = val;
2483 } else {
2484 env->v7m.other_ss_msp = val;
2485 }
2486 return;
2487 }
2488 default:
2489 break;
2490 }
2491 }
2492
2493 switch (reg) {
2494 case 0 ... 7:
2495 v7m_msr_xpsr(env, mask, reg, val);
2496 break;
2497 case 8:
2498 if (v7m_using_psp(env)) {
2499 env->v7m.other_sp = val;
2500 } else {
2501 env->regs[13] = val;
2502 }
2503 break;
2504 case 9:
2505 if (v7m_using_psp(env)) {
2506 env->regs[13] = val;
2507 } else {
2508 env->v7m.other_sp = val;
2509 }
2510 break;
2511 case 10:
2512 if (!arm_feature(env, ARM_FEATURE_V8)) {
2513 goto bad_reg;
2514 }
2515 env->v7m.msplim[env->v7m.secure] = val & ~7;
2516 break;
2517 case 11:
2518 if (!arm_feature(env, ARM_FEATURE_V8)) {
2519 goto bad_reg;
2520 }
2521 env->v7m.psplim[env->v7m.secure] = val & ~7;
2522 break;
2523 case 16:
2524 env->v7m.primask[env->v7m.secure] = val & 1;
2525 break;
2526 case 17:
2527 if (!arm_feature(env, ARM_FEATURE_M_MAIN)) {
2528 goto bad_reg;
2529 }
2530 env->v7m.basepri[env->v7m.secure] = val & 0xff;
2531 break;
2532 case 18:
2533 if (!arm_feature(env, ARM_FEATURE_M_MAIN)) {
2534 goto bad_reg;
2535 }
2536 val &= 0xff;
2537 if (val != 0 && (val < env->v7m.basepri[env->v7m.secure]
2538 || env->v7m.basepri[env->v7m.secure] == 0)) {
2539 env->v7m.basepri[env->v7m.secure] = val;
2540 }
2541 break;
2542 case 19:
2543 if (!arm_feature(env, ARM_FEATURE_M_MAIN)) {
2544 goto bad_reg;
2545 }
2546 env->v7m.faultmask[env->v7m.secure] = val & 1;
2547 break;
2548 case 20:
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559 if (cur_el > 0 && (arm_feature(env, ARM_FEATURE_V8) ||
2560 !arm_v7m_is_handler_mode(env))) {
2561 write_v7m_control_spsel(env, (val & R_V7M_CONTROL_SPSEL_MASK) != 0);
2562 }
2563 if (cur_el > 0 && arm_feature(env, ARM_FEATURE_M_MAIN)) {
2564 env->v7m.control[env->v7m.secure] &= ~R_V7M_CONTROL_NPRIV_MASK;
2565 env->v7m.control[env->v7m.secure] |= val & R_V7M_CONTROL_NPRIV_MASK;
2566 }
2567 if (arm_feature(env, ARM_FEATURE_VFP)) {
2568
2569
2570
2571
2572
2573 if (env->v7m.secure) {
2574 env->v7m.control[M_REG_S] &= ~R_V7M_CONTROL_SFPA_MASK;
2575 env->v7m.control[M_REG_S] |= val & R_V7M_CONTROL_SFPA_MASK;
2576 }
2577 if (cur_el > 0 &&
2578 (env->v7m.secure || !arm_feature(env, ARM_FEATURE_M_SECURITY) ||
2579 extract32(env->v7m.nsacr, 10, 1))) {
2580 env->v7m.control[M_REG_S] &= ~R_V7M_CONTROL_FPCA_MASK;
2581 env->v7m.control[M_REG_S] |= val & R_V7M_CONTROL_FPCA_MASK;
2582 }
2583 }
2584 break;
2585 default:
2586 bad_reg:
2587 qemu_log_mask(LOG_GUEST_ERROR, "Attempt to write unknown special"
2588 " register %d\n", reg);
2589 return;
2590 }
2591}
2592
2593uint32_t HELPER(v7m_tt)(CPUARMState *env, uint32_t addr, uint32_t op)
2594{
2595
2596 bool forceunpriv = op & 1;
2597 bool alt = op & 2;
2598 V8M_SAttributes sattrs = {};
2599 uint32_t tt_resp;
2600 bool r, rw, nsr, nsrw, mrvalid;
2601 int prot;
2602 ARMMMUFaultInfo fi = {};
2603 MemTxAttrs attrs = {};
2604 hwaddr phys_addr;
2605 ARMMMUIdx mmu_idx;
2606 uint32_t mregion;
2607 bool targetpriv;
2608 bool targetsec = env->v7m.secure;
2609 bool is_subpage;
2610
2611
2612
2613
2614
2615 if (alt) {
2616 targetsec = !targetsec;
2617 }
2618
2619 if (forceunpriv) {
2620 targetpriv = false;
2621 } else {
2622 targetpriv = arm_v7m_is_handler_mode(env) ||
2623 !(env->v7m.control[targetsec] & R_V7M_CONTROL_NPRIV_MASK);
2624 }
2625
2626
2627 mmu_idx = arm_v7m_mmu_idx_for_secstate_and_priv(env, targetsec, targetpriv);
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639 if (arm_current_el(env) != 0 || alt) {
2640
2641 pmsav8_mpu_lookup(env, addr, MMU_DATA_LOAD, mmu_idx,
2642 &phys_addr, &attrs, &prot, &is_subpage,
2643 &fi, &mregion);
2644 if (mregion == -1) {
2645 mrvalid = false;
2646 mregion = 0;
2647 } else {
2648 mrvalid = true;
2649 }
2650 r = prot & PAGE_READ;
2651 rw = prot & PAGE_WRITE;
2652 } else {
2653 r = false;
2654 rw = false;
2655 mrvalid = false;
2656 mregion = 0;
2657 }
2658
2659 if (env->v7m.secure) {
2660 v8m_security_lookup(env, addr, MMU_DATA_LOAD, mmu_idx, &sattrs);
2661 nsr = sattrs.ns && r;
2662 nsrw = sattrs.ns && rw;
2663 } else {
2664 sattrs.ns = true;
2665 nsr = false;
2666 nsrw = false;
2667 }
2668
2669 tt_resp = (sattrs.iregion << 24) |
2670 (sattrs.irvalid << 23) |
2671 ((!sattrs.ns) << 22) |
2672 (nsrw << 21) |
2673 (nsr << 20) |
2674 (rw << 19) |
2675 (r << 18) |
2676 (sattrs.srvalid << 17) |
2677 (mrvalid << 16) |
2678 (sattrs.sregion << 8) |
2679 mregion;
2680
2681 return tt_resp;
2682}
2683
2684#endif
2685
2686ARMMMUIdx arm_v7m_mmu_idx_all(CPUARMState *env,
2687 bool secstate, bool priv, bool negpri)
2688{
2689 ARMMMUIdx mmu_idx = ARM_MMU_IDX_M;
2690
2691 if (priv) {
2692 mmu_idx |= ARM_MMU_IDX_M_PRIV;
2693 }
2694
2695 if (negpri) {
2696 mmu_idx |= ARM_MMU_IDX_M_NEGPRI;
2697 }
2698
2699 if (secstate) {
2700 mmu_idx |= ARM_MMU_IDX_M_S;
2701 }
2702
2703 return mmu_idx;
2704}
2705
2706ARMMMUIdx arm_v7m_mmu_idx_for_secstate_and_priv(CPUARMState *env,
2707 bool secstate, bool priv)
2708{
2709 bool negpri = armv7m_nvic_neg_prio_requested(env->nvic, secstate);
2710
2711 return arm_v7m_mmu_idx_all(env, secstate, priv, negpri);
2712}
2713
2714
2715ARMMMUIdx arm_v7m_mmu_idx_for_secstate(CPUARMState *env, bool secstate)
2716{
2717 bool priv = arm_current_el(env) != 0;
2718
2719 return arm_v7m_mmu_idx_for_secstate_and_priv(env, secstate, priv);
2720}
2721