From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from atlmailgw2.ami.com (atlmailgw2.ami.com []) by mx.groups.io with SMTP id smtpd.web10.280.1589321185430648927 for ; Tue, 12 May 2020 15:06:28 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: ami.com, ip: , mailfrom: oleksiyy@ami.com) X-AuditID: ac10606f-049ff70000001b62-66-5ebb1de34c06 Received: from atlms1.us.megatrends.com (atlms1.us.megatrends.com [172.16.96.144]) (using TLS with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client did not present a certificate) by atlmailgw2.ami.com (Symantec Messaging Gateway) with SMTP id C3.82.07010.3ED1BBE5; Tue, 12 May 2020 18:06:27 -0400 (EDT) Received: from Oleksiy77.us.megatrends.com (172.16.97.158) by atlms1.us.megatrends.com (172.16.96.144) with Microsoft SMTP Server id 14.3.468.0; Tue, 12 May 2020 18:05:48 -0400 From: "Oleksiy Yakovlev" To: CC: , , , , , , , Subject: [PATCH V4 4/6] MdePkg: Add FMP Capsule Image Header extension Date: Tue, 12 May 2020 18:05:41 -0400 Message-ID: <20200512220543.40008-5-oleksiyy@ami.com> X-Mailer: git-send-email 2.9.0.windows.1 In-Reply-To: <20200512220543.40008-1-oleksiyy@ami.com> References: <20200512220543.40008-1-oleksiyy@ami.com> MIME-Version: 1.0 Return-Path: oleksiyy@ami.com X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFjrEIsWRmVeSWpSXmKPExsWyRiBhgu5j2d1xBtuXG1nMf1tt0T5hNpvF 1Vu/mCzmfZvBarHuo4fFinsb2C06Ov4xObB7bP9+gdFj8Z6XTAFMUQ2MNol5efkliSWpCimp xcm2SgFFmWWJyZVKCpkptkqGSgoFOYnJqbmpeSW2SokFBal5KUp2XAoYwAaoLDNPITUvOT8l My/dVskz2F/XwsLUUtdQyS4kI1UhMy8tvyg3sSQzP08hOT+vBKg6NQUoqpDQzZlxectWxoLH 3BXzW56yNTD+5uxi5OSQEDCR+PzoG3sXIxeHkMAuJolNT7cxQThbGCVW/7nKBlLFJqApceDY FEYQW0RASmLKgZlMIDazwGFGiY5PYHFhATeJd6tWs4DYLAKqEpf/zATr5RUwlTj16QgjxDYN iWlr7oL1cgqYSXx7egosLgRUc+TRDVaIekGJkzOfsEDMl5A4+OIFM0SNrETb8efsExj5ZyEp m4WkbAEj0ypGocSSnNzEzJz0ciO9xNxMveT83E2MkAjM38H48aP5IUYmDsZDjBIczEoivC2Z O+OEeFMSK6tSi/Lji0pzUosPMToBPTCRWYobFILAKIk3NjCQEoVxDE3MTMyNzA0tTcyNjZXE eSetXRMnJJAOjNrs1NSC1CKYIUwcnFINjBsV33TefV/+9VPu+RiJp+dvyDlrHVj0XiYxks9/ +XkvlqQpp0MFou6u8dOcEF/r2nT7x+bfG2+9+euqHrd0429/4cylRt+/TropxCWzt/u2S7ij vcWeee96J256UxRr8ev7gb4nWy7Jm9tzXlEs+3NBP8IktVKKg5+zcuuauv+PXNa95Dn3RkCJ pTgj0VCLuag4EQD0YIK11QIAAA== Content-Type: text/plain Add bitmask to structure which gives a binary-inspectable mechanism to determine if a capsule contains an authentication section or depex section. (UEFI 2.8 errata a, mantis 2026) Signed-off-by: Oleksiy Yakovlev Reviewed-by: Liming Gao --- MdePkg/Include/Guid/FmpCapsule.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/MdePkg/Include/Guid/FmpCapsule.h b/MdePkg/Include/Guid/FmpCapsule.h index fb8c346..bd5cb77 100644 --- a/MdePkg/Include/Guid/FmpCapsule.h +++ b/MdePkg/Include/Guid/FmpCapsule.h @@ -79,13 +79,22 @@ typedef struct { /// therefore can be modified without changing the Auth data. /// UINT64 UpdateHardwareInstance; + + /// + /// A 64-bit bitmask that determines what sections are added to the payload. + /// #define CAPSULE_SUPPORT_AUTHENTICATION 0x0000000000000001 + /// #define CAPSULE_SUPPORT_DEPENDENCY 0x0000000000000002 + /// + UINT64 ImageCapsuleSupport; } EFI_FIRMWARE_MANAGEMENT_CAPSULE_IMAGE_HEADER; #pragma pack() #define EFI_FIRMWARE_MANAGEMENT_CAPSULE_HEADER_INIT_VERSION 0x00000001 -#define EFI_FIRMWARE_MANAGEMENT_CAPSULE_IMAGE_HEADER_INIT_VERSION 0x00000002 +#define EFI_FIRMWARE_MANAGEMENT_CAPSULE_IMAGE_HEADER_INIT_VERSION 0x00000003 +#define CAPSULE_SUPPORT_AUTHENTICATION 0x0000000000000001 +#define CAPSULE_SUPPORT_DEPENDENCY 0x0000000000000002 extern EFI_GUID gEfiFmpCapsuleGuid; -- 2.9.0.windows.1 Please consider the environment before printing this email. The information contained in this message may be confidential and proprietary to American Megatrends (AMI). This communication is intended to be read only by the individual or entity to whom it is addressed or by their designee. If the reader of this message is not the intended recipient, you are on notice that any distribution of this message, in any form, is strictly prohibited. Please promptly notify the sender by reply e-mail or by telephone at 770-246-8600, and then delete or destroy all copies of the transmission.