public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Ruiyu Ni <ruiyu.ni@intel.com>
To: edk2-devel@lists.01.org
Subject: [PATCH v4 0/8] Add FrameBufferBltLib and GraphicsOutputDxe
Date: Tue, 11 Oct 2016 13:50:40 +0800	[thread overview]
Message-ID: <20161011055048.217588-1-ruiyu.ni@intel.com> (raw)

The patch serials add the FrameBufferBltLib to MdePkg.
Based on the library, a generic GOP driver GraphicsOutputDxe
is developed and added to MdeModulePkg.
OvmfPkg/QemuVideoDxe driver is updated to use this new library.

In v4:
ArmVirtPkg was also updated because it also uses the QemuVideoDxe
driver.
QEMU_VIDEO_MODE_DATA.FrameBufferConfigure was removed because it
is never referenced.

Ruiyu Ni (8):
  MdeModulePkg: Add FrameBufferBltLib library class
  MdeModulePkg: Add FrameBufferBltLib library instance
  MdeModulePkg: Add GraphicsOutputDxe driver.
  OvmfPkg: Include MdeModulePkg/FrameBufferLib in OvmfPkg
  ArmVirtPkg: Include MdeModulePkg/FrameBufferLib in ArmVirtPkg
  OvmfPkg: QemuVideoDxe uses MdeModulePkg/FrameBufferLib
  OvmfPkg: Remove unused BltLib reference
  ArmVirtPkg: Remove unused BltLib reference

 ArmVirtPkg/ArmVirtQemu.dsc                         |   6 +-
 ArmVirtPkg/ArmVirtQemuKernel.dsc                   |   6 +-
 MdeModulePkg/Include/Library/FrameBufferBltLib.h   |  94 +++
 .../Library/FrameBufferBltLib/FrameBufferBltLib.c  | 704 ++++++++++++++++++++
 .../FrameBufferBltLib/FrameBufferBltLib.inf        |  34 +
 MdeModulePkg/MdeModulePkg.dec                      |   4 +
 MdeModulePkg/MdeModulePkg.dsc                      |   3 +
 .../Console/GraphicsOutputDxe/ComponentName.c      | 190 ++++++
 .../Console/GraphicsOutputDxe/GraphicsOutput.c     | 735 +++++++++++++++++++++
 .../Console/GraphicsOutputDxe/GraphicsOutput.h     |  59 ++
 .../GraphicsOutputDxe/GraphicsOutputDxe.inf        |  55 +-
 OvmfPkg/OvmfPkgIa32.dsc                            |   6 +-
 OvmfPkg/OvmfPkgIa32X64.dsc                         |   6 +-
 OvmfPkg/OvmfPkgX64.dsc                             |   6 +-
 OvmfPkg/QemuVideoDxe/Gop.c                         |  47 +-
 OvmfPkg/QemuVideoDxe/Qemu.h                        |   6 +-
 OvmfPkg/QemuVideoDxe/QemuVideoDxe.inf              |   5 +-
 17 files changed, 1900 insertions(+), 66 deletions(-)
 create mode 100644 MdeModulePkg/Include/Library/FrameBufferBltLib.h
 create mode 100644 MdeModulePkg/Library/FrameBufferBltLib/FrameBufferBltLib.c
 create mode 100644 MdeModulePkg/Library/FrameBufferBltLib/FrameBufferBltLib.inf
 create mode 100644 MdeModulePkg/Universal/Console/GraphicsOutputDxe/ComponentName.c
 create mode 100644 MdeModulePkg/Universal/Console/GraphicsOutputDxe/GraphicsOutput.c
 create mode 100644 MdeModulePkg/Universal/Console/GraphicsOutputDxe/GraphicsOutput.h
 copy OvmfPkg/QemuVideoDxe/QemuVideoDxe.inf => MdeModulePkg/Universal/Console/GraphicsOutputDxe/GraphicsOutputDxe.inf (53%)

-- 
2.9.0.windows.1



             reply	other threads:[~2016-10-11  5:50 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-11  5:50 Ruiyu Ni [this message]
2016-10-11  5:50 ` [PATCH v4 1/8] MdeModulePkg: Add FrameBufferBltLib library class Ruiyu Ni
2016-10-11  5:50 ` [PATCH v4 2/8] MdeModulePkg: Add FrameBufferBltLib library instance Ruiyu Ni
2016-10-11 14:13   ` Laszlo Ersek
2016-10-11 14:51   ` Laszlo Ersek
2016-10-11  5:50 ` [PATCH v4 3/8] MdeModulePkg: Add GraphicsOutputDxe driver Ruiyu Ni
2016-10-11  5:50 ` [PATCH v4 4/8] OvmfPkg: Include MdeModulePkg/FrameBufferLib in OvmfPkg Ruiyu Ni
2016-10-11 14:23   ` Laszlo Ersek
2016-10-11  5:50 ` [PATCH v4 5/8] ArmVirtPkg: Include MdeModulePkg/FrameBufferLib in ArmVirtPkg Ruiyu Ni
2016-10-11 14:25   ` Laszlo Ersek
2016-10-11  5:50 ` [PATCH v4 6/8] OvmfPkg: QemuVideoDxe uses MdeModulePkg/FrameBufferLib Ruiyu Ni
2016-10-11 14:29   ` Laszlo Ersek
2016-10-11  5:50 ` [PATCH v4 7/8] OvmfPkg: Remove unused BltLib reference Ruiyu Ni
2016-10-11 14:31   ` Laszlo Ersek
2016-10-11  5:50 ` [PATCH v4 8/8] ArmVirtPkg: " Ruiyu Ni
2016-10-11 14:32   ` Laszlo Ersek

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20161011055048.217588-1-ruiyu.ni@intel.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox