diff --git a/soc/x86/apollo_lake/Kconfig.soc b/soc/x86/apollo_lake/Kconfig.soc index b34093f0fa0..4e2a17cdeef 100644 --- a/soc/x86/apollo_lake/Kconfig.soc +++ b/soc/x86/apollo_lake/Kconfig.soc @@ -8,8 +8,6 @@ config SOC_APOLLO_LAKE bool "Intel Apollo Lake Soc" select CPU_APOLLO_LAKE select HAS_I2C_DW - select PCI - select PCI_ENUMERATION select PCIE select PCIE_MSI select DYNAMIC_INTERRUPTS diff --git a/soc/x86/apollo_lake/soc.h b/soc/x86/apollo_lake/soc.h index ba0d2d394a1..d670f0508b6 100644 --- a/soc/x86/apollo_lake/soc.h +++ b/soc/x86/apollo_lake/soc.h @@ -27,24 +27,4 @@ #include "soc_gpio.h" #endif -#ifdef CONFIG_PCI - -/* - * PCI definitions - */ -#define PCI_BUS_NUMBERS 1 - -#define PCI_CTRL_ADDR_REG 0xCF8 -#define PCI_CTRL_DATA_REG 0xCFC - -/** - * @brief Convert PCI interrupt PIN to IRQ - * - * BIOS should have assigned vectors linearly. - * If not, override this in board configuration. - */ -#define pci_pin2irq(bus, dev, pin) (pin) - -#endif /* CONFIG_PCI */ - #endif /* __SOC_H_ */