From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48239) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XYXJK-0000T4-Lc for qemu-devel@nongnu.org; Mon, 29 Sep 2014 05:32:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XYXJA-0007jV-4m for qemu-devel@nongnu.org; Mon, 29 Sep 2014 05:32:02 -0400 Received: from mx1.redhat.com ([209.132.183.28]:51869) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XYXJ9-0007iC-U2 for qemu-devel@nongnu.org; Mon, 29 Sep 2014 05:31:52 -0400 From: Gerd Hoffmann Date: Mon, 29 Sep 2014 11:31:01 +0200 Message-Id: <1411983073-13058-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH v2 00/11] vga: cleanup and endianness patch series List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann , David Gibson Hi, Here comes v2 of the vga patches, this time the two patch series combined into one. Fixed issues found by David Gibson in review, fixed some codestyle issues. Nothing major. Should be ready for merge now, /me plans to send a pull req later this week, possibly excluding patch #11 as I'd like to have ppc64le testing feedback for that one first. please review, Gerd Benjamin Herrenschmidt (10): vga: Start cutting out non-32bpp conversion support vga: Remove remainder of old conversion cruft vga: Separate LE and BE conversion functions vga: Remove rgb_to_pixel indirection vga: Simplify vga_draw_blank() a bit cirrus: Remove non-32bpp cursor drawing vga: Remove some "should be done in BIOS" comments vga: Rename vga_template.h to vga-helpers.h vga: Make fb endian a common state variable vga: Add endian control register Gerd Hoffmann (1): vga-pci: add qext region to mmio docs/specs/standard-vga.txt | 9 + hw/display/cirrus_vga.c | 79 +++--- hw/display/cirrus_vga_template.h | 102 ------- hw/display/{vga_template.h => vga-helpers.h} | 318 +++++++++++----------- hw/display/vga-pci.c | 68 +++++ hw/display/vga.c | 382 +++++++-------------------- hw/display/vga_int.h | 5 +- include/hw/i386/pc.h | 8 + 8 files changed, 381 insertions(+), 590 deletions(-) delete mode 100644 hw/display/cirrus_vga_template.h rename hw/display/{vga_template.h => vga-helpers.h} (52%) -- 1.8.3.1