[edk2-devel] [PATCH v2 0/5] OvmfPkg/QemuVideoDxe: pick up display resolution settings from the host

Gerd Hoffmann posted 5 patches 2 years, 3 months ago
Failed in applying to current master (apply log)
OvmfPkg/OvmfPkg.dec                   |   7 +
OvmfPkg/AmdSev/AmdSevX64.dsc          |   1 +
OvmfPkg/Microvm/MicrovmX64.dsc        |   1 +
OvmfPkg/OvmfPkgIa32.dsc               |   1 +
OvmfPkg/OvmfPkgIa32X64.dsc            |   1 +
OvmfPkg/OvmfPkgX64.dsc                |   1 +
OvmfPkg/OvmfXen.dsc                   |   1 +
OvmfPkg/PlatformDxe/Platform.inf      |   1 +
OvmfPkg/QemuVideoDxe/QemuVideoDxe.inf |   3 +
OvmfPkg/QemuVideoDxe/Qemu.h           |   6 +-
OvmfPkg/PlatformDxe/Platform.c        |   3 +
OvmfPkg/QemuVideoDxe/Driver.c         |  14 +-
OvmfPkg/QemuVideoDxe/Gop.c            |   2 +-
OvmfPkg/QemuVideoDxe/Initialize.c     | 251 +++++++++++++++++++-------
14 files changed, 213 insertions(+), 80 deletions(-)
[edk2-devel] [PATCH v2 0/5] OvmfPkg/QemuVideoDxe: pick up display resolution settings from the host
Posted by Gerd Hoffmann 2 years, 3 months ago
See last patch in the series for details.

v2:
 - rebase to latest master
 - more verbose commit message explaining the
   motivation for the new PCD (see patch #1).

Gerd Hoffmann (5):
  OvmfPkg: add PcdVideoResolutionSource
  OvmfPkg/QemuVideoDxe: simplify InitializeBochsGraphicsMode
  OvmfPkg/QemuVideoDxe: drop QEMU_VIDEO_BOCHS_MODES->ColorDepth
  OvmfPkg/QemuVideoDxe: factor out QemuVideoBochsAddMode
  OvmfPkg/QemuVideoDxe: parse edid blob, detect display resolution

 OvmfPkg/OvmfPkg.dec                   |   7 +
 OvmfPkg/AmdSev/AmdSevX64.dsc          |   1 +
 OvmfPkg/Microvm/MicrovmX64.dsc        |   1 +
 OvmfPkg/OvmfPkgIa32.dsc               |   1 +
 OvmfPkg/OvmfPkgIa32X64.dsc            |   1 +
 OvmfPkg/OvmfPkgX64.dsc                |   1 +
 OvmfPkg/OvmfXen.dsc                   |   1 +
 OvmfPkg/PlatformDxe/Platform.inf      |   1 +
 OvmfPkg/QemuVideoDxe/QemuVideoDxe.inf |   3 +
 OvmfPkg/QemuVideoDxe/Qemu.h           |   6 +-
 OvmfPkg/PlatformDxe/Platform.c        |   3 +
 OvmfPkg/QemuVideoDxe/Driver.c         |  14 +-
 OvmfPkg/QemuVideoDxe/Gop.c            |   2 +-
 OvmfPkg/QemuVideoDxe/Initialize.c     | 251 +++++++++++++++++++-------
 14 files changed, 213 insertions(+), 80 deletions(-)

-- 
2.34.1



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#85730): https://edk2.groups.io/g/devel/message/85730
Mute This Topic: https://groups.io/mt/88481078/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-


Re: [edk2-devel] [PATCH v2 0/5] OvmfPkg/QemuVideoDxe: pick up display resolution settings from the host
Posted by Ard Biesheuvel 2 years, 2 months ago
On Mon, 17 Jan 2022 at 10:58, Gerd Hoffmann <kraxel@redhat.com> wrote:
>
> See last patch in the series for details.
>
> v2:
>  - rebase to latest master
>  - more verbose commit message explaining the
>    motivation for the new PCD (see patch #1).
>
> Gerd Hoffmann (5):
>   OvmfPkg: add PcdVideoResolutionSource
>   OvmfPkg/QemuVideoDxe: simplify InitializeBochsGraphicsMode
>   OvmfPkg/QemuVideoDxe: drop QEMU_VIDEO_BOCHS_MODES->ColorDepth
>   OvmfPkg/QemuVideoDxe: factor out QemuVideoBochsAddMode
>   OvmfPkg/QemuVideoDxe: parse edid blob, detect display resolution
>

Acked-by: Ard Biesheuvel <ardb@kernel.org>

Pushed as #2455

Thanks,

>  OvmfPkg/OvmfPkg.dec                   |   7 +
>  OvmfPkg/AmdSev/AmdSevX64.dsc          |   1 +
>  OvmfPkg/Microvm/MicrovmX64.dsc        |   1 +
>  OvmfPkg/OvmfPkgIa32.dsc               |   1 +
>  OvmfPkg/OvmfPkgIa32X64.dsc            |   1 +
>  OvmfPkg/OvmfPkgX64.dsc                |   1 +
>  OvmfPkg/OvmfXen.dsc                   |   1 +
>  OvmfPkg/PlatformDxe/Platform.inf      |   1 +
>  OvmfPkg/QemuVideoDxe/QemuVideoDxe.inf |   3 +
>  OvmfPkg/QemuVideoDxe/Qemu.h           |   6 +-
>  OvmfPkg/PlatformDxe/Platform.c        |   3 +
>  OvmfPkg/QemuVideoDxe/Driver.c         |  14 +-
>  OvmfPkg/QemuVideoDxe/Gop.c            |   2 +-
>  OvmfPkg/QemuVideoDxe/Initialize.c     | 251 +++++++++++++++++++-------
>  14 files changed, 213 insertions(+), 80 deletions(-)
>
> --
> 2.34.1
>


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#86215): https://edk2.groups.io/g/devel/message/86215
Mute This Topic: https://groups.io/mt/88481078/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-