blob: d4db00c86224181d6cffac09fdaedc2c441fab11 [file] [log] [blame]
Stefan Reinauer6540ae52007-07-12 16:35:42 +00001/*****************************************************************************\
Stefan Reinauer7223ab72008-01-18 16:17:44 +00002 * coreboot_tables.h
Stefan Reinauer6540ae52007-07-12 16:35:42 +00003\*****************************************************************************/
4
Stefan Reinauerf527e702008-01-18 15:33:49 +00005#ifndef COREBOOT_TABLES_H
6#define COREBOOT_TABLES_H
Stefan Reinauer6540ae52007-07-12 16:35:42 +00007
8#include <stdint.h>
9
Stefan Reinauerf527e702008-01-18 15:33:49 +000010/* Note: The contents of this file were borrowed from the coreboot source
Elyes HAOUASfcd70082018-08-23 18:19:52 +020011 * code which may be obtained from https://www.coreboot.org/.
12 * Specifically, this code was obtained from LinuxBIOS version 1.1.8.
Stefan Reinauer6540ae52007-07-12 16:35:42 +000013 */
14
Stefan Reinauerf527e702008-01-18 15:33:49 +000015/* The coreboot table information is for conveying information
Elyes HAOUASfcd70082018-08-23 18:19:52 +020016 * from the firmware to the loaded OS image. Primarily this
Stefan Reinauer6540ae52007-07-12 16:35:42 +000017 * is expected to be information that cannot be discovered by
Elyes HAOUASfcd70082018-08-23 18:19:52 +020018 * other means, such as querying the hardware directly.
Stefan Reinauer6540ae52007-07-12 16:35:42 +000019 *
Stefan Reinauer14e22772010-04-27 06:56:47 +000020 * All of the information should be Position Independent Data.
Elyes HAOUASfcd70082018-08-23 18:19:52 +020021 * That is, it should be safe to relocate any of the information
22 * without changing its meaning/correctness. For tables that
Stefan Reinauer6540ae52007-07-12 16:35:42 +000023 * can reasonably be used on multiple architectures the data
Elyes HAOUASfcd70082018-08-23 18:19:52 +020024 * size should be fixed. This should ease the transition between
Stefan Reinauer6540ae52007-07-12 16:35:42 +000025 * 32 bit and 64 bit architectures etc.
26 *
27 * The completeness test for the information in this table is:
28 * - Can all of the hardware be detected?
Elyes HAOUASfcd70082018-08-23 18:19:52 +020029 * - Are the per-motherboard constants available?
Stefan Reinauer6540ae52007-07-12 16:35:42 +000030 * - Is there enough to allow a kernel to run that was written before
31 * a particular motherboard is constructed? (Assuming the kernel
32 * has drivers for all of the hardware but it does not have
33 * assumptions on how the hardware is connected together).
34 *
Elyes HAOUASfcd70082018-08-23 18:19:52 +020035 * With this test it should be straightforward to determine if a
36 * table entry is required or not. This should remove much of the
37 * long-term compatibility burden as table entries which are
Stefan Reinauer6540ae52007-07-12 16:35:42 +000038 * irrelevant or have been replaced by better alternatives may be
Elyes HAOUASfcd70082018-08-23 18:19:52 +020039 * dropped. Of course it is polite and expedite to include extra
Stefan Reinauer6540ae52007-07-12 16:35:42 +000040 * table entries and be backwards compatible, but it is not required.
41 */
42
Stefan Reinauer14e22772010-04-27 06:56:47 +000043/* Since coreboot is usually compiled 32bit, gcc will align 64bit
44 * types to 32bit boundaries. If the coreboot table is dumped on a
45 * 64bit system, a uint64_t would be aligned to 64bit boundaries,
Stefan Reinauer6540ae52007-07-12 16:35:42 +000046 * breaking the table format.
47 *
Jianjun Wangb2537bd2022-04-08 16:57:28 +080048 * lb_uint64_t will keep 64bit coreboot table values aligned to 32bit
49 * to ensure compatibility.
Stefan Reinauer6540ae52007-07-12 16:35:42 +000050 */
51
Jianjun Wangb2537bd2022-04-08 16:57:28 +080052typedef __attribute__((aligned(4))) uint64_t lb_uint64_t;
Stefan Reinauer6540ae52007-07-12 16:35:42 +000053
Stefan Reinauer90b96b62010-01-13 21:00:23 +000054struct lb_header {
Patrick Georgi26016972011-01-18 12:12:47 +000055 union {
56 uint8_t signature[4]; /* LBIO */
57 uint32_t signature32;
58 };
Stefan Reinauer90b96b62010-01-13 21:00:23 +000059 uint32_t header_bytes;
60 uint32_t header_checksum;
61 uint32_t table_bytes;
62 uint32_t table_checksum;
63 uint32_t table_entries;
Stefan Reinauer6540ae52007-07-12 16:35:42 +000064};
65
Elyes HAOUASfcd70082018-08-23 18:19:52 +020066/* Every entry in the boot environment list will correspond to a boot
67 * info record, encoding both type and size. The type is obviously
68 * so you can tell what it is. The size allows you to skip that
69 * boot environment record if you don't know what it is. This allows
Stefan Reinauer6540ae52007-07-12 16:35:42 +000070 * forward compatibility with records not yet defined.
71 */
72struct lb_record {
Stefan Reinauer90b96b62010-01-13 21:00:23 +000073 uint32_t tag; /* tag ID */
74 uint32_t size; /* size of record (in bytes) */
Stefan Reinauer6540ae52007-07-12 16:35:42 +000075};
76
Elyes HAOUASfcd70082018-08-23 18:19:52 +020077#define LB_TAG_UNUSED 0x0000
Stefan Reinauer6540ae52007-07-12 16:35:42 +000078
Elyes HAOUASfcd70082018-08-23 18:19:52 +020079#define LB_TAG_MEMORY 0x0001
Stefan Reinauer6540ae52007-07-12 16:35:42 +000080
81struct lb_memory_range {
Jianjun Wangb2537bd2022-04-08 16:57:28 +080082 lb_uint64_t start;
83 lb_uint64_t size;
Stefan Reinauer90b96b62010-01-13 21:00:23 +000084 uint32_t type;
Elyes HAOUASfcd70082018-08-23 18:19:52 +020085#define LB_MEM_RAM 1 /* Memory anyone can use */
86#define LB_MEM_RESERVED 2 /* Don't use this memory region */
87#define LB_MEM_TABLE 16 /* RAM configuration tables are kept in */
Stefan Reinauer6540ae52007-07-12 16:35:42 +000088};
89
90struct lb_memory {
Stefan Reinauer90b96b62010-01-13 21:00:23 +000091 uint32_t tag;
92 uint32_t size;
Elyes Haouasfc2f3042023-07-30 13:06:10 +020093 struct lb_memory_range map[];
Stefan Reinauer6540ae52007-07-12 16:35:42 +000094};
95
Elyes HAOUASfcd70082018-08-23 18:19:52 +020096#define LB_TAG_HWRPB 0x0002
Stefan Reinauer6540ae52007-07-12 16:35:42 +000097struct lb_hwrpb {
Stefan Reinauer90b96b62010-01-13 21:00:23 +000098 uint32_t tag;
99 uint32_t size;
100 uint64_t hwrpb;
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000101};
102
Elyes HAOUASfcd70082018-08-23 18:19:52 +0200103#define LB_TAG_MAINBOARD 0x0003
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000104struct lb_mainboard {
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000105 uint32_t tag;
106 uint32_t size;
107 uint8_t vendor_idx;
108 uint8_t part_number_idx;
Elyes Haouasfc2f3042023-07-30 13:06:10 +0200109 uint8_t strings[];
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000110};
111
Elyes HAOUASfcd70082018-08-23 18:19:52 +0200112#define LB_TAG_VERSION 0x0004
113#define LB_TAG_EXTRA_VERSION 0x0005
114#define LB_TAG_BUILD 0x0006
115#define LB_TAG_COMPILE_TIME 0x0007
116#define LB_TAG_COMPILE_BY 0x0008
117#define LB_TAG_COMPILE_HOST 0x0009
118#define LB_TAG_COMPILE_DOMAIN 0x000a
119#define LB_TAG_COMPILER 0x000b
120#define LB_TAG_LINKER 0x000c
121#define LB_TAG_ASSEMBLER 0x000d
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000122struct lb_string {
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000123 uint32_t tag;
124 uint32_t size;
Elyes Haouasfc2f3042023-07-30 13:06:10 +0200125 uint8_t string[];
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000126};
Stefan Reinauer764fe402009-03-17 14:39:36 +0000127#define LB_TAG_SERIAL 0x000f
128#define LB_TAG_CONSOLE 0x0010
129#define LB_TAG_FORWARD 0x0011
130struct lb_forward {
131 uint32_t tag;
132 uint32_t size;
133 uint64_t forward;
134};
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000135
Elyes HAOUASfcd70082018-08-23 18:19:52 +0200136/* The following structures are for the CMOS definitions table */
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000137#define LB_TAG_CMOS_OPTION_TABLE 200
Elyes HAOUASfcd70082018-08-23 18:19:52 +0200138/* CMOS header record */
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000139struct cmos_option_table {
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000140 uint32_t tag; /* CMOS definitions table type */
141 uint32_t size; /* size of the entire table */
142 uint32_t header_length; /* length of header */
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000143};
144
Elyes HAOUASfcd70082018-08-23 18:19:52 +0200145/* CMOS entry record
146 * This record has a variable length. The name field may be
147 * shorter than CMOS_MAX_NAME_LENGTH. The entry may start
148 * anywhere in the byte, but can not span bytes unless it
149 * starts at the beginning of the byte and the length
150 * fills complete bytes.
151 */
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000152#define LB_TAG_OPTION 201
153struct cmos_entries {
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000154 uint32_t tag; /* entry type */
155 uint32_t size; /* length of this record */
156 uint32_t bit; /* starting bit from start of image */
157 uint32_t length; /* length of field in bits */
158 uint32_t config; /* e=enumeration, h=hex, r=reserved */
159 uint32_t config_id; /* a number linking to an enumeration record */
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000160#define CMOS_MAX_NAME_LENGTH 32
Stefan Reinauer14e22772010-04-27 06:56:47 +0000161 uint8_t name[CMOS_MAX_NAME_LENGTH]; /* name of entry in ascii,
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000162 variable length int aligned */
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000163};
164
Elyes HAOUASfcd70082018-08-23 18:19:52 +0200165/* CMOS enumerations record
166 * This record has a variable length. The text field may be
167 * shorter than CMOS_MAX_TEXT_LENGTH.
168 */
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000169#define LB_TAG_OPTION_ENUM 202
170struct cmos_enums {
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000171 uint32_t tag; /* enumeration type */
172 uint32_t size; /* length of this record */
173 uint32_t config_id; /* a number identifying the config id */
174 uint32_t value; /* the value associated with the text */
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000175#define CMOS_MAX_TEXT_LENGTH 32
Stefan Reinauer14e22772010-04-27 06:56:47 +0000176 uint8_t text[CMOS_MAX_TEXT_LENGTH]; /* enum description in ascii,
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000177 variable length int aligned */
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000178};
179
Elyes HAOUASfcd70082018-08-23 18:19:52 +0200180/* CMOS default record
181 * This record contains default settings for the CMOS RAM.
182 */
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000183#define LB_TAG_OPTION_DEFAULTS 203
184struct cmos_defaults {
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000185 uint32_t tag; /* default type */
186 uint32_t size; /* length of this record */
187 uint32_t name_length; /* length of the following name field */
188 uint8_t name[CMOS_MAX_NAME_LENGTH]; /* name identifying the default */
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000189#define CMOS_IMAGE_BUFFER_SIZE 128
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000190 uint8_t default_set[CMOS_IMAGE_BUFFER_SIZE]; /* default settings */
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000191};
192
193#define LB_TAG_OPTION_CHECKSUM 204
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000194struct cmos_checksum {
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000195 uint32_t tag;
196 uint32_t size;
197 /* In practice everything is byte aligned, but things are measured
198 * in bits to be consistent.
199 */
200 uint32_t range_start; /* First bit that is checksummed (byte aligned) */
201 uint32_t range_end; /* Last bit that is checksummed (byte aligned) */
202 uint32_t location; /* First bit of the checksum (byte aligned) */
203 uint32_t type; /* Checksum algorithm that is used */
204#define CHECKSUM_NONE 0
205#define CHECKSUM_PCBIOS 1
206};
207
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000208#endif /* COREBOOT_TABLES_H */