blob: cbfc7bf91b18213f5cb0bb693e90b9783f5de37a [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
Felix Singer9e5bc742020-10-13 18:05:03 +020032#include <pci/pci.h>
Nico Huber14adb7e2020-07-18 14:23:41 +020033#include <stdint.h>
34
Aaron Durbin8449b5e2013-11-05 17:07:44 -060035/* Maximum number of memory range definitions. */
36#define SYSINFO_MAX_MEM_RANGES 32
Gabe Blackd3890cc2012-03-11 01:57:53 -080037/* Allow a maximum of 8 GPIOs */
38#define SYSINFO_MAX_GPIOS 8
39
Vadim Bendeburyb7d74122014-09-22 19:36:28 -070040/* Up to 10 MAC addresses */
41#define SYSINFO_MAX_MACS 10
42
Furquan Shaikh493937e2020-11-25 17:15:09 -080043/* Maximum of 2 MMAP windows for decoding SPI flash. */
44#define SYSINFO_MAX_MMAP_WINDOWS 2
45
Gabe Blackd3890cc2012-03-11 01:57:53 -080046#include <coreboot_tables.h>
Jordan Crousef6145c32008-03-19 23:56:58 +000047
Nico Huberd1cc8122013-02-08 12:39:28 +010048/*
Nico Huber4a732522020-07-18 16:29:18 +020049 * This is a collection of information and pointers gathered
50 * mostly from the coreboot table.
Nico Huberd1cc8122013-02-08 12:39:28 +010051 *
Nico Huber4a732522020-07-18 16:29:18 +020052 * We do not store virtual pointers in here to avoid problems
53 * with self-relocating payloads.
Nico Huberd1cc8122013-02-08 12:39:28 +010054 */
Jordan Crousef6145c32008-03-19 23:56:58 +000055struct sysinfo_t {
56 unsigned int cpu_khz;
Nico Huberbe842cb2020-07-18 14:54:47 +020057 uintptr_t cb_serial;
Jordan Crousef6145c32008-03-19 23:56:58 +000058 unsigned short ser_ioport;
Stefan Reinauer4e677312011-04-16 00:13:17 +000059 unsigned long ser_base; // for mmapped serial
Jordan Crousef6145c32008-03-19 23:56:58 +000060
61 int n_memranges;
62
Stefan Reinauer34b9f862008-08-19 17:51:30 +000063 struct memrange {
Jordan Crousef6145c32008-03-19 23:56:58 +000064 unsigned long long base;
65 unsigned long long size;
Patrick Georgic9a6f0f2009-05-17 20:36:45 +000066 unsigned int type;
Jordan Crousef6145c32008-03-19 23:56:58 +000067 } memrange[SYSINFO_MAX_MEM_RANGES];
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +000068
Nico Huberb2eafa62020-07-18 14:45:23 +020069 uintptr_t cmos_option_table;
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +000070 u32 cmos_range_start;
71 u32 cmos_range_end;
72 u32 cmos_checksum_location;
Gabe Blackd3890cc2012-03-11 01:57:53 -080073 u32 vbnv_start;
74 u32 vbnv_size;
Gabe Blackd3890cc2012-03-11 01:57:53 -080075
Nico Huber4a732522020-07-18 16:29:18 +020076 uintptr_t version;
77 uintptr_t extra_version;
78 uintptr_t build;
79 uintptr_t compile_time;
80 uintptr_t compile_by;
81 uintptr_t compile_host;
82 uintptr_t compile_domain;
83 uintptr_t compiler;
84 uintptr_t linker;
85 uintptr_t assembler;
Ravi Kumar Bokka42fcb2a2021-11-10 05:22:47 +053086 uintptr_t mem_chip_base;
Jianjun Wangd16c2aa2022-03-31 15:34:34 +080087 uintptr_t pcie_ctrl_base; /* Base address of PCIe controller */
Jordan Crouse6c6e4332008-11-11 19:51:14 +000088
Nico Huber4a732522020-07-18 16:29:18 +020089 uintptr_t cb_version;
Mathias Krause08052012011-10-20 14:06:26 +020090
Nico Huber5e0db582020-07-18 15:20:00 +020091 struct cb_framebuffer framebuffer;
Stefan Reinauerb7002542010-03-25 18:56:26 +000092
Gabe Blackd3890cc2012-03-11 01:57:53 -080093 int num_gpios;
94 struct cb_gpio gpios[SYSINFO_MAX_GPIOS];
Vadim Bendeburyb7d74122014-09-22 19:36:28 -070095 int num_macs;
96 struct mac_address macs[SYSINFO_MAX_MACS];
Nico Huber4a732522020-07-18 16:29:18 +020097 uintptr_t serialno;
Gabe Blackd3890cc2012-03-11 01:57:53 -080098
Jordan Crouse6c6e4332008-11-11 19:51:14 +000099 unsigned long *mbtable; /** Pointer to the multiboot table */
Philip Prindeville9a7c2462011-12-24 22:12:37 -0700100
Nico Huber12faea32020-07-18 16:15:42 +0200101 uintptr_t cb_header;
102 uintptr_t cb_mainboard;
Gabe Blackd3890cc2012-03-11 01:57:53 -0800103
Nico Huberbea01e32020-07-18 16:15:42 +0200104 uintptr_t vboot_workbuf;
Aaron Durbina09760e2013-03-26 13:34:37 -0500105
Julius Wernereab2a292019-03-05 16:55:15 -0800106#if CONFIG(LP_ARCH_X86)
Aaron Durbina09760e2013-03-26 13:34:37 -0500107 int x86_rom_var_mtrr_index;
108#endif
109
Nico Huberbea01e32020-07-18 16:15:42 +0200110 uintptr_t tstamp_table;
Nico Huber14adb7e2020-07-18 14:23:41 +0200111 uintptr_t cbmem_cons;
Nico Huberbea01e32020-07-18 16:15:42 +0200112 uintptr_t mrc_cache;
113 uintptr_t acpi_gnvs;
Furquan Shaikhbda86bd2021-06-17 22:14:13 -0700114 uintptr_t acpi_cnvs;
Arthur Heymanscddba452022-03-03 22:59:23 +0100115 uintptr_t acpi_rsdp;
Maximilian Brune676ef5b2023-08-07 19:50:43 +0200116 uintptr_t smbios;
Eran Mitrani5fccf362024-06-03 17:23:32 -0700117 uintptr_t cse_bp_info;
118 uintptr_t cse_info;
Julius Werner2e029ac2017-12-05 13:43:56 -0800119
Tim Wawrzynczake1a7a262020-10-09 17:07:45 -0600120#define UNDEFINED_STRAPPING_ID (~0)
121#define UNDEFINED_FW_CONFIG ~((uint64_t)0)
Patrick Georgi431e51e2015-03-21 11:00:07 +0100122 u32 board_id;
123 u32 ram_code;
Julius Wernerf38a10f2017-12-05 13:49:21 -0800124 u32 sku_id;
Julius Werner2e029ac2017-12-05 13:43:56 -0800125
Tim Wawrzynczake1a7a262020-10-09 17:07:45 -0600126 /*
127 * A payload using this field is responsible for ensuring it checks its
128 * value against UNDEFINED_FW_CONFIG before using it.
129 */
130 u64 fw_config;
131
Nico Huberbea01e32020-07-18 16:15:42 +0200132 uintptr_t wifi_calibration;
Patrick Georgi431e51e2015-03-21 11:00:07 +0100133 uint64_t ramoops_buffer;
134 uint32_t ramoops_buffer_size;
Daisuke Nojiri37405462015-06-29 14:06:17 -0700135 struct {
Dan Ehrenberg6addd402015-01-08 10:29:19 -0800136 uint32_t size;
137 uint32_t sector_size;
138 uint32_t erase_cmd;
Furquan Shaikh493937e2020-11-25 17:15:09 -0800139 uint32_t mmap_window_count;
140 struct flash_mmap_window mmap_table[SYSINFO_MAX_MMAP_WINDOWS];
Dan Ehrenberg6addd402015-01-08 10:29:19 -0800141 } spi_flash;
Patrick Georgif61b35d2015-07-14 17:15:24 +0100142 uint64_t fmap_offset;
143 uint64_t cbfs_offset;
144 uint64_t cbfs_size;
145 uint64_t boot_media_size;
Furquan Shaikh3cec8712015-06-10 20:38:48 -0700146 uint64_t mtc_start;
147 uint32_t mtc_size;
Nico Huberbea01e32020-07-18 16:15:42 +0200148 uintptr_t chromeos_vpd;
149 int mmc_early_wake_status;
Furquan Shaikh3d4923d2019-09-27 00:02:25 -0700150
151 /* Pointer to FMAP cache in CBMEM */
Nico Huberbea01e32020-07-18 16:15:42 +0200152 uintptr_t fmap_cache;
Felix Singer9e5bc742020-10-13 18:05:03 +0200153
154#if CONFIG(LP_PCI)
155 struct pci_access pacc;
156#endif
Nick Vaccaroa62b4182021-10-01 13:12:59 -0700157 /* USB Type-C Port Configuration Info */
158 uintptr_t type_c_info;
Jakub Czapiga2f236c22021-11-10 14:04:43 +0000159
160 /* CBFS RW/RO Metadata Cache */
161 uintptr_t cbfs_ro_mcache_offset;
162 uint32_t cbfs_ro_mcache_size;
163 uintptr_t cbfs_rw_mcache_offset;
164 uint32_t cbfs_rw_mcache_size;
Jordan Crousef6145c32008-03-19 23:56:58 +0000165};
166
167extern struct sysinfo_t lib_sysinfo;
Jordan Crousef6145c32008-03-19 23:56:58 +0000168
Vadim Bendebury864ec8c2014-07-31 21:02:57 -0700169/*
170 * Check if this is an architecture specific coreboot table record and process
171 * it, if it is. Return 1 if record type was recognized, 0 otherwise.
172 */
173int cb_parse_arch_specific(struct cb_record *rec, struct sysinfo_t *info);
174
175/*
176 * Check if the region in range addr..addr+len contains a 16 byte aligned
177 * coreboot table. If it does - process the table filling up the sysinfo
178 * structure with information from the table. Return 0 on success and -1 on
179 * failure.
180 */
181int cb_parse_header(void *addr, int len, struct sysinfo_t *info);
182
Jordan Crousef6145c32008-03-19 23:56:58 +0000183#endif