aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/atm
diff options
context:
space:
mode:
authorDavid Woodhouse <dwmw2@infradead.org>2012-05-24 00:58:27 -0400
committerDavid S. Miller <davem@davemloft.net>2012-05-24 16:22:53 -0400
commitb4bd8ad9bb311e8536f726f7a633620ccd358cde (patch)
tree8a372a2a2f8f5e52f282bb18657932730b7d89cf /drivers/atm
parentf935f3f8a567d3d2531886e901ed0db183092abe (diff)
solos-pci: Fix DMA support
DMA support has finally made its way to the top of the TODO list, having realised that a Geode using MMIO can't keep up with two ADSL2+ lines each running at 21Mb/s. This patch fixes a couple of bugs in the DMA support in the driver, so once the corresponding FPGA update is complete and tested everything should work properly. We weren't storing the currently-transmitting skb, so we were never unmapping it and never freeing/popping it when the TX was done. And the addition of pci_set_master() is fairly self-explanatory. Signed-off-by: David Woodhouse <David.Woodhouse@intel.com> Cc: stable@kernel.org Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/atm')
-rw-r--r--drivers/atm/solos-pci.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/atm/solos-pci.c b/drivers/atm/solos-pci.c
index e8cd652d201..98510931c81 100644
--- a/drivers/atm/solos-pci.c
+++ b/drivers/atm/solos-pci.c
@@ -984,6 +984,7 @@ static uint32_t fpga_tx(struct solos_card *card)
984 } else if (skb && card->using_dma) { 984 } else if (skb && card->using_dma) {
985 SKB_CB(skb)->dma_addr = pci_map_single(card->dev, skb->data, 985 SKB_CB(skb)->dma_addr = pci_map_single(card->dev, skb->data,
986 skb->len, PCI_DMA_TODEVICE); 986 skb->len, PCI_DMA_TODEVICE);
987 card->tx_skb[port] = skb;
987 iowrite32(SKB_CB(skb)->dma_addr, 988 iowrite32(SKB_CB(skb)->dma_addr,
988 card->config_regs + TX_DMA_ADDR(port)); 989 card->config_regs + TX_DMA_ADDR(port));
989 } 990 }
@@ -1152,7 +1153,8 @@ static int fpga_probe(struct pci_dev *dev, const struct pci_device_id *id)
1152 db_fpga_upgrade = db_firmware_upgrade = 0; 1153 db_fpga_upgrade = db_firmware_upgrade = 0;
1153 } 1154 }
1154 1155
1155 if (card->fpga_version >= DMA_SUPPORTED){ 1156 if (card->fpga_version >= DMA_SUPPORTED) {
1157 pci_set_master(dev);
1156 card->using_dma = 1; 1158 card->using_dma = 1;
1157 } else { 1159 } else {
1158 card->using_dma = 0; 1160 card->using_dma = 0;