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>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.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>
|
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
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
struct table_info {
|
|
|
|
const char *name;
|
|
|
|
table_write write;
|
|
|
|
};
|
|
|
|
|
|
|
|
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-07-17 03:22:31 +00:00
|
|
|
{ "acpi", write_acpi_tables, },
|
2016-02-28 06:58:01 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_GENERATE_SMBIOS_TABLE
|
2020-07-17 03:22:31 +00:00
|
|
|
{ "smbios", write_smbios_table, },
|
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;
|
|
|
|
}
|
|
|
|
|
2015-04-24 10:10:04 +00:00
|
|
|
void write_tables(void)
|
|
|
|
{
|
2016-02-28 06:58:01 +00:00
|
|
|
u32 rom_table_start = ROM_TABLE_ADDR;
|
|
|
|
u32 rom_table_end;
|
2016-02-29 07:54:50 +00:00
|
|
|
#ifdef CONFIG_SEABIOS
|
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-29 07:54:50 +00:00
|
|
|
#endif
|
2016-02-28 06:58:01 +00:00
|
|
|
int i;
|
2015-04-24 10:10:04 +00:00
|
|
|
|
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];
|
|
|
|
|
|
|
|
rom_table_end = table->write(rom_table_start);
|
2016-02-28 06:58:01 +00:00
|
|
|
rom_table_end = ALIGN(rom_table_end, ROM_TABLE_ALIGN);
|
2016-02-28 06:58:02 +00:00
|
|
|
|
2016-02-29 07:54:50 +00:00
|
|
|
#ifdef CONFIG_SEABIOS
|
2016-02-28 06:58:02 +00:00
|
|
|
table_size = rom_table_end - rom_table_start;
|
2016-05-11 14:45:02 +00:00
|
|
|
high_table = (u32)high_table_malloc(table_size);
|
2016-02-28 06:58:02 +00:00
|
|
|
if (high_table) {
|
2020-07-17 03:22:31 +00:00
|
|
|
table->write(high_table);
|
2016-02-29 07:54:50 +00:00
|
|
|
|
|
|
|
cfg_tables[i].start = high_table;
|
|
|
|
cfg_tables[i].size = table_size;
|
2016-02-28 06:58:02 +00:00
|
|
|
} else {
|
|
|
|
printf("%d: no memory for configuration tables\n", i);
|
|
|
|
}
|
2016-02-29 07:54:50 +00:00
|
|
|
#endif
|
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);
|
2016-02-28 06:58:01 +00:00
|
|
|
rom_table_start = rom_table_end;
|
|
|
|
}
|
2016-02-29 07:54:50 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_SEABIOS
|
|
|
|
/* make sure the last item is zero */
|
|
|
|
cfg_tables[i].size = 0;
|
|
|
|
write_coreboot_table(CB_TABLE_ADDR, cfg_tables);
|
|
|
|
#endif
|
2020-07-17 03:22:31 +00:00
|
|
|
debug("- done writing tables\n");
|
2015-04-24 10:10:04 +00:00
|
|
|
}
|