public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Tian, Feng" <feng.tian@intel.com>
To: "Ni, Ruiyu" <ruiyu.ni@intel.com>,
	"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Cc: "Tian, Feng" <feng.tian@intel.com>
Subject: Re: [PATCH v2 0/5] Add FrameBufferBltLib and GraphicsOutputDxe
Date: Mon, 10 Oct 2016 06:38:22 +0000	[thread overview]
Message-ID: <7F1BAD85ADEA444D97065A60D2E97EE566E2683F@SHSMSX101.ccr.corp.intel.com> (raw)
In-Reply-To: <20161009084953.58512-1-ruiyu.ni@intel.com>

Reviewed-by: Feng Tian <feng.tian@intel.com>

Thanks
Feng

-----Original Message-----
From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of Ruiyu Ni
Sent: Sunday, October 9, 2016 4:50 PM
To: edk2-devel@lists.01.org
Subject: [edk2] [PATCH v2 0/5] Add FrameBufferBltLib and GraphicsOutputDxe

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.

Ruiyu Ni (5):
  MdePkg/GraphicsInfoHob: Add GraphicsDeviceInfo HOB GUID and structure
  MdeModulePkg: Add FrameBufferBltLib library class
  MdeModulePkg: Add FrameBufferBltLib library instance
  MdeModulePkg: Add GraphicsOutputDxe driver.
  OvmfPkg: QemuVideoDxe uses MdeModulePkg/FrameBufferLib

 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 +-
 MdePkg/Include/Guid/GraphicsInfoHob.h              |  17 +-
 MdePkg/MdePkg.dec                                  |   1 +
 OvmfPkg/OvmfPkgIa32.dsc                            |   6 +-
 OvmfPkg/OvmfPkgIa32X64.dsc                         |   6 +-
 OvmfPkg/OvmfPkgX64.dsc                             |   5 +-
 OvmfPkg/QemuVideoDxe/Gop.c                         |  47 +-
 OvmfPkg/QemuVideoDxe/Qemu.h                        |  17 +-
 OvmfPkg/QemuVideoDxe/QemuVideoDxe.inf              |   5 +-
 17 files changed, 1918 insertions(+), 64 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

_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel


      parent reply	other threads:[~2016-10-10  6:38 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-09  8:49 [PATCH v2 0/5] Add FrameBufferBltLib and GraphicsOutputDxe Ruiyu Ni
2016-10-09  8:49 ` [PATCH v2 1/5] MdePkg/GraphicsInfoHob: Add GraphicsDeviceInfo HOB GUID and structure Ruiyu Ni
2016-10-10  2:34   ` [PATCH v3 " Ruiyu Ni
2016-10-10  2:35     ` Ni, Ruiyu
2016-10-11  5:45     ` Gao, Liming
2016-10-09  8:49 ` [PATCH v2 2/5] MdeModulePkg: Add FrameBufferBltLib library class Ruiyu Ni
2016-10-10 14:26   ` Laszlo Ersek
2016-10-09  8:49 ` [PATCH v2 3/5] MdeModulePkg: Add FrameBufferBltLib library instance Ruiyu Ni
2016-10-09  8:49 ` [PATCH v2 4/5] MdeModulePkg: Add GraphicsOutputDxe driver Ruiyu Ni
2016-10-09  8:49 ` [PATCH v2 5/5] OvmfPkg: QemuVideoDxe uses MdeModulePkg/FrameBufferLib Ruiyu Ni
2016-10-10 14:56   ` Laszlo Ersek
2016-10-10  6:38 ` Tian, Feng [this message]

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=7F1BAD85ADEA444D97065A60D2E97EE566E2683F@SHSMSX101.ccr.corp.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