From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id BAD5181DC7 for ; Sun, 13 Nov 2016 22:32:59 -0800 (PST) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga104.jf.intel.com with ESMTP; 13 Nov 2016 22:33:04 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,488,1473145200"; d="scan'208";a="30717896" Received: from gpmudusu-mobl5.amr.corp.intel.com ([10.254.39.85]) by orsmga004.jf.intel.com with ESMTP; 13 Nov 2016 22:33:03 -0800 From: Giri P Mudusuru To: edk2-devel@lists.01.org Cc: Jiewen Yao , Star Zeng Date: Sun, 13 Nov 2016 22:32:30 -0800 Message-Id: X-Mailer: git-send-email 2.9.0.windows.1 Subject: [PATCH V2] IntelSiliconPkg: Add PCD for Graphics VBT FFS GUID X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Nov 2016 06:32:59 -0000 Added PCD PcdIntelGraphicsVbtFileGuid to store raw format Graphics Video BIOS Table (VBT) in FFS. Cc: Jiewen Yao Cc: Star Zeng Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Giri P Mudusuru --- IntelSiliconPkg/IntelSiliconPkg.dec | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/IntelSiliconPkg/IntelSiliconPkg.dec b/IntelSiliconPkg/IntelSiliconPkg.dec index 84b0764..4a51d0a 100644 --- a/IntelSiliconPkg/IntelSiliconPkg.dec +++ b/IntelSiliconPkg/IntelSiliconPkg.dec @@ -24,8 +24,20 @@ Include [Guids] + ## GUID for Package token space + # {A9F8D54E-1107-4F0A-ADD0-4587E7A4A735} + gIntelSiliconPkgTokenSpaceGuid = { 0xa9f8d54e, 0x1107, 0x4f0a, { 0xad, 0xd0, 0x45, 0x87, 0xe7, 0xa4, 0xa7, 0x35 } }; + ## HOB GUID to publish SMBIOS data records from PEI phase # HOB data format is same as SMBIOS records defined in SMBIOS spec or OEM defined types # Generic DXE Library / Driver can locate HOB(s) and add SMBIOS records into SMBIOS table gIntelSmbiosDataHobGuid = { 0x798e722e, 0x15b2, 0x4e13, { 0x8a, 0xe9, 0x6b, 0xa3, 0x0f, 0xf7, 0xf1, 0x67 }} +[PcdsFixedAtBuild, PcdsPatchableInModule, PcdsDynamic, PcdsDynamicEx] + ## This is the GUID of the FFS which contains the Graphics Video BIOS Table (VBT) + # The VBT content is stored as a RAW section which is consumed by GOP PEI/UEFI driver. + # The default GUID can be updated by patching or runtime if platform support multiple VBT configurations. + # @Prompt GUID of the FFS which contains the Graphics Video BIOS Table (VBT) + # { 0x56752da9, 0xde6b, 0x4895, 0x88, 0x19, 0x19, 0x45, 0xb6, 0xb7, 0x6c, 0x22 } + gIntelSiliconPkgTokenSpaceGuid.PcdIntelGraphicsVbtFileGuid|{ 0xa9, 0x2d, 0x75, 0x56, 0x6b, 0xde, 0x95, 0x48, 0x88, 0x19, 0x19, 0x45, 0xb6, 0xb7, 0x6c, 0x22 }|VOID*|0x00000001 + -- 2.9.0.windows.1