1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright 2021 Linaro Limited
4 * Author: AKASHI Takahiro
6 * derived from efi.h and efi_api.h to make the file POSIX-compliant
10 #define _EFI_CAPSULE_H
15 * Gcc's predefined attributes are not recognized by clang.
18 #define __packed __attribute__((__packed__))
22 #define __aligned(x) __attribute__((__aligned__(x)))
27 } efi_guid_t __aligned(8);
29 #define EFI_GUID(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \
30 {{ (a) & 0xff, ((a) >> 8) & 0xff, ((a) >> 16) & 0xff, \
32 (b) & 0xff, ((b) >> 8) & 0xff, \
33 (c) & 0xff, ((c) >> 8) & 0xff, \
34 (d0), (d1), (d2), (d3), (d4), (d5), (d6), (d7) } }
36 #define EFI_FIRMWARE_MANAGEMENT_CAPSULE_ID_GUID \
37 EFI_GUID(0x6dcbd5ed, 0xe82d, 0x4c44, 0xbd, 0xa1, \
38 0x71, 0x94, 0x19, 0x9a, 0xd9, 0x2a)
40 #define EFI_CERT_TYPE_PKCS7_GUID \
41 EFI_GUID(0x4aafd29d, 0x68df, 0x49ee, 0x8a, 0xa9, \
42 0x34, 0x7d, 0x37, 0x56, 0x65, 0xa7)
44 #define FW_ACCEPT_OS_GUID \
45 EFI_GUID(0x0c996046, 0xbcc0, 0x4d04, 0x85, 0xec, \
46 0xe1, 0xfc, 0xed, 0xf1, 0xc6, 0xf8)
48 #define FW_REVERT_OS_GUID \
49 EFI_GUID(0xacd58b4b, 0xc0e8, 0x475f, 0x99, 0xb5, \
50 0x6b, 0x3f, 0x7e, 0x07, 0xaa, 0xf0)
53 #define CAPSULE_FLAGS_PERSIST_ACROSS_RESET 0x00010000
55 struct efi_capsule_header {
56 efi_guid_t capsule_guid;
59 uint32_t capsule_image_size;
62 struct efi_firmware_management_capsule_header {
64 uint16_t embedded_driver_count;
65 uint16_t payload_item_count;
66 uint64_t item_offset_list[];
69 /* image_capsule_support */
70 #define CAPSULE_SUPPORT_AUTHENTICATION 0x0000000000000001
72 struct efi_firmware_management_capsule_image_header {
74 efi_guid_t update_image_type_id;
75 uint8_t update_image_index;
77 uint32_t update_image_size;
78 uint32_t update_vendor_code_size;
79 uint64_t update_hardware_instance;
80 uint64_t image_capsule_support;
84 * win_certificate_uefi_guid - A certificate that encapsulates
85 * a GUID-specific signature
87 * @hdr: Windows certificate header, cf. WIN_CERTIFICATE
88 * @cert_type: Certificate type
90 struct win_certificate_uefi_guid {
94 uint16_t wCertificateType;
100 * efi_firmware_image_authentication - Capsule authentication method
103 * This structure describes an authentication information for
104 * a capsule with IMAGE_ATTRIBUTE_AUTHENTICATION_REQUIRED set
105 * and should be included as part of the capsule.
106 * Only EFI_CERT_TYPE_PKCS7_GUID is accepted.
108 * @monotonic_count: Count to prevent replay
109 * @auth_info: Authentication info
111 struct efi_firmware_image_authentication {
112 uint64_t monotonic_count;
113 struct win_certificate_uefi_guid auth_info;
116 /* fmp payload header */
117 #define SIGNATURE_16(A, B) ((A) | ((B) << 8))
118 #define SIGNATURE_32(A, B, C, D) \
119 (SIGNATURE_16(A, B) | (SIGNATURE_16(C, D) << 16))
121 #define FMP_PAYLOAD_HDR_SIGNATURE SIGNATURE_32('M', 'S', 'S', '1')
124 * struct fmp_payload_header - EDK2 header for the FMP payload
126 * This structure describes the header which is preprended to the
127 * FMP payload by the edk2 capsule generation scripts.
129 * @signature: Header signature used to identify the header
130 * @header_size: Size of the structure
131 * @fw_version: Firmware versions used
132 * @lowest_supported_version: Lowest supported version (not used)
134 struct fmp_payload_header {
136 uint32_t header_size;
138 uint32_t lowest_supported_version;
141 struct fmp_payload_header_params {
146 #endif /* _EFI_CAPSULE_H */