diff options
author | marius <marius@FreeBSD.org> | 2015-02-08 21:41:18 +0000 |
---|---|---|
committer | marius <marius@FreeBSD.org> | 2015-02-08 21:41:18 +0000 |
commit | ff1f47aebc5a88be518bca28fd1e1b2f6545af58 (patch) | |
tree | b404c660fa663a776f9937100025fe1860e0dd92 /sys/dev/uart/uart_bus_pci.c | |
parent | 182ebd19419e3a0d5c4043449358be08bcdcdf68 (diff) | |
download | FreeBSD-src-ff1f47aebc5a88be518bca28fd1e1b2f6545af58.zip FreeBSD-src-ff1f47aebc5a88be518bca28fd1e1b2f6545af58.tar.gz |
MFC: r266744, r267712, r276351, r277043
- Add PCI ID for AMT based serial interface found on the Lenovo T61.
- add support for MosChip MCS9922... This is found on an ExpressCard.. [1]
- Add PCI ID for the Oxford Semiconductor OXPCIe952 device.
PR: 186891 [1]
Diffstat (limited to 'sys/dev/uart/uart_bus_pci.c')
-rw-r--r-- | sys/dev/uart/uart_bus_pci.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/dev/uart/uart_bus_pci.c b/sys/dev/uart/uart_bus_pci.c index e92808c..7d977a0 100644 --- a/sys/dev/uart/uart_bus_pci.c +++ b/sys/dev/uart/uart_bus_pci.c @@ -112,12 +112,15 @@ static const struct pci_id pci_ns8250_ids[] = { 8 * DEFAULT_RCLK }, { 0x1415, 0x950b, 0xffff, 0, "Oxford Semiconductor OXCB950 Cardbus 16950 UART", 0x10, 16384000 }, +{ 0x1415, 0xc120, 0xffff, 0, "Oxford Semiconductor OXPCIe952 PCIe 16950 UART", + 0x10 }, { 0x14e4, 0x4344, 0xffff, 0, "Sony Ericsson GC89 PC Card", 0x10}, { 0x151f, 0x0000, 0xffff, 0, "TOPIC Semiconductor TP560 56k modem", 0x10 }, { 0x1fd4, 0x1999, 0x1fd4, 0x0001, "Sunix SER5xxxx Serial Port", 0x10, 8 * DEFAULT_RCLK }, { 0x8086, 0x1c3d, 0xffff, 0, "Intel AMT - KT Controller", 0x10 }, { 0x8086, 0x1d3d, 0xffff, 0, "Intel C600/X79 Series Chipset KT Controller", 0x10 }, +{ 0x8086, 0x2a07, 0xffff, 0, "Intel AMT - PM965/GM965 KT Controller", 0x10 }, { 0x8086, 0x2e17, 0xffff, 0, "4 Series Chipset Serial KT Controller", 0x10 }, { 0x8086, 0x3b67, 0xffff, 0, "5 Series/3400 Series Chipset KT Controller", 0x10 }, @@ -136,6 +139,8 @@ static const struct pci_id pci_ns8250_ids[] = { "MosChip MCS9901 PCIe to Peripheral Controller", 0x10 }, { 0x9710, 0x9904, 0xa000, 0x1000, "MosChip MCS9904 PCIe to Peripheral Controller", 0x10 }, +{ 0x9710, 0x9922, 0xa000, 0x1000, + "MosChip MCS9922 PCIe to Peripheral Controller", 0x10 }, { 0xdeaf, 0x9051, 0xffff, 0, "Middle Digital PC Weasel Serial Port", 0x10 }, { 0xffff, 0, 0xffff, 0, NULL, 0, 0} }; |