From: "Alex Bennée" <alex.bennee@linaro.org>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: qemu-arm@nongnu.org, qemu-devel@nongnu.org, patches@linaro.org,
"Igor Mammedov" <imammedo@redhat.com>,
"Philippe Mathieu-Daudé" <f4bug@amsat.org>
Subject: Re: [Qemu-devel] [PATCH v3 6/6] hw/arm/virt: Support -machine gic-version=max
Date: Fri, 09 Mar 2018 13:50:07 +0000 [thread overview]
Message-ID: <871sgtl5o0.fsf@linaro.org> (raw)
In-Reply-To: <20180308130626.12393-7-peter.maydell@linaro.org>
Peter Maydell <peter.maydell@linaro.org> writes:
> Add support for passing 'max' to -machine gic-version. By analogy
> with the -cpu max option, this picks the "best available" GIC version
> whether you're using KVM or TCG, so it behaves like 'host' when
> using KVM, and gives you GICv3 when using TCG.
>
> Also like '-cpu host', using -machine gic-version=max' means there
> is no guarantee of migration compatibility between QEMU versions;
> in future 'max' might mean '4'.
>
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
> hw/arm/virt.c | 29 +++++++++++++++++++----------
> 1 file changed, 19 insertions(+), 10 deletions(-)
>
> diff --git a/hw/arm/virt.c b/hw/arm/virt.c
> index cda4b83586..2c07245047 100644
> --- a/hw/arm/virt.c
> +++ b/hw/arm/virt.c
> @@ -1207,16 +1207,23 @@ static void machvirt_init(MachineState *machine)
> /* We can probe only here because during property set
> * KVM is not available yet
> */
> - if (!vms->gic_version) {
> + if (vms->gic_version <= 0) {
> + /* "host" or "max" */
> if (!kvm_enabled()) {
> - error_report("gic-version=host requires KVM");
> - exit(1);
> - }
> -
> - vms->gic_version = kvm_arm_vgic_probe();
> - if (!vms->gic_version) {
> - error_report("Unable to determine GIC version supported by host");
> - exit(1);
> + if (vms->gic_version == 0) {
> + error_report("gic-version=host requires KVM");
> + exit(1);
> + } else {
> + /* "max": currently means 3 for TCG */
> + vms->gic_version = 3;
> + }
> + } else {
> + vms->gic_version = kvm_arm_vgic_probe();
> + if (!vms->gic_version) {
> + error_report(
> + "Unable to determine GIC version supported by host");
> + exit(1);
> + }
> }
> }
>
> @@ -1480,9 +1487,11 @@ static void virt_set_gic_version(Object *obj, const char *value, Error **errp)
> vms->gic_version = 2;
> } else if (!strcmp(value, "host")) {
> vms->gic_version = 0; /* Will probe later */
> + } else if (!strcmp(value, "max")) {
> + vms->gic_version = -1; /* Will probe later */
> } else {
> error_setg(errp, "Invalid gic-version value");
> - error_append_hint(errp, "Valid values are 3, 2, host.\n");
> + error_append_hint(errp, "Valid values are 3, 2, host,
> max.\n");
nit: host is only valid on aarch64 host. However it will fail later on
with:
qemu-system-aarch64: gic-version=host requires KVM
Anyway:
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
--
Alex Bennée
next prev parent reply other threads:[~2018-03-09 13:50 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-08 13:06 [Qemu-devel] [PATCH v3 0/6] arm: support -cpu max (and gic-version=max) Peter Maydell
2018-03-08 13:06 ` [Qemu-devel] [PATCH v3 1/6] target/arm: Query host CPU features on-demand at instance init Peter Maydell
2018-03-08 15:53 ` Alex Bennée
2018-03-08 13:06 ` [Qemu-devel] [PATCH v3 2/6] target/arm: Move definition of 'host' cpu type into cpu.c Peter Maydell
2018-03-08 15:55 ` Alex Bennée
2018-03-08 13:06 ` [Qemu-devel] [PATCH v3 3/6] target/arm: Add "-cpu max" support Peter Maydell
2018-03-08 18:58 ` Alex Bennée
2018-03-09 16:07 ` Philippe Mathieu-Daudé
2018-03-08 13:06 ` [Qemu-devel] [PATCH v3 4/6] target/arm: Make 'any' CPU just an alias for 'max' Peter Maydell
2018-03-09 13:45 ` Alex Bennée
2018-03-09 16:48 ` Philippe Mathieu-Daudé
2018-03-08 13:06 ` [Qemu-devel] [PATCH v3 5/6] hw/arm/virt: Add "max" to the list of CPU types "virt" supports Peter Maydell
2018-03-09 13:46 ` Alex Bennée
2018-03-09 16:49 ` Philippe Mathieu-Daudé
2018-03-08 13:06 ` [Qemu-devel] [PATCH v3 6/6] hw/arm/virt: Support -machine gic-version=max Peter Maydell
2018-03-09 13:50 ` Alex Bennée [this message]
2018-03-09 13:53 ` Peter Maydell
2018-03-09 13:52 ` [Qemu-devel] [PATCH v3 0/6] arm: support -cpu max (and gic-version=max) Alex Bennée
2018-03-09 13:55 ` Peter Maydell
2018-03-09 16:59 ` Alex Bennée
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=871sgtl5o0.fsf@linaro.org \
--to=alex.bennee@linaro.org \
--cc=f4bug@amsat.org \
--cc=imammedo@redhat.com \
--cc=patches@linaro.org \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).