mmc: msm_sdcc: Handle dma resource not present case
If DMA resource is not available then SDCC driver should atleast work in PIO data transfer mode. Signed-off-by: Subhash Jadavani <subhashj@codeaurora.org> Signed-off-by: Sahitya Tummala <stummala@codeaurora.org> Signed-off-by: David Brown <davidb@codeaurora.org> Signed-off-by: Chris Ball <cjb@laptop.org>
This commit is contained in:
committed by
Chris Ball
parent
19207f056d
commit
190657c9f4
@@ -1242,9 +1242,13 @@ msmsdcc_probe(struct platform_device *pdev)
|
|||||||
/*
|
/*
|
||||||
* Setup DMA
|
* Setup DMA
|
||||||
*/
|
*/
|
||||||
ret = msmsdcc_init_dma(host);
|
if (host->dmares) {
|
||||||
if (ret)
|
ret = msmsdcc_init_dma(host);
|
||||||
goto ioremap_free;
|
if (ret)
|
||||||
|
goto ioremap_free;
|
||||||
|
} else {
|
||||||
|
host->dma.channel = -1;
|
||||||
|
}
|
||||||
|
|
||||||
/* Get our clocks */
|
/* Get our clocks */
|
||||||
host->pclk = clk_get(&pdev->dev, "sdc_pclk");
|
host->pclk = clk_get(&pdev->dev, "sdc_pclk");
|
||||||
@@ -1388,8 +1392,9 @@ msmsdcc_probe(struct platform_device *pdev)
|
|||||||
pclk_put:
|
pclk_put:
|
||||||
clk_put(host->pclk);
|
clk_put(host->pclk);
|
||||||
dma_free:
|
dma_free:
|
||||||
dma_free_coherent(NULL, sizeof(struct msmsdcc_nc_dmadata),
|
if (host->dmares)
|
||||||
host->dma.nc, host->dma.nc_busaddr);
|
dma_free_coherent(NULL, sizeof(struct msmsdcc_nc_dmadata),
|
||||||
|
host->dma.nc, host->dma.nc_busaddr);
|
||||||
ioremap_free:
|
ioremap_free:
|
||||||
tasklet_kill(&host->dma_tlet);
|
tasklet_kill(&host->dma_tlet);
|
||||||
iounmap(host->base);
|
iounmap(host->base);
|
||||||
|
Reference in New Issue
Block a user