diff options
| author | Stuart McLaren <stuartinhavana@yahoo.com> | 2022-12-20 14:58:32 +0000 |
|---|---|---|
| committer | Li-Wen Hsu <lwhsu@FreeBSD.org> | 2022-12-28 15:09:12 +0000 |
| commit | f3e8aee2ca6cd02d73988f248e7161ff45369a03 (patch) | |
| tree | 2a541f7e9d793a1c283e8f3e3c69fa91d8df6bb1 | |
| parent | 16603f60156e13ea47e66b2fdcc391bb13db7dee (diff) | |
| download | src-f3e8aee2ca6cd02d73988f248e7161ff45369a03.tar.gz src-f3e8aee2ca6cd02d73988f248e7161ff45369a03.zip | |
uart(4): Add support for AMT virtual serial port (C610/X99 series)
PR: 267053
MFC after: 3 days
(cherry picked from commit 68ca3a155321a4d68afd6a4f0e940dbbcb6917b6)
| -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 b7612cda9f58..cf7fbb99b3d5 100644 --- a/sys/dev/uart/uart_bus_pci.c +++ b/sys/dev/uart/uart_bus_pci.c @@ -175,6 +175,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", 0x10 }, |
