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 5DDA721959CB2 for ; Mon, 12 Nov 2018 03:36:15 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id B08357AE9A; Mon, 12 Nov 2018 11:36:14 +0000 (UTC) Received: from lacos-laptop-7.usersys.redhat.com (ovpn-120-236.rdu2.redhat.com [10.10.120.236]) by smtp.corp.redhat.com (Postfix) with ESMTP id CCAD61974D; Mon, 12 Nov 2018 11:36:13 +0000 (UTC) From: Laszlo Ersek To: edk2-devel@lists.01.org Cc: Jordan Justen , Anthony Perard References: <20181109194419.24750-1-lersek@redhat.com> Message-ID: Date: Mon, 12 Nov 2018 12:36:12 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 In-Reply-To: <20181109194419.24750-1-lersek@redhat.com> X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.25]); Mon, 12 Nov 2018 11:36:14 +0000 (UTC) Subject: Re: [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: Mon, 12 Nov 2018 11:36:15 -0000 Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit On 11/09/18 20:44, Laszlo Ersek wrote: > 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 > Thanks all for the quick feedback; pushed as commit range ade71c52a49d..246604e3a46d. Laszlo