f50b25d7e2
The ec_smi_gpio and alt_gp_smi_en devicetree options are goign to be removed. The plan for skylake is to set the settings by the mainboard through either gpio pad configuration or through helper functions. Moreover, these values only allow *1* SMI GPIO configuration in that the following has to be true: alt_gp_smi_en = 1 << (ec_smi_gpio % 24) If not, then another gpio(s) from the same group has the SMI_EN bit set for it. Lastly, remove all the subsequent dependencies as they are no longer used: enable_alt_smi() and gpio_enable_group(). BUG=chrome-os-partner:43778 BRANCH=None TEST=None Original-Change-Id: I749a499c810d83de522a2ccce1dd9efb0ad2e20a Original-Signed-off-by: Aaron Durbin <adurbin@chromium.org> Original-Reviewed-on: https://chromium-review.googlesource.com/291931 Original-Reviewed-by: Duncan Laurie <dlaurie@chromium.org> Change-Id: I2e1cd6879b76923157268a1449c617ef2aada9c4 Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: http://review.coreboot.org/11204 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com>
310 lines
8 KiB
C
310 lines
8 KiB
C
/*
|
|
* This file is part of the coreboot project.
|
|
*
|
|
* Copyright (C) 2008-2009 coresystems GmbH
|
|
* Copyright (C) 2014 Google Inc.
|
|
* Copyright (C) 2015 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 <chip.h>
|
|
#include <console/console.h>
|
|
#include <device/device.h>
|
|
#include <device/pci.h>
|
|
#include <device/pci_ids.h>
|
|
#include <arch/io.h>
|
|
#include <arch/ioapic.h>
|
|
#include <arch/acpi.h>
|
|
#include <cpu/cpu.h>
|
|
#include <pc80/mc146818rtc.h>
|
|
#include <reg_script.h>
|
|
#include <string.h>
|
|
#include <soc/gpio.h>
|
|
#include <soc/iomap.h>
|
|
#include <soc/pci_devs.h>
|
|
#include <soc/pmc.h>
|
|
#include <soc/pm.h>
|
|
#include <cpu/x86/smm.h>
|
|
#include <soc/pcr.h>
|
|
#include <soc/ramstage.h>
|
|
#if IS_ENABLED(CONFIG_CHROMEOS)
|
|
#include <vendorcode/google/chromeos/chromeos.h>
|
|
#endif
|
|
|
|
static const struct reg_script pch_pmc_misc_init_script[] = {
|
|
/* SLP_S4=4s, SLP_S3=50ms, disable SLP_X stretching after SUS loss. */
|
|
REG_PCI_RMW16(GEN_PMCON_B,
|
|
~(S4MAW_MASK | SLP_S3_MIN_ASST_WDTH_MASK),
|
|
S4MAW_4S | SLP_S3_MIN_ASST_WDTH_50MS |
|
|
DIS_SLP_X_STRCH_SUS_UP),
|
|
/* Enable SCI and clear SLP requests. */
|
|
REG_IO_RMW32(ACPI_BASE_ADDRESS + PM1_CNT, ~SLP_TYP, SCI_EN),
|
|
/* Indicate DRAM init done for MRC */
|
|
REG_PCI_OR32(GEN_PMCON_A, DISB),
|
|
REG_SCRIPT_END
|
|
};
|
|
|
|
static const struct reg_script pmc_write1_to_clear_script[] = {
|
|
REG_PCI_OR32(GEN_PMCON_A, 0),
|
|
REG_PCI_OR32(GEN_PMCON_B, 0),
|
|
REG_PCI_OR32(GEN_PMCON_B, 0),
|
|
REG_RES_OR32(PWRMBASE, GBLRST_CAUSE0, 0),
|
|
REG_RES_OR32(PWRMBASE, GBLRST_CAUSE1, 0),
|
|
REG_SCRIPT_END
|
|
};
|
|
|
|
static void pch_pmc_add_mmio_resources(device_t dev)
|
|
{
|
|
struct resource *res;
|
|
|
|
/* Memory-mmapped I/O registers. */
|
|
res = new_resource(dev, PWRMBASE);
|
|
res->base = PCH_PWRM_BASE_ADDRESS;
|
|
res->size = PCH_PWRM_BASE_SIZE;
|
|
res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED |
|
|
IORESOURCE_FIXED | IORESOURCE_RESERVE;
|
|
}
|
|
|
|
static void pch_pmc_add_io_resource(device_t dev, u16 base, u16 size, int index)
|
|
{
|
|
struct resource *res;
|
|
res = new_resource(dev, index);
|
|
res->base = base;
|
|
res->size = size;
|
|
res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
|
|
}
|
|
|
|
static void pch_pmc_add_io_resources(device_t dev)
|
|
{
|
|
/* PMBASE */
|
|
pch_pmc_add_io_resource(dev, ACPI_BASE_ADDRESS, ACPI_BASE_SIZE, ABASE);
|
|
}
|
|
|
|
static void pch_pmc_read_resources(device_t dev)
|
|
{
|
|
/* Get the normal PCI resources of this device. */
|
|
pci_dev_read_resources(dev);
|
|
|
|
/* Add non-standard MMIO resources. */
|
|
pch_pmc_add_mmio_resources(dev);
|
|
|
|
/* Add IO resources. */
|
|
pch_pmc_add_io_resources(dev);
|
|
}
|
|
|
|
static void pch_set_acpi_mode(void)
|
|
{
|
|
if (IS_ENABLED(CONFIG_HAVE_SMI_HANDLER) && acpi_slp_type != 3) {
|
|
printk(BIOS_DEBUG, "Disabling ACPI via APMC:\n");
|
|
outb(APM_CNT_ACPI_DISABLE, APM_CNT);
|
|
printk(BIOS_DEBUG, "done.\n");
|
|
}
|
|
}
|
|
|
|
#if IS_ENABLED(CONFIG_CHROMEOS_VBNV_CMOS)
|
|
/*
|
|
* Preserve Vboot NV data when clearing CMOS as it will
|
|
* have been re-initialized already by Vboot firmware init.
|
|
*/
|
|
static void pch_cmos_init_preserve(int reset)
|
|
{
|
|
uint8_t vbnv[CONFIG_VBNV_SIZE];
|
|
if (reset)
|
|
read_vbnv(vbnv);
|
|
|
|
cmos_init(reset);
|
|
|
|
if (reset)
|
|
save_vbnv(vbnv);
|
|
}
|
|
#endif
|
|
|
|
static void pch_rtc_init(void)
|
|
{
|
|
u8 reg8;
|
|
int rtc_failed;
|
|
/*PMC Controller Device 0x1F, Func 02*/
|
|
device_t dev = PCH_DEV_PMC;
|
|
reg8 = pci_read_config8(dev, GEN_PMCON_B);
|
|
rtc_failed = reg8 & RTC_BATTERY_DEAD;
|
|
if (rtc_failed) {
|
|
reg8 &= ~RTC_BATTERY_DEAD;
|
|
pci_write_config8(dev, GEN_PMCON_B, reg8);
|
|
printk(BIOS_DEBUG, "rtc_failed = 0x%x\n", rtc_failed);
|
|
}
|
|
|
|
#if IS_ENABLED(CONFIG_CHROMEOS_VBNV_CMOS)
|
|
pch_cmos_init_preserve(rtc_failed);
|
|
#else
|
|
cmos_init(rtc_failed);
|
|
#endif
|
|
}
|
|
|
|
static void pmc_gpe_init(config_t *config)
|
|
{
|
|
uint8_t *pmc_regs;
|
|
uint32_t gpio_cfg;
|
|
uint32_t gpio_cfg_reg;
|
|
const uint32_t gpio_cfg_mask =
|
|
(GPE0_DWX_MASK << GPE0_DW0_SHIFT) |
|
|
(GPE0_DWX_MASK << GPE0_DW1_SHIFT) |
|
|
(GPE0_DWX_MASK << GPE0_DW2_SHIFT);
|
|
|
|
pmc_regs = pmc_mmio_regs();
|
|
gpio_cfg = 0;
|
|
|
|
/* Route the GPIOs to the GPE0 block. Determine that all values
|
|
* are different, and if they aren't use the reset values. */
|
|
if (config->gpe0_dw0 == config->gpe0_dw1 ||
|
|
config->gpe0_dw1 == config->gpe0_dw2) {
|
|
printk(BIOS_INFO, "PMC: Using default GPE route.\n");
|
|
gpio_cfg = read32(pmc_regs + GPIO_CFG);
|
|
} else {
|
|
gpio_cfg |= (uint32_t)config->gpe0_dw0 << GPE0_DW0_SHIFT;
|
|
gpio_cfg |= (uint32_t)config->gpe0_dw1 << GPE0_DW1_SHIFT;
|
|
gpio_cfg |= (uint32_t)config->gpe0_dw2 << GPE0_DW2_SHIFT;
|
|
}
|
|
gpio_cfg_reg = read32(pmc_regs + GPIO_CFG) & ~gpio_cfg_mask;
|
|
gpio_cfg_reg |= gpio_cfg & gpio_cfg_mask;
|
|
write32(pmc_regs + GPIO_CFG, gpio_cfg_reg);
|
|
|
|
/* Set the routes in the GPIO communities as well. */
|
|
gpio_route_gpe(gpio_cfg_reg >> GPE0_DW0_SHIFT);
|
|
|
|
/* Set GPE enables based on devictree. */
|
|
enable_all_gpe(config->gpe0_en_1, config->gpe0_en_2,
|
|
config->gpe0_en_3, config->gpe0_en_4);
|
|
}
|
|
|
|
static void pch_power_options(void)
|
|
{
|
|
u16 reg16;
|
|
const char *state;
|
|
/*PMC Controller Device 0x1F, Func 02*/
|
|
device_t dev = PCH_DEV_PMC;
|
|
/* Get the chip configuration */
|
|
config_t *config = dev->chip_info;
|
|
int pwr_on = CONFIG_MAINBOARD_POWER_ON_AFTER_POWER_FAIL;
|
|
|
|
/*
|
|
* Which state do we want to goto after g3 (power restored)?
|
|
* 0 == S0 Full On
|
|
* 1 == S5 Soft Off
|
|
*
|
|
* If the option is not existent (Laptops), use Kconfig setting.
|
|
*/
|
|
/*TODO: cmos_layout.bin need to verify; cause wrong CMOS setup*/
|
|
//get_option(&pwr_on, "power_on_after_fail");
|
|
pwr_on = MAINBOARD_POWER_ON;
|
|
reg16 = pci_read_config16(dev, GEN_PMCON_B);
|
|
reg16 &= 0xfffe;
|
|
switch (pwr_on) {
|
|
case MAINBOARD_POWER_OFF:
|
|
reg16 |= 1;
|
|
state = "off";
|
|
break;
|
|
case MAINBOARD_POWER_ON:
|
|
reg16 &= ~1;
|
|
state = "on";
|
|
break;
|
|
case MAINBOARD_POWER_KEEP:
|
|
reg16 &= ~1;
|
|
state = "state keep";
|
|
break;
|
|
default:
|
|
state = "undefined";
|
|
}
|
|
pci_write_config16(dev, GEN_PMCON_B, reg16);
|
|
printk(BIOS_INFO, "Set power %s after power failure.\n", state);
|
|
|
|
/* Set up GPE configuration. */
|
|
pmc_gpe_init(config);
|
|
}
|
|
|
|
static void config_deep_sX(uint32_t offset, uint32_t mask, int sx, int enable)
|
|
{
|
|
uint32_t reg;
|
|
uint8_t *pmcbase = pmc_mmio_regs();
|
|
|
|
printk(BIOS_DEBUG, "%sabling Deep S%c\n",
|
|
enable ? "En" : "Dis", sx + '0');
|
|
reg = read32(pmcbase + offset);
|
|
if (enable)
|
|
reg |= mask;
|
|
else
|
|
reg &= ~mask;
|
|
write32(pmcbase + offset, reg);
|
|
}
|
|
|
|
static void config_deep_s5(int on)
|
|
{
|
|
/* Treat S4 the same as S5. */
|
|
config_deep_sX(S4_PWRGATE_POL, S4DC_GATE_SUS | S4AC_GATE_SUS, 4, on);
|
|
config_deep_sX(S5_PWRGATE_POL, S5DC_GATE_SUS | S5AC_GATE_SUS, 5, on);
|
|
}
|
|
|
|
static void config_deep_s3(int on)
|
|
{
|
|
config_deep_sX(S3_PWRGATE_POL, S3DC_GATE_SUS | S3AC_GATE_SUS, 3, on);
|
|
}
|
|
|
|
static void config_deep_sx(uint32_t deepsx_config)
|
|
{
|
|
uint32_t reg;
|
|
uint8_t *pmcbase = pmc_mmio_regs();
|
|
|
|
reg = read32(pmcbase + DSX_CFG);
|
|
reg &= ~DSX_CFG_MASK;
|
|
reg |= deepsx_config;
|
|
write32(pmcbase + DSX_CFG, reg);
|
|
}
|
|
|
|
static void pmc_init(struct device *dev)
|
|
{
|
|
config_t *config = dev->chip_info;
|
|
|
|
pch_rtc_init();
|
|
|
|
/* Initialize power management */
|
|
pch_power_options();
|
|
|
|
/* Note that certain bits may be cleared from running script as
|
|
* certain bit fields are write 1 to clear. */
|
|
reg_script_run_on_dev(dev, pch_pmc_misc_init_script);
|
|
pch_set_acpi_mode();
|
|
|
|
config_deep_s3(config->deep_s3_enable);
|
|
config_deep_s5(config->deep_s5_enable);
|
|
config_deep_sx(config->deep_sx_config);
|
|
|
|
/* Clear registers that contain write-1-to-clear bits. */
|
|
reg_script_run_on_dev(dev, pmc_write1_to_clear_script);
|
|
}
|
|
|
|
static struct device_operations device_ops = {
|
|
.read_resources = &pch_pmc_read_resources,
|
|
.set_resources = &pci_dev_set_resources,
|
|
.enable_resources = &pci_dev_enable_resources,
|
|
.init = &pmc_init,
|
|
.scan_bus = &scan_lpc_bus,
|
|
.ops_pci = &soc_pci_ops,
|
|
};
|
|
|
|
static const unsigned short pci_device_ids[] = {
|
|
0x9d21,
|
|
0
|
|
};
|
|
|
|
static const struct pci_driver pch_lpc __pci_driver = {
|
|
.ops = &device_ops,
|
|
.vendor = PCI_VENDOR_ID_INTEL,
|
|
.devices = pci_device_ids,
|
|
};
|