aboutsummaryrefslogtreecommitdiff
path: root/include/fwu_mdata.h
blob: d2521f39b42e33e2c2e61dc92c947176382d0d54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Copyright (c) 2022, Linaro Limited
 */

#if !defined _FWU_MDATA_H_
#define _FWU_MDATA_H_

#include <linux/compiler_attributes.h>
#include <efi.h>

/**
 * struct fwu_image_bank_info - firmware image information
 * @image_guid: Guid value of the image in this bank
 * @accepted: Acceptance status of the image
 * @reserved: Reserved
 *
 * The structure contains image specific fields which are
 * used to identify the image and to specify the image's
 * acceptance status
 */
struct fwu_image_bank_info {
	efi_guid_t  image_guid;
	uint32_t accepted;
	uint32_t reserved;
} __packed;

/**
 * struct fwu_image_entry - information for a particular type of image
 * @image_type_guid: Guid value for identifying the image type
 * @location_guid: Guid of the storage volume where the image is located
 * @img_bank_info: Array containing properties of images
 *
 * This structure contains information on various types of updatable
 * firmware images. Each image type then contains an array of image
 * information per bank.
 */
struct fwu_image_entry {
	efi_guid_t image_type_guid;
	efi_guid_t location_guid;
	struct fwu_image_bank_info img_bank_info[CONFIG_FWU_NUM_BANKS];
} __packed;

/**
 * struct fwu_fw_store_desc - FWU updatable image information
 * @num_banks: Number of firmware banks
 * @num_images: Number of images per bank
 * @img_entry_size: The size of the img_entry array
 * @bank_info_entry_size: The size of the img_bank_info array
 * @img_entry: Array of image entries each giving information on a image
 *
 * This image descriptor structure contains information on the number of
 * updatable banks and images per bank. It also gives the total sizes of
 * the fwu_image_entry and fwu_image_bank_info arrays. This structure is
 * only present in version 2 of the metadata structure.
 */
struct fwu_fw_store_desc {
	uint8_t  num_banks;
	uint8_t  reserved;
	uint16_t num_images;
	uint16_t img_entry_size;
	uint16_t bank_info_entry_size;

	struct fwu_image_entry img_entry[CONFIG_FWU_NUM_IMAGES_PER_BANK];
} __packed;

#if defined(CONFIG_FWU_MDATA_V1)
/**
 * struct fwu_mdata - FWU metadata structure for multi-bank updates
 * @crc32: crc32 value for the FWU metadata
 * @version: FWU metadata version
 * @active_index: Index of the bank currently used for booting images
 * @previous_active_inde: Index of the bank used before the current bank
 *                        being used for booting
 * @img_entry: Array of information on various firmware images that can
 *             be updated
 *
 * This structure is used to store all the needed information for performing
 * multi bank updates on the platform. This contains info on the bank being
 * used to boot along with the information needed for identification of
 * individual images
 */
struct fwu_mdata {
	uint32_t crc32;
	uint32_t version;
	uint32_t active_index;
	uint32_t previous_active_index;

	struct fwu_image_entry img_entry[CONFIG_FWU_NUM_IMAGES_PER_BANK];
} __packed;

#else /* CONFIG_FWU_MDATA_V1 */
/**
 * struct fwu_mdata - FWU metadata structure for multi-bank updates
 * @crc32: crc32 value for the FWU metadata
 * @version: FWU metadata version
 * @active_index: Index of the bank currently used for booting images
 * @previous_active_inde: Index of the bank used before the current bank
 *                        being used for booting
 * @metadata_size: Size of the entire metadata structure, including the
 *                 image descriptors
 * @desc_offset: The offset from the start of this structure where the
 *               image descriptor structure starts. 0 if absent
 * @bank_state: State of each bank, valid, invalid or accepted
 * @fw_desc: The structure describing the FWU updatable images
 *
 * This is the top level structure used to store all information for performing
 * multi bank updates on the platform. This contains info on the bank being
 * used to boot along with the information on state of individual banks.
 */
struct fwu_mdata {
	uint32_t crc32;
	uint32_t version;
	uint32_t active_index;
	uint32_t previous_active_index;
	uint32_t metadata_size;
	uint16_t desc_offset;
	uint16_t reserved1;
	uint8_t  bank_state[4];
	uint32_t reserved2;

	// struct fwu_fw_store_desc fw_desc;
} __packed;

#endif /* CONFIG_FWU_MDATA_V1 */

#endif /* _FWU_MDATA_H_ */