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.4775.1586548745519333089 for ; Fri, 10 Apr 2020 12:59:08 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: ami.com, ip: , mailfrom: oleksiyy@ami.com) X-AuditID: ac10606f-049ff70000001b62-97-5e90d00c136f 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 7D.3C.07010.C00D09E5; Fri, 10 Apr 2020 15:59:09 -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; Fri, 10 Apr 2020 15:58:10 -0400 From: "Oleksiy Yakovlev" To: CC: , , , Subject: [PATCH 4/4] MdePkg: Add FMP Capsule Image Header extension Date: Fri, 10 Apr 2020 15:58:03 -0400 Message-ID: <20200410195803.19972-5-oleksiyy@ami.com> X-Mailer: git-send-email 2.9.0.windows.1 In-Reply-To: <20200410195803.19972-1-oleksiyy@ami.com> References: <20200410195803.19972-1-oleksiyy@ami.com> MIME-Version: 1.0 Return-Path: oleksiyy@ami.com X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFlrLIsWRmVeSWpSXmKPExsWyRiBhgi7vhQlxBiu+MFm0T5jNZrHi3gZ2 i46Of0wOzB7bv19g9Fi85yVTAFNUA6NNYl5efkliSapCSmpxsq1SQFFmWWJypZJCZoqtkqGS QkFOYnJqbmpeia1SYkFBal6Kkh2XAgawASrLzFNIzUvOT8nMS7dV8gz217WwMLXUNVSyC8lI VcjMS8svyk0syczPU0jOzysBqk5NAYoqJHRzZpw7+Y6xYAt3ReuxTuYGxgucXYwcHBICJhJf DjN1MXJxCAnsYpLY3TiPHcLZwijxa+k3ti5GTg42AU2JA8emMILYIgJSElMOzGQCsZkFEiTu 3rgHViMs4CzR++o+mM0ioCpxastJdhCbV8BUou3sbrC4hICGxLQ1d5lAFnMKmEnsnGYPYgoB lUxeEwxRLShxcuYTFojpEhIHX7xgBrGFBGQl2o4/Z5/AyD8LSdksJGULGJlWMQolluTkJmbm pJcb6SXmZuol5+duYoTEVf4Oxo8fzQ8xMnEwHmKU4GBWEuH1buqNE+JNSaysSi3Kjy8qzUkt PsToBHT+RGYpblDwAeMj3tjAQEoUxjE0MTMxNzI3tDQxNzZWEuet1/eJExJIB8ZrdmpqQWoR zBAmDk6pBkbTM5+rd6ZXBizpFNiSKbO3aa/m7PxmOzmDBRudVbec0l+2aIb1hi01wq5JOeda Y8TdCjV/f43eMcPYNfDvM/1PvWJLZv9efXPNpbnWP1ad0VjyzDy8baGNRHPGJfHee9GvD7fq Cyecn1T0WNHWicPqaJBkWr2ZZJ7QXj+vJ065B26bBs29maHEUpyRaKjFXFScCABoN/5pwAIA AA== 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 --- 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..6bbdf0e 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.