aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2009-03-17 02:47:18 -0400
committerTakashi Iwai <tiwai@suse.de>2009-03-18 02:45:41 -0400
commit09240cf429505891d6123ce14a29f58f2a60121e (patch)
tree5b5b460e0241b3fa3b02e596b47d9faf582f6372 /sound
parentc50ff7c04225c945b13d410d50fde6ff6c59d7ee (diff)
ALSA: hda - Fix DMA mask for ATI controllers
ATI controllers (at least some SB0600 models) appear buggy to handle 64bit DMA. As a workaround, reset GCAP bit0 and let the driver to use only 32bit DMA on these controllers. Cc: <stable@kernel.org> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/hda/hda_intel.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c
index 5e909e0da04b..643f0e499292 100644
--- a/sound/pci/hda/hda_intel.c
+++ b/sound/pci/hda/hda_intel.c
@@ -2210,9 +2210,17 @@ static int __devinit azx_create(struct snd_card *card, struct pci_dev *pci,
2210 gcap = azx_readw(chip, GCAP); 2210 gcap = azx_readw(chip, GCAP);
2211 snd_printdd("chipset global capabilities = 0x%x\n", gcap); 2211 snd_printdd("chipset global capabilities = 0x%x\n", gcap);
2212 2212
2213 /* ATI chips seems buggy about 64bit DMA addresses */
2214 if (chip->driver_type == AZX_DRIVER_ATI)
2215 gcap &= ~0x01;
2216
2213 /* allow 64bit DMA address if supported by H/W */ 2217 /* allow 64bit DMA address if supported by H/W */
2214 if ((gcap & 0x01) && !pci_set_dma_mask(pci, DMA_64BIT_MASK)) 2218 if ((gcap & 0x01) && !pci_set_dma_mask(pci, DMA_64BIT_MASK))
2215 pci_set_consistent_dma_mask(pci, DMA_64BIT_MASK); 2219 pci_set_consistent_dma_mask(pci, DMA_64BIT_MASK);
2220 else {
2221 pci_set_dma_mask(pci, DMA_32BIT_MASK);
2222 pci_set_consistent_dma_mask(pci, DMA_32BIT_MASK);
2223 }
2216 2224
2217 /* read number of streams from GCAP register instead of using 2225 /* read number of streams from GCAP register instead of using
2218 * hardcoded value 2226 * hardcoded value