blob: 574469a6ed57085f9e3c6ddc808fb753e848edae [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>
34
35struct cbuint64 {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +000036 u32 lo;
37 u32 hi;
Jordan Crousef6145c32008-03-19 23:56:58 +000038};
39
40struct cb_header {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +000041 u8 signature[4];
42 u32 header_bytes;
43 u32 header_checksum;
44 u32 table_bytes;
45 u32 table_checksum;
46 u32 table_entries;
Jordan Crousef6145c32008-03-19 23:56:58 +000047};
48
49struct cb_record {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +000050 u32 tag;
51 u32 size;
Jordan Crousef6145c32008-03-19 23:56:58 +000052};
53
54#define CB_TAG_UNUSED 0x0000
55#define CB_TAG_MEMORY 0x0001
56
57struct cb_memory_range {
58 struct cbuint64 start;
59 struct cbuint64 size;
Uwe Hermannfad8c2b2008-04-11 18:01:50 +000060 u32 type;
Jordan Crousef6145c32008-03-19 23:56:58 +000061};
62
Stefan Reinauerd1bc3312011-06-22 16:39:19 -070063#define CB_MEM_RAM 1
64#define CB_MEM_RESERVED 2
65#define CB_MEM_ACPI 3
66#define CB_MEM_NVS 4
67#define CB_MEM_UNUSABLE 5
68#define CB_MEM_VENDOR_RSVD 6
69#define CB_MEM_TABLE 16
Jordan Crousef6145c32008-03-19 23:56:58 +000070
71struct cb_memory {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +000072 u32 tag;
73 u32 size;
Jordan Crousef6145c32008-03-19 23:56:58 +000074 struct cb_memory_range map[0];
75};
76
77#define CB_TAG_HWRPB 0x0002
78
79struct cb_hwrpb {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +000080 u32 tag;
81 u32 size;
82 u64 hwrpb;
Jordan Crousef6145c32008-03-19 23:56:58 +000083};
84
85#define CB_TAG_MAINBOARD 0x0003
86
87struct cb_mainboard {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +000088 u32 tag;
89 u32 size;
90 u8 vendor_idx;
91 u8 part_number_idx;
92 u8 strings[0];
Jordan Crousef6145c32008-03-19 23:56:58 +000093};
94
95#define CB_TAG_VERSION 0x0004
96#define CB_TAG_EXTRA_VERSION 0x0005
97#define CB_TAG_BUILD 0x0006
98#define CB_TAG_COMPILE_TIME 0x0007
99#define CB_TAG_COMPILE_BY 0x0008
100#define CB_TAG_COMPILE_HOST 0x0009
101#define CB_TAG_COMPILE_DOMAIN 0x000a
102#define CB_TAG_COMPILER 0x000b
103#define CB_TAG_LINKER 0x000c
104#define CB_TAG_ASSEMBLER 0x000d
105
106struct cb_string {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +0000107 u32 tag;
108 u32 size;
109 u8 string[0];
Jordan Crousef6145c32008-03-19 23:56:58 +0000110};
111
112#define CB_TAG_SERIAL 0x000f
113
114struct cb_serial {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +0000115 u32 tag;
116 u32 size;
Stefan Reinauerd1bc3312011-06-22 16:39:19 -0700117#define CB_SERIAL_TYPE_IO_MAPPED 1
118#define CB_SERIAL_TYPE_MEMORY_MAPPED 2
119 u32 type;
120 u32 baseaddr;
121 u32 baud;
Jordan Crousef6145c32008-03-19 23:56:58 +0000122};
123
124#define CB_TAG_CONSOLE 0x00010
125
126struct cb_console {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +0000127 u32 tag;
128 u32 size;
129 u16 type;
Jordan Crousef6145c32008-03-19 23:56:58 +0000130};
131
132#define CB_TAG_CONSOLE_SERIAL8250 0
Stefan Reinauerabc0c852010-11-22 08:09:50 +0000133#define CB_TAG_CONSOLE_VGA 1 // OBSOLETE
134#define CB_TAG_CONSOLE_BTEXT 2 // OBSOLETE
Jordan Crousef6145c32008-03-19 23:56:58 +0000135#define CB_TAG_CONSOLE_LOGBUF 3
Stefan Reinauerabc0c852010-11-22 08:09:50 +0000136#define CB_TAG_CONSOLE_SROM 4 // OBSOLETE
Jordan Crousef6145c32008-03-19 23:56:58 +0000137#define CB_TAG_CONSOLE_EHCI 5
138
Stefan Reinauer5f7d5062009-03-17 16:41:01 +0000139#define CB_TAG_FORWARD 0x00011
140
141struct cb_forward {
142 u32 tag;
143 u32 size;
144 u64 forward;
145};
146
Stefan Reinauerb7002542010-03-25 18:56:26 +0000147#define CB_TAG_FRAMEBUFFER 0x0012
148struct cb_framebuffer {
149 u32 tag;
150 u32 size;
151
152 u64 physical_address;
153 u32 x_resolution;
154 u32 y_resolution;
155 u32 bytes_per_line;
156 u8 bits_per_pixel;
157 u8 red_mask_pos;
158 u8 red_mask_size;
159 u8 green_mask_pos;
160 u8 green_mask_size;
161 u8 blue_mask_pos;
162 u8 blue_mask_size;
163 u8 reserved_mask_pos;
164 u8 reserved_mask_size;
165};
166
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +0000167#define CB_TAG_CMOS_OPTION_TABLE 0x00c8
168struct cb_cmos_option_table {
169 u32 tag;
170 u32 size;
171 u32 header_length;
172};
173
174#define CB_TAG_OPTION 0x00c9
175#define CMOS_MAX_NAME_LENGTH 32
176struct cb_cmos_entries {
177 u32 tag;
178 u32 size;
179 u32 bit;
180 u32 length;
181 u32 config;
182 u32 config_id;
183 u8 name[CMOS_MAX_NAME_LENGTH];
184};
185
186
187#define CB_TAG_OPTION_ENUM 0x00ca
188#define CMOS_MAX_TEXT_LENGTH 32
189struct cb_cmos_enums {
190 u32 tag;
191 u32 size;
192 u32 config_id;
193 u32 value;
194 u8 text[CMOS_MAX_TEXT_LENGTH];
195};
196
197#define CB_TAG_OPTION_DEFAULTS 0x00cb
198#define CMOS_IMAGE_BUFFER_SIZE 128
199struct cb_cmos_defaults {
200 u32 tag;
201 u32 size;
202 u32 name_length;
203 u8 name[CMOS_MAX_NAME_LENGTH];
204 u8 default_set[CMOS_IMAGE_BUFFER_SIZE];
205};
206
207#define CB_TAG_OPTION_CHECKSUM 0x00cc
208#define CHECKSUM_NONE 0
209#define CHECKSUM_PCBIOS 1
210struct cb_cmos_checksum {
211 u32 tag;
212 u32 size;
213 u32 range_start;
214 u32 range_end;
215 u32 location;
216 u32 type;
217};
Jordan Crousef6145c32008-03-19 23:56:58 +0000218
Philip Prindeville46404d72011-12-23 17:09:02 -0700219/* Helpful inlines */
220
221static inline u64 cb_unpack64(struct cbuint64 val)
222{
223 return (((u64) val.hi) << 32) | val.lo;
224}
225
Philip Prindevillefe2f6b02011-12-23 17:22:05 -0700226static inline u16 cb_checksum(const void *ptr, unsigned len)
227{
228 return ipchksum(ptr, len);
229}
230
Jordan Crousef6145c32008-03-19 23:56:58 +0000231/* Helpful macros */
232
233#define MEM_RANGE_COUNT(_rec) \
Uwe Hermann6a441bf2008-03-20 19:54:59 +0000234 (((_rec)->size - sizeof(*(_rec))) / sizeof((_rec)->map[0]))
Jordan Crousef6145c32008-03-19 23:56:58 +0000235
236#define MEM_RANGE_PTR(_rec, _idx) \
Uwe Hermannfad8c2b2008-04-11 18:01:50 +0000237 (((u8 *) (_rec)) + sizeof(*(_rec)) \
Uwe Hermann6a441bf2008-03-20 19:54:59 +0000238 + (sizeof((_rec)->map[0]) * (_idx)))
Jordan Crousef6145c32008-03-19 23:56:58 +0000239
240#define MB_VENDOR_STRING(_mb) \
241 (((unsigned char *) ((_mb)->strings)) + (_mb)->vendor_idx)
242
243#define MB_PART_STRING(_mb) \
244 (((unsigned char *) ((_mb)->strings)) + (_mb)->part_number_idx)
245
Jordan Crousef6145c32008-03-19 23:56:58 +0000246#endif