diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2014-02-28 15:15:12 +0200 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2014-04-09 11:30:53 +0200 |
commit | d53d96dddd1e8733b53519becda73288381d2396 (patch) | |
tree | 728d636464f903beb70b43fef270ff132dc9847d /src/drivers/uart/Kconfig | |
parent | 4c686f2106a33e7a452bec163c178724a0313616 (diff) | |
download | coreboot-d53d96dddd1e8733b53519becda73288381d2396.tar.xz |
OxPCIe uart: Move under drivers/uart
This driver is only a thin shell for uart8250mem and we could extend it
with further compatible PCI IDs from other vendors/brands.
Change-Id: Ic115b1baa0be0dbaa81e4a17a2e466019d3f4a67
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/5329
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/drivers/uart/Kconfig')
-rw-r--r-- | src/drivers/uart/Kconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/drivers/uart/Kconfig b/src/drivers/uart/Kconfig index 889c69a0bc..a979437023 100644 --- a/src/drivers/uart/Kconfig +++ b/src/drivers/uart/Kconfig @@ -21,6 +21,17 @@ config HAVE_UART_SPECIAL bool default n +config DRIVERS_UART_OXPCIE + bool "Oxford OXPCIe952" + default n + depends on PCI + select DRIVERS_UART_8250MEM + select EARLY_PCI_BRIDGE + help + Support for Oxford OXPCIe952 serial port PCIe cards. + Currently only devices with the vendor ID 0x1415 and device ID + 0xc158 or 0xc11b will work. + config DRIVERS_UART_PL011 bool default n |