summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/common/block/pmc
diff options
context:
space:
mode:
authorShaunak Saha <shaunak.saha@intel.com>2017-03-08 19:27:17 -0800
committerAaron Durbin <adurbin@chromium.org>2017-08-08 16:38:50 +0000
commit9dffbdd9c5e1a7b081b9c32a3ebd44219769cc04 (patch)
treee07707a242d3eaa5771f007e89407481fabbb0d2 /src/soc/intel/common/block/pmc
parent2991f3c48f99dc2849391725b16309eb96aa41a7 (diff)
downloadcoreboot-9dffbdd9c5e1a7b081b9c32a3ebd44219769cc04.tar.gz
coreboot-9dffbdd9c5e1a7b081b9c32a3ebd44219769cc04.tar.bz2
coreboot-9dffbdd9c5e1a7b081b9c32a3ebd44219769cc04.zip
soc/intel/common/block: Add Intel PMC support
PMC util code is very similar accross different intel SOC's. This patch is an effort to move those code in common place so that it can be shared accross different intel platforms instead of duplicating for each platform. This patch adds pmclib.c file which contains the pmc utility functions common accross SOC's. The config for common PMC is SOC_INTEL_COMMON_BLOCK_PMC which can be defined in SOC's Kconfig file in order to use the common PMC util code. Change-Id: Ic3d96fc23a98c30e8ea0969a7be09d217eeaa889 Signed-off-by: Shaunak Saha <shaunak.saha@intel.com> Reviewed-on: https://review.coreboot.org/19349 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/soc/intel/common/block/pmc')
-rw-r--r--src/soc/intel/common/block/pmc/Kconfig6
-rw-r--r--src/soc/intel/common/block/pmc/Makefile.inc5
-rw-r--r--src/soc/intel/common/block/pmc/pmclib.c492
3 files changed, 503 insertions, 0 deletions
diff --git a/src/soc/intel/common/block/pmc/Kconfig b/src/soc/intel/common/block/pmc/Kconfig
new file mode 100644
index 000000000000..4e10f9353751
--- /dev/null
+++ b/src/soc/intel/common/block/pmc/Kconfig
@@ -0,0 +1,6 @@
+config SOC_INTEL_COMMON_BLOCK_PMC
+ depends on SOC_INTEL_COMMON_BLOCK_GPIO
+ bool
+ help
+ Intel Processor common code for Power Management controller(PMC)
+ subsystem
diff --git a/src/soc/intel/common/block/pmc/Makefile.inc b/src/soc/intel/common/block/pmc/Makefile.inc
new file mode 100644
index 000000000000..40fcba10f732
--- /dev/null
+++ b/src/soc/intel/common/block/pmc/Makefile.inc
@@ -0,0 +1,5 @@
+bootblock-$(CONFIG_SOC_INTEL_COMMON_BLOCK_PMC) += pmclib.c
+romstage-$(CONFIG_SOC_INTEL_COMMON_BLOCK_PMC) += pmclib.c
+ramstage-$(CONFIG_SOC_INTEL_COMMON_BLOCK_PMC) += pmclib.c
+smm-$(CONFIG_SOC_INTEL_COMMON_BLOCK_PMC) += pmclib.c
+verstage-$(CONFIG_SOC_INTEL_COMMON_BLOCK_PMC) += pmclib.c
diff --git a/src/soc/intel/common/block/pmc/pmclib.c b/src/soc/intel/common/block/pmc/pmclib.c
new file mode 100644
index 000000000000..e741332f88eb
--- /dev/null
+++ b/src/soc/intel/common/block/pmc/pmclib.c
@@ -0,0 +1,492 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2017 Intel Corporation.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+#include <arch/io.h>
+#include <cbmem.h>
+#include <console/console.h>
+#include <halt.h>
+#include <intelblocks/pmclib.h>
+#include <intelblocks/gpio.h>
+#include <soc/pm.h>
+#include <timer.h>
+#include <vboot/vboot_common.h>
+
+static void print_num_status_bits(int num_bits, uint32_t status,
+ const char *const bit_names[])
+{
+ int i;
+
+ if (!status)
+ return;
+
+ for (i = num_bits - 1; i >= 0; i--) {
+ if (status & (1 << i)) {
+ if (bit_names[i])
+ printk(BIOS_DEBUG, "%s ", bit_names[i]);
+ else
+ printk(BIOS_DEBUG, "BIT%d ", i);
+ }
+ }
+}
+
+__attribute__ ((weak)) uint32_t soc_get_smi_status(uint32_t generic_sts)
+{
+ return generic_sts;
+}
+
+static uint32_t pmc_reset_smi_status(void)
+{
+ uint32_t smi_sts = inl(ACPI_BASE_ADDRESS + SMI_STS);
+ outl(smi_sts, ACPI_BASE_ADDRESS + SMI_STS);
+
+ return soc_get_smi_status(smi_sts);
+}
+
+static uint32_t print_smi_status(uint32_t smi_sts)
+{
+ size_t array_size;
+ const char *const *smi_arr;
+
+ if (!smi_sts)
+ return 0;
+
+ printk(BIOS_DEBUG, "SMI_STS: ");
+
+ smi_arr = soc_smi_sts_array(&array_size);
+
+ print_num_status_bits(array_size, smi_sts, smi_arr);
+ printk(BIOS_DEBUG, "\n");
+
+ return smi_sts;
+}
+
+uint32_t pmc_clear_smi_status(void)
+{
+ uint32_t sts = pmc_reset_smi_status();
+
+ return print_smi_status(sts);
+}
+
+uint32_t pmc_get_smi_en(void)
+{
+ return inl(ACPI_BASE_ADDRESS + SMI_EN);
+}
+
+void pmc_enable_smi(uint32_t mask)
+{
+ uint32_t smi_en = inl(ACPI_BASE_ADDRESS + SMI_EN);
+ smi_en |= mask;
+ outl(smi_en, ACPI_BASE_ADDRESS + SMI_EN);
+}
+
+void pmc_disable_smi(uint32_t mask)
+{
+ uint32_t smi_en = inl(ACPI_BASE_ADDRESS + SMI_EN);
+ smi_en &= ~mask;
+ outl(smi_en, ACPI_BASE_ADDRESS + SMI_EN);
+}
+
+/* PM1 */
+void pmc_enable_pm1(uint16_t events)
+{
+ outw(events, ACPI_BASE_ADDRESS + PM1_EN);
+}
+
+void pmc_enable_pm1_control(uint32_t mask)
+{
+ uint32_t pm1_cnt = inl(ACPI_BASE_ADDRESS + PM1_CNT);
+ pm1_cnt |= mask;
+ outl(pm1_cnt, ACPI_BASE_ADDRESS + PM1_CNT);
+}
+
+void pmc_disable_pm1_control(uint32_t mask)
+{
+ uint32_t pm1_cnt = inl(ACPI_BASE_ADDRESS + PM1_CNT);
+ pm1_cnt &= ~mask;
+ outl(pm1_cnt, ACPI_BASE_ADDRESS + PM1_CNT);
+}
+
+static uint16_t reset_pm1_status(void)
+{
+ uint16_t pm1_sts = inw(ACPI_BASE_ADDRESS + PM1_STS);
+ outw(pm1_sts, ACPI_BASE_ADDRESS + PM1_STS);
+ return pm1_sts;
+}
+
+static uint16_t print_pm1_status(uint16_t pm1_sts)
+{
+ static const char *const pm1_sts_bits[] = {
+ [0] = "TMROF",
+ [5] = "GBL",
+ [8] = "PWRBTN",
+ [10] = "RTC",
+ [11] = "PRBTNOR",
+ [13] = "USB",
+ [14] = "PCIEXPWAK",
+ [15] = "WAK",
+ };
+
+ if (!pm1_sts)
+ return 0;
+
+ printk(BIOS_SPEW, "PM1_STS: ");
+ print_num_status_bits(ARRAY_SIZE(pm1_sts_bits), pm1_sts, pm1_sts_bits);
+ printk(BIOS_SPEW, "\n");
+
+ return pm1_sts;
+}
+
+uint16_t pmc_clear_pm1_status(void)
+{
+ return print_pm1_status(reset_pm1_status());
+}
+
+/* TCO */
+
+static uint32_t print_tco_status(uint32_t tco_sts)
+{
+ size_t array_size;
+ const char *const *tco_arr;
+
+ if (!tco_sts)
+ return 0;
+
+ printk(BIOS_DEBUG, "TCO_STS: ");
+
+ tco_arr = soc_tco_sts_array(&array_size);
+
+ print_num_status_bits(array_size, tco_sts, tco_arr);
+ printk(BIOS_DEBUG, "\n");
+
+ return tco_sts;
+}
+
+uint32_t pmc_clear_tco_status(void)
+{
+ return print_tco_status(soc_reset_tco_status());
+}
+
+/* GPE */
+void pmc_enable_gpe(uint32_t mask)
+{
+ uint32_t gpe0a_en = inl(ACPI_BASE_ADDRESS + GPE0_EN(GPE_STD));
+ gpe0a_en |= mask;
+ outl(gpe0a_en, ACPI_BASE_ADDRESS + GPE0_EN(GPE_STD));
+}
+
+void pmc_disable_gpe(uint32_t mask)
+{
+ uint32_t gpe0a_en = inl(ACPI_BASE_ADDRESS + GPE0_EN(GPE_STD));
+ gpe0a_en &= ~mask;
+ outl(gpe0a_en, ACPI_BASE_ADDRESS + GPE0_EN(GPE_STD));
+}
+
+void pmc_disable_all_gpe(void)
+{
+ pmc_disable_gpe(~0);
+}
+
+/* Clear the gpio gpe0 status bits in ACPI registers */
+void pmc_clear_gpi_gpe_sts(void)
+{
+ int i;
+
+ for (i = 0; i < GPE0_REG_MAX; i++) {
+ /* This is reserved GPE block and specific to chipset */
+ if (i == GPE_STD)
+ continue;
+ uint32_t gpe_sts = inl(ACPI_BASE_ADDRESS + GPE0_STS(i));
+ outl(gpe_sts, ACPI_BASE_ADDRESS + GPE0_STS(i));
+ }
+}
+
+static uint32_t reset_gpe_status(void)
+{
+ uint32_t gpe_sts = inl(ACPI_BASE_ADDRESS + GPE0_STS(GPE_STD));
+ outl(gpe_sts, ACPI_BASE_ADDRESS + GPE0_STS(GPE_STD));
+ return gpe_sts;
+}
+
+static uint32_t print_gpe_sts(uint32_t gpe_sts)
+{
+ size_t array_size;
+ const char *const *sts_arr;
+
+ if (!gpe_sts)
+ return gpe_sts;
+
+ printk(BIOS_DEBUG, "GPE0a_STS: ");
+
+ sts_arr = soc_gpe_sts_array(&array_size);
+ print_num_status_bits(array_size, gpe_sts, sts_arr);
+ printk(BIOS_DEBUG, "\n");
+
+ return gpe_sts;
+}
+
+uint32_t pmc_clear_gpe_status(void)
+{
+ return print_gpe_sts(reset_gpe_status());
+}
+
+__attribute__ ((weak))
+void soc_clear_pm_registers(uintptr_t pmc_bar)
+{
+}
+
+void pmc_clear_status(void)
+{
+ uint32_t prsts;
+ uintptr_t pmc_bar;
+
+ /* Read PMC base address from soc */
+ pmc_bar = soc_read_pmc_base();
+
+ prsts = read32((void *)(pmc_bar + PRSTS));
+ write32((void *)(pmc_bar + PRSTS), prsts);
+
+ soc_clear_pm_registers(pmc_bar);
+}
+
+__attribute__ ((weak))
+int soc_prev_sleep_state(const struct chipset_power_state *ps,
+ int prev_sleep_state)
+{
+ return prev_sleep_state;
+}
+
+/*
+ * Returns prev_sleep_state and also prints all power management registers.
+ * Calls soc_prev_sleep_state which may be impelmented by SOC.
+ */
+static int pmc_prev_sleep_state(const struct chipset_power_state *ps)
+{
+ /* Default to S0. */
+ int prev_sleep_state = ACPI_S0;
+
+ if (ps->pm1_sts & WAK_STS) {
+ switch (acpi_sleep_from_pm1(ps->pm1_cnt)) {
+ case ACPI_S3:
+ if (IS_ENABLED(CONFIG_HAVE_ACPI_RESUME))
+ prev_sleep_state = ACPI_S3;
+ break;
+ case ACPI_S5:
+ prev_sleep_state = ACPI_S5;
+ break;
+ }
+
+ /* Clear SLP_TYP. */
+ outl(ps->pm1_cnt & ~(SLP_TYP), ACPI_BASE_ADDRESS + PM1_CNT);
+ }
+ return soc_prev_sleep_state(ps, prev_sleep_state);
+}
+
+/*
+ * This function re-writes the gpe0 register values in power state
+ * cbmem variable. After system wakes from sleep state internal PMC logic
+ * writes default values in GPE_CFG register which gives a wrong offset to
+ * calculate the wake reason. So we need to set it again to the routing
+ * table as per the devicetree.
+ */
+void pmc_fixup_power_state(void)
+{
+ int i;
+ struct chipset_power_state *ps;
+
+ ps = cbmem_find(CBMEM_ID_POWER_STATE);
+ if (ps == NULL)
+ return;
+
+ for (i = 0; i < GPE0_REG_MAX; i++) {
+ ps->gpe0_sts[i] = inl(ACPI_BASE_ADDRESS + GPE0_STS(i));
+ ps->gpe0_en[i] = inl(ACPI_BASE_ADDRESS + GPE0_EN(i));
+ printk(BIOS_DEBUG, "gpe0_sts[%d]: %08x gpe0_en[%d]: %08x\n",
+ i, ps->gpe0_sts[i], i, ps->gpe0_en[i]);
+ }
+}
+
+/* Reads and prints ACPI specific PM registers */
+int pmc_fill_power_state(struct chipset_power_state *ps)
+{
+ int i;
+
+ ps->pm1_sts = inw(ACPI_BASE_ADDRESS + PM1_STS);
+ ps->pm1_en = inw(ACPI_BASE_ADDRESS + PM1_EN);
+ ps->pm1_cnt = inl(ACPI_BASE_ADDRESS + PM1_CNT);
+
+ printk(BIOS_DEBUG, "pm1_sts: %04x pm1_en: %04x pm1_cnt: %08x\n",
+ ps->pm1_sts, ps->pm1_en, ps->pm1_cnt);
+
+ for (i = 0; i < GPE0_REG_MAX; i++) {
+ ps->gpe0_sts[i] = inl(ACPI_BASE_ADDRESS + GPE0_STS(i));
+ ps->gpe0_en[i] = inl(ACPI_BASE_ADDRESS + GPE0_EN(i));
+ printk(BIOS_DEBUG, "gpe0_sts[%d]: %08x gpe0_en[%d]: %08x\n",
+ i, ps->gpe0_sts[i], i, ps->gpe0_en[i]);
+ }
+
+ soc_fill_power_state(ps);
+
+ ps->prev_sleep_state = pmc_prev_sleep_state(ps);
+ printk(BIOS_DEBUG, "prev_sleep_state %d\n", ps->prev_sleep_state);
+
+ return ps->prev_sleep_state;
+}
+
+/*
+ * If possible, lock 0xcf9. Once the register is locked, it can't be changed.
+ * This lock is reset on cold boot, hard reset, soft reset and Sx.
+ */
+void pmc_global_reset_lock(void)
+{
+ /* Read PMC base address from soc */
+ uintptr_t etr = soc_read_pmc_base() + ETR;
+ uint32_t reg;
+
+ reg = read32((void *)etr);
+ if (reg & CF9_LOCK)
+ return;
+ reg |= CF9_LOCK;
+ write32((void *)etr, reg);
+}
+
+/*
+ * Enable or disable global reset. If global reset is enabled, hard reset and
+ * soft reset will trigger global reset, where both host and TXE are reset.
+ * This is cleared on cold boot, hard reset, soft reset and Sx.
+ */
+void pmc_global_reset_enable(bool enable)
+{
+ /* Read PMC base address from soc */
+ uintptr_t etr = soc_read_pmc_base() + ETR;
+ uint32_t reg;
+
+ reg = read32((void *)etr);
+ reg = enable ? reg | CF9_GLB_RST : reg & ~CF9_GLB_RST;
+ write32((void *)etr, reg);
+}
+
+int vboot_platform_is_resuming(void)
+{
+ if (!(inw(ACPI_BASE_ADDRESS + PM1_STS) & WAK_STS))
+ return 0;
+
+ return acpi_sleep_from_pm1(inl(ACPI_BASE_ADDRESS + PM1_CNT)) == ACPI_S3;
+}
+
+/* Read and clear GPE status (defined in arch/acpi.h) */
+int acpi_get_gpe(int gpe)
+{
+ int bank;
+ uint32_t mask, sts;
+ struct stopwatch sw;
+ int rc = 0;
+
+ if (gpe < 0 || gpe > GPE_MAX)
+ return -1;
+
+ bank = gpe / 32;
+ mask = 1 << (gpe % 32);
+
+ /* Wait up to 1ms for GPE status to clear */
+ stopwatch_init_msecs_expire(&sw, 1);
+ do {
+ if (stopwatch_expired(&sw))
+ return rc;
+
+ sts = inl(ACPI_BASE_ADDRESS + GPE0_STS(bank));
+ if (sts & mask) {
+ outl(mask, ACPI_BASE_ADDRESS + GPE0_STS(bank));
+ rc = 1;
+ }
+ } while (sts & mask);
+
+ return rc;
+}
+
+/*
+ * The PM1 control is set to S5 when vboot requests a reboot because the power
+ * state code above may not have collected its data yet. Therefore, set it to
+ * S5 when vboot requests a reboot. That's necessary if vboot fails in the
+ * resume path and requests a reboot. This prevents a reboot loop where the
+ * error is continually hit on the failing vboot resume path.
+ */
+void vboot_platform_prepare_reboot(void)
+{
+ const uint16_t port = ACPI_BASE_ADDRESS + PM1_CNT;
+ outl((inl(port) & ~(SLP_TYP)) | (SLP_TYP_S5 << SLP_TYP_SHIFT), port);
+}
+
+void poweroff(void)
+{
+ pmc_enable_pm1_control(SLP_EN | (SLP_TYP_S5 << SLP_TYP_SHIFT));
+
+ /*
+ * Setting SLP_TYP_S5 in PM1 triggers SLP_SMI, which is handled by SMM
+ * to transition to S5 state. If halt is called in SMM, then it prevents
+ * the SMI handler from being triggered and system never enters S5.
+ */
+ if (!ENV_SMM)
+ halt();
+}
+
+void pmc_gpe_init(void)
+{
+ uint32_t gpio_cfg = 0;
+ uint32_t gpio_cfg_reg;
+ uint8_t dw0, dw1, dw2;
+
+ /* Read PMC base address from soc. This is implemented in soc */
+ uintptr_t pmc_bar = soc_read_pmc_base();
+
+ /*
+ * Get the dwX values for pmc gpe settings.
+ */
+ soc_get_gpe_configs(&dw0, &dw1, &dw2);
+
+ const uint32_t gpio_cfg_mask =
+ (GPE0_DWX_MASK << GPE0_DW_SHIFT(0)) |
+ (GPE0_DWX_MASK << GPE0_DW_SHIFT(1)) |
+ (GPE0_DWX_MASK << GPE0_DW_SHIFT(2));
+
+ /* Making sure that bad values don't bleed into the other fields */
+ dw0 &= GPE0_DWX_MASK;
+ dw1 &= GPE0_DWX_MASK;
+ dw2 &= GPE0_DWX_MASK;
+
+ /*
+ * Route the GPIOs to the GPE0 block. Determine that all values
+ * are different, and if they aren't use the reset values.
+ */
+ if (dw0 == dw1 || dw1 == dw2) {
+ printk(BIOS_INFO, "PMC: Using default GPE route.\n");
+ gpio_cfg = read32((void *)pmc_bar + GPIO_GPE_CFG);
+
+ dw0 = (gpio_cfg >> GPE0_DW_SHIFT(0)) & GPE0_DWX_MASK;
+ dw1 = (gpio_cfg >> GPE0_DW_SHIFT(1)) & GPE0_DWX_MASK;
+ dw2 = (gpio_cfg >> GPE0_DW_SHIFT(2)) & GPE0_DWX_MASK;
+ } else {
+ gpio_cfg |= (uint32_t) dw0 << GPE0_DW_SHIFT(0);
+ gpio_cfg |= (uint32_t) dw1 << GPE0_DW_SHIFT(1);
+ gpio_cfg |= (uint32_t) dw2 << GPE0_DW_SHIFT(2);
+ }
+
+ gpio_cfg_reg = read32((void *)pmc_bar + GPIO_GPE_CFG) & ~gpio_cfg_mask;
+ gpio_cfg_reg |= gpio_cfg & gpio_cfg_mask;
+
+ write32((void *)pmc_bar + GPIO_GPE_CFG, gpio_cfg_reg);
+
+ /* Set the routes in the GPIO communities as well. */
+ gpio_route_gpe(dw0, dw1, dw2);
+}