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