Date: Fri, 30 Jun 2006 14:53:21 -0400 (EDT) From: Lowell Gilbert <lgfbsd@be-well.ilk.org> To: FreeBSD-gnats-submit@FreeBSD.org Subject: kern/99663: [PATCH] add ICH6 support Message-ID: <20060630185321.587BF28449@be-well.ilk.org> Resent-Message-ID: <200606301920.k5UJKFoR077378@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 99663 >Category: kern >Synopsis: [PATCH] add ICH6 support >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Jun 30 19:20:14 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Lowell Gilbert >Release: FreeBSD 6.1-STABLE i386 >Organization: The Ilk >Environment: System: FreeBSD be-well.ilk.org 6.1-STABLE FreeBSD 6.1-STABLE #0: Thu Jun 15 10:01:36 EDT 2006 root@Lowell-Desk:/usr/obj/usr/src/sys/BE-WELL6 i386 >Description: Our SMB code can't handle Intel ICH6. >How-To-Repeat: n/a >Fix: All it really needs is the new device IDs. --- /usr/src/sys/dev/ichsmb/ichsmb_pci.c.ORIG Fri Aug 19 14:38:55 2005 +++ /usr/src/sys/dev/ichsmb/ichsmb_pci.c Fri Jun 30 14:41:29 2006 @@ -73,6 +73,7 @@ #define ID_82801CA 0x24838086 #define ID_82801DC 0x24C38086 #define ID_82801EB 0x24D38086 +#define ID_82801FB 0x266A8086 #define ID_6300ESB 0x25a48086 #define PCIS_SERIALBUS_SMBUS_PROGIF 0x00 @@ -142,6 +143,9 @@ break; case ID_82801EB: device_set_desc(dev, "Intel 82801EB (ICH5) SMBus controller"); + break; + case ID_82801FB: + device_set_desc(dev, "Intel 82801FB (ICH6) SMBus controller"); break; case ID_6300ESB: device_set_desc(dev, "Intel 6300ESB (ICH) SMBus controller"); >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20060630185321.587BF28449>