[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v6 2/8] target/riscv: Adjust PMP size for no-MMU RV64 QEMU runnin
From: |
LIU Zhiwei |
Subject: |
[PATCH v6 2/8] target/riscv: Adjust PMP size for no-MMU RV64 QEMU running RV32 |
Date: |
Sat, 20 Jul 2024 07:11:43 +0800 |
From: TANG Tiancheng <tangtiancheng.ttc@alibaba-inc.com>
Ensure pmp_size is correctly determined using mxl for RV32
in RV64 QEMU.
Signed-off-by: TANG Tiancheng <tangtiancheng.ttc@alibaba-inc.com>
Reviewed-by: Liu Zhiwei <zhiwei_liu@linux.alibaba.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
---
target/riscv/pmp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target/riscv/pmp.c b/target/riscv/pmp.c
index 9eea397e72..5e74b7220f 100644
--- a/target/riscv/pmp.c
+++ b/target/riscv/pmp.c
@@ -326,7 +326,7 @@ bool pmp_hart_has_privs(CPURISCVState *env, hwaddr addr,
*/
pmp_size = -(addr | TARGET_PAGE_MASK);
} else {
- pmp_size = sizeof(target_ulong);
+ pmp_size = 2 << riscv_cpu_mxl(env);
}
} else {
pmp_size = size;
--
2.25.1
- [PATCH v6 0/8] target/riscv: Expose RV32 cpu to RV64 QEMU, LIU Zhiwei, 2024/07/19
- [PATCH v6 1/8] target/riscv: Add fw_dynamic_info32 for booting RV32 OpenSBI, LIU Zhiwei, 2024/07/19
- [PATCH v6 2/8] target/riscv: Adjust PMP size for no-MMU RV64 QEMU running RV32,
LIU Zhiwei <=
- [PATCH v6 3/8] target/riscv: Correct SXL return value for RV32 in RV64 QEMU, LIU Zhiwei, 2024/07/19
- [PATCH v6 4/8] target/riscv: Detect sxl to set bit width for RV32 in RV64, LIU Zhiwei, 2024/07/19
- [PATCH v6 5/8] target/riscv: Correct mcause/scause bit width for RV32 in RV64 QEMU, LIU Zhiwei, 2024/07/19
- [PATCH v6 6/8] target/riscv: Enable RV32 CPU support in RV64 QEMU, LIU Zhiwei, 2024/07/19
- [PATCH v6 7/8] target/riscv: Add any32 and max32 CPU for RV64 QEMU, LIU Zhiwei, 2024/07/19
- [PATCH v6 8/8] tests/avocado: Boot Linux for RV32 cpu on RV64 QEMU, LIU Zhiwei, 2024/07/19