blob: 512f9f3d461fc45090bf30a9e51865b6dcb312df [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/x86/msr.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070014#include <cpu/intel/turbo.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070015#include <soc/acpi.h>
Matt DeVillier80f95b52021-09-13 17:53:05 -050016#include <soc/device_nvs.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070017#include <soc/iomap.h>
18#include <soc/lpc.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070019#include <soc/pci_devs.h>
20#include <soc/pm.h>
Matt DeVillier0f49bbc2018-02-19 17:35:55 -060021#include <soc/systemagent.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070022#include <soc/intel/broadwell/chip.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070023
Duncan Lauriec88c54c2014-04-30 16:36:13 -070024unsigned long acpi_fill_mcfg(unsigned long current)
25{
26 current += acpi_create_mcfg_mmconfig((acpi_mcfg_mmconfig_t *)current,
Angel Pons9debbd62021-01-28 12:42:53 +010027 CONFIG_MMCONF_BASE_ADDRESS, 0, 0,
28 CONFIG_MMCONF_BUS_NUMBER - 1);
Duncan Lauriec88c54c2014-04-30 16:36:13 -070029 return current;
30}
31
Matt DeVillier0f49bbc2018-02-19 17:35:55 -060032static unsigned long acpi_fill_dmar(unsigned long current)
33{
Kyösti Mälkki903b40a2019-07-03 07:25:59 +030034 struct device *const igfx_dev = pcidev_path_on_root(SA_DEVFN_IGD);
Angel Ponsa8753e92021-04-17 14:34:37 +020035 const u32 gfxvtbar = mchbar_read32(GFXVTBAR) & ~0xfff;
36 const u32 vtvc0bar = mchbar_read32(VTVC0BAR) & ~0xfff;
37 const bool gfxvten = mchbar_read32(GFXVTBAR) & 0x1;
38 const bool vtvc0en = mchbar_read32(VTVC0BAR) & 0x1;
Matt DeVillier0f49bbc2018-02-19 17:35:55 -060039
40 /* iGFX has to be enabled; GFXVTBAR set, enabled, in 32-bit space */
Angel Pons37799b32020-08-03 12:17:22 +020041 const bool emit_igd =
42 igfx_dev && igfx_dev->enabled &&
43 gfxvtbar && gfxvten &&
Angel Ponsa8753e92021-04-17 14:34:37 +020044 !mchbar_read32(GFXVTBAR + 4);
Angel Pons37799b32020-08-03 12:17:22 +020045
46 /* First, add DRHD entries */
47 if (emit_igd) {
48 const unsigned long tmp = current;
Matt DeVillier0f49bbc2018-02-19 17:35:55 -060049
50 current += acpi_create_dmar_drhd(current, 0, 0, gfxvtbar);
Matt DeVillier7866d492018-03-29 14:59:57 +020051 current += acpi_create_dmar_ds_pci(current, 0, 2, 0);
Matt DeVillier0f49bbc2018-02-19 17:35:55 -060052
53 acpi_dmar_drhd_fixup(tmp, current);
54 }
55
56 /* VTVC0BAR has to be set, enabled, and in 32-bit space */
Angel Ponsa8753e92021-04-17 14:34:37 +020057 if (vtvc0bar && vtvc0en && !mchbar_read32(VTVC0BAR + 4)) {
Matt DeVillier0f49bbc2018-02-19 17:35:55 -060058 const unsigned long tmp = current;
59 current += acpi_create_dmar_drhd(current,
60 DRHD_INCLUDE_PCI_ALL, 0, vtvc0bar);
Matt DeVillier7866d492018-03-29 14:59:57 +020061 current += acpi_create_dmar_ds_ioapic(current,
Matt DeVillier0f49bbc2018-02-19 17:35:55 -060062 2, PCH_IOAPIC_PCI_BUS, PCH_IOAPIC_PCI_SLOT, 0);
63 size_t i;
64 for (i = 0; i < 8; ++i)
Matt DeVillier7866d492018-03-29 14:59:57 +020065 current += acpi_create_dmar_ds_msi_hpet(current,
Matt DeVillier0f49bbc2018-02-19 17:35:55 -060066 0, PCH_HPET_PCI_BUS,
67 PCH_HPET_PCI_SLOT, i);
68 acpi_dmar_drhd_fixup(tmp, current);
69 }
70
Angel Pons37799b32020-08-03 12:17:22 +020071 /* Then, add RMRR entries after all DRHD entries */
72 if (emit_igd) {
73 const unsigned long tmp = current;
74
Angel Pons6672dff2021-06-15 13:46:26 +020075 const struct device *sa_dev = pcidev_on_root(0, 0);
76
77 /* Bit 0 is lock bit, not part of address */
78 const u32 tolud = pci_read_config32(sa_dev, TOLUD) & ~1;
79 const u32 bgsm = pci_read_config32(sa_dev, BGSM) & ~1;
80
81 current += acpi_create_dmar_rmrr(current, 0, bgsm, tolud - 1);
Angel Pons37799b32020-08-03 12:17:22 +020082 current += acpi_create_dmar_ds_pci(current, 0, 2, 0);
83 acpi_dmar_rmrr_fixup(tmp, current);
84 }
85
Matt DeVillier0f49bbc2018-02-19 17:35:55 -060086 return current;
87}
88
Furquan Shaikh0f007d82020-04-24 06:41:18 -070089unsigned long northbridge_write_acpi_tables(const struct device *const dev,
Matt DeVillier0f49bbc2018-02-19 17:35:55 -060090 unsigned long current,
91 struct acpi_rsdp *const rsdp)
92{
93 /* Create DMAR table only if we have VT-d capability. */
94 const u32 capid0_a = pci_read_config32(dev, CAPID0_A);
95 if (capid0_a & VTD_DISABLE)
96 return current;
97
98 acpi_dmar_t *const dmar = (acpi_dmar_t *)current;
99 printk(BIOS_DEBUG, "ACPI: * DMAR\n");
100 acpi_create_dmar(dmar, DMAR_INTR_REMAP, acpi_fill_dmar);
101 current += dmar->header.length;
102 current = acpi_align_current(current);
103 acpi_add_table(rsdp, dmar);
104
105 return current;
106}
Matt DeVillier80f95b52021-09-13 17:53:05 -0500107
108size_t size_of_dnvs(void)
109{
110 return sizeof(struct device_nvs);
111}