svn commit: r220847 - stable/8/sys/dev/ichsmb

Alexander Motin mav at FreeBSD.org
Tue Apr 19 16:39:03 UTC 2011


Author: mav
Date: Tue Apr 19 16:39:03 2011
New Revision: 220847
URL: http://svn.freebsd.org/changeset/base/220847

Log:
  MFC r211905 (by jfv):
  Add support for Intel Cougar Point SMBus controller.

Modified:
  stable/8/sys/dev/ichsmb/ichsmb_pci.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)

Modified: stable/8/sys/dev/ichsmb/ichsmb_pci.c
==============================================================================
--- stable/8/sys/dev/ichsmb/ichsmb_pci.c	Tue Apr 19 16:36:24 2011	(r220846)
+++ stable/8/sys/dev/ichsmb/ichsmb_pci.c	Tue Apr 19 16:39:03 2011	(r220847)
@@ -81,6 +81,7 @@ __FBSDID("$FreeBSD$");
 #define ID_PCH				0x3b308086
 #define ID_6300ESB			0x25a48086
 #define	ID_631xESB			0x269b8086
+#define ID_CPT				0x1c228086
 
 #define PCIS_SERIALBUS_SMBUS_PROGIF	0x00
 
@@ -174,6 +175,9 @@ ichsmb_pci_probe(device_t dev)
 	case ID_631xESB:
 		device_set_desc(dev, "Intel 631xESB/6321ESB (ESB2) SMBus controller");
 		break;
+	case ID_CPT:
+		device_set_desc(dev, "Intel Cougar Point SMBus controller");
+		break;
 	default:
 		return (ENXIO);
 	}


More information about the svn-src-all mailing list