Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 2 | /* |
| 3 | * Based on acpi.c from coreboot |
| 4 | * |
| 5 | * Copyright (C) 2015, Saket Sinha <saket.sinha89@gmail.com> |
Bin Meng | 44256b0 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 6 | * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com> |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 7 | */ |
| 8 | |
Simon Glass | 2326a8b | 2020-09-22 12:45:34 -0600 | [diff] [blame] | 9 | #define LOG_CATEGORY LOGC_ACPI |
| 10 | |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 11 | #include <common.h> |
Simon Glass | 272a703 | 2020-09-22 12:45:32 -0600 | [diff] [blame] | 12 | #include <bloblist.h> |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 13 | #include <cpu.h> |
| 14 | #include <dm.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 15 | #include <log.h> |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 16 | #include <dm/uclass-internal.h> |
Simon Glass | 0e11384 | 2020-04-26 09:19:47 -0600 | [diff] [blame] | 17 | #include <mapmem.h> |
Andy Shevchenko | 4ca48c9 | 2018-11-20 23:52:38 +0200 | [diff] [blame] | 18 | #include <serial.h> |
Simon Glass | f0a8d68 | 2020-07-07 13:12:07 -0600 | [diff] [blame] | 19 | #include <acpi/acpigen.h> |
Simon Glass | 9597189 | 2020-09-22 12:45:10 -0600 | [diff] [blame] | 20 | #include <acpi/acpi_device.h> |
Simon Glass | 858fed1 | 2020-04-08 16:57:36 -0600 | [diff] [blame] | 21 | #include <acpi/acpi_table.h> |
Bin Meng | d9050c6 | 2016-06-17 02:13:16 -0700 | [diff] [blame] | 22 | #include <asm/acpi/global_nvs.h> |
Andy Shevchenko | 13a5d87 | 2017-07-21 22:32:04 +0300 | [diff] [blame] | 23 | #include <asm/ioapic.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 24 | #include <asm/global_data.h> |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 25 | #include <asm/lapic.h> |
Andy Shevchenko | 13a5d87 | 2017-07-21 22:32:04 +0300 | [diff] [blame] | 26 | #include <asm/mpspec.h> |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 27 | #include <asm/tables.h> |
Bin Meng | d9050c6 | 2016-06-17 02:13:16 -0700 | [diff] [blame] | 28 | #include <asm/arch/global_nvs.h> |
Simon Glass | 0e11384 | 2020-04-26 09:19:47 -0600 | [diff] [blame] | 29 | #include <dm/acpi.h> |
Simon Glass | 9ed41e7 | 2020-07-07 21:32:05 -0600 | [diff] [blame] | 30 | #include <linux/err.h> |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 31 | |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 32 | static int acpi_create_madt_lapic(struct acpi_madt_lapic *lapic, |
Bin Meng | 44256b0 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 33 | u8 cpu, u8 apic) |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 34 | { |
Bin Meng | 44256b0 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 35 | lapic->type = ACPI_APIC_LAPIC; |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 36 | lapic->length = sizeof(struct acpi_madt_lapic); |
Bin Meng | 44256b0 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 37 | lapic->flags = LOCAL_APIC_FLAG_ENABLED; |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 38 | lapic->processor_id = cpu; |
| 39 | lapic->apic_id = apic; |
| 40 | |
| 41 | return lapic->length; |
| 42 | } |
| 43 | |
Bin Meng | 3c5234e | 2016-05-07 07:46:30 -0700 | [diff] [blame] | 44 | int acpi_create_madt_lapics(u32 current) |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 45 | { |
| 46 | struct udevice *dev; |
George McCollister | 5a49f87 | 2016-06-07 13:40:18 -0500 | [diff] [blame] | 47 | int total_length = 0; |
Simon Glass | fcae547 | 2020-09-22 12:45:31 -0600 | [diff] [blame] | 48 | int cpu_num = 0; |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 49 | |
| 50 | for (uclass_find_first_device(UCLASS_CPU, &dev); |
| 51 | dev; |
| 52 | uclass_find_next_device(&dev)) { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 53 | struct cpu_plat *plat = dev_get_parent_plat(dev); |
Simon Glass | fcae547 | 2020-09-22 12:45:31 -0600 | [diff] [blame] | 54 | int length; |
| 55 | |
| 56 | length = acpi_create_madt_lapic( |
| 57 | (struct acpi_madt_lapic *)current, cpu_num++, |
| 58 | plat->cpu_id); |
Bin Meng | 3c5234e | 2016-05-07 07:46:30 -0700 | [diff] [blame] | 59 | current += length; |
George McCollister | 5a49f87 | 2016-06-07 13:40:18 -0500 | [diff] [blame] | 60 | total_length += length; |
Bin Meng | 44256b0 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 61 | } |
| 62 | |
George McCollister | 5a49f87 | 2016-06-07 13:40:18 -0500 | [diff] [blame] | 63 | return total_length; |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 64 | } |
| 65 | |
Bin Meng | 44256b0 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 66 | int acpi_create_madt_ioapic(struct acpi_madt_ioapic *ioapic, u8 id, |
| 67 | u32 addr, u32 gsi_base) |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 68 | { |
Bin Meng | 6a42158 | 2016-05-07 07:46:21 -0700 | [diff] [blame] | 69 | ioapic->type = ACPI_APIC_IOAPIC; |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 70 | ioapic->length = sizeof(struct acpi_madt_ioapic); |
| 71 | ioapic->reserved = 0x00; |
| 72 | ioapic->gsi_base = gsi_base; |
| 73 | ioapic->ioapic_id = id; |
| 74 | ioapic->ioapic_addr = addr; |
| 75 | |
| 76 | return ioapic->length; |
| 77 | } |
| 78 | |
| 79 | int acpi_create_madt_irqoverride(struct acpi_madt_irqoverride *irqoverride, |
Bin Meng | 44256b0 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 80 | u8 bus, u8 source, u32 gsirq, u16 flags) |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 81 | { |
Bin Meng | 6a42158 | 2016-05-07 07:46:21 -0700 | [diff] [blame] | 82 | irqoverride->type = ACPI_APIC_IRQ_SRC_OVERRIDE; |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 83 | irqoverride->length = sizeof(struct acpi_madt_irqoverride); |
| 84 | irqoverride->bus = bus; |
| 85 | irqoverride->source = source; |
| 86 | irqoverride->gsirq = gsirq; |
| 87 | irqoverride->flags = flags; |
| 88 | |
| 89 | return irqoverride->length; |
| 90 | } |
| 91 | |
| 92 | int acpi_create_madt_lapic_nmi(struct acpi_madt_lapic_nmi *lapic_nmi, |
Bin Meng | 44256b0 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 93 | u8 cpu, u16 flags, u8 lint) |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 94 | { |
Bin Meng | 6a42158 | 2016-05-07 07:46:21 -0700 | [diff] [blame] | 95 | lapic_nmi->type = ACPI_APIC_LAPIC_NMI; |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 96 | lapic_nmi->length = sizeof(struct acpi_madt_lapic_nmi); |
| 97 | lapic_nmi->flags = flags; |
| 98 | lapic_nmi->processor_id = cpu; |
| 99 | lapic_nmi->lint = lint; |
| 100 | |
| 101 | return lapic_nmi->length; |
| 102 | } |
| 103 | |
Andy Shevchenko | 13a5d87 | 2017-07-21 22:32:04 +0300 | [diff] [blame] | 104 | static int acpi_create_madt_irq_overrides(u32 current) |
| 105 | { |
| 106 | struct acpi_madt_irqoverride *irqovr; |
| 107 | u16 sci_flags = MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_HIGH; |
| 108 | int length = 0; |
| 109 | |
| 110 | irqovr = (void *)current; |
| 111 | length += acpi_create_madt_irqoverride(irqovr, 0, 0, 2, 0); |
| 112 | |
| 113 | irqovr = (void *)(current + length); |
| 114 | length += acpi_create_madt_irqoverride(irqovr, 0, 9, 9, sci_flags); |
| 115 | |
| 116 | return length; |
| 117 | } |
| 118 | |
| 119 | __weak u32 acpi_fill_madt(u32 current) |
| 120 | { |
| 121 | current += acpi_create_madt_lapics(current); |
| 122 | |
| 123 | current += acpi_create_madt_ioapic((struct acpi_madt_ioapic *)current, |
| 124 | io_apic_read(IO_APIC_ID) >> 24, IO_APIC_ADDR, 0); |
| 125 | |
| 126 | current += acpi_create_madt_irq_overrides(current); |
| 127 | |
| 128 | return current; |
| 129 | } |
| 130 | |
Simon Glass | b0d5fab | 2021-12-01 09:02:58 -0700 | [diff] [blame] | 131 | int acpi_write_madt(struct acpi_ctx *ctx, const struct acpi_writer *entry) |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 132 | { |
Simon Glass | b0d5fab | 2021-12-01 09:02:58 -0700 | [diff] [blame] | 133 | struct acpi_table_header *header; |
| 134 | struct acpi_madt *madt; |
| 135 | u32 current; |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 136 | |
Simon Glass | b0d5fab | 2021-12-01 09:02:58 -0700 | [diff] [blame] | 137 | madt = ctx->current; |
| 138 | |
| 139 | memset(madt, '\0', sizeof(struct acpi_madt)); |
| 140 | header = &madt->header; |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 141 | |
| 142 | /* Fill out header fields */ |
Bin Meng | b063d5f | 2016-05-07 07:46:24 -0700 | [diff] [blame] | 143 | acpi_fill_header(header, "APIC"); |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 144 | header->length = sizeof(struct acpi_madt); |
Simon Glass | f3694aa | 2020-07-16 21:22:37 -0600 | [diff] [blame] | 145 | header->revision = ACPI_MADT_REV_ACPI_3_0; |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 146 | |
| 147 | madt->lapic_addr = LAPIC_DEFAULT_BASE; |
Bin Meng | 6a42158 | 2016-05-07 07:46:21 -0700 | [diff] [blame] | 148 | madt->flags = ACPI_MADT_PCAT_COMPAT; |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 149 | |
Simon Glass | b0d5fab | 2021-12-01 09:02:58 -0700 | [diff] [blame] | 150 | current = (u32)madt + sizeof(struct acpi_madt); |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 151 | current = acpi_fill_madt(current); |
| 152 | |
| 153 | /* (Re)calculate length and checksum */ |
Bin Meng | a1ec7db | 2016-05-07 07:46:26 -0700 | [diff] [blame] | 154 | header->length = current - (u32)madt; |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 155 | |
| 156 | header->checksum = table_compute_checksum((void *)madt, header->length); |
Simon Glass | b0d5fab | 2021-12-01 09:02:58 -0700 | [diff] [blame] | 157 | acpi_add_table(ctx, madt); |
| 158 | acpi_inc(ctx, madt->header.length); |
| 159 | |
| 160 | return 0; |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 161 | } |
Simon Glass | b0d5fab | 2021-12-01 09:02:58 -0700 | [diff] [blame] | 162 | ACPI_WRITER(5x86, NULL, acpi_write_madt, 0); |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 163 | |
Simon Glass | 2802628 | 2020-09-22 12:45:33 -0600 | [diff] [blame] | 164 | /** |
| 165 | * acpi_create_tcpa() - Create a TCPA table |
| 166 | * |
Simon Glass | 2802628 | 2020-09-22 12:45:33 -0600 | [diff] [blame] | 167 | * Trusted Computing Platform Alliance Capabilities Table |
| 168 | * TCPA PC Specific Implementation SpecificationTCPA is defined in the PCI |
| 169 | * Firmware Specification 3.0 |
| 170 | */ |
Simon Glass | bb3b608 | 2021-12-01 09:02:59 -0700 | [diff] [blame] | 171 | int acpi_write_tcpa(struct acpi_ctx *ctx, const struct acpi_writer *entry) |
Simon Glass | 2802628 | 2020-09-22 12:45:33 -0600 | [diff] [blame] | 172 | { |
Simon Glass | bb3b608 | 2021-12-01 09:02:59 -0700 | [diff] [blame] | 173 | struct acpi_table_header *header; |
| 174 | struct acpi_tcpa *tcpa; |
| 175 | u32 current; |
Simon Glass | 2802628 | 2020-09-22 12:45:33 -0600 | [diff] [blame] | 176 | int size = 0x10000; /* Use this as the default size */ |
| 177 | void *log; |
| 178 | int ret; |
| 179 | |
Simon Glass | bb3b608 | 2021-12-01 09:02:59 -0700 | [diff] [blame] | 180 | if (!IS_ENABLED(CONFIG_TPM_V1)) |
| 181 | return -ENOENT; |
Simon Glass | 2802628 | 2020-09-22 12:45:33 -0600 | [diff] [blame] | 182 | if (!CONFIG_IS_ENABLED(BLOBLIST)) |
| 183 | return -ENXIO; |
Simon Glass | bb3b608 | 2021-12-01 09:02:59 -0700 | [diff] [blame] | 184 | |
| 185 | tcpa = ctx->current; |
| 186 | header = &tcpa->header; |
Simon Glass | 2802628 | 2020-09-22 12:45:33 -0600 | [diff] [blame] | 187 | memset(tcpa, '\0', sizeof(struct acpi_tcpa)); |
| 188 | |
| 189 | /* Fill out header fields */ |
| 190 | acpi_fill_header(header, "TCPA"); |
| 191 | header->length = sizeof(struct acpi_tcpa); |
| 192 | header->revision = 1; |
| 193 | |
| 194 | ret = bloblist_ensure_size_ret(BLOBLISTT_TCPA_LOG, &size, &log); |
| 195 | if (ret) |
| 196 | return log_msg_ret("blob", ret); |
| 197 | |
| 198 | tcpa->platform_class = 0; |
| 199 | tcpa->laml = size; |
Simon Glass | bb3b608 | 2021-12-01 09:02:59 -0700 | [diff] [blame] | 200 | tcpa->lasa = map_to_sysmem(log); |
Simon Glass | 2802628 | 2020-09-22 12:45:33 -0600 | [diff] [blame] | 201 | |
| 202 | /* (Re)calculate length and checksum */ |
Simon Glass | bb3b608 | 2021-12-01 09:02:59 -0700 | [diff] [blame] | 203 | current = (u32)tcpa + sizeof(struct acpi_tcpa); |
Simon Glass | 2802628 | 2020-09-22 12:45:33 -0600 | [diff] [blame] | 204 | header->length = current - (u32)tcpa; |
Simon Glass | bb3b608 | 2021-12-01 09:02:59 -0700 | [diff] [blame] | 205 | header->checksum = table_compute_checksum(tcpa, header->length); |
| 206 | |
| 207 | acpi_inc(ctx, tcpa->header.length); |
| 208 | acpi_add_table(ctx, tcpa); |
Simon Glass | 2802628 | 2020-09-22 12:45:33 -0600 | [diff] [blame] | 209 | |
| 210 | return 0; |
| 211 | } |
Simon Glass | bb3b608 | 2021-12-01 09:02:59 -0700 | [diff] [blame] | 212 | ACPI_WRITER(5tcpa, "TCPA", acpi_write_tcpa, 0); |
Simon Glass | 2802628 | 2020-09-22 12:45:33 -0600 | [diff] [blame] | 213 | |
Simon Glass | 272a703 | 2020-09-22 12:45:32 -0600 | [diff] [blame] | 214 | static int get_tpm2_log(void **ptrp, int *sizep) |
| 215 | { |
| 216 | const int tpm2_default_log_len = 0x10000; |
| 217 | int size; |
| 218 | int ret; |
| 219 | |
| 220 | *sizep = 0; |
| 221 | size = tpm2_default_log_len; |
| 222 | ret = bloblist_ensure_size_ret(BLOBLISTT_TPM2_TCG_LOG, &size, ptrp); |
| 223 | if (ret) |
| 224 | return log_msg_ret("blob", ret); |
| 225 | *sizep = size; |
| 226 | |
| 227 | return 0; |
| 228 | } |
| 229 | |
Simon Glass | c753694 | 2021-12-01 09:02:57 -0700 | [diff] [blame] | 230 | static int acpi_write_tpm2(struct acpi_ctx *ctx, |
| 231 | const struct acpi_writer *entry) |
Simon Glass | 272a703 | 2020-09-22 12:45:32 -0600 | [diff] [blame] | 232 | { |
Simon Glass | c753694 | 2021-12-01 09:02:57 -0700 | [diff] [blame] | 233 | struct acpi_table_header *header; |
| 234 | struct acpi_tpm2 *tpm2; |
Simon Glass | 272a703 | 2020-09-22 12:45:32 -0600 | [diff] [blame] | 235 | int tpm2_log_len; |
| 236 | void *lasa; |
| 237 | int ret; |
| 238 | |
Simon Glass | c753694 | 2021-12-01 09:02:57 -0700 | [diff] [blame] | 239 | if (!IS_ENABLED(CONFIG_TPM_V2)) |
| 240 | return log_msg_ret("none", -ENOENT); |
| 241 | |
| 242 | tpm2 = ctx->current; |
| 243 | header = &tpm2->header; |
| 244 | memset(tpm2, '\0', sizeof(struct acpi_tpm2)); |
Simon Glass | 272a703 | 2020-09-22 12:45:32 -0600 | [diff] [blame] | 245 | |
| 246 | /* |
| 247 | * Some payloads like SeaBIOS depend on log area to use TPM2. |
| 248 | * Get the memory size and address of TPM2 log area or initialize it. |
| 249 | */ |
| 250 | ret = get_tpm2_log(&lasa, &tpm2_log_len); |
| 251 | if (ret) |
Simon Glass | c753694 | 2021-12-01 09:02:57 -0700 | [diff] [blame] | 252 | return log_msg_ret("log", ret); |
Simon Glass | 272a703 | 2020-09-22 12:45:32 -0600 | [diff] [blame] | 253 | |
| 254 | /* Fill out header fields. */ |
| 255 | acpi_fill_header(header, "TPM2"); |
| 256 | memcpy(header->aslc_id, ASLC_ID, 4); |
| 257 | |
| 258 | header->length = sizeof(struct acpi_tpm2); |
| 259 | header->revision = acpi_get_table_revision(ACPITAB_TPM2); |
| 260 | |
Simon Glass | c753694 | 2021-12-01 09:02:57 -0700 | [diff] [blame] | 261 | /* Hard to detect for U-Boot. Just set it to 0 */ |
Simon Glass | 272a703 | 2020-09-22 12:45:32 -0600 | [diff] [blame] | 262 | tpm2->platform_class = 0; |
| 263 | |
| 264 | /* Must be set to 0 for FIFO-interface support */ |
| 265 | tpm2->control_area = 0; |
| 266 | tpm2->start_method = 6; |
| 267 | memset(tpm2->msp, 0, sizeof(tpm2->msp)); |
| 268 | |
| 269 | /* Fill the log area size and start address fields. */ |
| 270 | tpm2->laml = tpm2_log_len; |
Simon Glass | c753694 | 2021-12-01 09:02:57 -0700 | [diff] [blame] | 271 | tpm2->lasa = map_to_sysmem(lasa); |
Simon Glass | 272a703 | 2020-09-22 12:45:32 -0600 | [diff] [blame] | 272 | |
| 273 | /* Calculate checksum. */ |
Simon Glass | c753694 | 2021-12-01 09:02:57 -0700 | [diff] [blame] | 274 | header->checksum = table_compute_checksum(tpm2, header->length); |
| 275 | |
| 276 | acpi_inc(ctx, tpm2->header.length); |
| 277 | acpi_add_table(ctx, tpm2); |
Simon Glass | 272a703 | 2020-09-22 12:45:32 -0600 | [diff] [blame] | 278 | |
| 279 | return 0; |
| 280 | } |
Simon Glass | c753694 | 2021-12-01 09:02:57 -0700 | [diff] [blame] | 281 | ACPI_WRITER(5tpm2, "TPM2", acpi_write_tpm2, 0); |
Simon Glass | 272a703 | 2020-09-22 12:45:32 -0600 | [diff] [blame] | 282 | |
Simon Glass | 6e6bc9b | 2021-12-01 09:03:00 -0700 | [diff] [blame] | 283 | int acpi_write_spcr(struct acpi_ctx *ctx, const struct acpi_writer *entry) |
Andy Shevchenko | 607dbd1 | 2019-07-14 19:23:57 +0300 | [diff] [blame] | 284 | { |
Andy Shevchenko | 4ca48c9 | 2018-11-20 23:52:38 +0200 | [diff] [blame] | 285 | struct serial_device_info serial_info = {0}; |
| 286 | ulong serial_address, serial_offset; |
Simon Glass | 6e6bc9b | 2021-12-01 09:03:00 -0700 | [diff] [blame] | 287 | struct acpi_table_header *header; |
| 288 | struct acpi_spcr *spcr; |
Simon Glass | daaff93 | 2018-12-28 14:23:08 -0700 | [diff] [blame] | 289 | struct udevice *dev; |
Andy Shevchenko | 4ca48c9 | 2018-11-20 23:52:38 +0200 | [diff] [blame] | 290 | uint serial_config; |
| 291 | uint serial_width; |
| 292 | int access_size; |
| 293 | int space_id; |
Andy Shevchenko | bf9c8e3 | 2019-02-28 17:19:54 +0200 | [diff] [blame] | 294 | int ret = -ENODEV; |
Andy Shevchenko | 4ca48c9 | 2018-11-20 23:52:38 +0200 | [diff] [blame] | 295 | |
Simon Glass | 6e6bc9b | 2021-12-01 09:03:00 -0700 | [diff] [blame] | 296 | spcr = ctx->current; |
| 297 | header = &spcr->header; |
| 298 | |
| 299 | memset(spcr, '\0', sizeof(struct acpi_spcr)); |
Wolfgang Wallner | 13c23e9 | 2020-09-16 16:57:53 +0200 | [diff] [blame] | 300 | |
Andy Shevchenko | 4ca48c9 | 2018-11-20 23:52:38 +0200 | [diff] [blame] | 301 | /* Fill out header fields */ |
| 302 | acpi_fill_header(header, "SPCR"); |
| 303 | header->length = sizeof(struct acpi_spcr); |
| 304 | header->revision = 2; |
| 305 | |
Simon Glass | 896c164 | 2018-12-28 14:23:10 -0700 | [diff] [blame] | 306 | /* Read the device once, here. It is reused below */ |
Andy Shevchenko | bf9c8e3 | 2019-02-28 17:19:54 +0200 | [diff] [blame] | 307 | dev = gd->cur_serial_dev; |
| 308 | if (dev) |
Simon Glass | 896c164 | 2018-12-28 14:23:10 -0700 | [diff] [blame] | 309 | ret = serial_getinfo(dev, &serial_info); |
Andy Shevchenko | 4ca48c9 | 2018-11-20 23:52:38 +0200 | [diff] [blame] | 310 | if (ret) |
| 311 | serial_info.type = SERIAL_CHIP_UNKNOWN; |
| 312 | |
| 313 | /* Encode chip type */ |
| 314 | switch (serial_info.type) { |
| 315 | case SERIAL_CHIP_16550_COMPATIBLE: |
| 316 | spcr->interface_type = ACPI_DBG2_16550_COMPATIBLE; |
| 317 | break; |
| 318 | case SERIAL_CHIP_UNKNOWN: |
| 319 | default: |
| 320 | spcr->interface_type = ACPI_DBG2_UNKNOWN; |
| 321 | break; |
| 322 | } |
| 323 | |
| 324 | /* Encode address space */ |
| 325 | switch (serial_info.addr_space) { |
| 326 | case SERIAL_ADDRESS_SPACE_MEMORY: |
| 327 | space_id = ACPI_ADDRESS_SPACE_MEMORY; |
| 328 | break; |
| 329 | case SERIAL_ADDRESS_SPACE_IO: |
| 330 | default: |
| 331 | space_id = ACPI_ADDRESS_SPACE_IO; |
| 332 | break; |
| 333 | } |
| 334 | |
| 335 | serial_width = serial_info.reg_width * 8; |
| 336 | serial_offset = serial_info.reg_offset << serial_info.reg_shift; |
| 337 | serial_address = serial_info.addr + serial_offset; |
| 338 | |
| 339 | /* Encode register access size */ |
| 340 | switch (serial_info.reg_shift) { |
| 341 | case 0: |
| 342 | access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS; |
| 343 | break; |
| 344 | case 1: |
| 345 | access_size = ACPI_ACCESS_SIZE_WORD_ACCESS; |
| 346 | break; |
| 347 | case 2: |
| 348 | access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS; |
| 349 | break; |
| 350 | case 3: |
| 351 | access_size = ACPI_ACCESS_SIZE_QWORD_ACCESS; |
| 352 | break; |
| 353 | default: |
| 354 | access_size = ACPI_ACCESS_SIZE_UNDEFINED; |
| 355 | break; |
| 356 | } |
| 357 | |
| 358 | debug("UART type %u @ %lx\n", spcr->interface_type, serial_address); |
| 359 | |
| 360 | /* Fill GAS */ |
| 361 | spcr->serial_port.space_id = space_id; |
| 362 | spcr->serial_port.bit_width = serial_width; |
| 363 | spcr->serial_port.bit_offset = 0; |
| 364 | spcr->serial_port.access_size = access_size; |
| 365 | spcr->serial_port.addrl = lower_32_bits(serial_address); |
| 366 | spcr->serial_port.addrh = upper_32_bits(serial_address); |
| 367 | |
| 368 | /* Encode baud rate */ |
| 369 | switch (serial_info.baudrate) { |
| 370 | case 9600: |
| 371 | spcr->baud_rate = 3; |
| 372 | break; |
| 373 | case 19200: |
| 374 | spcr->baud_rate = 4; |
| 375 | break; |
| 376 | case 57600: |
| 377 | spcr->baud_rate = 6; |
| 378 | break; |
| 379 | case 115200: |
| 380 | spcr->baud_rate = 7; |
| 381 | break; |
| 382 | default: |
| 383 | spcr->baud_rate = 0; |
| 384 | break; |
| 385 | } |
| 386 | |
Simon Glass | 896c164 | 2018-12-28 14:23:10 -0700 | [diff] [blame] | 387 | serial_config = SERIAL_DEFAULT_CONFIG; |
| 388 | if (dev) |
Simon Glass | daaff93 | 2018-12-28 14:23:08 -0700 | [diff] [blame] | 389 | ret = serial_getconfig(dev, &serial_config); |
Andy Shevchenko | 4ca48c9 | 2018-11-20 23:52:38 +0200 | [diff] [blame] | 390 | |
| 391 | spcr->parity = SERIAL_GET_PARITY(serial_config); |
| 392 | spcr->stop_bits = SERIAL_GET_STOP(serial_config); |
| 393 | |
| 394 | /* No PCI devices for now */ |
| 395 | spcr->pci_device_id = 0xffff; |
| 396 | spcr->pci_vendor_id = 0xffff; |
| 397 | |
Andy Shevchenko | 225cc8a | 2020-02-27 17:21:56 +0200 | [diff] [blame] | 398 | /* |
| 399 | * SPCR has no clue if the UART base clock speed is different |
| 400 | * to the default one. However, the SPCR 1.04 defines baud rate |
| 401 | * 0 as a preconfigured state of UART and OS is supposed not |
| 402 | * to touch the configuration of the serial device. |
| 403 | */ |
| 404 | if (serial_info.clock != SERIAL_DEFAULT_CLOCK) |
| 405 | spcr->baud_rate = 0; |
| 406 | |
Andy Shevchenko | 4ca48c9 | 2018-11-20 23:52:38 +0200 | [diff] [blame] | 407 | /* Fix checksum */ |
| 408 | header->checksum = table_compute_checksum((void *)spcr, header->length); |
Simon Glass | 6e6bc9b | 2021-12-01 09:03:00 -0700 | [diff] [blame] | 409 | |
| 410 | acpi_add_table(ctx, spcr); |
| 411 | acpi_inc(ctx, spcr->header.length); |
| 412 | |
| 413 | return 0; |
Andy Shevchenko | 4ca48c9 | 2018-11-20 23:52:38 +0200 | [diff] [blame] | 414 | } |
Simon Glass | 6e6bc9b | 2021-12-01 09:03:00 -0700 | [diff] [blame] | 415 | ACPI_WRITER(5spcr, "SPCR", acpi_write_spcr, 0); |
Andy Shevchenko | 4ca48c9 | 2018-11-20 23:52:38 +0200 | [diff] [blame] | 416 | |
Simon Glass | d2a98eb | 2021-12-01 09:02:53 -0700 | [diff] [blame] | 417 | int acpi_write_gnvs(struct acpi_ctx *ctx, const struct acpi_writer *entry) |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 418 | { |
Simon Glass | 0e11384 | 2020-04-26 09:19:47 -0600 | [diff] [blame] | 419 | ulong addr; |
Saket Sinha | 331141a | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 420 | |
Simon Glass | 6fe570a | 2020-09-22 12:44:53 -0600 | [diff] [blame] | 421 | if (!IS_ENABLED(CONFIG_ACPI_GNVS_EXTERNAL)) { |
Simon Glass | d2a98eb | 2021-12-01 09:02:53 -0700 | [diff] [blame] | 422 | int i; |
| 423 | |
| 424 | /* We need the DSDT to be done */ |
| 425 | if (!ctx->dsdt) |
| 426 | return log_msg_ret("dsdt", -EAGAIN); |
| 427 | |
Simon Glass | 6fe570a | 2020-09-22 12:44:53 -0600 | [diff] [blame] | 428 | /* Pack GNVS into the ACPI table area */ |
Simon Glass | 83c3cb5 | 2021-12-01 09:02:52 -0700 | [diff] [blame] | 429 | for (i = 0; i < ctx->dsdt->length; i++) { |
| 430 | u32 *gnvs = (u32 *)((u32)ctx->dsdt + i); |
Simon Glass | 0e11384 | 2020-04-26 09:19:47 -0600 | [diff] [blame] | 431 | |
Simon Glass | 6fe570a | 2020-09-22 12:44:53 -0600 | [diff] [blame] | 432 | if (*gnvs == ACPI_GNVS_ADDR) { |
| 433 | *gnvs = map_to_sysmem(ctx->current); |
Simon Glass | d2a98eb | 2021-12-01 09:02:53 -0700 | [diff] [blame] | 434 | log_debug("Fix up global NVS in DSDT to %#08x\n", |
| 435 | *gnvs); |
Simon Glass | 6fe570a | 2020-09-22 12:44:53 -0600 | [diff] [blame] | 436 | break; |
| 437 | } |
Bin Meng | d9050c6 | 2016-06-17 02:13:16 -0700 | [diff] [blame] | 438 | } |
Simon Glass | 6fe570a | 2020-09-22 12:44:53 -0600 | [diff] [blame] | 439 | |
| 440 | /* |
Simon Glass | d2a98eb | 2021-12-01 09:02:53 -0700 | [diff] [blame] | 441 | * Recalculate the length and update the DSDT checksum since we |
| 442 | * patched the GNVS address. Set the checksum to zero since it |
| 443 | * is part of the region being checksummed. |
Simon Glass | 6fe570a | 2020-09-22 12:44:53 -0600 | [diff] [blame] | 444 | */ |
Simon Glass | d2a98eb | 2021-12-01 09:02:53 -0700 | [diff] [blame] | 445 | ctx->dsdt->checksum = 0; |
| 446 | ctx->dsdt->checksum = table_compute_checksum((void *)ctx->dsdt, |
| 447 | ctx->dsdt->length); |
Bin Meng | d9050c6 | 2016-06-17 02:13:16 -0700 | [diff] [blame] | 448 | } |
| 449 | |
Simon Glass | d2a98eb | 2021-12-01 09:02:53 -0700 | [diff] [blame] | 450 | /* Fill in platform-specific global NVS variables */ |
Simon Glass | 9ed41e7 | 2020-07-07 21:32:05 -0600 | [diff] [blame] | 451 | addr = acpi_create_gnvs(ctx->current); |
| 452 | if (IS_ERR_VALUE(addr)) |
Simon Glass | d2a98eb | 2021-12-01 09:02:53 -0700 | [diff] [blame] | 453 | return log_msg_ret("gnvs", (int)addr); |
Simon Glass | 9ed41e7 | 2020-07-07 21:32:05 -0600 | [diff] [blame] | 454 | |
Simon Glass | 0e11384 | 2020-04-26 09:19:47 -0600 | [diff] [blame] | 455 | acpi_inc_align(ctx, sizeof(struct acpi_global_nvs)); |
Bin Meng | d9050c6 | 2016-06-17 02:13:16 -0700 | [diff] [blame] | 456 | |
Simon Glass | d2a98eb | 2021-12-01 09:02:53 -0700 | [diff] [blame] | 457 | return 0; |
| 458 | } |
| 459 | ACPI_WRITER(4gnvs, "GNVS", acpi_write_gnvs, 0); |
| 460 | |
Andy Shevchenko | 33e030b | 2022-03-30 18:49:18 +0300 | [diff] [blame] | 461 | static int acpi_write_fadt(struct acpi_ctx *ctx, |
| 462 | const struct acpi_writer *entry) |
| 463 | { |
| 464 | struct acpi_fadt *fadt; |
| 465 | |
| 466 | fadt = ctx->current; |
| 467 | acpi_create_fadt(fadt, ctx->facs, ctx->dsdt); |
| 468 | acpi_add_table(ctx, fadt); |
| 469 | |
| 470 | acpi_inc(ctx, sizeof(struct acpi_fadt)); |
| 471 | |
| 472 | return 0; |
| 473 | } |
| 474 | ACPI_WRITER(5fact, "FADT", acpi_write_fadt, 0); |
| 475 | |
Simon Glass | 4ffe8b0 | 2020-09-22 12:45:09 -0600 | [diff] [blame] | 476 | /** |
| 477 | * acpi_write_hpet() - Write out a HPET table |
| 478 | * |
| 479 | * Write out the table for High-Precision Event Timers |
| 480 | * |
| 481 | * @hpet: Place to put HPET table |
| 482 | */ |
| 483 | static int acpi_create_hpet(struct acpi_hpet *hpet) |
| 484 | { |
| 485 | struct acpi_table_header *header = &hpet->header; |
| 486 | struct acpi_gen_regaddr *addr = &hpet->addr; |
| 487 | |
| 488 | /* |
| 489 | * See IA-PC HPET (High Precision Event Timers) Specification v1.0a |
| 490 | * https://www.intel.com/content/dam/www/public/us/en/documents/technical-specifications/software-developers-hpet-spec-1-0a.pdf |
| 491 | */ |
| 492 | memset((void *)hpet, '\0', sizeof(struct acpi_hpet)); |
| 493 | |
| 494 | /* Fill out header fields. */ |
| 495 | acpi_fill_header(header, "HPET"); |
| 496 | |
| 497 | header->aslc_revision = ASL_REVISION; |
| 498 | header->length = sizeof(struct acpi_hpet); |
| 499 | header->revision = acpi_get_table_revision(ACPITAB_HPET); |
| 500 | |
| 501 | /* Fill out HPET address */ |
| 502 | addr->space_id = 0; /* Memory */ |
| 503 | addr->bit_width = 64; |
| 504 | addr->bit_offset = 0; |
| 505 | addr->addrl = CONFIG_HPET_ADDRESS & 0xffffffff; |
| 506 | addr->addrh = ((unsigned long long)CONFIG_HPET_ADDRESS) >> 32; |
| 507 | |
| 508 | hpet->id = *(u32 *)CONFIG_HPET_ADDRESS; |
| 509 | hpet->number = 0; |
| 510 | hpet->min_tick = 0; /* HPET_MIN_TICKS */ |
| 511 | |
| 512 | header->checksum = table_compute_checksum(hpet, |
| 513 | sizeof(struct acpi_hpet)); |
| 514 | |
| 515 | return 0; |
| 516 | } |
| 517 | |
| 518 | int acpi_write_hpet(struct acpi_ctx *ctx) |
| 519 | { |
| 520 | struct acpi_hpet *hpet; |
| 521 | int ret; |
| 522 | |
| 523 | log_debug("ACPI: * HPET\n"); |
| 524 | |
| 525 | hpet = ctx->current; |
| 526 | acpi_inc_align(ctx, sizeof(struct acpi_hpet)); |
| 527 | acpi_create_hpet(hpet); |
| 528 | ret = acpi_add_table(ctx, hpet); |
| 529 | if (ret) |
| 530 | return log_msg_ret("add", ret); |
| 531 | |
| 532 | return 0; |
| 533 | } |
Simon Glass | 9597189 | 2020-09-22 12:45:10 -0600 | [diff] [blame] | 534 | |
| 535 | int acpi_write_dbg2_pci_uart(struct acpi_ctx *ctx, struct udevice *dev, |
| 536 | uint access_size) |
| 537 | { |
| 538 | struct acpi_dbg2_header *dbg2 = ctx->current; |
| 539 | char path[ACPI_PATH_MAX]; |
| 540 | struct acpi_gen_regaddr address; |
| 541 | phys_addr_t addr; |
| 542 | int ret; |
| 543 | |
| 544 | if (!device_active(dev)) { |
| 545 | log_info("Device not enabled\n"); |
| 546 | return -EACCES; |
| 547 | } |
| 548 | /* |
| 549 | * PCI devices don't remember their resource allocation information in |
| 550 | * U-Boot at present. We assume that MMIO is used for the UART and that |
| 551 | * the address space is 32 bytes: ns16550 uses 8 registers of up to |
| 552 | * 32-bits each. This is only for debugging so it is not a big deal. |
| 553 | */ |
| 554 | addr = dm_pci_read_bar32(dev, 0); |
Simon Glass | 7508120 | 2020-11-04 09:57:41 -0700 | [diff] [blame] | 555 | log_debug("UART addr %lx\n", (ulong)addr); |
Simon Glass | 9597189 | 2020-09-22 12:45:10 -0600 | [diff] [blame] | 556 | |
| 557 | memset(&address, '\0', sizeof(address)); |
| 558 | address.space_id = ACPI_ADDRESS_SPACE_MEMORY; |
| 559 | address.addrl = (uint32_t)addr; |
| 560 | address.addrh = (uint32_t)((addr >> 32) & 0xffffffff); |
| 561 | address.access_size = access_size; |
| 562 | |
| 563 | ret = acpi_device_path(dev, path, sizeof(path)); |
| 564 | if (ret) |
| 565 | return log_msg_ret("path", ret); |
| 566 | acpi_create_dbg2(dbg2, ACPI_DBG2_SERIAL_PORT, |
| 567 | ACPI_DBG2_16550_COMPATIBLE, &address, 0x1000, path); |
| 568 | |
| 569 | acpi_inc_align(ctx, dbg2->header.length); |
| 570 | acpi_add_table(ctx, dbg2); |
| 571 | |
| 572 | return 0; |
| 573 | } |
Simon Glass | 87cf8d2 | 2020-09-22 12:45:16 -0600 | [diff] [blame] | 574 | |
| 575 | void acpi_fadt_common(struct acpi_fadt *fadt, struct acpi_facs *facs, |
| 576 | void *dsdt) |
| 577 | { |
| 578 | struct acpi_table_header *header = &fadt->header; |
| 579 | |
| 580 | memset((void *)fadt, '\0', sizeof(struct acpi_fadt)); |
| 581 | |
| 582 | acpi_fill_header(header, "FACP"); |
| 583 | header->length = sizeof(struct acpi_fadt); |
| 584 | header->revision = 4; |
| 585 | memcpy(header->oem_id, OEM_ID, 6); |
| 586 | memcpy(header->oem_table_id, OEM_TABLE_ID, 8); |
| 587 | memcpy(header->aslc_id, ASLC_ID, 4); |
| 588 | header->aslc_revision = 1; |
| 589 | |
| 590 | fadt->firmware_ctrl = (unsigned long)facs; |
| 591 | fadt->dsdt = (unsigned long)dsdt; |
| 592 | |
| 593 | fadt->x_firmware_ctl_l = (unsigned long)facs; |
| 594 | fadt->x_firmware_ctl_h = 0; |
| 595 | fadt->x_dsdt_l = (unsigned long)dsdt; |
| 596 | fadt->x_dsdt_h = 0; |
| 597 | |
| 598 | fadt->preferred_pm_profile = ACPI_PM_MOBILE; |
| 599 | |
| 600 | /* Use ACPI 3.0 revision */ |
| 601 | fadt->header.revision = 4; |
| 602 | } |
| 603 | |
| 604 | void acpi_create_dmar_drhd(struct acpi_ctx *ctx, uint flags, uint segment, |
| 605 | u64 bar) |
| 606 | { |
| 607 | struct dmar_entry *drhd = ctx->current; |
| 608 | |
| 609 | memset(drhd, '\0', sizeof(*drhd)); |
| 610 | drhd->type = DMAR_DRHD; |
| 611 | drhd->length = sizeof(*drhd); /* will be fixed up later */ |
| 612 | drhd->flags = flags; |
| 613 | drhd->segment = segment; |
| 614 | drhd->bar = bar; |
| 615 | acpi_inc(ctx, drhd->length); |
| 616 | } |
| 617 | |
| 618 | void acpi_create_dmar_rmrr(struct acpi_ctx *ctx, uint segment, u64 bar, |
| 619 | u64 limit) |
| 620 | { |
| 621 | struct dmar_rmrr_entry *rmrr = ctx->current; |
| 622 | |
| 623 | memset(rmrr, '\0', sizeof(*rmrr)); |
| 624 | rmrr->type = DMAR_RMRR; |
| 625 | rmrr->length = sizeof(*rmrr); /* will be fixed up later */ |
| 626 | rmrr->segment = segment; |
| 627 | rmrr->bar = bar; |
| 628 | rmrr->limit = limit; |
| 629 | acpi_inc(ctx, rmrr->length); |
| 630 | } |
| 631 | |
| 632 | void acpi_dmar_drhd_fixup(struct acpi_ctx *ctx, void *base) |
| 633 | { |
| 634 | struct dmar_entry *drhd = base; |
| 635 | |
| 636 | drhd->length = ctx->current - base; |
| 637 | } |
| 638 | |
| 639 | void acpi_dmar_rmrr_fixup(struct acpi_ctx *ctx, void *base) |
| 640 | { |
| 641 | struct dmar_rmrr_entry *rmrr = base; |
| 642 | |
| 643 | rmrr->length = ctx->current - base; |
| 644 | } |
| 645 | |
| 646 | static int acpi_create_dmar_ds(struct acpi_ctx *ctx, enum dev_scope_type type, |
| 647 | uint enumeration_id, pci_dev_t bdf) |
| 648 | { |
| 649 | /* we don't support longer paths yet */ |
| 650 | const size_t dev_scope_length = sizeof(struct dev_scope) + 2; |
| 651 | struct dev_scope *ds = ctx->current; |
| 652 | |
| 653 | memset(ds, '\0', dev_scope_length); |
| 654 | ds->type = type; |
| 655 | ds->length = dev_scope_length; |
| 656 | ds->enumeration = enumeration_id; |
| 657 | ds->start_bus = PCI_BUS(bdf); |
| 658 | ds->path[0].dev = PCI_DEV(bdf); |
| 659 | ds->path[0].fn = PCI_FUNC(bdf); |
| 660 | |
| 661 | return ds->length; |
| 662 | } |
| 663 | |
| 664 | int acpi_create_dmar_ds_pci_br(struct acpi_ctx *ctx, pci_dev_t bdf) |
| 665 | { |
| 666 | return acpi_create_dmar_ds(ctx, SCOPE_PCI_SUB, 0, bdf); |
| 667 | } |
| 668 | |
| 669 | int acpi_create_dmar_ds_pci(struct acpi_ctx *ctx, pci_dev_t bdf) |
| 670 | { |
| 671 | return acpi_create_dmar_ds(ctx, SCOPE_PCI_ENDPOINT, 0, bdf); |
| 672 | } |
| 673 | |
| 674 | int acpi_create_dmar_ds_ioapic(struct acpi_ctx *ctx, uint enumeration_id, |
| 675 | pci_dev_t bdf) |
| 676 | { |
| 677 | return acpi_create_dmar_ds(ctx, SCOPE_IOAPIC, enumeration_id, bdf); |
| 678 | } |
| 679 | |
| 680 | int acpi_create_dmar_ds_msi_hpet(struct acpi_ctx *ctx, uint enumeration_id, |
| 681 | pci_dev_t bdf) |
| 682 | { |
| 683 | return acpi_create_dmar_ds(ctx, SCOPE_MSI_HPET, enumeration_id, bdf); |
| 684 | } |