svn commit: r334722 - head/sys/dev/puc

Conrad Meyer cem at FreeBSD.org
Wed Jun 6 16:47:34 UTC 2018


Author: cem
Date: Wed Jun  6 16:47:33 2018
New Revision: 334722
URL: https://svnweb.freebsd.org/changeset/base/334722

Log:
  puc(4): Add provisional support for Exar XR17V352
  
  Reportedly, this is sufficient for 4800bps use, but maybe not any better.
  
  PR:		228781
  Submitted by:	peo AT nethead.se

Modified:
  head/sys/dev/puc/pucdata.c

Modified: head/sys/dev/puc/pucdata.c
==============================================================================
--- head/sys/dev/puc/pucdata.c	Wed Jun  6 16:25:00 2018	(r334721)
+++ head/sys/dev/puc/pucdata.c	Wed Jun  6 16:47:33 2018	(r334722)
@@ -689,6 +689,13 @@ const struct puc_cfg puc_pci_devices[] = {
 	    .config_function = puc_config_exar
 	},
 
+	{   0x13a8, 0x0352, 0xffff, 0,
+	    "Exar XR17V352",
+	    125000000,
+	    PUC_PORT_2S, 0x10, 0, -1,
+	    .config_function = puc_config_exar_pcie
+	},
+
 	/* The XR17V358 uses the 125MHz PCIe clock as its reference clock. */
 	{   0x13a8, 0x0358, 0xffff, 0,
 	    "Exar XR17V358",


More information about the svn-src-head mailing list