blob: c3d8c7fd53312d9e082494859d1cef18f57b698b [file] [log] [blame]
Jordan Crousef6145c32008-03-19 23:56:58 +00001/*
Jordan Crousef6145c32008-03-19 23:56:58 +00002 *
3 * Copyright (C) 2008 Advanced Micro Devices, Inc.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. The name of the author may not be used to endorse or promote products
14 * derived from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
28
Uwe Hermannfad8c2b2008-04-11 18:01:50 +000029#ifndef _SYSINFO_H
30#define _SYSINFO_H
Jordan Crousef6145c32008-03-19 23:56:58 +000031
Nico Huber14adb7e2020-07-18 14:23:41 +020032#include <stdint.h>
33
Aaron Durbin8449b5e2013-11-05 17:07:44 -060034/* Maximum number of memory range definitions. */
35#define SYSINFO_MAX_MEM_RANGES 32
Gabe Blackd3890cc2012-03-11 01:57:53 -080036/* Allow a maximum of 8 GPIOs */
37#define SYSINFO_MAX_GPIOS 8
38
Vadim Bendeburyb7d74122014-09-22 19:36:28 -070039/* Up to 10 MAC addresses */
40#define SYSINFO_MAX_MACS 10
41
Gabe Blackd3890cc2012-03-11 01:57:53 -080042#include <coreboot_tables.h>
Jordan Crousef6145c32008-03-19 23:56:58 +000043
Gabe Black5ab20052012-08-28 16:38:34 -070044struct cb_serial;
45
Nico Huberd1cc8122013-02-08 12:39:28 +010046/*
47 * All pointers in here shall be virtual.
48 *
49 * If a relocation happens after the last call to lib_get_sysinfo(),
50 * it is up to the user to call lib_get_sysinfo() again.
51 */
Jordan Crousef6145c32008-03-19 23:56:58 +000052struct sysinfo_t {
53 unsigned int cpu_khz;
Gabe Black5ab20052012-08-28 16:38:34 -070054 struct cb_serial *serial;
Jordan Crousef6145c32008-03-19 23:56:58 +000055 unsigned short ser_ioport;
Stefan Reinauer4e677312011-04-16 00:13:17 +000056 unsigned long ser_base; // for mmapped serial
Jordan Crousef6145c32008-03-19 23:56:58 +000057
58 int n_memranges;
59
Stefan Reinauer34b9f862008-08-19 17:51:30 +000060 struct memrange {
Jordan Crousef6145c32008-03-19 23:56:58 +000061 unsigned long long base;
62 unsigned long long size;
Patrick Georgic9a6f0f2009-05-17 20:36:45 +000063 unsigned int type;
Jordan Crousef6145c32008-03-19 23:56:58 +000064 } memrange[SYSINFO_MAX_MEM_RANGES];
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +000065
Nico Huberb2eafa62020-07-18 14:45:23 +020066 uintptr_t cmos_option_table;
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +000067 u32 cmos_range_start;
68 u32 cmos_range_end;
69 u32 cmos_checksum_location;
Gabe Blackd3890cc2012-03-11 01:57:53 -080070 u32 vbnv_start;
71 u32 vbnv_size;
Gabe Blackd3890cc2012-03-11 01:57:53 -080072
73 char *version;
74 char *extra_version;
75 char *build;
76 char *compile_time;
77 char *compile_by;
78 char *compile_host;
79 char *compile_domain;
80 char *compiler;
81 char *linker;
82 char *assembler;
Jordan Crouse6c6e4332008-11-11 19:51:14 +000083
Mathias Krause08052012011-10-20 14:06:26 +020084 char *cb_version;
85
Stefan Reinauerb7002542010-03-25 18:56:26 +000086 struct cb_framebuffer *framebuffer;
87
Gabe Blackd3890cc2012-03-11 01:57:53 -080088 int num_gpios;
89 struct cb_gpio gpios[SYSINFO_MAX_GPIOS];
Vadim Bendeburyb7d74122014-09-22 19:36:28 -070090 int num_macs;
91 struct mac_address macs[SYSINFO_MAX_MACS];
Stephen Barberda262a632015-03-11 15:48:08 -070092 char *serialno;
Gabe Blackd3890cc2012-03-11 01:57:53 -080093
Jordan Crouse6c6e4332008-11-11 19:51:14 +000094 unsigned long *mbtable; /** Pointer to the multiboot table */
Philip Prindeville9a7c2462011-12-24 22:12:37 -070095
96 struct cb_header *header;
97 struct cb_mainboard *mainboard;
Gabe Blackd3890cc2012-03-11 01:57:53 -080098
Joel Kitching8d0f5992019-03-13 18:10:52 +080099 void *vboot_workbuf;
Aaron Durbina09760e2013-03-26 13:34:37 -0500100
Julius Wernereab2a292019-03-05 16:55:15 -0800101#if CONFIG(LP_ARCH_X86)
Aaron Durbina09760e2013-03-26 13:34:37 -0500102 int x86_rom_var_mtrr_index;
103#endif
104
Patrick Georgi431e51e2015-03-21 11:00:07 +0100105 void *tstamp_table;
Nico Huber14adb7e2020-07-18 14:23:41 +0200106 uintptr_t cbmem_cons;
Patrick Georgi431e51e2015-03-21 11:00:07 +0100107 void *mrc_cache;
108 void *acpi_gnvs;
Julius Werner2e029ac2017-12-05 13:43:56 -0800109
110#define UNDEFINED_STRAPPING_ID (~0)
Patrick Georgi431e51e2015-03-21 11:00:07 +0100111 u32 board_id;
112 u32 ram_code;
Julius Wernerf38a10f2017-12-05 13:49:21 -0800113 u32 sku_id;
Julius Werner2e029ac2017-12-05 13:43:56 -0800114
Patrick Georgi431e51e2015-03-21 11:00:07 +0100115 void *wifi_calibration;
116 uint64_t ramoops_buffer;
117 uint32_t ramoops_buffer_size;
Daisuke Nojiri37405462015-06-29 14:06:17 -0700118 struct {
Dan Ehrenberg6addd402015-01-08 10:29:19 -0800119 uint32_t size;
120 uint32_t sector_size;
121 uint32_t erase_cmd;
122 } spi_flash;
Patrick Georgif61b35d2015-07-14 17:15:24 +0100123 uint64_t fmap_offset;
124 uint64_t cbfs_offset;
125 uint64_t cbfs_size;
126 uint64_t boot_media_size;
Furquan Shaikh3cec8712015-06-10 20:38:48 -0700127 uint64_t mtc_start;
128 uint32_t mtc_size;
Kan Yanb6cadc62017-01-05 19:42:53 -0800129 void *chromeos_vpd;
Bora Guvendikddf2bc52018-03-30 16:03:32 -0700130 int mmc_early_wake_status;
Furquan Shaikh3d4923d2019-09-27 00:02:25 -0700131
132 /* Pointer to FMAP cache in CBMEM */
133 void *fmap_cache;
Jordan Crousef6145c32008-03-19 23:56:58 +0000134};
135
136extern struct sysinfo_t lib_sysinfo;
Jordan Crousef6145c32008-03-19 23:56:58 +0000137
Vadim Bendebury864ec8c2014-07-31 21:02:57 -0700138/*
139 * Check if this is an architecture specific coreboot table record and process
140 * it, if it is. Return 1 if record type was recognized, 0 otherwise.
141 */
142int cb_parse_arch_specific(struct cb_record *rec, struct sysinfo_t *info);
143
144/*
145 * Check if the region in range addr..addr+len contains a 16 byte aligned
146 * coreboot table. If it does - process the table filling up the sysinfo
147 * structure with information from the table. Return 0 on success and -1 on
148 * failure.
149 */
150int cb_parse_header(void *addr, int len, struct sysinfo_t *info);
151
Jordan Crousef6145c32008-03-19 23:56:58 +0000152#endif