Skip to content

Commit

Permalink
ASoC: rsnd: indicates Channel and Mode for debug
Browse files Browse the repository at this point in the history
For TDM debug purpose, indicating Channel and Mode is very
useful. This patch indicate it if it has #define DEBUG

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
Kuninori Morimoto authored and Mark Brown committed Dec 4, 2018

Unverified

No user is associated with the committer email.
1 parent f84a627 commit 5d9bb55
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion sound/soc/sh/rcar/ssi.c
Original file line number Diff line number Diff line change
@@ -329,7 +329,8 @@ static int rsnd_ssi_master_clk_start(struct rsnd_mod *mod,
ssi->rate = rate;
ssi->chan = chan;

dev_dbg(dev, "%s outputs %u Hz\n", rsnd_mod_name(mod), rate);
dev_dbg(dev, "%s outputs %d chan %u Hz\n",
rsnd_mod_name(mod), chan, rate);

return 0;
}
@@ -360,6 +361,8 @@ static void rsnd_ssi_config_init(struct rsnd_mod *mod,
struct rsnd_dai_stream *io)
{
struct rsnd_dai *rdai = rsnd_io_to_rdai(io);
struct rsnd_priv *priv = rsnd_rdai_to_priv(rdai);
struct device *dev = rsnd_priv_to_dev(priv);
struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
struct rsnd_ssi *ssi = rsnd_mod_to_ssi(mod);
u32 cr_own = ssi->cr_own;
@@ -371,6 +374,11 @@ static void rsnd_ssi_config_init(struct rsnd_mod *mod,
is_tdm = rsnd_runtime_is_tdm(io);
is_tdm_split = rsnd_runtime_is_tdm_split(io);

if (is_tdm)
dev_dbg(dev, "TDM mode\n");
if (is_tdm_split)
dev_dbg(dev, "TDM Split mode\n");

cr_own |= FORCE | rsnd_rdai_width_to_swl(rdai);

if (rdai->bit_clk_inv)

0 comments on commit 5d9bb55

Please sign in to comment.