diff options
author | Mark Nelson <mdnelson8@gmail.com> | 2011-06-27 02:33:44 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2011-07-23 18:03:16 -0400 |
commit | 3c4aa91f21f65b7b40bdfb015eacbcb8453ccae2 (patch) | |
tree | f819f5ac8f8c01e31d81fe72e8de05bca5fffe46 /drivers/ata/ahci.c | |
parent | 38941c9521e9ee6064b402dd460ac9dd2df89890 (diff) |
ahci: Enable SB600 64bit DMA on Asus M3A
Like e65cc194f7628ecaa02462f22f42fb09b50dcd49 this patch enables 64bit DMA
for the AHCI SATA controller of a board that has the SB600 southbridge. In
this case though we're enabling 64bit DMA for the Asus M3A motherboard. It
is a new enough board that all of the BIOS releases since the initial
release (0301 from 2007-10-22) work correctly with 64bit DMA enabled.
Signed-off-by: Mark Nelson <mdnelson8@gmail.com>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
Diffstat (limited to 'drivers/ata/ahci.c')
-rw-r--r-- | drivers/ata/ahci.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index fd318ac36432..389f670ee7c6 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c | |||
@@ -753,6 +753,18 @@ static bool ahci_sb600_enable_64bit(struct pci_dev *pdev) | |||
753 | DMI_MATCH(DMI_BOARD_NAME, "MS-7376"), | 753 | DMI_MATCH(DMI_BOARD_NAME, "MS-7376"), |
754 | }, | 754 | }, |
755 | }, | 755 | }, |
756 | /* | ||
757 | * All BIOS versions for the Asus M3A support 64bit DMA. | ||
758 | * (all release versions from 0301 to 1206 were tested) | ||
759 | */ | ||
760 | { | ||
761 | .ident = "ASUS M3A", | ||
762 | .matches = { | ||
763 | DMI_MATCH(DMI_BOARD_VENDOR, | ||
764 | "ASUSTeK Computer INC."), | ||
765 | DMI_MATCH(DMI_BOARD_NAME, "M3A"), | ||
766 | }, | ||
767 | }, | ||
756 | { } | 768 | { } |
757 | }; | 769 | }; |
758 | const struct dmi_system_id *match; | 770 | const struct dmi_system_id *match; |