blob: 421f0bc7035530955c0b66a4a81bb976b093bfff [file] [log] [blame]
Patrick Georgi7333a112020-05-08 20:48:04 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +00002
Stefan Reinauer63217582012-10-29 16:52:36 -07003#ifndef __CBFS_H
4#define __CBFS_H
5
Patrick Georgi89f20342015-10-01 15:54:04 +02006#include "common.h"
Patrick Georgib7b56dd82009-09-14 13:29:27 +00007#include <stdint.h>
Ronald G. Minnicha8a133d2013-12-30 13:16:18 -08008
Patrick Georgi89f20342015-10-01 15:54:04 +02009#include <vb2_api.h>
10
Patrick Georgi2c615062015-07-15 20:49:00 +020011/* cbfstool will fail when trying to build a cbfs_file header that's larger
12 * than MAX_CBFS_FILE_HEADER_BUFFER. 1K should give plenty of room. */
13#define MAX_CBFS_FILE_HEADER_BUFFER 1024
14
Ronald G. Minnicha8a133d2013-12-30 13:16:18 -080015/* create a magic number in host-byte order.
16 * b3 is the high order byte.
17 * in the coreboot tools, we go with the 32-bit
18 * magic number convention.
19 * This was an inline func but that breaks anything
20 * that uses it in a case statement.
21 */
22
23#define makemagic(b3, b2, b1, b0)\
24 (((b3)<<24) | ((b2) << 16) | ((b1) << 8) | (b0))
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000025
Patrick Georgi20624732015-07-17 21:35:46 +020026/* To make CBFS more friendly to ROM, fill -1 (0xFF) instead of zero. */
27#define CBFS_CONTENT_DEFAULT_VALUE (-1)
28
Sol Boucher67a0a862015-03-18 12:36:27 -070029// Alignment (in bytes) to be used when no master header is present
30#define CBFS_ENTRY_ALIGNMENT 64
31
David Hendricks90ca3b62012-11-16 14:48:22 -080032#define CBFS_HEADER_MAGIC 0x4F524243
33#define CBFS_HEADPTR_ADDR_X86 0xFFFFFFFC
Hung-Te Lin086842a2013-01-04 12:33:03 +080034#define CBFS_HEADER_VERSION1 0x31313131
35#define CBFS_HEADER_VERSION2 0x31313132
36#define CBFS_HEADER_VERSION CBFS_HEADER_VERSION2
David Hendricks90ca3b62012-11-16 14:48:22 -080037
Patrick Georgi45acb342015-07-14 22:18:23 +020038#define CBFS_ALIGNMENT 64
39
Patrick Georgib7b56dd82009-09-14 13:29:27 +000040struct cbfs_header {
41 uint32_t magic;
42 uint32_t version;
43 uint32_t romsize;
44 uint32_t bootblocksize;
Patrick Georgi45acb342015-07-14 22:18:23 +020045 uint32_t align; /* hard coded to 64 byte */
Patrick Georgib7b56dd82009-09-14 13:29:27 +000046 uint32_t offset;
David Hendricks90ca3b62012-11-16 14:48:22 -080047 uint32_t architecture; /* Version 2 */
48 uint32_t pad[1];
Stefan Reinauer6a001132017-07-13 02:20:27 +020049} __packed;
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000050
David Hendricks90ca3b62012-11-16 14:48:22 -080051#define CBFS_ARCHITECTURE_UNKNOWN 0xFFFFFFFF
52#define CBFS_ARCHITECTURE_X86 0x00000001
Gabe Black51edd542013-09-30 23:00:33 -070053#define CBFS_ARCHITECTURE_ARM 0x00000010
Ronald G. Minnich5f431842013-11-12 09:03:33 -080054#define CBFS_ARCHITECTURE_AARCH64 0x0000aa64
Julius Wernerf96d9052019-08-16 15:35:39 -070055#define CBFS_ARCHITECTURE_MIPS 0x00000100 /* deprecated */
Ronald G. Minnich833bf202014-10-16 10:55:39 +000056#define CBFS_ARCHITECTURE_RISCV 0xc001d0de
Ronald G. Minniched4aa042015-12-11 18:19:52 +000057#define CBFS_ARCHITECTURE_PPC64 0x407570ff
David Hendricks90ca3b62012-11-16 14:48:22 -080058
Hung-Te Lineab2c812013-01-29 01:56:17 +080059#define CBFS_FILE_MAGIC "LARCHIVE"
60
Patrick Georgib7b56dd82009-09-14 13:29:27 +000061struct cbfs_file {
Stefan Reinauera1e48242011-10-21 14:24:57 -070062 uint8_t magic[8];
Patrick Georgi5dc01ac2015-07-15 16:40:44 +020063 /* length of file data */
Patrick Georgib7b56dd82009-09-14 13:29:27 +000064 uint32_t len;
65 uint32_t type;
Patrick Georgi2c615062015-07-15 20:49:00 +020066 /* offset to struct cbfs_file_attribute or 0 */
Patrick Georgi0d618af2015-07-15 18:28:23 +020067 uint32_t attributes_offset;
Patrick Georgi5dc01ac2015-07-15 16:40:44 +020068 /* length of header incl. variable data */
Patrick Georgib7b56dd82009-09-14 13:29:27 +000069 uint32_t offset;
Patrick Georgic569b8b2015-07-15 16:42:38 +020070 char filename[];
Stefan Reinauer6a001132017-07-13 02:20:27 +020071} __packed;
Patrick Georgib7b56dd82009-09-14 13:29:27 +000072
Patrick Georgiab5754d2015-09-01 18:20:20 +020073#if defined __GNUC__ && (__GNUC__ * 100 + __GNUC_MINOR__) >= 406
Patrick Georgi5dc01ac2015-07-15 16:40:44 +020074_Static_assert(sizeof(struct cbfs_file) == 24, "cbfs_file size mismatch");
Patrick Georgi57c67e52015-09-01 12:37:41 +020075#endif
Patrick Georgi5dc01ac2015-07-15 16:40:44 +020076
Patrick Georgic6a8da72015-07-22 21:32:03 +020077/* The common fields of extended cbfs file attributes.
78 Attributes are expected to start with tag/len, then append their
79 specific fields. */
80struct cbfs_file_attribute {
81 uint32_t tag;
82 /* len covers the whole structure, incl. tag and len */
83 uint32_t len;
84 uint8_t data[0];
Stefan Reinauer6a001132017-07-13 02:20:27 +020085} __packed;
Patrick Georgic6a8da72015-07-22 21:32:03 +020086
Patrick Georgi2c615062015-07-15 20:49:00 +020087/* Depending on how the header was initialized, it may be backed with 0x00 or
88 * 0xff. Support both. */
89#define CBFS_FILE_ATTR_TAG_UNUSED 0
90#define CBFS_FILE_ATTR_TAG_UNUSED2 0xffffffff
Daisuke Nojiri8984a632015-07-09 15:07:45 -070091#define CBFS_FILE_ATTR_TAG_COMPRESSION 0x42435a4c
Patrick Georgi89f20342015-10-01 15:54:04 +020092#define CBFS_FILE_ATTR_TAG_HASH 0x68736148
Daisuke Nojiriff906fb2017-10-30 17:38:04 -070093#define CBFS_FILE_ATTR_TAG_POSITION 0x42435350 /* PSCB */
Werner Zehe9995f12016-01-14 13:22:37 +010094#define CBFS_FILE_ATTR_TAG_ALIGNMENT 0x42434c41 /* ALCB */
Daisuke Nojiriff906fb2017-10-30 17:38:04 -070095#define CBFS_FILE_ATTR_TAG_PADDING 0x47444150 /* PDNG */
Philipp Deppenwiese7ba58712018-11-20 13:54:49 +010096#define CBFS_FILE_ATTR_TAG_IBB 0x32494242 /* Initial BootBlock */
Daisuke Nojiri8984a632015-07-09 15:07:45 -070097
98struct cbfs_file_attr_compression {
99 uint32_t tag;
100 uint32_t len;
101 /* whole file compression format. 0 if no compression. */
102 uint32_t compression;
103 uint32_t decompressed_size;
Stefan Reinauer6a001132017-07-13 02:20:27 +0200104} __packed;
Patrick Georgi2c615062015-07-15 20:49:00 +0200105
Patrick Georgi89f20342015-10-01 15:54:04 +0200106struct cbfs_file_attr_hash {
107 uint32_t tag;
108 uint32_t len;
109 uint32_t hash_type;
110 /* hash_data is len - sizeof(struct) bytes */
111 uint8_t hash_data[];
Stefan Reinauer6a001132017-07-13 02:20:27 +0200112} __packed;
Patrick Georgi89f20342015-10-01 15:54:04 +0200113
Werner Zehe9995f12016-01-14 13:22:37 +0100114struct cbfs_file_attr_position {
115 uint32_t tag;
116 uint32_t len;
117 uint32_t position;
Stefan Reinauer6a001132017-07-13 02:20:27 +0200118} __packed;
Werner Zehe9995f12016-01-14 13:22:37 +0100119
120struct cbfs_file_attr_align {
121 uint32_t tag;
122 uint32_t len;
123 uint32_t alignment;
Stefan Reinauer6a001132017-07-13 02:20:27 +0200124} __packed;
Werner Zehe9995f12016-01-14 13:22:37 +0100125
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000126struct cbfs_stage {
Stefan Reinauera1e48242011-10-21 14:24:57 -0700127 uint32_t compression;
128 uint64_t entry;
129 uint64_t load;
130 uint32_t len;
131 uint32_t memlen;
Stefan Reinauer6a001132017-07-13 02:20:27 +0200132} __packed;
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000133
Ronald G. Minnicha8a133d2013-12-30 13:16:18 -0800134#define PAYLOAD_SEGMENT_CODE makemagic('C', 'O', 'D', 'E')
135#define PAYLOAD_SEGMENT_DATA makemagic('D', 'A', 'T', 'A')
Wei Hu2ad6ee92014-04-16 22:52:59 -0700136#define PAYLOAD_SEGMENT_BSS makemagic('B', 'S', 'S', ' ')
Ronald G. Minnicha8a133d2013-12-30 13:16:18 -0800137#define PAYLOAD_SEGMENT_PARAMS makemagic('P', 'A', 'R', 'A')
138#define PAYLOAD_SEGMENT_ENTRY makemagic('E', 'N', 'T', 'R')
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000139
140struct cbfs_payload_segment {
Stefan Reinauera1e48242011-10-21 14:24:57 -0700141 uint32_t type;
142 uint32_t compression;
143 uint32_t offset;
144 uint64_t load_addr;
145 uint32_t len;
146 uint32_t mem_len;
Stefan Reinauer6a001132017-07-13 02:20:27 +0200147} __packed;
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000148
149struct cbfs_payload {
150 struct cbfs_payload_segment segments;
Stefan Reinauer6a001132017-07-13 02:20:27 +0200151} __packed;
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000152
153/** These are standard component types for well known
154 components (i.e - those that coreboot needs to consume.
155 Users are welcome to use any other value for their
156 components */
157
Patrick Georgi239c7422015-09-09 20:11:26 +0200158#define CBFS_COMPONENT_BOOTBLOCK 0x01
159#define CBFS_COMPONENT_CBFSHEADER 0x02
Stefan Reinauer800379f2010-03-01 08:34:19 +0000160#define CBFS_COMPONENT_STAGE 0x10
Patrick Rudolph4f5bed52018-05-02 09:44:08 +0200161#define CBFS_COMPONENT_SELF 0x20
Patrick Rudolph7ee05ed2018-04-26 09:35:13 +0200162#define CBFS_COMPONENT_FIT 0x21
Stefan Reinauer800379f2010-03-01 08:34:19 +0000163#define CBFS_COMPONENT_OPTIONROM 0x30
164#define CBFS_COMPONENT_BOOTSPLASH 0x40
165#define CBFS_COMPONENT_RAW 0x50
166#define CBFS_COMPONENT_VSA 0x51
167#define CBFS_COMPONENT_MBI 0x52
168#define CBFS_COMPONENT_MICROCODE 0x53
Martin Rothdde307c2015-03-24 15:54:20 -0600169#define CBFS_COMPONENT_FSP 0x60
170#define CBFS_COMPONENT_MRC 0x61
Pratik Prajapatifb128732015-09-02 13:46:30 -0700171#define CBFS_COMPONENT_MMA 0x62
172#define CBFS_COMPONENT_EFI 0x63
Julius Wernerf975e552016-08-19 15:43:06 -0700173#define CBFS_COMPONENT_STRUCT 0x70
Patrick Georgia865b172011-01-14 07:40:24 +0000174#define CBFS_COMPONENT_CMOS_DEFAULT 0xaa
Martin Rothdde307c2015-03-24 15:54:20 -0600175#define CBFS_COMPONENT_SPD 0xab
176#define CBFS_COMPONENT_MRC_CACHE 0xac
Patrick Georgi24479372011-01-18 13:56:36 +0000177#define CBFS_COMPONENT_CMOS_LAYOUT 0x01aa
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000178
Ronald G. Minnich83b8f0c2009-05-08 19:23:00 +0000179/* The deleted type is chosen to be a value
180 * that can be written in a FLASH from all other
Stefan Reinauer14e22772010-04-27 06:56:47 +0000181 * values.
Ronald G. Minnich83b8f0c2009-05-08 19:23:00 +0000182 */
183#define CBFS_COMPONENT_DELETED 0
184
Stefan Reinauer14e22772010-04-27 06:56:47 +0000185/* for all known FLASH, this value can be changed
186 * to all other values. This allows NULL files to be
Ronald G. Minnich83b8f0c2009-05-08 19:23:00 +0000187 * changed without a block erase
188 */
Peter Stuge1d862de2009-04-14 00:08:34 +0000189#define CBFS_COMPONENT_NULL 0xFFFFFFFF
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000190
Patrick Georgidc37dab2015-09-09 16:46:00 +0200191static struct typedesc_t filetypes[] unused = {
Patrick Georgi239c7422015-09-09 20:11:26 +0200192 {CBFS_COMPONENT_BOOTBLOCK, "bootblock"},
193 {CBFS_COMPONENT_CBFSHEADER, "cbfs header"},
Patrick Georgidc37dab2015-09-09 16:46:00 +0200194 {CBFS_COMPONENT_STAGE, "stage"},
Ronald G. Minnichc6d13492018-05-15 18:05:07 -0700195 {CBFS_COMPONENT_SELF, "simple elf"},
Patrick Rudolph7ee05ed2018-04-26 09:35:13 +0200196 {CBFS_COMPONENT_FIT, "fit"},
Patrick Georgidc37dab2015-09-09 16:46:00 +0200197 {CBFS_COMPONENT_OPTIONROM, "optionrom"},
198 {CBFS_COMPONENT_BOOTSPLASH, "bootsplash"},
199 {CBFS_COMPONENT_RAW, "raw"},
200 {CBFS_COMPONENT_VSA, "vsa"},
201 {CBFS_COMPONENT_MBI, "mbi"},
202 {CBFS_COMPONENT_MICROCODE, "microcode"},
203 {CBFS_COMPONENT_FSP, "fsp"},
204 {CBFS_COMPONENT_MRC, "mrc"},
205 {CBFS_COMPONENT_CMOS_DEFAULT, "cmos_default"},
206 {CBFS_COMPONENT_CMOS_LAYOUT, "cmos_layout"},
207 {CBFS_COMPONENT_SPD, "spd"},
208 {CBFS_COMPONENT_MRC_CACHE, "mrc_cache"},
Pratik Prajapatifb128732015-09-02 13:46:30 -0700209 {CBFS_COMPONENT_MMA, "mma"},
210 {CBFS_COMPONENT_EFI, "efi"},
Julius Wernerf975e552016-08-19 15:43:06 -0700211 {CBFS_COMPONENT_STRUCT, "struct"},
Patrick Georgidc37dab2015-09-09 16:46:00 +0200212 {CBFS_COMPONENT_DELETED, "deleted"},
213 {CBFS_COMPONENT_NULL, "null"}
214};
215
Patrick Georgi89f20342015-10-01 15:54:04 +0200216static const struct typedesc_t types_cbfs_hash[] unused = {
217 {VB2_HASH_INVALID, "none"},
218 {VB2_HASH_SHA1, "sha1"},
219 {VB2_HASH_SHA256, "sha256"},
220 {VB2_HASH_SHA512, "sha512"},
221 {0, NULL}
222};
223
224static size_t widths_cbfs_hash[] unused = {
225 [VB2_HASH_INVALID] = 0,
226 [VB2_HASH_SHA1] = 20,
227 [VB2_HASH_SHA256] = 32,
228 [VB2_HASH_SHA512] = 64,
229};
230
231#define CBFS_NUM_SUPPORTED_HASHES ARRAY_SIZE(widths_cbfs_hash)
232
Stefan Reinauerdb5b8932013-01-18 15:53:22 -0800233#define CBFS_SUBHEADER(_p) ( (void *) ((((uint8_t *) (_p)) + ntohl((_p)->offset))) )
Patrick Georgi2c615062015-07-15 20:49:00 +0200234
Ronald G. Minnicha8a133d2013-12-30 13:16:18 -0800235/* cbfs_image.c */
236uint32_t get_cbfs_entry_type(const char *name, uint32_t default_value);
Ronald G. Minnicha8a133d2013-12-30 13:16:18 -0800237uint32_t get_cbfs_compression(const char *name, uint32_t unknown);
Stefan Reinauerdb5b8932013-01-18 15:53:22 -0800238
Ronald G. Minnich818f3692014-02-04 08:29:35 -0800239/* cbfs-mkpayload.c */
240void xdr_segs(struct buffer *output,
241 struct cbfs_payload_segment *segs, int nseg);
Aaron Durbinca630272014-08-05 10:48:20 -0500242void xdr_get_seg(struct cbfs_payload_segment *out,
243 struct cbfs_payload_segment *in);
Ronald G. Minnich818f3692014-02-04 08:29:35 -0800244
Stefan Reinauer63217582012-10-29 16:52:36 -0700245#endif