1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Copyright (c) 2022, Linaro Limited
14 #include <linux/types.h>
19 struct fwu_mdata_gpt_blk_priv {
20 struct udevice *blk_dev;
23 struct fwu_mtd_image_info {
25 int bank_num, image_num;
26 char uuidbuf[UUID_STR_LEN + 1];
29 struct fwu_mdata_ops {
31 * read_mdata() - Populate the asked FWU metadata copy
32 * @dev: FWU metadata device
33 * @mdata: Output FWU mdata read
34 * @primary: If primary or secondary copy of metadata is to be read
36 * Return: 0 if OK, -ve on error
38 int (*read_mdata)(struct udevice *dev, struct fwu_mdata *mdata, bool primary);
41 * write_mdata() - Write the given FWU metadata copy
42 * @dev: FWU metadata device
43 * @mdata: Copy of the FWU metadata to write
44 * @primary: If primary or secondary copy of metadata is to be written
46 * Return: 0 if OK, -ve on error
48 int (*write_mdata)(struct udevice *dev, struct fwu_mdata *mdata, bool primary);
51 #define FWU_MDATA_VERSION 0x1
52 #define FWU_IMAGE_ACCEPTED 0x1
55 * GUID value defined in the FWU specification for identification
56 * of the FWU metadata partition.
58 #define FWU_MDATA_GUID \
59 EFI_GUID(0x8a7a84a0, 0x8387, 0x40f6, 0xab, 0x41, \
60 0xa8, 0xb9, 0xa5, 0xa6, 0x0d, 0x23)
63 * GUID value defined in the Dependable Boot specification for
64 * identification of the revert capsule, used for reverting
65 * any image in the updated bank.
67 #define FWU_OS_REQUEST_FW_REVERT_GUID \
68 EFI_GUID(0xacd58b4b, 0xc0e8, 0x475f, 0x99, 0xb5, \
69 0x6b, 0x3f, 0x7e, 0x07, 0xaa, 0xf0)
72 * GUID value defined in the Dependable Boot specification for
73 * identification of the accept capsule, used for accepting
74 * an image in the updated bank.
76 #define FWU_OS_REQUEST_FW_ACCEPT_GUID \
77 EFI_GUID(0x0c996046, 0xbcc0, 0x4d04, 0x85, 0xec, \
78 0xe1, 0xfc, 0xed, 0xf1, 0xc6, 0xf8)
81 * fwu_read_mdata() - Wrapper around fwu_mdata_ops.read_mdata()
83 int fwu_read_mdata(struct udevice *dev, struct fwu_mdata *mdata, bool primary);
86 * fwu_write_mdata() - Wrapper around fwu_mdata_ops.write_mdata()
88 int fwu_write_mdata(struct udevice *dev, struct fwu_mdata *mdata, bool primary);
91 * fwu_get_mdata() - Read, verify and return the FWU metadata
93 * Read both the metadata copies from the storage media, verify their checksum,
94 * and ascertain that both copies match. If one of the copies has gone bad,
95 * restore it from the good copy.
97 * Return: 0 if OK, -ve on error
99 int fwu_get_mdata(struct fwu_mdata *mdata);
102 * fwu_get_active_index() - Get active_index from the FWU metadata
103 * @active_idxp: active_index value to be read
105 * Read the active_index field from the FWU metadata and place it in
106 * the variable pointed to be the function argument.
108 * Return: 0 if OK, -ve on error
111 int fwu_get_active_index(uint *active_idxp);
114 * fwu_set_active_index() - Set active_index in the FWU metadata
115 * @active_idx: active_index value to be set
117 * Update the active_index field in the FWU metadata
119 * Return: 0 if OK, -ve on error
122 int fwu_set_active_index(uint active_idx);
125 * fwu_get_image_index() - Get the Image Index to be used for capsule update
126 * @image_index: The Image Index for the image
128 * The FWU multi bank update feature computes the value of image_index at
129 * runtime, based on the bank to which the image needs to be written to.
130 * Derive the image_index value for the image.
132 * Currently, the capsule update driver uses the DFU framework for
133 * the updates. This function gets the DFU alt number which is to
134 * be used as the Image Index
136 * Return: 0 if OK, -ve on error
139 int fwu_get_image_index(u8 *image_index);
142 * fwu_revert_boot_index() - Revert the active index in the FWU metadata
144 * Revert the active_index value in the FWU metadata, by swapping the values
145 * of active_index and previous_active_index in both copies of the
148 * Return: 0 if OK, -ve on error
151 int fwu_revert_boot_index(void);
154 * fwu_accept_image() - Set the Acceptance bit for the image
155 * @img_type_id: GUID of the image type for which the accepted bit is to be
157 * @bank: Bank of which the image's Accept bit is to be set
159 * Set the accepted bit for the image specified by the img_guid parameter. This
160 * indicates acceptance of image for subsequent boots by some governing component
161 * like OS(or firmware).
163 * Return: 0 if OK, -ve on error
166 int fwu_accept_image(efi_guid_t *img_type_id, u32 bank);
169 * fwu_clear_accept_image() - Clear the Acceptance bit for the image
170 * @img_type_id: GUID of the image type for which the accepted bit is to be
172 * @bank: Bank of which the image's Accept bit is to be cleared
174 * Clear the accepted bit for the image type specified by the img_type_id parameter.
175 * This function is called after the image has been updated. The accepted bit is
176 * cleared to be set subsequently after passing the image acceptance criteria, by
177 * either the OS(or firmware)
179 * Return: 0 if OK, -ve on error
182 int fwu_clear_accept_image(efi_guid_t *img_type_id, u32 bank);
185 * fwu_plat_get_alt_num() - Get the DFU Alt Num for the image from the platform
187 * @image_guid: Image GUID for which DFU alt number needs to be retrieved
188 * @alt_num: Pointer to the alt_num
190 * Get the DFU alt number from the platform for the image specified by the
193 * Return: 0 if OK, -ve on error
196 int fwu_plat_get_alt_num(struct udevice *dev, efi_guid_t *image_guid,
200 * fwu_plat_get_update_index() - Get the value of the update bank
201 * @update_idx: Bank number to which images are to be updated
203 * Get the value of the bank(partition) to which the update needs to be
206 * Note: This is a weak function and platforms can override this with
207 * their own implementation for selection of the update bank.
209 * Return: 0 if OK, -ve on error
212 int fwu_plat_get_update_index(uint *update_idx);
215 * fwu_plat_get_bootidx() - Get the value of the boot index
216 * @boot_idx: Boot index value
218 * Get the value of the bank(partition) from which the platform
219 * has booted. This value is passed to U-Boot from the earlier
220 * stage bootloader which loads and boots all the relevant
224 void fwu_plat_get_bootidx(uint *boot_idx);
227 * fwu_update_checks_pass() - Check if FWU update can be done
229 * Check if the FWU update can be executed. The updates are
230 * allowed only when the platform is not in Trial State and
231 * the boot time checks have passed
233 * Return: 1 if OK, 0 if checks do not pass
236 u8 fwu_update_checks_pass(void);
239 * fwu_empty_capsule_checks_pass() - Check if empty capsule can be processed
241 * Check if the empty capsule can be processed to either accept or revert
242 * an earlier executed update. The empty capsules need to be processed
243 * only when the platform is in Trial State and the boot time checks have
246 * Return: 1 if OK, 0 if not to be allowed
249 u8 fwu_empty_capsule_checks_pass(void);
252 * fwu_trial_state_ctr_start() - Start the Trial State counter
254 * Start the counter to identify the platform booting in the
255 * Trial State. The counter is implemented as an EFI variable.
257 * Return: 0 if OK, -ve on error
260 int fwu_trial_state_ctr_start(void);
263 * fwu_gen_alt_info_from_mtd() - Parse dfu_alt_info from metadata in mtd
264 * @buf: Buffer into which the dfu_alt_info is filled
265 * @len: Maximum characters that can be written in buf
266 * @mtd: Pointer to underlying MTD device
268 * Parse dfu_alt_info from metadata in mtd. Used for setting the env.
270 * Return: 0 if OK, -ve on error
272 int fwu_gen_alt_info_from_mtd(char *buf, size_t len, struct mtd_info *mtd);
275 * fwu_mtd_get_alt_num() - Mapping of fwu_plat_get_alt_num for MTD device
276 * @image_guid: Image GUID for which DFU alt number needs to be retrieved
277 * @alt_num: Pointer to the alt_num
278 * @mtd_dev: Name of mtd device instance
280 * To map fwu_plat_get_alt_num onto mtd based metadata implementation.
282 * Return: 0 if OK, -ve on error
284 int fwu_mtd_get_alt_num(efi_guid_t *image_guid, u8 *alt_num, const char *mtd_dev);