public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Ni, Ray" <ray.ni@intel.com>
To: "devel@edk2.groups.io" <devel@edk2.groups.io>,
	"Jiang, Guomin" <guomin.jiang@intel.com>
Cc: GuoMinJ <newexplorerj@gmail.com>,
	"Feng, Bob C" <bob.c.feng@intel.com>,
	"Gao, Liming" <liming.gao@intel.com>
Subject: Re: [edk2-devel] [PATCH 01/18] BaseTools: Remove All UGA Support
Date: Sat, 9 May 2020 01:47:37 +0000	[thread overview]
Message-ID: <734D49CCEBEEF84792F5B80ED585239D5C53090A@SHSMSX104.ccr.corp.intel.com> (raw)
In-Reply-To: <20200508083824.1785-2-guomin.jiang@intel.com>

Guomin,
Can you complete remove HiiFramework.h?

> -----Original Message-----
> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Guomin Jiang
> Sent: Friday, May 8, 2020 4:38 PM
> To: devel@edk2.groups.io
> Cc: GuoMinJ <newexplorerj@gmail.com>; Feng, Bob C <bob.c.feng@intel.com>; Gao, Liming <liming.gao@intel.com>
> Subject: [edk2-devel] [PATCH 01/18] BaseTools: Remove All UGA Support
> 
> From: GuoMinJ <newexplorerj@gmail.com>
> 
> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2368
> 
> Remove all UGA support in BaseTools package.
> 
> Cc: Bob Feng <bob.c.feng@intel.com>
> Cc: Liming Gao <liming.gao@intel.com>
> Signed-off-by: Guomin Jiang <guomin.jiang@intel.com>
> ---
>  .../Source/C/Include/Protocol/HiiFramework.h  |  51 ------
>  BaseTools/Source/C/Include/Protocol/UgaDraw.h | 161 ------------------
>  2 files changed, 212 deletions(-)
>  delete mode 100644 BaseTools/Source/C/Include/Protocol/UgaDraw.h
> 
> diff --git a/BaseTools/Source/C/Include/Protocol/HiiFramework.h b/BaseTools/Source/C/Include/Protocol/HiiFramework.h
> index 448350967bbf..09cbf23640c1 100644
> --- a/BaseTools/Source/C/Include/Protocol/HiiFramework.h
> +++ b/BaseTools/Source/C/Include/Protocol/HiiFramework.h
> @@ -28,20 +28,6 @@
>      0xd7ad636e, 0xb997, 0x459b, {0xbf, 0x3f, 0x88, 0x46, 0x89, 0x79, 0x80, 0xe1} \
>    }
> 
> -// BugBug:
> -//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> -// If UGA goes away we need to put this some place. I'm not sure where?
> -//
> -//typedef struct {
> -//  UINT8 Blue;
> -//  UINT8 Green;
> -//  UINT8 Red;
> -//  UINT8 Reserved;
> -//} EFI_UGA_PIXEL;
> -
> -//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> -//
> -
>  typedef struct _EFI_HII_PROTOCOL  EFI_HII_PROTOCOL;
> 
>  //
> @@ -575,39 +561,6 @@ EFI_STATUS
>    IN OUT UINT32            *InternalStatus
>    );
> 
> -/**
> -  Translates a glyph into the format required for input to the Universal
> -  Graphics Adapter (UGA) Block Transfer (BLT) routines.
> -
> -  @param  This                  A pointer to the EFI_HII_PROTOCOL instance.
> -  @param  GlyphBuffer           A pointer to the buffer that contains glyph data.
> -  @param  Foreground            The foreground setting requested to be used for the
> -                                generated BltBuffer data.
> -  @param  Background            The background setting requested to be used for the
> -                                generated BltBuffer data.
> -  @param  Count                 The entry in the BltBuffer upon which to act.
> -  @param  Width                 The width in bits of the glyph being converted.
> -  @param  Height                The height in bits of the glyph being converted
> -  @param  BltBuffer             A pointer to the buffer that contains the data that is
> -                                ready to be used by the UGA BLT routines.
> -
> -  @retval EFI_SUCCESS           It worked.
> -  @retval EFI_NOT_FOUND         A glyph for a character was not found.
> -
> -**/
> -typedef
> -EFI_STATUS
> -(EFIAPI *EFI_HII_GLYPH_TO_BLT) (
> -  IN     EFI_HII_PROTOCOL             *This,
> -  IN     UINT8                        *GlyphBuffer,
> -  IN     EFI_GRAPHICS_OUTPUT_BLT_PIXEL Foreground,
> -  IN     EFI_GRAPHICS_OUTPUT_BLT_PIXEL Background,
> -  IN     UINTN                         Count,
> -  IN     UINTN                         Width,
> -  IN     UINTN                         Height,
> -  IN OUT EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BltBuffer
> -  );
> -
>  /**
>    Allows a new string to be added to an already existing string package.
> 
> @@ -878,9 +831,6 @@ EFI_STATUS
>    @param GetGlyph
>    Translates a Unicode character into the corresponding font glyph.
> 
> -  @param GlyphToBlt
> -  Converts a glyph value into a format that is ready for a UGA BLT command.
> -
>    @param NewString
>    Allows a new string to be added to an already existing string package.
> 
> @@ -924,7 +874,6 @@ struct _EFI_HII_PROTOCOL {
> 
>    EFI_HII_TEST_STRING         TestString;
>    EFI_HII_GET_GLYPH           GetGlyph;
> -  EFI_HII_GLYPH_TO_BLT        GlyphToBlt;
> 
>    EFI_HII_NEW_STRING          NewString;
>    EFI_HII_GET_PRI_LANGUAGES   GetPrimaryLanguages;
> diff --git a/BaseTools/Source/C/Include/Protocol/UgaDraw.h b/BaseTools/Source/C/Include/Protocol/UgaDraw.h
> deleted file mode 100644
> index 412b000aeb6b..000000000000
> --- a/BaseTools/Source/C/Include/Protocol/UgaDraw.h
> +++ /dev/null
> @@ -1,161 +0,0 @@
> -/** @file
> -  UGA Draw protocol from the EFI 1.1 specification.
> -
> -  Abstraction of a very simple graphics device.
> -
> -  Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
> -
> -  SPDX-License-Identifier: BSD-2-Clause-Patent
> -
> -**/
> -
> -#ifndef __UGA_DRAW_H__
> -#define __UGA_DRAW_H__
> -
> -#define EFI_UGA_DRAW_PROTOCOL_GUID \
> -  { \
> -    0x982c298b, 0xf4fa, 0x41cb, {0xb8, 0x38, 0x77, 0xaa, 0x68, 0x8f, 0xb8, 0x39 } \
> -  }
> -
> -typedef struct _EFI_UGA_DRAW_PROTOCOL EFI_UGA_DRAW_PROTOCOL;
> -
> -/**
> -  Return the current video mode information.
> -
> -  @param  This                  Protocol instance pointer.
> -  @param  HorizontalResolution  Current video horizontal resolution in pixels
> -  @param  VerticalResolution    Current video vertical resolution in pixels
> -  @param  ColorDepth            Current video color depth in bits per pixel
> -  @param  RefreshRate           Current video refresh rate in Hz.
> -
> -  @retval EFI_SUCCESS           Mode information returned.
> -  @retval EFI_NOT_STARTED       Video display is not initialized. Call SetMode ()
> -  @retval EFI_INVALID_PARAMETER One of the input args was NULL.
> -
> -**/
> -typedef
> -EFI_STATUS
> -(EFIAPI *EFI_UGA_DRAW_PROTOCOL_GET_MODE) (
> -  IN  EFI_UGA_DRAW_PROTOCOL *This,
> -  OUT UINT32                *HorizontalResolution,
> -  OUT UINT32                *VerticalResolution,
> -  OUT UINT32                *ColorDepth,
> -  OUT UINT32                *RefreshRate
> -  )
> -;
> -
> -/**
> -  Return the current video mode information.
> -
> -  @param  This                 Protocol instance pointer.
> -  @param  HorizontalResolution Current video horizontal resolution in pixels
> -  @param  VerticalResolution   Current video vertical resolution in pixels
> -  @param  ColorDepth           Current video color depth in bits per pixel
> -  @param  RefreshRate          Current video refresh rate in Hz.
> -
> -  @retval EFI_SUCCESS          Mode information returned.
> -  @retval EFI_NOT_STARTED      Video display is not initialized. Call SetMode ()
> -
> -**/
> -typedef
> -EFI_STATUS
> -(EFIAPI *EFI_UGA_DRAW_PROTOCOL_SET_MODE) (
> -  IN  EFI_UGA_DRAW_PROTOCOL *This,
> -  IN  UINT32                HorizontalResolution,
> -  IN  UINT32                VerticalResolution,
> -  IN  UINT32                ColorDepth,
> -  IN  UINT32                RefreshRate
> -  )
> -;
> -
> -typedef struct {
> -  UINT8 Blue;
> -  UINT8 Green;
> -  UINT8 Red;
> -  UINT8 Reserved;
> -} EFI_UGA_PIXEL;
> -
> -typedef union {
> -  EFI_UGA_PIXEL Pixel;
> -  UINT32        Raw;
> -} EFI_UGA_PIXEL_UNION;
> -
> -typedef enum {
> -  EfiUgaVideoFill,
> -  EfiUgaVideoToBltBuffer,
> -  EfiUgaBltBufferToVideo,
> -  EfiUgaVideoToVideo,
> -  EfiUgaBltMax
> -} EFI_UGA_BLT_OPERATION;
> -
> -/**
> -  Type specifying a pointer to a function to perform an UGA Blt operation.
> -
> -    The following table defines actions for BltOperations:
> -
> -    <B>EfiUgaVideoFill</B> - Write data from the  BltBuffer pixel (SourceX, SourceY)
> -      directly to every pixel of the video display rectangle
> -      (DestinationX, DestinationY) (DestinationX + Width, DestinationY + Height).
> -      Only one pixel will be used from the BltBuffer. Delta is NOT used.
> -
> -    <B>EfiUgaVideoToBltBuffer</B> - Read data from the video display rectangle
> -      (SourceX, SourceY) (SourceX + Width, SourceY + Height) and place it in
> -      the BltBuffer rectangle (DestinationX, DestinationY )
> -      (DestinationX + Width, DestinationY + Height). If DestinationX or
> -      DestinationY is not zero then Delta must be set to the length in bytes
> -      of a row in the BltBuffer.
> -
> -    <B>EfiUgaBltBufferToVideo</B> - Write data from the  BltBuffer rectangle
> -      (SourceX, SourceY) (SourceX + Width, SourceY + Height) directly to the
> -      video display rectangle (DestinationX, DestinationY)
> -      (DestinationX + Width, DestinationY + Height). If SourceX or SourceY is
> -      not zero then Delta must be set to the length in bytes of a row in the
> -      BltBuffer.
> -
> -    <B>EfiUgaVideoToVideo</B> - Copy from the video display rectangle (SourceX, SourceY)
> -     (SourceX + Width, SourceY + Height) .to the video display rectangle
> -     (DestinationX, DestinationY) (DestinationX + Width, DestinationY + Height).
> -     The BltBuffer and Delta  are not used in this mode.
> -
> -
> -    @param[in] This          - Protocol instance pointer.
> -    @param[in] BltBuffer     - Buffer containing data to blit into video buffer. This
> -                               buffer has a size of Width*Height*sizeof(EFI_UGA_PIXEL)
> -    @param[in] BltOperation  - Operation to perform on BlitBuffer and video memory
> -    @param[in] SourceX       - X coordinate of source for the BltBuffer.
> -    @param[in] SourceY       - Y coordinate of source for the BltBuffer.
> -    @param[in] DestinationX  - X coordinate of destination for the BltBuffer.
> -    @param[in] DestinationY  - Y coordinate of destination for the BltBuffer.
> -    @param[in] Width         - Width of rectangle in BltBuffer in pixels.
> -    @param[in] Height        - Height of rectangle in BltBuffer in pixels.
> -    @param[in] Delta         - OPTIONAL
> -
> -    @retval EFI_SUCCESS           - The Blt operation completed.
> -    @retval EFI_INVALID_PARAMETER - BltOperation is not valid.
> -    @retval EFI_DEVICE_ERROR      - A hardware error occurred writing to the video buffer.
> -
> ---*/
> -typedef
> -EFI_STATUS
> -(EFIAPI *EFI_UGA_DRAW_PROTOCOL_BLT) (
> -  IN  EFI_UGA_DRAW_PROTOCOL                   * This,
> -  IN  EFI_UGA_PIXEL                           * BltBuffer, OPTIONAL
> -  IN  EFI_UGA_BLT_OPERATION                   BltOperation,
> -  IN  UINTN                                   SourceX,
> -  IN  UINTN                                   SourceY,
> -  IN  UINTN                                   DestinationX,
> -  IN  UINTN                                   DestinationY,
> -  IN  UINTN                                   Width,
> -  IN  UINTN                                   Height,
> -  IN  UINTN                                   Delta         OPTIONAL
> -  );
> -
> -struct _EFI_UGA_DRAW_PROTOCOL {
> -  EFI_UGA_DRAW_PROTOCOL_GET_MODE  GetMode;
> -  EFI_UGA_DRAW_PROTOCOL_SET_MODE  SetMode;
> -  EFI_UGA_DRAW_PROTOCOL_BLT       Blt;
> -};
> -
> -extern EFI_GUID gEfiUgaDrawProtocolGuid;
> -
> -#endif
> --
> 2.25.1.windows.1
> 
> 
> 


  reply	other threads:[~2020-05-09  1:47 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-08  8:38 [PATCH 00/18] Remove All UGA Support Guomin Jiang
2020-05-08  8:38 ` [PATCH 01/18] BaseTools: " Guomin Jiang
2020-05-09  1:47   ` Ni, Ray [this message]
2020-05-08  8:38 ` [PATCH 02/18] UefiPayloadPkg: " Guomin Jiang
2020-05-08 14:57   ` Ma, Maurice
2020-05-08  8:38 ` [PATCH 03/18] ShellPkg: " Guomin Jiang
2020-05-08  8:38 ` [PATCH 04/18] MdeModulePkg: " Guomin Jiang
2020-05-08  8:38 ` [PATCH 05/18] MdeModulePkg/ConSplitterDxe: " Guomin Jiang
2020-05-08  8:38 ` [PATCH 06/18] MdeModulePkg/GraphicsConsoleDxe: " Guomin Jiang
2020-05-08  8:38 ` [PATCH 07/18] EmulatorPkg: " Guomin Jiang
2020-05-09  3:02   ` Ni, Ray
2020-05-08  8:38 ` [PATCH 08/18] OvmfPkg: " Guomin Jiang
2020-05-08  8:38 ` [PATCH 09/18] ArmPkg: " Guomin Jiang
2020-05-08  8:38 ` [PATCH 10/18] ArmVirtPkg: " Guomin Jiang
2020-05-08  8:38 ` [PATCH 11/18] MdePkg: " Guomin Jiang
2020-05-08  8:38 ` [PATCH 12/18] MdeModulePkg: " Guomin Jiang
2020-05-08  8:38 ` [PATCH 13/18] MdeModulePkg/ConSplitterDxe: " Guomin Jiang
2020-05-09  3:03   ` Ni, Ray
2020-05-08  8:38 ` [PATCH 14/18] " Guomin Jiang
2020-05-08  8:38 ` [PATCH 15/18] OvmfPkg: " Guomin Jiang
2020-05-08  8:38 ` [PATCH 16/18] UefiPayloadPkg: " Guomin Jiang
2020-05-08 14:58   ` Ma, Maurice
2020-05-08  8:38 ` [PATCH 17/18] ArmVirtPkg: " Guomin Jiang
2020-05-08  8:38 ` [PATCH 18/18] MdeModulePkg: " Guomin Jiang
2020-05-08 10:09 ` [edk2-devel] [PATCH 00/18] " Laszlo Ersek
2020-05-08 11:00   ` Ard Biesheuvel
2020-05-08 13:04     ` Guomin Jiang

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=734D49CCEBEEF84792F5B80ED585239D5C53090A@SHSMSX104.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