ASoC: rsnd: ssiu: Support to init different BUSIF instance
authorJiada Wang <jiada_wang@mentor.com>
Mon, 3 Sep 2018 07:08:37 +0000 (07:08 +0000)
committerMark Brown <broonie@kernel.org>
Mon, 3 Sep 2018 13:37:19 +0000 (14:37 +0100)
Currently ssiu's .init is only called once during audio stream.
But SSIU with different BUSIF, shall be initialized each time,
even they are used in the same audio stream.

This patch introduces ssiu_status for BUSIF0 to BUSIF7 in rsnd_ssiu,
to make sure same .init for different BUSIF can always be executed.

To avoid the first stopped stream to stop the whole SSIU,
which may still has other BUSIF instance running, use usrcnt to count
the usage of SSIU, only the last user of SSIU can stop the whole SSIU.

Signed-off-by: Jiada Wang <jiada_wang@mentor.com>
Signed-off-by: Timo Wischer <twischer@de.adit-jv.com>
[Kuninori: tidyup for upstream]
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Tested-by: Hiroyuki Yokoyama <hiroyuki.yokoyama.vx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/sh/rcar/ssiu.c

index a9605a0163f2853610d82d014c452ad78fdec06a..39b67643b5dc2fe25680338a7e5da1a57c779ee5 100644 (file)
 
 struct rsnd_ssiu {
        struct rsnd_mod mod;
+       u32 busif_status[8]; /* for BUSIF0 - BUSIF7 */
+       unsigned int usrcnt;
 };
 
 #define rsnd_ssiu_nr(priv) ((priv)->ssiu_nr)
+#define rsnd_mod_to_ssiu(_mod) container_of((_mod), struct rsnd_ssiu, mod)
 #define for_each_rsnd_ssiu(pos, priv, i)                               \
        for (i = 0;                                                     \
             (i < rsnd_ssiu_nr(priv)) &&                                \
@@ -120,6 +123,7 @@ static int rsnd_ssiu_init_gen2(struct rsnd_mod *mod,
                               struct rsnd_dai_stream *io,
                               struct rsnd_priv *priv)
 {
+       struct rsnd_ssiu *ssiu = rsnd_mod_to_ssiu(mod);
        int hdmi = rsnd_ssi_hdmi_port(io);
        int ret;
        u32 mode = 0;
@@ -128,6 +132,8 @@ static int rsnd_ssiu_init_gen2(struct rsnd_mod *mod,
        if (ret < 0)
                return ret;
 
+       ssiu->usrcnt++;
+
        if (rsnd_runtime_is_ssi_tdm(io)) {
                /*
                 * TDM Extend Mode
@@ -255,6 +261,7 @@ static int rsnd_ssiu_stop_gen2(struct rsnd_mod *mod,
                               struct rsnd_dai_stream *io,
                               struct rsnd_priv *priv)
 {
+       struct rsnd_ssiu *ssiu = rsnd_mod_to_ssiu(mod);
        int busif = rsnd_ssi_get_busif(io);
 
        if (!rsnd_ssi_use_busif(io))
@@ -262,6 +269,9 @@ static int rsnd_ssiu_stop_gen2(struct rsnd_mod *mod,
 
        rsnd_mod_bset(mod, SSI_CTRL, 1 << (busif * 4), 0);
 
+       if (--ssiu->usrcnt)
+               return 0;
+
        if (rsnd_ssi_multi_slaves_runtime(io))
                rsnd_mod_write(mod, SSI_CONTROL, 0);
 
@@ -294,6 +304,16 @@ int rsnd_ssiu_attach(struct rsnd_dai_stream *io,
        return rsnd_dai_connect(mod, io, mod->type);
 }
 
+static u32 *rsnd_ssiu_get_status(struct rsnd_dai_stream *io,
+                                struct rsnd_mod *mod,
+                                enum rsnd_mod_type type)
+{
+       struct rsnd_ssiu *ssiu = rsnd_mod_to_ssiu(mod);
+       int busif = rsnd_ssi_get_busif(io);
+
+       return &ssiu->busif_status[busif];
+}
+
 int rsnd_ssiu_probe(struct rsnd_priv *priv)
 {
        struct device *dev = rsnd_priv_to_dev(priv);
@@ -317,7 +337,7 @@ int rsnd_ssiu_probe(struct rsnd_priv *priv)
 
        for_each_rsnd_ssiu(ssiu, priv, i) {
                ret = rsnd_mod_init(priv, rsnd_mod_get(ssiu),
-                                   ops, NULL, rsnd_mod_get_status,
+                                   ops, NULL, rsnd_ssiu_get_status,
                                    RSND_MOD_SSIU, i);
                if (ret)
                        return ret;