diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-07-24 20:12:54 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-07-24 20:12:54 -0400 |
commit | c511dc1fb6bee58363eb203d53393784f2589d02 (patch) | |
tree | 20d91e01aec30c462965fba27cfea0c80744d7ed /sound | |
parent | 9161c3b796a2841a9a7be3d9c9dd121269ce90e8 (diff) | |
parent | 634332502366554849fe37e88d05ec0a13e550c8 (diff) |
Merge branch 'next' of git://git.infradead.org/users/vkoul/slave-dma
Pull slave-dmaengine update from Vinod Koul:
"This time we have a new dmaengine driver from the tegra folks. Also
we have Guennadi's cleanup of sh drivers which incudes a library for
sh drivers. And the usual odd fixes in bunch of drivers and some nice
cleanup of dw_dmac from Andy."
Fix up conflicts in drivers/mmc/host/sh_mmcif.c
* 'next' of git://git.infradead.org/users/vkoul/slave-dma: (46 commits)
dmaengine: Cleanup logging messages
mmc: sh_mmcif: switch to the new DMA channel allocation and configuration
dma: sh: provide a migration path for slave drivers to stop using .private
dma: sh: use an integer slave ID to improve API compatibility
dmaengine: shdma: prepare to stop using struct dma_chan::private
sh: remove unused DMA device pointer from SIU platform data
ASoC: siu: don't use DMA device for channel filtering
dmaengine: shdma: (cosmetic) simplify a static function
dmaengine: at_hdmac: add a few const qualifiers
dw_dmac: use 'u32' for LLI structure members, not dma_addr_t
dw_dmac: mark dwc_dump_lli inline
dma: mxs-dma: Export missing symbols from mxs-dma.c
dma: shdma: convert to the shdma base library
ASoC: fsi: prepare for conversion to the shdma base library
usb: renesas_usbhs: prepare for conversion to the shdma base library
ASoC: siu: prepare for conversion to the shdma base library
serial: sh-sci: prepare for conversion to the shdma base library
mmc: sh_mobile_sdhi: prepare for conversion to the shdma base library
mmc: sh_mmcif: remove unneeded struct sh_mmcif_dma, prepare to shdma conversion
dma: shdma: prepare for conversion to the shdma base library
...
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/sh/fsi.c | 4 | ||||
-rw-r--r-- | sound/soc/sh/siu_pcm.c | 12 |
2 files changed, 6 insertions, 10 deletions
diff --git a/sound/soc/sh/fsi.c b/sound/soc/sh/fsi.c index 53486ff9c2af..0540408a9fa9 100644 --- a/sound/soc/sh/fsi.c +++ b/sound/soc/sh/fsi.c | |||
@@ -1631,8 +1631,8 @@ static void fsi_handler_init(struct fsi_priv *fsi) | |||
1631 | fsi->capture.priv = fsi; | 1631 | fsi->capture.priv = fsi; |
1632 | 1632 | ||
1633 | if (fsi->info->tx_id) { | 1633 | if (fsi->info->tx_id) { |
1634 | fsi->playback.slave.slave_id = fsi->info->tx_id; | 1634 | fsi->playback.slave.shdma_slave.slave_id = fsi->info->tx_id; |
1635 | fsi->playback.handler = &fsi_dma_push_handler; | 1635 | fsi->playback.handler = &fsi_dma_push_handler; |
1636 | } | 1636 | } |
1637 | } | 1637 | } |
1638 | 1638 | ||
diff --git a/sound/soc/sh/siu_pcm.c b/sound/soc/sh/siu_pcm.c index 5cfcc655e95f..488f9becb44f 100644 --- a/sound/soc/sh/siu_pcm.c +++ b/sound/soc/sh/siu_pcm.c | |||
@@ -330,12 +330,9 @@ static bool filter(struct dma_chan *chan, void *slave) | |||
330 | { | 330 | { |
331 | struct sh_dmae_slave *param = slave; | 331 | struct sh_dmae_slave *param = slave; |
332 | 332 | ||
333 | pr_debug("%s: slave ID %d\n", __func__, param->slave_id); | 333 | pr_debug("%s: slave ID %d\n", __func__, param->shdma_slave.slave_id); |
334 | 334 | ||
335 | if (unlikely(param->dma_dev != chan->device->dev)) | 335 | chan->private = ¶m->shdma_slave; |
336 | return false; | ||
337 | |||
338 | chan->private = param; | ||
339 | return true; | 336 | return true; |
340 | } | 337 | } |
341 | 338 | ||
@@ -360,16 +357,15 @@ static int siu_pcm_open(struct snd_pcm_substream *ss) | |||
360 | if (ss->stream == SNDRV_PCM_STREAM_PLAYBACK) { | 357 | if (ss->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
361 | siu_stream = &port_info->playback; | 358 | siu_stream = &port_info->playback; |
362 | param = &siu_stream->param; | 359 | param = &siu_stream->param; |
363 | param->slave_id = port ? pdata->dma_slave_tx_b : | 360 | param->shdma_slave.slave_id = port ? pdata->dma_slave_tx_b : |
364 | pdata->dma_slave_tx_a; | 361 | pdata->dma_slave_tx_a; |
365 | } else { | 362 | } else { |
366 | siu_stream = &port_info->capture; | 363 | siu_stream = &port_info->capture; |
367 | param = &siu_stream->param; | 364 | param = &siu_stream->param; |
368 | param->slave_id = port ? pdata->dma_slave_rx_b : | 365 | param->shdma_slave.slave_id = port ? pdata->dma_slave_rx_b : |
369 | pdata->dma_slave_rx_a; | 366 | pdata->dma_slave_rx_a; |
370 | } | 367 | } |
371 | 368 | ||
372 | param->dma_dev = pdata->dma_dev; | ||
373 | /* Get DMA channel */ | 369 | /* Get DMA channel */ |
374 | siu_stream->chan = dma_request_channel(mask, filter, param); | 370 | siu_stream->chan = dma_request_channel(mask, filter, param); |
375 | if (!siu_stream->chan) { | 371 | if (!siu_stream->chan) { |