blob: 3fe574f416104e03091bbd6f00cb85da9d8d3bf8 [file] [log] [blame]
Angel Ponsf94ac9a2020-04-05 15:46:48 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Duncan Lauriec88c54c2014-04-30 16:36:13 -07002
Furquan Shaikh76cedd22020-05-02 10:24:23 -07003#include <acpi/acpi.h>
Matt DeVillier80f95b52021-09-13 17:53:05 -05004#include <acpi/acpi_gnvs.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -07005#include <acpi/acpigen.h>
Angel Ponsa472e332020-10-26 00:08:47 +01006#include <arch/ioapic.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -07007#include <arch/smp/mpspec.h>
Angel Pons9d733de2020-11-23 13:15:19 +01008#include <cpu/intel/haswell/haswell.h>
Patrick Rudolphe56189c2018-04-18 10:11:59 +02009#include <device/pci_ops.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070010#include <console/console.h>
Angel Pons6672dff2021-06-15 13:46:26 +020011#include <device/device.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070012#include <types.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070013#include <cpu/intel/turbo.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070014#include <soc/acpi.h>
Matt DeVillier80f95b52021-09-13 17:53:05 -050015#include <soc/device_nvs.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070016#include <soc/iomap.h>
17#include <soc/lpc.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070018#include <soc/pci_devs.h>
19#include <soc/pm.h>
Matt DeVillier0f49bbc2018-02-19 17:35:55 -060020#include <soc/systemagent.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070021#include <soc/intel/broadwell/chip.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070022
Matt DeVillier0f49bbc2018-02-19 17:35:55 -060023static unsigned long acpi_fill_dmar(unsigned long current)
24{
Kyösti Mälkki903b40a2019-07-03 07:25:59 +030025 struct device *const igfx_dev = pcidev_path_on_root(SA_DEVFN_IGD);
Angel Ponsa8753e92021-04-17 14:34:37 +020026 const u32 gfxvtbar = mchbar_read32(GFXVTBAR) & ~0xfff;
27 const u32 vtvc0bar = mchbar_read32(VTVC0BAR) & ~0xfff;
28 const bool gfxvten = mchbar_read32(GFXVTBAR) & 0x1;
29 const bool vtvc0en = mchbar_read32(VTVC0BAR) & 0x1;
Matt DeVillier0f49bbc2018-02-19 17:35:55 -060030
31 /* iGFX has to be enabled; GFXVTBAR set, enabled, in 32-bit space */
Angel Pons37799b32020-08-03 12:17:22 +020032 const bool emit_igd =
33 igfx_dev && igfx_dev->enabled &&
34 gfxvtbar && gfxvten &&
Angel Ponsa8753e92021-04-17 14:34:37 +020035 !mchbar_read32(GFXVTBAR + 4);
Angel Pons37799b32020-08-03 12:17:22 +020036
37 /* First, add DRHD entries */
38 if (emit_igd) {
39 const unsigned long tmp = current;
Matt DeVillier0f49bbc2018-02-19 17:35:55 -060040
41 current += acpi_create_dmar_drhd(current, 0, 0, gfxvtbar);
Matt DeVillier7866d492018-03-29 14:59:57 +020042 current += acpi_create_dmar_ds_pci(current, 0, 2, 0);
Matt DeVillier0f49bbc2018-02-19 17:35:55 -060043
44 acpi_dmar_drhd_fixup(tmp, current);
45 }
46
47 /* VTVC0BAR has to be set, enabled, and in 32-bit space */
Angel Ponsa8753e92021-04-17 14:34:37 +020048 if (vtvc0bar && vtvc0en && !mchbar_read32(VTVC0BAR + 4)) {
Matt DeVillier0f49bbc2018-02-19 17:35:55 -060049 const unsigned long tmp = current;
50 current += acpi_create_dmar_drhd(current,
51 DRHD_INCLUDE_PCI_ALL, 0, vtvc0bar);
Arthur Heymansd90154c2022-12-02 13:27:35 +010052 current += acpi_create_dmar_ds_ioapic_from_hw(current,
53 IO_APIC_ADDR, PCH_IOAPIC_PCI_BUS, PCH_IOAPIC_PCI_SLOT, 0);
Matt DeVillier0f49bbc2018-02-19 17:35:55 -060054 size_t i;
55 for (i = 0; i < 8; ++i)
Matt DeVillier7866d492018-03-29 14:59:57 +020056 current += acpi_create_dmar_ds_msi_hpet(current,
Matt DeVillier0f49bbc2018-02-19 17:35:55 -060057 0, PCH_HPET_PCI_BUS,
58 PCH_HPET_PCI_SLOT, i);
59 acpi_dmar_drhd_fixup(tmp, current);
60 }
61
Angel Pons37799b32020-08-03 12:17:22 +020062 /* Then, add RMRR entries after all DRHD entries */
63 if (emit_igd) {
64 const unsigned long tmp = current;
65
Angel Pons6672dff2021-06-15 13:46:26 +020066 const struct device *sa_dev = pcidev_on_root(0, 0);
67
68 /* Bit 0 is lock bit, not part of address */
69 const u32 tolud = pci_read_config32(sa_dev, TOLUD) & ~1;
70 const u32 bgsm = pci_read_config32(sa_dev, BGSM) & ~1;
71
72 current += acpi_create_dmar_rmrr(current, 0, bgsm, tolud - 1);
Angel Pons37799b32020-08-03 12:17:22 +020073 current += acpi_create_dmar_ds_pci(current, 0, 2, 0);
74 acpi_dmar_rmrr_fixup(tmp, current);
75 }
76
Matt DeVillier0f49bbc2018-02-19 17:35:55 -060077 return current;
78}
79
Furquan Shaikh0f007d82020-04-24 06:41:18 -070080unsigned long northbridge_write_acpi_tables(const struct device *const dev,
Matt DeVillier0f49bbc2018-02-19 17:35:55 -060081 unsigned long current,
82 struct acpi_rsdp *const rsdp)
83{
84 /* Create DMAR table only if we have VT-d capability. */
85 const u32 capid0_a = pci_read_config32(dev, CAPID0_A);
86 if (capid0_a & VTD_DISABLE)
87 return current;
88
89 acpi_dmar_t *const dmar = (acpi_dmar_t *)current;
90 printk(BIOS_DEBUG, "ACPI: * DMAR\n");
91 acpi_create_dmar(dmar, DMAR_INTR_REMAP, acpi_fill_dmar);
92 current += dmar->header.length;
93 current = acpi_align_current(current);
94 acpi_add_table(rsdp, dmar);
95
96 return current;
97}
Matt DeVillier80f95b52021-09-13 17:53:05 -050098
99size_t size_of_dnvs(void)
100{
101 return sizeof(struct device_nvs);
102}