svn commit: r358710 - in stable: 11/share/man/man4 11/sys/dev/ismt 12/share/man/man4 12/sys/dev/ismt
Justin Hibbits
jhibbits at FreeBSD.org
Fri Mar 6 16:52:22 UTC 2020
Author: jhibbits
Date: Fri Mar 6 16:52:20 2020
New Revision: 358710
URL: https://svnweb.freebsd.org/changeset/base/358710
Log:
MFC r358595,r358619:
Add Atom C3000 (Denverton) SMT PCI ID.
Update ismt(4) man page.
Sponsored by: Juniper Networks, Inc
Modified:
stable/11/share/man/man4/ismt.4
stable/11/sys/dev/ismt/ismt.c
Directory Properties:
stable/11/ (props changed)
Changes in other areas also in this revision:
Modified:
stable/12/share/man/man4/ismt.4
stable/12/sys/dev/ismt/ismt.c
Directory Properties:
stable/12/ (props changed)
Modified: stable/11/share/man/man4/ismt.4
==============================================================================
--- stable/11/share/man/man4/ismt.4 Fri Mar 6 16:00:35 2020 (r358709)
+++ stable/11/share/man/man4/ismt.4 Fri Mar 6 16:52:20 2020 (r358710)
@@ -33,7 +33,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd January 11, 2016
+.Dd March 4, 2020
.Dt ISMT 4
.Os
.Sh NAME
@@ -46,7 +46,7 @@
.Cd device ismt
.Sh DESCRIPTION
This driver provides access to the SMBus 2.0 controller device contained
-in the Intel Atom S1200 and C2000 CPUs.
+in the Intel Atom S1200, C2000 and C3000 CPUs.
.Sh SEE ALSO
.Xr ichsmb 4 ,
.Xr smb 4 ,
Modified: stable/11/sys/dev/ismt/ismt.c
==============================================================================
--- stable/11/sys/dev/ismt/ismt.c Fri Mar 6 16:00:35 2020 (r358709)
+++ stable/11/sys/dev/ismt/ismt.c Fri Mar 6 16:52:20 2020 (r358710)
@@ -717,6 +717,7 @@ fail:
#define ID_INTEL_S1200_SMT0 0x0c598086
#define ID_INTEL_S1200_SMT1 0x0c5a8086
#define ID_INTEL_C2000_SMT 0x1f158086
+#define ID_INTEL_C3000_SMT 0x19ac8086
static int
ismt_probe(device_t dev)
@@ -732,6 +733,9 @@ ismt_probe(device_t dev)
break;
case ID_INTEL_C2000_SMT:
desc = "Atom Processor C2000 SMBus 2.0";
+ break;
+ case ID_INTEL_C3000_SMT:
+ desc = "Atom Processor C3000 SMBus 2.0";
break;
default:
return (ENXIO);
More information about the svn-src-all
mailing list