d2c57f2a0c
Drop the old, redundant code for mirroring LPC registers to DMI and make use of the new common code. Select the new Kconfig option for LPC DMI mirroring by the option SOC_INTEL_COMMON_PCH_BASE, which is selected by platforms starting with SPT, except APL and Xeon-SP. For Xeon-SP, select DMI and the new Kconfig directly. APL, even though it's younger than SPT, does not need mirroring. Test: Set LGMR address by calling `lpc_open_mmio_window` and check that both the PCI cfg and DMI LGMR register get written correctly. Tested successfully on clevo/cml-u. Change-Id: Ibd834f1474d986646bcebb754a17db97831a651f Signed-off-by: Michael Niewöhner <foss@mniewoehner.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49593 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
69 lines
1.7 KiB
C
69 lines
1.7 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <device/device.h>
|
|
#include <device/pci.h>
|
|
#include <pc80/isa-dma.h>
|
|
#include <pc80/i8259.h>
|
|
#include <arch/io.h>
|
|
#include <device/pci_ops.h>
|
|
#include <arch/ioapic.h>
|
|
#include <intelblocks/itss.h>
|
|
#include <intelblocks/lpc_lib.h>
|
|
#include <soc/espi.h>
|
|
#include <soc/iomap.h>
|
|
#include <soc/irq.h>
|
|
#include <soc/pci_devs.h>
|
|
#include <soc/pcr_ids.h>
|
|
#include <soc/soc_chip.h>
|
|
|
|
void soc_get_gen_io_dec_range(uint32_t *gen_io_dec)
|
|
{
|
|
const config_t *config = config_of_soc();
|
|
|
|
gen_io_dec[0] = config->gen1_dec;
|
|
gen_io_dec[1] = config->gen2_dec;
|
|
gen_io_dec[2] = config->gen3_dec;
|
|
gen_io_dec[3] = config->gen4_dec;
|
|
}
|
|
|
|
#if ENV_RAMSTAGE
|
|
void lpc_soc_init(struct device *dev)
|
|
{
|
|
/* Legacy initialization */
|
|
isa_dma_init();
|
|
pch_misc_init();
|
|
|
|
/* Enable CLKRUN_EN for power gating ESPI */
|
|
lpc_enable_pci_clk_cntl();
|
|
|
|
/* Set ESPI Serial IRQ mode */
|
|
if (CONFIG(SERIRQ_CONTINUOUS_MODE))
|
|
lpc_set_serirq_mode(SERIRQ_CONTINUOUS);
|
|
else
|
|
lpc_set_serirq_mode(SERIRQ_QUIET);
|
|
|
|
/* Interrupt configuration */
|
|
pch_enable_ioapic();
|
|
pch_pirq_init();
|
|
setup_i8259();
|
|
i8259_configure_irq_trigger(9, 1);
|
|
}
|
|
|
|
/* Fill up ESPI IO resource structure inside SoC directory */
|
|
void pch_lpc_soc_fill_io_resources(struct device *dev)
|
|
{
|
|
/*
|
|
* PMC pci device gets hidden from PCI bus due to Silicon
|
|
* policy hence bind ACPI BASE aka ABASE (offset 0x20) with
|
|
* ESPI IO resources to ensure that ABASE falls under PCI reserved
|
|
* IO memory range.
|
|
*
|
|
* Note: Don't add any more resource with same offset 0x20
|
|
* under this device space.
|
|
*/
|
|
pch_lpc_add_new_resource(dev, PCI_BASE_ADDRESS_4,
|
|
ACPI_BASE_ADDRESS, ACPI_BASE_SIZE, IORESOURCE_IO |
|
|
IORESOURCE_ASSIGNED | IORESOURCE_FIXED);
|
|
}
|
|
|
|
#endif
|