svn commit: r245797 - in stable/9/sys/dev: ahci ata ata/chipsets
Alexander Motin
mav at FreeBSD.org
Tue Jan 22 17:06:43 UTC 2013
Author: mav
Date: Tue Jan 22 17:06:42 2013
New Revision: 245797
URL: http://svnweb.freebsd.org/changeset/base/245797
Log:
MFC r244146:
Add IDs for SATA controllers on AMD Hudson-2 series chipsets.
I am not exactly sure about the naming due to lack of specs on AMD site,
but it is better to have some identification then none at all.
Modified:
stable/9/sys/dev/ahci/ahci.c
stable/9/sys/dev/ata/ata-pci.h
stable/9/sys/dev/ata/chipsets/ata-ati.c
Directory Properties:
stable/9/sys/ (props changed)
stable/9/sys/dev/ (props changed)
Modified: stable/9/sys/dev/ahci/ahci.c
==============================================================================
--- stable/9/sys/dev/ahci/ahci.c Tue Jan 22 17:06:28 2013 (r245796)
+++ stable/9/sys/dev/ahci/ahci.c Tue Jan 22 17:06:42 2013 (r245797)
@@ -128,6 +128,11 @@ static struct {
{0x43931002, 0x00, "ATI IXP700", 0},
{0x43941002, 0x00, "ATI IXP800", 0},
{0x43951002, 0x00, "ATI IXP800", 0},
+ {0x78001022, 0x00, "AMD Hudson-2", 0},
+ {0x78011022, 0x00, "AMD Hudson-2", 0},
+ {0x78021022, 0x00, "AMD Hudson-2", 0},
+ {0x78031022, 0x00, "AMD Hudson-2", 0},
+ {0x78041022, 0x00, "AMD Hudson-2", 0},
{0x06121b21, 0x00, "ASMedia ASM1061", 0},
{0x26528086, 0x00, "Intel ICH6", AHCI_Q_NOFORCE},
{0x26538086, 0x00, "Intel ICH6M", AHCI_Q_NOFORCE},
Modified: stable/9/sys/dev/ata/ata-pci.h
==============================================================================
--- stable/9/sys/dev/ata/ata-pci.h Tue Jan 22 17:06:28 2013 (r245796)
+++ stable/9/sys/dev/ata/ata-pci.h Tue Jan 22 17:06:42 2013 (r245797)
@@ -101,6 +101,12 @@ struct ata_pci_controller {
#define ATA_AMD768 0x74411022
#define ATA_AMD8111 0x74691022
#define ATA_AMD5536 0x209a1022
+#define ATA_AMD_HUDSON2_S1 0x78001022
+#define ATA_AMD_HUDSON2_S2 0x78011022
+#define ATA_AMD_HUDSON2_S3 0x78021022
+#define ATA_AMD_HUDSON2_S4 0x78031022
+#define ATA_AMD_HUDSON2_S5 0x78041022
+#define ATA_AMD_HUDSON2 0x780c1022
#define ATA_ADAPTEC_ID 0x9005
#define ATA_ADAPTEC_1420 0x02419005
Modified: stable/9/sys/dev/ata/chipsets/ata-ati.c
==============================================================================
--- stable/9/sys/dev/ata/chipsets/ata-ati.c Tue Jan 22 17:06:28 2013 (r245796)
+++ stable/9/sys/dev/ata/chipsets/ata-ati.c Tue Jan 22 17:06:42 2013 (r245797)
@@ -91,6 +91,12 @@ ata_ati_probe(device_t dev)
{ ATA_ATI_IXP700_S4, 0x00, ATI_AHCI, 0, ATA_SA300, "IXP700/800" },
{ ATA_ATI_IXP800_S1, 0x00, ATI_AHCI, 0, ATA_SA300, "IXP800" },
{ ATA_ATI_IXP800_S2, 0x00, ATI_AHCI, 0, ATA_SA300, "IXP800" },
+ { ATA_AMD_HUDSON2, 0x00, ATI_PATA, 0, ATA_UDMA6, "Hudson-2" },
+ { ATA_AMD_HUDSON2_S1, 0x00, ATI_AHCI, 0, ATA_SA300, "Hudson-2" },
+ { ATA_AMD_HUDSON2_S2, 0x00, ATI_AHCI, 0, ATA_SA300, "Hudson-2" },
+ { ATA_AMD_HUDSON2_S3, 0x00, ATI_AHCI, 0, ATA_SA300, "Hudson-2" },
+ { ATA_AMD_HUDSON2_S4, 0x00, ATI_AHCI, 0, ATA_SA300, "Hudson-2" },
+ { ATA_AMD_HUDSON2_S5, 0x00, ATI_AHCI, 0, ATA_SA300, "Hudson-2" },
{ 0, 0, 0, 0, 0, 0}};
if (pci_get_vendor(dev) != ATA_ATI_ID)
More information about the svn-src-stable-9
mailing list