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 | |
Simon Glass | b87f76f | 2023-07-15 21:39:09 -0600 | [diff] [blame] | 6 | #define LOG_CATEGORY LOGC_ACPI |
Heinrich Schuchardt | 21da91f | 2021-05-15 18:07:47 +0200 | [diff] [blame] | 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> |
Simon Glass | c2aa4ef | 2023-12-27 13:07:00 -0800 | [diff] [blame] | 19 | #include <linux/log2.h> |
Bin Meng | f17cea6 | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 20 | |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 21 | DECLARE_GLOBAL_DATA_PTR; |
| 22 | |
Bin Meng | ef47ed1 | 2016-02-27 22:58:01 -0800 | [diff] [blame] | 23 | /** |
| 24 | * Function prototype to write a specific configuration table |
| 25 | * |
| 26 | * @addr: start address to write the table |
| 27 | * @return: end address of the table |
| 28 | */ |
Simon Glass | ca37a39 | 2017-01-16 07:03:35 -0700 | [diff] [blame] | 29 | typedef ulong (*table_write)(ulong addr); |
Bin Meng | ef47ed1 | 2016-02-27 22:58:01 -0800 | [diff] [blame] | 30 | |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 31 | /** |
| 32 | * struct table_info - Information about each table to write |
| 33 | * |
| 34 | * @name: Name of table (for debugging) |
| 35 | * @write: Function to call to write this table |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 36 | * @tag: Bloblist tag if using CONFIG_BLOBLIST_TABLES |
| 37 | * @size: Maximum table size |
| 38 | * @align: Table alignment in bytes |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 39 | */ |
| 40 | struct table_info { |
| 41 | const char *name; |
| 42 | table_write write; |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 43 | enum bloblist_tag_t tag; |
| 44 | int size; |
| 45 | int align; |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 46 | }; |
| 47 | |
| 48 | static struct table_info table_list[] = { |
Bin Meng | ef47ed1 | 2016-02-27 22:58:01 -0800 | [diff] [blame] | 49 | #ifdef CONFIG_GENERATE_PIRQ_TABLE |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 50 | { "pirq", write_pirq_routing_table }, |
Bin Meng | ef47ed1 | 2016-02-27 22:58:01 -0800 | [diff] [blame] | 51 | #endif |
| 52 | #ifdef CONFIG_GENERATE_SFI_TABLE |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 53 | { "sfi", write_sfi_table, }, |
Bin Meng | ef47ed1 | 2016-02-27 22:58:01 -0800 | [diff] [blame] | 54 | #endif |
| 55 | #ifdef CONFIG_GENERATE_MP_TABLE |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 56 | { "mp", write_mp_table, }, |
Bin Meng | ef47ed1 | 2016-02-27 22:58:01 -0800 | [diff] [blame] | 57 | #endif |
Simon Glass | 66ca25c | 2023-07-15 21:39:10 -0600 | [diff] [blame] | 58 | /* |
| 59 | * tables which can go in the bloblist must be last in this list, so |
| 60 | * that the calculation of gd->table_end works properly |
| 61 | */ |
Bin Meng | ef47ed1 | 2016-02-27 22:58:01 -0800 | [diff] [blame] | 62 | #ifdef CONFIG_GENERATE_ACPI_TABLE |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 63 | { "acpi", write_acpi_tables, BLOBLISTT_ACPI_TABLES, 0x10000, 0x1000}, |
Bin Meng | ef47ed1 | 2016-02-27 22:58:01 -0800 | [diff] [blame] | 64 | #endif |
Heinrich Schuchardt | 08d931a | 2023-12-23 02:03:34 +0100 | [diff] [blame] | 65 | #if defined(CONFIG_GENERATE_SMBIOS_TABLE) && !defined(CONFIG_QFW_SMBIOS) |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 66 | { "smbios", write_smbios_table, BLOBLISTT_SMBIOS_TABLES, 0x1000, 0x100}, |
Bin Meng | ef47ed1 | 2016-02-27 22:58:01 -0800 | [diff] [blame] | 67 | #endif |
| 68 | }; |
| 69 | |
Bin Meng | f91cf6b | 2015-06-23 12:18:51 +0800 | [diff] [blame] | 70 | void table_fill_string(char *dest, const char *src, size_t n, char pad) |
| 71 | { |
| 72 | int start, len; |
| 73 | int i; |
| 74 | |
| 75 | strncpy(dest, src, n); |
| 76 | |
| 77 | /* Fill the remaining bytes with pad */ |
| 78 | len = strlen(src); |
| 79 | start = len < n ? len : n; |
| 80 | for (i = start; i < n; i++) |
| 81 | dest[i] = pad; |
| 82 | } |
| 83 | |
Simon Glass | e50129a | 2020-11-04 09:57:18 -0700 | [diff] [blame] | 84 | int write_tables(void) |
Bin Meng | f17cea6 | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 85 | { |
Bin Meng | ca68d77 | 2016-02-27 22:58:02 -0800 | [diff] [blame] | 86 | u32 high_table, table_size; |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 87 | struct memory_area cfg_tables[ARRAY_SIZE(table_list) + 1]; |
Simon Glass | 66ca25c | 2023-07-15 21:39:10 -0600 | [diff] [blame] | 88 | bool use_high = false; |
Simon Glass | b87f76f | 2023-07-15 21:39:09 -0600 | [diff] [blame] | 89 | u32 rom_addr; |
Bin Meng | ef47ed1 | 2016-02-27 22:58:01 -0800 | [diff] [blame] | 90 | int i; |
Bin Meng | f17cea6 | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 91 | |
Simon Glass | 66ca25c | 2023-07-15 21:39:10 -0600 | [diff] [blame] | 92 | gd->arch.table_start = ROM_TABLE_ADDR; |
| 93 | rom_addr = gd->arch.table_start; |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 94 | |
Simon Glass | b87f76f | 2023-07-15 21:39:09 -0600 | [diff] [blame] | 95 | debug("Writing tables to %x:\n", rom_addr); |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 96 | for (i = 0; i < ARRAY_SIZE(table_list); i++) { |
| 97 | const struct table_info *table = &table_list[i]; |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 98 | int size = table->size ? : CONFIG_ROM_TABLE_SIZE; |
Simon Glass | b87f76f | 2023-07-15 21:39:09 -0600 | [diff] [blame] | 99 | u32 rom_table_end; |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 100 | |
Simon Glass | 9b38810 | 2023-09-19 21:00:15 -0600 | [diff] [blame] | 101 | if (!strcmp("smbios", table->name)) |
| 102 | gd->arch.smbios_start = rom_addr; |
| 103 | |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 104 | if (IS_ENABLED(CONFIG_BLOBLIST_TABLES) && table->tag) { |
Simon Glass | 66ca25c | 2023-07-15 21:39:10 -0600 | [diff] [blame] | 105 | if (!gd->arch.table_end) |
| 106 | gd->arch.table_end = rom_addr; |
Simon Glass | b87f76f | 2023-07-15 21:39:09 -0600 | [diff] [blame] | 107 | rom_addr = (ulong)bloblist_add(table->tag, size, |
Simon Glass | c2aa4ef | 2023-12-27 13:07:00 -0800 | [diff] [blame] | 108 | ilog2(table->align)); |
Simon Glass | b87f76f | 2023-07-15 21:39:09 -0600 | [diff] [blame] | 109 | if (!rom_addr) |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 110 | return log_msg_ret("bloblist", -ENOBUFS); |
Simon Glass | 66ca25c | 2023-07-15 21:39:10 -0600 | [diff] [blame] | 111 | |
| 112 | /* the bloblist is always in high memory */ |
| 113 | use_high = true; |
| 114 | if (!gd->arch.table_start_high) |
| 115 | gd->arch.table_start_high = rom_addr; |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 116 | } |
Simon Glass | b87f76f | 2023-07-15 21:39:09 -0600 | [diff] [blame] | 117 | rom_table_end = table->write(rom_addr); |
Heinrich Schuchardt | 21da91f | 2021-05-15 18:07:47 +0200 | [diff] [blame] | 118 | if (!rom_table_end) { |
| 119 | log_err("Can't create configuration table %d\n", i); |
| 120 | return -EINTR; |
| 121 | } |
Bin Meng | ca68d77 | 2016-02-27 22:58:02 -0800 | [diff] [blame] | 122 | |
Simon Glass | 9b90b24 | 2020-11-04 09:57:24 -0700 | [diff] [blame] | 123 | if (IS_ENABLED(CONFIG_SEABIOS)) { |
Simon Glass | b87f76f | 2023-07-15 21:39:09 -0600 | [diff] [blame] | 124 | table_size = rom_table_end - rom_addr; |
Simon Glass | 9b90b24 | 2020-11-04 09:57:24 -0700 | [diff] [blame] | 125 | high_table = (u32)(ulong)high_table_malloc(table_size); |
| 126 | if (high_table) { |
Heinrich Schuchardt | 21da91f | 2021-05-15 18:07:47 +0200 | [diff] [blame] | 127 | if (!table->write(high_table)) { |
| 128 | log_err("Can't create configuration table %d\n", |
| 129 | i); |
| 130 | return -EINTR; |
| 131 | } |
Bin Meng | 96030fa | 2016-02-28 23:54:50 -0800 | [diff] [blame] | 132 | |
Simon Glass | 9b90b24 | 2020-11-04 09:57:24 -0700 | [diff] [blame] | 133 | cfg_tables[i].start = high_table; |
| 134 | cfg_tables[i].size = table_size; |
| 135 | } else { |
| 136 | printf("%d: no memory for configuration tables\n", |
| 137 | i); |
| 138 | return -ENOSPC; |
| 139 | } |
Bin Meng | ca68d77 | 2016-02-27 22:58:02 -0800 | [diff] [blame] | 140 | } |
| 141 | |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 142 | debug("- wrote '%s' to %x, end %x\n", table->name, |
Simon Glass | b87f76f | 2023-07-15 21:39:09 -0600 | [diff] [blame] | 143 | rom_addr, rom_table_end); |
| 144 | if (rom_table_end - rom_addr > size) { |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 145 | log_err("Out of space for configuration tables: need %x, have %x\n", |
Simon Glass | b87f76f | 2023-07-15 21:39:09 -0600 | [diff] [blame] | 146 | rom_table_end - rom_addr, size); |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 147 | return log_msg_ret("bloblist", -ENOSPC); |
| 148 | } |
Simon Glass | b87f76f | 2023-07-15 21:39:09 -0600 | [diff] [blame] | 149 | rom_addr = rom_table_end; |
Bin Meng | ef47ed1 | 2016-02-27 22:58:01 -0800 | [diff] [blame] | 150 | } |
Bin Meng | 96030fa | 2016-02-28 23:54:50 -0800 | [diff] [blame] | 151 | |
Simon Glass | 66ca25c | 2023-07-15 21:39:10 -0600 | [diff] [blame] | 152 | if (use_high) |
| 153 | gd->arch.table_end_high = rom_addr; |
| 154 | else |
| 155 | gd->arch.table_end = rom_addr; |
| 156 | |
Simon Glass | 9b90b24 | 2020-11-04 09:57:24 -0700 | [diff] [blame] | 157 | if (IS_ENABLED(CONFIG_SEABIOS)) { |
| 158 | /* make sure the last item is zero */ |
| 159 | cfg_tables[i].size = 0; |
| 160 | write_coreboot_table(CB_TABLE_ADDR, cfg_tables); |
| 161 | } |
| 162 | |
Simon Glass | 5d093f3 | 2020-11-04 09:57:25 -0700 | [diff] [blame] | 163 | if (IS_ENABLED(CONFIG_BLOBLIST_TABLES)) { |
| 164 | void *ptr = (void *)CONFIG_ROM_TABLE_ADDR; |
| 165 | |
| 166 | /* Write an RSDP pointing to the tables */ |
| 167 | if (IS_ENABLED(CONFIG_GENERATE_ACPI_TABLE)) { |
| 168 | struct acpi_ctx *ctx = gd_acpi_ctx(); |
| 169 | |
| 170 | acpi_write_rsdp(ptr, ctx->rsdt, ctx->xsdt); |
| 171 | ptr += ALIGN(sizeof(struct acpi_rsdp), 16); |
| 172 | } |
| 173 | if (IS_ENABLED(CONFIG_GENERATE_SMBIOS_TABLE)) { |
| 174 | void *smbios; |
| 175 | |
| 176 | smbios = bloblist_find(BLOBLISTT_SMBIOS_TABLES, 0); |
| 177 | if (!smbios) |
| 178 | return log_msg_ret("smbios", -ENOENT); |
| 179 | memcpy(ptr, smbios, sizeof(struct smbios_entry)); |
| 180 | } |
| 181 | } |
| 182 | |
Simon Glass | f66fb30 | 2020-07-16 21:22:31 -0600 | [diff] [blame] | 183 | debug("- done writing tables\n"); |
Simon Glass | e50129a | 2020-11-04 09:57:18 -0700 | [diff] [blame] | 184 | |
| 185 | return 0; |
Bin Meng | f17cea6 | 2015-04-24 18:10:04 +0800 | [diff] [blame] | 186 | } |