From: Michael Roth <mdroth@linux.vnet.ibm.com>
To: David Gibson <david@gibson.dropbear.id.au>,
agraf@suse.de, kraxel@redhat.com, benh@kernel.crashing.org
Cc: aik@ozlabs.ru, qemu-ppc@nongnu.org, qemu-devel@nongnu.org,
mdroth@us.ibm.com
Subject: Re: [Qemu-devel] [PATCH 2/2] pseries: Switch VGA endian on H_SET_MODE
Date: Tue, 17 Feb 2015 11:03:21 -0600 [thread overview]
Message-ID: <20150217170321.17930.63434@loki> (raw)
In-Reply-To: <1423542976-8825-3-git-send-email-david@gibson.dropbear.id.au>
Quoting David Gibson (2015-02-09 22:36:16)
> When the guest switches the interrupt endian mode, which essentially
> means a global machine endian switch, we want to change the VGA
> framebuffer endian mode as well in order to be backward compatible
> with existing guests who don't know about the new endian control
> register.
>
> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
I think maybe Gerd's review applied to the whole series, but:
Reviewed-by: Michael Roth <mdroth@linux.vnet.ibm.com>
> ---
> hw/ppc/spapr_hcall.c | 2 ++
> hw/ppc/spapr_pci.c | 28 ++++++++++++++++++++++++++++
> include/hw/ppc/spapr.h | 1 +
> 3 files changed, 31 insertions(+)
>
> diff --git a/hw/ppc/spapr_hcall.c b/hw/ppc/spapr_hcall.c
> index 8651447..4f76f1c 100644
> --- a/hw/ppc/spapr_hcall.c
> +++ b/hw/ppc/spapr_hcall.c
> @@ -731,12 +731,14 @@ static target_ulong h_set_mode_resource_le(PowerPCCPU *cpu,
> CPU_FOREACH(cs) {
> set_spr(cs, SPR_LPCR, 0, LPCR_ILE);
> }
> + spapr_pci_switch_vga(true);
> return H_SUCCESS;
>
> case H_SET_MODE_ENDIAN_LITTLE:
> CPU_FOREACH(cs) {
> set_spr(cs, SPR_LPCR, LPCR_ILE, LPCR_ILE);
> }
> + spapr_pci_switch_vga(false);
> return H_SUCCESS;
> }
>
> diff --git a/hw/ppc/spapr_pci.c b/hw/ppc/spapr_pci.c
> index 21b95b3..acf9e82 100644
> --- a/hw/ppc/spapr_pci.c
> +++ b/hw/ppc/spapr_pci.c
> @@ -966,3 +966,31 @@ static void spapr_pci_register_types(void)
> }
>
> type_init(spapr_pci_register_types)
> +
> +static int spapr_switch_one_vga(DeviceState *dev, void *opaque)
> +{
> + bool be = *(bool *)opaque;
> +
> + if (object_dynamic_cast(OBJECT(dev), "VGA")
> + || object_dynamic_cast(OBJECT(dev), "secondary-vga")) {
> + object_property_set_bool(OBJECT(dev), be, "big-endian-framebuffer",
> + &error_abort);
> + }
> + return 0;
> +}
> +
> +void spapr_pci_switch_vga(bool big_endian)
> +{
> + sPAPRPHBState *sphb;
> +
> + /*
> + * For backward compatibility with existing guests, we switch
> + * the endianness of the VGA controller when changing the guest
> + * interrupt mode
> + */
> + QLIST_FOREACH(sphb, &spapr->phbs, list) {
> + BusState *bus = &PCI_HOST_BRIDGE(sphb)->bus->qbus;
> + qbus_walk_children(bus, spapr_switch_one_vga, NULL, NULL, NULL,
> + &big_endian);
> + }
> +}
> diff --git a/include/hw/ppc/spapr.h b/include/hw/ppc/spapr.h
> index 716bff4..6aadc94 100644
> --- a/include/hw/ppc/spapr.h
> +++ b/include/hw/ppc/spapr.h
> @@ -480,5 +480,6 @@ int spapr_dma_dt(void *fdt, int node_off, const char *propname,
> uint32_t liobn, uint64_t window, uint32_t size);
> int spapr_tcet_dma_dt(void *fdt, int node_off, const char *propname,
> sPAPRTCETable *tcet);
> +void spapr_pci_switch_vga(bool big_endian);
>
> #endif /* !defined (__HW_SPAPR_H__) */
> --
> 2.1.0
next prev parent reply other threads:[~2015-02-17 17:04 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-10 4:36 [Qemu-devel] [PATCH 0/2] ppc: Automatically set vga framebuffer endianness based on guest David Gibson
2015-02-10 4:36 ` [Qemu-devel] [PATCH 1/2] vga: Expose framebuffer byteorder as a QOM property David Gibson
2015-02-10 9:19 ` Gerd Hoffmann
2015-02-10 10:58 ` David Gibson
2015-02-10 4:36 ` [Qemu-devel] [PATCH 2/2] pseries: Switch VGA endian on H_SET_MODE David Gibson
2015-02-17 17:03 ` Michael Roth [this message]
2015-02-20 14:11 ` [Qemu-devel] [PATCH 0/2] ppc: Automatically set vga framebuffer endianness based on guest Alexander Graf
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=20150217170321.17930.63434@loki \
--to=mdroth@linux.vnet.ibm.com \
--cc=agraf@suse.de \
--cc=aik@ozlabs.ru \
--cc=benh@kernel.crashing.org \
--cc=david@gibson.dropbear.id.au \
--cc=kraxel@redhat.com \
--cc=mdroth@us.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.