diff options
author | Henrich Hartzer <henrichhartzer@tuta.io> | 2024-04-19 22:52:49 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2024-04-24 23:57:55 +0000 |
commit | c7a5881d7a6a37881bb65837e42829ee68a3883c (patch) | |
tree | 6ec83e0c26cf6f5da722008a773e0f1d0bb46851 | |
parent | 99ec4feefba680f9d674bcddae360b731138249f (diff) |
Add support for Intel Atom S1200 UART
PR: 278316
Signed-off-by: Henrich Hartzer <henrichhartzer@tuta.io>
Reviewed by: imp
Pull Request: https://github.com/freebsd/freebsd-src/pull/1164
(cherry picked from commit 1f2776e123603042944aad9f41ceb46b5b28d8ae)
-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 f2da02d68f27..3b69439c75f0 100644 --- a/sys/dev/uart/uart_bus_pci.c +++ b/sys/dev/uart/uart_bus_pci.c @@ -136,6 +136,8 @@ static const struct pci_id pci_ns8250_ids[] = { { 0x1d0f, 0x8250, 0x1d0f, 0, "Amazon PCI serial device", 0x10 }, { 0x1fd4, 0x1999, 0x1fd4, 0x0001, "Sunix SER5xxxx Serial Port", 0x10, 8 * DEFAULT_RCLK }, +{ 0x8086, 0x0c5f, 0xffff, 0, "Atom Processor S1200 UART", + 0x10 | PCI_NO_MSI }, { 0x8086, 0x0f0a, 0xffff, 0, "Intel ValleyView LPIO1 HSUART#1", 0x10, 24 * DEFAULT_RCLK, 2 }, { 0x8086, 0x0f0c, 0xffff, 0, "Intel ValleyView LPIO1 HSUART#2", 0x10, |