blob: 7c912be0f7995cf0cd8f949e8000615ddb4bd241 [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
11 * code which may be obtained from http://www.coreboot.org/.
Stefan Reinauer6540ae52007-07-12 16:35:42 +000012 * Specifically, this code was obtained from LinuxBIOS version 1.1.8.
13 */
14
Stefan Reinauerf527e702008-01-18 15:33:49 +000015/* The coreboot table information is for conveying information
Stefan Reinauer6540ae52007-07-12 16:35:42 +000016 * from the firmware to the loaded OS image. Primarily this
17 * is expected to be information that cannot be discovered by
18 * other means, such as quering the hardware directly.
19 *
20 * All of the information should be Position Independent Data.
21 * That is it should be safe to relocated any of the information
22 * without it's meaning/correctnes changing. For table that
23 * can reasonably be used on multiple architectures the data
24 * size should be fixed. This should ease the transition between
25 * 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?
29 * - Are the per motherboard constants available?
30 * - 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 *
35 * With this test it should be straight forward 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
38 * irrelevant or have been replaced by better alternatives may be
39 * dropped. Of course it is polite and expidite to include extra
40 * table entries and be backwards compatible, but it is not required.
41 */
42
Stefan Reinauerf527e702008-01-18 15:33:49 +000043/* Since coreboot is usually compiled 32bit, gcc will align 64bit
44 * types to 32bit boundaries. If the coreboot table is dumped on a
Stefan Reinauer6540ae52007-07-12 16:35:42 +000045 * 64bit system, a uint64_t would be aligned to 64bit boundaries,
46 * breaking the table format.
47 *
Stefan Reinauerf527e702008-01-18 15:33:49 +000048 * lb_uint64 will keep 64bit coreboot table values aligned to 32bit
Stefan Reinauer6540ae52007-07-12 16:35:42 +000049 * to ensure compatibility. They can be accessed with the two functions
50 * below: unpack_lb64() and pack_lb64()
51 *
52 * See also: util/lbtdump/lbtdump.c
53 */
54
55struct lb_uint64 {
56 uint32_t lo;
57 uint32_t hi;
58};
59
60static inline uint64_t unpack_lb64(struct lb_uint64 value)
61{
62 uint64_t result;
63 result = value.hi;
64 result = (result << 32) + value.lo;
65 return result;
66}
67
68static inline struct lb_uint64 pack_lb64(uint64_t value)
69{
70 struct lb_uint64 result;
71 result.lo = (value >> 0) & 0xffffffff;
72 result.hi = (value >> 32) & 0xffffffff;
73 return result;
74}
75
76
77
78struct lb_header
79{
80 uint8_t signature[4]; /* LBIO */
81 uint32_t header_bytes;
82 uint32_t header_checksum;
83 uint32_t table_bytes;
84 uint32_t table_checksum;
85 uint32_t table_entries;
86};
87
88/* Every entry in the boot enviroment list will correspond to a boot
89 * info record. Encoding both type and size. The type is obviously
90 * so you can tell what it is. The size allows you to skip that
91 * boot enviroment record if you don't know what it easy. This allows
92 * forward compatibility with records not yet defined.
93 */
94struct lb_record {
95 uint32_t tag; /* tag ID */
96 uint32_t size; /* size of record (in bytes) */
97};
98
99#define LB_TAG_UNUSED 0x0000
100
101#define LB_TAG_MEMORY 0x0001
102
103struct lb_memory_range {
104 struct lb_uint64 start;
105 struct lb_uint64 size;
106 uint32_t type;
107#define LB_MEM_RAM 1 /* Memory anyone can use */
108#define LB_MEM_RESERVED 2 /* Don't use this memory region */
109#define LB_MEM_TABLE 16 /* Ram configuration tables are kept in */
110};
111
112struct lb_memory {
113 uint32_t tag;
114 uint32_t size;
115 struct lb_memory_range map[0];
116};
117
118#define LB_TAG_HWRPB 0x0002
119struct lb_hwrpb {
120 uint32_t tag;
121 uint32_t size;
122 uint64_t hwrpb;
123};
124
125#define LB_TAG_MAINBOARD 0x0003
126struct lb_mainboard {
127 uint32_t tag;
128 uint32_t size;
129 uint8_t vendor_idx;
130 uint8_t part_number_idx;
131 uint8_t strings[0];
132};
133
134#define LB_TAG_VERSION 0x0004
135#define LB_TAG_EXTRA_VERSION 0x0005
136#define LB_TAG_BUILD 0x0006
137#define LB_TAG_COMPILE_TIME 0x0007
138#define LB_TAG_COMPILE_BY 0x0008
139#define LB_TAG_COMPILE_HOST 0x0009
140#define LB_TAG_COMPILE_DOMAIN 0x000a
141#define LB_TAG_COMPILER 0x000b
142#define LB_TAG_LINKER 0x000c
143#define LB_TAG_ASSEMBLER 0x000d
144struct lb_string {
145 uint32_t tag;
146 uint32_t size;
147 uint8_t string[0];
148};
149
150/* The following structures are for the cmos definitions table */
151#define LB_TAG_CMOS_OPTION_TABLE 200
152/* cmos header record */
153struct cmos_option_table {
154 uint32_t tag; /* CMOS definitions table type */
155 uint32_t size; /* size of the entire table */
156 uint32_t header_length; /* length of header */
157};
158
159/* cmos entry record
160 This record is variable length. The name field may be
161 shorter than CMOS_MAX_NAME_LENGTH. The entry may start
162 anywhere in the byte, but can not span bytes unless it
163 starts at the beginning of the byte and the length is
164 fills complete bytes.
165*/
166#define LB_TAG_OPTION 201
167struct cmos_entries {
168 uint32_t tag; /* entry type */
169 uint32_t size; /* length of this record */
170 uint32_t bit; /* starting bit from start of image */
171 uint32_t length; /* length of field in bits */
172 uint32_t config; /* e=enumeration, h=hex, r=reserved */
173 uint32_t config_id; /* a number linking to an enumeration record */
174#define CMOS_MAX_NAME_LENGTH 32
175 uint8_t name[CMOS_MAX_NAME_LENGTH]; /* name of entry in ascii,
176 variable length int aligned */
177};
178
179
180/* cmos enumerations record
181 This record is variable length. The text field may be
182 shorter than CMOS_MAX_TEXT_LENGTH.
183*/
184#define LB_TAG_OPTION_ENUM 202
185struct cmos_enums {
186 uint32_t tag; /* enumeration type */
187 uint32_t size; /* length of this record */
188 uint32_t config_id; /* a number identifying the config id */
189 uint32_t value; /* the value associated with the text */
190#define CMOS_MAX_TEXT_LENGTH 32
191 uint8_t text[CMOS_MAX_TEXT_LENGTH]; /* enum description in ascii,
192 variable length int aligned */
193};
194
195/* cmos defaults record
196 This record contains default settings for the cmos ram.
197*/
198#define LB_TAG_OPTION_DEFAULTS 203
199struct cmos_defaults {
200 uint32_t tag; /* default type */
201 uint32_t size; /* length of this record */
202 uint32_t name_length; /* length of the following name field */
203 uint8_t name[CMOS_MAX_NAME_LENGTH]; /* name identifying the default */
204#define CMOS_IMAGE_BUFFER_SIZE 128
205 uint8_t default_set[CMOS_IMAGE_BUFFER_SIZE]; /* default settings */
206};
207
208#define LB_TAG_OPTION_CHECKSUM 204
209struct cmos_checksum {
210 uint32_t tag;
211 uint32_t size;
212 /* In practice everything is byte aligned, but things are measured
213 * in bits to be consistent.
214 */
215 uint32_t range_start; /* First bit that is checksummed (byte aligned) */
216 uint32_t range_end; /* Last bit that is checksummed (byte aligned) */
217 uint32_t location; /* First bit of the checksum (byte aligned) */
218 uint32_t type; /* Checksum algorithm that is used */
219#define CHECKSUM_NONE 0
220#define CHECKSUM_PCBIOS 1
221};
222
223
224
Stefan Reinauerf527e702008-01-18 15:33:49 +0000225#endif /* COREBOOT_TABLES_H */