Add a device ID for the 631xESB/6321ESB SMBus controller.

Submitted by:	Reed A. Cartwright <reed scit.us>
This commit is contained in:
John Baldwin 2007-01-11 21:13:27 +00:00
parent bb7dfefb45
commit 234093730d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=165958

View File

@ -74,6 +74,7 @@ __FBSDID("$FreeBSD$");
#define ID_82801DC 0x24C38086
#define ID_82801EB 0x24D38086
#define ID_6300ESB 0x25a48086
#define ID_631xESB 0x269b8086
#define PCIS_SERIALBUS_SMBUS_PROGIF 0x00
@ -146,6 +147,9 @@ ichsmb_pci_probe(device_t dev)
case ID_6300ESB:
device_set_desc(dev, "Intel 6300ESB (ICH) SMBus controller");
break;
case ID_631xESB:
device_set_desc(dev, "Intel 631xESB/6321ESB (ESB2) SMBus controller");
break;
default:
if (pci_get_class(dev) == PCIC_SERIALBUS
&& pci_get_subclass(dev) == PCIS_SERIALBUS_SMBUS