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.web11.2588.1589233879512116435 for ; Mon, 11 May 2020 14:51:23 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: ami.com, ip: , mailfrom: oleksiyy@ami.com) X-AuditID: ac10606f-05fff70000001b62-a6-5eb9c8dab42c 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 61.90.07010.AD8C9BE5; Mon, 11 May 2020 17:51:22 -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; Mon, 11 May 2020 17:50:45 -0400 From: "Oleksiy Yakovlev" To: CC: , , , , , Subject: [PATCH V3 4/5] MdePkg: Add FMP Capsule Image Header extension Date: Mon, 11 May 2020 17:50:39 -0400 Message-ID: <20200511215040.31780-5-oleksiyy@ami.com> X-Mailer: git-send-email 2.9.0.windows.1 In-Reply-To: <20200511215040.31780-1-oleksiyy@ami.com> References: <20200511215040.31780-1-oleksiyy@ami.com> MIME-Version: 1.0 Return-Path: oleksiyy@ami.com X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFtrNIsWRmVeSWpSXmKPExsWyRiBhgu6tEzvjDDbfVbFonzCbzeLqrV9M FvO+zWC1WHFvA7tFR8c/JgdWj+3fLzB6LN7zkimAKaqB0SYxLy+/JLEkVSEltTjZVimgKLMs MblSSSEzxVbJUEmhICcxOTU3Na/EVimxoCA1L0XJjksBA9gAlWXmKaTmJeenZOal2yp5Bvvr WliYWuoaKtmFZKQqZOal5RflJpZk5ucpJOfnlQBVp6YARRUSujkzLm/ZyljwmLtifstTtgbG 35xdjJwcEgImEhO/97N1MXJxCAnsYpLomv6eFcLZwijxd+thJpAqNgFNiQPHpjCC2CICUhJT DsxkAiliFpjIKLF1w2I2kISwgJvElAf3WUBsFgFViRMTXoLFeQVMJaYcW8MMsU5DYtqau2BD OQXMJI5//8kOYgsB1ezdMp8Rol5Q4uTMJ2BzmAUkJA6+eMEMUSMr0Xb8OfsERv5ZSMpmISlb wMi0ilEosSQnNzEzJ73cSC8xN1MvOT93EyMk5vJ3MH78aH6IkYmD8RCjBAezkghvS+bOOCHe lMTKqtSi/Pii0pzU4kOMTkAPTGSW4gYFITBO4o0NDKREYRxDEzMTcyNzQ0sTc2NjJXHeSWvX xAkJpAPjNjs1tSC1CGYIEwenVANjWsSzvc08XOf22Kr98TsUHDKvP7fEsOAny9pPqtumFm66 2/Hs67X1H6O9ZU7pTPpp9a+dbc7h//7bUmP25OqZfGTybFmWMv21u5O+/tIHi++KBUnPYfsn yJDPP1VYOG/u3/aPYlO5eXI2tLjclFcu7hbr//DsiCbDG3ON1+tT7qzef7Jnsoi0EktxRqKh FnNRcSIAD9/9m84CAAA= 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.