From 92bdf365e26eeccd0b9c2ea6ee6fce5e05eda313 Mon Sep 17 00:00:00 2001 From: Magnus Damm Date: Tue, 24 May 2011 10:31:12 +0000 Subject: [PATCH] --- yaml --- r: 251363 b: refs/heads/master c: 26fc02ab5551349b2e593829a76cb44328ee7f61 h: refs/heads/master i: 251361: 2802c68dcf05d16053c2268dd2797526056175c2 251359: 88286cd089d6741b72339634d6ad3db952cec93c v: v3 --- [refs] | 2 +- trunk/drivers/dma/shdma.c | 11 ++++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/[refs] b/[refs] index 71301702289b..e73371a76da1 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 66ad12931d523e833516659eafcc29af9a08fff3 +refs/heads/master: 26fc02ab5551349b2e593829a76cb44328ee7f61 diff --git a/trunk/drivers/dma/shdma.c b/trunk/drivers/dma/shdma.c index dcc1b2139fff..3391b157d057 100644 --- a/trunk/drivers/dma/shdma.c +++ b/trunk/drivers/dma/shdma.c @@ -213,12 +213,17 @@ static int dmae_set_dmars(struct sh_dmae_chan *sh_chan, u16 val) struct sh_dmae_device, common); struct sh_dmae_pdata *pdata = shdev->pdata; const struct sh_dmae_channel *chan_pdata = &pdata->channel[sh_chan->id]; - u16 __iomem *addr = shdev->dmars + chan_pdata->dmars / sizeof(u16); + u16 __iomem *addr = shdev->dmars; int shift = chan_pdata->dmars_bit; if (dmae_is_busy(sh_chan)) return -EBUSY; + /* in the case of a missing DMARS resource use first memory window */ + if (!addr) + addr = (u16 __iomem *)shdev->chan_reg; + addr += chan_pdata->dmars / sizeof(u16); + __raw_writew((__raw_readw(addr) & (0xff00 >> shift)) | (val << shift), addr); @@ -1087,7 +1092,7 @@ static int __init sh_dmae_probe(struct platform_device *pdev) return -ENODEV; chan = platform_get_resource(pdev, IORESOURCE_MEM, 0); - /* DMARS area is optional, if absent, this controller cannot do slave DMA */ + /* DMARS area is optional */ dmars = platform_get_resource(pdev, IORESOURCE_MEM, 1); /* * IRQ resources: @@ -1154,7 +1159,7 @@ static int __init sh_dmae_probe(struct platform_device *pdev) INIT_LIST_HEAD(&shdev->common.channels); dma_cap_set(DMA_MEMCPY, shdev->common.cap_mask); - if (dmars) + if (pdata->slave && pdata->slave_num) dma_cap_set(DMA_SLAVE, shdev->common.cap_mask); shdev->common.device_alloc_chan_resources