svn commit: r185268 - in head/sys/dev/ata: . chipsets

Rui Paulo rpaulo at FreeBSD.org
Mon Nov 24 16:39:04 PST 2008


Author: rpaulo
Date: Tue Nov 25 00:39:03 2008
New Revision: 185268
URL: http://svn.freebsd.org/changeset/base/185268

Log:
  Add support for Marvell PATA M88SX6121.
  
  PR:		129154
  Submitted by:	João Barros <joao.barros at gmail.com>
  MFC after:	1 month

Modified:
  head/sys/dev/ata/ata-pci.h
  head/sys/dev/ata/chipsets/ata-marvell.c

Modified: head/sys/dev/ata/ata-pci.h
==============================================================================
--- head/sys/dev/ata/ata-pci.h	Tue Nov 25 00:14:49 2008	(r185267)
+++ head/sys/dev/ata/ata-pci.h	Tue Nov 25 00:39:03 2008	(r185268)
@@ -216,6 +216,7 @@ struct ata_connect_task {
 #define ATA_M88SX6041           0x604111ab
 #define ATA_M88SX6081           0x608111ab
 #define ATA_M88SX6101           0x610111ab
+#define ATA_M88SX6121           0x612111ab
 #define ATA_M88SX6145           0x614511ab
 
 #define ATA_MICRON_ID           0x1042

Modified: head/sys/dev/ata/chipsets/ata-marvell.c
==============================================================================
--- head/sys/dev/ata/chipsets/ata-marvell.c	Tue Nov 25 00:14:49 2008	(r185267)
+++ head/sys/dev/ata/chipsets/ata-marvell.c	Tue Nov 25 00:39:03 2008	(r185268)
@@ -103,6 +103,7 @@ ata_marvell_probe(device_t dev)
      { ATA_M88SX6041, 0, 4, MV_60XX, ATA_SA300, "88SX6041" },
      { ATA_M88SX6081, 0, 8, MV_60XX, ATA_SA300, "88SX6081" },
      { ATA_M88SX6101, 0, 1, MV_61XX, ATA_UDMA6, "88SX6101" },
+     { ATA_M88SX6121, 0, 1, MV_61XX, ATA_UDMA6, "88SX6121" },
      { ATA_M88SX6145, 0, 2, MV_61XX, ATA_UDMA6, "88SX6145" },
      { 0, 0, 0, 0, 0, 0}};
 


More information about the svn-src-head mailing list