2008-03-20 00:56:58 +01:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 Advanced Micro Devices, Inc.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2008-04-11 20:01:50 +02:00
|
|
|
#ifndef _SYSINFO_H
|
|
|
|
#define _SYSINFO_H
|
2008-03-20 00:56:58 +01:00
|
|
|
|
2020-10-13 18:05:03 +02:00
|
|
|
#include <pci/pci.h>
|
2020-07-18 14:23:41 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2013-11-06 00:07:44 +01:00
|
|
|
/* Maximum number of memory range definitions. */
|
|
|
|
#define SYSINFO_MAX_MEM_RANGES 32
|
2012-03-11 10:57:53 +01:00
|
|
|
/* Allow a maximum of 8 GPIOs */
|
|
|
|
#define SYSINFO_MAX_GPIOS 8
|
|
|
|
|
2014-09-23 04:36:28 +02:00
|
|
|
/* Up to 10 MAC addresses */
|
|
|
|
#define SYSINFO_MAX_MACS 10
|
|
|
|
|
2020-11-26 02:15:09 +01:00
|
|
|
/* Maximum of 2 MMAP windows for decoding SPI flash. */
|
|
|
|
#define SYSINFO_MAX_MMAP_WINDOWS 2
|
|
|
|
|
2012-03-11 10:57:53 +01:00
|
|
|
#include <coreboot_tables.h>
|
2008-03-20 00:56:58 +01:00
|
|
|
|
2013-02-08 12:39:28 +01:00
|
|
|
/*
|
2020-07-18 16:29:18 +02:00
|
|
|
* This is a collection of information and pointers gathered
|
|
|
|
* mostly from the coreboot table.
|
2013-02-08 12:39:28 +01:00
|
|
|
*
|
2020-07-18 16:29:18 +02:00
|
|
|
* We do not store virtual pointers in here to avoid problems
|
|
|
|
* with self-relocating payloads.
|
2013-02-08 12:39:28 +01:00
|
|
|
*/
|
2008-03-20 00:56:58 +01:00
|
|
|
struct sysinfo_t {
|
|
|
|
unsigned int cpu_khz;
|
2020-07-18 14:54:47 +02:00
|
|
|
uintptr_t cb_serial;
|
2008-03-20 00:56:58 +01:00
|
|
|
unsigned short ser_ioport;
|
2011-04-16 02:13:17 +02:00
|
|
|
unsigned long ser_base; // for mmapped serial
|
2008-03-20 00:56:58 +01:00
|
|
|
|
|
|
|
int n_memranges;
|
|
|
|
|
2008-08-19 19:51:30 +02:00
|
|
|
struct memrange {
|
2008-03-20 00:56:58 +01:00
|
|
|
unsigned long long base;
|
|
|
|
unsigned long long size;
|
2009-05-17 22:36:45 +02:00
|
|
|
unsigned int type;
|
2008-03-20 00:56:58 +01:00
|
|
|
} memrange[SYSINFO_MAX_MEM_RANGES];
|
2008-08-07 12:21:05 +02:00
|
|
|
|
2020-07-18 14:45:23 +02:00
|
|
|
uintptr_t cmos_option_table;
|
2008-08-07 12:21:05 +02:00
|
|
|
u32 cmos_range_start;
|
|
|
|
u32 cmos_range_end;
|
|
|
|
u32 cmos_checksum_location;
|
2012-03-11 10:57:53 +01:00
|
|
|
u32 vbnv_start;
|
|
|
|
u32 vbnv_size;
|
|
|
|
|
2020-07-18 16:29:18 +02:00
|
|
|
uintptr_t version;
|
|
|
|
uintptr_t extra_version;
|
|
|
|
uintptr_t build;
|
|
|
|
uintptr_t compile_time;
|
|
|
|
uintptr_t compile_by;
|
|
|
|
uintptr_t compile_host;
|
|
|
|
uintptr_t compile_domain;
|
|
|
|
uintptr_t compiler;
|
|
|
|
uintptr_t linker;
|
|
|
|
uintptr_t assembler;
|
2008-11-11 20:51:14 +01:00
|
|
|
|
2020-07-18 16:29:18 +02:00
|
|
|
uintptr_t cb_version;
|
2011-10-20 14:06:26 +02:00
|
|
|
|
2020-07-18 15:20:00 +02:00
|
|
|
struct cb_framebuffer framebuffer;
|
2010-03-25 19:56:26 +01:00
|
|
|
|
2012-03-11 10:57:53 +01:00
|
|
|
int num_gpios;
|
|
|
|
struct cb_gpio gpios[SYSINFO_MAX_GPIOS];
|
2014-09-23 04:36:28 +02:00
|
|
|
int num_macs;
|
|
|
|
struct mac_address macs[SYSINFO_MAX_MACS];
|
2020-07-18 16:29:18 +02:00
|
|
|
uintptr_t serialno;
|
2012-03-11 10:57:53 +01:00
|
|
|
|
2008-11-11 20:51:14 +01:00
|
|
|
unsigned long *mbtable; /** Pointer to the multiboot table */
|
2011-12-25 06:12:37 +01:00
|
|
|
|
2020-07-18 16:15:42 +02:00
|
|
|
uintptr_t cb_header;
|
|
|
|
uintptr_t cb_mainboard;
|
2012-03-11 10:57:53 +01:00
|
|
|
|
2020-07-18 16:15:42 +02:00
|
|
|
uintptr_t vboot_workbuf;
|
2013-03-26 19:34:37 +01:00
|
|
|
|
2019-03-06 01:55:15 +01:00
|
|
|
#if CONFIG(LP_ARCH_X86)
|
2013-03-26 19:34:37 +01:00
|
|
|
int x86_rom_var_mtrr_index;
|
|
|
|
#endif
|
|
|
|
|
2020-07-18 16:15:42 +02:00
|
|
|
uintptr_t tstamp_table;
|
2020-07-18 14:23:41 +02:00
|
|
|
uintptr_t cbmem_cons;
|
2020-07-18 16:15:42 +02:00
|
|
|
uintptr_t mrc_cache;
|
|
|
|
uintptr_t acpi_gnvs;
|
2021-06-18 07:14:13 +02:00
|
|
|
uintptr_t acpi_cnvs;
|
2017-12-05 22:43:56 +01:00
|
|
|
|
2020-10-10 01:07:45 +02:00
|
|
|
#define UNDEFINED_STRAPPING_ID (~0)
|
|
|
|
#define UNDEFINED_FW_CONFIG ~((uint64_t)0)
|
2015-03-21 11:00:07 +01:00
|
|
|
u32 board_id;
|
|
|
|
u32 ram_code;
|
2017-12-05 22:49:21 +01:00
|
|
|
u32 sku_id;
|
2017-12-05 22:43:56 +01:00
|
|
|
|
2020-10-10 01:07:45 +02:00
|
|
|
/*
|
|
|
|
* A payload using this field is responsible for ensuring it checks its
|
|
|
|
* value against UNDEFINED_FW_CONFIG before using it.
|
|
|
|
*/
|
|
|
|
u64 fw_config;
|
|
|
|
|
2020-07-18 16:15:42 +02:00
|
|
|
uintptr_t wifi_calibration;
|
2015-03-21 11:00:07 +01:00
|
|
|
uint64_t ramoops_buffer;
|
|
|
|
uint32_t ramoops_buffer_size;
|
2015-06-29 23:06:17 +02:00
|
|
|
struct {
|
2015-01-08 19:29:19 +01:00
|
|
|
uint32_t size;
|
|
|
|
uint32_t sector_size;
|
|
|
|
uint32_t erase_cmd;
|
2020-11-26 02:15:09 +01:00
|
|
|
uint32_t mmap_window_count;
|
|
|
|
struct flash_mmap_window mmap_table[SYSINFO_MAX_MMAP_WINDOWS];
|
2015-01-08 19:29:19 +01:00
|
|
|
} spi_flash;
|
2015-07-14 18:15:24 +02:00
|
|
|
uint64_t fmap_offset;
|
|
|
|
uint64_t cbfs_offset;
|
|
|
|
uint64_t cbfs_size;
|
|
|
|
uint64_t boot_media_size;
|
2015-06-11 05:38:48 +02:00
|
|
|
uint64_t mtc_start;
|
|
|
|
uint32_t mtc_size;
|
2020-07-18 16:15:42 +02:00
|
|
|
uintptr_t chromeos_vpd;
|
|
|
|
int mmc_early_wake_status;
|
2019-09-27 09:02:25 +02:00
|
|
|
|
|
|
|
/* Pointer to FMAP cache in CBMEM */
|
2020-07-18 16:15:42 +02:00
|
|
|
uintptr_t fmap_cache;
|
2020-10-13 18:05:03 +02:00
|
|
|
|
|
|
|
#if CONFIG(LP_PCI)
|
|
|
|
struct pci_access pacc;
|
|
|
|
#endif
|
2021-10-01 22:12:59 +02:00
|
|
|
/* USB Type-C Port Configuration Info */
|
|
|
|
uintptr_t type_c_info;
|
2008-03-20 00:56:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct sysinfo_t lib_sysinfo;
|
|
|
|
|
2014-08-01 06:02:57 +02:00
|
|
|
/*
|
|
|
|
* Check if this is an architecture specific coreboot table record and process
|
|
|
|
* it, if it is. Return 1 if record type was recognized, 0 otherwise.
|
|
|
|
*/
|
|
|
|
int cb_parse_arch_specific(struct cb_record *rec, struct sysinfo_t *info);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check if the region in range addr..addr+len contains a 16 byte aligned
|
|
|
|
* coreboot table. If it does - process the table filling up the sysinfo
|
|
|
|
* structure with information from the table. Return 0 on success and -1 on
|
|
|
|
* failure.
|
|
|
|
*/
|
|
|
|
int cb_parse_header(void *addr, int len, struct sysinfo_t *info);
|
|
|
|
|
2008-03-20 00:56:58 +01:00
|
|
|
#endif
|