blob: 2044696e9fc1e1d0ea7d3e57256e049d5fd04de1 [file] [log] [blame]
Zheng Baoc5e28ab2020-10-28 11:38:09 +08001/* SPDX-License-Identifier: GPL-2.0-only */
2
3#ifndef _AMD_FW_TOOL_H_
4#define _AMD_FW_TOOL_H_
5
Karthikeyan Ramasubramanian236245e2022-09-06 14:02:41 -06006#include <commonlib/bsd/compiler.h>
Elyes Haouas7d67a192022-10-14 09:58:29 +02007#include <commonlib/bsd/helpers.h>
Kangheui Won5b84dfd2021-12-21 15:45:06 +11008#include <openssl/sha.h>
Zheng Bao6be1ab62021-05-26 10:16:33 +08009#include <stdint.h>
Zheng Baoba3af5e2021-11-04 18:56:47 +080010#include <stdbool.h>
Zheng Bao6be1ab62021-05-26 10:16:33 +080011
Zheng Baof080cd52023-03-22 12:50:36 +080012#define ERASE_ALIGNMENT 0x1000U
13#define TABLE_ALIGNMENT 0x1000U
14#define BLOB_ALIGNMENT 0x100U
15#define TABLE_ERASE_ALIGNMENT _MAX(TABLE_ALIGNMENT, ERASE_ALIGNMENT)
16#define BLOB_ERASE_ALIGNMENT _MAX(BLOB_ALIGNMENT, ERASE_ALIGNMENT)
17
Zheng Bao4bf6f492023-01-25 22:37:29 +080018enum platform {
19 PLATFORM_UNKNOWN,
20 PLATFORM_CARRIZO,
21 PLATFORM_STONEYRIDGE,
22 PLATFORM_RAVEN,
23 PLATFORM_PICASSO,
24 PLATFORM_RENOIR,
25 PLATFORM_CEZANNE,
26 PLATFORM_MENDOCINO,
27 PLATFORM_LUCIENNE,
28 PLATFORM_PHOENIX,
Arthur Heymans563f7af2023-07-13 11:40:08 +020029 PLATFORM_GLINDA,
30 PLATFORM_GENOA,
Zheng Bao4bf6f492023-01-25 22:37:29 +080031};
32
Zheng Baoc5e28ab2020-10-28 11:38:09 +080033typedef enum _amd_fw_type {
Arthur Heymansaafbe132022-09-30 08:33:28 +020034 AMD_FW_PSP_PUBKEY = 0x00,
35 AMD_FW_PSP_BOOTLOADER = 0x01,
36 AMD_FW_PSP_SECURED_OS = 0x02,
37 AMD_FW_PSP_RECOVERY = 0x03,
38 AMD_FW_PSP_NVRAM = 0x04,
39 AMD_FW_PSP_RTM_PUBKEY = 0x05,
40 AMD_FW_PSP_SMU_FIRMWARE = 0x08,
41 AMD_FW_PSP_SECURED_DEBUG = 0x09,
Arthur Heymans1f05c802022-10-04 17:50:21 +020042 AMD_FW_ABL_PUBKEY = 0x0a,
Arthur Heymansaafbe132022-09-30 08:33:28 +020043 AMD_PSP_FUSE_CHAIN = 0x0b,
44 AMD_FW_PSP_TRUSTLETS = 0x0c,
45 AMD_FW_PSP_TRUSTLETKEY = 0x0d,
46 AMD_FW_PSP_SMU_FIRMWARE2 = 0x12,
Zheng Baoc5e28ab2020-10-28 11:38:09 +080047 AMD_DEBUG_UNLOCK = 0x13,
Zheng Bao8eba6622022-10-16 20:29:03 +080048 AMD_BOOT_DRIVER = 0x1b,
49 AMD_SOC_DRIVER = 0x1c,
50 AMD_DEBUG_DRIVER = 0x1d,
51 AMD_INTERFACE_DRIVER = 0x1f,
Zheng Baobf29a0d2020-12-03 23:00:48 +080052 AMD_HW_IPCFG = 0x20,
Zheng Baoc5e28ab2020-10-28 11:38:09 +080053 AMD_WRAPPED_IKEK = 0x21,
54 AMD_TOKEN_UNLOCK = 0x22,
55 AMD_SEC_GASKET = 0x24,
56 AMD_MP2_FW = 0x25,
57 AMD_DRIVER_ENTRIES = 0x28,
Zheng Baobf29a0d2020-12-03 23:00:48 +080058 AMD_FW_KVM_IMAGE = 0x29,
Arthur Heymans1f05c802022-10-04 17:50:21 +020059 AMD_FW_MP5 = 0x2a,
Zheng Baoc5e28ab2020-10-28 11:38:09 +080060 AMD_S0I3_DRIVER = 0x2d,
61 AMD_ABL0 = 0x30,
62 AMD_ABL1 = 0x31,
63 AMD_ABL2 = 0x32,
64 AMD_ABL3 = 0x33,
65 AMD_ABL4 = 0x34,
66 AMD_ABL5 = 0x35,
67 AMD_ABL6 = 0x36,
68 AMD_ABL7 = 0x37,
Arthur Heymans1f05c802022-10-04 17:50:21 +020069 AMD_SEV_DATA = 0x38,
70 AMD_SEV_CODE = 0x39,
Zheng Baoc5e28ab2020-10-28 11:38:09 +080071 AMD_FW_PSP_WHITELIST = 0x3a,
Zheng Baobf29a0d2020-12-03 23:00:48 +080072 AMD_VBIOS_BTLOADER = 0x3c,
Zheng Baoc5e28ab2020-10-28 11:38:09 +080073 AMD_FW_L2_PTR = 0x40,
Arthur Heymans1f05c802022-10-04 17:50:21 +020074 AMD_FW_DXIO = 0x42,
Zheng Baobf29a0d2020-12-03 23:00:48 +080075 AMD_FW_USB_PHY = 0x44,
76 AMD_FW_TOS_SEC_POLICY = 0x45,
77 AMD_FW_DRTM_TA = 0x47,
Zheng Bao990d1542021-09-17 13:24:54 +080078 AMD_FW_RECOVERYAB_A = 0x48,
79 AMD_FW_RECOVERYAB_B = 0x4A,
80 AMD_FW_BIOS_TABLE = 0x49,
Zheng Baobf29a0d2020-12-03 23:00:48 +080081 AMD_FW_KEYDB_BL = 0x50,
82 AMD_FW_KEYDB_TOS = 0x51,
Zheng Baoc5e28ab2020-10-28 11:38:09 +080083 AMD_FW_PSP_VERSTAGE = 0x52,
84 AMD_FW_VERSTAGE_SIG = 0x53,
Zheng Baobf29a0d2020-12-03 23:00:48 +080085 AMD_RPMC_NVRAM = 0x54,
Zheng Baoab84fd72022-01-27 22:38:27 +080086 AMD_FW_SPL = 0x55,
Zheng Baobf29a0d2020-12-03 23:00:48 +080087 AMD_FW_DMCU_ERAM = 0x58,
88 AMD_FW_DMCU_ISR = 0x59,
Felix Held5f18bb72022-03-24 02:04:51 +010089 AMD_FW_MSMU = 0x5a,
90 AMD_FW_SPIROM_CFG = 0x5c,
Arthur Heymans1f05c802022-10-04 17:50:21 +020091 AMD_FW_MPIO = 0x5d,
Felix Held9f5a5ee2023-02-01 19:21:11 +010092 AMD_FW_TPMLITE = 0x5f, /* family 17h & 19h */
93 AMD_FW_PSP_SMUSCS = 0x5f, /* family 15h & 16h */
Felix Held5f18bb72022-03-24 02:04:51 +010094 AMD_FW_DMCUB = 0x71,
Zheng Baob993cb22021-02-02 18:48:23 +080095 AMD_FW_PSP_BOOTLOADER_AB = 0x73,
Arthur Heymans1f05c802022-10-04 17:50:21 +020096 AMD_RIB = 0x76,
Zheng Bao8eba6622022-10-16 20:29:03 +080097 AMD_FW_AMF_SRAM = 0x85,
98 AMD_FW_AMF_DRAM = 0x86,
99 AMD_FW_AMF_WLAN = 0x88,
100 AMD_FW_AMF_MFD = 0x89,
Arthur Heymans1f05c802022-10-04 17:50:21 +0200101 AMD_FW_MPDMA_TF = 0x8c,
Karthikeyan Ramasubramanian0ab04d22022-05-03 18:16:34 -0600102 AMD_TA_IKEK = 0x8d,
Zheng Bao8eba6622022-10-16 20:29:03 +0800103 AMD_FW_MPCCX = 0x90,
Arthur Heymans1f05c802022-10-04 17:50:21 +0200104 AMD_FW_GMI3_PHY = 0x91,
105 AMD_FW_MPDMA_PM = 0x92,
Zheng Bao8eba6622022-10-16 20:29:03 +0800106 AMD_FW_LSDMA = 0x94,
107 AMD_FW_C20_MP = 0x95,
108 AMD_FW_FCFG_TABLE = 0x98,
109 AMD_FW_MINIMSMU = 0x9a,
110 AMD_FW_SRAM_FW_EXT = 0x9d,
Fred Reitbergerc4f3a332023-02-07 12:12:40 -0500111 AMD_FW_UMSMU = 0xa2,
Zheng Baoc5e28ab2020-10-28 11:38:09 +0800112 AMD_FW_IMC = 0x200, /* Large enough to be larger than the top BHD entry type. */
113 AMD_FW_GEC,
114 AMD_FW_XHCI,
115 AMD_FW_INVALID, /* Real last one to detect the last entry in table. */
116 AMD_FW_SKIP /* This is for non-applicable options. */
117} amd_fw_type;
118
119typedef enum _amd_bios_type {
Ritul Guru9a321f32022-07-29 11:06:40 +0530120 AMD_BIOS_RTM_PUBKEY = 0x05,
121 AMD_BIOS_SIG = 0x07,
Zheng Baoc5e28ab2020-10-28 11:38:09 +0800122 AMD_BIOS_APCB = 0x60,
123 AMD_BIOS_APOB = 0x61,
124 AMD_BIOS_BIN = 0x62,
125 AMD_BIOS_APOB_NV = 0x63,
126 AMD_BIOS_PMUI = 0x64,
127 AMD_BIOS_PMUD = 0x65,
128 AMD_BIOS_UCODE = 0x66,
129 AMD_BIOS_APCB_BK = 0x68,
Arthur Heymans93aa0902023-07-13 11:37:57 +0200130 AMD_BIOS_EARLY_VGA = 0x69,
Zheng Baoc5e28ab2020-10-28 11:38:09 +0800131 AMD_BIOS_MP2_CFG = 0x6a,
132 AMD_BIOS_PSP_SHARED_MEM = 0x6b,
133 AMD_BIOS_L2_PTR = 0x70,
134 AMD_BIOS_INVALID,
135 AMD_BIOS_SKIP
136} amd_bios_type;
137
Robert Zieba29bc79f2022-03-14 15:59:12 -0600138typedef enum _amd_addr_mode {
139 AMD_ADDR_PHYSICAL = 0, /* Physical address */
140 AMD_ADDR_REL_BIOS, /* Relative to beginning of image */
141 AMD_ADDR_REL_TAB, /* Relative to table */
142 AMD_ADDR_REL_SLOT, /* Relative to slot */
143} amd_addr_mode;
144
Zheng Bao6be1ab62021-05-26 10:16:33 +0800145struct second_gen_efs { /* todo: expand for Server products */
146 int gen:1; /* Client products only use bit 0 */
147 int reserved:31;
148} __attribute__((packed));
149
150#define EFS_SECOND_GEN 0
Zheng Bao487d0452022-04-03 12:50:07 +0800151#define EFS_BEFORE_SECOND_GEN 1
Zheng Bao6be1ab62021-05-26 10:16:33 +0800152
153typedef struct _embedded_firmware {
154 uint32_t signature; /* 0x55aa55aa */
155 uint32_t imc_entry;
156 uint32_t gec_entry;
157 uint32_t xhci_entry;
Felix Heldad68b072021-10-18 14:00:35 +0200158 uint32_t psp_directory;
Felix Heldc5c7fa42023-03-20 16:02:47 +0100159 uint32_t new_psp_directory; /* also used as combo_psp_directory */
Zheng Bao6be1ab62021-05-26 10:16:33 +0800160 uint32_t bios0_entry; /* todo: add way to select correct entry */
161 uint32_t bios1_entry;
162 uint32_t bios2_entry;
163 struct second_gen_efs efs_gen;
164 uint32_t bios3_entry;
165 uint32_t reserved_2Ch;
166 uint32_t promontory_fw_ptr;
167 uint32_t lp_promontory_fw_ptr;
168 uint32_t reserved_38h;
169 uint32_t reserved_3Ch;
170 uint8_t spi_readmode_f15_mod_60_6f;
171 uint8_t fast_speed_new_f15_mod_60_6f;
172 uint8_t reserved_42h;
173 uint8_t spi_readmode_f17_mod_00_2f;
174 uint8_t spi_fastspeed_f17_mod_00_2f;
175 uint8_t qpr_dummy_cycle_f17_mod_00_2f;
176 uint8_t reserved_46h;
177 uint8_t spi_readmode_f17_mod_30_3f;
178 uint8_t spi_fastspeed_f17_mod_30_3f;
179 uint8_t micron_detect_f17_mod_30_3f;
180 uint8_t reserved_4Ah;
181 uint8_t reserved_4Bh;
182 uint32_t reserved_4Ch;
183} __attribute__((packed, aligned(16))) embedded_firmware;
184
185typedef struct _psp_directory_header {
186 uint32_t cookie;
187 uint32_t checksum;
188 uint32_t num_entries;
Zheng Bao6fff2492021-11-15 19:53:21 +0800189 union {
190 uint32_t additional_info;
191 struct {
192 uint32_t dir_size:10;
193 uint32_t spi_block_size:4;
194 uint32_t base_addr:15;
195 uint32_t address_mode:2;
196 uint32_t not_used:1;
197 } __attribute__((packed)) additional_info_fields;
198 };
Zheng Bao6be1ab62021-05-26 10:16:33 +0800199} __attribute__((packed, aligned(16))) psp_directory_header;
200
201typedef struct _psp_directory_entry {
202 uint8_t type;
203 uint8_t subprog;
Zheng Bao5ca13432022-10-16 20:18:40 +0800204 union {
205 uint16_t rsvd;
206 struct {
207 uint8_t rom_id:2;
208 uint8_t writable:1;
209 uint8_t inst:4;
210 uint8_t rsvd_1:1;
211 uint8_t rsvd_2:8;
212 } __attribute__((packed));
213 };
Zheng Bao6be1ab62021-05-26 10:16:33 +0800214 uint32_t size;
Zheng Bao6fff2492021-11-15 19:53:21 +0800215 uint64_t addr:62; /* or a value in some cases */
216 uint64_t address_mode:2;
Zheng Bao6be1ab62021-05-26 10:16:33 +0800217} __attribute__((packed)) psp_directory_entry;
218
219typedef struct _psp_directory_table {
220 psp_directory_header header;
221 psp_directory_entry entries[];
222} __attribute__((packed, aligned(16))) psp_directory_table;
223
Fred Reitbergera194e622023-03-09 12:33:52 -0500224#define MAX_PSP_ENTRIES 0xff
Zheng Bao6be1ab62021-05-26 10:16:33 +0800225
226typedef struct _psp_combo_header {
227 uint32_t cookie;
228 uint32_t checksum;
229 uint32_t num_entries;
230 uint32_t lookup;
231 uint64_t reserved[2];
232} __attribute__((packed, aligned(16))) psp_combo_header;
233
234typedef struct _psp_combo_entry {
235 uint32_t id_sel;
236 uint32_t id;
237 uint64_t lvl2_addr;
238} __attribute__((packed)) psp_combo_entry;
239
240typedef struct _psp_combo_directory {
241 psp_combo_header header;
242 psp_combo_entry entries[];
243} __attribute__((packed, aligned(16))) psp_combo_directory;
244
Zheng Bao0e3d18b2023-03-07 15:28:57 +0800245#define MAX_COMBO_ENTRIES 2
Zheng Bao6be1ab62021-05-26 10:16:33 +0800246
247typedef struct _bios_directory_hdr {
248 uint32_t cookie;
249 uint32_t checksum;
250 uint32_t num_entries;
Zheng Bao6fff2492021-11-15 19:53:21 +0800251 union {
252 uint32_t additional_info;
253 struct {
254 uint32_t dir_size:10;
255 uint32_t spi_block_size:4;
256 uint32_t base_addr:15;
257 uint32_t address_mode:2;
258 uint32_t not_used:1;
259 } __attribute__((packed)) additional_info_fields;
260 };
Zheng Bao6be1ab62021-05-26 10:16:33 +0800261} __attribute__((packed, aligned(16))) bios_directory_hdr;
262
263typedef struct _bios_directory_entry {
264 uint8_t type;
265 uint8_t region_type;
266 int reset:1;
267 int copy:1;
268 int ro:1;
269 int compressed:1;
270 int inst:4;
271 uint8_t subprog; /* b[7:3] reserved */
272 uint32_t size;
Zheng Bao6fff2492021-11-15 19:53:21 +0800273 uint64_t source:62;
274 uint64_t address_mode:2;
Zheng Bao6be1ab62021-05-26 10:16:33 +0800275 uint64_t dest;
276} __attribute__((packed)) bios_directory_entry;
277
278typedef struct _bios_directory_table {
279 bios_directory_hdr header;
280 bios_directory_entry entries[];
281} bios_directory_table;
Zheng Baoc5e28ab2020-10-28 11:38:09 +0800282
Altamshali Hirani8915abe2022-03-17 13:26:31 -0500283#define MAX_BIOS_ENTRIES 0x2f
284
Zheng Bao33351332021-10-30 16:53:23 +0800285#define BDT_LVL1 (1 << 0)
286#define BDT_LVL2 (1 << 1)
Zheng Bao990d1542021-09-17 13:24:54 +0800287#define BDT_LVL1_AB (1 << 2)
288#define BDT_LVL2_AB (1 << 3)
Zheng Baoc5e28ab2020-10-28 11:38:09 +0800289#define BDT_BOTH (BDT_LVL1 | BDT_LVL2)
Zheng Bao990d1542021-09-17 13:24:54 +0800290#define BDT_BOTH_AB (BDT_LVL1_AB | BDT_LVL2_AB)
Zheng Baoc5e28ab2020-10-28 11:38:09 +0800291typedef struct _amd_bios_entry {
292 amd_bios_type type;
293 char *filename;
294 int subpr;
295 int region_type;
296 int reset;
297 int copy;
298 int ro;
299 int zlib;
300 int inst;
301 uint64_t src;
302 uint64_t dest;
303 size_t size;
304 int level;
305} amd_bios_entry;
306
Zheng Baofdd47ef2021-09-17 13:30:08 +0800307typedef struct _ish_directory_table {
308 uint32_t checksum;
309 uint32_t boot_priority;
310 uint32_t update_retry_count;
311 uint8_t glitch_retry_count;
312 uint8_t glitch_higherbits_reserved[3];
313 uint32_t pl2_location;
314 uint32_t psp_id;
315 uint32_t slot_max_size;
316 uint32_t reserved;
317} __attribute__((packed)) ish_directory_table;
318
Zheng Bao6be1ab62021-05-26 10:16:33 +0800319#define EMBEDDED_FW_SIGNATURE 0x55aa55aa
320#define PSP_COOKIE 0x50535024 /* 'PSP$' */
321#define PSPL2_COOKIE 0x324c5024 /* '2LP$' */
322#define PSP2_COOKIE 0x50535032 /* 'PSP2' */
Zheng Bao96a33712021-06-11 15:54:40 +0800323#define BHD_COOKIE 0x44484224 /* 'DHB$ */
324#define BHDL2_COOKIE 0x324c4224 /* '2LB$ */
Zheng Bao84fb9ea2022-08-18 15:54:47 +0800325#define BHD2_COOKIE 0x44484232 /* 'DHB2' */
Zheng Baoc5e28ab2020-10-28 11:38:09 +0800326
Zheng Bao33351332021-10-30 16:53:23 +0800327#define PSP_LVL1 (1 << 0)
328#define PSP_LVL2 (1 << 1)
Zheng Bao990d1542021-09-17 13:24:54 +0800329#define PSP_LVL1_AB (1 << 2)
330#define PSP_LVL2_AB (1 << 3)
Zheng Baoc5e28ab2020-10-28 11:38:09 +0800331#define PSP_BOTH (PSP_LVL1 | PSP_LVL2)
Zheng Bao990d1542021-09-17 13:24:54 +0800332#define PSP_BOTH_AB (PSP_LVL1_AB | PSP_LVL2_AB)
Kangheui Won5b84dfd2021-12-21 15:45:06 +1100333
Karthikeyan Ramasubramanian24b52272023-07-13 11:11:04 -0600334typedef enum _fwid_type {
335 FWID_TYPE_FWID = 0,
336 FWID_TYPE_UUID,
337} fwid_type_t;
338
Karthikeyan Ramasubramanianabaca2a2023-07-13 17:24:13 -0600339#define UUID_LEN_BYTES 16
Kangheui Won5b84dfd2021-12-21 15:45:06 +1100340typedef struct _amd_fw_entry_hash {
Karthikeyan Ramasubramanianabaca2a2023-07-13 17:24:13 -0600341 fwid_type_t fwid_type;
342 union {
343 uint16_t fw_id;
344 uint8_t uuid[UUID_LEN_BYTES];
345 };
Kangheui Won5b84dfd2021-12-21 15:45:06 +1100346 uint16_t subtype;
347 uint32_t sha_len;
348 uint8_t sha[SHA384_DIGEST_LENGTH];
349} amd_fw_entry_hash;
350
Zheng Baoc5e28ab2020-10-28 11:38:09 +0800351typedef struct _amd_fw_entry {
352 amd_fw_type type;
353 char *filename;
354 uint8_t subprog;
Zheng Bao5ca13432022-10-16 20:18:40 +0800355 uint8_t inst;
Ritul Gurua2cb3402022-08-29 00:51:08 +0530356 uint64_t dest;
357 size_t size;
Zheng Baoc5e28ab2020-10-28 11:38:09 +0800358 int level;
359 uint64_t other;
Kangheui Won3c164e12021-12-03 20:25:05 +1100360 /* If the binary is signed and the tool is invoked to keep the signed binaries separate,
361 then this field is populated with the offset of the concerned PSP binary (relative to
362 BIOS or PSP Directory table). */
363 uint64_t addr_signed;
364 uint32_t file_size;
365 /* Some files that don't have amd_fw_header have to be skipped from hashing. These files
366 include but not limited to: *iKek*, *.tkn, *.stkn */
367 bool skip_hashing;
Karthikeyan Ramasubramaniand7a5d9e2023-05-03 13:34:41 -0600368 uint8_t hash_tbl_id;
Karthikeyan Ramasubramanian24b52272023-07-13 11:11:04 -0600369 fwid_type_t fwid_type;
Kangheui Won5b84dfd2021-12-21 15:45:06 +1100370 uint32_t num_hash_entries;
371 amd_fw_entry_hash *hash_entries;
Grzegorz Bernackidfdf81c2023-04-05 09:35:42 +0000372 bool generate_manifest;
Zheng Baoc5e28ab2020-10-28 11:38:09 +0800373} amd_fw_entry;
374
Kangheui Won3c164e12021-12-03 20:25:05 +1100375/* Most PSP binaries, if not all, have the following header format. */
376struct amd_fw_header {
377 uint8_t reserved_0[20];
378 uint32_t fw_size_signed;
379 uint8_t reserved_18[24];
380 /* 1 if the image is signed, 0 otherwise */
381 uint32_t sig_opt;
382 uint32_t sig_id;
383 uint8_t sig_param[16];
384 uint32_t comp_opt;
385 uint8_t reserved_4c[4];
386 uint32_t uncomp_size;
387 uint32_t comp_size;
388 /* Starting MDN fw_id is populated instead of fw_type. */
389 uint16_t fw_id;
Grzegorz Bernackidfdf81c2023-04-05 09:35:42 +0000390 uint8_t reserved_5a[6];
391 uint8_t version[4];
392 uint8_t reserved_64[8];
Kangheui Won3c164e12021-12-03 20:25:05 +1100393 uint32_t size_total;
394 uint8_t reserved_70[12];
395 /* Starting MDN fw_id is populated instead of fw_type. fw_type will still be around
396 for backwards compatibility. */
397 uint8_t fw_type;
398 uint8_t fw_subtype;
399 uint8_t fw_subprog;
400 uint8_t reserved_7f;
401 uint8_t reserved_80[128];
402} __packed;
403
Karthikeyan Ramasubramaniand7a5d9e2023-05-03 13:34:41 -0600404/* Based on the available PSP resources and increasing number of signed PSP binaries,
405 AMD recommends to split the hash table into 3 parts for now. */
406#define MAX_NUM_HASH_TABLES 3
Kangheui Won5b84dfd2021-12-21 15:45:06 +1100407struct psp_fw_hash_table {
408 uint16_t version;
409 uint16_t no_of_entries_256;
410 uint16_t no_of_entries_384;
411 /* The next 2 elements are pointers to arrays of SHA256 and SHA384 entries. */
412 /* It does not make sense to store pointers in the CBFS file */
413} __packed;
414
Zheng Baoc5e28ab2020-10-28 11:38:09 +0800415typedef struct _amd_cb_config {
Zheng Baoba3af5e2021-11-04 18:56:47 +0800416 bool have_whitelist;
417 bool unlock_secure;
418 bool use_secureos;
419 bool load_mp2_fw;
420 bool multi_level;
421 bool s0i3;
Zheng Baoc3007f32022-04-03 12:53:51 +0800422 bool second_gen;
Zheng Bao6c5ec8e2022-02-11 11:51:26 +0800423 bool have_mb_spl;
Zheng Bao990d1542021-09-17 13:24:54 +0800424 bool recovery_ab;
Karthikeyan Ramasubramanianad06bae2022-04-08 14:19:55 -0600425 bool recovery_ab_single_copy;
Zheng Baofdd47ef2021-09-17 13:30:08 +0800426 bool need_ish;
Zheng Bao993b43f2021-11-10 12:21:46 +0800427 bool use_combo;
Karthikeyan Ramasubramanian8d885612023-03-09 17:39:31 -0700428 bool have_apcb_bk;
Zheng Bao4bf6f492023-01-25 22:37:29 +0800429 enum platform soc_id;
Zheng Baoc5e28ab2020-10-28 11:38:09 +0800430} amd_cb_config;
431
432void register_fw_fuse(char *str);
Zheng Bao994ff522023-03-09 11:43:55 +0800433uint8_t process_config(FILE *config, amd_cb_config *cb_config);
Zheng Baof080cd52023-03-22 12:50:36 +0800434void process_signed_psp_firmwares(const char *signed_rom,
435 amd_fw_entry *fw_table,
436 uint64_t signed_start_addr,
437 enum platform soc_id);
438void write_or_fail(int fd, void *ptr, size_t size);
439ssize_t read_from_file_to_buf(int fd, void *buf, size_t buf_size);
440ssize_t write_from_buf_to_file(int fd, const void *buf, size_t buf_size);
Zheng Baoc5e28ab2020-10-28 11:38:09 +0800441#define OK 0
442
443#define LINE_EOF (1)
444#define LINE_TOO_LONG (2)
445
Zheng Baoc5e28ab2020-10-28 11:38:09 +0800446#endif /* _AMD_FW_TOOL_H_ */