blob: 451ef9fd8b35b839282f4d93903d56423ecfc9b8 [file] [log] [blame]
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +00001/*
Patrick Georgib7b56dd82009-09-14 13:29:27 +00002 * Copyright (C) 2009 coresystems GmbH
3 * written by Patrick Georgi <patrick.georgi@coresystems.de>
Werner Zehe9995f12016-01-14 13:22:37 +01004 * Copyright (C) 2016 Siemens AG
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +00005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000014 */
15
Stefan Reinauer63217582012-10-29 16:52:36 -070016#ifndef __CBFS_H
17#define __CBFS_H
18
Patrick Georgi89f20342015-10-01 15:54:04 +020019#include "common.h"
Patrick Georgib7b56dd82009-09-14 13:29:27 +000020#include <stdint.h>
Ronald G. Minnicha8a133d2013-12-30 13:16:18 -080021
Patrick Georgi89f20342015-10-01 15:54:04 +020022#include <vb2_api.h>
23
Patrick Georgi2c615062015-07-15 20:49:00 +020024/* cbfstool will fail when trying to build a cbfs_file header that's larger
25 * than MAX_CBFS_FILE_HEADER_BUFFER. 1K should give plenty of room. */
26#define MAX_CBFS_FILE_HEADER_BUFFER 1024
27
Ronald G. Minnicha8a133d2013-12-30 13:16:18 -080028/* create a magic number in host-byte order.
29 * b3 is the high order byte.
30 * in the coreboot tools, we go with the 32-bit
31 * magic number convention.
32 * This was an inline func but that breaks anything
33 * that uses it in a case statement.
34 */
35
36#define makemagic(b3, b2, b1, b0)\
37 (((b3)<<24) | ((b2) << 16) | ((b1) << 8) | (b0))
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000038
Stefan Reinauercfa9b992015-07-04 11:30:59 -070039#if defined(__WIN32) || defined(__WIN64)
40#define __PACKED __attribute__((gcc_struct, packed))
41#else
42#define __PACKED __attribute__((packed))
43#endif
44
Patrick Georgi20624732015-07-17 21:35:46 +020045/* To make CBFS more friendly to ROM, fill -1 (0xFF) instead of zero. */
46#define CBFS_CONTENT_DEFAULT_VALUE (-1)
47
Sol Boucher67a0a862015-03-18 12:36:27 -070048// Alignment (in bytes) to be used when no master header is present
49#define CBFS_ENTRY_ALIGNMENT 64
50
David Hendricks90ca3b62012-11-16 14:48:22 -080051#define CBFS_HEADER_MAGIC 0x4F524243
52#define CBFS_HEADPTR_ADDR_X86 0xFFFFFFFC
Hung-Te Lin086842a2013-01-04 12:33:03 +080053#define CBFS_HEADER_VERSION1 0x31313131
54#define CBFS_HEADER_VERSION2 0x31313132
55#define CBFS_HEADER_VERSION CBFS_HEADER_VERSION2
David Hendricks90ca3b62012-11-16 14:48:22 -080056
Patrick Georgi45acb342015-07-14 22:18:23 +020057#define CBFS_ALIGNMENT 64
58
Patrick Georgib7b56dd82009-09-14 13:29:27 +000059struct cbfs_header {
60 uint32_t magic;
61 uint32_t version;
62 uint32_t romsize;
63 uint32_t bootblocksize;
Patrick Georgi45acb342015-07-14 22:18:23 +020064 uint32_t align; /* hard coded to 64 byte */
Patrick Georgib7b56dd82009-09-14 13:29:27 +000065 uint32_t offset;
David Hendricks90ca3b62012-11-16 14:48:22 -080066 uint32_t architecture; /* Version 2 */
67 uint32_t pad[1];
Stefan Reinauercfa9b992015-07-04 11:30:59 -070068} __PACKED;
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000069
David Hendricks90ca3b62012-11-16 14:48:22 -080070#define CBFS_ARCHITECTURE_UNKNOWN 0xFFFFFFFF
71#define CBFS_ARCHITECTURE_X86 0x00000001
Gabe Black51edd542013-09-30 23:00:33 -070072#define CBFS_ARCHITECTURE_ARM 0x00000010
Ronald G. Minnich5f431842013-11-12 09:03:33 -080073#define CBFS_ARCHITECTURE_AARCH64 0x0000aa64
Paul Burton33186922014-06-13 23:56:45 +010074#define CBFS_ARCHITECTURE_MIPS 0x00000100
Ronald G. Minnich833bf202014-10-16 10:55:39 +000075#define CBFS_ARCHITECTURE_RISCV 0xc001d0de
Ronald G. Minniched4aa042015-12-11 18:19:52 +000076#define CBFS_ARCHITECTURE_PPC64 0x407570ff
David Hendricks90ca3b62012-11-16 14:48:22 -080077
Hung-Te Lineab2c812013-01-29 01:56:17 +080078#define CBFS_FILE_MAGIC "LARCHIVE"
79
Patrick Georgib7b56dd82009-09-14 13:29:27 +000080struct cbfs_file {
Stefan Reinauera1e48242011-10-21 14:24:57 -070081 uint8_t magic[8];
Patrick Georgi5dc01ac2015-07-15 16:40:44 +020082 /* length of file data */
Patrick Georgib7b56dd82009-09-14 13:29:27 +000083 uint32_t len;
84 uint32_t type;
Patrick Georgi2c615062015-07-15 20:49:00 +020085 /* offset to struct cbfs_file_attribute or 0 */
Patrick Georgi0d618af2015-07-15 18:28:23 +020086 uint32_t attributes_offset;
Patrick Georgi5dc01ac2015-07-15 16:40:44 +020087 /* length of header incl. variable data */
Patrick Georgib7b56dd82009-09-14 13:29:27 +000088 uint32_t offset;
Patrick Georgic569b8b2015-07-15 16:42:38 +020089 char filename[];
Stefan Reinauercfa9b992015-07-04 11:30:59 -070090} __PACKED;
Patrick Georgib7b56dd82009-09-14 13:29:27 +000091
Patrick Georgiab5754d2015-09-01 18:20:20 +020092#if defined __GNUC__ && (__GNUC__ * 100 + __GNUC_MINOR__) >= 406
Patrick Georgi5dc01ac2015-07-15 16:40:44 +020093_Static_assert(sizeof(struct cbfs_file) == 24, "cbfs_file size mismatch");
Patrick Georgi57c67e52015-09-01 12:37:41 +020094#endif
Patrick Georgi5dc01ac2015-07-15 16:40:44 +020095
Patrick Georgic6a8da72015-07-22 21:32:03 +020096/* The common fields of extended cbfs file attributes.
97 Attributes are expected to start with tag/len, then append their
98 specific fields. */
99struct cbfs_file_attribute {
100 uint32_t tag;
101 /* len covers the whole structure, incl. tag and len */
102 uint32_t len;
103 uint8_t data[0];
104} __PACKED;
105
Patrick Georgi2c615062015-07-15 20:49:00 +0200106/* Depending on how the header was initialized, it may be backed with 0x00 or
107 * 0xff. Support both. */
108#define CBFS_FILE_ATTR_TAG_UNUSED 0
109#define CBFS_FILE_ATTR_TAG_UNUSED2 0xffffffff
Daisuke Nojiri8984a632015-07-09 15:07:45 -0700110#define CBFS_FILE_ATTR_TAG_COMPRESSION 0x42435a4c
Patrick Georgi89f20342015-10-01 15:54:04 +0200111#define CBFS_FILE_ATTR_TAG_HASH 0x68736148
Werner Zehe9995f12016-01-14 13:22:37 +0100112#define CBFS_FILE_ATTR_TAG_POSITION 0x42435350 /* PSCB */
113#define CBFS_FILE_ATTR_TAG_ALIGNMENT 0x42434c41 /* ALCB */
Daisuke Nojiri8984a632015-07-09 15:07:45 -0700114
115struct cbfs_file_attr_compression {
116 uint32_t tag;
117 uint32_t len;
118 /* whole file compression format. 0 if no compression. */
119 uint32_t compression;
120 uint32_t decompressed_size;
121} __PACKED;
Patrick Georgi2c615062015-07-15 20:49:00 +0200122
Patrick Georgi89f20342015-10-01 15:54:04 +0200123struct cbfs_file_attr_hash {
124 uint32_t tag;
125 uint32_t len;
126 uint32_t hash_type;
127 /* hash_data is len - sizeof(struct) bytes */
128 uint8_t hash_data[];
129} __PACKED;
130
Werner Zehe9995f12016-01-14 13:22:37 +0100131struct cbfs_file_attr_position {
132 uint32_t tag;
133 uint32_t len;
134 uint32_t position;
135} __PACKED;
136
137struct cbfs_file_attr_align {
138 uint32_t tag;
139 uint32_t len;
140 uint32_t alignment;
141} __PACKED;
142
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000143struct cbfs_stage {
Stefan Reinauera1e48242011-10-21 14:24:57 -0700144 uint32_t compression;
145 uint64_t entry;
146 uint64_t load;
147 uint32_t len;
148 uint32_t memlen;
Stefan Reinauercfa9b992015-07-04 11:30:59 -0700149} __PACKED;
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000150
Ronald G. Minnicha8a133d2013-12-30 13:16:18 -0800151#define PAYLOAD_SEGMENT_CODE makemagic('C', 'O', 'D', 'E')
152#define PAYLOAD_SEGMENT_DATA makemagic('D', 'A', 'T', 'A')
Wei Hu2ad6ee92014-04-16 22:52:59 -0700153#define PAYLOAD_SEGMENT_BSS makemagic('B', 'S', 'S', ' ')
Ronald G. Minnicha8a133d2013-12-30 13:16:18 -0800154#define PAYLOAD_SEGMENT_PARAMS makemagic('P', 'A', 'R', 'A')
155#define PAYLOAD_SEGMENT_ENTRY makemagic('E', 'N', 'T', 'R')
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000156
157struct cbfs_payload_segment {
Stefan Reinauera1e48242011-10-21 14:24:57 -0700158 uint32_t type;
159 uint32_t compression;
160 uint32_t offset;
161 uint64_t load_addr;
162 uint32_t len;
163 uint32_t mem_len;
Stefan Reinauercfa9b992015-07-04 11:30:59 -0700164} __PACKED;
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000165
166struct cbfs_payload {
167 struct cbfs_payload_segment segments;
Stefan Reinauercfa9b992015-07-04 11:30:59 -0700168} __PACKED;
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000169
170/** These are standard component types for well known
171 components (i.e - those that coreboot needs to consume.
172 Users are welcome to use any other value for their
173 components */
174
Patrick Georgi239c7422015-09-09 20:11:26 +0200175#define CBFS_COMPONENT_BOOTBLOCK 0x01
176#define CBFS_COMPONENT_CBFSHEADER 0x02
Stefan Reinauer800379f2010-03-01 08:34:19 +0000177#define CBFS_COMPONENT_STAGE 0x10
178#define CBFS_COMPONENT_PAYLOAD 0x20
179#define CBFS_COMPONENT_OPTIONROM 0x30
180#define CBFS_COMPONENT_BOOTSPLASH 0x40
181#define CBFS_COMPONENT_RAW 0x50
182#define CBFS_COMPONENT_VSA 0x51
183#define CBFS_COMPONENT_MBI 0x52
184#define CBFS_COMPONENT_MICROCODE 0x53
Martin Rothdde307c2015-03-24 15:54:20 -0600185#define CBFS_COMPONENT_FSP 0x60
186#define CBFS_COMPONENT_MRC 0x61
Pratik Prajapatifb128732015-09-02 13:46:30 -0700187#define CBFS_COMPONENT_MMA 0x62
188#define CBFS_COMPONENT_EFI 0x63
Julius Wernerf975e552016-08-19 15:43:06 -0700189#define CBFS_COMPONENT_STRUCT 0x70
Patrick Georgia865b172011-01-14 07:40:24 +0000190#define CBFS_COMPONENT_CMOS_DEFAULT 0xaa
Martin Rothdde307c2015-03-24 15:54:20 -0600191#define CBFS_COMPONENT_SPD 0xab
192#define CBFS_COMPONENT_MRC_CACHE 0xac
Patrick Georgi24479372011-01-18 13:56:36 +0000193#define CBFS_COMPONENT_CMOS_LAYOUT 0x01aa
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000194
Ronald G. Minnich83b8f0c2009-05-08 19:23:00 +0000195/* The deleted type is chosen to be a value
196 * that can be written in a FLASH from all other
Stefan Reinauer14e22772010-04-27 06:56:47 +0000197 * values.
Ronald G. Minnich83b8f0c2009-05-08 19:23:00 +0000198 */
199#define CBFS_COMPONENT_DELETED 0
200
Stefan Reinauer14e22772010-04-27 06:56:47 +0000201/* for all known FLASH, this value can be changed
202 * to all other values. This allows NULL files to be
Ronald G. Minnich83b8f0c2009-05-08 19:23:00 +0000203 * changed without a block erase
204 */
Peter Stuge1d862de2009-04-14 00:08:34 +0000205#define CBFS_COMPONENT_NULL 0xFFFFFFFF
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000206
Patrick Georgidc37dab2015-09-09 16:46:00 +0200207static struct typedesc_t filetypes[] unused = {
Patrick Georgi239c7422015-09-09 20:11:26 +0200208 {CBFS_COMPONENT_BOOTBLOCK, "bootblock"},
209 {CBFS_COMPONENT_CBFSHEADER, "cbfs header"},
Patrick Georgidc37dab2015-09-09 16:46:00 +0200210 {CBFS_COMPONENT_STAGE, "stage"},
211 {CBFS_COMPONENT_PAYLOAD, "payload"},
212 {CBFS_COMPONENT_OPTIONROM, "optionrom"},
213 {CBFS_COMPONENT_BOOTSPLASH, "bootsplash"},
214 {CBFS_COMPONENT_RAW, "raw"},
215 {CBFS_COMPONENT_VSA, "vsa"},
216 {CBFS_COMPONENT_MBI, "mbi"},
217 {CBFS_COMPONENT_MICROCODE, "microcode"},
218 {CBFS_COMPONENT_FSP, "fsp"},
219 {CBFS_COMPONENT_MRC, "mrc"},
220 {CBFS_COMPONENT_CMOS_DEFAULT, "cmos_default"},
221 {CBFS_COMPONENT_CMOS_LAYOUT, "cmos_layout"},
222 {CBFS_COMPONENT_SPD, "spd"},
223 {CBFS_COMPONENT_MRC_CACHE, "mrc_cache"},
Pratik Prajapatifb128732015-09-02 13:46:30 -0700224 {CBFS_COMPONENT_MMA, "mma"},
225 {CBFS_COMPONENT_EFI, "efi"},
Julius Wernerf975e552016-08-19 15:43:06 -0700226 {CBFS_COMPONENT_STRUCT, "struct"},
Patrick Georgidc37dab2015-09-09 16:46:00 +0200227 {CBFS_COMPONENT_DELETED, "deleted"},
228 {CBFS_COMPONENT_NULL, "null"}
229};
230
Patrick Georgi89f20342015-10-01 15:54:04 +0200231static const struct typedesc_t types_cbfs_hash[] unused = {
232 {VB2_HASH_INVALID, "none"},
233 {VB2_HASH_SHA1, "sha1"},
234 {VB2_HASH_SHA256, "sha256"},
235 {VB2_HASH_SHA512, "sha512"},
236 {0, NULL}
237};
238
239static size_t widths_cbfs_hash[] unused = {
240 [VB2_HASH_INVALID] = 0,
241 [VB2_HASH_SHA1] = 20,
242 [VB2_HASH_SHA256] = 32,
243 [VB2_HASH_SHA512] = 64,
244};
245
246#define CBFS_NUM_SUPPORTED_HASHES ARRAY_SIZE(widths_cbfs_hash)
247
Stefan Reinauerdb5b8932013-01-18 15:53:22 -0800248#define CBFS_SUBHEADER(_p) ( (void *) ((((uint8_t *) (_p)) + ntohl((_p)->offset))) )
Patrick Georgi2c615062015-07-15 20:49:00 +0200249
Ronald G. Minnicha8a133d2013-12-30 13:16:18 -0800250/* cbfs_image.c */
251uint32_t get_cbfs_entry_type(const char *name, uint32_t default_value);
Ronald G. Minnicha8a133d2013-12-30 13:16:18 -0800252uint32_t get_cbfs_compression(const char *name, uint32_t unknown);
Stefan Reinauerdb5b8932013-01-18 15:53:22 -0800253
Ronald G. Minnich818f3692014-02-04 08:29:35 -0800254/* cbfs-mkpayload.c */
255void xdr_segs(struct buffer *output,
256 struct cbfs_payload_segment *segs, int nseg);
Aaron Durbinca630272014-08-05 10:48:20 -0500257void xdr_get_seg(struct cbfs_payload_segment *out,
258 struct cbfs_payload_segment *in);
Ronald G. Minnich818f3692014-02-04 08:29:35 -0800259
Stefan Reinauer63217582012-10-29 16:52:36 -0700260#endif