Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Andy Shevchenko | 286e77f | 2017-10-03 14:55:07 +0300 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2017 Intel Corporation |
| 4 | * |
| 5 | * Partially based on acpi.c for other x86 platforms |
Andy Shevchenko | 286e77f | 2017-10-03 14:55:07 +0300 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | #include <cpu.h> |
| 10 | #include <dm.h> |
Simon Glass | 858fed1 | 2020-04-08 16:57:36 -0600 | [diff] [blame] | 11 | #include <acpi/acpi_table.h> |
Andy Shevchenko | 286e77f | 2017-10-03 14:55:07 +0300 | [diff] [blame] | 12 | #include <asm/ioapic.h> |
| 13 | #include <asm/mpspec.h> |
| 14 | #include <asm/tables.h> |
| 15 | #include <asm/arch/global_nvs.h> |
Andy Shevchenko | b04ef3b | 2019-08-29 17:04:19 +0300 | [diff] [blame] | 16 | #include <asm/arch/iomap.h> |
Simon Glass | 858fed1 | 2020-04-08 16:57:36 -0600 | [diff] [blame] | 17 | #include <dm/uclass-internal.h> |
Andy Shevchenko | 286e77f | 2017-10-03 14:55:07 +0300 | [diff] [blame] | 18 | |
Simon Glass | c4b5b02 | 2021-12-01 09:02:55 -0700 | [diff] [blame] | 19 | static int tangier_write_fadt(struct acpi_ctx *ctx, |
| 20 | const struct acpi_writer *entry) |
Andy Shevchenko | 286e77f | 2017-10-03 14:55:07 +0300 | [diff] [blame] | 21 | { |
Simon Glass | c4b5b02 | 2021-12-01 09:02:55 -0700 | [diff] [blame] | 22 | struct acpi_table_header *header; |
| 23 | struct acpi_fadt *fadt; |
Andy Shevchenko | 286e77f | 2017-10-03 14:55:07 +0300 | [diff] [blame] | 24 | |
Simon Glass | c4b5b02 | 2021-12-01 09:02:55 -0700 | [diff] [blame] | 25 | fadt = ctx->current; |
| 26 | header = &fadt->header; |
| 27 | |
| 28 | memset(fadt, '\0', sizeof(struct acpi_fadt)); |
Andy Shevchenko | 286e77f | 2017-10-03 14:55:07 +0300 | [diff] [blame] | 29 | |
| 30 | acpi_fill_header(header, "FACP"); |
| 31 | header->length = sizeof(struct acpi_fadt); |
| 32 | header->revision = 6; |
| 33 | |
Simon Glass | c4b5b02 | 2021-12-01 09:02:55 -0700 | [diff] [blame] | 34 | fadt->firmware_ctrl = (u32)ctx->facs; |
| 35 | fadt->dsdt = (u32)ctx->dsdt; |
Andy Shevchenko | 286e77f | 2017-10-03 14:55:07 +0300 | [diff] [blame] | 36 | fadt->preferred_pm_profile = ACPI_PM_UNSPECIFIED; |
| 37 | |
| 38 | fadt->iapc_boot_arch = ACPI_FADT_VGA_NOT_PRESENT | |
| 39 | ACPI_FADT_NO_PCIE_ASPM_CONTROL; |
| 40 | fadt->flags = |
| 41 | ACPI_FADT_WBINVD | |
| 42 | ACPI_FADT_POWER_BUTTON | ACPI_FADT_SLEEP_BUTTON | |
| 43 | ACPI_FADT_SEALED_CASE | ACPI_FADT_HEADLESS | |
| 44 | ACPI_FADT_HW_REDUCED_ACPI; |
| 45 | |
| 46 | fadt->minor_revision = 2; |
| 47 | |
Simon Glass | c4b5b02 | 2021-12-01 09:02:55 -0700 | [diff] [blame] | 48 | fadt->x_firmware_ctl_l = (u32)ctx->facs; |
Andy Shevchenko | 286e77f | 2017-10-03 14:55:07 +0300 | [diff] [blame] | 49 | fadt->x_firmware_ctl_h = 0; |
Simon Glass | c4b5b02 | 2021-12-01 09:02:55 -0700 | [diff] [blame] | 50 | fadt->x_dsdt_l = (u32)ctx->dsdt; |
Andy Shevchenko | 286e77f | 2017-10-03 14:55:07 +0300 | [diff] [blame] | 51 | fadt->x_dsdt_h = 0; |
| 52 | |
| 53 | header->checksum = table_compute_checksum(fadt, header->length); |
Simon Glass | c4b5b02 | 2021-12-01 09:02:55 -0700 | [diff] [blame] | 54 | |
| 55 | acpi_inc(ctx, sizeof(struct acpi_fadt)); |
| 56 | |
| 57 | return 0; |
Andy Shevchenko | 286e77f | 2017-10-03 14:55:07 +0300 | [diff] [blame] | 58 | } |
Simon Glass | c4b5b02 | 2021-12-01 09:02:55 -0700 | [diff] [blame] | 59 | ACPI_WRITER(5fadt, "FACP", tangier_write_fadt, 0); |
Andy Shevchenko | 286e77f | 2017-10-03 14:55:07 +0300 | [diff] [blame] | 60 | |
| 61 | u32 acpi_fill_madt(u32 current) |
| 62 | { |
| 63 | current += acpi_create_madt_lapics(current); |
| 64 | |
| 65 | current += acpi_create_madt_ioapic((struct acpi_madt_ioapic *)current, |
| 66 | io_apic_read(IO_APIC_ID) >> 24, IO_APIC_ADDR, 0); |
| 67 | |
| 68 | return current; |
| 69 | } |
| 70 | |
Moritz Fischer | c656172 | 2022-02-05 12:17:45 -0800 | [diff] [blame] | 71 | int acpi_fill_mcfg(struct acpi_ctx *ctx) |
Andy Shevchenko | 286e77f | 2017-10-03 14:55:07 +0300 | [diff] [blame] | 72 | { |
Moritz Fischer | c656172 | 2022-02-05 12:17:45 -0800 | [diff] [blame] | 73 | size_t size; |
| 74 | |
Andy Shevchenko | 286e77f | 2017-10-03 14:55:07 +0300 | [diff] [blame] | 75 | /* TODO: Derive parameters from SFI MCFG table */ |
Moritz Fischer | c656172 | 2022-02-05 12:17:45 -0800 | [diff] [blame] | 76 | size = acpi_create_mcfg_mmconfig |
| 77 | ((struct acpi_mcfg_mmconfig *)ctx->current, |
Andy Shevchenko | b04ef3b | 2019-08-29 17:04:19 +0300 | [diff] [blame] | 78 | MCFG_BASE_ADDRESS, 0x0, 0x0, 0x0); |
Moritz Fischer | c656172 | 2022-02-05 12:17:45 -0800 | [diff] [blame] | 79 | acpi_inc(ctx, size); |
Andy Shevchenko | 286e77f | 2017-10-03 14:55:07 +0300 | [diff] [blame] | 80 | |
Moritz Fischer | c656172 | 2022-02-05 12:17:45 -0800 | [diff] [blame] | 81 | return 0; |
Andy Shevchenko | 286e77f | 2017-10-03 14:55:07 +0300 | [diff] [blame] | 82 | } |
| 83 | |
Andy Shevchenko | 70c6298 | 2019-07-14 19:23:59 +0300 | [diff] [blame] | 84 | static u32 acpi_fill_csrt_dma(struct acpi_csrt_group *grp) |
| 85 | { |
| 86 | struct acpi_csrt_shared_info *si = (struct acpi_csrt_shared_info *)&grp[1]; |
| 87 | |
| 88 | /* Fill the Resource Group with Shared Information attached */ |
| 89 | memset(grp, 0, sizeof(*grp)); |
| 90 | grp->shared_info_length = sizeof(struct acpi_csrt_shared_info); |
| 91 | grp->length = sizeof(struct acpi_csrt_group) + grp->shared_info_length; |
| 92 | /* TODO: All values below should come from U-Boot DT somehow */ |
| 93 | sprintf((char *)&grp->vendor_id, "%04X", 0x8086); |
| 94 | grp->device_id = 0x11a2; |
| 95 | |
| 96 | /* Fill the Resource Group Shared Information */ |
| 97 | memset(si, 0, sizeof(*si)); |
| 98 | si->major_version = 1; |
| 99 | si->minor_version = 0; |
| 100 | /* TODO: All values below should come from U-Boot DT somehow */ |
| 101 | si->mmio_base_low = 0xff192000; |
| 102 | si->mmio_base_high = 0; |
| 103 | si->gsi_interrupt = 32; |
Andy Shevchenko | da28b58 | 2021-07-30 23:15:44 +0300 | [diff] [blame] | 104 | si->interrupt_polarity = 0; /* Active High */ |
| 105 | si->interrupt_mode = 0; /* Level triggered */ |
Andy Shevchenko | 70c6298 | 2019-07-14 19:23:59 +0300 | [diff] [blame] | 106 | si->num_channels = 8; |
| 107 | si->dma_address_width = 32; |
| 108 | si->base_request_line = 0; |
| 109 | si->num_handshake_signals = 16; |
Andy Shevchenko | 613092b | 2019-08-29 17:04:20 +0300 | [diff] [blame] | 110 | si->max_block_size = 0x1ffff; |
Andy Shevchenko | 70c6298 | 2019-07-14 19:23:59 +0300 | [diff] [blame] | 111 | |
| 112 | return grp->length; |
| 113 | } |
| 114 | |
Simon Glass | 89ce519 | 2021-12-01 09:03:01 -0700 | [diff] [blame] | 115 | int acpi_fill_csrt(struct acpi_ctx *ctx) |
Andy Shevchenko | 70c6298 | 2019-07-14 19:23:59 +0300 | [diff] [blame] | 116 | { |
Simon Glass | 89ce519 | 2021-12-01 09:03:01 -0700 | [diff] [blame] | 117 | int size; |
| 118 | |
| 119 | size = acpi_fill_csrt_dma(ctx->current); |
| 120 | acpi_inc(ctx, size); |
Andy Shevchenko | 70c6298 | 2019-07-14 19:23:59 +0300 | [diff] [blame] | 121 | |
Simon Glass | 89ce519 | 2021-12-01 09:03:01 -0700 | [diff] [blame] | 122 | return 0; |
Andy Shevchenko | 70c6298 | 2019-07-14 19:23:59 +0300 | [diff] [blame] | 123 | } |
| 124 | |
Simon Glass | 9ed41e7 | 2020-07-07 21:32:05 -0600 | [diff] [blame] | 125 | int acpi_create_gnvs(struct acpi_global_nvs *gnvs) |
Andy Shevchenko | 286e77f | 2017-10-03 14:55:07 +0300 | [diff] [blame] | 126 | { |
| 127 | struct udevice *dev; |
| 128 | int ret; |
| 129 | |
| 130 | /* at least we have one processor */ |
| 131 | gnvs->pcnt = 1; |
| 132 | |
| 133 | /* override the processor count with actual number */ |
| 134 | ret = uclass_find_first_device(UCLASS_CPU, &dev); |
| 135 | if (ret == 0 && dev != NULL) { |
| 136 | ret = cpu_get_count(dev); |
| 137 | if (ret > 0) |
| 138 | gnvs->pcnt = ret; |
| 139 | } |
Simon Glass | 9ed41e7 | 2020-07-07 21:32:05 -0600 | [diff] [blame] | 140 | |
| 141 | return 0; |
Andy Shevchenko | 286e77f | 2017-10-03 14:55:07 +0300 | [diff] [blame] | 142 | } |