[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v5 0/7] target/riscv: Expose RV32 cpu to RV64 QEMU
From: |
Daniel Henrique Barboza |
Subject: |
Re: [PATCH v5 0/7] target/riscv: Expose RV32 cpu to RV64 QEMU |
Date: |
Fri, 12 Jul 2024 06:57:16 -0300 |
User-agent: |
Mozilla Thunderbird |
On 7/9/24 11:24 PM, LIU Zhiwei wrote:
From: 甲一 <lzw194868@alibaba-inc.com>
This patch set aims to expose 32-bit RISC-V cpu to RV64 QEMU. Thus
qemu-system-riscv64 can directly boot a RV32 Linux.
This patch set has been tested with 6.9.0 Linux Image.
And add an avocado test in tests/avocado.
Thanks for this work and sorry for the late review.
One thing to look out as a follow-up is the 'max' CPU. It has the same name
in both 32 and 64 bits so it'll result in a conflict with the 'max' CPU for
rv64.
One easy way out is to add a new 'max32' bit CPU for riscv32, which would be an
alias for the 'max' CPU, then adding 'max32' support in rv64.
Thanks,
Daniel
# make check-avocado
AVOCADO_TESTS=/home/jenkins/git/qemu/tests/avocado/boot_linux_console.py:BootLinuxConsole.test_riscv64_virt_rv32i
VENVPIP install -e /home/jenkins/git/qemu/python/
/home/jenkins/git/qemu/build/pyvenv/bin/python3 -B
/home/jenkins/git/qemu/python/scripts/mkvenv.py ensuregroup --online
/home/jenkins/git/qemu/pythondeps.toml avocado
mkvenv: checking for avocado-framework(>=88.1, <93.0)
mkvenv: checking for pycdlib>=1.11.0
mkvenv: installing avocado-framework==88.1, pycdlib>=1.11.0
AVOCADO tests/avocado
Fetching asset from
/home/jenkins/git/qemu/tests/avocado/boot_linux_console.py:BootLinuxConsole.test_riscv64_virt_rv32i
Fetching asset from
/home/jenkins/git/qemu/tests/avocado/boot_linux_console.py:BootLinuxConsole.test_riscv64_virt_rv32i
JOB ID : 8c2e1ff918d3111d078a52eba9956893afaf9e1d
JOB LOG :
/home/jenkins/git/qemu/build/tests/results/job-2024-07-10T09.55-8c2e1ff/job.log
(1/1)
/home/jenkins/git/qemu/tests/avocado/boot_linux_console.py:BootLinuxConsole.test_riscv64_virt_rv32i:
PASS (17.50 s)
RESULTS : PASS 1 | ERROR 0 | FAIL 0 | SKIP 0 | WARN 0 | INTERRUPT 0 | CANCEL 0
JOB TIME : 29.50 s
v5:
Rebase to master and add tags
v4:
Drop UL completely in PATCH v3 2/7, 4/7, 5/7.
Avocado: Add "if=none" to "-drive" option in QEMU command line
v3:
Rebase to the master branch
v2:
Remove the line that was inadvertently left in PATCH v1 4/6.
Add an avocado test.
v1:
https://mail.gnu.org/archive/html/qemu-riscv/2024-06/msg00501.html
TANG Tiancheng (7):
target/riscv: Add fw_dynamic_info32 for booting RV32 OpenSBI
target/riscv: Adjust PMP size for no-MMU RV64 QEMU running RV32
target/riscv: Correct SXL return value for RV32 in RV64 QEMU
target/riscv: Detect sxl to set bit width for RV32 in RV64
target/riscv: Correct mcause/scause bit width for RV32 in RV64 QEMU
target/riscv: Enable RV32 CPU support in RV64 QEMU
tests/avocado: Add an avocado test for riscv64
configs/targets/riscv64-softmmu.mak | 2 +-
hw/riscv/boot.c | 35 +++++++++++++++++---------
hw/riscv/sifive_u.c | 3 ++-
include/hw/riscv/boot.h | 4 ++-
include/hw/riscv/boot_opensbi.h | 29 ++++++++++++++++++++++
target/riscv/cpu.c | 17 ++++++++++---
target/riscv/cpu.h | 5 +++-
target/riscv/cpu_helper.c | 25 +++++++++++++------
target/riscv/pmp.c | 2 +-
tests/avocado/boot_linux_console.py | 38 +++++++++++++++++++++++++++++
10 files changed, 132 insertions(+), 28 deletions(-)
- [PATCH v5 2/7] target/riscv: Adjust PMP size for no-MMU RV64 QEMU running RV32, (continued)
- [PATCH v5 2/7] target/riscv: Adjust PMP size for no-MMU RV64 QEMU running RV32, LIU Zhiwei, 2024/07/09
- [PATCH v5 3/7] target/riscv: Correct SXL return value for RV32 in RV64 QEMU, LIU Zhiwei, 2024/07/09
- [PATCH v5 4/7] target/riscv: Detect sxl to set bit width for RV32 in RV64, LIU Zhiwei, 2024/07/09
- [PATCH v5 5/7] target/riscv: Correct mcause/scause bit width for RV32 in RV64 QEMU, LIU Zhiwei, 2024/07/09
- [PATCH v5 6/7] target/riscv: Enable RV32 CPU support in RV64 QEMU, LIU Zhiwei, 2024/07/09
- [PATCH v5 7/7] tests/avocado: Add an avocado test for riscv64, LIU Zhiwei, 2024/07/09
- Re: [PATCH v5 0/7] target/riscv: Expose RV32 cpu to RV64 QEMU, Alistair Francis, 2024/07/11
- Re: [PATCH v5 0/7] target/riscv: Expose RV32 cpu to RV64 QEMU,
Daniel Henrique Barboza <=