blob: 45a70e927634dd411cdae729d8707105b3e8b9fe [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Bin Meng5e2400e2015-04-24 18:10:04 +08002/*
3 * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
Bin Meng5e2400e2015-04-24 18:10:04 +08004 */
5
Simon Glass8856d612023-07-15 21:39:09 -06006#define LOG_CATEGORY LOGC_ACPI
Heinrich Schuchardtc193d9b2021-05-15 18:07:47 +02007
Simon Glassd2cb7a22020-11-04 09:57:25 -07008#include <bloblist.h>
Simon Glassb336a2b2020-07-16 21:22:31 -06009#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070010#include <malloc.h>
Alexander Graf4b6dddc2016-08-19 01:23:23 +020011#include <smbios.h>
Simon Glass776cc202020-04-08 16:57:36 -060012#include <acpi/acpi_table.h>
Simon Glass401d1c42020-10-30 21:38:53 -060013#include <asm/global_data.h>
Simon Glass6388e352015-04-28 20:25:10 -060014#include <asm/sfi.h>
Bin Meng07545d82015-06-23 12:18:52 +080015#include <asm/mpspec.h>
Bin Meng5e2400e2015-04-24 18:10:04 +080016#include <asm/tables.h>
Bin Meng3cf23712016-02-28 23:54:50 -080017#include <asm/coreboot_tables.h>
Simon Glass1a2e02f2023-12-27 13:07:00 -080018#include <linux/log2.h>
Bin Meng5e2400e2015-04-24 18:10:04 +080019
Simon Glassd2cb7a22020-11-04 09:57:25 -070020DECLARE_GLOBAL_DATA_PTR;
21
Bin Mengef4d0a52016-02-27 22:58:01 -080022/**
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 Glass42fd8c12017-01-16 07:03:35 -070028typedef ulong (*table_write)(ulong addr);
Bin Mengef4d0a52016-02-27 22:58:01 -080029
Simon Glassb336a2b2020-07-16 21:22:31 -060030/**
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 Glassd2cb7a22020-11-04 09:57:25 -070035 * @tag: Bloblist tag if using CONFIG_BLOBLIST_TABLES
36 * @size: Maximum table size
37 * @align: Table alignment in bytes
Simon Glassb336a2b2020-07-16 21:22:31 -060038 */
39struct table_info {
40 const char *name;
41 table_write write;
Simon Glassd2cb7a22020-11-04 09:57:25 -070042 enum bloblist_tag_t tag;
43 int size;
44 int align;
Simon Glassb336a2b2020-07-16 21:22:31 -060045};
46
47static struct table_info table_list[] = {
Bin Mengef4d0a52016-02-27 22:58:01 -080048#ifdef CONFIG_GENERATE_PIRQ_TABLE
Simon Glassb336a2b2020-07-16 21:22:31 -060049 { "pirq", write_pirq_routing_table },
Bin Mengef4d0a52016-02-27 22:58:01 -080050#endif
51#ifdef CONFIG_GENERATE_SFI_TABLE
Simon Glassb336a2b2020-07-16 21:22:31 -060052 { "sfi", write_sfi_table, },
Bin Mengef4d0a52016-02-27 22:58:01 -080053#endif
54#ifdef CONFIG_GENERATE_MP_TABLE
Simon Glassb336a2b2020-07-16 21:22:31 -060055 { "mp", write_mp_table, },
Bin Mengef4d0a52016-02-27 22:58:01 -080056#endif
Simon Glass6a324892023-07-15 21:39:10 -060057 /*
58 * tables which can go in the bloblist must be last in this list, so
59 * that the calculation of gd->table_end works properly
60 */
Bin Mengef4d0a52016-02-27 22:58:01 -080061#ifdef CONFIG_GENERATE_ACPI_TABLE
Simon Glassd2cb7a22020-11-04 09:57:25 -070062 { "acpi", write_acpi_tables, BLOBLISTT_ACPI_TABLES, 0x10000, 0x1000},
Bin Mengef4d0a52016-02-27 22:58:01 -080063#endif
Heinrich Schuchardt1c5aab82023-12-23 02:03:34 +010064#if defined(CONFIG_GENERATE_SMBIOS_TABLE) && !defined(CONFIG_QFW_SMBIOS)
Simon Glassd2cb7a22020-11-04 09:57:25 -070065 { "smbios", write_smbios_table, BLOBLISTT_SMBIOS_TABLES, 0x1000, 0x100},
Bin Mengef4d0a52016-02-27 22:58:01 -080066#endif
67};
68
Bin Meng7f5df8d2015-06-23 12:18:51 +080069void table_fill_string(char *dest, const char *src, size_t n, char pad)
70{
71 int start, len;
72 int i;
73
74 strncpy(dest, src, n);
75
76 /* Fill the remaining bytes with pad */
77 len = strlen(src);
78 start = len < n ? len : n;
79 for (i = start; i < n; i++)
80 dest[i] = pad;
81}
82
Simon Glass38e498c2020-11-04 09:57:18 -070083int write_tables(void)
Bin Meng5e2400e2015-04-24 18:10:04 +080084{
Bin Mengff94c212016-02-27 22:58:02 -080085 u32 high_table, table_size;
Simon Glassb336a2b2020-07-16 21:22:31 -060086 struct memory_area cfg_tables[ARRAY_SIZE(table_list) + 1];
Simon Glass6a324892023-07-15 21:39:10 -060087 bool use_high = false;
Simon Glass8856d612023-07-15 21:39:09 -060088 u32 rom_addr;
Bin Mengef4d0a52016-02-27 22:58:01 -080089 int i;
Bin Meng5e2400e2015-04-24 18:10:04 +080090
Simon Glass6a324892023-07-15 21:39:10 -060091 gd->arch.table_start = ROM_TABLE_ADDR;
92 rom_addr = gd->arch.table_start;
Simon Glassd2cb7a22020-11-04 09:57:25 -070093
Simon Glass8856d612023-07-15 21:39:09 -060094 debug("Writing tables to %x:\n", rom_addr);
Simon Glassb336a2b2020-07-16 21:22:31 -060095 for (i = 0; i < ARRAY_SIZE(table_list); i++) {
96 const struct table_info *table = &table_list[i];
Simon Glassd2cb7a22020-11-04 09:57:25 -070097 int size = table->size ? : CONFIG_ROM_TABLE_SIZE;
Simon Glass8856d612023-07-15 21:39:09 -060098 u32 rom_table_end;
Simon Glassb336a2b2020-07-16 21:22:31 -060099
Heinrich Schuchardt52c62ac2024-01-02 00:11:44 +0100100 rom_addr = ALIGN(rom_addr, 16);
101
Simon Glass50834882023-09-19 21:00:15 -0600102 if (!strcmp("smbios", table->name))
103 gd->arch.smbios_start = rom_addr;
104
Simon Glassd2cb7a22020-11-04 09:57:25 -0700105 if (IS_ENABLED(CONFIG_BLOBLIST_TABLES) && table->tag) {
Simon Glass6a324892023-07-15 21:39:10 -0600106 if (!gd->arch.table_end)
107 gd->arch.table_end = rom_addr;
Simon Glass8856d612023-07-15 21:39:09 -0600108 rom_addr = (ulong)bloblist_add(table->tag, size,
Simon Glass1a2e02f2023-12-27 13:07:00 -0800109 ilog2(table->align));
Simon Glass8856d612023-07-15 21:39:09 -0600110 if (!rom_addr)
Simon Glassd2cb7a22020-11-04 09:57:25 -0700111 return log_msg_ret("bloblist", -ENOBUFS);
Simon Glass6a324892023-07-15 21:39:10 -0600112
113 /* the bloblist is always in high memory */
114 use_high = true;
115 if (!gd->arch.table_start_high)
116 gd->arch.table_start_high = rom_addr;
Simon Glassd2cb7a22020-11-04 09:57:25 -0700117 }
Simon Glass8856d612023-07-15 21:39:09 -0600118 rom_table_end = table->write(rom_addr);
Heinrich Schuchardtc193d9b2021-05-15 18:07:47 +0200119 if (!rom_table_end) {
120 log_err("Can't create configuration table %d\n", i);
121 return -EINTR;
122 }
Bin Mengff94c212016-02-27 22:58:02 -0800123
Simon Glassf36e4c72020-11-04 09:57:24 -0700124 if (IS_ENABLED(CONFIG_SEABIOS)) {
Simon Glass8856d612023-07-15 21:39:09 -0600125 table_size = rom_table_end - rom_addr;
Simon Glassf36e4c72020-11-04 09:57:24 -0700126 high_table = (u32)(ulong)high_table_malloc(table_size);
127 if (high_table) {
Heinrich Schuchardtc193d9b2021-05-15 18:07:47 +0200128 if (!table->write(high_table)) {
129 log_err("Can't create configuration table %d\n",
130 i);
131 return -EINTR;
132 }
Bin Meng3cf23712016-02-28 23:54:50 -0800133
Simon Glassf36e4c72020-11-04 09:57:24 -0700134 cfg_tables[i].start = high_table;
135 cfg_tables[i].size = table_size;
136 } else {
137 printf("%d: no memory for configuration tables\n",
138 i);
139 return -ENOSPC;
140 }
Bin Mengff94c212016-02-27 22:58:02 -0800141 }
142
Simon Glassb336a2b2020-07-16 21:22:31 -0600143 debug("- wrote '%s' to %x, end %x\n", table->name,
Simon Glass8856d612023-07-15 21:39:09 -0600144 rom_addr, rom_table_end);
145 if (rom_table_end - rom_addr > size) {
Simon Glassd2cb7a22020-11-04 09:57:25 -0700146 log_err("Out of space for configuration tables: need %x, have %x\n",
Simon Glass8856d612023-07-15 21:39:09 -0600147 rom_table_end - rom_addr, size);
Simon Glassd2cb7a22020-11-04 09:57:25 -0700148 return log_msg_ret("bloblist", -ENOSPC);
149 }
Simon Glass8856d612023-07-15 21:39:09 -0600150 rom_addr = rom_table_end;
Bin Mengef4d0a52016-02-27 22:58:01 -0800151 }
Bin Meng3cf23712016-02-28 23:54:50 -0800152
Simon Glass6a324892023-07-15 21:39:10 -0600153 if (use_high)
154 gd->arch.table_end_high = rom_addr;
155 else
156 gd->arch.table_end = rom_addr;
157
Simon Glassf36e4c72020-11-04 09:57:24 -0700158 if (IS_ENABLED(CONFIG_SEABIOS)) {
159 /* make sure the last item is zero */
160 cfg_tables[i].size = 0;
161 write_coreboot_table(CB_TABLE_ADDR, cfg_tables);
162 }
163
Simon Glassd2cb7a22020-11-04 09:57:25 -0700164 if (IS_ENABLED(CONFIG_BLOBLIST_TABLES)) {
165 void *ptr = (void *)CONFIG_ROM_TABLE_ADDR;
166
167 /* Write an RSDP pointing to the tables */
168 if (IS_ENABLED(CONFIG_GENERATE_ACPI_TABLE)) {
169 struct acpi_ctx *ctx = gd_acpi_ctx();
170
171 acpi_write_rsdp(ptr, ctx->rsdt, ctx->xsdt);
172 ptr += ALIGN(sizeof(struct acpi_rsdp), 16);
173 }
174 if (IS_ENABLED(CONFIG_GENERATE_SMBIOS_TABLE)) {
175 void *smbios;
176
177 smbios = bloblist_find(BLOBLISTT_SMBIOS_TABLES, 0);
178 if (!smbios)
179 return log_msg_ret("smbios", -ENOENT);
180 memcpy(ptr, smbios, sizeof(struct smbios_entry));
181 }
182 }
183
Simon Glassb336a2b2020-07-16 21:22:31 -0600184 debug("- done writing tables\n");
Simon Glass38e498c2020-11-04 09:57:18 -0700185
186 return 0;
Bin Meng5e2400e2015-04-24 18:10:04 +0800187}