summaryrefslogtreecommitdiff
path: root/sys/src/9/pc
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2022-03-18 20:18:19 +0000
committercinap_lenrek <cinap_lenrek@felloff.net>2022-03-18 20:18:19 +0000
commit02d1725d710b1f786f75c4f3cadc14cff37d5772 (patch)
treef6a4ce62ec236aff32c850183312d15eb58f5c27 /sys/src/9/pc
parente83917a6582647684edaf3be4a632a45b673e2e4 (diff)
uartpci: add serial-over-lan uart from x230/AMT
Diffstat (limited to 'sys/src/9/pc')
-rw-r--r--sys/src/9/pc/uartpci.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/src/9/pc/uartpci.c b/sys/src/9/pc/uartpci.c
index 5819a4896..7de78fed6 100644
--- a/sys/src/9/pc/uartpci.c
+++ b/sys/src/9/pc/uartpci.c
@@ -212,6 +212,9 @@ uartpcipnp(void)
break;
}
break;
+ case (0x1e3d << 16)|0x8086: /* C210 Series Chipset Family KT Controller */
+ uart = uartpci(ctlrno, p, 0, 1, 1843200, "serialoverlan", 8);
+ break;
}
if(uart)
ctlrno++;