Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 10 Jan 2011 22:27:52 +0000 (UTC)
From:      Alexander Motin <mav@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r217245 - head/sys/dev/ahci
Message-ID:  <201101102227.p0AMRqKc097434@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mav
Date: Mon Jan 10 22:27:52 2011
New Revision: 217245
URL: http://svn.freebsd.org/changeset/base/217245

Log:
  Add IDs for HighPoint RocketRAID 64x controllers.
  
  These controllers consist of two Marvell 88SE9128 6Gbps SATA chips and
  PLX PCIe bridge. As result, they seem to be agree to work with ahci(4)
  as usual HBAs. The only noticed issue is that RAID BIOS disables all
  drive caches during boot, though `camcontrol cmd ...` is able to fix that.
  
  Those who wants RAID functionality can still use closed proprietary driver
  from HighPoint site.
  
  MFC after:	1 week

Modified:
  head/sys/dev/ahci/ahci.c

Modified: head/sys/dev/ahci/ahci.c
==============================================================================
--- head/sys/dev/ahci/ahci.c	Mon Jan 10 22:14:30 2011	(r217244)
+++ head/sys/dev/ahci/ahci.c	Mon Jan 10 22:27:52 2011	(r217245)
@@ -176,6 +176,8 @@ static struct {
 	{0x06201b4b, 0x00, "HighPoint RocketRAID 620",	AHCI_Q_NOBSYRES},
 	{0x06221103, 0x00, "HighPoint RocketRAID 622",	AHCI_Q_NOBSYRES},
 	{0x06221b4b, 0x00, "HighPoint RocketRAID 622",	AHCI_Q_NOBSYRES},
+	{0x06401103, 0x00, "HighPoint RocketRAID 640",	AHCI_Q_NOBSYRES},
+	{0x06441103, 0x00, "HighPoint RocketRAID 644",	AHCI_Q_NOBSYRES},
 	{0x044c10de, 0x00, "NVIDIA MCP65",	AHCI_Q_NOAA},
 	{0x044d10de, 0x00, "NVIDIA MCP65",	AHCI_Q_NOAA},
 	{0x044e10de, 0x00, "NVIDIA MCP65",	AHCI_Q_NOAA},



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201101102227.p0AMRqKc097434>