aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2013-12-23 23:44:15 -0500
committerSimon Horman <horms+renesas@verge.net.au>2014-02-03 20:17:53 -0500
commit6d0ef79743abd39c1867a7fb9eaccdda0b2136db (patch)
treea16c71e806bdf7c7dc44299f9826102fa9ae8a72
parenta2a4759b5262979cbe4bc1f681ec5a6ab064fce3 (diff)
ARM: shmobile: bockw: use SSI DMAEngine for sound
R-Car sound driver is supporting Mem <-> SSI direct transfer via DMAEngine. Current HPB-DMA is using double plane transfer, but the sound may have noise since SSI doesn't have FIFO. This patch supports it. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
-rw-r--r--arch/arm/mach-shmobile/board-bockw.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/arm/mach-shmobile/board-bockw.c b/arch/arm/mach-shmobile/board-bockw.c
index c475220545f2..bdb78a77e78f 100644
--- a/arch/arm/mach-shmobile/board-bockw.c
+++ b/arch/arm/mach-shmobile/board-bockw.c
@@ -332,12 +332,12 @@ static struct rsnd_ssi_platform_info rsnd_ssi[] = {
332 RSND_SSI_UNUSED, /* SSI 0 */ 332 RSND_SSI_UNUSED, /* SSI 0 */
333 RSND_SSI_UNUSED, /* SSI 1 */ 333 RSND_SSI_UNUSED, /* SSI 1 */
334 RSND_SSI_UNUSED, /* SSI 2 */ 334 RSND_SSI_UNUSED, /* SSI 2 */
335 RSND_SSI_SET(1, 0, gic_iid(0x85), RSND_SSI_PLAY), 335 RSND_SSI_SET(1, HPBDMA_SLAVE_SSI3_TX, gic_iid(0x85), RSND_SSI_PLAY),
336 RSND_SSI_SET(2, 0, gic_iid(0x85), RSND_SSI_CLK_PIN_SHARE), 336 RSND_SSI_SET(2, HPBDMA_SLAVE_SSI4_RX, gic_iid(0x85), RSND_SSI_CLK_PIN_SHARE),
337 RSND_SSI_SET(0, 0, gic_iid(0x86), RSND_SSI_PLAY), 337 RSND_SSI_SET(0, HPBDMA_SLAVE_SSI5_TX, gic_iid(0x86), RSND_SSI_PLAY),
338 RSND_SSI_SET(0, 0, gic_iid(0x86), 0), 338 RSND_SSI_SET(0, HPBDMA_SLAVE_SSI6_RX, gic_iid(0x86), 0),
339 RSND_SSI_SET(3, 0, gic_iid(0x86), RSND_SSI_PLAY), 339 RSND_SSI_SET(3, HPBDMA_SLAVE_SSI7_TX, gic_iid(0x86), RSND_SSI_PLAY),
340 RSND_SSI_SET(4, 0, gic_iid(0x86), RSND_SSI_CLK_PIN_SHARE), 340 RSND_SSI_SET(4, HPBDMA_SLAVE_SSI8_RX, gic_iid(0x86), RSND_SSI_CLK_PIN_SHARE),
341}; 341};
342 342
343static struct rsnd_scu_platform_info rsnd_scu[9] = { 343static struct rsnd_scu_platform_info rsnd_scu[9] = {