diff options
author | Tejun Heo <htejun@gmail.com> | 2009-08-16 08:06:57 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2009-09-08 21:17:59 -0400 |
commit | 1b549dcbf607e88f3016bc149109472a46fe7bbb (patch) | |
tree | 0b9f59f4cbeddbd7c065e594c307b15d59320a1d /drivers/ata | |
parent | 03d783bf5573ff316a8c703eed811a9a97901a8b (diff) |
ahci: Gigabyte GA-MA69VM-S2 can't do 64bit DMA
Gigabyte GA-MA69VM-S2 can't do 64bit DMA either. It's yet unknown
whether recent BIOS fixes the problem. Blacklist regardless of BIOS
revisions for now.
Sandor Bodo-Merle reported and provided the initial patch for this
issue.
Signed-off-by: Tejun Heo <tj@kernel.org>
Reported-by: Sandor Bodo-Merle <sbodomerle@gmail.com>
Cc: Shane Huang <shane.huang@amd.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/ahci.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index aa03b49a9af2..a4e4cf141c03 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c | |||
@@ -2668,6 +2668,22 @@ static bool ahci_sb600_32bit_only(struct pci_dev *pdev) | |||
2668 | }, | 2668 | }, |
2669 | .driver_data = "20071026", /* yyyymmdd */ | 2669 | .driver_data = "20071026", /* yyyymmdd */ |
2670 | }, | 2670 | }, |
2671 | /* | ||
2672 | * It's yet unknown whether more recent BIOS fixes the | ||
2673 | * problem. Blacklist the whole board for the time | ||
2674 | * being. Please read the following thread for more | ||
2675 | * info. | ||
2676 | * | ||
2677 | * http://thread.gmane.org/gmane.linux.ide/42326 | ||
2678 | */ | ||
2679 | { | ||
2680 | .ident = "Gigabyte GA-MA69VM-S2", | ||
2681 | .matches = { | ||
2682 | DMI_MATCH(DMI_BOARD_VENDOR, | ||
2683 | "Gigabyte Technology Co., Ltd."), | ||
2684 | DMI_MATCH(DMI_BOARD_NAME, "GA-MA69VM-S2"), | ||
2685 | }, | ||
2686 | }, | ||
2671 | { } | 2687 | { } |
2672 | }; | 2688 | }; |
2673 | const struct dmi_system_id *match; | 2689 | const struct dmi_system_id *match; |