svn commit: r329121 - stable/11/sys/dev/uart

Eitan Adler eadler at FreeBSD.org
Sun Feb 11 07:04:49 UTC 2018


Author: eadler
Date: Sun Feb 11 07:04:48 2018
New Revision: 329121
URL: https://svnweb.freebsd.org/changeset/base/329121

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

Modified:
  stable/11/sys/dev/uart/uart_bus_pci.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/dev/uart/uart_bus_pci.c
==============================================================================
--- stable/11/sys/dev/uart/uart_bus_pci.c	Sun Feb 11 07:00:40 2018	(r329120)
+++ stable/11/sys/dev/uart/uart_bus_pci.c	Sun Feb 11 07:04:48 2018	(r329121)
@@ -131,6 +131,10 @@ static const struct pci_id pci_ns8250_ids[] = {
 { 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-all mailing list