diff options
author | Stuart McLaren <stuartinhavana@yahoo.com> | 2022-12-20 14:58:32 +0000 |
---|---|---|
committer | Li-Wen Hsu <lwhsu@FreeBSD.org> | 2022-12-20 15:56:00 +0000 |
commit | 68ca3a155321a4d68afd6a4f0e940dbbcb6917b6 (patch) | |
tree | 8aa3239d499c6a39ba11a0bf20904b331201576c | |
parent | ae521fda895ff0b5076904f08ec92e3c60d53701 (diff) | |
download | src-68ca3a155321a4d68afd6a4f0e940dbbcb6917b6.tar.gz src-68ca3a155321a4d68afd6a4f0e940dbbcb6917b6.zip |
uart(4): Add support for AMT virtual serial port (C610/X99 series)
PR: 267053
MFC after: 3 days
-rw-r--r-- | sys/dev/uart/uart_bus_pci.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/uart/uart_bus_pci.c b/sys/dev/uart/uart_bus_pci.c index 8fa7620d1cd2..2ac91e09221d 100644 --- a/sys/dev/uart/uart_bus_pci.c +++ b/sys/dev/uart/uart_bus_pci.c @@ -179,6 +179,8 @@ static const struct pci_id pci_ns8250_ids[] = { { 0x8086, 0x8814, 0xffff, 0, "Intel EG20T Serial Port 3", 0x10 }, { 0x8086, 0x8c3d, 0xffff, 0, "Intel Lynx Point KT Controller", 0x10 }, { 0x8086, 0x8cbd, 0xffff, 0, "Intel Wildcat Point KT Controller", 0x10 }, +{ 0x8086, 0x8d3d, 0xffff, 0, + "Intel Corporation C610/X99 series chipset KT Controller", 0x10 }, { 0x8086, 0x9c3d, 0xffff, 0, "Intel Lynx Point-LP HECI KT", 0x10 }, { 0x8086, 0xa13d, 0xffff, 0, "100 Series/C230 Series Chipset Family KT Redirection", |