[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 0/3] Enable -cpu <cpu>,help
From: |
Dinah Baum |
Subject: |
[PATCH v2 0/3] Enable -cpu <cpu>,help |
Date: |
Tue, 14 Mar 2023 06:00:23 -0400 |
Part 1 is a refactor/code motion patch for
qapi/machine target required for setup of
Part 2 which enables query-cpu-model-expansion
on all architectures
Part 3 implements the '<cpu>,help' feature
Limitations:
Currently only 'FULL' expansion queries are implemented since
that's the only type enabled on the architectures that
allow feature probing
Unlike the 'device,help' command, default values aren't
printed
Dinah Baum (3):
qapi/machine-target: refactor machine-target
cpu, qapi, target/arm, i386, s390x: Generalize
query-cpu-model-expansion
cpu, qdict, vl: Enable printing options for CPU type
MAINTAINERS | 1 +
cpu.c | 61 +++++++++++++++
include/exec/cpu-common.h | 10 +++
include/qapi/qmp/qdict.h | 2 +
qapi/machine-target-common.json | 130 +++++++++++++++++++++++++++++++
qapi/machine-target.json | 129 +-----------------------------
qapi/meson.build | 1 +
qemu-options.hx | 7 +-
qobject/qdict.c | 5 ++
softmmu/vl.c | 36 ++++++++-
target/arm/arm-qmp-cmds.c | 7 +-
target/arm/cpu.h | 7 +-
target/i386/cpu-sysemu.c | 7 +-
target/i386/cpu.h | 6 ++
target/s390x/cpu.h | 7 ++
target/s390x/cpu_models_sysemu.c | 6 +-
16 files changed, 278 insertions(+), 144 deletions(-)
create mode 100644 qapi/machine-target-common.json
--
2.30.2
- [PATCH v2 0/3] Enable -cpu <cpu>,help,
Dinah Baum <=
- [PATCH v2 1/3] qapi/machine-target: refactor machine-target, Dinah Baum, 2023/03/14
- [PATCH v2 2/3] cpu, qapi, target/arm, i386, s390x: Generalize query-cpu-model-expansion, Dinah Baum, 2023/03/14
- [PATCH v2 3/3] cpu, qdict, vl: Enable printing options for CPU type, Dinah Baum, 2023/03/14
- Re: [PATCH v2 0/3] Enable -cpu <cpu>,help, Dinah B, 2023/03/21