diff options
| author | msaitoh <msaitoh@NetBSD.org> | 2013-12-25 15:17:56 +0000 |
|---|---|---|
| committer | msaitoh <msaitoh@NetBSD.org> | 2013-12-25 15:17:56 +0000 |
| commit | bebe0ff75ccdb5c8254f729f31dc2771bd8843af (patch) | |
| tree | 54c475e746c590c3ef0fbfcf75ded03079cd645f /sys/dev | |
| parent | 615ae942c267bca2d2ac0285027619181729d0a7 (diff) | |
Add support S1200's UART. Part of PR#48016.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/pci/pucdata.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/sys/dev/pci/pucdata.c b/sys/dev/pci/pucdata.c index dcab95575f2..845638f5d33 100644 --- a/sys/dev/pci/pucdata.c +++ b/sys/dev/pci/pucdata.c @@ -1,4 +1,4 @@ -/* $NetBSD: pucdata.c,v 1.87 2013/11/07 15:55:08 msaitoh Exp $ */ +/* $NetBSD: pucdata.c,v 1.88 2013/12/25 15:17:56 msaitoh Exp $ */ /* * Copyright (c) 1998, 1999 Christopher G. Demetriou. All rights reserved. @@ -36,7 +36,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: pucdata.c,v 1.87 2013/11/07 15:55:08 msaitoh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: pucdata.c,v 1.88 2013/12/25 15:17:56 msaitoh Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -1851,6 +1851,15 @@ const struct puc_device_description puc_devices[] = { }, }, + /* Intel S1200 UART */ + { "Intel S1200 UART", + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_S1200_UART, 0, 0 }, + { 0xffff, 0xffff, 0, 0 }, + { + { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ }, + }, + }, + /* VScom PCI-200: 2S */ { "VScom PCI-200", { PCI_VENDOR_PLX, PCI_PRODUCT_PLX_PCI_200, |
