From lowell@be-well.ilk.org  Fri Jun 30 19:13:29 2006
Return-Path: <lowell@be-well.ilk.org>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 4FADE16A558
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 30 Jun 2006 19:13:29 +0000 (UTC)
	(envelope-from lowell@be-well.ilk.org)
Received: from mail6.sea5.speakeasy.net (mail6.sea5.speakeasy.net [69.17.117.8])
	by mx1.FreeBSD.org (Postfix) with ESMTP id A750B4431D
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 30 Jun 2006 18:53:22 +0000 (GMT)
	(envelope-from lowell@be-well.ilk.org)
Received: (qmail 6008 invoked from network); 30 Jun 2006 18:53:21 -0000
Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.ilk.org) ([66.92.78.145])
          (envelope-sender <lowell@be-well.ilk.org>)
          by mail6.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP
          for <FreeBSD-gnats-submit@freebsd.org>; 30 Jun 2006 18:53:21 -0000
Received: by be-well.ilk.org (Postfix, from userid 1147)
	id 587BF28449; Fri, 30 Jun 2006 14:53:21 -0400 (EDT)
Message-Id: <20060630185321.587BF28449@be-well.ilk.org>
Date: Fri, 30 Jun 2006 14:53:21 -0400 (EDT)
From: Lowell Gilbert <lgfbsd@be-well.ilk.org>
Reply-To: Lowell Gilbert <lgfbsd@be-well.ilk.org>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [PATCH] add ICH6 support
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         99663
>Category:       kern
>Synopsis:       [ichsmb] [patch] add ICH6 support
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    remko
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Fri Jun 30 19:20:14 GMT 2006
>Closed-Date:    Mon Nov 26 19:58:54 UTC 2007
>Last-Modified:  Sun Dec  2 09:10:06 UTC 2007
>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:
Responsible-Changed-From-To: freebsd-bugs->sos 
Responsible-Changed-By: remko 
Responsible-Changed-When: Fri Jan 26 21:22:04 UTC 2007 
Responsible-Changed-Why:  
Hello Soren, this looks like a trivial change, can you comment on it and 
either commit it or allow me to do this? Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=99663 
Responsible-Changed-From-To: sos->remko 
Responsible-Changed-By: sos 
Responsible-Changed-When: Mon Nov 19 11:32:05 UTC 2007 
Responsible-Changed-Why:  
This is not ATA related, but looks harmless to me... 

http://www.freebsd.org/cgi/query-pr.cgi?pr=99663 
State-Changed-From-To: open->closed 
State-Changed-By: remko 
State-Changed-When: Mon Nov 26 19:58:53 UTC 2007 
State-Changed-Why:  
Duplicate of 85106 which has more definitions, though thanks for the 
entry, it's in the -HEAD CVS repository now and will be merged in a few 
days, thanks for using FreeBSD! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=99663 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/99663: commit references a PR
Date: Mon, 26 Nov 2007 19:55:03 +0000 (UTC)

 remko       2007-11-26 19:54:54 UTC
 
   FreeBSD src repository
 
   Modified files:
     sys/dev/ichsmb       ichsmb_pci.c 
   Log:
   Add the Intel 82801FB (ICH6) SMBus controller and the
   Intel 82801GB (ICH7) SMBus controller.
   
   PR:             85106 [1]
   PR:             99663 [2]
   Approved by:    imp (mentor), jhb
   Submitted by:   Oliver Fromme <olli at lurza.secnetix dot de>, [1]
                   Arthur Hartwig <arthur dot hartwig at nokia dot com>, [1]
                   Lowell Gilbert <lgfbsd at be-well dot ilk dot org> [2]@
   MFC After:      3 days
   
   Revision  Changes    Path
   1.20      +8 -0      src/sys/dev/ichsmb/ichsmb_pci.c
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/99663: commit references a PR
Date: Sun,  2 Dec 2007 08:42:21 +0000 (UTC)

 remko       2007-12-02 08:42:16 UTC
 
   FreeBSD src repository
 
   Modified files:        (Branch: RELENG_7)
     sys/dev/ichsmb       ichsmb_pci.c 
     share/man/man4       ichsmb.4 
   Log:
   MFC rev 1.8 ichsmb.4
   
     Add information about the ICH6 and ICH7 being supported since recently.
   
   MFC rev 1.20 ichsmb_pci.c
   
     Add the Intel 82801FB (ICH6) SMBus controller and the
     Intel 82801GB (ICH7) SMBus controller.
   
     PR:             85106 [1]
     PR:             99663 [2]
     Approved by:    imp (mentor), jhb
     Submitted by:   Oliver Fromme <olli at lurza.secnetix dot de>, [1]
                     Arthur Hartwig <arthur dot hartwig at nokia dot com>, [1]
                     Lowell Gilbert <lgfbsd at be-well dot ilk dot org> [2]@
     MFC After:      3 days
   
   Approved by:    re (hrs), imp (mentor, implicit)
   
   Revision  Changes    Path
   1.7.10.1  +3 -3      src/share/man/man4/ichsmb.4
   1.19.2.1  +8 -0      src/sys/dev/ichsmb/ichsmb_pci.c
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/99663: commit references a PR
Date: Sun,  2 Dec 2007 08:56:43 +0000 (UTC)

 remko       2007-12-02 08:56:37 UTC
 
   FreeBSD src repository
 
   Modified files:        (Branch: RELENG_6)
     sys/dev/ichsmb       ichsmb_pci.c 
     share/man/man4       ichsmb.4 
   Log:
   MFC rev 1.8 ichsmb.4
   
     Add information about the ICH6 and ICH7 being supported since recently.
   
   MFC rev 1.20 ichsmb_pci.c
   
     Add the Intel 82801FB (ICH6) SMBus controller and the
     Intel 82801GB (ICH7) SMBus controller.
   
     PR:             85106 [1]
     PR:             99663 [2]
     Approved by:    imp (mentor), jhb
     Submitted by:   Oliver Fromme <olli at lurza.secnetix dot de>, [1]
                     Arthur Hartwig <arthur dot hartwig at nokia dot com>, [1]
                     Lowell Gilbert <lgfbsd at be-well dot ilk dot org> [2]@
     MFC After:      3 days
   
   Approved by:    re (hrs), imp (mentor, implicit)
   
   Revision  Changes    Path
   1.7.2.1   +3 -3      src/share/man/man4/ichsmb.4
   1.16.2.2  +8 -0      src/sys/dev/ichsmb/ichsmb_pci.c
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/99663: commit references a PR
Date: Sun,  2 Dec 2007 09:05:42 +0000 (UTC)

 remko       2007-12-02 09:05:38 UTC
 
   FreeBSD src repository
 
   Modified files:        (Branch: RELENG_6_3)
     sys/dev/ichsmb       ichsmb_pci.c 
     share/man/man4       ichsmb.4 
   Log:
   MFC rev 1.8 ichsmb.4
   
     Add information about the ICH6 and ICH7 being supported since recently.
   
   MFC rev 1.20 ichsmb_pci.c
   
     Add the Intel 82801FB (ICH6) SMBus controller and the
     Intel 82801GB (ICH7) SMBus controller.
   
     PR:             85106 [1]
     PR:             99663 [2]
     Approved by:    imp (mentor), jhb
     Submitted by:   Oliver Fromme <olli at lurza.secnetix dot de>, [1]
                     Arthur Hartwig <arthur dot hartwig at nokia dot com>, [1]
                     Lowell Gilbert <lgfbsd at be-well dot ilk dot org> [2]@
     MFC After:      3 days
   
   Approved by:    re (hrs), imp (mentor, implicit)
   
   Revision      Changes    Path
   1.7.12.1      +3 -3      src/share/man/man4/ichsmb.4
   1.16.2.1.8.1  +8 -0      src/sys/dev/ichsmb/ichsmb_pci.c
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
