diff options
author | John Garry <[email protected]> | 2015-11-18 00:50:39 +0800 |
---|---|---|
committer | Martin K. Petersen <[email protected]> | 2015-11-25 22:12:56 -0500 |
commit | 50cb916f4361e9202866d388eaddbe1d3f0ee0f7 (patch) | |
tree | 778b2fe5257ecd06d6a3c165b63eae057fd49ce0 | |
parent | 5d74242e37feb5d06aecb3118d642ff621d08b75 (diff) |
hisi_sas: Set dev DMA mask
Signed-off-by: John Garry <[email protected]>
Reviewed-by: Arnd Bergmann <[email protected]>
Reviewed-by: Hannes Reinecke <[email protected]>
Signed-off-by: Martin K. Petersen <[email protected]>
-rw-r--r-- | drivers/scsi/hisi_sas/hisi_sas_main.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/scsi/hisi_sas/hisi_sas_main.c b/drivers/scsi/hisi_sas/hisi_sas_main.c index 8cd1b551abb6..d7d9516385a7 100644 --- a/drivers/scsi/hisi_sas/hisi_sas_main.c +++ b/drivers/scsi/hisi_sas/hisi_sas_main.c @@ -311,6 +311,14 @@ int hisi_sas_probe(struct platform_device *pdev, sha = SHOST_TO_SAS_HA(shost); hisi_hba = shost_priv(shost); platform_set_drvdata(pdev, sha); + + if (dma_set_mask_and_coherent(dev, DMA_BIT_MASK(64)) && + dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32))) { + dev_err(dev, "No usable DMA addressing method\n"); + rc = -EIO; + goto err_out_ha; + } + phy_nr = port_nr = hisi_hba->n_phy; arr_phy = devm_kcalloc(dev, phy_nr, sizeof(void *), GFP_KERNEL); |