From Andre.Albsmeier@siemens.com  Mon Jun  2 09:51:06 2008
Return-Path: <Andre.Albsmeier@siemens.com>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 7E993106564A
	for <FreeBSD-gnats-submit@freebsd.org>; Mon,  2 Jun 2008 09:51:06 +0000 (UTC)
	(envelope-from Andre.Albsmeier@siemens.com)
Received: from thoth.sbs.de (thoth.sbs.de [192.35.17.2])
	by mx1.freebsd.org (Postfix) with ESMTP id EBE1B8FC1E
	for <FreeBSD-gnats-submit@freebsd.org>; Mon,  2 Jun 2008 09:51:05 +0000 (UTC)
	(envelope-from Andre.Albsmeier@siemens.com)
Received: from mail1.siemens.de (localhost [127.0.0.1])
	by thoth.sbs.de (8.12.11.20060308/8.12.11) with ESMTP id m529LHxK001682
	for <FreeBSD-gnats-submit@freebsd.org>; Mon, 2 Jun 2008 11:21:17 +0200
Received: from curry.mchp.siemens.de (curry.mchp.siemens.de [139.25.40.130])
	by mail1.siemens.de (8.12.11.20060308/8.12.11) with ESMTP id m529LG4U011977
	for <FreeBSD-gnats-submit@freebsd.org>; Mon, 2 Jun 2008 11:21:16 +0200
Received: (from localhost)
	by curry.mchp.siemens.de (8.14.2/8.14.2) id m529LGxB098606
	for FreeBSD-gnats-submit@freebsd.org; Mon, 2 Jun 2008 11:21:16 +0200 (CEST)
Message-Id: <200806020921.m529LGYn069179@curry.mchp.siemens.de>
Date: Mon, 2 Jun 2008 11:21:16 +0200 (CEST)
From: Andre Albsmeier <Andre.Albsmeier@siemens.com>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [PATCH] Add Adaptec 39320LPE to list of known devices
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         124202
>Category:       kern
>Synopsis:       [aic] [patch] Add Adaptec 39320LPE to list of known devices
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    brueffer
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Mon Jun 02 10:00:01 UTC 2008
>Closed-Date:    Fri Nov 06 08:04:51 CET 2009
>Last-Modified:  Fri Nov 06 08:04:51 CET 2009
>Originator:     Andre Albsmeier
>Release:        FreeBSD 6.3-STABLE i386
>Organization:
>Environment:

System: All FreeBSD systems

>Description:

	aic79xx_pci.c does not know the Adpatec 39320LPE controller

>How-To-Repeat:

	grep 0x8017900500459005 /usr/src/sys/dev/aic7xxx/aic79xx_pci.c

>Fix:

--- aic79xx_pci.c.ORI	2008-06-02 11:15:47.000000000 +0200
+++ aic79xx_pci.c	2008-06-02 11:15:47.000000000 +0200
@@ -89,6 +89,7 @@
 #define ID_AHA_39320D_B			0x801C900500419005ull
 #define ID_AHA_39320D_HP		0x8011900500AC0E11ull
 #define ID_AHA_39320D_B_HP		0x801C900500AC0E11ull
+#define ID_AHA_39320LPE			0x8017900500459005ull
 #define ID_AIC7902_PCI_REV_A4		0x3
 #define ID_AIC7902_PCI_REV_B0		0x10
 #define SUBID_HP			0x0E11
@@ -204,6 +205,12 @@
 		"Adaptec (HP OEM) 39320D Ultra320 SCSI adapter",
 		ahd_aic7902_setup
 	},
+	{
+		ID_AHA_39320LPE,
+		ID_ALL_MASK,
+		"Adaptec 39320LPE Ultra320 SCSI adapter",
+		ahd_aic7902_setup
+	},
 	/* Generic chip probes for devices we don't know 'exactly' */
 	{
 		ID_AIC7901 & ID_9005_GENERIC_MASK,

>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->patched 
State-Changed-By: brueffer 
State-Changed-When: Fri Oct 30 17:24:04 CET 2009 
State-Changed-Why:  
Committed, thanks! 


Responsible-Changed-From-To: freebsd-bugs->brueffer 
Responsible-Changed-By: brueffer 
Responsible-Changed-When: Fri Oct 30 17:24:04 CET 2009 
Responsible-Changed-Why:  
MFC reminder. 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/124202: commit references a PR
Date: Fri, 30 Oct 2009 16:24:08 +0000 (UTC)

 Author: brueffer
 Date: Fri Oct 30 16:23:56 2009
 New Revision: 198684
 URL: http://svn.freebsd.org/changeset/base/198684
 
 Log:
   Add support for Adaptec 39320LPE adapters.
   
   PR:		124202
   Submitted by:	Andre Albsmeier <Andre.Albsmeier@siemens.com>
   Reviewed by:	gibbs
   MFC after:	1 week
 
 Modified:
   head/sys/dev/aic7xxx/aic79xx_pci.c
 
 Modified: head/sys/dev/aic7xxx/aic79xx_pci.c
 ==============================================================================
 --- head/sys/dev/aic7xxx/aic79xx_pci.c	Fri Oct 30 16:21:09 2009	(r198683)
 +++ head/sys/dev/aic7xxx/aic79xx_pci.c	Fri Oct 30 16:23:56 2009	(r198684)
 @@ -89,6 +89,7 @@ ahd_compose_id(u_int device, u_int vendo
  #define ID_AHA_39320D_B			0x801C900500419005ull
  #define ID_AHA_39320D_HP		0x8011900500AC0E11ull
  #define ID_AHA_39320D_B_HP		0x801C900500AC0E11ull
 +#define ID_AHA_39320LPE 		0x8017900500459005ull
  #define ID_AIC7902_PCI_REV_A4		0x3
  #define ID_AIC7902_PCI_REV_B0		0x10
  #define SUBID_HP			0x0E11
 @@ -204,6 +205,12 @@ struct ahd_pci_identity ahd_pci_ident_ta
  		"Adaptec (HP OEM) 39320D Ultra320 SCSI adapter",
  		ahd_aic7902_setup
  	},
 +	{
 +		ID_AHA_39320LPE,
 +		ID_ALL_MASK,
 +		"Adaptec 39320LPE Ultra320 SCSI adapter",
 +		ahd_aic7902_setup
 +	},
  	/* Generic chip probes for devices we don't know 'exactly' */
  	{
  		ID_AIC7901 & ID_9005_GENERIC_MASK,
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 
State-Changed-From-To: patched->closed 
State-Changed-By: brueffer 
State-Changed-When: Fri Nov 6 08:04:34 CET 2009 
State-Changed-Why:  
MFCs done. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=124202 
>Unformatted:
