2021-01-28 23:40:52 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
|
2021-02-03 21:38:14 +01:00
|
|
|
#include <amdblocks/acpimmio.h>
|
2021-02-09 22:38:36 +01:00
|
|
|
#include <amdblocks/amd_pci_util.h>
|
2021-02-09 22:55:04 +01:00
|
|
|
#include <amdblocks/smi.h>
|
2021-02-03 21:38:14 +01:00
|
|
|
#include <assert.h>
|
2021-02-09 22:38:36 +01:00
|
|
|
#include <bootstate.h>
|
2021-02-09 22:55:04 +01:00
|
|
|
#include <cpu/x86/smm.h>
|
2021-02-09 22:38:36 +01:00
|
|
|
#include <soc/amd_pci_int_defs.h>
|
2021-02-03 21:38:14 +01:00
|
|
|
#include <soc/iomap.h>
|
2021-02-09 22:55:04 +01:00
|
|
|
#include <soc/smi.h>
|
2021-01-28 23:40:52 +01:00
|
|
|
#include <soc/southbridge.h>
|
|
|
|
|
2021-02-09 22:38:36 +01:00
|
|
|
/*
|
|
|
|
* Table of APIC register index and associated IRQ name. Using IDX_XXX_NAME
|
|
|
|
* provides a visible association with the index, therefore helping
|
|
|
|
* maintainability of table. If a new index/name is defined in
|
|
|
|
* amd_pci_int_defs.h, just add the pair at the end of this table.
|
|
|
|
* Order is not important.
|
|
|
|
*/
|
|
|
|
const static struct irq_idx_name irq_association[] = {
|
|
|
|
{ PIRQ_A, "INTA#" },
|
|
|
|
{ PIRQ_B, "INTB#" },
|
|
|
|
{ PIRQ_C, "INTC#" },
|
|
|
|
{ PIRQ_D, "INTD#" },
|
|
|
|
{ PIRQ_E, "INTE#" },
|
|
|
|
{ PIRQ_F, "INTF#/GENINT2" },
|
|
|
|
{ PIRQ_G, "INTG#" },
|
|
|
|
{ PIRQ_H, "INTH#" },
|
|
|
|
{ PIRQ_MISC, "Misc" },
|
|
|
|
{ PIRQ_MISC0, "Misc0" },
|
|
|
|
{ PIRQ_HPET_L, "HPET_L" },
|
|
|
|
{ PIRQ_HPET_H, "HPET_H" },
|
|
|
|
{ PIRQ_SIRQA, "Ser IRQ INTA" },
|
|
|
|
{ PIRQ_SIRQB, "Ser IRQ INTB" },
|
|
|
|
{ PIRQ_SIRQC, "Ser IRQ INTC" },
|
|
|
|
{ PIRQ_SIRQD, "Ser IRQ INTD" },
|
|
|
|
{ PIRQ_SCI, "SCI" },
|
|
|
|
{ PIRQ_SMBUS, "SMBUS" },
|
|
|
|
{ PIRQ_ASF, "ASF" },
|
|
|
|
{ PIRQ_PMON, "PerMon" },
|
|
|
|
{ PIRQ_SD, "SD" },
|
|
|
|
{ PIRQ_SDIO, "SDIO" },
|
|
|
|
{ PIRQ_CIR, "CIR" },
|
|
|
|
{ PIRQ_GPIOA, "GPIOa" },
|
|
|
|
{ PIRQ_GPIOB, "GPIOb" },
|
|
|
|
{ PIRQ_GPIOC, "GPIOc" },
|
|
|
|
{ PIRQ_SATA, "SATA" },
|
|
|
|
{ PIRQ_EMMC, "eMMC" },
|
|
|
|
{ PIRQ_GPP0, "GPP0" },
|
|
|
|
{ PIRQ_GPP1, "GPP1" },
|
|
|
|
{ PIRQ_GPP2, "GPP2" },
|
|
|
|
{ PIRQ_GPP3, "GPP3" },
|
|
|
|
{ PIRQ_GPIO, "GPIO" },
|
|
|
|
{ PIRQ_I2C0, "I2C0" },
|
|
|
|
{ PIRQ_I2C1, "I2C1" },
|
|
|
|
{ PIRQ_I2C2, "I2C2" },
|
|
|
|
{ PIRQ_I2C3, "I2C3" },
|
|
|
|
{ PIRQ_UART0, "UART0" },
|
|
|
|
{ PIRQ_UART1, "UART1" },
|
|
|
|
{ PIRQ_I2C4, "I2C4" },
|
|
|
|
{ PIRQ_I2C5, "I2C5" },
|
|
|
|
};
|
|
|
|
|
|
|
|
const struct irq_idx_name *sb_get_apic_reg_association(size_t *size)
|
|
|
|
{
|
|
|
|
*size = ARRAY_SIZE(irq_association);
|
|
|
|
return irq_association;
|
|
|
|
}
|
|
|
|
|
2021-02-03 21:38:14 +01:00
|
|
|
static void fch_init_acpi_ports(void)
|
|
|
|
{
|
2021-02-09 22:55:04 +01:00
|
|
|
u32 reg;
|
|
|
|
|
2021-02-03 21:38:14 +01:00
|
|
|
/* We use some of these ports in SMM regardless of whether or not
|
|
|
|
* ACPI tables are generated. Enable these ports indiscriminately.
|
|
|
|
*/
|
|
|
|
|
|
|
|
pm_write16(PM_EVT_BLK, ACPI_PM_EVT_BLK);
|
|
|
|
pm_write16(PM1_CNT_BLK, ACPI_PM1_CNT_BLK);
|
|
|
|
pm_write16(PM_TMR_BLK, ACPI_PM_TMR_BLK);
|
|
|
|
pm_write16(PM_GPE0_BLK, ACPI_GPE0_BLK);
|
|
|
|
|
|
|
|
if (CONFIG(HAVE_SMI_HANDLER)) {
|
2021-02-09 22:55:04 +01:00
|
|
|
/* APMC - SMI Command Port */
|
|
|
|
pm_write16(PM_ACPI_SMI_CMD, APM_CNT);
|
|
|
|
configure_smi(SMITYPE_SMI_CMD_PORT, SMI_MODE_SMI);
|
|
|
|
|
|
|
|
/* SMI on SlpTyp requires sending SMI before completion
|
|
|
|
response of the I/O write. */
|
|
|
|
reg = pm_read32(PM_PCI_CTRL);
|
|
|
|
reg |= FORCE_SLPSTATE_RETRY;
|
|
|
|
pm_write32(PM_PCI_CTRL, reg);
|
|
|
|
|
|
|
|
/* Disable SlpTyp feature */
|
|
|
|
reg = pm_read8(PM_RST_CTRL1);
|
|
|
|
reg &= ~SLPTYPE_CONTROL_EN;
|
|
|
|
pm_write8(PM_RST_CTRL1, reg);
|
|
|
|
|
|
|
|
configure_smi(SMITYPE_SLP_TYP, SMI_MODE_SMI);
|
2021-02-03 21:38:14 +01:00
|
|
|
} else {
|
|
|
|
pm_write16(PM_ACPI_SMI_CMD, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Decode ACPI registers and enable standard features */
|
|
|
|
pm_write8(PM_ACPI_CONF, PM_ACPI_DECODE_STD |
|
|
|
|
PM_ACPI_GLOBAL_EN |
|
|
|
|
PM_ACPI_RTC_EN_EN |
|
|
|
|
PM_ACPI_TIMER_EN_EN);
|
|
|
|
}
|
|
|
|
|
2021-01-28 23:40:52 +01:00
|
|
|
void fch_init(void *chip_info)
|
|
|
|
{
|
2021-02-03 21:38:14 +01:00
|
|
|
fch_init_acpi_ports();
|
2021-01-28 23:40:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void fch_final(void *chip_info)
|
|
|
|
{
|
|
|
|
}
|
2021-02-09 22:38:36 +01:00
|
|
|
|
|
|
|
static void set_pci_irqs(void *unused)
|
|
|
|
{
|
|
|
|
/* Write PCI_INTR regs 0xC00/0xC01 */
|
|
|
|
write_pci_int_table();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Hook this function into the PCI state machine
|
|
|
|
* on entry into BS_DEV_ENABLE.
|
|
|
|
*/
|
|
|
|
BOOT_STATE_INIT_ENTRY(BS_DEV_ENABLE, BS_ON_ENTRY, set_pci_irqs, NULL);
|