summaryrefslogtreecommitdiffstats
path: root/sys/dev/ichsmb
diff options
context:
space:
mode:
authorjfv <jfv@FreeBSD.org>2010-08-27 23:24:08 +0000
committerjfv <jfv@FreeBSD.org>2010-08-27 23:24:08 +0000
commit55923119b2028b7ad97b58d58acde068afe9e8b1 (patch)
treefcf351eb7eb651d0bf2ba870b21c38756f2ff119 /sys/dev/ichsmb
parent70761a9ea64442ce1af9c36b3e25c74757018580 (diff)
downloadFreeBSD-src-55923119b2028b7ad97b58d58acde068afe9e8b1.zip
FreeBSD-src-55923119b2028b7ad97b58d58acde068afe9e8b1.tar.gz
Add support for Intel Cougar Point SMBus controller.
MFC afer 1 week
Diffstat (limited to 'sys/dev/ichsmb')
-rw-r--r--sys/dev/ichsmb/ichsmb_pci.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/dev/ichsmb/ichsmb_pci.c b/sys/dev/ichsmb/ichsmb_pci.c
index 0843afe..c90b705 100644
--- a/sys/dev/ichsmb/ichsmb_pci.c
+++ b/sys/dev/ichsmb/ichsmb_pci.c
@@ -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);
}
OpenPOWER on IntegriCloud