From: "Yao, Jiewen" <jiewen.yao@intel.com>
To: "Mudusuru, Giri P" <giri.p.mudusuru@intel.com>,
"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Subject: Re: [PATCH] IntelSiliconPkg: Rename IGD structures to make it consistent
Date: Fri, 2 Sep 2016 02:32:17 +0000 [thread overview]
Message-ID: <74D8A39837DF1E4DA445A8C0B3885C50385F885F@shsmsx102.ccr.corp.intel.com> (raw)
In-Reply-To: <c16c92d45e77d9ba639859994a4eadffc180b08c.1472597724.git.giri.p.mudusuru@intel.com>
Reviewed by: Jiewen.yao@intel.com
> -----Original Message-----
> From: Mudusuru, Giri P
> Sent: Wednesday, August 31, 2016 6:58 AM
> To: edk2-devel@lists.01.org
> Cc: Yao, Jiewen <jiewen.yao@intel.com>
> Subject: [edk2] [PATCH] IntelSiliconPkg: Rename IGD structures to make it
> consistent
>
> Renamed INTEL_IGD_* to IGD_* and IGD_OPREGION_VBT to
> IGD_OPREGION_MBOX4
> to make it consistent with file name and other mailbox naming.
>
> Cc: Jiewen Yao <jiewen.yao@intel.com>
> Contributed-under: TianoCore Contribution Agreement 1.0
> Signed-off-by: Giri P Mudusuru <giri.p.mudusuru@intel.com>
> ---
> .../Include/IndustryStandard/IgdOpRegion.h | 39
> ++++++++++++----------
> 1 file changed, 22 insertions(+), 17 deletions(-)
>
> diff --git a/IntelSiliconPkg/Include/IndustryStandard/IgdOpRegion.h
> b/IntelSiliconPkg/Include/IndustryStandard/IgdOpRegion.h
> index 9982c9c..7f76c09 100644
> --- a/IntelSiliconPkg/Include/IndustryStandard/IgdOpRegion.h
> +++ b/IntelSiliconPkg/Include/IndustryStandard/IgdOpRegion.h
> @@ -36,8 +36,9 @@
> **/
> #pragma pack(1)
> ///
> -/// OpRegion header (mailbox 0) structure. The OpRegion Header is used to
> +/// OpRegion Mailbox 0 Header structure. The OpRegion Header is used to
> /// identify a block of memory as the graphics driver OpRegion.
> +/// Offset 0x0, Size 0x100
> ///
> typedef struct {
> CHAR8 SIGN[0x10]; ///< Offset 0x00 OpRegion Signature
> @@ -49,16 +50,17 @@ typedef struct {
> UINT32 MBOX; ///< Offset 0x58 Supported Mailboxes
> UINT32 DMOD; ///< Offset 0x5C Driver Model
> UINT8 RSV1[0xA0]; ///< Offset 0x60 Reserved
> -} INTEL_IGD_OPREGION_HEADER;
> +} IGD_OPREGION_HEADER;
>
> ///
> -/// OpRegion mailbox 1 (public ACPI Methods)
> +/// OpRegion Mailbox 1 - Public ACPI Methods
> +/// Offset 0x100, Size 0x100
> ///
> typedef struct {
> UINT32 DRDY; ///< Offset 0x100 Driver Readiness
> UINT32 CSTS; ///< Offset 0x104 Status
> UINT32 CEVT; ///< Offset 0x108 Current Event
> - UINT8 RSV2[0x14]; ///< Offset 0x10C Reserved
> + UINT8 RSVD[0x14]; ///< Offset 0x10C Reserved Must be Zero
> UINT32 DIDL[8]; ///< Offset 0x120 Supported Display Devices ID
> List
> UINT32 CPDL[8]; ///< Offset 0x140 Currently Attached Display
> Devices List
> UINT32 CADL[8]; ///< Offset 0x160 Currently Active Display
> Devices List
> @@ -73,20 +75,22 @@ typedef struct {
> UINT32 CNOT; ///< Offset 0x1BC Current OS Notification
> UINT32 NRDY; ///< Offset 0x1C0 Driver Status
> UINT8 RSV3[0x3C]; ///< Offset 0x1C4 - 0x1FF Reserved
> -} INTEL_IGD_OPREGION_MBOX1;
> +} IGD_OPREGION_MBOX1;
>
> ///
> -/// OpRegion mailbox 2 (Software SCI Interface).
> +/// OpRegion Mailbox 2 - Software SCI Interface
> +/// Offset 0x200, Size 0x100
> ///
> typedef struct {
> UINT32 SCIC; ///< Offset 0x200 Software SCI Command /
> Status / Data
> UINT32 PARM; ///< Offset 0x204 Software SCI Parameters
> UINT32 DSLP; ///< Offset 0x208 Driver Sleep Time Out
> UINT8 RSV4[0xF4]; ///< Offset 0x20C - 0x2FF Reserved
> -} INTEL_IGD_OPREGION_MBOX2;
> +} IGD_OPREGION_MBOX2;
>
> ///
> -/// OpRegion mailbox 3 (BIOS/Driver Communication - ASLE Support).
> +/// OpRegion Mailbox 3 - BIOS/Driver Notification - ASLE Support
> +/// Offset 0x300, Size 0x100
> ///
> typedef struct {
> UINT32 ARDY; ///< Offset 0x300 Driver Readiness
> @@ -103,25 +107,26 @@ typedef struct {
> UINT32 PFMB; ///< Offset 0x396 PWM Frequency and
> Minimum Brightness
> UINT32 CCDV; ///< Offset 0x39A Color Correction Default
> Values
> UINT8 RSV5[0x62]; ///< Offset 0x39E - 0x3FF Reserved
> -} INTEL_IGD_OPREGION_MBOX3;
> +} IGD_OPREGION_MBOX3;
>
> ///
> -/// OpRegion mailbox 4 (VBT).
> +/// OpRegion Mailbox 4 - VBT Video BIOS Table
> +/// Offset 0x400, Size 0x1800
> ///
> typedef struct {
> UINT8 RVBT[0x1800]; ///< Offset 0x400 - 0x1BFF Raw VBT Data
> -} INTEL_IGD_OPREGION_VBT;
> +} IGD_OPREGION_MBOX4;
>
> ///
> /// IGD OpRegion Structure
> ///
> typedef struct {
> - INTEL_IGD_OPREGION_HEADER Header; ///< OpRegion header (Offset
> 0x0, Size 0x100)
> - INTEL_IGD_OPREGION_MBOX1 MBox1; ///< Mailbox 1: Public ACPI
> Methods (Offset 0x100, Size 0x100)
> - INTEL_IGD_OPREGION_MBOX2 MBox2; ///< Mailbox 2: Software SCI
> Interface (Offset 0x200, Size 0x100)
> - INTEL_IGD_OPREGION_MBOX3 MBox3; ///< Mailbox 3: BIOS to
> Driver Communication (Offset 0x300, Size 0x100)
> - INTEL_IGD_OPREGION_VBT VBT; ///< Mailbox 4: Video BIOS
> Table (VBT) (Offset 0x400, Size 0x1200)
> -} IGD_IGD_OPREGION_STRUCTURE;
> + IGD_OPREGION_HEADER Header; ///< OpRegion header (Offset 0x0, Size
> 0x100)
> + IGD_OPREGION_MBOX1 MBox1; ///< Mailbox 1: Public ACPI
> Methods (Offset 0x100, Size 0x100)
> + IGD_OPREGION_MBOX2 MBox2; ///< Mailbox 2: Software SCI
> Interface (Offset 0x200, Size 0x100)
> + IGD_OPREGION_MBOX3 MBox3; ///< Mailbox 3: BIOS to Driver
> Notification (Offset 0x300, Size 0x100)
> + IGD_OPREGION_MBOX4 MBox4; ///< Mailbox 4: Video BIOS Table
> (VBT) (Offset 0x400, Size 0x1800)
> +} IGD_OPREGION_STRUCTURE;
> #pragma pack()
>
> #endif
> --
> 2.9.0.windows.1
prev parent reply other threads:[~2016-09-02 2:32 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-30 22:57 [PATCH] IntelSiliconPkg: Rename IGD structures to make it consistent Giri P Mudusuru
2016-09-02 2:32 ` Yao, Jiewen [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=74D8A39837DF1E4DA445A8C0B3885C50385F885F@shsmsx102.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