Commit c04ae58e authored by Jacob Keller's avatar Jacob Keller Committed by Jeff Kirsher

fm10k: use dma_set_mask_and_coherent in fm10k_probe

This patch cleans up the use of dma_get_required_mask and uses the
simpler dma_set_mask_and_coherent function instead of doing these as
separate steps.

I removed the dma_get_required_mask call because based on some minimal
testing it appears that either (a) we're not doing the right thing with
the call or (b) we don't need it anyways. If the value returned is
<48bits, we'll end up trying with 48 bits anyways. If it's over 48bits,
fm10k can't support that anyways, and we should try 48bits. If 48bits
fails, we'll fallback to 32bits. This cleans up some very funky code.
Signed-off-by: default avatarJacob Keller <jacob.e.keller@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 0197cde6
...@@ -1741,31 +1741,19 @@ static int fm10k_probe(struct pci_dev *pdev, ...@@ -1741,31 +1741,19 @@ static int fm10k_probe(struct pci_dev *pdev,
struct fm10k_intfc *interface; struct fm10k_intfc *interface;
struct fm10k_hw *hw; struct fm10k_hw *hw;
int err; int err;
u64 dma_mask;
err = pci_enable_device_mem(pdev); err = pci_enable_device_mem(pdev);
if (err) if (err)
return err; return err;
/* By default fm10k only supports a 48 bit DMA mask */ err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(48));
dma_mask = DMA_BIT_MASK(48) | dma_get_required_mask(&pdev->dev); if (err)
if ((dma_mask <= DMA_BIT_MASK(32)) ||
dma_set_mask_and_coherent(&pdev->dev, dma_mask)) {
dma_mask &= DMA_BIT_MASK(32);
err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32)); err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
if (err) {
err = dma_set_coherent_mask(&pdev->dev,
DMA_BIT_MASK(32));
if (err) { if (err) {
dev_err(&pdev->dev, dev_err(&pdev->dev,
"No usable DMA configuration, aborting\n"); "DMA configuration failed: %d\n", err);
goto err_dma; goto err_dma;
} }
}
}
err = pci_request_selected_regions(pdev, err = pci_request_selected_regions(pdev,
pci_select_bars(pdev, pci_select_bars(pdev,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment