blob: c4dc1158adf3425fdbf7c5266d997f5535b477e5 [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
63#define CB_MEM_RAM 1
64#define CB_MEM_RESERVED 2
65#define CB_MEM_TABLE 16
66
67struct cb_memory {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +000068 u32 tag;
69 u32 size;
Jordan Crousef6145c32008-03-19 23:56:58 +000070 struct cb_memory_range map[0];
71};
72
73#define CB_TAG_HWRPB 0x0002
74
75struct cb_hwrpb {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +000076 u32 tag;
77 u32 size;
78 u64 hwrpb;
Jordan Crousef6145c32008-03-19 23:56:58 +000079};
80
81#define CB_TAG_MAINBOARD 0x0003
82
83struct cb_mainboard {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +000084 u32 tag;
85 u32 size;
86 u8 vendor_idx;
87 u8 part_number_idx;
88 u8 strings[0];
Jordan Crousef6145c32008-03-19 23:56:58 +000089};
90
91#define CB_TAG_VERSION 0x0004
92#define CB_TAG_EXTRA_VERSION 0x0005
93#define CB_TAG_BUILD 0x0006
94#define CB_TAG_COMPILE_TIME 0x0007
95#define CB_TAG_COMPILE_BY 0x0008
96#define CB_TAG_COMPILE_HOST 0x0009
97#define CB_TAG_COMPILE_DOMAIN 0x000a
98#define CB_TAG_COMPILER 0x000b
99#define CB_TAG_LINKER 0x000c
100#define CB_TAG_ASSEMBLER 0x000d
101
102struct cb_string {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +0000103 u32 tag;
104 u32 size;
105 u8 string[0];
Jordan Crousef6145c32008-03-19 23:56:58 +0000106};
107
108#define CB_TAG_SERIAL 0x000f
109
110struct cb_serial {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +0000111 u32 tag;
112 u32 size;
113 u16 ioport;
Jordan Crousef6145c32008-03-19 23:56:58 +0000114};
115
116#define CB_TAG_CONSOLE 0x00010
117
118struct cb_console {
Uwe Hermannfad8c2b2008-04-11 18:01:50 +0000119 u32 tag;
120 u32 size;
121 u16 type;
Jordan Crousef6145c32008-03-19 23:56:58 +0000122};
123
124#define CB_TAG_CONSOLE_SERIAL8250 0
Stefan Reinauerabc0c852010-11-22 08:09:50 +0000125#define CB_TAG_CONSOLE_VGA 1 // OBSOLETE
126#define CB_TAG_CONSOLE_BTEXT 2 // OBSOLETE
Jordan Crousef6145c32008-03-19 23:56:58 +0000127#define CB_TAG_CONSOLE_LOGBUF 3
Stefan Reinauerabc0c852010-11-22 08:09:50 +0000128#define CB_TAG_CONSOLE_SROM 4 // OBSOLETE
Jordan Crousef6145c32008-03-19 23:56:58 +0000129#define CB_TAG_CONSOLE_EHCI 5
130
Stefan Reinauer5f7d5062009-03-17 16:41:01 +0000131#define CB_TAG_FORWARD 0x00011
132
133struct cb_forward {
134 u32 tag;
135 u32 size;
136 u64 forward;
137};
138
Stefan Reinauerb7002542010-03-25 18:56:26 +0000139#define CB_TAG_FRAMEBUFFER 0x0012
140struct cb_framebuffer {
141 u32 tag;
142 u32 size;
143
144 u64 physical_address;
145 u32 x_resolution;
146 u32 y_resolution;
147 u32 bytes_per_line;
148 u8 bits_per_pixel;
149 u8 red_mask_pos;
150 u8 red_mask_size;
151 u8 green_mask_pos;
152 u8 green_mask_size;
153 u8 blue_mask_pos;
154 u8 blue_mask_size;
155 u8 reserved_mask_pos;
156 u8 reserved_mask_size;
157};
158
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +0000159#define CB_TAG_CMOS_OPTION_TABLE 0x00c8
160struct cb_cmos_option_table {
161 u32 tag;
162 u32 size;
163 u32 header_length;
164};
165
166#define CB_TAG_OPTION 0x00c9
167#define CMOS_MAX_NAME_LENGTH 32
168struct cb_cmos_entries {
169 u32 tag;
170 u32 size;
171 u32 bit;
172 u32 length;
173 u32 config;
174 u32 config_id;
175 u8 name[CMOS_MAX_NAME_LENGTH];
176};
177
178
179#define CB_TAG_OPTION_ENUM 0x00ca
180#define CMOS_MAX_TEXT_LENGTH 32
181struct cb_cmos_enums {
182 u32 tag;
183 u32 size;
184 u32 config_id;
185 u32 value;
186 u8 text[CMOS_MAX_TEXT_LENGTH];
187};
188
189#define CB_TAG_OPTION_DEFAULTS 0x00cb
190#define CMOS_IMAGE_BUFFER_SIZE 128
191struct cb_cmos_defaults {
192 u32 tag;
193 u32 size;
194 u32 name_length;
195 u8 name[CMOS_MAX_NAME_LENGTH];
196 u8 default_set[CMOS_IMAGE_BUFFER_SIZE];
197};
198
199#define CB_TAG_OPTION_CHECKSUM 0x00cc
200#define CHECKSUM_NONE 0
201#define CHECKSUM_PCBIOS 1
202struct cb_cmos_checksum {
203 u32 tag;
204 u32 size;
205 u32 range_start;
206 u32 range_end;
207 u32 location;
208 u32 type;
209};
Jordan Crousef6145c32008-03-19 23:56:58 +0000210
211/* Helpful macros */
212
213#define MEM_RANGE_COUNT(_rec) \
Uwe Hermann6a441bf2008-03-20 19:54:59 +0000214 (((_rec)->size - sizeof(*(_rec))) / sizeof((_rec)->map[0]))
Jordan Crousef6145c32008-03-19 23:56:58 +0000215
216#define MEM_RANGE_PTR(_rec, _idx) \
Uwe Hermannfad8c2b2008-04-11 18:01:50 +0000217 (((u8 *) (_rec)) + sizeof(*(_rec)) \
Uwe Hermann6a441bf2008-03-20 19:54:59 +0000218 + (sizeof((_rec)->map[0]) * (_idx)))
Jordan Crousef6145c32008-03-19 23:56:58 +0000219
220#define MB_VENDOR_STRING(_mb) \
221 (((unsigned char *) ((_mb)->strings)) + (_mb)->vendor_idx)
222
223#define MB_PART_STRING(_mb) \
224 (((unsigned char *) ((_mb)->strings)) + (_mb)->part_number_idx)
225
226#define UNPACK_CB64(_in) \
Uwe Hermannfad8c2b2008-04-11 18:01:50 +0000227 ( (((u64) _in.hi) << 32) | _in.lo )
Jordan Crousef6145c32008-03-19 23:56:58 +0000228
229#endif