soc/x86/apollo_lake: remove legacy PCI support

The Apollo Lake SoC no longer uses the legacy PCI driver, so remove
references and supporting code.

Signed-off-by: Charles E. Youse <charles.youse@intel.com>
This commit is contained in:
Charles E. Youse 2019-05-23 14:15:46 -07:00 committed by Anas Nashif
commit 546cf75a40
2 changed files with 0 additions and 22 deletions

View file

@ -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

View file

@ -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_ */