2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2015-04-24 10:10:04 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
|
|
|
|
*/
|
|
|
|
|
2021-05-15 16:07:47 +00:00
|
|
|
#define LOG_CATEGORY LOGC_BOARD
|
|
|
|
|
2015-04-24 10:10:04 +00:00
|
|
|
#include <common.h>
|
2020-11-04 16:57:25 +00:00
|
|
|
#include <bloblist.h>
|
2020-07-17 03:22:31 +00:00
|
|
|
#include <log.h>
|
2020-02-03 14:36:16 +00:00
|
|
|
#include <malloc.h>
|
2016-08-18 23:23:23 +00:00
|
|
|
#include <smbios.h>
|
2020-04-08 22:57:36 +00:00
|
|
|
#include <acpi/acpi_table.h>
|
2020-10-31 03:38:53 +00:00
|
|
|
#include <asm/global_data.h>
|
2015-04-29 02:25:10 +00:00
|
|
|
#include <asm/sfi.h>
|
2015-06-23 04:18:52 +00:00
|
|
|
#include <asm/mpspec.h>
|
2015-04-24 10:10:04 +00:00
|
|
|
#include <asm/tables.h>
|
2016-02-29 07:54:50 +00:00
|
|
|
#include <asm/coreboot_tables.h>
|
2015-04-24 10:10:04 +00:00
|
|
|
|
2020-11-04 16:57:25 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2016-02-28 06:58:01 +00:00
|
|
|
/**
|
|
|
|
* Function prototype to write a specific configuration table
|
|
|
|
*
|
|
|
|
* @addr: start address to write the table
|
|
|
|
* @return: end address of the table
|
|
|
|
*/
|
2017-01-16 14:03:35 +00:00
|
|
|
typedef ulong (*table_write)(ulong addr);
|
2016-02-28 06:58:01 +00:00
|
|
|
|
2020-07-17 03:22:31 +00:00
|
|
|
/**
|
|
|
|
* struct table_info - Information about each table to write
|
|
|
|
*
|
|
|
|
* @name: Name of table (for debugging)
|
|
|
|
* @write: Function to call to write this table
|
2020-11-04 16:57:25 +00:00
|
|
|
* @tag: Bloblist tag if using CONFIG_BLOBLIST_TABLES
|
|
|
|
* @size: Maximum table size
|
|
|
|
* @align: Table alignment in bytes
|
2020-07-17 03:22:31 +00:00
|
|
|
*/
|
|
|
|
struct table_info {
|
|
|
|
const char *name;
|
|
|
|
table_write write;
|
2020-11-04 16:57:25 +00:00
|
|
|
enum bloblist_tag_t tag;
|
|
|
|
int size;
|
|
|
|
int align;
|
2020-07-17 03:22:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct table_info table_list[] = {
|
2016-02-28 06:58:01 +00:00
|
|
|
#ifdef CONFIG_GENERATE_PIRQ_TABLE
|
2020-07-17 03:22:31 +00:00
|
|
|
{ "pirq", write_pirq_routing_table },
|
2016-02-28 06:58:01 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_GENERATE_SFI_TABLE
|
2020-07-17 03:22:31 +00:00
|
|
|
{ "sfi", write_sfi_table, },
|
2016-02-28 06:58:01 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_GENERATE_MP_TABLE
|
2020-07-17 03:22:31 +00:00
|
|
|
{ "mp", write_mp_table, },
|
2016-02-28 06:58:01 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_GENERATE_ACPI_TABLE
|
2020-11-04 16:57:25 +00:00
|
|
|
{ "acpi", write_acpi_tables, BLOBLISTT_ACPI_TABLES, 0x10000, 0x1000},
|
2016-02-28 06:58:01 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_GENERATE_SMBIOS_TABLE
|
2020-11-04 16:57:25 +00:00
|
|
|
{ "smbios", write_smbios_table, BLOBLISTT_SMBIOS_TABLES, 0x1000, 0x100},
|
2016-02-28 06:58:01 +00:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2015-06-23 04:18:51 +00:00
|
|
|
void table_fill_string(char *dest, const char *src, size_t n, char pad)
|
|
|
|
{
|
|
|
|
int start, len;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
strncpy(dest, src, n);
|
|
|
|
|
|
|
|
/* Fill the remaining bytes with pad */
|
|
|
|
len = strlen(src);
|
|
|
|
start = len < n ? len : n;
|
|
|
|
for (i = start; i < n; i++)
|
|
|
|
dest[i] = pad;
|
|
|
|
}
|
|
|
|
|
2020-11-04 16:57:18 +00:00
|
|
|
int write_tables(void)
|
2015-04-24 10:10:04 +00:00
|
|
|
{
|
2020-11-04 16:57:25 +00:00
|
|
|
u32 rom_table_start;
|
2016-02-28 06:58:01 +00:00
|
|
|
u32 rom_table_end;
|
2016-02-28 06:58:02 +00:00
|
|
|
u32 high_table, table_size;
|
2020-07-17 03:22:31 +00:00
|
|
|
struct memory_area cfg_tables[ARRAY_SIZE(table_list) + 1];
|
2016-02-28 06:58:01 +00:00
|
|
|
int i;
|
2015-04-24 10:10:04 +00:00
|
|
|
|
2020-11-04 16:57:25 +00:00
|
|
|
rom_table_start = ROM_TABLE_ADDR;
|
|
|
|
|
2020-07-17 03:22:31 +00:00
|
|
|
debug("Writing tables to %x:\n", rom_table_start);
|
|
|
|
for (i = 0; i < ARRAY_SIZE(table_list); i++) {
|
|
|
|
const struct table_info *table = &table_list[i];
|
2020-11-04 16:57:25 +00:00
|
|
|
int size = table->size ? : CONFIG_ROM_TABLE_SIZE;
|
2020-07-17 03:22:31 +00:00
|
|
|
|
2020-11-04 16:57:25 +00:00
|
|
|
if (IS_ENABLED(CONFIG_BLOBLIST_TABLES) && table->tag) {
|
|
|
|
rom_table_start = (ulong)bloblist_add(table->tag, size,
|
|
|
|
table->align);
|
|
|
|
if (!rom_table_start)
|
|
|
|
return log_msg_ret("bloblist", -ENOBUFS);
|
|
|
|
}
|
2020-07-17 03:22:31 +00:00
|
|
|
rom_table_end = table->write(rom_table_start);
|
2021-05-15 16:07:47 +00:00
|
|
|
if (!rom_table_end) {
|
|
|
|
log_err("Can't create configuration table %d\n", i);
|
|
|
|
return -EINTR;
|
|
|
|
}
|
2016-02-28 06:58:02 +00:00
|
|
|
|
2020-11-04 16:57:24 +00:00
|
|
|
if (IS_ENABLED(CONFIG_SEABIOS)) {
|
|
|
|
table_size = rom_table_end - rom_table_start;
|
|
|
|
high_table = (u32)(ulong)high_table_malloc(table_size);
|
|
|
|
if (high_table) {
|
2021-05-15 16:07:47 +00:00
|
|
|
if (!table->write(high_table)) {
|
|
|
|
log_err("Can't create configuration table %d\n",
|
|
|
|
i);
|
|
|
|
return -EINTR;
|
|
|
|
}
|
2020-11-04 16:57:24 +00:00
|
|
|
|
|
|
|
cfg_tables[i].start = high_table;
|
|
|
|
cfg_tables[i].size = table_size;
|
|
|
|
} else {
|
|
|
|
printf("%d: no memory for configuration tables\n",
|
|
|
|
i);
|
|
|
|
return -ENOSPC;
|
|
|
|
}
|
2016-02-28 06:58:02 +00:00
|
|
|
}
|
|
|
|
|
2020-07-17 03:22:31 +00:00
|
|
|
debug("- wrote '%s' to %x, end %x\n", table->name,
|
|
|
|
rom_table_start, rom_table_end);
|
2020-11-04 16:57:25 +00:00
|
|
|
if (rom_table_end - rom_table_start > size) {
|
|
|
|
log_err("Out of space for configuration tables: need %x, have %x\n",
|
|
|
|
rom_table_end - rom_table_start, size);
|
|
|
|
return log_msg_ret("bloblist", -ENOSPC);
|
|
|
|
}
|
2016-02-28 06:58:01 +00:00
|
|
|
rom_table_start = rom_table_end;
|
|
|
|
}
|
2016-02-29 07:54:50 +00:00
|
|
|
|
2020-11-04 16:57:24 +00:00
|
|
|
if (IS_ENABLED(CONFIG_SEABIOS)) {
|
|
|
|
/* make sure the last item is zero */
|
|
|
|
cfg_tables[i].size = 0;
|
|
|
|
write_coreboot_table(CB_TABLE_ADDR, cfg_tables);
|
|
|
|
}
|
|
|
|
|
2020-11-04 16:57:25 +00:00
|
|
|
if (IS_ENABLED(CONFIG_BLOBLIST_TABLES)) {
|
|
|
|
void *ptr = (void *)CONFIG_ROM_TABLE_ADDR;
|
|
|
|
|
|
|
|
/* Write an RSDP pointing to the tables */
|
|
|
|
if (IS_ENABLED(CONFIG_GENERATE_ACPI_TABLE)) {
|
|
|
|
struct acpi_ctx *ctx = gd_acpi_ctx();
|
|
|
|
|
|
|
|
acpi_write_rsdp(ptr, ctx->rsdt, ctx->xsdt);
|
|
|
|
ptr += ALIGN(sizeof(struct acpi_rsdp), 16);
|
|
|
|
}
|
|
|
|
if (IS_ENABLED(CONFIG_GENERATE_SMBIOS_TABLE)) {
|
|
|
|
void *smbios;
|
|
|
|
|
|
|
|
smbios = bloblist_find(BLOBLISTT_SMBIOS_TABLES, 0);
|
|
|
|
if (!smbios)
|
|
|
|
return log_msg_ret("smbios", -ENOENT);
|
|
|
|
memcpy(ptr, smbios, sizeof(struct smbios_entry));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-17 03:22:31 +00:00
|
|
|
debug("- done writing tables\n");
|
2020-11-04 16:57:18 +00:00
|
|
|
|
|
|
|
return 0;
|
2015-04-24 10:10:04 +00:00
|
|
|
}
|