Alsa-Devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/14] ASoC: rsnd: TDM Extend Mode support
@ 2015-11-30  8:48 Kuninori Morimoto
  2015-11-30  8:49 ` [PATCH 01/14] ASoC: rsnd: don't use normal *mod in adg.c Kuninori Morimoto
                   ` (13 more replies)
  0 siblings, 14 replies; 29+ messages in thread
From: Kuninori Morimoto @ 2015-11-30  8:48 UTC (permalink / raw)
  To: Mark Brown; +Cc: Linux-ALSA, Simon, Liam Girdwood


Hi Mark

These patch-set adds TDM Extend Mode to Renesas R-Car sound driver.
 1) -  9) tidyup / cleanup patches
10) - 14) TDM Extend Mode support

Unfortunately, our board can't use this TDM Extend Mode, because
our SoC and codec are using different style TDM.
Thus I have tested this patches on special board which doesn't have codec chip,
and I checked signal via oscilloscope.

oKuninori Morimoto (14):
       1) ASoC: rsnd: don't use normal *mod in adg.c
       2) ASoC: rsnd: add missing ADINR::CHNUM on DVC/SRC/SSIU
       3) ASoC: rsnd: add missing SRC_O_BUSIF_MODE register
       4) ASoC: rsnd: src: rename rsnd_src_soft_reset() to rsnd_src_activation()
       5) ASoC: rsnd: mix: rename rsnd_mix_soft_reset() to rsnd_mix_activation()
       6) ASoC: rsnd: dvc: rename rsnd_dvc_soft_reset() to rsnd_dvc_activation()
       7) ASoC: rsnd: src: add rsnd_src_halt()
       8) ASoC: rsnd: mix: add rsnd_mix_halt()
       9) ASoC: rsnd: dvc: add rsnd_dvc_halt()
      10) ASoC: rsnd: add rsnd_ssi_config_init()
      11) ASoC: rsnd: set SSIWSR setting on rsnd_ssi_config_init()
      12) ASoC: rsnd: ssi enables non-stereo sound
      13) ASoC: rsnd: dvc enables non-stereo sound
      14) ASoC: rsnd: add TDM Extend Mode support

 sound/soc/sh/rcar/adg.c  |  30 +++++++++++-------------------
 sound/soc/sh/rcar/core.c |  65 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-----
 sound/soc/sh/rcar/dvc.c  |  32 +++++++++++++++++++++++++++-----
 sound/soc/sh/rcar/gen.c  |  11 ++++++++++-
 sound/soc/sh/rcar/mix.c  |  12 ++++++++++--
 sound/soc/sh/rcar/rsnd.h |  19 +++++++++++++++++--
 sound/soc/sh/rcar/src.c  |  18 ++++++++++++++----
 sound/soc/sh/rcar/ssi.c  | 126 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------------------------
 sound/soc/sh/rcar/ssiu.c |  12 +++++++++++-
 9 files changed, 235 insertions(+), 90 deletions(-)

Best regards
---
Kuninori Morimoto

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

end of thread, other threads:[~2015-12-01 23:00 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-30  8:48 [PATCH 0/14] ASoC: rsnd: TDM Extend Mode support Kuninori Morimoto
2015-11-30  8:49 ` [PATCH 01/14] ASoC: rsnd: don't use normal *mod in adg.c Kuninori Morimoto
2015-12-01 23:00   ` Applied "ASoC: rsnd: don't use normal *mod in adg.c" to the asoc tree Mark Brown
2015-11-30  8:49 ` [PATCH 02/14] ASoC: rsnd: add missing ADINR::CHNUM on DVC/SRC/SSIU Kuninori Morimoto
2015-12-01 23:00   ` Applied "ASoC: rsnd: add missing ADINR::CHNUM on DVC/SRC/SSIU" to the asoc tree Mark Brown
2015-11-30  8:50 ` [PATCH 03/14] ASoC: rsnd: add missing SRC_O_BUSIF_MODE register Kuninori Morimoto
2015-12-01 23:00   ` Applied "ASoC: rsnd: add missing SRC_O_BUSIF_MODE register" to the asoc tree Mark Brown
2015-11-30  8:50 ` [PATCH 04/14] ASoC: rsnd: src: rename rsnd_src_soft_reset() to rsnd_src_activation() Kuninori Morimoto
2015-12-01 23:00   ` Applied "ASoC: rsnd: src: rename rsnd_src_soft_reset() to rsnd_src_activation()" to the asoc tree Mark Brown
2015-11-30  8:50 ` [PATCH 05/14] ASoC: rsnd: mix: rename rsnd_mix_soft_reset() to rsnd_mix_activation() Kuninori Morimoto
2015-12-01 22:59   ` Applied "ASoC: rsnd: mix: rename rsnd_mix_soft_reset() to rsnd_mix_activation()" to the asoc tree Mark Brown
2015-11-30  8:51 ` [PATCH 06/14] ASoC: rsnd: dvc: rename rsnd_dvc_soft_reset() to rsnd_dvc_activation() Kuninori Morimoto
2015-12-01 22:59   ` Applied "ASoC: rsnd: dvc: rename rsnd_dvc_soft_reset() to rsnd_dvc_activation()" to the asoc tree Mark Brown
2015-11-30  8:51 ` [PATCH 07/14] ASoC: rsnd: src: add rsnd_src_halt() Kuninori Morimoto
2015-12-01 22:59   ` Applied "ASoC: rsnd: src: add rsnd_src_halt()" to the asoc tree Mark Brown
2015-11-30  8:51 ` [PATCH 08/14] ASoC: rsnd: mix: add rsnd_mix_halt() Kuninori Morimoto
2015-12-01 22:59   ` Applied "ASoC: rsnd: mix: add rsnd_mix_halt()" to the asoc tree Mark Brown
2015-11-30  8:52 ` [PATCH 09/14] ASoC: rsnd: dvc: add rsnd_dvc_halt() Kuninori Morimoto
2015-12-01 22:59   ` Applied "ASoC: rsnd: dvc: add rsnd_dvc_halt()" to the asoc tree Mark Brown
2015-11-30  8:52 ` [PATCH 10/14] ASoC: rsnd: add rsnd_ssi_config_init() Kuninori Morimoto
2015-12-01 22:59   ` Applied "ASoC: rsnd: add rsnd_ssi_config_init()" to the asoc tree Mark Brown
2015-11-30  8:53 ` [PATCH 11/14] ASoC: rsnd: set SSIWSR setting on rsnd_ssi_config_init() Kuninori Morimoto
2015-12-01 22:59   ` Applied "ASoC: rsnd: set SSIWSR setting on rsnd_ssi_config_init()" to the asoc tree Mark Brown
2015-11-30  8:53 ` [PATCH 12/14] ASoC: rsnd: ssi enables non-stereo sound Kuninori Morimoto
2015-12-01 22:59   ` Applied "ASoC: rsnd: ssi enables non-stereo sound" to the asoc tree Mark Brown
2015-11-30  8:53 ` [PATCH 13/14] ASoC: rsnd: dvc enables non-stereo sound Kuninori Morimoto
2015-12-01 22:59   ` Applied "ASoC: rsnd: dvc enables non-stereo sound" to the asoc tree Mark Brown
2015-11-30  8:54 ` [PATCH 14/14] ASoC: rsnd: add TDM Extend Mode support Kuninori Morimoto
2015-12-01 22:59   ` Applied "ASoC: rsnd: add TDM Extend Mode support" 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