blob: f221a15faa04353c4ff615f79e7643db5a4ff88e [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 _SYSINFO_H
31#define _SYSINFO_H
Jordan Crousef6145c32008-03-19 23:56:58 +000032
Aaron Durbin8449b5e2013-11-05 17:07:44 -060033/* Maximum number of memory range definitions. */
34#define SYSINFO_MAX_MEM_RANGES 32
Gabe Blackd3890cc2012-03-11 01:57:53 -080035/* Allow a maximum of 8 GPIOs */
36#define SYSINFO_MAX_GPIOS 8
37
Vadim Bendeburyb7d74122014-09-22 19:36:28 -070038/* Up to 10 MAC addresses */
39#define SYSINFO_MAX_MACS 10
40
Gabe Blackd3890cc2012-03-11 01:57:53 -080041#include <coreboot_tables.h>
Jordan Crousef6145c32008-03-19 23:56:58 +000042
Gabe Black5ab20052012-08-28 16:38:34 -070043struct cb_serial;
44
Nico Huberd1cc8122013-02-08 12:39:28 +010045/*
46 * All pointers in here shall be virtual.
47 *
48 * If a relocation happens after the last call to lib_get_sysinfo(),
49 * it is up to the user to call lib_get_sysinfo() again.
50 */
Jordan Crousef6145c32008-03-19 23:56:58 +000051struct sysinfo_t {
52 unsigned int cpu_khz;
Gabe Black5ab20052012-08-28 16:38:34 -070053 struct cb_serial *serial;
Jordan Crousef6145c32008-03-19 23:56:58 +000054 unsigned short ser_ioport;
Stefan Reinauer4e677312011-04-16 00:13:17 +000055 unsigned long ser_base; // for mmapped serial
Jordan Crousef6145c32008-03-19 23:56:58 +000056
57 int n_memranges;
58
Stefan Reinauer34b9f862008-08-19 17:51:30 +000059 struct memrange {
Jordan Crousef6145c32008-03-19 23:56:58 +000060 unsigned long long base;
61 unsigned long long size;
Patrick Georgic9a6f0f2009-05-17 20:36:45 +000062 unsigned int type;
Jordan Crousef6145c32008-03-19 23:56:58 +000063 } memrange[SYSINFO_MAX_MEM_RANGES];
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +000064
65 struct cb_cmos_option_table *option_table;
66 u32 cmos_range_start;
67 u32 cmos_range_end;
68 u32 cmos_checksum_location;
Gabe Blackd3890cc2012-03-11 01:57:53 -080069 u32 vbnv_start;
70 u32 vbnv_size;
Gabe Blackd3890cc2012-03-11 01:57:53 -080071
72 char *version;
73 char *extra_version;
74 char *build;
75 char *compile_time;
76 char *compile_by;
77 char *compile_host;
78 char *compile_domain;
79 char *compiler;
80 char *linker;
81 char *assembler;
Jordan Crouse6c6e4332008-11-11 19:51:14 +000082
Mathias Krause08052012011-10-20 14:06:26 +020083 char *cb_version;
84
Stefan Reinauerb7002542010-03-25 18:56:26 +000085 struct cb_framebuffer *framebuffer;
86
Gabe Blackd3890cc2012-03-11 01:57:53 -080087 int num_gpios;
88 struct cb_gpio gpios[SYSINFO_MAX_GPIOS];
Vadim Bendeburyb7d74122014-09-22 19:36:28 -070089 int num_macs;
90 struct mac_address macs[SYSINFO_MAX_MACS];
Stephen Barberda262a632015-03-11 15:48:08 -070091 char *serialno;
Gabe Blackd3890cc2012-03-11 01:57:53 -080092
Jordan Crouse6c6e4332008-11-11 19:51:14 +000093 unsigned long *mbtable; /** Pointer to the multiboot table */
Philip Prindeville9a7c2462011-12-24 22:12:37 -070094
95 struct cb_header *header;
96 struct cb_mainboard *mainboard;
Gabe Blackd3890cc2012-03-11 01:57:53 -080097
Aaron Durbin5ca4f412013-03-07 23:22:24 -060098 void *vboot_handoff;
99 u32 vboot_handoff_size;
Gabe Blackd3890cc2012-03-11 01:57:53 -0800100 void *vdat_addr;
101 u32 vdat_size;
Aaron Durbina09760e2013-03-26 13:34:37 -0500102
Stefan Reinauer1b4d3942015-06-29 15:47:34 -0700103#if IS_ENABLED(CONFIG_LP_ARCH_X86)
Aaron Durbina09760e2013-03-26 13:34:37 -0500104 int x86_rom_var_mtrr_index;
105#endif
106
Patrick Georgi431e51e2015-03-21 11:00:07 +0100107 void *tstamp_table;
108 void *cbmem_cons;
109 void *mrc_cache;
110 void *acpi_gnvs;
Julius Werner2e029ac2017-12-05 13:43:56 -0800111
112#define UNDEFINED_STRAPPING_ID (~0)
Patrick Georgi431e51e2015-03-21 11:00:07 +0100113 u32 board_id;
114 u32 ram_code;
Julius Wernerf38a10f2017-12-05 13:49:21 -0800115 u32 sku_id;
Julius Werner2e029ac2017-12-05 13:43:56 -0800116
Patrick Georgi431e51e2015-03-21 11:00:07 +0100117 void *wifi_calibration;
118 uint64_t ramoops_buffer;
119 uint32_t ramoops_buffer_size;
Daisuke Nojiri37405462015-06-29 14:06:17 -0700120 struct {
Dan Ehrenberg6addd402015-01-08 10:29:19 -0800121 uint32_t size;
122 uint32_t sector_size;
123 uint32_t erase_cmd;
124 } spi_flash;
Patrick Georgif61b35d2015-07-14 17:15:24 +0100125 uint64_t fmap_offset;
126 uint64_t cbfs_offset;
127 uint64_t cbfs_size;
128 uint64_t boot_media_size;
Furquan Shaikh3cec8712015-06-10 20:38:48 -0700129 uint64_t mtc_start;
130 uint32_t mtc_size;
Kan Yanb6cadc62017-01-05 19:42:53 -0800131 void *chromeos_vpd;
Jordan Crousef6145c32008-03-19 23:56:58 +0000132};
133
134extern struct sysinfo_t lib_sysinfo;
Jordan Crousef6145c32008-03-19 23:56:58 +0000135
Vadim Bendebury864ec8c2014-07-31 21:02:57 -0700136/*
137 * Check if this is an architecture specific coreboot table record and process
138 * it, if it is. Return 1 if record type was recognized, 0 otherwise.
139 */
140int cb_parse_arch_specific(struct cb_record *rec, struct sysinfo_t *info);
141
142/*
143 * Check if the region in range addr..addr+len contains a 16 byte aligned
144 * coreboot table. If it does - process the table filling up the sysinfo
145 * structure with information from the table. Return 0 on success and -1 on
146 * failure.
147 */
148int cb_parse_header(void *addr, int len, struct sysinfo_t *info);
149
Jordan Crousef6145c32008-03-19 23:56:58 +0000150#endif