401ec98e06
Change-Id: I4ad080653c9af94a4dc73d93ddc4c8c117a682b9 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/55282 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
30 lines
705 B
C
30 lines
705 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#include <console/console.h>
|
|
#include <intelblocks/lpc_lib.h>
|
|
#include <soc/iomap.h>
|
|
#include <soc/pcr_ids.h>
|
|
|
|
#include <chip.h>
|
|
|
|
void soc_get_gen_io_dec_range(uint32_t gen_io_dec[LPC_NUM_GENERIC_IO_RANGES])
|
|
{
|
|
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;
|
|
}
|
|
|
|
void lpc_soc_init(struct device *dev)
|
|
{
|
|
printk(BIOS_SPEW, "pch: lpc_init\n");
|
|
|
|
/* FSP configures IOAPIC and PCHInterrupt Config */
|
|
/* Should read back the ID to fill ACPI IOAPIC accordingly. */
|
|
}
|
|
|
|
void pch_lpc_soc_fill_io_resources(struct device *dev)
|
|
{
|
|
}
|