[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v8 00/12] riscv: add 'max' CPU, deprecate 'any'
From: |
Daniel Henrique Barboza |
Subject: |
[PATCH v8 00/12] riscv: add 'max' CPU, deprecate 'any' |
Date: |
Tue, 15 Aug 2023 19:37:29 -0300 |
Hi,
In this version we replaced the macros added in patch 7 and 8 with
regular functions instead.
Patches missing acks: 4,7,8
Changes from v7:
- patch 7:
- add riscv_cpu_add_qdev_prop_array() function instead of a macro
- patch 8:
- add riscv_cpu_add_kvm_unavail_prop_array() function instead of a
macro
- v7 link:
20230815201559.398643-1-dbarboza@ventanamicro.com/">https://lore.kernel.org/qemu-riscv/20230815201559.398643-1-dbarboza@ventanamicro.com/
Daniel Henrique Barboza (12):
target/riscv/cpu.c: split CPU options from riscv_cpu_extensions[]
target/riscv/cpu.c: skip 'bool' check when filtering KVM props
target/riscv/cpu.c: split kvm prop handling to its own helper
target/riscv: add DEFINE_PROP_END_OF_LIST() to riscv_cpu_options[]
target/riscv/cpu.c: split vendor exts from riscv_cpu_extensions[]
target/riscv/cpu.c: split non-ratified exts from
riscv_cpu_extensions[]
target/riscv/cpu.c: add riscv_cpu_add_qdev_prop_array()
target/riscv/cpu.c: add riscv_cpu_add_kvm_unavail_prop_array()
target/riscv/cpu.c: limit cfg->vext_spec log message
target/riscv: add 'max' CPU type
avocado, risc-v: add opensbi tests for 'max' CPU
target/riscv: deprecate the 'any' CPU type
docs/about/deprecated.rst | 12 +++
target/riscv/cpu-qom.h | 1 +
target/riscv/cpu.c | 192 +++++++++++++++++++++++++--------
tests/avocado/riscv_opensbi.py | 16 +++
4 files changed, 178 insertions(+), 43 deletions(-)
--
2.41.0
- [PATCH v8 00/12] riscv: add 'max' CPU, deprecate 'any',
Daniel Henrique Barboza <=
- [PATCH v8 01/12] target/riscv/cpu.c: split CPU options from riscv_cpu_extensions[], Daniel Henrique Barboza, 2023/08/15
- [PATCH v8 02/12] target/riscv/cpu.c: skip 'bool' check when filtering KVM props, Daniel Henrique Barboza, 2023/08/15
- [PATCH v8 03/12] target/riscv/cpu.c: split kvm prop handling to its own helper, Daniel Henrique Barboza, 2023/08/15
- [PATCH v8 04/12] target/riscv: add DEFINE_PROP_END_OF_LIST() to riscv_cpu_options[], Daniel Henrique Barboza, 2023/08/15
- [PATCH v8 05/12] target/riscv/cpu.c: split vendor exts from riscv_cpu_extensions[], Daniel Henrique Barboza, 2023/08/15
- [PATCH v8 06/12] target/riscv/cpu.c: split non-ratified exts from riscv_cpu_extensions[], Daniel Henrique Barboza, 2023/08/15
- [PATCH v8 07/12] target/riscv/cpu.c: add riscv_cpu_add_qdev_prop_array(), Daniel Henrique Barboza, 2023/08/15
- [PATCH v8 08/12] target/riscv/cpu.c: add riscv_cpu_add_kvm_unavail_prop_array(), Daniel Henrique Barboza, 2023/08/15
- [PATCH v8 09/12] target/riscv/cpu.c: limit cfg->vext_spec log message, Daniel Henrique Barboza, 2023/08/15
- [PATCH v8 10/12] target/riscv: add 'max' CPU type, Daniel Henrique Barboza, 2023/08/15