Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 27 Aug 2010 23:24:09 +0000 (UTC)
From:      Jack F Vogel <jfv@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r211905 - head/sys/dev/ichsmb
Message-ID:  <201008272324.o7RNO9CH010856@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jfv
Date: Fri Aug 27 23:24:08 2010
New Revision: 211905
URL: http://svn.freebsd.org/changeset/base/211905

Log:
  Add support for Intel Cougar Point SMBus controller.
  
  MFC afer 1 week

Modified:
  head/sys/dev/ichsmb/ichsmb_pci.c

Modified: head/sys/dev/ichsmb/ichsmb_pci.c
==============================================================================
--- head/sys/dev/ichsmb/ichsmb_pci.c	Fri Aug 27 23:22:58 2010	(r211904)
+++ head/sys/dev/ichsmb/ichsmb_pci.c	Fri Aug 27 23:24:08 2010	(r211905)
@@ -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);
 	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201008272324.o7RNO9CH010856>