2020-04-05 15:47:17 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2015-05-13 03:19:47 +02:00
|
|
|
|
|
|
|
#include <device/device.h>
|
|
|
|
#include <device/pci.h>
|
|
|
|
#include <pc80/isa-dma.h>
|
|
|
|
#include <pc80/i8259.h>
|
|
|
|
#include <arch/ioapic.h>
|
2017-04-12 01:05:23 +02:00
|
|
|
#include <intelblocks/itss.h>
|
2017-09-29 02:06:01 +02:00
|
|
|
#include <intelblocks/lpc_lib.h>
|
2015-05-13 03:19:47 +02:00
|
|
|
#include <soc/iomap.h>
|
2017-03-08 13:29:40 +01:00
|
|
|
#include <soc/pcr_ids.h>
|
2017-12-08 17:51:21 +01:00
|
|
|
#include <soc/intel/common/block/lpc/lpc_def.h>
|
2017-09-29 02:06:01 +02:00
|
|
|
|
2019-03-21 11:10:03 +01:00
|
|
|
#include "chip.h"
|
|
|
|
|
2021-05-12 14:52:12 +02:00
|
|
|
void soc_get_gen_io_dec_range(uint32_t gen_io_dec[LPC_NUM_GENERIC_IO_RANGES])
|
2015-05-13 03:19:47 +02:00
|
|
|
{
|
2020-12-23 23:11:00 +01:00
|
|
|
const config_t *config = config_of_soc();
|
2015-05-13 03:19:47 +02:00
|
|
|
|
2017-09-29 02:06:01 +02:00
|
|
|
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;
|
2015-05-13 03:19:47 +02:00
|
|
|
}
|
|
|
|
|
2018-01-10 06:21:50 +01:00
|
|
|
void lpc_soc_init(struct device *dev)
|
2015-05-13 03:19:47 +02:00
|
|
|
{
|
2019-07-13 21:16:25 +02:00
|
|
|
const config_t *const config = config_of(dev);
|
2019-02-23 19:24:51 +01:00
|
|
|
|
2015-05-13 03:19:47 +02:00
|
|
|
/* Legacy initialization */
|
|
|
|
isa_dma_init();
|
2020-09-29 11:06:40 +02:00
|
|
|
pch_misc_init();
|
2021-09-28 10:28:38 +02:00
|
|
|
|
|
|
|
/* Enable BIOS updates outside of SMM */
|
|
|
|
pci_and_config8(PCH_DEV_LPC, 0xdc, ~(1 << 5));
|
2017-09-29 02:06:01 +02:00
|
|
|
|
|
|
|
/* Enable CLKRUN_EN for power gating LPC */
|
|
|
|
lpc_enable_pci_clk_cntl();
|
|
|
|
|
|
|
|
/* Set LPC Serial IRQ mode */
|
2019-02-23 19:24:51 +01:00
|
|
|
lpc_set_serirq_mode(config->serirq_mode);
|
2015-05-13 03:19:47 +02:00
|
|
|
|
|
|
|
/* Interrupt configuration */
|
2020-09-29 10:25:50 +02:00
|
|
|
pch_enable_ioapic();
|
2020-09-29 10:58:09 +02:00
|
|
|
pch_pirq_init();
|
2015-05-13 03:19:47 +02:00
|
|
|
setup_i8259();
|
|
|
|
i8259_configure_irq_trigger(9, 1);
|
|
|
|
}
|