alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/15] ASoC: rsnd: Ensure CTU/MUX works
@ 2016-01-21  1:54 Kuninori Morimoto
  2016-01-21  1:55 ` [PATCH 01/15] ASoC: rsnd: remove unsed *parent Kuninori Morimoto
                   ` (14 more replies)
  0 siblings, 15 replies; 31+ messages in thread
From: Kuninori Morimoto @ 2016-01-21  1:54 UTC (permalink / raw)
  To: Mark Brown; +Cc: Linux-ALSA, Simon, Liam Girdwood


Hi Mark

Current rsnd is supporting CTU/MUX (no one is using it though)
but it has some issues by previous big patch-set.
These patches solve it.
These are based on my previous

	Subject: [PATCH] ASoC: soc-pcm: copy dpcm->hw_params and call be_hw_params_fixup every time
	Date: Thu, 21 Jan 2016 10:43:48 +0900

Kuninori Morimoto (15):
      ASoC: rsnd: remove unsed *parent
      ASoC: rsnd: use rsnd_mod_init() for ADG
      ASoC: rsnd: add debug message for rsnd_mod_call()
      ASoC: rsnd: don't update status if rsnd_mod_call() doesn't match
      ASoC: rsnd: try to connect connected mod is not error
      ASoC: rsnd: always call probe/remove for MUX
      ASoC: rsnd: don't overwrite io on rsnd_cmd_init()
      ASoC: rsnd: select each SRC correctly for CMD data path
      ASoC: rsnd: each mod has status again for CTU/MUX support
      ASoC: rsnd: attach Audio-DMAC-periperi correctly
      ASoC: rsnd: ctu: add rsnd_mix_activation()
      ASoC: rsnd: ctu: add rsnd_ctu_halt()
      ASoC: rsnd: ctu: settings matches to datasheet
      ASoC: rsnd: tidyup Playback/Capture sequence
      ASoC: rsnd: disable SRC.out/in in same time

 sound/soc/sh/rcar/adg.c  |  9 ++-------
 sound/soc/sh/rcar/cmd.c  | 18 ++++++++++++------
 sound/soc/sh/rcar/core.c | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------
 sound/soc/sh/rcar/ctu.c  | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------
 sound/soc/sh/rcar/dma.c  | 56 +++++++++++++++++++++++++++++---------------------------
 sound/soc/sh/rcar/dvc.c  |  2 +-
 sound/soc/sh/rcar/gen.c  | 35 +++++++++++++++++++++++++++++++++++
 sound/soc/sh/rcar/mix.c  |  2 +-
 sound/soc/sh/rcar/rsnd.h | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------
 sound/soc/sh/rcar/src.c  | 16 ++++------------
 sound/soc/sh/rcar/ssi.c  | 43 ++++++++++++++++++++++++++++++++++++++-----
 sound/soc/sh/rcar/ssiu.c |  3 ++-
 12 files changed, 313 insertions(+), 92 deletions(-)

^ permalink raw reply	[flat|nested] 31+ messages in thread

end of thread, other threads:[~2016-01-22 18:26 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-21  1:54 [PATCH 0/15] ASoC: rsnd: Ensure CTU/MUX works Kuninori Morimoto
2016-01-21  1:55 ` [PATCH 01/15] ASoC: rsnd: remove unsed *parent Kuninori Morimoto
2016-01-22 18:26   ` Applied "ASoC: rsnd: remove unsed *parent" to the asoc tree Mark Brown
2016-01-21  1:55 ` [PATCH 02/15] ASoC: rsnd: use rsnd_mod_init() for ADG Kuninori Morimoto
2016-01-22 18:26   ` Applied "ASoC: rsnd: use rsnd_mod_init() for ADG" to the asoc tree Mark Brown
2016-01-21  1:55 ` [PATCH 03/15] ASoC: rsnd: add debug message for rsnd_mod_call() Kuninori Morimoto
2016-01-22 18:26   ` Applied "ASoC: rsnd: add debug message for rsnd_mod_call()" to the asoc tree Mark Brown
2016-01-21  1:56 ` [PATCH 04/15] ASoC: rsnd: don't update status if rsnd_mod_call() doesn't match Kuninori Morimoto
2016-01-22 18:26   ` Applied "ASoC: rsnd: don't update status if rsnd_mod_call() doesn't match" to the asoc tree Mark Brown
2016-01-21  1:56 ` [PATCH 05/15] ASoC: rsnd: try to connect connected mod is not error Kuninori Morimoto
2016-01-22 18:26   ` Applied "ASoC: rsnd: try to connect connected mod is not error" to the asoc tree Mark Brown
2016-01-21  1:56 ` [PATCH 06/15] ASoC: rsnd: always call probe/remove for MUX Kuninori Morimoto
2016-01-22 18:26   ` Applied "ASoC: rsnd: always call probe/remove for MUX" to the asoc tree Mark Brown
2016-01-21  1:57 ` [PATCH 07/15] ASoC: rsnd: don't overwrite io on rsnd_cmd_init() Kuninori Morimoto
2016-01-22 18:26   ` Applied "ASoC: rsnd: don't overwrite io on rsnd_cmd_init()" to the asoc tree Mark Brown
2016-01-21  1:57 ` [PATCH 08/15] ASoC: rsnd: select each SRC correctly for CMD data path Kuninori Morimoto
2016-01-22 18:26   ` Applied "ASoC: rsnd: select each SRC correctly for CMD data path" to the asoc tree Mark Brown
2016-01-21  1:58 ` [PATCH 09/15] ASoC: rsnd: each mod has status again for CTU/MUX support Kuninori Morimoto
2016-01-22 18:26   ` Applied "ASoC: rsnd: each mod has status again for CTU/MUX support" to the asoc tree Mark Brown
2016-01-21  1:58 ` [PATCH 10/15] ASoC: rsnd: attach Audio-DMAC-periperi correctly Kuninori Morimoto
2016-01-22 18:26   ` Applied "ASoC: rsnd: attach Audio-DMAC-periperi correctly" to the asoc tree Mark Brown
2016-01-21  1:58 ` [PATCH 11/15] ASoC: rsnd: ctu: add rsnd_mix_activation() Kuninori Morimoto
2016-01-22 18:26   ` Applied "ASoC: rsnd: ctu: add rsnd_mix_activation()" to the asoc tree Mark Brown
2016-01-21  1:59 ` [PATCH 12/15] ASoC: rsnd: ctu: add rsnd_ctu_halt() Kuninori Morimoto
2016-01-22 18:26   ` Applied "ASoC: rsnd: ctu: add rsnd_ctu_halt()" to the asoc tree Mark Brown
2016-01-21  1:59 ` [PATCH 13/15] ASoC: rsnd: ctu: settings matches to datasheet Kuninori Morimoto
2016-01-22 18:26   ` Applied "ASoC: rsnd: ctu: settings matches to datasheet" to the asoc tree Mark Brown
2016-01-21  1:59 ` [PATCH 14/15] ASoC: rsnd: tidyup Playback/Capture sequence Kuninori Morimoto
2016-01-22 18:26   ` Applied "ASoC: rsnd: tidyup Playback/Capture sequence" to the asoc tree Mark Brown
2016-01-21  2:00 ` [PATCH 15/15] ASoC: rsnd: disable SRC.out/in in same time Kuninori Morimoto
2016-01-22 18:26   ` Applied "ASoC: rsnd: disable SRC.out/in in same time" to the asoc tree Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).