From: David Gibson <david@gibson.dropbear.id.au>
To: Gerd Hoffmann <kraxel@redhat.com>
Cc: David Gibson <dgibson@redhat.com>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v2 03/11] vga: Separate LE and BE conversion functions
Date: Tue, 30 Sep 2014 10:43:50 +1000 [thread overview]
Message-ID: <20140930004350.GB7765@voom.fritz.box> (raw)
In-Reply-To: <1411983073-13058-4-git-send-email-kraxel@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 1457 bytes --]
On Mon, Sep 29, 2014 at 11:31:04AM +0200, Gerd Hoffmann wrote:
> From: Benjamin Herrenschmidt <benh@kernel.crashing.org>
>
> Provide different functions for converting from an LE vs a BE
> framebuffer. We cannot rely on the simple cases always being
> shared surfaces since cirrus will need to always shadow for
> cursor emulation, so we need the full set of functions to
> be able to later handle runtime switching.
>
> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>\
> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
[snip]
> @@ -1572,19 +1585,19 @@ static void vga_draw_graphic(VGACommonState *s, int full_update)
> bits = 8;
> break;
> case 15:
> - v = VGA_DRAW_LINE15;
> + v = big_endian_fb ? VGA_DRAW_LINE15_BE : VGA_DRAW_LINE15_LE;
> bits = 16;
> break;
> case 16:
> - v = VGA_DRAW_LINE16;
> + v = big_endian_fb ? VGA_DRAW_LINE16_BE : VGA_DRAW_LINE16_LE;
> bits = 16;
> break;
So, v1 changed both of these cases to bits = 15, which looked wrong
for case 16. v2 changes neither, which looks wrong for case 15. Or
is there a reason it should be 16 for case 15?
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
[-- Attachment #2: Type: application/pgp-signature, Size: 819 bytes --]
next prev parent reply other threads:[~2014-09-30 0:53 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-29 9:31 [Qemu-devel] [PATCH v2 00/11] vga: cleanup and endianness patch series Gerd Hoffmann
2014-09-29 9:31 ` [Qemu-devel] [PATCH v2 01/11] vga: Start cutting out non-32bpp conversion support Gerd Hoffmann
2014-09-29 9:31 ` [Qemu-devel] [PATCH v2 02/11] vga: Remove remainder of old conversion cruft Gerd Hoffmann
2014-09-29 9:31 ` [Qemu-devel] [PATCH v2 03/11] vga: Separate LE and BE conversion functions Gerd Hoffmann
2014-09-30 0:43 ` David Gibson [this message]
2014-09-30 7:59 ` Gerd Hoffmann
2014-09-30 8:07 ` David Gibson
2014-09-29 9:31 ` [Qemu-devel] [PATCH v2 04/11] vga: Remove rgb_to_pixel indirection Gerd Hoffmann
2014-09-29 9:31 ` [Qemu-devel] [PATCH v2 05/11] vga: Simplify vga_draw_blank() a bit Gerd Hoffmann
2014-09-29 9:31 ` [Qemu-devel] [PATCH v2 06/11] cirrus: Remove non-32bpp cursor drawing Gerd Hoffmann
2014-09-29 9:31 ` [Qemu-devel] [PATCH v2 07/11] vga: Remove some "should be done in BIOS" comments Gerd Hoffmann
2014-09-29 9:31 ` [Qemu-devel] [PATCH v2 08/11] vga: Rename vga_template.h to vga-helpers.h Gerd Hoffmann
2014-09-29 9:31 ` [Qemu-devel] [PATCH v2 09/11] vga: Make fb endian a common state variable Gerd Hoffmann
2014-09-29 9:31 ` [Qemu-devel] [PATCH v2 10/11] vga: Add endian control register Gerd Hoffmann
2014-09-30 0:45 ` David Gibson
2014-09-30 10:56 ` Gerd Hoffmann
2014-09-29 9:31 ` [Qemu-devel] [PATCH v2 11/11] vga-pci: add qext region to mmio Gerd Hoffmann
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=20140930004350.GB7765@voom.fritz.box \
--to=david@gibson.dropbear.id.au \
--cc=dgibson@redhat.com \
--cc=kraxel@redhat.com \
--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).