Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Bin Meng | f17cea6 | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com> |
Bin Meng | f17cea6 | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 4 | */ |
| 5 | |
Heinrich Schuchardt | 21da91f | 2021-05-15 18:07:47 +0200 | [diff] [blame] | 6 | #define LOG_CATEGORY LOGC_BOARD |
| 7 | |
Bin Meng | f17cea6 | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 8 | #include <common.h> |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 9 | #include <bloblist.h> |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 10 | #include <log.h> |
Simon Glass | 9bc1564 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 11 | #include <malloc.h> |
Alexander Graf | fb22808 | 2016-08-19 01:23:23 +0200 | [diff] [blame] | 12 | #include <smbios.h> |
Simon Glass | 858fed1 | 2020-04-08 16:57:36 -0600 | [diff] [blame] | 13 | #include <acpi/acpi_table.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 14 | #include <asm/global_data.h> |
Simon Glass | 07e922a | 2015-04-28 20:25:10 -0600 | [diff] [blame] | 15 | #include <asm/sfi.h> |
Bin Meng | c4f407e | 2015-06-23 12:18:52 +0800 | [diff] [blame] | 16 | #include <asm/mpspec.h> |
Bin Meng | f17cea6 | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 17 | #include <asm/tables.h> |
Bin Meng | 96030fa | 2016-02-28 23:54:50 -0800 | [diff] [blame] | 18 | #include <asm/coreboot_tables.h> |
Bin Meng | f17cea6 | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 19 | |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 20 | DECLARE_GLOBAL_DATA_PTR; |
| 21 | |
Bin Meng | ef47ed1 | 2016-02-27 22:58:01 -0800 | [diff] [blame] | 22 | /** |
| 23 | * Function prototype to write a specific configuration table |
| 24 | * |
| 25 | * @addr: start address to write the table |
| 26 | * @return: end address of the table |
| 27 | */ |
Simon Glass | ca37a39 | 2017-01-16 07:03:35 -0700 | [diff] [blame] | 28 | typedef ulong (*table_write)(ulong addr); |
Bin Meng | ef47ed1 | 2016-02-27 22:58:01 -0800 | [diff] [blame] | 29 | |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 30 | /** |
| 31 | * struct table_info - Information about each table to write |
| 32 | * |
| 33 | * @name: Name of table (for debugging) |
| 34 | * @write: Function to call to write this table |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 35 | * @tag: Bloblist tag if using CONFIG_BLOBLIST_TABLES |
| 36 | * @size: Maximum table size |
| 37 | * @align: Table alignment in bytes |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 38 | */ |
| 39 | struct table_info { |
| 40 | const char *name; |
| 41 | table_write write; |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 42 | enum bloblist_tag_t tag; |
| 43 | int size; |
| 44 | int align; |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 45 | }; |
| 46 | |
| 47 | static struct table_info table_list[] = { |
Bin Meng | ef47ed1 | 2016-02-27 22:58:01 -0800 | [diff] [blame] | 48 | #ifdef CONFIG_GENERATE_PIRQ_TABLE |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 49 | { "pirq", write_pirq_routing_table }, |
Bin Meng | ef47ed1 | 2016-02-27 22:58:01 -0800 | [diff] [blame] | 50 | #endif |
| 51 | #ifdef CONFIG_GENERATE_SFI_TABLE |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 52 | { "sfi", write_sfi_table, }, |
Bin Meng | ef47ed1 | 2016-02-27 22:58:01 -0800 | [diff] [blame] | 53 | #endif |
| 54 | #ifdef CONFIG_GENERATE_MP_TABLE |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 55 | { "mp", write_mp_table, }, |
Bin Meng | ef47ed1 | 2016-02-27 22:58:01 -0800 | [diff] [blame] | 56 | #endif |
| 57 | #ifdef CONFIG_GENERATE_ACPI_TABLE |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 58 | { "acpi", write_acpi_tables, BLOBLISTT_ACPI_TABLES, 0x10000, 0x1000}, |
Bin Meng | ef47ed1 | 2016-02-27 22:58:01 -0800 | [diff] [blame] | 59 | #endif |
| 60 | #ifdef CONFIG_GENERATE_SMBIOS_TABLE |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 61 | { "smbios", write_smbios_table, BLOBLISTT_SMBIOS_TABLES, 0x1000, 0x100}, |
Bin Meng | ef47ed1 | 2016-02-27 22:58:01 -0800 | [diff] [blame] | 62 | #endif |
| 63 | }; |
| 64 | |
Bin Meng | f91cf6b | 2015-06-23 12:18:51 +0800 | [diff] [blame] | 65 | void table_fill_string(char *dest, const char *src, size_t n, char pad) |
| 66 | { |
| 67 | int start, len; |
| 68 | int i; |
| 69 | |
| 70 | strncpy(dest, src, n); |
| 71 | |
| 72 | /* Fill the remaining bytes with pad */ |
| 73 | len = strlen(src); |
| 74 | start = len < n ? len : n; |
| 75 | for (i = start; i < n; i++) |
| 76 | dest[i] = pad; |
| 77 | } |
| 78 | |
Simon Glass | e50129a | 2020-11-04 09:57:18 -0700 | [diff] [blame] | 79 | int write_tables(void) |
Bin Meng | f17cea6 | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 80 | { |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 81 | u32 rom_table_start; |
Bin Meng | ef47ed1 | 2016-02-27 22:58:01 -0800 | [diff] [blame] | 82 | u32 rom_table_end; |
Bin Meng | ca68d77 | 2016-02-27 22:58:02 -0800 | [diff] [blame] | 83 | u32 high_table, table_size; |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 84 | struct memory_area cfg_tables[ARRAY_SIZE(table_list) + 1]; |
Bin Meng | ef47ed1 | 2016-02-27 22:58:01 -0800 | [diff] [blame] | 85 | int i; |
Bin Meng | f17cea6 | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 86 | |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 87 | rom_table_start = ROM_TABLE_ADDR; |
| 88 | |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 89 | debug("Writing tables to %x:\n", rom_table_start); |
| 90 | for (i = 0; i < ARRAY_SIZE(table_list); i++) { |
| 91 | const struct table_info *table = &table_list[i]; |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 92 | int size = table->size ? : CONFIG_ROM_TABLE_SIZE; |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 93 | |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 94 | if (IS_ENABLED(CONFIG_BLOBLIST_TABLES) && table->tag) { |
| 95 | rom_table_start = (ulong)bloblist_add(table->tag, size, |
| 96 | table->align); |
| 97 | if (!rom_table_start) |
| 98 | return log_msg_ret("bloblist", -ENOBUFS); |
| 99 | } |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 100 | rom_table_end = table->write(rom_table_start); |
Heinrich Schuchardt | 21da91f | 2021-05-15 18:07:47 +0200 | [diff] [blame] | 101 | if (!rom_table_end) { |
| 102 | log_err("Can't create configuration table %d\n", i); |
| 103 | return -EINTR; |
| 104 | } |
Bin Meng | ca68d77 | 2016-02-27 22:58:02 -0800 | [diff] [blame] | 105 | |
Simon Glass | 9b90b24 | 2020-11-04 09:57:24 -0700 | [diff] [blame] | 106 | if (IS_ENABLED(CONFIG_SEABIOS)) { |
| 107 | table_size = rom_table_end - rom_table_start; |
| 108 | high_table = (u32)(ulong)high_table_malloc(table_size); |
| 109 | if (high_table) { |
Heinrich Schuchardt | 21da91f | 2021-05-15 18:07:47 +0200 | [diff] [blame] | 110 | if (!table->write(high_table)) { |
| 111 | log_err("Can't create configuration table %d\n", |
| 112 | i); |
| 113 | return -EINTR; |
| 114 | } |
Bin Meng | 96030fa | 2016-02-28 23:54:50 -0800 | [diff] [blame] | 115 | |
Simon Glass | 9b90b24 | 2020-11-04 09:57:24 -0700 | [diff] [blame] | 116 | cfg_tables[i].start = high_table; |
| 117 | cfg_tables[i].size = table_size; |
| 118 | } else { |
| 119 | printf("%d: no memory for configuration tables\n", |
| 120 | i); |
| 121 | return -ENOSPC; |
| 122 | } |
Bin Meng | ca68d77 | 2016-02-27 22:58:02 -0800 | [diff] [blame] | 123 | } |
| 124 | |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 125 | debug("- wrote '%s' to %x, end %x\n", table->name, |
| 126 | rom_table_start, rom_table_end); |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 127 | if (rom_table_end - rom_table_start > size) { |
| 128 | log_err("Out of space for configuration tables: need %x, have %x\n", |
| 129 | rom_table_end - rom_table_start, size); |
| 130 | return log_msg_ret("bloblist", -ENOSPC); |
| 131 | } |
Bin Meng | ef47ed1 | 2016-02-27 22:58:01 -0800 | [diff] [blame] | 132 | rom_table_start = rom_table_end; |
| 133 | } |
Bin Meng | 96030fa | 2016-02-28 23:54:50 -0800 | [diff] [blame] | 134 | |
Simon Glass | 9b90b24 | 2020-11-04 09:57:24 -0700 | [diff] [blame] | 135 | if (IS_ENABLED(CONFIG_SEABIOS)) { |
| 136 | /* make sure the last item is zero */ |
| 137 | cfg_tables[i].size = 0; |
| 138 | write_coreboot_table(CB_TABLE_ADDR, cfg_tables); |
| 139 | } |
| 140 | |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 141 | if (IS_ENABLED(CONFIG_BLOBLIST_TABLES)) { |
| 142 | void *ptr = (void *)CONFIG_ROM_TABLE_ADDR; |
| 143 | |
| 144 | /* Write an RSDP pointing to the tables */ |
| 145 | if (IS_ENABLED(CONFIG_GENERATE_ACPI_TABLE)) { |
| 146 | struct acpi_ctx *ctx = gd_acpi_ctx(); |
| 147 | |
| 148 | acpi_write_rsdp(ptr, ctx->rsdt, ctx->xsdt); |
| 149 | ptr += ALIGN(sizeof(struct acpi_rsdp), 16); |
| 150 | } |
| 151 | if (IS_ENABLED(CONFIG_GENERATE_SMBIOS_TABLE)) { |
| 152 | void *smbios; |
| 153 | |
| 154 | smbios = bloblist_find(BLOBLISTT_SMBIOS_TABLES, 0); |
| 155 | if (!smbios) |
| 156 | return log_msg_ret("smbios", -ENOENT); |
| 157 | memcpy(ptr, smbios, sizeof(struct smbios_entry)); |
| 158 | } |
| 159 | } |
| 160 | |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 161 | debug("- done writing tables\n"); |
Simon Glass | e50129a | 2020-11-04 09:57:18 -0700 | [diff] [blame] | 162 | |
| 163 | return 0; |
Bin Meng | f17cea6 | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 164 | } |