kern/99663: [PATCH] add ICH6 support

Lowell Gilbert lgfbsd at be-well.ilk.org
Fri Jun 30 19:20:21 UTC 2006


>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 at 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:


More information about the freebsd-bugs mailing list