]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
x86: apl: Generate required ACPI tables
authorSimon Glass <sjg@chromium.org>
Tue, 22 Sep 2020 18:45:19 +0000 (12:45 -0600)
committerBin Meng <bmeng.cn@gmail.com>
Fri, 25 Sep 2020 03:27:19 +0000 (11:27 +0800)
Add support for generating various ACPI tables for Apollo Lake. Add a few
S3 definitions that are needed.

Signed-off-by: Simon Glass <sjg@chromium.org>
arch/x86/cpu/apollolake/Makefile
arch/x86/cpu/apollolake/acpi.c [new file with mode: 0644]
arch/x86/include/asm/arch-apollolake/acpi.h [new file with mode: 0644]
include/acpi/acpi_s3.h

index 3aa2a556765a8ff3f5d8d7b49ae46cf236998a4f..2ddf4af62c5a75df2867959ae229fca1ed4b7b9f 100644 (file)
@@ -16,6 +16,7 @@ obj-y += fsp_m.o
 endif
 endif
 ifndef CONFIG_SPL_BUILD
+obj-y += acpi.o
 obj-y += fsp_s.o
 endif
 
diff --git a/arch/x86/cpu/apollolake/acpi.c b/arch/x86/cpu/apollolake/acpi.c
new file mode 100644 (file)
index 0000000..69b544f
--- /dev/null
@@ -0,0 +1,211 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * Copyright (C) 2016 Intel Corp.
+ * Copyright (C) 2017-2019 Siemens AG
+ * (Written by Lance Zhao <lijian.zhao@intel.com> for Intel Corp.)
+ * Copyright 2019 Google LLC
+ *
+ * Modified from coreboot apollolake/acpi.c
+ */
+
+#define LOG_CATEGORY LOGC_ACPI
+
+#include <common.h>
+#include <cpu.h>
+#include <dm.h>
+#include <log.h>
+#include <p2sb.h>
+#include <pci.h>
+#include <acpi/acpigen.h>
+#include <acpi/acpi_s3.h>
+#include <asm/acpi_table.h>
+#include <asm/cpu_common.h>
+#include <asm/intel_acpi.h>
+#include <asm/intel_gnvs.h>
+#include <asm/intel_pinctrl.h>
+#include <asm/intel_pinctrl_defs.h>
+#include <asm/intel_regs.h>
+#include <asm/io.h>
+#include <asm/mpspec.h>
+#include <asm/tables.h>
+#include <asm/arch/iomap.h>
+#include <asm/arch/gpio.h>
+#include <asm/arch/pm.h>
+#include <asm/arch/systemagent.h>
+#include <dm/acpi.h>
+#include <dm/uclass-internal.h>
+#include <power/acpi_pmc.h>
+
+int arch_read_sci_irq_select(void)
+{
+       struct acpi_pmc_upriv *upriv;
+       struct udevice *dev;
+       int ret;
+
+       ret = uclass_first_device_err(UCLASS_ACPI_PMC, &dev);
+       if (ret)
+               return log_msg_ret("pmc", ret);
+       upriv = dev_get_uclass_priv(dev);
+
+       return readl(upriv->pmc_bar0 + IRQ_REG);
+}
+
+int arch_write_sci_irq_select(uint scis)
+{
+       struct acpi_pmc_upriv *upriv;
+       struct udevice *dev;
+       int ret;
+
+       ret = uclass_first_device_err(UCLASS_ACPI_PMC, &dev);
+       if (ret)
+               return log_msg_ret("pmc", ret);
+       upriv = dev_get_uclass_priv(dev);
+       writel(scis, upriv->pmc_bar0 + IRQ_REG);
+
+       return 0;
+}
+
+int acpi_create_gnvs(struct acpi_global_nvs *gnvs)
+{
+       struct udevice *cpu;
+       int ret;
+
+       /* Clear out GNV */
+       memset(gnvs, '\0', sizeof(*gnvs));
+
+       /* TODO(sjg@chromium.org): Add the console log to gnvs->cbmc */
+
+#ifdef CONFIG_CHROMEOS
+       /* Initialise Verified Boot data */
+       chromeos_init_acpi(&gnvs->chromeos);
+       gnvs->chromeos.vbt2 = ACTIVE_ECFW_RO;
+#endif
+       /* Set unknown wake source */
+       gnvs->pm1i = ~0ULL;
+
+       /* CPU core count */
+       gnvs->pcnt = 1;
+       ret = uclass_find_first_device(UCLASS_CPU, &cpu);
+       if (cpu) {
+               ret = cpu_get_count(cpu);
+               if (ret > 0)
+                       gnvs->pcnt = ret;
+       }
+
+       return 0;
+}
+
+uint32_t acpi_fill_soc_wake(uint32_t generic_pm1_en)
+{
+       /*
+        * WAK_STS bit is set when the system is in one of the sleep states
+        * (via the SLP_EN bit) and an enabled wake event occurs. Upon setting
+        * this bit, the PMC will transition the system to the ON state and
+        * can only be set by hardware and can only be cleared by writing a one
+        * to this bit position.
+        */
+       generic_pm1_en |= WAK_STS | RTC_EN | PWRBTN_EN;
+
+       return generic_pm1_en;
+}
+
+int arch_madt_sci_irq_polarity(int sci)
+{
+       return MP_IRQ_POLARITY_LOW;
+}
+
+void fill_fadt(struct acpi_fadt *fadt)
+{
+       fadt->pm_tmr_blk = IOMAP_ACPI_BASE + PM1_TMR;
+
+       fadt->p_lvl2_lat = ACPI_FADT_C2_NOT_SUPPORTED;
+       fadt->p_lvl3_lat = ACPI_FADT_C3_NOT_SUPPORTED;
+
+       fadt->pm_tmr_len = 4;
+       fadt->duty_width = 3;
+
+       fadt->iapc_boot_arch = ACPI_FADT_LEGACY_DEVICES | ACPI_FADT_8042;
+
+       fadt->x_pm_tmr_blk.space_id = 1;
+       fadt->x_pm_tmr_blk.bit_width = fadt->pm_tmr_len * 8;
+       fadt->x_pm_tmr_blk.addrl = IOMAP_ACPI_BASE + PM1_TMR;
+}
+
+void acpi_create_fadt(struct acpi_fadt *fadt, struct acpi_facs *facs,
+                     void *dsdt)
+{
+       struct acpi_table_header *header = &fadt->header;
+
+       acpi_fadt_common(fadt, facs, dsdt);
+       intel_acpi_fill_fadt(fadt);
+       fill_fadt(fadt);
+       header->checksum = table_compute_checksum(fadt, header->length);
+}
+
+int apl_acpi_fill_dmar(struct acpi_ctx *ctx)
+{
+       struct udevice *dev, *sa_dev;
+       u64 gfxvtbar = readq(MCHBAR_REG(GFXVTBAR)) & VTBAR_MASK;
+       u64 defvtbar = readq(MCHBAR_REG(DEFVTBAR)) & VTBAR_MASK;
+       bool gfxvten = readl(MCHBAR_REG(GFXVTBAR)) & VTBAR_ENABLED;
+       bool defvten = readl(MCHBAR_REG(DEFVTBAR)) & VTBAR_ENABLED;
+       void *tmp;
+       int ret;
+
+       uclass_find_first_device(UCLASS_VIDEO, &dev);
+       ret = uclass_first_device_err(UCLASS_NORTHBRIDGE, &sa_dev);
+       if (ret)
+               return log_msg_ret("no sa", ret);
+
+       /* IGD has to be enabled, GFXVTBAR set and enabled */
+       if (dev && device_active(dev) && gfxvtbar && gfxvten) {
+               tmp = ctx->current;
+
+               acpi_create_dmar_drhd(ctx, 0, 0, gfxvtbar);
+               ret = acpi_create_dmar_ds_pci(ctx, PCI_BDF(0, 2, 0));
+               if (ret)
+                       return log_msg_ret("ds_pci", ret);
+               acpi_dmar_drhd_fixup(ctx, tmp);
+
+               /* Add RMRR entry */
+               tmp = ctx->current;
+               acpi_create_dmar_rmrr(ctx->current, 0, sa_get_gsm_base(sa_dev),
+                                     sa_get_tolud_base(sa_dev) - 1);
+               acpi_create_dmar_ds_pci(ctx->current, PCI_BDF(0, 2, 0));
+               acpi_dmar_rmrr_fixup(ctx, tmp);
+       }
+
+       /* DEFVTBAR has to be set and enabled */
+       if (defvtbar && defvten) {
+               struct udevice *p2sb_dev;
+               u16 ibdf, hbdf;
+               uint ioapic, hpet;
+               int ret;
+
+               tmp = ctx->current;
+               /*
+                * P2SB may already be hidden. There's no clear rule, when.
+                * It is needed to get bus, device and function for IOAPIC and
+                * HPET device which is stored in P2SB device. So unhide it to
+                * get the info and hide it again when done.
+                *
+                * TODO(sjg@chromium.org): p2sb_unhide() ?
+                */
+               ret = uclass_first_device_err(UCLASS_P2SB, &p2sb_dev);
+               if (ret)
+                       return log_msg_ret("p2sb", ret);
+
+               dm_pci_read_config16(p2sb_dev, PCH_P2SB_IBDF, &ibdf);
+               ioapic = PCI_TO_BDF(ibdf);
+               dm_pci_read_config16(p2sb_dev, PCH_P2SB_HBDF, &hbdf);
+               hpet = PCI_TO_BDF(hbdf);
+               /* TODO(sjg@chromium.org): p2sb_hide() ? */
+
+               acpi_create_dmar_drhd(ctx, DRHD_INCLUDE_PCI_ALL, 0, defvtbar);
+               acpi_create_dmar_ds_ioapic(ctx, 2, ioapic);
+               acpi_create_dmar_ds_msi_hpet(ctx, 0, hpet);
+               acpi_dmar_drhd_fixup(tmp, ctx->current);
+       }
+
+       return 0;
+}
diff --git a/arch/x86/include/asm/arch-apollolake/acpi.h b/arch/x86/include/asm/arch-apollolake/acpi.h
new file mode 100644 (file)
index 0000000..ed852fe
--- /dev/null
@@ -0,0 +1,18 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+/*
+ * Copyright 2019 Google LLC
+ */
+
+#ifndef _ASM_ARCH_ACPI_H
+#define _ASM_ARCH_ACPI_H
+
+struct acpi_ctx;
+
+/**
+ * apl_acpi_fill_dmar() - Set up the DMAR for APL
+ *
+ * @ctx: ACPI context pointer
+ */
+int apl_acpi_fill_dmar(struct acpi_ctx *ctx);
+
+#endif /* _ASM_ARCH_CPU_H */
index baa848dcd15b7b2d5910dceb079251ffca4894b0..847139baa0cc4da5c2a6ff2c64a2450497c325ca 100644 (file)
 #define SLP_TYP_S4     6
 #define SLP_TYP_S5     7
 
+/* PM1_STS register */
+#define RTC_EN         BIT(10)
+#define PWRBTN_EN      BIT(8)
+
 /* Memory size reserved for S3 resume */
 #define S3_RESERVE_SIZE        0x1000