forked from Mirrors/opensbi
include: Extend get_insn() to read instruction from VS/VU mode
Current implementation of get_insn() is not suitable for reading instruction from VS/VU mode because we have to set SSTATUS_MXR bit in VSSTATUS CSR for reading instruction from VS/VU mode. This patch extends get_insn() to read instruction from VS/VU mode. Signed-off-by: Anup Patel <anup.patel@wdc.com> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
@@ -43,7 +43,7 @@ DECLARE_UNPRIVILEGED_LOAD_FUNCTION(u64)
|
|||||||
DECLARE_UNPRIVILEGED_STORE_FUNCTION(u64)
|
DECLARE_UNPRIVILEGED_STORE_FUNCTION(u64)
|
||||||
DECLARE_UNPRIVILEGED_LOAD_FUNCTION(ulong)
|
DECLARE_UNPRIVILEGED_LOAD_FUNCTION(ulong)
|
||||||
|
|
||||||
ulong get_insn(ulong mepc, struct sbi_scratch *scratch,
|
ulong get_insn(ulong mepc, bool virt, struct sbi_scratch *scratch,
|
||||||
struct unpriv_trap *trap);
|
struct unpriv_trap *trap);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@@ -97,20 +97,22 @@ void store_u64(u64 *addr, u64 val,
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
ulong get_insn(ulong mepc, struct sbi_scratch *scratch,
|
ulong get_insn(ulong mepc, bool virt, struct sbi_scratch *scratch,
|
||||||
struct unpriv_trap *trap)
|
struct unpriv_trap *trap)
|
||||||
{
|
{
|
||||||
ulong __mstatus = 0, val = 0;
|
ulong __mstatus = 0, __vsstatus = 0, val = 0;
|
||||||
#ifdef __riscv_compressed
|
#ifdef __riscv_compressed
|
||||||
ulong rvc_mask = 3, tmp;
|
ulong rvc_mask = 3, tmp;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (trap) {
|
trap->ilen = 4;
|
||||||
trap->ilen = 4;
|
trap->cause = 0;
|
||||||
trap->cause = 0;
|
trap->tval = 0;
|
||||||
trap->tval = 0;
|
sbi_hart_set_trap_info(scratch, trap);
|
||||||
sbi_hart_set_trap_info(scratch, trap);
|
|
||||||
}
|
if (virt)
|
||||||
|
__vsstatus = csr_read_set(CSR_VSSTATUS, SSTATUS_MXR);
|
||||||
|
|
||||||
#ifndef __riscv_compressed
|
#ifndef __riscv_compressed
|
||||||
asm("csrrs %[mstatus], " STR(CSR_MSTATUS) ", %[mprv]\n"
|
asm("csrrs %[mstatus], " STR(CSR_MSTATUS) ", %[mprv]\n"
|
||||||
#if __riscv_xlen == 64
|
#if __riscv_xlen == 64
|
||||||
@@ -134,21 +136,23 @@ ulong get_insn(ulong mepc, struct sbi_scratch *scratch,
|
|||||||
: [mprv] "r"(MSTATUS_MPRV | MSTATUS_MXR), [addr] "r"(mepc),
|
: [mprv] "r"(MSTATUS_MPRV | MSTATUS_MXR), [addr] "r"(mepc),
|
||||||
[rvc_mask] "r"(rvc_mask));
|
[rvc_mask] "r"(rvc_mask));
|
||||||
#endif
|
#endif
|
||||||
if (trap) {
|
|
||||||
sbi_hart_set_trap_info(scratch, NULL);
|
if (virt)
|
||||||
switch (trap->cause) {
|
csr_write(CSR_VSSTATUS, __vsstatus);
|
||||||
case CAUSE_LOAD_ACCESS:
|
|
||||||
trap->cause = CAUSE_FETCH_ACCESS;
|
sbi_hart_set_trap_info(scratch, NULL);
|
||||||
trap->tval = mepc;
|
switch (trap->cause) {
|
||||||
break;
|
case CAUSE_LOAD_ACCESS:
|
||||||
case CAUSE_LOAD_PAGE_FAULT:
|
trap->cause = CAUSE_FETCH_ACCESS;
|
||||||
trap->cause = CAUSE_FETCH_PAGE_FAULT;
|
trap->tval = mepc;
|
||||||
trap->tval = mepc;
|
break;
|
||||||
break;
|
case CAUSE_LOAD_PAGE_FAULT:
|
||||||
default:
|
trap->cause = CAUSE_FETCH_PAGE_FAULT;
|
||||||
break;
|
trap->tval = mepc;
|
||||||
};
|
break;
|
||||||
}
|
default:
|
||||||
|
break;
|
||||||
|
};
|
||||||
|
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
|
@@ -130,12 +130,17 @@ int sbi_illegal_insn_handler(u32 hartid, ulong mcause,
|
|||||||
struct sbi_trap_regs *regs,
|
struct sbi_trap_regs *regs,
|
||||||
struct sbi_scratch *scratch)
|
struct sbi_scratch *scratch)
|
||||||
{
|
{
|
||||||
ulong insn = csr_read(mbadaddr);
|
ulong insn = csr_read(CSR_MTVAL);
|
||||||
|
#if __riscv_xlen == 32
|
||||||
|
bool virt = (regs->mstatusH & MSTATUSH_MPV) ? TRUE : FALSE;
|
||||||
|
#else
|
||||||
|
bool virt = (regs->mstatus & MSTATUS_MPV) ? TRUE : FALSE;
|
||||||
|
#endif
|
||||||
struct unpriv_trap uptrap;
|
struct unpriv_trap uptrap;
|
||||||
|
|
||||||
if (unlikely((insn & 3) != 3)) {
|
if (unlikely((insn & 3) != 3)) {
|
||||||
if (insn == 0) {
|
if (insn == 0) {
|
||||||
insn = get_insn(regs->mepc, scratch, &uptrap);
|
insn = get_insn(regs->mepc, virt, scratch, &uptrap);
|
||||||
if (uptrap.cause)
|
if (uptrap.cause)
|
||||||
return sbi_trap_redirect(regs, scratch,
|
return sbi_trap_redirect(regs, scratch,
|
||||||
regs->mepc, uptrap.cause, uptrap.tval);
|
regs->mepc, uptrap.cause, uptrap.tval);
|
||||||
|
@@ -27,9 +27,14 @@ int sbi_misaligned_load_handler(u32 hartid, ulong mcause,
|
|||||||
{
|
{
|
||||||
union reg_data val;
|
union reg_data val;
|
||||||
struct unpriv_trap uptrap;
|
struct unpriv_trap uptrap;
|
||||||
ulong insn = get_insn(regs->mepc, scratch, &uptrap);
|
|
||||||
ulong addr = csr_read(CSR_MTVAL);
|
ulong addr = csr_read(CSR_MTVAL);
|
||||||
int i, fp = 0, shift = 0, len = 0;
|
int i, fp = 0, shift = 0, len = 0;
|
||||||
|
#if __riscv_xlen == 32
|
||||||
|
bool virt = (regs->mstatusH & MSTATUSH_MPV) ? TRUE : FALSE;
|
||||||
|
#else
|
||||||
|
bool virt = (regs->mstatus & MSTATUS_MPV) ? TRUE : FALSE;
|
||||||
|
#endif
|
||||||
|
ulong insn = get_insn(regs->mepc, virt, scratch, &uptrap);
|
||||||
|
|
||||||
if (uptrap.cause)
|
if (uptrap.cause)
|
||||||
return sbi_trap_redirect(regs, scratch, regs->mepc,
|
return sbi_trap_redirect(regs, scratch, regs->mepc,
|
||||||
@@ -129,9 +134,14 @@ int sbi_misaligned_store_handler(u32 hartid, ulong mcause,
|
|||||||
{
|
{
|
||||||
union reg_data val;
|
union reg_data val;
|
||||||
struct unpriv_trap uptrap;
|
struct unpriv_trap uptrap;
|
||||||
ulong insn = get_insn(regs->mepc, scratch, &uptrap);
|
|
||||||
ulong addr = csr_read(CSR_MTVAL);
|
ulong addr = csr_read(CSR_MTVAL);
|
||||||
int i, len = 0;
|
int i, len = 0;
|
||||||
|
#if __riscv_xlen == 32
|
||||||
|
bool virt = (regs->mstatusH & MSTATUSH_MPV) ? TRUE : FALSE;
|
||||||
|
#else
|
||||||
|
bool virt = (regs->mstatus & MSTATUS_MPV) ? TRUE : FALSE;
|
||||||
|
#endif
|
||||||
|
ulong insn = get_insn(regs->mepc, virt, scratch, &uptrap);
|
||||||
|
|
||||||
if (uptrap.cause)
|
if (uptrap.cause)
|
||||||
return sbi_trap_redirect(regs, scratch, regs->mepc,
|
return sbi_trap_redirect(regs, scratch, regs->mepc,
|
||||||
|
Reference in New Issue
Block a user