svn commit: r308926 - head/sys/dev/uart

Sean Bruno sbruno at FreeBSD.org
Mon Nov 21 14:43:32 UTC 2016


Author: sbruno
Date: Mon Nov 21 14:43:31 2016
New Revision: 308926
URL: https://svnweb.freebsd.org/changeset/base/308926

Log:
  Add Intel Atom Cherryview SOC HSUART support
  
  PR:	207910
  Submitted by:	johannes at brilliantservice.co.jp
  MFC after:	1 week

Modified:
  head/sys/dev/uart/uart_bus_pci.c

Modified: head/sys/dev/uart/uart_bus_pci.c
==============================================================================
--- head/sys/dev/uart/uart_bus_pci.c	Mon Nov 21 14:13:57 2016	(r308925)
+++ head/sys/dev/uart/uart_bus_pci.c	Mon Nov 21 14:43:31 2016	(r308926)
@@ -128,6 +128,10 @@ static const struct pci_id pci_ns8250_id
 { 0x8086, 0x1c3d, 0xffff, 0, "Intel AMT - KT Controller", 0x10 },
 { 0x8086, 0x1d3d, 0xffff, 0, "Intel C600/X79 Series Chipset KT Controller", 0x10 },
 { 0x8086, 0x1e3d, 0xffff, 0, "Intel Panther Point KT Controller", 0x10 },
+{ 0x8086, 0x228a, 0xffff, 0, "Intel Cherryview SIO HSUART#1", 0x10,
+       24 * DEFAULT_RCLK, 2 },
+{ 0x8086, 0x228c, 0xffff, 0, "Intel Cherryview SIO HSUART#2", 0x10,
+       24 * DEFAULT_RCLK, 2 },
 { 0x8086, 0x2a07, 0xffff, 0, "Intel AMT - PM965/GM965 KT Controller", 0x10 },
 { 0x8086, 0x2a47, 0xffff, 0, "Mobile 4 Series Chipset KT Controller", 0x10 },
 { 0x8086, 0x2e17, 0xffff, 0, "4 Series Chipset Serial KT Controller", 0x10 },


More information about the svn-src-head mailing list