blob: 86218056cbaccc46aeeb910312f1243e0edb3349 [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>
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +00004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
Patrick Georgib890a122015-03-26 15:17:45 +010016 * Foundation, Inc.
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000017 */
18
Stefan Reinauer63217582012-10-29 16:52:36 -070019#ifndef __CBFS_H
20#define __CBFS_H
21
Patrick Georgi89f20342015-10-01 15:54:04 +020022#include "common.h"
Patrick Georgib7b56dd82009-09-14 13:29:27 +000023#include <stdint.h>
Ronald G. Minnicha8a133d2013-12-30 13:16:18 -080024
Patrick Georgi89f20342015-10-01 15:54:04 +020025#include <vb2_api.h>
26
Patrick Georgi2c615062015-07-15 20:49:00 +020027/* cbfstool will fail when trying to build a cbfs_file header that's larger
28 * than MAX_CBFS_FILE_HEADER_BUFFER. 1K should give plenty of room. */
29#define MAX_CBFS_FILE_HEADER_BUFFER 1024
30
Ronald G. Minnicha8a133d2013-12-30 13:16:18 -080031/* create a magic number in host-byte order.
32 * b3 is the high order byte.
33 * in the coreboot tools, we go with the 32-bit
34 * magic number convention.
35 * This was an inline func but that breaks anything
36 * that uses it in a case statement.
37 */
38
39#define makemagic(b3, b2, b1, b0)\
40 (((b3)<<24) | ((b2) << 16) | ((b1) << 8) | (b0))
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000041
Stefan Reinauercfa9b992015-07-04 11:30:59 -070042#if defined(__WIN32) || defined(__WIN64)
43#define __PACKED __attribute__((gcc_struct, packed))
44#else
45#define __PACKED __attribute__((packed))
46#endif
47
Patrick Georgi20624732015-07-17 21:35:46 +020048/* To make CBFS more friendly to ROM, fill -1 (0xFF) instead of zero. */
49#define CBFS_CONTENT_DEFAULT_VALUE (-1)
50
Sol Boucher67a0a862015-03-18 12:36:27 -070051// Alignment (in bytes) to be used when no master header is present
52#define CBFS_ENTRY_ALIGNMENT 64
53
David Hendricks90ca3b62012-11-16 14:48:22 -080054#define CBFS_HEADER_MAGIC 0x4F524243
55#define CBFS_HEADPTR_ADDR_X86 0xFFFFFFFC
Hung-Te Lin086842a2013-01-04 12:33:03 +080056#define CBFS_HEADER_VERSION1 0x31313131
57#define CBFS_HEADER_VERSION2 0x31313132
58#define CBFS_HEADER_VERSION CBFS_HEADER_VERSION2
David Hendricks90ca3b62012-11-16 14:48:22 -080059
Patrick Georgi45acb342015-07-14 22:18:23 +020060#define CBFS_ALIGNMENT 64
61
Patrick Georgib7b56dd82009-09-14 13:29:27 +000062struct cbfs_header {
63 uint32_t magic;
64 uint32_t version;
65 uint32_t romsize;
66 uint32_t bootblocksize;
Patrick Georgi45acb342015-07-14 22:18:23 +020067 uint32_t align; /* hard coded to 64 byte */
Patrick Georgib7b56dd82009-09-14 13:29:27 +000068 uint32_t offset;
David Hendricks90ca3b62012-11-16 14:48:22 -080069 uint32_t architecture; /* Version 2 */
70 uint32_t pad[1];
Stefan Reinauercfa9b992015-07-04 11:30:59 -070071} __PACKED;
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +000072
David Hendricks90ca3b62012-11-16 14:48:22 -080073#define CBFS_ARCHITECTURE_UNKNOWN 0xFFFFFFFF
74#define CBFS_ARCHITECTURE_X86 0x00000001
Gabe Black51edd542013-09-30 23:00:33 -070075#define CBFS_ARCHITECTURE_ARM 0x00000010
Ronald G. Minnich5f431842013-11-12 09:03:33 -080076#define CBFS_ARCHITECTURE_AARCH64 0x0000aa64
Paul Burton33186922014-06-13 23:56:45 +010077#define CBFS_ARCHITECTURE_MIPS 0x00000100
Ronald G. Minnich833bf202014-10-16 10:55:39 +000078#define CBFS_ARCHITECTURE_RISCV 0xc001d0de
David Hendricks90ca3b62012-11-16 14:48:22 -080079
Hung-Te Lineab2c812013-01-29 01:56:17 +080080#define CBFS_FILE_MAGIC "LARCHIVE"
81
Patrick Georgib7b56dd82009-09-14 13:29:27 +000082struct cbfs_file {
Stefan Reinauera1e48242011-10-21 14:24:57 -070083 uint8_t magic[8];
Patrick Georgi5dc01ac2015-07-15 16:40:44 +020084 /* length of file data */
Patrick Georgib7b56dd82009-09-14 13:29:27 +000085 uint32_t len;
86 uint32_t type;
Patrick Georgi2c615062015-07-15 20:49:00 +020087 /* offset to struct cbfs_file_attribute or 0 */
Patrick Georgi0d618af2015-07-15 18:28:23 +020088 uint32_t attributes_offset;
Patrick Georgi5dc01ac2015-07-15 16:40:44 +020089 /* length of header incl. variable data */
Patrick Georgib7b56dd82009-09-14 13:29:27 +000090 uint32_t offset;
Patrick Georgic569b8b2015-07-15 16:42:38 +020091 char filename[];
Stefan Reinauercfa9b992015-07-04 11:30:59 -070092} __PACKED;
Patrick Georgib7b56dd82009-09-14 13:29:27 +000093
Patrick Georgiab5754d2015-09-01 18:20:20 +020094#if defined __GNUC__ && (__GNUC__ * 100 + __GNUC_MINOR__) >= 406
Patrick Georgi5dc01ac2015-07-15 16:40:44 +020095_Static_assert(sizeof(struct cbfs_file) == 24, "cbfs_file size mismatch");
Patrick Georgi57c67e52015-09-01 12:37:41 +020096#endif
Patrick Georgi5dc01ac2015-07-15 16:40:44 +020097
Patrick Georgic6a8da72015-07-22 21:32:03 +020098/* The common fields of extended cbfs file attributes.
99 Attributes are expected to start with tag/len, then append their
100 specific fields. */
101struct cbfs_file_attribute {
102 uint32_t tag;
103 /* len covers the whole structure, incl. tag and len */
104 uint32_t len;
105 uint8_t data[0];
106} __PACKED;
107
Patrick Georgi2c615062015-07-15 20:49:00 +0200108/* Depending on how the header was initialized, it may be backed with 0x00 or
109 * 0xff. Support both. */
110#define CBFS_FILE_ATTR_TAG_UNUSED 0
111#define CBFS_FILE_ATTR_TAG_UNUSED2 0xffffffff
Daisuke Nojiri8984a632015-07-09 15:07:45 -0700112#define CBFS_FILE_ATTR_TAG_COMPRESSION 0x42435a4c
Patrick Georgi89f20342015-10-01 15:54:04 +0200113#define CBFS_FILE_ATTR_TAG_HASH 0x68736148
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
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000131struct cbfs_stage {
Stefan Reinauera1e48242011-10-21 14:24:57 -0700132 uint32_t compression;
133 uint64_t entry;
134 uint64_t load;
135 uint32_t len;
136 uint32_t memlen;
Stefan Reinauercfa9b992015-07-04 11:30:59 -0700137} __PACKED;
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000138
Ronald G. Minnicha8a133d2013-12-30 13:16:18 -0800139#define PAYLOAD_SEGMENT_CODE makemagic('C', 'O', 'D', 'E')
140#define PAYLOAD_SEGMENT_DATA makemagic('D', 'A', 'T', 'A')
Wei Hu2ad6ee92014-04-16 22:52:59 -0700141#define PAYLOAD_SEGMENT_BSS makemagic('B', 'S', 'S', ' ')
Ronald G. Minnicha8a133d2013-12-30 13:16:18 -0800142#define PAYLOAD_SEGMENT_PARAMS makemagic('P', 'A', 'R', 'A')
143#define PAYLOAD_SEGMENT_ENTRY makemagic('E', 'N', 'T', 'R')
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000144
145struct cbfs_payload_segment {
Stefan Reinauera1e48242011-10-21 14:24:57 -0700146 uint32_t type;
147 uint32_t compression;
148 uint32_t offset;
149 uint64_t load_addr;
150 uint32_t len;
151 uint32_t mem_len;
Stefan Reinauercfa9b992015-07-04 11:30:59 -0700152} __PACKED;
Patrick Georgib7b56dd82009-09-14 13:29:27 +0000153
154struct cbfs_payload {
155 struct cbfs_payload_segment segments;
Stefan Reinauercfa9b992015-07-04 11:30:59 -0700156} __PACKED;
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000157
158/** These are standard component types for well known
159 components (i.e - those that coreboot needs to consume.
160 Users are welcome to use any other value for their
161 components */
162
Patrick Georgi239c7422015-09-09 20:11:26 +0200163#define CBFS_COMPONENT_BOOTBLOCK 0x01
164#define CBFS_COMPONENT_CBFSHEADER 0x02
Stefan Reinauer800379f2010-03-01 08:34:19 +0000165#define CBFS_COMPONENT_STAGE 0x10
166#define CBFS_COMPONENT_PAYLOAD 0x20
167#define CBFS_COMPONENT_OPTIONROM 0x30
168#define CBFS_COMPONENT_BOOTSPLASH 0x40
169#define CBFS_COMPONENT_RAW 0x50
170#define CBFS_COMPONENT_VSA 0x51
171#define CBFS_COMPONENT_MBI 0x52
172#define CBFS_COMPONENT_MICROCODE 0x53
Martin Rothdde307c2015-03-24 15:54:20 -0600173#define CBFS_COMPONENT_FSP 0x60
174#define CBFS_COMPONENT_MRC 0x61
Patrick Georgia865b172011-01-14 07:40:24 +0000175#define CBFS_COMPONENT_CMOS_DEFAULT 0xaa
Martin Rothdde307c2015-03-24 15:54:20 -0600176#define CBFS_COMPONENT_SPD 0xab
177#define CBFS_COMPONENT_MRC_CACHE 0xac
Patrick Georgi24479372011-01-18 13:56:36 +0000178#define CBFS_COMPONENT_CMOS_LAYOUT 0x01aa
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000179
Ronald G. Minnich83b8f0c2009-05-08 19:23:00 +0000180/* The deleted type is chosen to be a value
181 * that can be written in a FLASH from all other
Stefan Reinauer14e22772010-04-27 06:56:47 +0000182 * values.
Ronald G. Minnich83b8f0c2009-05-08 19:23:00 +0000183 */
184#define CBFS_COMPONENT_DELETED 0
185
Stefan Reinauer14e22772010-04-27 06:56:47 +0000186/* for all known FLASH, this value can be changed
187 * to all other values. This allows NULL files to be
Ronald G. Minnich83b8f0c2009-05-08 19:23:00 +0000188 * changed without a block erase
189 */
Peter Stuge1d862de2009-04-14 00:08:34 +0000190#define CBFS_COMPONENT_NULL 0xFFFFFFFF
Ronald G. Minnich5d01ec02009-03-31 11:57:36 +0000191
Patrick Georgidc37dab2015-09-09 16:46:00 +0200192struct typedesc_t {
193 uint32_t type;
194 const char *name;
195};
196
197static struct typedesc_t filetypes[] unused = {
Patrick Georgi239c7422015-09-09 20:11:26 +0200198 {CBFS_COMPONENT_BOOTBLOCK, "bootblock"},
199 {CBFS_COMPONENT_CBFSHEADER, "cbfs header"},
Patrick Georgidc37dab2015-09-09 16:46:00 +0200200 {CBFS_COMPONENT_STAGE, "stage"},
201 {CBFS_COMPONENT_PAYLOAD, "payload"},
202 {CBFS_COMPONENT_OPTIONROM, "optionrom"},
203 {CBFS_COMPONENT_BOOTSPLASH, "bootsplash"},
204 {CBFS_COMPONENT_RAW, "raw"},
205 {CBFS_COMPONENT_VSA, "vsa"},
206 {CBFS_COMPONENT_MBI, "mbi"},
207 {CBFS_COMPONENT_MICROCODE, "microcode"},
208 {CBFS_COMPONENT_FSP, "fsp"},
209 {CBFS_COMPONENT_MRC, "mrc"},
210 {CBFS_COMPONENT_CMOS_DEFAULT, "cmos_default"},
211 {CBFS_COMPONENT_CMOS_LAYOUT, "cmos_layout"},
212 {CBFS_COMPONENT_SPD, "spd"},
213 {CBFS_COMPONENT_MRC_CACHE, "mrc_cache"},
214 {CBFS_COMPONENT_DELETED, "deleted"},
215 {CBFS_COMPONENT_NULL, "null"}
216};
217
Patrick Georgi89f20342015-10-01 15:54:04 +0200218static const struct typedesc_t types_cbfs_hash[] unused = {
219 {VB2_HASH_INVALID, "none"},
220 {VB2_HASH_SHA1, "sha1"},
221 {VB2_HASH_SHA256, "sha256"},
222 {VB2_HASH_SHA512, "sha512"},
223 {0, NULL}
224};
225
226static size_t widths_cbfs_hash[] unused = {
227 [VB2_HASH_INVALID] = 0,
228 [VB2_HASH_SHA1] = 20,
229 [VB2_HASH_SHA256] = 32,
230 [VB2_HASH_SHA512] = 64,
231};
232
233#define CBFS_NUM_SUPPORTED_HASHES ARRAY_SIZE(widths_cbfs_hash)
234
Stefan Reinauerdb5b8932013-01-18 15:53:22 -0800235#define CBFS_SUBHEADER(_p) ( (void *) ((((uint8_t *) (_p)) + ntohl((_p)->offset))) )
Patrick Georgi2c615062015-07-15 20:49:00 +0200236
Ronald G. Minnicha8a133d2013-12-30 13:16:18 -0800237/* cbfs_image.c */
238uint32_t get_cbfs_entry_type(const char *name, uint32_t default_value);
Ronald G. Minnicha8a133d2013-12-30 13:16:18 -0800239uint32_t get_cbfs_compression(const char *name, uint32_t unknown);
Stefan Reinauerdb5b8932013-01-18 15:53:22 -0800240
Ronald G. Minnich3fcde222014-02-04 17:35:44 -0800241/* common.c */
242void cbfs_file_get_header(struct buffer *buf, struct cbfs_file *file);
243
Ronald G. Minnich818f3692014-02-04 08:29:35 -0800244/* cbfs-mkpayload.c */
245void xdr_segs(struct buffer *output,
246 struct cbfs_payload_segment *segs, int nseg);
Aaron Durbinca630272014-08-05 10:48:20 -0500247void xdr_get_seg(struct cbfs_payload_segment *out,
248 struct cbfs_payload_segment *in);
Ronald G. Minnich818f3692014-02-04 08:29:35 -0800249
Stefan Reinauer63217582012-10-29 16:52:36 -0700250#endif