xref: /openbmc/qemu/target/riscv/cpu_helper.c (revision dc7b5993)
1 /*
2  * RISC-V CPU helpers for qemu.
3  *
4  * Copyright (c) 2016-2017 Sagar Karandikar, sagark@eecs.berkeley.edu
5  * Copyright (c) 2017-2018 SiFive, Inc.
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms and conditions of the GNU General Public License,
9  * version 2 or later, as published by the Free Software Foundation.
10  *
11  * This program is distributed in the hope it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
14  * more details.
15  *
16  * You should have received a copy of the GNU General Public License along with
17  * this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19 
20 #include "qemu/osdep.h"
21 #include "qemu/log.h"
22 #include "qemu/main-loop.h"
23 #include "cpu.h"
24 #include "internals.h"
25 #include "pmu.h"
26 #include "exec/exec-all.h"
27 #include "instmap.h"
28 #include "tcg/tcg-op.h"
29 #include "trace.h"
30 #include "semihosting/common-semi.h"
31 #include "sysemu/cpu-timers.h"
32 #include "cpu_bits.h"
33 #include "debug.h"
34 #include "tcg/oversized-guest.h"
35 
36 int riscv_cpu_mmu_index(CPURISCVState *env, bool ifetch)
37 {
38 #ifdef CONFIG_USER_ONLY
39     return 0;
40 #else
41     bool virt = env->virt_enabled;
42     int mode = env->priv;
43 
44     /* All priv -> mmu_idx mapping are here */
45     if (!ifetch) {
46         uint64_t status = env->mstatus;
47 
48         if (mode == PRV_M && get_field(status, MSTATUS_MPRV)) {
49             mode = get_field(env->mstatus, MSTATUS_MPP);
50             virt = get_field(env->mstatus, MSTATUS_MPV);
51             if (virt) {
52                 status = env->vsstatus;
53             }
54         }
55         if (mode == PRV_S && get_field(status, MSTATUS_SUM)) {
56             mode = MMUIdx_S_SUM;
57         }
58     }
59 
60     return mode | (virt ? MMU_2STAGE_BIT : 0);
61 #endif
62 }
63 
64 void cpu_get_tb_cpu_state(CPURISCVState *env, target_ulong *pc,
65                           target_ulong *cs_base, uint32_t *pflags)
66 {
67     CPUState *cs = env_cpu(env);
68     RISCVCPU *cpu = RISCV_CPU(cs);
69     RISCVExtStatus fs, vs;
70     uint32_t flags = 0;
71 
72     *pc = env->xl == MXL_RV32 ? env->pc & UINT32_MAX : env->pc;
73     *cs_base = 0;
74 
75     if (cpu->cfg.ext_zve32f) {
76         /*
77          * If env->vl equals to VLMAX, we can use generic vector operation
78          * expanders (GVEC) to accerlate the vector operations.
79          * However, as LMUL could be a fractional number. The maximum
80          * vector size can be operated might be less than 8 bytes,
81          * which is not supported by GVEC. So we set vl_eq_vlmax flag to true
82          * only when maxsz >= 8 bytes.
83          */
84         uint32_t vlmax = vext_get_vlmax(cpu, env->vtype);
85         uint32_t sew = FIELD_EX64(env->vtype, VTYPE, VSEW);
86         uint32_t maxsz = vlmax << sew;
87         bool vl_eq_vlmax = (env->vstart == 0) && (vlmax == env->vl) &&
88                            (maxsz >= 8);
89         flags = FIELD_DP32(flags, TB_FLAGS, VILL, env->vill);
90         flags = FIELD_DP32(flags, TB_FLAGS, SEW, sew);
91         flags = FIELD_DP32(flags, TB_FLAGS, LMUL,
92                            FIELD_EX64(env->vtype, VTYPE, VLMUL));
93         flags = FIELD_DP32(flags, TB_FLAGS, VL_EQ_VLMAX, vl_eq_vlmax);
94         flags = FIELD_DP32(flags, TB_FLAGS, VTA,
95                            FIELD_EX64(env->vtype, VTYPE, VTA));
96         flags = FIELD_DP32(flags, TB_FLAGS, VMA,
97                            FIELD_EX64(env->vtype, VTYPE, VMA));
98         flags = FIELD_DP32(flags, TB_FLAGS, VSTART_EQ_ZERO, env->vstart == 0);
99     } else {
100         flags = FIELD_DP32(flags, TB_FLAGS, VILL, 1);
101     }
102 
103 #ifdef CONFIG_USER_ONLY
104     fs = EXT_STATUS_DIRTY;
105     vs = EXT_STATUS_DIRTY;
106 #else
107     flags = FIELD_DP32(flags, TB_FLAGS, PRIV, env->priv);
108 
109     flags |= cpu_mmu_index(env, 0);
110     fs = get_field(env->mstatus, MSTATUS_FS);
111     vs = get_field(env->mstatus, MSTATUS_VS);
112 
113     if (env->virt_enabled) {
114         flags = FIELD_DP32(flags, TB_FLAGS, VIRT_ENABLED, 1);
115         /*
116          * Merge DISABLED and !DIRTY states using MIN.
117          * We will set both fields when dirtying.
118          */
119         fs = MIN(fs, get_field(env->mstatus_hs, MSTATUS_FS));
120         vs = MIN(vs, get_field(env->mstatus_hs, MSTATUS_VS));
121     }
122 
123     if (cpu->cfg.debug && !icount_enabled()) {
124         flags = FIELD_DP32(flags, TB_FLAGS, ITRIGGER, env->itrigger_enabled);
125     }
126 #endif
127 
128     flags = FIELD_DP32(flags, TB_FLAGS, FS, fs);
129     flags = FIELD_DP32(flags, TB_FLAGS, VS, vs);
130     flags = FIELD_DP32(flags, TB_FLAGS, XL, env->xl);
131     if (env->cur_pmmask < (env->xl == MXL_RV32 ? UINT32_MAX : UINT64_MAX)) {
132         flags = FIELD_DP32(flags, TB_FLAGS, PM_MASK_ENABLED, 1);
133     }
134     if (env->cur_pmbase != 0) {
135         flags = FIELD_DP32(flags, TB_FLAGS, PM_BASE_ENABLED, 1);
136     }
137 
138     *pflags = flags;
139 }
140 
141 void riscv_cpu_update_mask(CPURISCVState *env)
142 {
143     target_ulong mask = -1, base = 0;
144     /*
145      * TODO: Current RVJ spec does not specify
146      * how the extension interacts with XLEN.
147      */
148 #ifndef CONFIG_USER_ONLY
149     if (riscv_has_ext(env, RVJ)) {
150         switch (env->priv) {
151         case PRV_M:
152             if (env->mmte & M_PM_ENABLE) {
153                 mask = env->mpmmask;
154                 base = env->mpmbase;
155             }
156             break;
157         case PRV_S:
158             if (env->mmte & S_PM_ENABLE) {
159                 mask = env->spmmask;
160                 base = env->spmbase;
161             }
162             break;
163         case PRV_U:
164             if (env->mmte & U_PM_ENABLE) {
165                 mask = env->upmmask;
166                 base = env->upmbase;
167             }
168             break;
169         default:
170             g_assert_not_reached();
171         }
172     }
173 #endif
174     if (env->xl == MXL_RV32) {
175         env->cur_pmmask = mask & UINT32_MAX;
176         env->cur_pmbase = base & UINT32_MAX;
177     } else {
178         env->cur_pmmask = mask;
179         env->cur_pmbase = base;
180     }
181 }
182 
183 #ifndef CONFIG_USER_ONLY
184 
185 /*
186  * The HS-mode is allowed to configure priority only for the
187  * following VS-mode local interrupts:
188  *
189  * 0  (Reserved interrupt, reads as zero)
190  * 1  Supervisor software interrupt
191  * 4  (Reserved interrupt, reads as zero)
192  * 5  Supervisor timer interrupt
193  * 8  (Reserved interrupt, reads as zero)
194  * 13 (Reserved interrupt)
195  * 14 "
196  * 15 "
197  * 16 "
198  * 17 "
199  * 18 "
200  * 19 "
201  * 20 "
202  * 21 "
203  * 22 "
204  * 23 "
205  */
206 
207 static const int hviprio_index2irq[] = {
208     0, 1, 4, 5, 8, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23 };
209 static const int hviprio_index2rdzero[] = {
210     1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
211 
212 int riscv_cpu_hviprio_index2irq(int index, int *out_irq, int *out_rdzero)
213 {
214     if (index < 0 || ARRAY_SIZE(hviprio_index2irq) <= index) {
215         return -EINVAL;
216     }
217 
218     if (out_irq) {
219         *out_irq = hviprio_index2irq[index];
220     }
221 
222     if (out_rdzero) {
223         *out_rdzero = hviprio_index2rdzero[index];
224     }
225 
226     return 0;
227 }
228 
229 /*
230  * Default priorities of local interrupts are defined in the
231  * RISC-V Advanced Interrupt Architecture specification.
232  *
233  * ----------------------------------------------------------------
234  *  Default  |
235  *  Priority | Major Interrupt Numbers
236  * ----------------------------------------------------------------
237  *  Highest  | 47, 23, 46, 45, 22, 44,
238  *           | 43, 21, 42, 41, 20, 40
239  *           |
240  *           | 11 (0b),  3 (03),  7 (07)
241  *           |  9 (09),  1 (01),  5 (05)
242  *           | 12 (0c)
243  *           | 10 (0a),  2 (02),  6 (06)
244  *           |
245  *           | 39, 19, 38, 37, 18, 36,
246  *  Lowest   | 35, 17, 34, 33, 16, 32
247  * ----------------------------------------------------------------
248  */
249 static const uint8_t default_iprio[64] = {
250     /* Custom interrupts 48 to 63 */
251     [63] = IPRIO_MMAXIPRIO,
252     [62] = IPRIO_MMAXIPRIO,
253     [61] = IPRIO_MMAXIPRIO,
254     [60] = IPRIO_MMAXIPRIO,
255     [59] = IPRIO_MMAXIPRIO,
256     [58] = IPRIO_MMAXIPRIO,
257     [57] = IPRIO_MMAXIPRIO,
258     [56] = IPRIO_MMAXIPRIO,
259     [55] = IPRIO_MMAXIPRIO,
260     [54] = IPRIO_MMAXIPRIO,
261     [53] = IPRIO_MMAXIPRIO,
262     [52] = IPRIO_MMAXIPRIO,
263     [51] = IPRIO_MMAXIPRIO,
264     [50] = IPRIO_MMAXIPRIO,
265     [49] = IPRIO_MMAXIPRIO,
266     [48] = IPRIO_MMAXIPRIO,
267 
268     /* Custom interrupts 24 to 31 */
269     [31] = IPRIO_MMAXIPRIO,
270     [30] = IPRIO_MMAXIPRIO,
271     [29] = IPRIO_MMAXIPRIO,
272     [28] = IPRIO_MMAXIPRIO,
273     [27] = IPRIO_MMAXIPRIO,
274     [26] = IPRIO_MMAXIPRIO,
275     [25] = IPRIO_MMAXIPRIO,
276     [24] = IPRIO_MMAXIPRIO,
277 
278     [47] = IPRIO_DEFAULT_UPPER,
279     [23] = IPRIO_DEFAULT_UPPER + 1,
280     [46] = IPRIO_DEFAULT_UPPER + 2,
281     [45] = IPRIO_DEFAULT_UPPER + 3,
282     [22] = IPRIO_DEFAULT_UPPER + 4,
283     [44] = IPRIO_DEFAULT_UPPER + 5,
284 
285     [43] = IPRIO_DEFAULT_UPPER + 6,
286     [21] = IPRIO_DEFAULT_UPPER + 7,
287     [42] = IPRIO_DEFAULT_UPPER + 8,
288     [41] = IPRIO_DEFAULT_UPPER + 9,
289     [20] = IPRIO_DEFAULT_UPPER + 10,
290     [40] = IPRIO_DEFAULT_UPPER + 11,
291 
292     [11] = IPRIO_DEFAULT_M,
293     [3]  = IPRIO_DEFAULT_M + 1,
294     [7]  = IPRIO_DEFAULT_M + 2,
295 
296     [9]  = IPRIO_DEFAULT_S,
297     [1]  = IPRIO_DEFAULT_S + 1,
298     [5]  = IPRIO_DEFAULT_S + 2,
299 
300     [12] = IPRIO_DEFAULT_SGEXT,
301 
302     [10] = IPRIO_DEFAULT_VS,
303     [2]  = IPRIO_DEFAULT_VS + 1,
304     [6]  = IPRIO_DEFAULT_VS + 2,
305 
306     [39] = IPRIO_DEFAULT_LOWER,
307     [19] = IPRIO_DEFAULT_LOWER + 1,
308     [38] = IPRIO_DEFAULT_LOWER + 2,
309     [37] = IPRIO_DEFAULT_LOWER + 3,
310     [18] = IPRIO_DEFAULT_LOWER + 4,
311     [36] = IPRIO_DEFAULT_LOWER + 5,
312 
313     [35] = IPRIO_DEFAULT_LOWER + 6,
314     [17] = IPRIO_DEFAULT_LOWER + 7,
315     [34] = IPRIO_DEFAULT_LOWER + 8,
316     [33] = IPRIO_DEFAULT_LOWER + 9,
317     [16] = IPRIO_DEFAULT_LOWER + 10,
318     [32] = IPRIO_DEFAULT_LOWER + 11,
319 };
320 
321 uint8_t riscv_cpu_default_priority(int irq)
322 {
323     if (irq < 0 || irq > 63) {
324         return IPRIO_MMAXIPRIO;
325     }
326 
327     return default_iprio[irq] ? default_iprio[irq] : IPRIO_MMAXIPRIO;
328 };
329 
330 static int riscv_cpu_pending_to_irq(CPURISCVState *env,
331                                     int extirq, unsigned int extirq_def_prio,
332                                     uint64_t pending, uint8_t *iprio)
333 {
334     int irq, best_irq = RISCV_EXCP_NONE;
335     unsigned int prio, best_prio = UINT_MAX;
336 
337     if (!pending) {
338         return RISCV_EXCP_NONE;
339     }
340 
341     irq = ctz64(pending);
342     if (!((extirq == IRQ_M_EXT) ? riscv_cpu_cfg(env)->ext_smaia :
343                                   riscv_cpu_cfg(env)->ext_ssaia)) {
344         return irq;
345     }
346 
347     pending = pending >> irq;
348     while (pending) {
349         prio = iprio[irq];
350         if (!prio) {
351             if (irq == extirq) {
352                 prio = extirq_def_prio;
353             } else {
354                 prio = (riscv_cpu_default_priority(irq) < extirq_def_prio) ?
355                        1 : IPRIO_MMAXIPRIO;
356             }
357         }
358         if ((pending & 0x1) && (prio <= best_prio)) {
359             best_irq = irq;
360             best_prio = prio;
361         }
362         irq++;
363         pending = pending >> 1;
364     }
365 
366     return best_irq;
367 }
368 
369 uint64_t riscv_cpu_all_pending(CPURISCVState *env)
370 {
371     uint32_t gein = get_field(env->hstatus, HSTATUS_VGEIN);
372     uint64_t vsgein = (env->hgeip & (1ULL << gein)) ? MIP_VSEIP : 0;
373     uint64_t vstip = (env->vstime_irq) ? MIP_VSTIP : 0;
374 
375     return (env->mip | vsgein | vstip) & env->mie;
376 }
377 
378 int riscv_cpu_mirq_pending(CPURISCVState *env)
379 {
380     uint64_t irqs = riscv_cpu_all_pending(env) & ~env->mideleg &
381                     ~(MIP_SGEIP | MIP_VSSIP | MIP_VSTIP | MIP_VSEIP);
382 
383     return riscv_cpu_pending_to_irq(env, IRQ_M_EXT, IPRIO_DEFAULT_M,
384                                     irqs, env->miprio);
385 }
386 
387 int riscv_cpu_sirq_pending(CPURISCVState *env)
388 {
389     uint64_t irqs = riscv_cpu_all_pending(env) & env->mideleg &
390                     ~(MIP_VSSIP | MIP_VSTIP | MIP_VSEIP);
391 
392     return riscv_cpu_pending_to_irq(env, IRQ_S_EXT, IPRIO_DEFAULT_S,
393                                     irqs, env->siprio);
394 }
395 
396 int riscv_cpu_vsirq_pending(CPURISCVState *env)
397 {
398     uint64_t irqs = riscv_cpu_all_pending(env) & env->mideleg &
399                     (MIP_VSSIP | MIP_VSTIP | MIP_VSEIP);
400 
401     return riscv_cpu_pending_to_irq(env, IRQ_S_EXT, IPRIO_DEFAULT_S,
402                                     irqs >> 1, env->hviprio);
403 }
404 
405 static int riscv_cpu_local_irq_pending(CPURISCVState *env)
406 {
407     int virq;
408     uint64_t irqs, pending, mie, hsie, vsie;
409 
410     /* Determine interrupt enable state of all privilege modes */
411     if (env->virt_enabled) {
412         mie = 1;
413         hsie = 1;
414         vsie = (env->priv < PRV_S) ||
415                (env->priv == PRV_S && get_field(env->mstatus, MSTATUS_SIE));
416     } else {
417         mie = (env->priv < PRV_M) ||
418               (env->priv == PRV_M && get_field(env->mstatus, MSTATUS_MIE));
419         hsie = (env->priv < PRV_S) ||
420                (env->priv == PRV_S && get_field(env->mstatus, MSTATUS_SIE));
421         vsie = 0;
422     }
423 
424     /* Determine all pending interrupts */
425     pending = riscv_cpu_all_pending(env);
426 
427     /* Check M-mode interrupts */
428     irqs = pending & ~env->mideleg & -mie;
429     if (irqs) {
430         return riscv_cpu_pending_to_irq(env, IRQ_M_EXT, IPRIO_DEFAULT_M,
431                                         irqs, env->miprio);
432     }
433 
434     /* Check HS-mode interrupts */
435     irqs = pending & env->mideleg & ~env->hideleg & -hsie;
436     if (irqs) {
437         return riscv_cpu_pending_to_irq(env, IRQ_S_EXT, IPRIO_DEFAULT_S,
438                                         irqs, env->siprio);
439     }
440 
441     /* Check VS-mode interrupts */
442     irqs = pending & env->mideleg & env->hideleg & -vsie;
443     if (irqs) {
444         virq = riscv_cpu_pending_to_irq(env, IRQ_S_EXT, IPRIO_DEFAULT_S,
445                                         irqs >> 1, env->hviprio);
446         return (virq <= 0) ? virq : virq + 1;
447     }
448 
449     /* Indicate no pending interrupt */
450     return RISCV_EXCP_NONE;
451 }
452 
453 bool riscv_cpu_exec_interrupt(CPUState *cs, int interrupt_request)
454 {
455     if (interrupt_request & CPU_INTERRUPT_HARD) {
456         RISCVCPU *cpu = RISCV_CPU(cs);
457         CPURISCVState *env = &cpu->env;
458         int interruptno = riscv_cpu_local_irq_pending(env);
459         if (interruptno >= 0) {
460             cs->exception_index = RISCV_EXCP_INT_FLAG | interruptno;
461             riscv_cpu_do_interrupt(cs);
462             return true;
463         }
464     }
465     return false;
466 }
467 
468 /* Return true is floating point support is currently enabled */
469 bool riscv_cpu_fp_enabled(CPURISCVState *env)
470 {
471     if (env->mstatus & MSTATUS_FS) {
472         if (env->virt_enabled && !(env->mstatus_hs & MSTATUS_FS)) {
473             return false;
474         }
475         return true;
476     }
477 
478     return false;
479 }
480 
481 /* Return true is vector support is currently enabled */
482 bool riscv_cpu_vector_enabled(CPURISCVState *env)
483 {
484     if (env->mstatus & MSTATUS_VS) {
485         if (env->virt_enabled && !(env->mstatus_hs & MSTATUS_VS)) {
486             return false;
487         }
488         return true;
489     }
490 
491     return false;
492 }
493 
494 void riscv_cpu_swap_hypervisor_regs(CPURISCVState *env)
495 {
496     uint64_t mstatus_mask = MSTATUS_MXR | MSTATUS_SUM |
497                             MSTATUS_SPP | MSTATUS_SPIE | MSTATUS_SIE |
498                             MSTATUS64_UXL | MSTATUS_VS;
499 
500     if (riscv_has_ext(env, RVF)) {
501         mstatus_mask |= MSTATUS_FS;
502     }
503     bool current_virt = env->virt_enabled;
504 
505     g_assert(riscv_has_ext(env, RVH));
506 
507     if (current_virt) {
508         /* Current V=1 and we are about to change to V=0 */
509         env->vsstatus = env->mstatus & mstatus_mask;
510         env->mstatus &= ~mstatus_mask;
511         env->mstatus |= env->mstatus_hs;
512 
513         env->vstvec = env->stvec;
514         env->stvec = env->stvec_hs;
515 
516         env->vsscratch = env->sscratch;
517         env->sscratch = env->sscratch_hs;
518 
519         env->vsepc = env->sepc;
520         env->sepc = env->sepc_hs;
521 
522         env->vscause = env->scause;
523         env->scause = env->scause_hs;
524 
525         env->vstval = env->stval;
526         env->stval = env->stval_hs;
527 
528         env->vsatp = env->satp;
529         env->satp = env->satp_hs;
530     } else {
531         /* Current V=0 and we are about to change to V=1 */
532         env->mstatus_hs = env->mstatus & mstatus_mask;
533         env->mstatus &= ~mstatus_mask;
534         env->mstatus |= env->vsstatus;
535 
536         env->stvec_hs = env->stvec;
537         env->stvec = env->vstvec;
538 
539         env->sscratch_hs = env->sscratch;
540         env->sscratch = env->vsscratch;
541 
542         env->sepc_hs = env->sepc;
543         env->sepc = env->vsepc;
544 
545         env->scause_hs = env->scause;
546         env->scause = env->vscause;
547 
548         env->stval_hs = env->stval;
549         env->stval = env->vstval;
550 
551         env->satp_hs = env->satp;
552         env->satp = env->vsatp;
553     }
554 }
555 
556 target_ulong riscv_cpu_get_geilen(CPURISCVState *env)
557 {
558     if (!riscv_has_ext(env, RVH)) {
559         return 0;
560     }
561 
562     return env->geilen;
563 }
564 
565 void riscv_cpu_set_geilen(CPURISCVState *env, target_ulong geilen)
566 {
567     if (!riscv_has_ext(env, RVH)) {
568         return;
569     }
570 
571     if (geilen > (TARGET_LONG_BITS - 1)) {
572         return;
573     }
574 
575     env->geilen = geilen;
576 }
577 
578 /* This function can only be called to set virt when RVH is enabled */
579 void riscv_cpu_set_virt_enabled(CPURISCVState *env, bool enable)
580 {
581     /* Flush the TLB on all virt mode changes. */
582     if (env->virt_enabled != enable) {
583         tlb_flush(env_cpu(env));
584     }
585 
586     env->virt_enabled = enable;
587 
588     if (enable) {
589         /*
590          * The guest external interrupts from an interrupt controller are
591          * delivered only when the Guest/VM is running (i.e. V=1). This means
592          * any guest external interrupt which is triggered while the Guest/VM
593          * is not running (i.e. V=0) will be missed on QEMU resulting in guest
594          * with sluggish response to serial console input and other I/O events.
595          *
596          * To solve this, we check and inject interrupt after setting V=1.
597          */
598         riscv_cpu_update_mip(env, 0, 0);
599     }
600 }
601 
602 int riscv_cpu_claim_interrupts(RISCVCPU *cpu, uint64_t interrupts)
603 {
604     CPURISCVState *env = &cpu->env;
605     if (env->miclaim & interrupts) {
606         return -1;
607     } else {
608         env->miclaim |= interrupts;
609         return 0;
610     }
611 }
612 
613 uint64_t riscv_cpu_update_mip(CPURISCVState *env, uint64_t mask,
614                               uint64_t value)
615 {
616     CPUState *cs = env_cpu(env);
617     uint64_t gein, vsgein = 0, vstip = 0, old = env->mip;
618 
619     if (env->virt_enabled) {
620         gein = get_field(env->hstatus, HSTATUS_VGEIN);
621         vsgein = (env->hgeip & (1ULL << gein)) ? MIP_VSEIP : 0;
622     }
623 
624     vstip = env->vstime_irq ? MIP_VSTIP : 0;
625 
626     QEMU_IOTHREAD_LOCK_GUARD();
627 
628     env->mip = (env->mip & ~mask) | (value & mask);
629 
630     if (env->mip | vsgein | vstip) {
631         cpu_interrupt(cs, CPU_INTERRUPT_HARD);
632     } else {
633         cpu_reset_interrupt(cs, CPU_INTERRUPT_HARD);
634     }
635 
636     return old;
637 }
638 
639 void riscv_cpu_set_rdtime_fn(CPURISCVState *env, uint64_t (*fn)(void *),
640                              void *arg)
641 {
642     env->rdtime_fn = fn;
643     env->rdtime_fn_arg = arg;
644 }
645 
646 void riscv_cpu_set_aia_ireg_rmw_fn(CPURISCVState *env, uint32_t priv,
647                                    int (*rmw_fn)(void *arg,
648                                                  target_ulong reg,
649                                                  target_ulong *val,
650                                                  target_ulong new_val,
651                                                  target_ulong write_mask),
652                                    void *rmw_fn_arg)
653 {
654     if (priv <= PRV_M) {
655         env->aia_ireg_rmw_fn[priv] = rmw_fn;
656         env->aia_ireg_rmw_fn_arg[priv] = rmw_fn_arg;
657     }
658 }
659 
660 void riscv_cpu_set_mode(CPURISCVState *env, target_ulong newpriv)
661 {
662     g_assert(newpriv <= PRV_M && newpriv != PRV_RESERVED);
663 
664     if (icount_enabled() && newpriv != env->priv) {
665         riscv_itrigger_update_priv(env);
666     }
667     /* tlb_flush is unnecessary as mode is contained in mmu_idx */
668     env->priv = newpriv;
669     env->xl = cpu_recompute_xl(env);
670     riscv_cpu_update_mask(env);
671 
672     /*
673      * Clear the load reservation - otherwise a reservation placed in one
674      * context/process can be used by another, resulting in an SC succeeding
675      * incorrectly. Version 2.2 of the ISA specification explicitly requires
676      * this behaviour, while later revisions say that the kernel "should" use
677      * an SC instruction to force the yielding of a load reservation on a
678      * preemptive context switch. As a result, do both.
679      */
680     env->load_res = -1;
681 }
682 
683 /*
684  * get_physical_address_pmp - check PMP permission for this physical address
685  *
686  * Match the PMP region and check permission for this physical address and it's
687  * TLB page. Returns 0 if the permission checking was successful
688  *
689  * @env: CPURISCVState
690  * @prot: The returned protection attributes
691  * @tlb_size: TLB page size containing addr. It could be modified after PMP
692  *            permission checking. NULL if not set TLB page for addr.
693  * @addr: The physical address to be checked permission
694  * @access_type: The type of MMU access
695  * @mode: Indicates current privilege level.
696  */
697 static int get_physical_address_pmp(CPURISCVState *env, int *prot,
698                                     target_ulong *tlb_size, hwaddr addr,
699                                     int size, MMUAccessType access_type,
700                                     int mode)
701 {
702     pmp_priv_t pmp_priv;
703     int pmp_index = -1;
704 
705     if (!riscv_cpu_cfg(env)->pmp) {
706         *prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
707         return TRANSLATE_SUCCESS;
708     }
709 
710     pmp_index = pmp_hart_has_privs(env, addr, size, 1 << access_type,
711                                    &pmp_priv, mode);
712     if (pmp_index < 0) {
713         *prot = 0;
714         return TRANSLATE_PMP_FAIL;
715     }
716 
717     *prot = pmp_priv_to_page_prot(pmp_priv);
718     if (tlb_size != NULL) {
719         *tlb_size = pmp_get_tlb_size(env, addr);
720     }
721 
722     return TRANSLATE_SUCCESS;
723 }
724 
725 /*
726  * get_physical_address - get the physical address for this virtual address
727  *
728  * Do a page table walk to obtain the physical address corresponding to a
729  * virtual address. Returns 0 if the translation was successful
730  *
731  * Adapted from Spike's mmu_t::translate and mmu_t::walk
732  *
733  * @env: CPURISCVState
734  * @physical: This will be set to the calculated physical address
735  * @prot: The returned protection attributes
736  * @addr: The virtual address or guest physical address to be translated
737  * @fault_pte_addr: If not NULL, this will be set to fault pte address
738  *                  when a error occurs on pte address translation.
739  *                  This will already be shifted to match htval.
740  * @access_type: The type of MMU access
741  * @mmu_idx: Indicates current privilege level
742  * @first_stage: Are we in first stage translation?
743  *               Second stage is used for hypervisor guest translation
744  * @two_stage: Are we going to perform two stage translation
745  * @is_debug: Is this access from a debugger or the monitor?
746  */
747 static int get_physical_address(CPURISCVState *env, hwaddr *physical,
748                                 int *ret_prot, vaddr addr,
749                                 target_ulong *fault_pte_addr,
750                                 int access_type, int mmu_idx,
751                                 bool first_stage, bool two_stage,
752                                 bool is_debug)
753 {
754     /*
755      * NOTE: the env->pc value visible here will not be
756      * correct, but the value visible to the exception handler
757      * (riscv_cpu_do_interrupt) is correct
758      */
759     MemTxResult res;
760     MemTxAttrs attrs = MEMTXATTRS_UNSPECIFIED;
761     int mode = mmuidx_priv(mmu_idx);
762     bool use_background = false;
763     hwaddr ppn;
764     int napot_bits = 0;
765     target_ulong napot_mask;
766 
767     /*
768      * Check if we should use the background registers for the two
769      * stage translation. We don't need to check if we actually need
770      * two stage translation as that happened before this function
771      * was called. Background registers will be used if the guest has
772      * forced a two stage translation to be on (in HS or M mode).
773      */
774     if (!env->virt_enabled && two_stage) {
775         use_background = true;
776     }
777 
778     if (mode == PRV_M || !riscv_cpu_cfg(env)->mmu) {
779         *physical = addr;
780         *ret_prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
781         return TRANSLATE_SUCCESS;
782     }
783 
784     *ret_prot = 0;
785 
786     hwaddr base;
787     int levels, ptidxbits, ptesize, vm, widened;
788 
789     if (first_stage == true) {
790         if (use_background) {
791             if (riscv_cpu_mxl(env) == MXL_RV32) {
792                 base = (hwaddr)get_field(env->vsatp, SATP32_PPN) << PGSHIFT;
793                 vm = get_field(env->vsatp, SATP32_MODE);
794             } else {
795                 base = (hwaddr)get_field(env->vsatp, SATP64_PPN) << PGSHIFT;
796                 vm = get_field(env->vsatp, SATP64_MODE);
797             }
798         } else {
799             if (riscv_cpu_mxl(env) == MXL_RV32) {
800                 base = (hwaddr)get_field(env->satp, SATP32_PPN) << PGSHIFT;
801                 vm = get_field(env->satp, SATP32_MODE);
802             } else {
803                 base = (hwaddr)get_field(env->satp, SATP64_PPN) << PGSHIFT;
804                 vm = get_field(env->satp, SATP64_MODE);
805             }
806         }
807         widened = 0;
808     } else {
809         if (riscv_cpu_mxl(env) == MXL_RV32) {
810             base = (hwaddr)get_field(env->hgatp, SATP32_PPN) << PGSHIFT;
811             vm = get_field(env->hgatp, SATP32_MODE);
812         } else {
813             base = (hwaddr)get_field(env->hgatp, SATP64_PPN) << PGSHIFT;
814             vm = get_field(env->hgatp, SATP64_MODE);
815         }
816         widened = 2;
817     }
818 
819     switch (vm) {
820     case VM_1_10_SV32:
821       levels = 2; ptidxbits = 10; ptesize = 4; break;
822     case VM_1_10_SV39:
823       levels = 3; ptidxbits = 9; ptesize = 8; break;
824     case VM_1_10_SV48:
825       levels = 4; ptidxbits = 9; ptesize = 8; break;
826     case VM_1_10_SV57:
827       levels = 5; ptidxbits = 9; ptesize = 8; break;
828     case VM_1_10_MBARE:
829         *physical = addr;
830         *ret_prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
831         return TRANSLATE_SUCCESS;
832     default:
833       g_assert_not_reached();
834     }
835 
836     CPUState *cs = env_cpu(env);
837     int va_bits = PGSHIFT + levels * ptidxbits + widened;
838 
839     if (first_stage == true) {
840         target_ulong mask, masked_msbs;
841 
842         if (TARGET_LONG_BITS > (va_bits - 1)) {
843             mask = (1L << (TARGET_LONG_BITS - (va_bits - 1))) - 1;
844         } else {
845             mask = 0;
846         }
847         masked_msbs = (addr >> (va_bits - 1)) & mask;
848 
849         if (masked_msbs != 0 && masked_msbs != mask) {
850             return TRANSLATE_FAIL;
851         }
852     } else {
853         if (vm != VM_1_10_SV32 && addr >> va_bits != 0) {
854             return TRANSLATE_FAIL;
855         }
856     }
857 
858     bool pbmte = env->menvcfg & MENVCFG_PBMTE;
859     bool hade = env->menvcfg & MENVCFG_HADE;
860 
861     if (first_stage && two_stage && env->virt_enabled) {
862         pbmte = pbmte && (env->henvcfg & HENVCFG_PBMTE);
863         hade = hade && (env->henvcfg & HENVCFG_HADE);
864     }
865 
866     int ptshift = (levels - 1) * ptidxbits;
867     target_ulong pte;
868     hwaddr pte_addr;
869     int i;
870 
871 #if !TCG_OVERSIZED_GUEST
872 restart:
873 #endif
874     for (i = 0; i < levels; i++, ptshift -= ptidxbits) {
875         target_ulong idx;
876         if (i == 0) {
877             idx = (addr >> (PGSHIFT + ptshift)) &
878                            ((1 << (ptidxbits + widened)) - 1);
879         } else {
880             idx = (addr >> (PGSHIFT + ptshift)) &
881                            ((1 << ptidxbits) - 1);
882         }
883 
884         /* check that physical address of PTE is legal */
885 
886         if (two_stage && first_stage) {
887             int vbase_prot;
888             hwaddr vbase;
889 
890             /* Do the second stage translation on the base PTE address. */
891             int vbase_ret = get_physical_address(env, &vbase, &vbase_prot,
892                                                  base, NULL, MMU_DATA_LOAD,
893                                                  MMUIdx_U, false, true,
894                                                  is_debug);
895 
896             if (vbase_ret != TRANSLATE_SUCCESS) {
897                 if (fault_pte_addr) {
898                     *fault_pte_addr = (base + idx * ptesize) >> 2;
899                 }
900                 return TRANSLATE_G_STAGE_FAIL;
901             }
902 
903             pte_addr = vbase + idx * ptesize;
904         } else {
905             pte_addr = base + idx * ptesize;
906         }
907 
908         int pmp_prot;
909         int pmp_ret = get_physical_address_pmp(env, &pmp_prot, NULL, pte_addr,
910                                                sizeof(target_ulong),
911                                                MMU_DATA_LOAD, PRV_S);
912         if (pmp_ret != TRANSLATE_SUCCESS) {
913             return TRANSLATE_PMP_FAIL;
914         }
915 
916         if (riscv_cpu_mxl(env) == MXL_RV32) {
917             pte = address_space_ldl(cs->as, pte_addr, attrs, &res);
918         } else {
919             pte = address_space_ldq(cs->as, pte_addr, attrs, &res);
920         }
921 
922         if (res != MEMTX_OK) {
923             return TRANSLATE_FAIL;
924         }
925 
926         if (riscv_cpu_sxl(env) == MXL_RV32) {
927             ppn = pte >> PTE_PPN_SHIFT;
928         } else {
929             if (pte & PTE_RESERVED) {
930                 return TRANSLATE_FAIL;
931             }
932 
933             if (!pbmte && (pte & PTE_PBMT)) {
934                 return TRANSLATE_FAIL;
935             }
936 
937             if (!riscv_cpu_cfg(env)->ext_svnapot && (pte & PTE_N)) {
938                 return TRANSLATE_FAIL;
939             }
940 
941             ppn = (pte & (target_ulong)PTE_PPN_MASK) >> PTE_PPN_SHIFT;
942         }
943 
944         if (!(pte & PTE_V)) {
945             /* Invalid PTE */
946             return TRANSLATE_FAIL;
947         }
948         if (pte & (PTE_R | PTE_W | PTE_X)) {
949             goto leaf;
950         }
951 
952         /* Inner PTE, continue walking */
953         if (pte & (PTE_D | PTE_A | PTE_U | PTE_ATTR)) {
954             return TRANSLATE_FAIL;
955         }
956         base = ppn << PGSHIFT;
957     }
958 
959     /* No leaf pte at any translation level. */
960     return TRANSLATE_FAIL;
961 
962  leaf:
963     if (ppn & ((1ULL << ptshift) - 1)) {
964         /* Misaligned PPN */
965         return TRANSLATE_FAIL;
966     }
967     if (!pbmte && (pte & PTE_PBMT)) {
968         /* Reserved without Svpbmt. */
969         return TRANSLATE_FAIL;
970     }
971 
972     /* Check for reserved combinations of RWX flags. */
973     switch (pte & (PTE_R | PTE_W | PTE_X)) {
974     case PTE_W:
975     case PTE_W | PTE_X:
976         return TRANSLATE_FAIL;
977     }
978 
979     int prot = 0;
980     if (pte & PTE_R) {
981         prot |= PAGE_READ;
982     }
983     if (pte & PTE_W) {
984         prot |= PAGE_WRITE;
985     }
986     if (pte & PTE_X) {
987         bool mxr;
988 
989         if (first_stage == true) {
990             mxr = get_field(env->mstatus, MSTATUS_MXR);
991         } else {
992             mxr = get_field(env->vsstatus, MSTATUS_MXR);
993         }
994         if (mxr) {
995             prot |= PAGE_READ;
996         }
997         prot |= PAGE_EXEC;
998     }
999 
1000     if (pte & PTE_U) {
1001         if (mode != PRV_U) {
1002             if (!mmuidx_sum(mmu_idx)) {
1003                 return TRANSLATE_FAIL;
1004             }
1005             /* SUM allows only read+write, not execute. */
1006             prot &= PAGE_READ | PAGE_WRITE;
1007         }
1008     } else if (mode != PRV_S) {
1009         /* Supervisor PTE flags when not S mode */
1010         return TRANSLATE_FAIL;
1011     }
1012 
1013     if (!((prot >> access_type) & 1)) {
1014         /* Access check failed */
1015         return TRANSLATE_FAIL;
1016     }
1017 
1018     /* If necessary, set accessed and dirty bits. */
1019     target_ulong updated_pte = pte | PTE_A |
1020                 (access_type == MMU_DATA_STORE ? PTE_D : 0);
1021 
1022     /* Page table updates need to be atomic with MTTCG enabled */
1023     if (updated_pte != pte && !is_debug) {
1024         if (!hade) {
1025             return TRANSLATE_FAIL;
1026         }
1027 
1028         /*
1029          * - if accessed or dirty bits need updating, and the PTE is
1030          *   in RAM, then we do so atomically with a compare and swap.
1031          * - if the PTE is in IO space or ROM, then it can't be updated
1032          *   and we return TRANSLATE_FAIL.
1033          * - if the PTE changed by the time we went to update it, then
1034          *   it is no longer valid and we must re-walk the page table.
1035          */
1036         MemoryRegion *mr;
1037         hwaddr l = sizeof(target_ulong), addr1;
1038         mr = address_space_translate(cs->as, pte_addr, &addr1, &l,
1039                                      false, MEMTXATTRS_UNSPECIFIED);
1040         if (memory_region_is_ram(mr)) {
1041             target_ulong *pte_pa = qemu_map_ram_ptr(mr->ram_block, addr1);
1042 #if TCG_OVERSIZED_GUEST
1043             /*
1044              * MTTCG is not enabled on oversized TCG guests so
1045              * page table updates do not need to be atomic
1046              */
1047             *pte_pa = pte = updated_pte;
1048 #else
1049             target_ulong old_pte = qatomic_cmpxchg(pte_pa, pte, updated_pte);
1050             if (old_pte != pte) {
1051                 goto restart;
1052             }
1053             pte = updated_pte;
1054 #endif
1055         } else {
1056             /*
1057              * Misconfigured PTE in ROM (AD bits are not preset) or
1058              * PTE is in IO space and can't be updated atomically.
1059              */
1060             return TRANSLATE_FAIL;
1061         }
1062     }
1063 
1064     /* For superpage mappings, make a fake leaf PTE for the TLB's benefit. */
1065     target_ulong vpn = addr >> PGSHIFT;
1066 
1067     if (riscv_cpu_cfg(env)->ext_svnapot && (pte & PTE_N)) {
1068         napot_bits = ctzl(ppn) + 1;
1069         if ((i != (levels - 1)) || (napot_bits != 4)) {
1070             return TRANSLATE_FAIL;
1071         }
1072     }
1073 
1074     napot_mask = (1 << napot_bits) - 1;
1075     *physical = (((ppn & ~napot_mask) | (vpn & napot_mask) |
1076                   (vpn & (((target_ulong)1 << ptshift) - 1))
1077                  ) << PGSHIFT) | (addr & ~TARGET_PAGE_MASK);
1078 
1079     /*
1080      * Remove write permission unless this is a store, or the page is
1081      * already dirty, so that we TLB miss on later writes to update
1082      * the dirty bit.
1083      */
1084     if (access_type != MMU_DATA_STORE && !(pte & PTE_D)) {
1085         prot &= ~PAGE_WRITE;
1086     }
1087     *ret_prot = prot;
1088 
1089     return TRANSLATE_SUCCESS;
1090 }
1091 
1092 static void raise_mmu_exception(CPURISCVState *env, target_ulong address,
1093                                 MMUAccessType access_type, bool pmp_violation,
1094                                 bool first_stage, bool two_stage,
1095                                 bool two_stage_indirect)
1096 {
1097     CPUState *cs = env_cpu(env);
1098     int page_fault_exceptions, vm;
1099     uint64_t stap_mode;
1100 
1101     if (riscv_cpu_mxl(env) == MXL_RV32) {
1102         stap_mode = SATP32_MODE;
1103     } else {
1104         stap_mode = SATP64_MODE;
1105     }
1106 
1107     if (first_stage) {
1108         vm = get_field(env->satp, stap_mode);
1109     } else {
1110         vm = get_field(env->hgatp, stap_mode);
1111     }
1112 
1113     page_fault_exceptions = vm != VM_1_10_MBARE && !pmp_violation;
1114 
1115     switch (access_type) {
1116     case MMU_INST_FETCH:
1117         if (env->virt_enabled && !first_stage) {
1118             cs->exception_index = RISCV_EXCP_INST_GUEST_PAGE_FAULT;
1119         } else {
1120             cs->exception_index = page_fault_exceptions ?
1121                 RISCV_EXCP_INST_PAGE_FAULT : RISCV_EXCP_INST_ACCESS_FAULT;
1122         }
1123         break;
1124     case MMU_DATA_LOAD:
1125         if (two_stage && !first_stage) {
1126             cs->exception_index = RISCV_EXCP_LOAD_GUEST_ACCESS_FAULT;
1127         } else {
1128             cs->exception_index = page_fault_exceptions ?
1129                 RISCV_EXCP_LOAD_PAGE_FAULT : RISCV_EXCP_LOAD_ACCESS_FAULT;
1130         }
1131         break;
1132     case MMU_DATA_STORE:
1133         if (two_stage && !first_stage) {
1134             cs->exception_index = RISCV_EXCP_STORE_GUEST_AMO_ACCESS_FAULT;
1135         } else {
1136             cs->exception_index = page_fault_exceptions ?
1137                 RISCV_EXCP_STORE_PAGE_FAULT :
1138                 RISCV_EXCP_STORE_AMO_ACCESS_FAULT;
1139         }
1140         break;
1141     default:
1142         g_assert_not_reached();
1143     }
1144     env->badaddr = address;
1145     env->two_stage_lookup = two_stage;
1146     env->two_stage_indirect_lookup = two_stage_indirect;
1147 }
1148 
1149 hwaddr riscv_cpu_get_phys_page_debug(CPUState *cs, vaddr addr)
1150 {
1151     RISCVCPU *cpu = RISCV_CPU(cs);
1152     CPURISCVState *env = &cpu->env;
1153     hwaddr phys_addr;
1154     int prot;
1155     int mmu_idx = cpu_mmu_index(&cpu->env, false);
1156 
1157     if (get_physical_address(env, &phys_addr, &prot, addr, NULL, 0, mmu_idx,
1158                              true, env->virt_enabled, true)) {
1159         return -1;
1160     }
1161 
1162     if (env->virt_enabled) {
1163         if (get_physical_address(env, &phys_addr, &prot, phys_addr, NULL,
1164                                  0, mmu_idx, false, true, true)) {
1165             return -1;
1166         }
1167     }
1168 
1169     return phys_addr & TARGET_PAGE_MASK;
1170 }
1171 
1172 void riscv_cpu_do_transaction_failed(CPUState *cs, hwaddr physaddr,
1173                                      vaddr addr, unsigned size,
1174                                      MMUAccessType access_type,
1175                                      int mmu_idx, MemTxAttrs attrs,
1176                                      MemTxResult response, uintptr_t retaddr)
1177 {
1178     RISCVCPU *cpu = RISCV_CPU(cs);
1179     CPURISCVState *env = &cpu->env;
1180 
1181     if (access_type == MMU_DATA_STORE) {
1182         cs->exception_index = RISCV_EXCP_STORE_AMO_ACCESS_FAULT;
1183     } else if (access_type == MMU_DATA_LOAD) {
1184         cs->exception_index = RISCV_EXCP_LOAD_ACCESS_FAULT;
1185     } else {
1186         cs->exception_index = RISCV_EXCP_INST_ACCESS_FAULT;
1187     }
1188 
1189     env->badaddr = addr;
1190     env->two_stage_lookup = mmuidx_2stage(mmu_idx);
1191     env->two_stage_indirect_lookup = false;
1192     cpu_loop_exit_restore(cs, retaddr);
1193 }
1194 
1195 void riscv_cpu_do_unaligned_access(CPUState *cs, vaddr addr,
1196                                    MMUAccessType access_type, int mmu_idx,
1197                                    uintptr_t retaddr)
1198 {
1199     RISCVCPU *cpu = RISCV_CPU(cs);
1200     CPURISCVState *env = &cpu->env;
1201     switch (access_type) {
1202     case MMU_INST_FETCH:
1203         cs->exception_index = RISCV_EXCP_INST_ADDR_MIS;
1204         break;
1205     case MMU_DATA_LOAD:
1206         cs->exception_index = RISCV_EXCP_LOAD_ADDR_MIS;
1207         break;
1208     case MMU_DATA_STORE:
1209         cs->exception_index = RISCV_EXCP_STORE_AMO_ADDR_MIS;
1210         break;
1211     default:
1212         g_assert_not_reached();
1213     }
1214     env->badaddr = addr;
1215     env->two_stage_lookup = mmuidx_2stage(mmu_idx);
1216     env->two_stage_indirect_lookup = false;
1217     cpu_loop_exit_restore(cs, retaddr);
1218 }
1219 
1220 
1221 static void pmu_tlb_fill_incr_ctr(RISCVCPU *cpu, MMUAccessType access_type)
1222 {
1223     enum riscv_pmu_event_idx pmu_event_type;
1224 
1225     switch (access_type) {
1226     case MMU_INST_FETCH:
1227         pmu_event_type = RISCV_PMU_EVENT_CACHE_ITLB_PREFETCH_MISS;
1228         break;
1229     case MMU_DATA_LOAD:
1230         pmu_event_type = RISCV_PMU_EVENT_CACHE_DTLB_READ_MISS;
1231         break;
1232     case MMU_DATA_STORE:
1233         pmu_event_type = RISCV_PMU_EVENT_CACHE_DTLB_WRITE_MISS;
1234         break;
1235     default:
1236         return;
1237     }
1238 
1239     riscv_pmu_incr_ctr(cpu, pmu_event_type);
1240 }
1241 
1242 bool riscv_cpu_tlb_fill(CPUState *cs, vaddr address, int size,
1243                         MMUAccessType access_type, int mmu_idx,
1244                         bool probe, uintptr_t retaddr)
1245 {
1246     RISCVCPU *cpu = RISCV_CPU(cs);
1247     CPURISCVState *env = &cpu->env;
1248     vaddr im_address;
1249     hwaddr pa = 0;
1250     int prot, prot2, prot_pmp;
1251     bool pmp_violation = false;
1252     bool first_stage_error = true;
1253     bool two_stage_lookup = mmuidx_2stage(mmu_idx);
1254     bool two_stage_indirect_error = false;
1255     int ret = TRANSLATE_FAIL;
1256     int mode = mmu_idx;
1257     /* default TLB page size */
1258     target_ulong tlb_size = TARGET_PAGE_SIZE;
1259 
1260     env->guest_phys_fault_addr = 0;
1261 
1262     qemu_log_mask(CPU_LOG_MMU, "%s ad %" VADDR_PRIx " rw %d mmu_idx %d\n",
1263                   __func__, address, access_type, mmu_idx);
1264 
1265     pmu_tlb_fill_incr_ctr(cpu, access_type);
1266     if (two_stage_lookup) {
1267         /* Two stage lookup */
1268         ret = get_physical_address(env, &pa, &prot, address,
1269                                    &env->guest_phys_fault_addr, access_type,
1270                                    mmu_idx, true, true, false);
1271 
1272         /*
1273          * A G-stage exception may be triggered during two state lookup.
1274          * And the env->guest_phys_fault_addr has already been set in
1275          * get_physical_address().
1276          */
1277         if (ret == TRANSLATE_G_STAGE_FAIL) {
1278             first_stage_error = false;
1279             two_stage_indirect_error = true;
1280             access_type = MMU_DATA_LOAD;
1281         }
1282 
1283         qemu_log_mask(CPU_LOG_MMU,
1284                       "%s 1st-stage address=%" VADDR_PRIx " ret %d physical "
1285                       HWADDR_FMT_plx " prot %d\n",
1286                       __func__, address, ret, pa, prot);
1287 
1288         if (ret == TRANSLATE_SUCCESS) {
1289             /* Second stage lookup */
1290             im_address = pa;
1291 
1292             ret = get_physical_address(env, &pa, &prot2, im_address, NULL,
1293                                        access_type, MMUIdx_U, false, true,
1294                                        false);
1295 
1296             qemu_log_mask(CPU_LOG_MMU,
1297                           "%s 2nd-stage address=%" VADDR_PRIx
1298                           " ret %d physical "
1299                           HWADDR_FMT_plx " prot %d\n",
1300                           __func__, im_address, ret, pa, prot2);
1301 
1302             prot &= prot2;
1303 
1304             if (ret == TRANSLATE_SUCCESS) {
1305                 ret = get_physical_address_pmp(env, &prot_pmp, &tlb_size, pa,
1306                                                size, access_type, mode);
1307 
1308                 qemu_log_mask(CPU_LOG_MMU,
1309                               "%s PMP address=" HWADDR_FMT_plx " ret %d prot"
1310                               " %d tlb_size " TARGET_FMT_lu "\n",
1311                               __func__, pa, ret, prot_pmp, tlb_size);
1312 
1313                 prot &= prot_pmp;
1314             }
1315 
1316             if (ret != TRANSLATE_SUCCESS) {
1317                 /*
1318                  * Guest physical address translation failed, this is a HS
1319                  * level exception
1320                  */
1321                 first_stage_error = false;
1322                 env->guest_phys_fault_addr = (im_address |
1323                                               (address &
1324                                                (TARGET_PAGE_SIZE - 1))) >> 2;
1325             }
1326         }
1327     } else {
1328         /* Single stage lookup */
1329         ret = get_physical_address(env, &pa, &prot, address, NULL,
1330                                    access_type, mmu_idx, true, false, false);
1331 
1332         qemu_log_mask(CPU_LOG_MMU,
1333                       "%s address=%" VADDR_PRIx " ret %d physical "
1334                       HWADDR_FMT_plx " prot %d\n",
1335                       __func__, address, ret, pa, prot);
1336 
1337         if (ret == TRANSLATE_SUCCESS) {
1338             ret = get_physical_address_pmp(env, &prot_pmp, &tlb_size, pa,
1339                                            size, access_type, mode);
1340 
1341             qemu_log_mask(CPU_LOG_MMU,
1342                           "%s PMP address=" HWADDR_FMT_plx " ret %d prot"
1343                           " %d tlb_size " TARGET_FMT_lu "\n",
1344                           __func__, pa, ret, prot_pmp, tlb_size);
1345 
1346             prot &= prot_pmp;
1347         }
1348     }
1349 
1350     if (ret == TRANSLATE_PMP_FAIL) {
1351         pmp_violation = true;
1352     }
1353 
1354     if (ret == TRANSLATE_SUCCESS) {
1355         tlb_set_page(cs, address & ~(tlb_size - 1), pa & ~(tlb_size - 1),
1356                      prot, mmu_idx, tlb_size);
1357         return true;
1358     } else if (probe) {
1359         return false;
1360     } else {
1361         raise_mmu_exception(env, address, access_type, pmp_violation,
1362                             first_stage_error, two_stage_lookup,
1363                             two_stage_indirect_error);
1364         cpu_loop_exit_restore(cs, retaddr);
1365     }
1366 
1367     return true;
1368 }
1369 
1370 static target_ulong riscv_transformed_insn(CPURISCVState *env,
1371                                            target_ulong insn,
1372                                            target_ulong taddr)
1373 {
1374     target_ulong xinsn = 0;
1375     target_ulong access_rs1 = 0, access_imm = 0, access_size = 0;
1376 
1377     /*
1378      * Only Quadrant 0 and Quadrant 2 of RVC instruction space need to
1379      * be uncompressed. The Quadrant 1 of RVC instruction space need
1380      * not be transformed because these instructions won't generate
1381      * any load/store trap.
1382      */
1383 
1384     if ((insn & 0x3) != 0x3) {
1385         /* Transform 16bit instruction into 32bit instruction */
1386         switch (GET_C_OP(insn)) {
1387         case OPC_RISC_C_OP_QUAD0: /* Quadrant 0 */
1388             switch (GET_C_FUNC(insn)) {
1389             case OPC_RISC_C_FUNC_FLD_LQ:
1390                 if (riscv_cpu_xlen(env) != 128) { /* C.FLD (RV32/64) */
1391                     xinsn = OPC_RISC_FLD;
1392                     xinsn = SET_RD(xinsn, GET_C_RS2S(insn));
1393                     access_rs1 = GET_C_RS1S(insn);
1394                     access_imm = GET_C_LD_IMM(insn);
1395                     access_size = 8;
1396                 }
1397                 break;
1398             case OPC_RISC_C_FUNC_LW: /* C.LW */
1399                 xinsn = OPC_RISC_LW;
1400                 xinsn = SET_RD(xinsn, GET_C_RS2S(insn));
1401                 access_rs1 = GET_C_RS1S(insn);
1402                 access_imm = GET_C_LW_IMM(insn);
1403                 access_size = 4;
1404                 break;
1405             case OPC_RISC_C_FUNC_FLW_LD:
1406                 if (riscv_cpu_xlen(env) == 32) { /* C.FLW (RV32) */
1407                     xinsn = OPC_RISC_FLW;
1408                     xinsn = SET_RD(xinsn, GET_C_RS2S(insn));
1409                     access_rs1 = GET_C_RS1S(insn);
1410                     access_imm = GET_C_LW_IMM(insn);
1411                     access_size = 4;
1412                 } else { /* C.LD (RV64/RV128) */
1413                     xinsn = OPC_RISC_LD;
1414                     xinsn = SET_RD(xinsn, GET_C_RS2S(insn));
1415                     access_rs1 = GET_C_RS1S(insn);
1416                     access_imm = GET_C_LD_IMM(insn);
1417                     access_size = 8;
1418                 }
1419                 break;
1420             case OPC_RISC_C_FUNC_FSD_SQ:
1421                 if (riscv_cpu_xlen(env) != 128) { /* C.FSD (RV32/64) */
1422                     xinsn = OPC_RISC_FSD;
1423                     xinsn = SET_RS2(xinsn, GET_C_RS2S(insn));
1424                     access_rs1 = GET_C_RS1S(insn);
1425                     access_imm = GET_C_SD_IMM(insn);
1426                     access_size = 8;
1427                 }
1428                 break;
1429             case OPC_RISC_C_FUNC_SW: /* C.SW */
1430                 xinsn = OPC_RISC_SW;
1431                 xinsn = SET_RS2(xinsn, GET_C_RS2S(insn));
1432                 access_rs1 = GET_C_RS1S(insn);
1433                 access_imm = GET_C_SW_IMM(insn);
1434                 access_size = 4;
1435                 break;
1436             case OPC_RISC_C_FUNC_FSW_SD:
1437                 if (riscv_cpu_xlen(env) == 32) { /* C.FSW (RV32) */
1438                     xinsn = OPC_RISC_FSW;
1439                     xinsn = SET_RS2(xinsn, GET_C_RS2S(insn));
1440                     access_rs1 = GET_C_RS1S(insn);
1441                     access_imm = GET_C_SW_IMM(insn);
1442                     access_size = 4;
1443                 } else { /* C.SD (RV64/RV128) */
1444                     xinsn = OPC_RISC_SD;
1445                     xinsn = SET_RS2(xinsn, GET_C_RS2S(insn));
1446                     access_rs1 = GET_C_RS1S(insn);
1447                     access_imm = GET_C_SD_IMM(insn);
1448                     access_size = 8;
1449                 }
1450                 break;
1451             default:
1452                 break;
1453             }
1454             break;
1455         case OPC_RISC_C_OP_QUAD2: /* Quadrant 2 */
1456             switch (GET_C_FUNC(insn)) {
1457             case OPC_RISC_C_FUNC_FLDSP_LQSP:
1458                 if (riscv_cpu_xlen(env) != 128) { /* C.FLDSP (RV32/64) */
1459                     xinsn = OPC_RISC_FLD;
1460                     xinsn = SET_RD(xinsn, GET_C_RD(insn));
1461                     access_rs1 = 2;
1462                     access_imm = GET_C_LDSP_IMM(insn);
1463                     access_size = 8;
1464                 }
1465                 break;
1466             case OPC_RISC_C_FUNC_LWSP: /* C.LWSP */
1467                 xinsn = OPC_RISC_LW;
1468                 xinsn = SET_RD(xinsn, GET_C_RD(insn));
1469                 access_rs1 = 2;
1470                 access_imm = GET_C_LWSP_IMM(insn);
1471                 access_size = 4;
1472                 break;
1473             case OPC_RISC_C_FUNC_FLWSP_LDSP:
1474                 if (riscv_cpu_xlen(env) == 32) { /* C.FLWSP (RV32) */
1475                     xinsn = OPC_RISC_FLW;
1476                     xinsn = SET_RD(xinsn, GET_C_RD(insn));
1477                     access_rs1 = 2;
1478                     access_imm = GET_C_LWSP_IMM(insn);
1479                     access_size = 4;
1480                 } else { /* C.LDSP (RV64/RV128) */
1481                     xinsn = OPC_RISC_LD;
1482                     xinsn = SET_RD(xinsn, GET_C_RD(insn));
1483                     access_rs1 = 2;
1484                     access_imm = GET_C_LDSP_IMM(insn);
1485                     access_size = 8;
1486                 }
1487                 break;
1488             case OPC_RISC_C_FUNC_FSDSP_SQSP:
1489                 if (riscv_cpu_xlen(env) != 128) { /* C.FSDSP (RV32/64) */
1490                     xinsn = OPC_RISC_FSD;
1491                     xinsn = SET_RS2(xinsn, GET_C_RS2(insn));
1492                     access_rs1 = 2;
1493                     access_imm = GET_C_SDSP_IMM(insn);
1494                     access_size = 8;
1495                 }
1496                 break;
1497             case OPC_RISC_C_FUNC_SWSP: /* C.SWSP */
1498                 xinsn = OPC_RISC_SW;
1499                 xinsn = SET_RS2(xinsn, GET_C_RS2(insn));
1500                 access_rs1 = 2;
1501                 access_imm = GET_C_SWSP_IMM(insn);
1502                 access_size = 4;
1503                 break;
1504             case 7:
1505                 if (riscv_cpu_xlen(env) == 32) { /* C.FSWSP (RV32) */
1506                     xinsn = OPC_RISC_FSW;
1507                     xinsn = SET_RS2(xinsn, GET_C_RS2(insn));
1508                     access_rs1 = 2;
1509                     access_imm = GET_C_SWSP_IMM(insn);
1510                     access_size = 4;
1511                 } else { /* C.SDSP (RV64/RV128) */
1512                     xinsn = OPC_RISC_SD;
1513                     xinsn = SET_RS2(xinsn, GET_C_RS2(insn));
1514                     access_rs1 = 2;
1515                     access_imm = GET_C_SDSP_IMM(insn);
1516                     access_size = 8;
1517                 }
1518                 break;
1519             default:
1520                 break;
1521             }
1522             break;
1523         default:
1524             break;
1525         }
1526 
1527         /*
1528          * Clear Bit1 of transformed instruction to indicate that
1529          * original insruction was a 16bit instruction
1530          */
1531         xinsn &= ~((target_ulong)0x2);
1532     } else {
1533         /* Transform 32bit (or wider) instructions */
1534         switch (MASK_OP_MAJOR(insn)) {
1535         case OPC_RISC_ATOMIC:
1536             xinsn = insn;
1537             access_rs1 = GET_RS1(insn);
1538             access_size = 1 << GET_FUNCT3(insn);
1539             break;
1540         case OPC_RISC_LOAD:
1541         case OPC_RISC_FP_LOAD:
1542             xinsn = SET_I_IMM(insn, 0);
1543             access_rs1 = GET_RS1(insn);
1544             access_imm = GET_IMM(insn);
1545             access_size = 1 << GET_FUNCT3(insn);
1546             break;
1547         case OPC_RISC_STORE:
1548         case OPC_RISC_FP_STORE:
1549             xinsn = SET_S_IMM(insn, 0);
1550             access_rs1 = GET_RS1(insn);
1551             access_imm = GET_STORE_IMM(insn);
1552             access_size = 1 << GET_FUNCT3(insn);
1553             break;
1554         case OPC_RISC_SYSTEM:
1555             if (MASK_OP_SYSTEM(insn) == OPC_RISC_HLVHSV) {
1556                 xinsn = insn;
1557                 access_rs1 = GET_RS1(insn);
1558                 access_size = 1 << ((GET_FUNCT7(insn) >> 1) & 0x3);
1559                 access_size = 1 << access_size;
1560             }
1561             break;
1562         default:
1563             break;
1564         }
1565     }
1566 
1567     if (access_size) {
1568         xinsn = SET_RS1(xinsn, (taddr - (env->gpr[access_rs1] + access_imm)) &
1569                                (access_size - 1));
1570     }
1571 
1572     return xinsn;
1573 }
1574 #endif /* !CONFIG_USER_ONLY */
1575 
1576 /*
1577  * Handle Traps
1578  *
1579  * Adapted from Spike's processor_t::take_trap.
1580  *
1581  */
1582 void riscv_cpu_do_interrupt(CPUState *cs)
1583 {
1584 #if !defined(CONFIG_USER_ONLY)
1585 
1586     RISCVCPU *cpu = RISCV_CPU(cs);
1587     CPURISCVState *env = &cpu->env;
1588     bool write_gva = false;
1589     uint64_t s;
1590 
1591     /*
1592      * cs->exception is 32-bits wide unlike mcause which is XLEN-bits wide
1593      * so we mask off the MSB and separate into trap type and cause.
1594      */
1595     bool async = !!(cs->exception_index & RISCV_EXCP_INT_FLAG);
1596     target_ulong cause = cs->exception_index & RISCV_EXCP_INT_MASK;
1597     uint64_t deleg = async ? env->mideleg : env->medeleg;
1598     target_ulong tval = 0;
1599     target_ulong tinst = 0;
1600     target_ulong htval = 0;
1601     target_ulong mtval2 = 0;
1602 
1603     if  (cause == RISCV_EXCP_SEMIHOST) {
1604         do_common_semihosting(cs);
1605         env->pc += 4;
1606         return;
1607     }
1608 
1609     if (!async) {
1610         /* set tval to badaddr for traps with address information */
1611         switch (cause) {
1612         case RISCV_EXCP_LOAD_GUEST_ACCESS_FAULT:
1613         case RISCV_EXCP_STORE_GUEST_AMO_ACCESS_FAULT:
1614         case RISCV_EXCP_LOAD_ADDR_MIS:
1615         case RISCV_EXCP_STORE_AMO_ADDR_MIS:
1616         case RISCV_EXCP_LOAD_ACCESS_FAULT:
1617         case RISCV_EXCP_STORE_AMO_ACCESS_FAULT:
1618         case RISCV_EXCP_LOAD_PAGE_FAULT:
1619         case RISCV_EXCP_STORE_PAGE_FAULT:
1620             write_gva = env->two_stage_lookup;
1621             tval = env->badaddr;
1622             if (env->two_stage_indirect_lookup) {
1623                 /*
1624                  * special pseudoinstruction for G-stage fault taken while
1625                  * doing VS-stage page table walk.
1626                  */
1627                 tinst = (riscv_cpu_xlen(env) == 32) ? 0x00002000 : 0x00003000;
1628             } else {
1629                 /*
1630                  * The "Addr. Offset" field in transformed instruction is
1631                  * non-zero only for misaligned access.
1632                  */
1633                 tinst = riscv_transformed_insn(env, env->bins, tval);
1634             }
1635             break;
1636         case RISCV_EXCP_INST_GUEST_PAGE_FAULT:
1637         case RISCV_EXCP_INST_ADDR_MIS:
1638         case RISCV_EXCP_INST_ACCESS_FAULT:
1639         case RISCV_EXCP_INST_PAGE_FAULT:
1640             write_gva = env->two_stage_lookup;
1641             tval = env->badaddr;
1642             if (env->two_stage_indirect_lookup) {
1643                 /*
1644                  * special pseudoinstruction for G-stage fault taken while
1645                  * doing VS-stage page table walk.
1646                  */
1647                 tinst = (riscv_cpu_xlen(env) == 32) ? 0x00002000 : 0x00003000;
1648             }
1649             break;
1650         case RISCV_EXCP_ILLEGAL_INST:
1651         case RISCV_EXCP_VIRT_INSTRUCTION_FAULT:
1652             tval = env->bins;
1653             break;
1654         case RISCV_EXCP_BREAKPOINT:
1655             if (cs->watchpoint_hit) {
1656                 tval = cs->watchpoint_hit->hitaddr;
1657                 cs->watchpoint_hit = NULL;
1658             }
1659             break;
1660         default:
1661             break;
1662         }
1663         /* ecall is dispatched as one cause so translate based on mode */
1664         if (cause == RISCV_EXCP_U_ECALL) {
1665             assert(env->priv <= 3);
1666 
1667             if (env->priv == PRV_M) {
1668                 cause = RISCV_EXCP_M_ECALL;
1669             } else if (env->priv == PRV_S && env->virt_enabled) {
1670                 cause = RISCV_EXCP_VS_ECALL;
1671             } else if (env->priv == PRV_S && !env->virt_enabled) {
1672                 cause = RISCV_EXCP_S_ECALL;
1673             } else if (env->priv == PRV_U) {
1674                 cause = RISCV_EXCP_U_ECALL;
1675             }
1676         }
1677     }
1678 
1679     trace_riscv_trap(env->mhartid, async, cause, env->pc, tval,
1680                      riscv_cpu_get_trap_name(cause, async));
1681 
1682     qemu_log_mask(CPU_LOG_INT,
1683                   "%s: hart:"TARGET_FMT_ld", async:%d, cause:"TARGET_FMT_lx", "
1684                   "epc:0x"TARGET_FMT_lx", tval:0x"TARGET_FMT_lx", desc=%s\n",
1685                   __func__, env->mhartid, async, cause, env->pc, tval,
1686                   riscv_cpu_get_trap_name(cause, async));
1687 
1688     if (env->priv <= PRV_S &&
1689             cause < TARGET_LONG_BITS && ((deleg >> cause) & 1)) {
1690         /* handle the trap in S-mode */
1691         if (riscv_has_ext(env, RVH)) {
1692             uint64_t hdeleg = async ? env->hideleg : env->hedeleg;
1693 
1694             if (env->virt_enabled && ((hdeleg >> cause) & 1)) {
1695                 /* Trap to VS mode */
1696                 /*
1697                  * See if we need to adjust cause. Yes if its VS mode interrupt
1698                  * no if hypervisor has delegated one of hs mode's interrupt
1699                  */
1700                 if (cause == IRQ_VS_TIMER || cause == IRQ_VS_SOFT ||
1701                     cause == IRQ_VS_EXT) {
1702                     cause = cause - 1;
1703                 }
1704                 write_gva = false;
1705             } else if (env->virt_enabled) {
1706                 /* Trap into HS mode, from virt */
1707                 riscv_cpu_swap_hypervisor_regs(env);
1708                 env->hstatus = set_field(env->hstatus, HSTATUS_SPVP,
1709                                          env->priv);
1710                 env->hstatus = set_field(env->hstatus, HSTATUS_SPV, true);
1711 
1712                 htval = env->guest_phys_fault_addr;
1713 
1714                 riscv_cpu_set_virt_enabled(env, 0);
1715             } else {
1716                 /* Trap into HS mode */
1717                 env->hstatus = set_field(env->hstatus, HSTATUS_SPV, false);
1718                 htval = env->guest_phys_fault_addr;
1719             }
1720             env->hstatus = set_field(env->hstatus, HSTATUS_GVA, write_gva);
1721         }
1722 
1723         s = env->mstatus;
1724         s = set_field(s, MSTATUS_SPIE, get_field(s, MSTATUS_SIE));
1725         s = set_field(s, MSTATUS_SPP, env->priv);
1726         s = set_field(s, MSTATUS_SIE, 0);
1727         env->mstatus = s;
1728         env->scause = cause | ((target_ulong)async << (TARGET_LONG_BITS - 1));
1729         env->sepc = env->pc;
1730         env->stval = tval;
1731         env->htval = htval;
1732         env->htinst = tinst;
1733         env->pc = (env->stvec >> 2 << 2) +
1734                   ((async && (env->stvec & 3) == 1) ? cause * 4 : 0);
1735         riscv_cpu_set_mode(env, PRV_S);
1736     } else {
1737         /* handle the trap in M-mode */
1738         if (riscv_has_ext(env, RVH)) {
1739             if (env->virt_enabled) {
1740                 riscv_cpu_swap_hypervisor_regs(env);
1741             }
1742             env->mstatus = set_field(env->mstatus, MSTATUS_MPV,
1743                                      env->virt_enabled);
1744             if (env->virt_enabled && tval) {
1745                 env->mstatus = set_field(env->mstatus, MSTATUS_GVA, 1);
1746             }
1747 
1748             mtval2 = env->guest_phys_fault_addr;
1749 
1750             /* Trapping to M mode, virt is disabled */
1751             riscv_cpu_set_virt_enabled(env, 0);
1752         }
1753 
1754         s = env->mstatus;
1755         s = set_field(s, MSTATUS_MPIE, get_field(s, MSTATUS_MIE));
1756         s = set_field(s, MSTATUS_MPP, env->priv);
1757         s = set_field(s, MSTATUS_MIE, 0);
1758         env->mstatus = s;
1759         env->mcause = cause | ~(((target_ulong)-1) >> async);
1760         env->mepc = env->pc;
1761         env->mtval = tval;
1762         env->mtval2 = mtval2;
1763         env->mtinst = tinst;
1764         env->pc = (env->mtvec >> 2 << 2) +
1765                   ((async && (env->mtvec & 3) == 1) ? cause * 4 : 0);
1766         riscv_cpu_set_mode(env, PRV_M);
1767     }
1768 
1769     /*
1770      * NOTE: it is not necessary to yield load reservations here. It is only
1771      * necessary for an SC from "another hart" to cause a load reservation
1772      * to be yielded. Refer to the memory consistency model section of the
1773      * RISC-V ISA Specification.
1774      */
1775 
1776     env->two_stage_lookup = false;
1777     env->two_stage_indirect_lookup = false;
1778 #endif
1779     cs->exception_index = RISCV_EXCP_NONE; /* mark handled to qemu */
1780 }
1781