blob: 24cbf453eb133d9079685ba0aea149fe5af303cf [file] [log] [blame]
Jordan Crousef6145c32008-03-19 23:56:58 +00001/*
2 * This file is part of the libpayload project.
3 *
4 * Copyright (C) 2008 Advanced Micro Devices, Inc.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
Uwe Hermannfad8c2b2008-04-11 18:01:50 +000030#ifndef _COREBOOT_TABLES_H
31#define _COREBOOT_TABLES_H
Jordan Crousef6145c32008-03-19 23:56:58 +000032
33#include <arch/types.h>
Gabe Black54c800a2012-08-28 16:31:09 -070034#include <ipchksum.h>
Jordan Crousef6145c32008-03-19 23:56:58 +000035
36struct cbuint64 {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +000037 u32 lo;
38 u32 hi;
Jordan Crousef6145c32008-03-19 23:56:58 +000039};
40
41struct cb_header {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +000042 u8 signature[4];
43 u32 header_bytes;
44 u32 header_checksum;
45 u32 table_bytes;
46 u32 table_checksum;
47 u32 table_entries;
Jordan Crousef6145c32008-03-19 23:56:58 +000048};
49
50struct cb_record {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +000051 u32 tag;
52 u32 size;
Jordan Crousef6145c32008-03-19 23:56:58 +000053};
54
55#define CB_TAG_UNUSED 0x0000
56#define CB_TAG_MEMORY 0x0001
57
58struct cb_memory_range {
59 struct cbuint64 start;
60 struct cbuint64 size;
Uwe Hermannfad8c2b2008-04-11 18:01:50 +000061 u32 type;
Jordan Crousef6145c32008-03-19 23:56:58 +000062};
63
Stefan Reinauerd1bc3312011-06-22 16:39:19 -070064#define CB_MEM_RAM 1
65#define CB_MEM_RESERVED 2
66#define CB_MEM_ACPI 3
67#define CB_MEM_NVS 4
68#define CB_MEM_UNUSABLE 5
69#define CB_MEM_VENDOR_RSVD 6
70#define CB_MEM_TABLE 16
Jordan Crousef6145c32008-03-19 23:56:58 +000071
72struct cb_memory {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +000073 u32 tag;
74 u32 size;
Jordan Crousef6145c32008-03-19 23:56:58 +000075 struct cb_memory_range map[0];
76};
77
78#define CB_TAG_HWRPB 0x0002
79
80struct cb_hwrpb {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +000081 u32 tag;
82 u32 size;
83 u64 hwrpb;
Jordan Crousef6145c32008-03-19 23:56:58 +000084};
85
86#define CB_TAG_MAINBOARD 0x0003
87
88struct cb_mainboard {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +000089 u32 tag;
90 u32 size;
91 u8 vendor_idx;
92 u8 part_number_idx;
93 u8 strings[0];
Jordan Crousef6145c32008-03-19 23:56:58 +000094};
95
96#define CB_TAG_VERSION 0x0004
97#define CB_TAG_EXTRA_VERSION 0x0005
98#define CB_TAG_BUILD 0x0006
99#define CB_TAG_COMPILE_TIME 0x0007
100#define CB_TAG_COMPILE_BY 0x0008
101#define CB_TAG_COMPILE_HOST 0x0009
102#define CB_TAG_COMPILE_DOMAIN 0x000a
103#define CB_TAG_COMPILER 0x000b
104#define CB_TAG_LINKER 0x000c
105#define CB_TAG_ASSEMBLER 0x000d
106
107struct cb_string {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +0000108 u32 tag;
109 u32 size;
110 u8 string[0];
Jordan Crousef6145c32008-03-19 23:56:58 +0000111};
112
113#define CB_TAG_SERIAL 0x000f
114
115struct cb_serial {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +0000116 u32 tag;
117 u32 size;
Stefan Reinauerd1bc3312011-06-22 16:39:19 -0700118#define CB_SERIAL_TYPE_IO_MAPPED 1
119#define CB_SERIAL_TYPE_MEMORY_MAPPED 2
120 u32 type;
121 u32 baseaddr;
122 u32 baud;
Vadim Bendebury6cc5e522015-01-09 16:54:19 -0800123 u32 regwidth;
Jordan Crousef6145c32008-03-19 23:56:58 +0000124};
125
126#define CB_TAG_CONSOLE 0x00010
127
128struct cb_console {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +0000129 u32 tag;
130 u32 size;
131 u16 type;
Jordan Crousef6145c32008-03-19 23:56:58 +0000132};
133
134#define CB_TAG_CONSOLE_SERIAL8250 0
Stefan Reinauerabc0c852010-11-22 08:09:50 +0000135#define CB_TAG_CONSOLE_VGA 1 // OBSOLETE
136#define CB_TAG_CONSOLE_BTEXT 2 // OBSOLETE
Stefan Reinauer5ae31752013-06-19 13:47:46 -0700137#define CB_TAG_CONSOLE_LOGBUF 3 // OBSOLETE
Stefan Reinauerabc0c852010-11-22 08:09:50 +0000138#define CB_TAG_CONSOLE_SROM 4 // OBSOLETE
Jordan Crousef6145c32008-03-19 23:56:58 +0000139#define CB_TAG_CONSOLE_EHCI 5
140
Stefan Reinauer5f7d5062009-03-17 16:41:01 +0000141#define CB_TAG_FORWARD 0x00011
142
143struct cb_forward {
144 u32 tag;
145 u32 size;
146 u64 forward;
147};
148
Stefan Reinauerb7002542010-03-25 18:56:26 +0000149#define CB_TAG_FRAMEBUFFER 0x0012
150struct cb_framebuffer {
151 u32 tag;
152 u32 size;
153
154 u64 physical_address;
155 u32 x_resolution;
156 u32 y_resolution;
157 u32 bytes_per_line;
158 u8 bits_per_pixel;
Stefan Tauner3509ad32013-06-25 19:25:46 +0200159 u8 red_mask_pos;
Stefan Reinauerb7002542010-03-25 18:56:26 +0000160 u8 red_mask_size;
161 u8 green_mask_pos;
162 u8 green_mask_size;
163 u8 blue_mask_pos;
164 u8 blue_mask_size;
165 u8 reserved_mask_pos;
166 u8 reserved_mask_size;
167};
168
Gabe Blackd3890cc2012-03-11 01:57:53 -0800169#define CB_TAG_GPIO 0x0013
Gabe Black025667f2012-10-01 17:54:03 -0700170#define CB_GPIO_ACTIVE_LOW 0
171#define CB_GPIO_ACTIVE_HIGH 1
172#define CB_GPIO_MAX_NAME_LENGTH 16
Gabe Blackd3890cc2012-03-11 01:57:53 -0800173struct cb_gpio {
174 u32 port;
175 u32 polarity;
176 u32 value;
Gabe Black025667f2012-10-01 17:54:03 -0700177 u8 name[CB_GPIO_MAX_NAME_LENGTH];
Gabe Blackd3890cc2012-03-11 01:57:53 -0800178};
179
180struct cb_gpios {
181 u32 tag;
182 u32 size;
183
184 u32 count;
185 struct cb_gpio gpios[0];
186};
187
Julius Werner1f5487a2013-08-27 15:38:54 -0700188#define CB_TAG_VDAT 0x0015
189#define CB_TAG_VBNV 0x0019
190#define CB_TAG_VBOOT_HANDOFF 0x0020
Julius Wernerb8fad3d2013-08-27 15:48:32 -0700191#define CB_TAG_DMA 0x0022
Furquan Shaikh6b322cc2014-11-08 17:19:31 -0800192#define CB_TAG_RAM_OOPS 0x0023
Furquan Shaikh3cec8712015-06-10 20:38:48 -0700193#define CB_TAG_MTC 0x002b
Julius Werner1f5487a2013-08-27 15:38:54 -0700194struct lb_range {
Gabe Blackd3890cc2012-03-11 01:57:53 -0800195 uint32_t tag;
Julius Werner1f5487a2013-08-27 15:38:54 -0700196 uint32_t size;
197 uint64_t range_start;
198 uint32_t range_size;
Gabe Blackd3890cc2012-03-11 01:57:53 -0800199};
200
201#define CB_TAG_TIMESTAMPS 0x0016
202#define CB_TAG_CBMEM_CONSOLE 0x0017
203#define CB_TAG_MRC_CACHE 0x0018
Duncan Laurief517c442013-12-12 10:43:58 -0800204#define CB_TAG_ACPI_GNVS 0x0024
Vadim Bendebury522f9c62014-10-24 15:14:55 -0700205#define CB_TAG_WIFI_CALIBRATION 0x0027
Gabe Blackd3890cc2012-03-11 01:57:53 -0800206struct cb_cbmem_tab {
207 uint32_t tag;
208 uint32_t size;
Stefan Reinauer642b1db72013-04-18 18:01:34 -0700209 uint64_t cbmem_tab;
Gabe Blackd3890cc2012-03-11 01:57:53 -0800210};
211
Vadim Bendebury6051e832014-07-29 17:51:29 -0700212#define CB_TAG_BOARD_ID 0x0025
213struct cb_board_id {
214 uint32_t tag;
215 uint32_t size;
216 /* Board ID as retrieved from the board revision GPIOs. */
217 uint32_t board_id;
218};
219
Aaron Durbina09760e2013-03-26 13:34:37 -0500220#define CB_TAG_X86_ROM_MTRR 0x0021
221struct cb_x86_rom_mtrr {
222 uint32_t tag;
223 uint32_t size;
224 /* The variable range MTRR index covering the ROM. If one wants to
225 * enable caching the ROM, the variable MTRR needs to be set to
226 * write-protect. To disable the caching after enabling set the
227 * type to uncacheable. */
228 uint32_t index;
229};
230
Vadim Bendeburyb7d74122014-09-22 19:36:28 -0700231#define CB_TAG_MAC_ADDRS 0x0026
232struct mac_address {
233 uint8_t mac_addr[6];
234 uint8_t pad[2]; /* Pad it to 8 bytes to keep it simple. */
235};
236
237struct cb_macs {
238 uint32_t tag;
239 uint32_t size;
240 uint32_t count;
241 struct mac_address mac_addrs[0];
242};
Aaron Durbina09760e2013-03-26 13:34:37 -0500243
David Hendricks272afe82014-11-20 13:59:45 -0800244#define CB_TAG_RAM_CODE 0x0028
245struct cb_ram_code {
246 uint32_t tag;
247 uint32_t size;
248 uint32_t ram_code;
249};
250
Dan Ehrenberg6addd402015-01-08 10:29:19 -0800251#define CB_TAG_SPI_FLASH 0x0029
252struct cb_spi_flash {
253 uint32_t tag;
254 uint32_t size;
255 uint32_t flash_size;
256 uint32_t sector_size;
257 uint32_t erase_cmd;
258};
259
Patrick Georgif61b35d2015-07-14 17:15:24 +0100260#define CB_TAG_BOOT_MEDIA_PARAMS 0x0030
261struct cb_boot_media_params {
262 uint32_t tag;
263 uint32_t size;
264 /* offsets are relative to start of boot media */
265 uint64_t fmap_offset;
266 uint64_t cbfs_offset;
267 uint64_t cbfs_size;
268 uint64_t boot_media_size;
269};
270
Stephen Barberda262a632015-03-11 15:48:08 -0700271#define CB_TAG_SERIALNO 0x002a
272#define CB_MAX_SERIALNO_LENGTH 32
273
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +0000274#define CB_TAG_CMOS_OPTION_TABLE 0x00c8
275struct cb_cmos_option_table {
276 u32 tag;
277 u32 size;
278 u32 header_length;
279};
280
281#define CB_TAG_OPTION 0x00c9
Gabe Blackd94512e2012-10-01 18:05:50 -0700282#define CB_CMOS_MAX_NAME_LENGTH 32
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +0000283struct cb_cmos_entries {
284 u32 tag;
285 u32 size;
286 u32 bit;
287 u32 length;
288 u32 config;
289 u32 config_id;
Gabe Blackd94512e2012-10-01 18:05:50 -0700290 u8 name[CB_CMOS_MAX_NAME_LENGTH];
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +0000291};
292
293
294#define CB_TAG_OPTION_ENUM 0x00ca
Gabe Blackd94512e2012-10-01 18:05:50 -0700295#define CB_CMOS_MAX_TEXT_LENGTH 32
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +0000296struct cb_cmos_enums {
297 u32 tag;
298 u32 size;
299 u32 config_id;
300 u32 value;
Gabe Blackd94512e2012-10-01 18:05:50 -0700301 u8 text[CB_CMOS_MAX_TEXT_LENGTH];
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +0000302};
303
304#define CB_TAG_OPTION_DEFAULTS 0x00cb
Gabe Blackd94512e2012-10-01 18:05:50 -0700305#define CB_CMOS_IMAGE_BUFFER_SIZE 128
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +0000306struct cb_cmos_defaults {
307 u32 tag;
308 u32 size;
309 u32 name_length;
Gabe Blackd94512e2012-10-01 18:05:50 -0700310 u8 name[CB_CMOS_MAX_NAME_LENGTH];
311 u8 default_set[CB_CMOS_IMAGE_BUFFER_SIZE];
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +0000312};
313
314#define CB_TAG_OPTION_CHECKSUM 0x00cc
Gabe Blackd94512e2012-10-01 18:05:50 -0700315#define CB_CHECKSUM_NONE 0
316#define CB_CHECKSUM_PCBIOS 1
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +0000317struct cb_cmos_checksum {
318 u32 tag;
319 u32 size;
320 u32 range_start;
321 u32 range_end;
322 u32 location;
323 u32 type;
324};
Jordan Crousef6145c32008-03-19 23:56:58 +0000325
Philip Prindeville46404d72011-12-23 17:09:02 -0700326/* Helpful inlines */
327
328static inline u64 cb_unpack64(struct cbuint64 val)
329{
330 return (((u64) val.hi) << 32) | val.lo;
331}
332
Philip Prindevillefe2f6b02011-12-23 17:22:05 -0700333static inline u16 cb_checksum(const void *ptr, unsigned len)
334{
335 return ipchksum(ptr, len);
336}
337
Philip Prindeville9a7c2462011-12-24 22:12:37 -0700338static inline const char *cb_mb_vendor_string(const struct cb_mainboard *cbm)
339{
340 return (char *)(cbm->strings + cbm->vendor_idx);
341}
342
343static inline const char *cb_mb_part_string(const struct cb_mainboard *cbm)
344{
345 return (char *)(cbm->strings + cbm->part_number_idx);
346}
347
Jordan Crousef6145c32008-03-19 23:56:58 +0000348/* Helpful macros */
349
350#define MEM_RANGE_COUNT(_rec) \
Uwe Hermann6a441bf2008-03-20 19:54:59 +0000351 (((_rec)->size - sizeof(*(_rec))) / sizeof((_rec)->map[0]))
Jordan Crousef6145c32008-03-19 23:56:58 +0000352
353#define MEM_RANGE_PTR(_rec, _idx) \
Philip Prindeville7d95b3e2011-12-23 17:53:26 -0700354 (void *)(((u8 *) (_rec)) + sizeof(*(_rec)) \
355 + (sizeof((_rec)->map[0]) * (_idx)))
Jordan Crousef6145c32008-03-19 23:56:58 +0000356
Jordan Crousef6145c32008-03-19 23:56:58 +0000357#endif