2007-07-12 18:35:42 +02:00
|
|
|
/*****************************************************************************\
|
2008-01-18 17:17:44 +01:00
|
|
|
* coreboot_tables.h
|
2007-07-12 18:35:42 +02:00
|
|
|
\*****************************************************************************/
|
|
|
|
|
2008-01-18 16:33:49 +01:00
|
|
|
#ifndef COREBOOT_TABLES_H
|
|
|
|
#define COREBOOT_TABLES_H
|
2007-07-12 18:35:42 +02:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2008-01-18 16:33:49 +01:00
|
|
|
/* Note: The contents of this file were borrowed from the coreboot source
|
2018-08-23 18:19:52 +02:00
|
|
|
* code which may be obtained from https://www.coreboot.org/.
|
|
|
|
* Specifically, this code was obtained from LinuxBIOS version 1.1.8.
|
2007-07-12 18:35:42 +02:00
|
|
|
*/
|
|
|
|
|
2008-01-18 16:33:49 +01:00
|
|
|
/* The coreboot table information is for conveying information
|
2018-08-23 18:19:52 +02:00
|
|
|
* from the firmware to the loaded OS image. Primarily this
|
2007-07-12 18:35:42 +02:00
|
|
|
* is expected to be information that cannot be discovered by
|
2018-08-23 18:19:52 +02:00
|
|
|
* other means, such as querying the hardware directly.
|
2007-07-12 18:35:42 +02:00
|
|
|
*
|
2010-04-27 08:56:47 +02:00
|
|
|
* All of the information should be Position Independent Data.
|
2018-08-23 18:19:52 +02:00
|
|
|
* That is, it should be safe to relocate any of the information
|
|
|
|
* without changing its meaning/correctness. For tables that
|
2007-07-12 18:35:42 +02:00
|
|
|
* can reasonably be used on multiple architectures the data
|
2018-08-23 18:19:52 +02:00
|
|
|
* size should be fixed. This should ease the transition between
|
2007-07-12 18:35:42 +02:00
|
|
|
* 32 bit and 64 bit architectures etc.
|
|
|
|
*
|
|
|
|
* The completeness test for the information in this table is:
|
|
|
|
* - Can all of the hardware be detected?
|
2018-08-23 18:19:52 +02:00
|
|
|
* - Are the per-motherboard constants available?
|
2007-07-12 18:35:42 +02:00
|
|
|
* - Is there enough to allow a kernel to run that was written before
|
|
|
|
* a particular motherboard is constructed? (Assuming the kernel
|
|
|
|
* has drivers for all of the hardware but it does not have
|
|
|
|
* assumptions on how the hardware is connected together).
|
|
|
|
*
|
2018-08-23 18:19:52 +02:00
|
|
|
* With this test it should be straightforward to determine if a
|
|
|
|
* table entry is required or not. This should remove much of the
|
|
|
|
* long-term compatibility burden as table entries which are
|
2007-07-12 18:35:42 +02:00
|
|
|
* irrelevant or have been replaced by better alternatives may be
|
2018-08-23 18:19:52 +02:00
|
|
|
* dropped. Of course it is polite and expedite to include extra
|
2007-07-12 18:35:42 +02:00
|
|
|
* table entries and be backwards compatible, but it is not required.
|
|
|
|
*/
|
|
|
|
|
2010-04-27 08:56:47 +02:00
|
|
|
/* Since coreboot is usually compiled 32bit, gcc will align 64bit
|
|
|
|
* types to 32bit boundaries. If the coreboot table is dumped on a
|
|
|
|
* 64bit system, a uint64_t would be aligned to 64bit boundaries,
|
2007-07-12 18:35:42 +02:00
|
|
|
* breaking the table format.
|
|
|
|
*
|
2008-01-18 16:33:49 +01:00
|
|
|
* lb_uint64 will keep 64bit coreboot table values aligned to 32bit
|
2007-07-12 18:35:42 +02:00
|
|
|
* to ensure compatibility. They can be accessed with the two functions
|
|
|
|
* below: unpack_lb64() and pack_lb64()
|
|
|
|
*
|
|
|
|
* See also: util/lbtdump/lbtdump.c
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct lb_uint64 {
|
|
|
|
uint32_t lo;
|
|
|
|
uint32_t hi;
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline uint64_t unpack_lb64(struct lb_uint64 value)
|
|
|
|
{
|
2010-01-13 22:00:23 +01:00
|
|
|
uint64_t result;
|
|
|
|
result = value.hi;
|
|
|
|
result = (result << 32) + value.lo;
|
|
|
|
return result;
|
2007-07-12 18:35:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct lb_uint64 pack_lb64(uint64_t value)
|
|
|
|
{
|
2010-01-13 22:00:23 +01:00
|
|
|
struct lb_uint64 result;
|
|
|
|
result.lo = (value >> 0) & 0xffffffff;
|
|
|
|
result.hi = (value >> 32) & 0xffffffff;
|
|
|
|
return result;
|
2007-07-12 18:35:42 +02:00
|
|
|
}
|
|
|
|
|
2010-01-13 22:00:23 +01:00
|
|
|
struct lb_header {
|
2011-01-18 13:12:47 +01:00
|
|
|
union {
|
|
|
|
uint8_t signature[4]; /* LBIO */
|
|
|
|
uint32_t signature32;
|
|
|
|
};
|
2010-01-13 22:00:23 +01:00
|
|
|
uint32_t header_bytes;
|
|
|
|
uint32_t header_checksum;
|
|
|
|
uint32_t table_bytes;
|
|
|
|
uint32_t table_checksum;
|
|
|
|
uint32_t table_entries;
|
2007-07-12 18:35:42 +02:00
|
|
|
};
|
|
|
|
|
2018-08-23 18:19:52 +02:00
|
|
|
/* Every entry in the boot environment list will correspond to a boot
|
|
|
|
* info record, encoding both type and size. The type is obviously
|
|
|
|
* so you can tell what it is. The size allows you to skip that
|
|
|
|
* boot environment record if you don't know what it is. This allows
|
2007-07-12 18:35:42 +02:00
|
|
|
* forward compatibility with records not yet defined.
|
|
|
|
*/
|
|
|
|
struct lb_record {
|
2010-01-13 22:00:23 +01:00
|
|
|
uint32_t tag; /* tag ID */
|
|
|
|
uint32_t size; /* size of record (in bytes) */
|
2007-07-12 18:35:42 +02:00
|
|
|
};
|
|
|
|
|
2018-08-23 18:19:52 +02:00
|
|
|
#define LB_TAG_UNUSED 0x0000
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2018-08-23 18:19:52 +02:00
|
|
|
#define LB_TAG_MEMORY 0x0001
|
2007-07-12 18:35:42 +02:00
|
|
|
|
|
|
|
struct lb_memory_range {
|
|
|
|
struct lb_uint64 start;
|
|
|
|
struct lb_uint64 size;
|
2010-01-13 22:00:23 +01:00
|
|
|
uint32_t type;
|
2018-08-23 18:19:52 +02:00
|
|
|
#define LB_MEM_RAM 1 /* Memory anyone can use */
|
|
|
|
#define LB_MEM_RESERVED 2 /* Don't use this memory region */
|
|
|
|
#define LB_MEM_TABLE 16 /* RAM configuration tables are kept in */
|
2007-07-12 18:35:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct lb_memory {
|
2010-01-13 22:00:23 +01:00
|
|
|
uint32_t tag;
|
|
|
|
uint32_t size;
|
|
|
|
struct lb_memory_range map[0];
|
2007-07-12 18:35:42 +02:00
|
|
|
};
|
|
|
|
|
2018-08-23 18:19:52 +02:00
|
|
|
#define LB_TAG_HWRPB 0x0002
|
2007-07-12 18:35:42 +02:00
|
|
|
struct lb_hwrpb {
|
2010-01-13 22:00:23 +01:00
|
|
|
uint32_t tag;
|
|
|
|
uint32_t size;
|
|
|
|
uint64_t hwrpb;
|
2007-07-12 18:35:42 +02:00
|
|
|
};
|
|
|
|
|
2018-08-23 18:19:52 +02:00
|
|
|
#define LB_TAG_MAINBOARD 0x0003
|
2007-07-12 18:35:42 +02:00
|
|
|
struct lb_mainboard {
|
2010-01-13 22:00:23 +01:00
|
|
|
uint32_t tag;
|
|
|
|
uint32_t size;
|
|
|
|
uint8_t vendor_idx;
|
|
|
|
uint8_t part_number_idx;
|
|
|
|
uint8_t strings[0];
|
2007-07-12 18:35:42 +02:00
|
|
|
};
|
|
|
|
|
2018-08-23 18:19:52 +02:00
|
|
|
#define LB_TAG_VERSION 0x0004
|
|
|
|
#define LB_TAG_EXTRA_VERSION 0x0005
|
|
|
|
#define LB_TAG_BUILD 0x0006
|
|
|
|
#define LB_TAG_COMPILE_TIME 0x0007
|
|
|
|
#define LB_TAG_COMPILE_BY 0x0008
|
|
|
|
#define LB_TAG_COMPILE_HOST 0x0009
|
|
|
|
#define LB_TAG_COMPILE_DOMAIN 0x000a
|
|
|
|
#define LB_TAG_COMPILER 0x000b
|
|
|
|
#define LB_TAG_LINKER 0x000c
|
|
|
|
#define LB_TAG_ASSEMBLER 0x000d
|
2007-07-12 18:35:42 +02:00
|
|
|
struct lb_string {
|
2010-01-13 22:00:23 +01:00
|
|
|
uint32_t tag;
|
|
|
|
uint32_t size;
|
|
|
|
uint8_t string[0];
|
2007-07-12 18:35:42 +02:00
|
|
|
};
|
2009-03-17 15:39:36 +01:00
|
|
|
#define LB_TAG_SERIAL 0x000f
|
|
|
|
#define LB_TAG_CONSOLE 0x0010
|
|
|
|
#define LB_TAG_FORWARD 0x0011
|
|
|
|
struct lb_forward {
|
|
|
|
uint32_t tag;
|
|
|
|
uint32_t size;
|
|
|
|
uint64_t forward;
|
|
|
|
};
|
2007-07-12 18:35:42 +02:00
|
|
|
|
2018-08-23 18:19:52 +02:00
|
|
|
/* The following structures are for the CMOS definitions table */
|
2007-07-12 18:35:42 +02:00
|
|
|
#define LB_TAG_CMOS_OPTION_TABLE 200
|
2018-08-23 18:19:52 +02:00
|
|
|
/* CMOS header record */
|
2007-07-12 18:35:42 +02:00
|
|
|
struct cmos_option_table {
|
2010-01-13 22:00:23 +01:00
|
|
|
uint32_t tag; /* CMOS definitions table type */
|
|
|
|
uint32_t size; /* size of the entire table */
|
|
|
|
uint32_t header_length; /* length of header */
|
2007-07-12 18:35:42 +02:00
|
|
|
};
|
|
|
|
|
2018-08-23 18:19:52 +02:00
|
|
|
/* CMOS entry record
|
|
|
|
* This record has a variable length. The name field may be
|
|
|
|
* shorter than CMOS_MAX_NAME_LENGTH. The entry may start
|
|
|
|
* anywhere in the byte, but can not span bytes unless it
|
|
|
|
* starts at the beginning of the byte and the length
|
|
|
|
* fills complete bytes.
|
|
|
|
*/
|
2007-07-12 18:35:42 +02:00
|
|
|
#define LB_TAG_OPTION 201
|
|
|
|
struct cmos_entries {
|
2010-01-13 22:00:23 +01:00
|
|
|
uint32_t tag; /* entry type */
|
|
|
|
uint32_t size; /* length of this record */
|
|
|
|
uint32_t bit; /* starting bit from start of image */
|
|
|
|
uint32_t length; /* length of field in bits */
|
|
|
|
uint32_t config; /* e=enumeration, h=hex, r=reserved */
|
|
|
|
uint32_t config_id; /* a number linking to an enumeration record */
|
2007-07-12 18:35:42 +02:00
|
|
|
#define CMOS_MAX_NAME_LENGTH 32
|
2010-04-27 08:56:47 +02:00
|
|
|
uint8_t name[CMOS_MAX_NAME_LENGTH]; /* name of entry in ascii,
|
2010-01-13 22:00:23 +01:00
|
|
|
variable length int aligned */
|
2007-07-12 18:35:42 +02:00
|
|
|
};
|
|
|
|
|
2018-08-23 18:19:52 +02:00
|
|
|
/* CMOS enumerations record
|
|
|
|
* This record has a variable length. The text field may be
|
|
|
|
* shorter than CMOS_MAX_TEXT_LENGTH.
|
|
|
|
*/
|
2007-07-12 18:35:42 +02:00
|
|
|
#define LB_TAG_OPTION_ENUM 202
|
|
|
|
struct cmos_enums {
|
2010-01-13 22:00:23 +01:00
|
|
|
uint32_t tag; /* enumeration type */
|
|
|
|
uint32_t size; /* length of this record */
|
|
|
|
uint32_t config_id; /* a number identifying the config id */
|
|
|
|
uint32_t value; /* the value associated with the text */
|
2007-07-12 18:35:42 +02:00
|
|
|
#define CMOS_MAX_TEXT_LENGTH 32
|
2010-04-27 08:56:47 +02:00
|
|
|
uint8_t text[CMOS_MAX_TEXT_LENGTH]; /* enum description in ascii,
|
2010-01-13 22:00:23 +01:00
|
|
|
variable length int aligned */
|
2007-07-12 18:35:42 +02:00
|
|
|
};
|
|
|
|
|
2018-08-23 18:19:52 +02:00
|
|
|
/* CMOS default record
|
|
|
|
* This record contains default settings for the CMOS RAM.
|
|
|
|
*/
|
2007-07-12 18:35:42 +02:00
|
|
|
#define LB_TAG_OPTION_DEFAULTS 203
|
|
|
|
struct cmos_defaults {
|
2010-01-13 22:00:23 +01:00
|
|
|
uint32_t tag; /* default type */
|
|
|
|
uint32_t size; /* length of this record */
|
|
|
|
uint32_t name_length; /* length of the following name field */
|
|
|
|
uint8_t name[CMOS_MAX_NAME_LENGTH]; /* name identifying the default */
|
2007-07-12 18:35:42 +02:00
|
|
|
#define CMOS_IMAGE_BUFFER_SIZE 128
|
2010-01-13 22:00:23 +01:00
|
|
|
uint8_t default_set[CMOS_IMAGE_BUFFER_SIZE]; /* default settings */
|
2007-07-12 18:35:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#define LB_TAG_OPTION_CHECKSUM 204
|
2010-01-13 22:00:23 +01:00
|
|
|
struct cmos_checksum {
|
2007-07-12 18:35:42 +02:00
|
|
|
uint32_t tag;
|
|
|
|
uint32_t size;
|
|
|
|
/* In practice everything is byte aligned, but things are measured
|
|
|
|
* in bits to be consistent.
|
|
|
|
*/
|
|
|
|
uint32_t range_start; /* First bit that is checksummed (byte aligned) */
|
|
|
|
uint32_t range_end; /* Last bit that is checksummed (byte aligned) */
|
|
|
|
uint32_t location; /* First bit of the checksum (byte aligned) */
|
|
|
|
uint32_t type; /* Checksum algorithm that is used */
|
|
|
|
#define CHECKSUM_NONE 0
|
|
|
|
#define CHECKSUM_PCBIOS 1
|
|
|
|
};
|
|
|
|
|
2010-01-13 22:00:23 +01:00
|
|
|
#endif /* COREBOOT_TABLES_H */
|