From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=209.132.183.28; helo=mx1.redhat.com; envelope-from=lersek@redhat.com; receiver=edk2-devel@lists.01.org Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 0D79321180F30 for ; Fri, 9 Nov 2018 11:44:29 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 4FFC158E31; Fri, 9 Nov 2018 19:44:28 +0000 (UTC) Received: from lacos-laptop-7.usersys.redhat.com (ovpn-126-98.rdu2.redhat.com [10.10.126.98]) by smtp.corp.redhat.com (Postfix) with ESMTP id 3D6B86013F; Fri, 9 Nov 2018 19:44:23 +0000 (UTC) From: Laszlo Ersek To: edk2-devel@lists.01.org Cc: Anthony Perard , Ard Biesheuvel , Jordan Justen , Julien Grall , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , yuchenlin Date: Fri, 9 Nov 2018 20:44:15 +0100 Message-Id: <20181109194419.24750-1-lersek@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.39]); Fri, 09 Nov 2018 19:44:28 +0000 (UTC) Subject: [PATCH 0/4] OvmfPkg: revert some untimely pushed VMW SVGA reverts X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Nov 2018 19:44:29 -0000 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Repo: https://github.com/lersek/edk2.git Branch: revert_revert_bz_1319 Not much to say here, I've written it up in . One way to verify this series quickly is: > $ git diff 62ea70e31285..revert_revert_bz_1319 -- OvmfPkg/ > [nothing] Thanks, and sorry about the churn Laszlo Cc: Anthony Perard Cc: Ard Biesheuvel Cc: Jordan Justen Cc: Julien Grall Cc: Philippe Mathieu-Daudé Cc: yuchenlin Laszlo Ersek (4): Reapply "OvmfPkg: VMWare SVGA display device register definitions" Reapply "OvmfPkg/QemuVideoDxe: Helper functions for unaligned port I/O." Reapply "OvmfPkg/QemuVideoDxe: VMWare SVGA device support" Reapply "OvmfPkg/QemuVideoDxe: list "UnalignedIoInternal.h" in the INF file" OvmfPkg/Include/IndustryStandard/VmwareSvga.h | 104 +++++++++++++ OvmfPkg/QemuVideoDxe/Driver.c | 135 ++++++++++++++++- OvmfPkg/QemuVideoDxe/Gop.c | 65 +++++++- OvmfPkg/QemuVideoDxe/Initialize.c | 157 ++++++++++++++++++++ OvmfPkg/QemuVideoDxe/Qemu.h | 29 ++++ OvmfPkg/QemuVideoDxe/QemuVideoDxe.inf | 7 + OvmfPkg/QemuVideoDxe/UnalignedIoGcc.c | 70 +++++++++ OvmfPkg/QemuVideoDxe/UnalignedIoIcc.c | 80 ++++++++++ OvmfPkg/QemuVideoDxe/UnalignedIoInternal.h | 59 ++++++++ OvmfPkg/QemuVideoDxe/UnalignedIoMsc.c | 78 ++++++++++ OvmfPkg/QemuVideoDxe/UnalignedIoUnsupported.c | 66 ++++++++ 11 files changed, 843 insertions(+), 7 deletions(-) create mode 100644 OvmfPkg/Include/IndustryStandard/VmwareSvga.h create mode 100644 OvmfPkg/QemuVideoDxe/UnalignedIoGcc.c create mode 100644 OvmfPkg/QemuVideoDxe/UnalignedIoIcc.c create mode 100644 OvmfPkg/QemuVideoDxe/UnalignedIoInternal.h create mode 100644 OvmfPkg/QemuVideoDxe/UnalignedIoMsc.c create mode 100644 OvmfPkg/QemuVideoDxe/UnalignedIoUnsupported.c -- 2.19.1.3.g30247aa5d201