Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Based on acpi.c from coreboot |
| 3 | * |
| 4 | * Copyright (C) 2015, Saket Sinha <saket.sinha89@gmail.com> |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 5 | * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com> |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 6 | * |
| 7 | * SPDX-License-Identifier: GPL-2.0+ |
| 8 | */ |
| 9 | |
| 10 | #include <common.h> |
| 11 | #include <cpu.h> |
| 12 | #include <dm.h> |
| 13 | #include <dm/uclass-internal.h> |
Andy Shevchenko | 684c4cd | 2017-07-21 22:32:02 +0300 | [diff] [blame] | 14 | #include <version.h> |
Bin Meng | 79c2c25 | 2016-06-17 02:13:16 -0700 | [diff] [blame] | 15 | #include <asm/acpi/global_nvs.h> |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 16 | #include <asm/acpi_table.h> |
Bin Meng | 6aef68d | 2016-05-11 07:45:03 -0700 | [diff] [blame] | 17 | #include <asm/io.h> |
Andy Shevchenko | b156da9 | 2017-07-21 22:32:04 +0300 | [diff] [blame] | 18 | #include <asm/ioapic.h> |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 19 | #include <asm/lapic.h> |
Andy Shevchenko | b156da9 | 2017-07-21 22:32:04 +0300 | [diff] [blame] | 20 | #include <asm/mpspec.h> |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 21 | #include <asm/tables.h> |
Bin Meng | 79c2c25 | 2016-06-17 02:13:16 -0700 | [diff] [blame] | 22 | #include <asm/arch/global_nvs.h> |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 23 | |
| 24 | /* |
Bin Meng | dfbb18b | 2016-05-07 07:46:24 -0700 | [diff] [blame] | 25 | * IASL compiles the dsdt entries and writes the hex values |
| 26 | * to a C array AmlCode[] (see dsdt.c). |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 27 | */ |
| 28 | extern const unsigned char AmlCode[]; |
| 29 | |
Andy Shevchenko | 3469bf4 | 2018-01-10 19:40:15 +0200 | [diff] [blame] | 30 | /* ACPI RSDP address to be used in boot parameters */ |
Bin Meng | 45410da | 2018-01-30 05:01:16 -0800 | [diff] [blame] | 31 | static ulong acpi_rsdp_addr; |
Andy Shevchenko | 3469bf4 | 2018-01-10 19:40:15 +0200 | [diff] [blame] | 32 | |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 33 | static void acpi_write_rsdp(struct acpi_rsdp *rsdp, struct acpi_rsdt *rsdt, |
| 34 | struct acpi_xsdt *xsdt) |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 35 | { |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 36 | memset(rsdp, 0, sizeof(struct acpi_rsdp)); |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 37 | |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 38 | memcpy(rsdp->signature, RSDP_SIG, 8); |
| 39 | memcpy(rsdp->oem_id, OEM_ID, 6); |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 40 | |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 41 | rsdp->length = sizeof(struct acpi_rsdp); |
| 42 | rsdp->rsdt_address = (u32)rsdt; |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 43 | |
| 44 | /* |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 45 | * Revision: ACPI 1.0: 0, ACPI 2.0/3.0/4.0: 2 |
| 46 | * |
| 47 | * Some OSes expect an XSDT to be present for RSD PTR revisions >= 2. |
| 48 | * If we don't have an ACPI XSDT, force ACPI 1.0 (and thus RSD PTR |
| 49 | * revision 0) |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 50 | */ |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 51 | if (xsdt == NULL) { |
| 52 | rsdp->revision = ACPI_RSDP_REV_ACPI_1_0; |
| 53 | } else { |
| 54 | rsdp->xsdt_address = (u64)(u32)xsdt; |
| 55 | rsdp->revision = ACPI_RSDP_REV_ACPI_2_0; |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 56 | } |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 57 | |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 58 | /* Calculate checksums */ |
| 59 | rsdp->checksum = table_compute_checksum((void *)rsdp, 20); |
| 60 | rsdp->ext_checksum = table_compute_checksum((void *)rsdp, |
| 61 | sizeof(struct acpi_rsdp)); |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 62 | } |
| 63 | |
Bin Meng | dfbb18b | 2016-05-07 07:46:24 -0700 | [diff] [blame] | 64 | void acpi_fill_header(struct acpi_table_header *header, char *signature) |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 65 | { |
Bin Meng | dfbb18b | 2016-05-07 07:46:24 -0700 | [diff] [blame] | 66 | memcpy(header->signature, signature, 4); |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 67 | memcpy(header->oem_id, OEM_ID, 6); |
Bin Meng | 8a8c035 | 2016-05-07 07:46:21 -0700 | [diff] [blame] | 68 | memcpy(header->oem_table_id, OEM_TABLE_ID, 8); |
Andy Shevchenko | 684c4cd | 2017-07-21 22:32:02 +0300 | [diff] [blame] | 69 | header->oem_revision = U_BOOT_BUILD_DATE; |
Bin Meng | 8a8c035 | 2016-05-07 07:46:21 -0700 | [diff] [blame] | 70 | memcpy(header->aslc_id, ASLC_ID, 4); |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 71 | } |
| 72 | |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 73 | static void acpi_write_rsdt(struct acpi_rsdt *rsdt) |
| 74 | { |
Bin Meng | 8a8c035 | 2016-05-07 07:46:21 -0700 | [diff] [blame] | 75 | struct acpi_table_header *header = &(rsdt->header); |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 76 | |
| 77 | /* Fill out header fields */ |
Bin Meng | dfbb18b | 2016-05-07 07:46:24 -0700 | [diff] [blame] | 78 | acpi_fill_header(header, "RSDT"); |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 79 | header->length = sizeof(struct acpi_rsdt); |
Bin Meng | 7e6343e | 2016-05-07 07:46:28 -0700 | [diff] [blame] | 80 | header->revision = 1; |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 81 | |
| 82 | /* Entries are filled in later, we come with an empty set */ |
| 83 | |
| 84 | /* Fix checksum */ |
| 85 | header->checksum = table_compute_checksum((void *)rsdt, |
| 86 | sizeof(struct acpi_rsdt)); |
| 87 | } |
| 88 | |
| 89 | static void acpi_write_xsdt(struct acpi_xsdt *xsdt) |
| 90 | { |
Bin Meng | 8a8c035 | 2016-05-07 07:46:21 -0700 | [diff] [blame] | 91 | struct acpi_table_header *header = &(xsdt->header); |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 92 | |
| 93 | /* Fill out header fields */ |
Bin Meng | dfbb18b | 2016-05-07 07:46:24 -0700 | [diff] [blame] | 94 | acpi_fill_header(header, "XSDT"); |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 95 | header->length = sizeof(struct acpi_xsdt); |
Bin Meng | 7e6343e | 2016-05-07 07:46:28 -0700 | [diff] [blame] | 96 | header->revision = 1; |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 97 | |
| 98 | /* Entries are filled in later, we come with an empty set */ |
| 99 | |
| 100 | /* Fix checksum */ |
| 101 | header->checksum = table_compute_checksum((void *)xsdt, |
| 102 | sizeof(struct acpi_xsdt)); |
| 103 | } |
| 104 | |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 105 | /** |
| 106 | * Add an ACPI table to the RSDT (and XSDT) structure, recalculate length |
| 107 | * and checksum. |
| 108 | */ |
| 109 | static void acpi_add_table(struct acpi_rsdp *rsdp, void *table) |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 110 | { |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 111 | int i, entries_num; |
| 112 | struct acpi_rsdt *rsdt; |
| 113 | struct acpi_xsdt *xsdt = NULL; |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 114 | |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 115 | /* The RSDT is mandatory while the XSDT is not */ |
| 116 | rsdt = (struct acpi_rsdt *)rsdp->rsdt_address; |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 117 | |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 118 | if (rsdp->xsdt_address) |
| 119 | xsdt = (struct acpi_xsdt *)((u32)rsdp->xsdt_address); |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 120 | |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 121 | /* This should always be MAX_ACPI_TABLES */ |
| 122 | entries_num = ARRAY_SIZE(rsdt->entry); |
| 123 | |
| 124 | for (i = 0; i < entries_num; i++) { |
| 125 | if (rsdt->entry[i] == 0) |
| 126 | break; |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 127 | } |
| 128 | |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 129 | if (i >= entries_num) { |
| 130 | debug("ACPI: Error: too many tables\n"); |
| 131 | return; |
| 132 | } |
| 133 | |
| 134 | /* Add table to the RSDT */ |
| 135 | rsdt->entry[i] = (u32)table; |
| 136 | |
| 137 | /* Fix RSDT length or the kernel will assume invalid entries */ |
| 138 | rsdt->header.length = sizeof(struct acpi_table_header) + |
| 139 | (sizeof(u32) * (i + 1)); |
| 140 | |
| 141 | /* Re-calculate checksum */ |
| 142 | rsdt->header.checksum = 0; |
| 143 | rsdt->header.checksum = table_compute_checksum((u8 *)rsdt, |
| 144 | rsdt->header.length); |
| 145 | |
| 146 | /* |
| 147 | * And now the same thing for the XSDT. We use the same index as for |
| 148 | * now we want the XSDT and RSDT to always be in sync in U-Boot |
| 149 | */ |
| 150 | if (xsdt) { |
| 151 | /* Add table to the XSDT */ |
| 152 | xsdt->entry[i] = (u64)(u32)table; |
| 153 | |
| 154 | /* Fix XSDT length */ |
| 155 | xsdt->header.length = sizeof(struct acpi_table_header) + |
| 156 | (sizeof(u64) * (i + 1)); |
| 157 | |
| 158 | /* Re-calculate checksum */ |
| 159 | xsdt->header.checksum = 0; |
| 160 | xsdt->header.checksum = table_compute_checksum((u8 *)xsdt, |
| 161 | xsdt->header.length); |
| 162 | } |
| 163 | } |
| 164 | |
| 165 | static void acpi_create_facs(struct acpi_facs *facs) |
| 166 | { |
| 167 | memset((void *)facs, 0, sizeof(struct acpi_facs)); |
| 168 | |
| 169 | memcpy(facs->signature, "FACS", 4); |
| 170 | facs->length = sizeof(struct acpi_facs); |
| 171 | facs->hardware_signature = 0; |
| 172 | facs->firmware_waking_vector = 0; |
| 173 | facs->global_lock = 0; |
| 174 | facs->flags = 0; |
| 175 | facs->x_firmware_waking_vector_l = 0; |
| 176 | facs->x_firmware_waking_vector_h = 0; |
| 177 | facs->version = 1; |
| 178 | } |
| 179 | |
| 180 | static int acpi_create_madt_lapic(struct acpi_madt_lapic *lapic, |
| 181 | u8 cpu, u8 apic) |
| 182 | { |
| 183 | lapic->type = ACPI_APIC_LAPIC; |
| 184 | lapic->length = sizeof(struct acpi_madt_lapic); |
| 185 | lapic->flags = LOCAL_APIC_FLAG_ENABLED; |
| 186 | lapic->processor_id = cpu; |
| 187 | lapic->apic_id = apic; |
| 188 | |
| 189 | return lapic->length; |
| 190 | } |
| 191 | |
Bin Meng | fc4f5cc | 2016-05-07 07:46:30 -0700 | [diff] [blame] | 192 | int acpi_create_madt_lapics(u32 current) |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 193 | { |
| 194 | struct udevice *dev; |
George McCollister | 8a1a759 | 2016-06-07 13:40:18 -0500 | [diff] [blame] | 195 | int total_length = 0; |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 196 | |
| 197 | for (uclass_find_first_device(UCLASS_CPU, &dev); |
| 198 | dev; |
| 199 | uclass_find_next_device(&dev)) { |
| 200 | struct cpu_platdata *plat = dev_get_parent_platdata(dev); |
George McCollister | 8a1a759 | 2016-06-07 13:40:18 -0500 | [diff] [blame] | 201 | int length = acpi_create_madt_lapic( |
| 202 | (struct acpi_madt_lapic *)current, |
| 203 | plat->cpu_id, plat->cpu_id); |
Bin Meng | fc4f5cc | 2016-05-07 07:46:30 -0700 | [diff] [blame] | 204 | current += length; |
George McCollister | 8a1a759 | 2016-06-07 13:40:18 -0500 | [diff] [blame] | 205 | total_length += length; |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 206 | } |
| 207 | |
George McCollister | 8a1a759 | 2016-06-07 13:40:18 -0500 | [diff] [blame] | 208 | return total_length; |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 209 | } |
| 210 | |
| 211 | int acpi_create_madt_ioapic(struct acpi_madt_ioapic *ioapic, u8 id, |
| 212 | u32 addr, u32 gsi_base) |
| 213 | { |
| 214 | ioapic->type = ACPI_APIC_IOAPIC; |
| 215 | ioapic->length = sizeof(struct acpi_madt_ioapic); |
| 216 | ioapic->reserved = 0x00; |
| 217 | ioapic->gsi_base = gsi_base; |
| 218 | ioapic->ioapic_id = id; |
| 219 | ioapic->ioapic_addr = addr; |
| 220 | |
| 221 | return ioapic->length; |
| 222 | } |
| 223 | |
| 224 | int acpi_create_madt_irqoverride(struct acpi_madt_irqoverride *irqoverride, |
| 225 | u8 bus, u8 source, u32 gsirq, u16 flags) |
| 226 | { |
| 227 | irqoverride->type = ACPI_APIC_IRQ_SRC_OVERRIDE; |
| 228 | irqoverride->length = sizeof(struct acpi_madt_irqoverride); |
| 229 | irqoverride->bus = bus; |
| 230 | irqoverride->source = source; |
| 231 | irqoverride->gsirq = gsirq; |
| 232 | irqoverride->flags = flags; |
| 233 | |
| 234 | return irqoverride->length; |
| 235 | } |
| 236 | |
| 237 | int acpi_create_madt_lapic_nmi(struct acpi_madt_lapic_nmi *lapic_nmi, |
| 238 | u8 cpu, u16 flags, u8 lint) |
| 239 | { |
| 240 | lapic_nmi->type = ACPI_APIC_LAPIC_NMI; |
| 241 | lapic_nmi->length = sizeof(struct acpi_madt_lapic_nmi); |
| 242 | lapic_nmi->flags = flags; |
| 243 | lapic_nmi->processor_id = cpu; |
| 244 | lapic_nmi->lint = lint; |
| 245 | |
| 246 | return lapic_nmi->length; |
| 247 | } |
| 248 | |
Andy Shevchenko | b156da9 | 2017-07-21 22:32:04 +0300 | [diff] [blame] | 249 | static int acpi_create_madt_irq_overrides(u32 current) |
| 250 | { |
| 251 | struct acpi_madt_irqoverride *irqovr; |
| 252 | u16 sci_flags = MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_HIGH; |
| 253 | int length = 0; |
| 254 | |
| 255 | irqovr = (void *)current; |
| 256 | length += acpi_create_madt_irqoverride(irqovr, 0, 0, 2, 0); |
| 257 | |
| 258 | irqovr = (void *)(current + length); |
| 259 | length += acpi_create_madt_irqoverride(irqovr, 0, 9, 9, sci_flags); |
| 260 | |
| 261 | return length; |
| 262 | } |
| 263 | |
| 264 | __weak u32 acpi_fill_madt(u32 current) |
| 265 | { |
| 266 | current += acpi_create_madt_lapics(current); |
| 267 | |
| 268 | current += acpi_create_madt_ioapic((struct acpi_madt_ioapic *)current, |
| 269 | io_apic_read(IO_APIC_ID) >> 24, IO_APIC_ADDR, 0); |
| 270 | |
| 271 | current += acpi_create_madt_irq_overrides(current); |
| 272 | |
| 273 | return current; |
| 274 | } |
| 275 | |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 276 | static void acpi_create_madt(struct acpi_madt *madt) |
| 277 | { |
| 278 | struct acpi_table_header *header = &(madt->header); |
Bin Meng | 7e79a6b | 2016-05-07 07:46:26 -0700 | [diff] [blame] | 279 | u32 current = (u32)madt + sizeof(struct acpi_madt); |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 280 | |
| 281 | memset((void *)madt, 0, sizeof(struct acpi_madt)); |
| 282 | |
| 283 | /* Fill out header fields */ |
| 284 | acpi_fill_header(header, "APIC"); |
| 285 | header->length = sizeof(struct acpi_madt); |
Bin Meng | 7e6343e | 2016-05-07 07:46:28 -0700 | [diff] [blame] | 286 | header->revision = 4; |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 287 | |
| 288 | madt->lapic_addr = LAPIC_DEFAULT_BASE; |
| 289 | madt->flags = ACPI_MADT_PCAT_COMPAT; |
| 290 | |
| 291 | current = acpi_fill_madt(current); |
| 292 | |
| 293 | /* (Re)calculate length and checksum */ |
Bin Meng | 7e79a6b | 2016-05-07 07:46:26 -0700 | [diff] [blame] | 294 | header->length = current - (u32)madt; |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 295 | |
| 296 | header->checksum = table_compute_checksum((void *)madt, header->length); |
| 297 | } |
| 298 | |
Andy Shevchenko | ace7762 | 2017-07-21 22:32:05 +0300 | [diff] [blame] | 299 | int acpi_create_mcfg_mmconfig(struct acpi_mcfg_mmconfig *mmconfig, u32 base, |
| 300 | u16 seg_nr, u8 start, u8 end) |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 301 | { |
| 302 | memset(mmconfig, 0, sizeof(*mmconfig)); |
| 303 | mmconfig->base_address_l = base; |
| 304 | mmconfig->base_address_h = 0; |
| 305 | mmconfig->pci_segment_group_number = seg_nr; |
| 306 | mmconfig->start_bus_number = start; |
| 307 | mmconfig->end_bus_number = end; |
| 308 | |
| 309 | return sizeof(struct acpi_mcfg_mmconfig); |
| 310 | } |
| 311 | |
Andy Shevchenko | ace7762 | 2017-07-21 22:32:05 +0300 | [diff] [blame] | 312 | __weak u32 acpi_fill_mcfg(u32 current) |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 313 | { |
| 314 | current += acpi_create_mcfg_mmconfig |
| 315 | ((struct acpi_mcfg_mmconfig *)current, |
| 316 | CONFIG_PCIE_ECAM_BASE, 0x0, 0x0, 255); |
| 317 | |
| 318 | return current; |
| 319 | } |
| 320 | |
| 321 | /* MCFG is defined in the PCI Firmware Specification 3.0 */ |
| 322 | static void acpi_create_mcfg(struct acpi_mcfg *mcfg) |
| 323 | { |
| 324 | struct acpi_table_header *header = &(mcfg->header); |
Bin Meng | 7e79a6b | 2016-05-07 07:46:26 -0700 | [diff] [blame] | 325 | u32 current = (u32)mcfg + sizeof(struct acpi_mcfg); |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 326 | |
| 327 | memset((void *)mcfg, 0, sizeof(struct acpi_mcfg)); |
| 328 | |
| 329 | /* Fill out header fields */ |
| 330 | acpi_fill_header(header, "MCFG"); |
| 331 | header->length = sizeof(struct acpi_mcfg); |
Bin Meng | 7e6343e | 2016-05-07 07:46:28 -0700 | [diff] [blame] | 332 | header->revision = 1; |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 333 | |
| 334 | current = acpi_fill_mcfg(current); |
| 335 | |
| 336 | /* (Re)calculate length and checksum */ |
Bin Meng | 7e79a6b | 2016-05-07 07:46:26 -0700 | [diff] [blame] | 337 | header->length = current - (u32)mcfg; |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 338 | header->checksum = table_compute_checksum((void *)mcfg, header->length); |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 339 | } |
| 340 | |
Bin Meng | 9957278 | 2017-04-21 07:24:43 -0700 | [diff] [blame] | 341 | void enter_acpi_mode(int pm1_cnt) |
Bin Meng | 6aef68d | 2016-05-11 07:45:03 -0700 | [diff] [blame] | 342 | { |
Bin Meng | b208d19 | 2017-04-21 07:24:42 -0700 | [diff] [blame] | 343 | u16 val = inw(pm1_cnt); |
| 344 | |
Bin Meng | 6aef68d | 2016-05-11 07:45:03 -0700 | [diff] [blame] | 345 | /* |
| 346 | * PM1_CNT register bit0 selects the power management event to be |
| 347 | * either an SCI or SMI interrupt. When this bit is set, then power |
| 348 | * management events will generate an SCI interrupt. When this bit |
| 349 | * is reset power management events will generate an SMI interrupt. |
| 350 | * |
| 351 | * Per ACPI spec, it is the responsibility of the hardware to set |
| 352 | * or reset this bit. OSPM always preserves this bit position. |
| 353 | * |
| 354 | * U-Boot does not support SMI. And we don't have plan to support |
| 355 | * anything running in SMM within U-Boot. To create a legacy-free |
| 356 | * system, and expose ourselves to OSPM as working under ACPI mode |
| 357 | * already, turn this bit on. |
| 358 | */ |
Bin Meng | b208d19 | 2017-04-21 07:24:42 -0700 | [diff] [blame] | 359 | outw(val | PM1_CNT_SCI_EN, pm1_cnt); |
Bin Meng | 6aef68d | 2016-05-11 07:45:03 -0700 | [diff] [blame] | 360 | } |
| 361 | |
Miao Yan | fa287b1 | 2016-01-20 01:57:06 -0800 | [diff] [blame] | 362 | /* |
Andy Shevchenko | 7b36dbd | 2018-01-10 19:33:10 +0200 | [diff] [blame] | 363 | * QEMU's version of write_acpi_tables is defined in drivers/misc/qfw.c |
Miao Yan | fa287b1 | 2016-01-20 01:57:06 -0800 | [diff] [blame] | 364 | */ |
Simon Glass | 42fd8c1 | 2017-01-16 07:03:35 -0700 | [diff] [blame] | 365 | ulong write_acpi_tables(ulong start) |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 366 | { |
Bin Meng | 358bb3f | 2016-02-27 22:58:00 -0800 | [diff] [blame] | 367 | u32 current; |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 368 | struct acpi_rsdp *rsdp; |
| 369 | struct acpi_rsdt *rsdt; |
| 370 | struct acpi_xsdt *xsdt; |
| 371 | struct acpi_facs *facs; |
Bin Meng | 8a8c035 | 2016-05-07 07:46:21 -0700 | [diff] [blame] | 372 | struct acpi_table_header *dsdt; |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 373 | struct acpi_fadt *fadt; |
| 374 | struct acpi_mcfg *mcfg; |
| 375 | struct acpi_madt *madt; |
Bin Meng | 79c2c25 | 2016-06-17 02:13:16 -0700 | [diff] [blame] | 376 | int i; |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 377 | |
| 378 | current = start; |
| 379 | |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 380 | /* Align ACPI tables to 16 byte */ |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 381 | current = ALIGN(current, 16); |
| 382 | |
Simon Glass | 42fd8c1 | 2017-01-16 07:03:35 -0700 | [diff] [blame] | 383 | debug("ACPI: Writing ACPI tables at %lx\n", start); |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 384 | |
| 385 | /* We need at least an RSDP and an RSDT Table */ |
| 386 | rsdp = (struct acpi_rsdp *)current; |
| 387 | current += sizeof(struct acpi_rsdp); |
| 388 | current = ALIGN(current, 16); |
| 389 | rsdt = (struct acpi_rsdt *)current; |
| 390 | current += sizeof(struct acpi_rsdt); |
| 391 | current = ALIGN(current, 16); |
| 392 | xsdt = (struct acpi_xsdt *)current; |
| 393 | current += sizeof(struct acpi_xsdt); |
Bin Meng | 25e133e | 2016-05-07 07:46:27 -0700 | [diff] [blame] | 394 | /* |
| 395 | * Per ACPI spec, the FACS table address must be aligned to a 64 byte |
| 396 | * boundary (Windows checks this, but Linux does not). |
| 397 | */ |
| 398 | current = ALIGN(current, 64); |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 399 | |
| 400 | /* clear all table memory */ |
| 401 | memset((void *)start, 0, current - start); |
| 402 | |
| 403 | acpi_write_rsdp(rsdp, rsdt, xsdt); |
| 404 | acpi_write_rsdt(rsdt); |
| 405 | acpi_write_xsdt(xsdt); |
| 406 | |
| 407 | debug("ACPI: * FACS\n"); |
| 408 | facs = (struct acpi_facs *)current; |
| 409 | current += sizeof(struct acpi_facs); |
| 410 | current = ALIGN(current, 16); |
| 411 | |
| 412 | acpi_create_facs(facs); |
| 413 | |
| 414 | debug("ACPI: * DSDT\n"); |
Bin Meng | 8a8c035 | 2016-05-07 07:46:21 -0700 | [diff] [blame] | 415 | dsdt = (struct acpi_table_header *)current; |
| 416 | memcpy(dsdt, &AmlCode, sizeof(struct acpi_table_header)); |
Bin Meng | 10fcabe | 2016-05-11 07:45:05 -0700 | [diff] [blame] | 417 | current += sizeof(struct acpi_table_header); |
| 418 | memcpy((char *)current, |
| 419 | (char *)&AmlCode + sizeof(struct acpi_table_header), |
| 420 | dsdt->length - sizeof(struct acpi_table_header)); |
| 421 | current += dsdt->length - sizeof(struct acpi_table_header); |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 422 | current = ALIGN(current, 16); |
| 423 | |
Bin Meng | 79c2c25 | 2016-06-17 02:13:16 -0700 | [diff] [blame] | 424 | /* Pack GNVS into the ACPI table area */ |
| 425 | for (i = 0; i < dsdt->length; i++) { |
| 426 | u32 *gnvs = (u32 *)((u32)dsdt + i); |
| 427 | if (*gnvs == ACPI_GNVS_ADDR) { |
| 428 | debug("Fix up global NVS in DSDT to 0x%08x\n", current); |
| 429 | *gnvs = current; |
| 430 | break; |
| 431 | } |
| 432 | } |
| 433 | |
| 434 | /* Update DSDT checksum since we patched the GNVS address */ |
| 435 | dsdt->checksum = 0; |
| 436 | dsdt->checksum = table_compute_checksum((void *)dsdt, dsdt->length); |
| 437 | |
| 438 | /* Fill in platform-specific global NVS variables */ |
| 439 | acpi_create_gnvs((struct acpi_global_nvs *)current); |
| 440 | current += sizeof(struct acpi_global_nvs); |
| 441 | current = ALIGN(current, 16); |
| 442 | |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 443 | debug("ACPI: * FADT\n"); |
| 444 | fadt = (struct acpi_fadt *)current; |
| 445 | current += sizeof(struct acpi_fadt); |
| 446 | current = ALIGN(current, 16); |
| 447 | acpi_create_fadt(fadt, facs, dsdt); |
| 448 | acpi_add_table(rsdp, fadt); |
| 449 | |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 450 | debug("ACPI: * MADT\n"); |
| 451 | madt = (struct acpi_madt *)current; |
| 452 | acpi_create_madt(madt); |
Bin Meng | 10fcabe | 2016-05-11 07:45:05 -0700 | [diff] [blame] | 453 | current += madt->header.length; |
| 454 | acpi_add_table(rsdp, madt); |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 455 | current = ALIGN(current, 16); |
| 456 | |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 457 | debug("ACPI: * MCFG\n"); |
| 458 | mcfg = (struct acpi_mcfg *)current; |
| 459 | acpi_create_mcfg(mcfg); |
Bin Meng | 10fcabe | 2016-05-11 07:45:05 -0700 | [diff] [blame] | 460 | current += mcfg->header.length; |
| 461 | acpi_add_table(rsdp, mcfg); |
| 462 | current = ALIGN(current, 16); |
Bin Meng | ab5efd5 | 2016-05-07 07:46:25 -0700 | [diff] [blame] | 463 | |
Bin Meng | dca4d1a | 2016-05-07 07:46:12 -0700 | [diff] [blame] | 464 | debug("current = %x\n", current); |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 465 | |
Andy Shevchenko | 3469bf4 | 2018-01-10 19:40:15 +0200 | [diff] [blame] | 466 | acpi_rsdp_addr = (unsigned long)rsdp; |
Bin Meng | dca4d1a | 2016-05-07 07:46:12 -0700 | [diff] [blame] | 467 | debug("ACPI: done\n"); |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 468 | |
Andy Shevchenko | 382fabb | 2017-07-21 22:32:06 +0300 | [diff] [blame] | 469 | /* Don't touch ACPI hardware on HW reduced platforms */ |
| 470 | if (fadt->flags & ACPI_FADT_HW_REDUCED_ACPI) |
| 471 | return current; |
| 472 | |
Bin Meng | 6aef68d | 2016-05-11 07:45:03 -0700 | [diff] [blame] | 473 | /* |
| 474 | * Other than waiting for OSPM to request us to switch to ACPI mode, |
| 475 | * do it by ourselves, since SMI will not be triggered. |
| 476 | */ |
| 477 | enter_acpi_mode(fadt->pm1a_cnt_blk); |
| 478 | |
Saket Sinha | 867bcb6 | 2015-08-22 12:20:55 +0530 | [diff] [blame] | 479 | return current; |
| 480 | } |
Bin Meng | e76bf38 | 2017-04-21 07:24:36 -0700 | [diff] [blame] | 481 | |
Bin Meng | 45410da | 2018-01-30 05:01:16 -0800 | [diff] [blame] | 482 | ulong acpi_get_rsdp_addr(void) |
| 483 | { |
| 484 | return acpi_rsdp_addr; |
| 485 | } |
| 486 | |
Bin Meng | e76bf38 | 2017-04-21 07:24:36 -0700 | [diff] [blame] | 487 | static struct acpi_rsdp *acpi_valid_rsdp(struct acpi_rsdp *rsdp) |
| 488 | { |
| 489 | if (strncmp((char *)rsdp, RSDP_SIG, sizeof(RSDP_SIG) - 1) != 0) |
| 490 | return NULL; |
| 491 | |
| 492 | debug("Looking on %p for valid checksum\n", rsdp); |
| 493 | |
| 494 | if (table_compute_checksum((void *)rsdp, 20) != 0) |
| 495 | return NULL; |
| 496 | debug("acpi rsdp checksum 1 passed\n"); |
| 497 | |
| 498 | if ((rsdp->revision > 1) && |
| 499 | (table_compute_checksum((void *)rsdp, rsdp->length) != 0)) |
| 500 | return NULL; |
| 501 | debug("acpi rsdp checksum 2 passed\n"); |
| 502 | |
| 503 | return rsdp; |
| 504 | } |
| 505 | |
Bin Meng | 0f4e258 | 2017-04-21 07:24:44 -0700 | [diff] [blame] | 506 | struct acpi_fadt *acpi_find_fadt(void) |
Bin Meng | e76bf38 | 2017-04-21 07:24:36 -0700 | [diff] [blame] | 507 | { |
| 508 | char *p, *end; |
| 509 | struct acpi_rsdp *rsdp = NULL; |
| 510 | struct acpi_rsdt *rsdt; |
| 511 | struct acpi_fadt *fadt = NULL; |
Bin Meng | e76bf38 | 2017-04-21 07:24:36 -0700 | [diff] [blame] | 512 | int i; |
| 513 | |
Bin Meng | e76bf38 | 2017-04-21 07:24:36 -0700 | [diff] [blame] | 514 | /* Find RSDP */ |
| 515 | for (p = (char *)ROM_TABLE_ADDR; p < (char *)ROM_TABLE_END; p += 16) { |
| 516 | rsdp = acpi_valid_rsdp((struct acpi_rsdp *)p); |
| 517 | if (rsdp) |
| 518 | break; |
| 519 | } |
| 520 | |
| 521 | if (rsdp == NULL) |
| 522 | return NULL; |
| 523 | |
| 524 | debug("RSDP found at %p\n", rsdp); |
| 525 | rsdt = (struct acpi_rsdt *)rsdp->rsdt_address; |
| 526 | |
| 527 | end = (char *)rsdt + rsdt->header.length; |
| 528 | debug("RSDT found at %p ends at %p\n", rsdt, end); |
| 529 | |
| 530 | for (i = 0; ((char *)&rsdt->entry[i]) < end; i++) { |
| 531 | fadt = (struct acpi_fadt *)rsdt->entry[i]; |
| 532 | if (strncmp((char *)fadt, "FACP", 4) == 0) |
| 533 | break; |
| 534 | fadt = NULL; |
| 535 | } |
| 536 | |
| 537 | if (fadt == NULL) |
| 538 | return NULL; |
| 539 | |
| 540 | debug("FADT found at %p\n", fadt); |
Bin Meng | 0f4e258 | 2017-04-21 07:24:44 -0700 | [diff] [blame] | 541 | return fadt; |
| 542 | } |
| 543 | |
| 544 | void *acpi_find_wakeup_vector(struct acpi_fadt *fadt) |
| 545 | { |
| 546 | struct acpi_facs *facs; |
| 547 | void *wake_vec; |
| 548 | |
| 549 | debug("Trying to find the wakeup vector...\n"); |
| 550 | |
Bin Meng | e76bf38 | 2017-04-21 07:24:36 -0700 | [diff] [blame] | 551 | facs = (struct acpi_facs *)fadt->firmware_ctrl; |
| 552 | |
| 553 | if (facs == NULL) { |
| 554 | debug("No FACS found, wake up from S3 not possible.\n"); |
| 555 | return NULL; |
| 556 | } |
| 557 | |
| 558 | debug("FACS found at %p\n", facs); |
| 559 | wake_vec = (void *)facs->firmware_waking_vector; |
| 560 | debug("OS waking vector is %p\n", wake_vec); |
| 561 | |
| 562 | return wake_vec; |
| 563 | } |