diff options
Diffstat (limited to 'src/soc/intel')
-rw-r--r-- | src/soc/intel/quark/include/soc/pci_devs.h | 2 | ||||
-rw-r--r-- | src/soc/intel/quark/uart.c | 12 |
2 files changed, 6 insertions, 8 deletions
diff --git a/src/soc/intel/quark/include/soc/pci_devs.h b/src/soc/intel/quark/include/soc/pci_devs.h index 4ab23b9745..d776e1e7d7 100644 --- a/src/soc/intel/quark/include/soc/pci_devs.h +++ b/src/soc/intel/quark/include/soc/pci_devs.h @@ -25,6 +25,8 @@ #define MC_BDF PCI_DEV(PCI_BUS_NUMBER_QNC, MC_DEV, MC_FUN) /* IO Fabric 1 */ +#define HSUART_DEVID 0x0936 + #define SIO1_DEV 0x14 # define HSUART1_DEV SIO1_DEV # define HSUART1_FUNC 5 diff --git a/src/soc/intel/quark/uart.c b/src/soc/intel/quark/uart.c index b97fceafee..b4af08e2dd 100644 --- a/src/soc/intel/quark/uart.c +++ b/src/soc/intel/quark/uart.c @@ -19,6 +19,7 @@ #include <device/pci.h> #include <device/pci_def.h> #include <device/pci_ids.h> +#include <soc/pci_devs.h> static void uart_read_resources(device_t dev) { @@ -40,13 +41,8 @@ static struct device_operations device_ops = { .enable_resources = &pci_dev_enable_resources, }; -static const unsigned short uart_ids[] = { - 0x0936, /* HSUART0, HSUART1 */ - 0 -}; - static const struct pci_driver uart_driver __pci_driver = { - .ops = &device_ops, - .vendor = PCI_VENDOR_ID_INTEL, - .devices = uart_ids, + .ops = &device_ops, + .vendor = PCI_VENDOR_ID_INTEL, + .device = HSUART_DEVID, }; |