From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=66.187.233.73; helo=mx1.redhat.com; envelope-from=kraxel@redhat.com; receiver=edk2-devel@lists.01.org Received: from mx1.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) (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 61BF521155D50 for ; Tue, 12 Jun 2018 02:31:32 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.rdu2.redhat.com [10.11.54.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id AF8CE402A58C for ; Tue, 12 Jun 2018 09:31:31 +0000 (UTC) Received: from sirius.home.kraxel.org (ovpn-116-109.ams2.redhat.com [10.36.116.109]) by smtp.corp.redhat.com (Postfix) with ESMTP id 3D1C910191; Tue, 12 Jun 2018 09:31:29 +0000 (UTC) Received: by sirius.home.kraxel.org (Postfix, from userid 1000) id 9AD2911AB8; Tue, 12 Jun 2018 11:31:28 +0200 (CEST) From: Gerd Hoffmann To: edk2-devel@lists.01.org Date: Tue, 12 Jun 2018 11:31:13 +0200 Message-Id: <20180612093117.27028-1-kraxel@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.11.54.5 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.11.55.6]); Tue, 12 Jun 2018 09:31:31 +0000 (UTC) X-Greylist: inspected by milter-greylist-4.5.16 (mx1.redhat.com [10.11.55.6]); Tue, 12 Jun 2018 09:31:31 +0000 (UTC) for IP:'10.11.54.5' DOMAIN:'int-mx05.intmail.prod.int.rdu2.redhat.com' HELO:'smtp.corp.redhat.com' FROM:'kraxel@redhat.com' RCPT:'' Subject: [PATCH v2 0/4] Add QemuRamfbDxe driver X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Jun 2018 09:31:32 -0000 Hi, This is the efi driver for qemu ramfb, a simple boot framebuffer. Qemu patches just have been posted to qemu-devel. v2: tons of codestyle fixes, some control flow tweaks. cheers, Gerd Gerd Hoffmann (4): OvmfPkg: add QEMU_RAMFB_GUID OvmfPkg: add QemuRamfbDxe OvmfPkg: add QemuRamfb to platform console ArmVirtPkg: add QemuRamfbDxe OvmfPkg/Include/Guid/QemuRamfb.h | 25 ++ .../Library/PlatformBootManagerLib/PlatformData.c | 51 +++ OvmfPkg/QemuRamfbDxe/QemuRamfb.c | 396 +++++++++++++++++++++ ArmVirtPkg/ArmVirtQemu.dsc | 2 + ArmVirtPkg/ArmVirtQemuFvMain.fdf.inc | 1 + ArmVirtPkg/ArmVirtQemuKernel.dsc | 2 + OvmfPkg/OvmfPkg.dec | 1 + OvmfPkg/OvmfPkgIa32.dsc | 1 + OvmfPkg/OvmfPkgIa32.fdf | 1 + OvmfPkg/OvmfPkgIa32X64.dsc | 1 + OvmfPkg/OvmfPkgIa32X64.fdf | 1 + OvmfPkg/OvmfPkgX64.dsc | 1 + OvmfPkg/OvmfPkgX64.fdf | 1 + OvmfPkg/QemuRamfbDxe/QemuRamfbDxe.inf | 52 +++ 14 files changed, 536 insertions(+) create mode 100644 OvmfPkg/Include/Guid/QemuRamfb.h create mode 100644 OvmfPkg/QemuRamfbDxe/QemuRamfb.c create mode 100644 OvmfPkg/QemuRamfbDxe/QemuRamfbDxe.inf -- 2.9.3