From nobody@FreeBSD.org  Mon Jun 13 15:48:06 2011
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 43773106564A
	for <freebsd-gnats-submit@FreeBSD.org>; Mon, 13 Jun 2011 15:48:06 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22])
	by mx1.freebsd.org (Postfix) with ESMTP id 33F268FC14
	for <freebsd-gnats-submit@FreeBSD.org>; Mon, 13 Jun 2011 15:48:06 +0000 (UTC)
Received: from red.freebsd.org (localhost [127.0.0.1])
	by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p5DFm5bi011238
	for <freebsd-gnats-submit@FreeBSD.org>; Mon, 13 Jun 2011 15:48:05 GMT
	(envelope-from nobody@red.freebsd.org)
Received: (from nobody@localhost)
	by red.freebsd.org (8.14.4/8.14.4/Submit) id p5DFm52D011237;
	Mon, 13 Jun 2011 15:48:05 GMT
	(envelope-from nobody)
Message-Id: <201106131548.p5DFm52D011237@red.freebsd.org>
Date: Mon, 13 Jun 2011 15:48:05 GMT
From: Joris Vandalon <joris@vandalon.nl>
To: freebsd-gnats-submit@FreeBSD.org
Subject: Added HighPoint RocketRAID 620 in ahci.c with new device ID.
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         157843
>Category:       kern
>Synopsis:       [ahci] [patch] Added HighPoint RocketRAID 620 in ahci.c with new device ID.
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Mon Jun 13 15:50:08 UTC 2011
>Closed-Date:    Thu Jul 07 08:34:46 UTC 2011
>Last-Modified:  Thu Jul  7 08:40:09 UTC 2011
>Originator:     Joris Vandalon
>Release:        FreeBSD 8-STABLE
>Organization:
>Environment:
FreeBSD collected.vandalon.nl 8.2-STABLE FreeBSD 8.2-STABLE #3: Mon Jun 13 15:54:20 CEST 2011     root@collected.vandalon.nl:/usr/obj/usr/src/sys/GENERIC  amd64
>Description:
I've bought a HighPoint RocketRAID 620 which was not working properly in Freebsd 8.2 nor 8-STABLE.
It seemed that this devices id was not known in ahci.c so I added add.
>How-To-Repeat:
Get a HighPoint RocketRAID 620 with device id 0x91251b4b and load ahci.ko on boot.
>Fix:
Add "{0x91251b4b, 0x00, "HighPoint RocketRAID 620",  AHCI_Q_NOBSYRES}," to ahci.ko.
(Patch included)

Patch attached with submission follows:

--- ahci.c.orig	2011-06-13 16:57:48.194775372 +0200
+++ ahci.c	2011-06-13 16:57:56.778704437 +0200
@@ -198,6 +198,7 @@
 	{0x91721b4b, 0x00, "Marvell 88SE9172",	AHCI_Q_NOBSYRES},
 	{0x91821b4b, 0x00, "Marvell 88SE9182",	AHCI_Q_NOBSYRES},
 	{0x06201103, 0x00, "HighPoint RocketRAID 620",	AHCI_Q_NOBSYRES},
+	{0x91251b4b, 0x00, "HighPoint RocketRAID 620",	AHCI_Q_NOBSYRES},
 	{0x06201b4b, 0x00, "HighPoint RocketRAID 620",	AHCI_Q_NOBSYRES},
 	{0x06221103, 0x00, "HighPoint RocketRAID 622",	AHCI_Q_NOBSYRES},
 	{0x06221b4b, 0x00, "HighPoint RocketRAID 622",	AHCI_Q_NOBSYRES},


>Release-Note:
>Audit-Trail:

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/157843: commit references a PR
Date: Thu, 30 Jun 2011 19:23:26 +0000 (UTC)

 Author: mav
 Date: Thu Jun 30 19:23:17 2011
 New Revision: 223699
 URL: http://svn.freebsd.org/changeset/base/223699
 
 Log:
   Add ID for Marvell 88SE9125 SATA controller.
   
   PR:		kern/157843
   MFC after:	1 week
 
 Modified:
   head/sys/dev/ahci/ahci.c
 
 Modified: head/sys/dev/ahci/ahci.c
 ==============================================================================
 --- head/sys/dev/ahci/ahci.c	Thu Jun 30 17:37:42 2011	(r223698)
 +++ head/sys/dev/ahci/ahci.c	Thu Jun 30 19:23:17 2011	(r223699)
 @@ -195,6 +195,7 @@ static struct {
  	{0x91201b4b, 0x00, "Marvell 88SE912x",	AHCI_Q_EDGEIS|AHCI_Q_NOBSYRES},
  	{0x91231b4b, 0x11, "Marvell 88SE912x",	AHCI_Q_NOBSYRES|AHCI_Q_ALTSIG},
  	{0x91231b4b, 0x00, "Marvell 88SE912x",	AHCI_Q_EDGEIS|AHCI_Q_SATA2|AHCI_Q_NOBSYRES},
 +	{0x91251b4b, 0x00, "Marvell 88SE9125",	AHCI_Q_NOBSYRES},
  	{0x91721b4b, 0x00, "Marvell 88SE9172",	AHCI_Q_NOBSYRES},
  	{0x91821b4b, 0x00, "Marvell 88SE9182",	AHCI_Q_NOBSYRES},
  	{0x06201103, 0x00, "HighPoint RocketRAID 620",	AHCI_Q_NOBSYRES},
 _______________________________________________
 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: open->closed 
State-Changed-By: mav 
State-Changed-When: Thu Jul 7 08:34:24 UTC 2011 
State-Changed-Why:  
Patch merged to 8-STABLE. 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/157843: commit references a PR
Date: Thu,  7 Jul 2011 08:34:07 +0000 (UTC)

 Author: mav
 Date: Thu Jul  7 08:33:58 2011
 New Revision: 223834
 URL: http://svn.freebsd.org/changeset/base/223834
 
 Log:
   MFC r223699:
   Add ID for Marvell 88SE9125 SATA controller.
   
   PR:		kern/157843
 
 Modified:
   stable/8/sys/dev/ahci/ahci.c
 Directory Properties:
   stable/8/sys/   (props changed)
   stable/8/sys/amd64/include/xen/   (props changed)
   stable/8/sys/cddl/contrib/opensolaris/   (props changed)
   stable/8/sys/contrib/dev/acpica/   (props changed)
   stable/8/sys/contrib/pf/   (props changed)
 
 Modified: stable/8/sys/dev/ahci/ahci.c
 ==============================================================================
 --- stable/8/sys/dev/ahci/ahci.c	Thu Jul  7 05:07:25 2011	(r223833)
 +++ stable/8/sys/dev/ahci/ahci.c	Thu Jul  7 08:33:58 2011	(r223834)
 @@ -195,6 +195,7 @@ static struct {
  	{0x91201b4b, 0x00, "Marvell 88SE912x",	AHCI_Q_EDGEIS|AHCI_Q_NOBSYRES},
  	{0x91231b4b, 0x11, "Marvell 88SE912x",	AHCI_Q_NOBSYRES|AHCI_Q_ALTSIG},
  	{0x91231b4b, 0x00, "Marvell 88SE912x",	AHCI_Q_EDGEIS|AHCI_Q_SATA2|AHCI_Q_NOBSYRES},
 +	{0x91251b4b, 0x00, "Marvell 88SE9125",	AHCI_Q_NOBSYRES},
  	{0x91721b4b, 0x00, "Marvell 88SE9172",	AHCI_Q_NOBSYRES},
  	{0x91821b4b, 0x00, "Marvell 88SE9182",	AHCI_Q_NOBSYRES},
  	{0x06201103, 0x00, "HighPoint RocketRAID 620",	AHCI_Q_NOBSYRES},
 _______________________________________________
 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"
 
>Unformatted:
