blob: 88dc251cd881a1b5a950b40c1ada078a66a3529a [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
125#define CB_TAG_CONSOLE_VGA 1
Uwe Hermann6a441bf2008-03-20 19:54:59 +0000126#define CB_TAG_CONSOLE_BTEXT 2
Jordan Crousef6145c32008-03-19 23:56:58 +0000127#define CB_TAG_CONSOLE_LOGBUF 3
128#define CB_TAG_CONSOLE_SROM 4
129#define CB_TAG_CONSOLE_EHCI 5
130
Uwe Hermann6a441bf2008-03-20 19:54:59 +0000131/* Still to come: CMOS information. */
Jordan Crousef6145c32008-03-19 23:56:58 +0000132
133/* Helpful macros */
134
135#define MEM_RANGE_COUNT(_rec) \
Uwe Hermann6a441bf2008-03-20 19:54:59 +0000136 (((_rec)->size - sizeof(*(_rec))) / sizeof((_rec)->map[0]))
Jordan Crousef6145c32008-03-19 23:56:58 +0000137
138#define MEM_RANGE_PTR(_rec, _idx) \
Uwe Hermannfad8c2b2008-04-11 18:01:50 +0000139 (((u8 *) (_rec)) + sizeof(*(_rec)) \
Uwe Hermann6a441bf2008-03-20 19:54:59 +0000140 + (sizeof((_rec)->map[0]) * (_idx)))
Jordan Crousef6145c32008-03-19 23:56:58 +0000141
142#define MB_VENDOR_STRING(_mb) \
143 (((unsigned char *) ((_mb)->strings)) + (_mb)->vendor_idx)
144
145#define MB_PART_STRING(_mb) \
146 (((unsigned char *) ((_mb)->strings)) + (_mb)->part_number_idx)
147
148#define UNPACK_CB64(_in) \
Uwe Hermannfad8c2b2008-04-11 18:01:50 +0000149 ( (((u64) _in.hi) << 32) | _in.lo )
Jordan Crousef6145c32008-03-19 23:56:58 +0000150
151#endif