ASoC: dapm: Handle SND_SOC_DAPM_REG() generically
[linux-2.6-block.git] / sound / soc / soc-dapm.c
index b9dc6acbba8c55661eb0cf423a02fb9b7dda1c87..98e20de50e2d4b2c978a0d01d94775009f9b3072 100644 (file)
@@ -70,8 +70,6 @@ static int dapm_up_seq[] = {
        [snd_soc_dapm_aif_out] = 4,
        [snd_soc_dapm_mic] = 5,
        [snd_soc_dapm_mux] = 6,
-       [snd_soc_dapm_virt_mux] = 6,
-       [snd_soc_dapm_value_mux] = 6,
        [snd_soc_dapm_dac] = 7,
        [snd_soc_dapm_switch] = 8,
        [snd_soc_dapm_mixer] = 8,
@@ -102,8 +100,6 @@ static int dapm_down_seq[] = {
        [snd_soc_dapm_mic] = 7,
        [snd_soc_dapm_micbias] = 8,
        [snd_soc_dapm_mux] = 9,
-       [snd_soc_dapm_virt_mux] = 9,
-       [snd_soc_dapm_value_mux] = 9,
        [snd_soc_dapm_aif_in] = 10,
        [snd_soc_dapm_aif_out] = 10,
        [snd_soc_dapm_dai_in] = 10,
@@ -115,6 +111,12 @@ static int dapm_down_seq[] = {
        [snd_soc_dapm_post] = 14,
 };
 
+static void dapm_assert_locked(struct snd_soc_dapm_context *dapm)
+{
+       if (dapm->card && dapm->card->instantiated)
+               lockdep_assert_held(&dapm->card->dapm_mutex);
+}
+
 static void pop_wait(u32 pop_time)
 {
        if (pop_time)
@@ -146,15 +148,16 @@ static bool dapm_dirty_widget(struct snd_soc_dapm_widget *w)
        return !list_empty(&w->dirty);
 }
 
-void dapm_mark_dirty(struct snd_soc_dapm_widget *w, const char *reason)
+static void dapm_mark_dirty(struct snd_soc_dapm_widget *w, const char *reason)
 {
+       dapm_assert_locked(w->dapm);
+
        if (!dapm_dirty_widget(w)) {
                dev_vdbg(w->dapm->dev, "Marking %s dirty due to %s\n",
                         w->name, reason);
                list_add_tail(&w->dirty, &w->dapm->card->dapm_dirty);
        }
 }
-EXPORT_SYMBOL_GPL(dapm_mark_dirty);
 
 void dapm_mark_io_dirty(struct snd_soc_dapm_context *dapm)
 {
@@ -361,6 +364,8 @@ static void dapm_reset(struct snd_soc_card *card)
 {
        struct snd_soc_dapm_widget *w;
 
+       lockdep_assert_held(&card->dapm_mutex);
+
        memset(&card->dapm_stats, 0, sizeof(card->dapm_stats));
 
        list_for_each_entry(w, &card->widgets, list) {
@@ -374,85 +379,24 @@ static void dapm_reset(struct snd_soc_card *card)
 static int soc_widget_read(struct snd_soc_dapm_widget *w, int reg,
        unsigned int *value)
 {
-       if (w->codec) {
-               *value = snd_soc_read(w->codec, reg);
-               return 0;
-       } else if (w->platform) {
-               *value = snd_soc_platform_read(w->platform, reg);
-               return 0;
-       }
-
-       dev_err(w->dapm->dev, "ASoC: no valid widget read method\n");
-       return -1;
-}
-
-static int soc_widget_write(struct snd_soc_dapm_widget *w, int reg, int val)
-{
-       if (w->codec)
-               return snd_soc_write(w->codec, reg, val);
-       else if (w->platform)
-               return snd_soc_platform_write(w->platform, reg, val);
-
-       dev_err(w->dapm->dev, "ASoC: no valid widget write method\n");
-       return -1;
-}
-
-static inline void soc_widget_lock(struct snd_soc_dapm_widget *w)
-{
-       if (w->codec && !w->codec->using_regmap)
-               mutex_lock(&w->codec->mutex);
-       else if (w->platform)
-               mutex_lock(&w->platform->mutex);
+       if (!w->dapm->component)
+               return -EIO;
+       return snd_soc_component_read(w->dapm->component, reg, value);
 }
 
-static inline void soc_widget_unlock(struct snd_soc_dapm_widget *w)
+static int soc_widget_update_bits(struct snd_soc_dapm_widget *w,
+       int reg, unsigned int mask, unsigned int value)
 {
-       if (w->codec && !w->codec->using_regmap)
-               mutex_unlock(&w->codec->mutex);
-       else if (w->platform)
-               mutex_unlock(&w->platform->mutex);
+       if (!w->dapm->component)
+               return -EIO;
+       return snd_soc_component_update_bits_async(w->dapm->component, reg,
+               mask, value);
 }
 
 static void soc_dapm_async_complete(struct snd_soc_dapm_context *dapm)
 {
-       if (dapm->codec && dapm->codec->using_regmap)
-               regmap_async_complete(dapm->codec->control_data);
-}
-
-static int soc_widget_update_bits_locked(struct snd_soc_dapm_widget *w,
-       unsigned short reg, unsigned int mask, unsigned int value)
-{
-       bool change;
-       unsigned int old, new;
-       int ret;
-
-       if (w->codec && w->codec->using_regmap) {
-               ret = regmap_update_bits_check_async(w->codec->control_data,
-                                                    reg, mask, value,
-                                                    &change);
-               if (ret != 0)
-                       return ret;
-       } else {
-               soc_widget_lock(w);
-               ret = soc_widget_read(w, reg, &old);
-               if (ret < 0) {
-                       soc_widget_unlock(w);
-                       return ret;
-               }
-
-               new = (old & ~mask) | (value & mask);
-               change = old != new;
-               if (change) {
-                       ret = soc_widget_write(w, reg, new);
-                       if (ret < 0) {
-                               soc_widget_unlock(w);
-                               return ret;
-                       }
-               }
-               soc_widget_unlock(w);
-       }
-
-       return change;
+       if (dapm->component)
+               snd_soc_component_async_complete(dapm->component);
 }
 
 /**
@@ -498,131 +442,40 @@ out:
        return ret;
 }
 
-/* set up initial codec paths */
-static void dapm_set_path_status(struct snd_soc_dapm_widget *w,
-       struct snd_soc_dapm_path *p, int i)
+/* connect mux widget to its interconnecting audio paths */
+static int dapm_connect_mux(struct snd_soc_dapm_context *dapm,
+       struct snd_soc_dapm_widget *src, struct snd_soc_dapm_widget *dest,
+       struct snd_soc_dapm_path *path, const char *control_name,
+       const struct snd_kcontrol_new *kcontrol)
 {
-       switch (w->id) {
-       case snd_soc_dapm_switch:
-       case snd_soc_dapm_mixer:
-       case snd_soc_dapm_mixer_named_ctl: {
-               int val;
-               struct soc_mixer_control *mc = (struct soc_mixer_control *)
-                       w->kcontrol_news[i].private_value;
-               int reg = mc->reg;
-               unsigned int shift = mc->shift;
-               int max = mc->max;
-               unsigned int mask = (1 << fls(max)) - 1;
-               unsigned int invert = mc->invert;
-
-               if (reg != SND_SOC_NOPM) {
-                       soc_widget_read(w, reg, &val);
-                       val = (val >> shift) & mask;
-                       if (invert)
-                               val = max - val;
-                       p->connect = !!val;
-               } else {
-                       p->connect = 0;
-               }
-
-       }
-       break;
-       case snd_soc_dapm_mux: {
-               struct soc_enum *e = (struct soc_enum *)
-                       w->kcontrol_news[i].private_value;
-               int val, item;
-
-               soc_widget_read(w, e->reg, &val);
-               item = (val >> e->shift_l) & e->mask;
-
-               if (item < e->max && !strcmp(p->name, e->texts[item]))
-                       p->connect = 1;
-               else
-                       p->connect = 0;
-       }
-       break;
-       case snd_soc_dapm_virt_mux: {
-               struct soc_enum *e = (struct soc_enum *)
-                       w->kcontrol_news[i].private_value;
+       struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
+       unsigned int val, item;
+       int i;
 
-               p->connect = 0;
+       if (e->reg != SND_SOC_NOPM) {
+               soc_widget_read(dest, e->reg, &val);
+               val = (val >> e->shift_l) & e->mask;
+               item = snd_soc_enum_val_to_item(e, val);
+       } else {
                /* since a virtual mux has no backing registers to
                 * decide which path to connect, it will try to match
                 * with the first enumeration.  This is to ensure
                 * that the default mux choice (the first) will be
                 * correctly powered up during initialization.
                 */
-               if (!strcmp(p->name, e->texts[0]))
-                       p->connect = 1;
+               item = 0;
        }
-       break;
-       case snd_soc_dapm_value_mux: {
-               struct soc_enum *e = (struct soc_enum *)
-                       w->kcontrol_news[i].private_value;
-               int val, item;
 
-               soc_widget_read(w, e->reg, &val);
-               val = (val >> e->shift_l) & e->mask;
-               for (item = 0; item < e->max; item++) {
-                       if (val == e->values[item])
-                               break;
-               }
-
-               if (item < e->max && !strcmp(p->name, e->texts[item]))
-                       p->connect = 1;
-               else
-                       p->connect = 0;
-       }
-       break;
-       /* does not affect routing - always connected */
-       case snd_soc_dapm_pga:
-       case snd_soc_dapm_out_drv:
-       case snd_soc_dapm_output:
-       case snd_soc_dapm_adc:
-       case snd_soc_dapm_input:
-       case snd_soc_dapm_siggen:
-       case snd_soc_dapm_dac:
-       case snd_soc_dapm_micbias:
-       case snd_soc_dapm_vmid:
-       case snd_soc_dapm_supply:
-       case snd_soc_dapm_regulator_supply:
-       case snd_soc_dapm_clock_supply:
-       case snd_soc_dapm_aif_in:
-       case snd_soc_dapm_aif_out:
-       case snd_soc_dapm_dai_in:
-       case snd_soc_dapm_dai_out:
-       case snd_soc_dapm_hp:
-       case snd_soc_dapm_mic:
-       case snd_soc_dapm_spk:
-       case snd_soc_dapm_line:
-       case snd_soc_dapm_dai_link:
-       case snd_soc_dapm_kcontrol:
-               p->connect = 1;
-       break;
-       /* does affect routing - dynamically connected */
-       case snd_soc_dapm_pre:
-       case snd_soc_dapm_post:
-               p->connect = 0;
-       break;
-       }
-}
-
-/* connect mux widget to its interconnecting audio paths */
-static int dapm_connect_mux(struct snd_soc_dapm_context *dapm,
-       struct snd_soc_dapm_widget *src, struct snd_soc_dapm_widget *dest,
-       struct snd_soc_dapm_path *path, const char *control_name,
-       const struct snd_kcontrol_new *kcontrol)
-{
-       struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
-       int i;
-
-       for (i = 0; i < e->max; i++) {
+       for (i = 0; i < e->items; i++) {
                if (!(strcmp(control_name, e->texts[i]))) {
                        list_add(&path->list, &dapm->card->paths);
                        list_add(&path->list_sink, &dest->sources);
                        list_add(&path->list_source, &src->sinks);
                        path->name = (char*)e->texts[i];
-                       dapm_set_path_status(dest, path, 0);
+                       if (i == item)
+                               path->connect = 1;
+                       else
+                               path->connect = 0;
                        return 0;
                }
        }
@@ -630,6 +483,30 @@ static int dapm_connect_mux(struct snd_soc_dapm_context *dapm,
        return -ENODEV;
 }
 
+/* set up initial codec paths */
+static void dapm_set_mixer_path_status(struct snd_soc_dapm_widget *w,
+       struct snd_soc_dapm_path *p, int i)
+{
+       struct soc_mixer_control *mc = (struct soc_mixer_control *)
+               w->kcontrol_news[i].private_value;
+       unsigned int reg = mc->reg;
+       unsigned int shift = mc->shift;
+       unsigned int max = mc->max;
+       unsigned int mask = (1 << fls(max)) - 1;
+       unsigned int invert = mc->invert;
+       unsigned int val;
+
+       if (reg != SND_SOC_NOPM) {
+               soc_widget_read(w, reg, &val);
+               val = (val >> shift) & mask;
+               if (invert)
+                       val = max - val;
+               p->connect = !!val;
+       } else {
+               p->connect = 0;
+       }
+}
+
 /* connect mixer widget to its interconnecting audio paths */
 static int dapm_connect_mixer(struct snd_soc_dapm_context *dapm,
        struct snd_soc_dapm_widget *src, struct snd_soc_dapm_widget *dest,
@@ -644,7 +521,7 @@ static int dapm_connect_mixer(struct snd_soc_dapm_context *dapm,
                        list_add(&path->list_sink, &dest->sources);
                        list_add(&path->list_source, &src->sinks);
                        path->name = dest->kcontrol_news[i].name;
-                       dapm_set_path_status(dest, path, i);
+                       dapm_set_mixer_path_status(dest, path, i);
                        return 0;
                }
        }
@@ -723,8 +600,6 @@ static int dapm_create_or_share_mixmux_kcontrol(struct snd_soc_dapm_widget *w,
                                kcname_in_long_name = true;
                                break;
                        case snd_soc_dapm_mux:
-                       case snd_soc_dapm_virt_mux:
-                       case snd_soc_dapm_value_mux:
                                wname_in_long_name = true;
                                kcname_in_long_name = false;
                                break;
@@ -1183,26 +1058,6 @@ int snd_soc_dapm_dai_get_connected_widgets(struct snd_soc_dai *dai, int stream,
        return paths;
 }
 
-/*
- * Handler for generic register modifier widget.
- */
-int dapm_reg_event(struct snd_soc_dapm_widget *w,
-                  struct snd_kcontrol *kcontrol, int event)
-{
-       unsigned int val;
-
-       if (SND_SOC_DAPM_EVENT_ON(event))
-               val = w->on_val;
-       else
-               val = w->off_val;
-
-       soc_widget_update_bits_locked(w, -(w->reg + 1),
-                           w->mask << w->shift, val << w->shift);
-
-       return 0;
-}
-EXPORT_SYMBOL_GPL(dapm_reg_event);
-
 /*
  * Handler for regulator supply widget.
  */
@@ -1492,7 +1347,7 @@ static void dapm_seq_run_coalesced(struct snd_soc_card *card,
                        "pop test : Applying 0x%x/0x%x to %x in %dms\n",
                        value, mask, reg, card->pop_time);
                pop_wait(card->pop_time);
-               soc_widget_update_bits_locked(w, reg, mask, value);
+               soc_widget_update_bits(w, reg, mask, value);
        }
 
        list_for_each_entry(w, pending, power_list) {
@@ -1638,8 +1493,7 @@ static void dapm_widget_update(struct snd_soc_card *card)
        if (!w)
                return;
 
-       ret = soc_widget_update_bits_locked(w, update->reg, update->mask,
-                                 update->val);
+       ret = soc_widget_update_bits(w, update->reg, update->mask, update->val);
        if (ret < 0)
                dev_err(w->dapm->dev, "ASoC: %s DAPM update failed: %d\n",
                        w->name, ret);
@@ -1823,6 +1677,8 @@ static int dapm_power_widgets(struct snd_soc_card *card, int event)
        ASYNC_DOMAIN_EXCLUSIVE(async_domain);
        enum snd_soc_bias_level bias;
 
+       lockdep_assert_held(&card->dapm_mutex);
+
        trace_snd_soc_dapm_start(card);
 
        list_for_each_entry(d, &card->dapm_list, list) {
@@ -1897,10 +1753,14 @@ static int dapm_power_widgets(struct snd_soc_card *card, int event)
 
        trace_snd_soc_dapm_walk_done(card);
 
-       /* Run all the bias changes in parallel */
-       list_for_each_entry(d, &card->dapm_list, list)
-               async_schedule_domain(dapm_pre_sequence_async, d,
-                                       &async_domain);
+       /* Run card bias changes at first */
+       dapm_pre_sequence_async(&card->dapm, 0);
+       /* Run other bias changes in parallel */
+       list_for_each_entry(d, &card->dapm_list, list) {
+               if (d != &card->dapm)
+                       async_schedule_domain(dapm_pre_sequence_async, d,
+                                               &async_domain);
+       }
        async_synchronize_full_domain(&async_domain);
 
        list_for_each_entry(w, &down_list, power_list) {
@@ -1920,10 +1780,14 @@ static int dapm_power_widgets(struct snd_soc_card *card, int event)
        dapm_seq_run(card, &up_list, event, true);
 
        /* Run all the bias changes in parallel */
-       list_for_each_entry(d, &card->dapm_list, list)
-               async_schedule_domain(dapm_post_sequence_async, d,
-                                       &async_domain);
+       list_for_each_entry(d, &card->dapm_list, list) {
+               if (d != &card->dapm)
+                       async_schedule_domain(dapm_post_sequence_async, d,
+                                               &async_domain);
+       }
        async_synchronize_full_domain(&async_domain);
+       /* Run card bias changes at last */
+       dapm_post_sequence_async(&card->dapm, 0);
 
        /* do we need to notify any clients that DAPM event is complete */
        list_for_each_entry(d, &card->dapm_list, list) {
@@ -2110,6 +1974,8 @@ static int soc_dapm_mux_update_power(struct snd_soc_card *card,
        struct snd_soc_dapm_path *path;
        int found = 0;
 
+       lockdep_assert_held(&card->dapm_mutex);
+
        /* find dapm widget path assoc with kcontrol */
        dapm_kcontrol_for_each_path(path, kcontrol) {
                if (!path->name || !e->texts[mux])
@@ -2160,6 +2026,8 @@ static int soc_dapm_mixer_update_power(struct snd_soc_card *card,
        struct snd_soc_dapm_path *path;
        int found = 0;
 
+       lockdep_assert_held(&card->dapm_mutex);
+
        /* find dapm widget path assoc with kcontrol */
        dapm_kcontrol_for_each_path(path, kcontrol) {
                found = 1;
@@ -2325,6 +2193,8 @@ static int snd_soc_dapm_set_pin(struct snd_soc_dapm_context *dapm,
 {
        struct snd_soc_dapm_widget *w = dapm_find_widget(dapm, pin, true);
 
+       dapm_assert_locked(dapm);
+
        if (!w) {
                dev_err(dapm->dev, "ASoC: DAPM unknown pin %s\n", pin);
                return -EINVAL;
@@ -2341,18 +2211,18 @@ static int snd_soc_dapm_set_pin(struct snd_soc_dapm_context *dapm,
 }
 
 /**
- * snd_soc_dapm_sync - scan and power dapm paths
+ * snd_soc_dapm_sync_unlocked - scan and power dapm paths
  * @dapm: DAPM context
  *
  * Walks all dapm audio paths and powers widgets according to their
  * stream or path usage.
  *
+ * Requires external locking.
+ *
  * Returns 0 for success.
  */
-int snd_soc_dapm_sync(struct snd_soc_dapm_context *dapm)
+int snd_soc_dapm_sync_unlocked(struct snd_soc_dapm_context *dapm)
 {
-       int ret;
-
        /*
         * Suppress early reports (eg, jacks syncing their state) to avoid
         * silly DAPM runs during card startup.
@@ -2360,8 +2230,25 @@ int snd_soc_dapm_sync(struct snd_soc_dapm_context *dapm)
        if (!dapm->card || !dapm->card->instantiated)
                return 0;
 
+       return dapm_power_widgets(dapm->card, SND_SOC_DAPM_STREAM_NOP);
+}
+EXPORT_SYMBOL_GPL(snd_soc_dapm_sync_unlocked);
+
+/**
+ * snd_soc_dapm_sync - scan and power dapm paths
+ * @dapm: DAPM context
+ *
+ * Walks all dapm audio paths and powers widgets according to their
+ * stream or path usage.
+ *
+ * Returns 0 for success.
+ */
+int snd_soc_dapm_sync(struct snd_soc_dapm_context *dapm)
+{
+       int ret;
+
        mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
-       ret = dapm_power_widgets(dapm->card, SND_SOC_DAPM_STREAM_NOP);
+       ret = snd_soc_dapm_sync_unlocked(dapm);
        mutex_unlock(&dapm->card->dapm_mutex);
        return ret;
 }
@@ -2444,8 +2331,6 @@ static int snd_soc_dapm_add_path(struct snd_soc_dapm_context *dapm,
                path->connect = 1;
                return 0;
        case snd_soc_dapm_mux:
-       case snd_soc_dapm_virt_mux:
-       case snd_soc_dapm_value_mux:
                ret = dapm_connect_mux(dapm, wsource, wsink, path, control,
                        &wsink->kcontrol_news[0]);
                if (ret != 0)
@@ -2476,8 +2361,7 @@ err:
 }
 
 static int snd_soc_dapm_add_route(struct snd_soc_dapm_context *dapm,
-                                 const struct snd_soc_dapm_route *route,
-                                 unsigned int is_prefixed)
+                                 const struct snd_soc_dapm_route *route)
 {
        struct snd_soc_dapm_widget *wsource = NULL, *wsink = NULL, *w;
        struct snd_soc_dapm_widget *wtsource = NULL, *wtsink = NULL;
@@ -2487,7 +2371,7 @@ static int snd_soc_dapm_add_route(struct snd_soc_dapm_context *dapm,
        char prefixed_source[80];
        int ret;
 
-       if (dapm->codec && dapm->codec->name_prefix && !is_prefixed) {
+       if (dapm->codec && dapm->codec->name_prefix) {
                snprintf(prefixed_sink, sizeof(prefixed_sink), "%s %s",
                         dapm->codec->name_prefix, route->sink);
                sink = prefixed_sink;
@@ -2615,7 +2499,7 @@ int snd_soc_dapm_add_routes(struct snd_soc_dapm_context *dapm,
 
        mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_INIT);
        for (i = 0; i < num; i++) {
-               r = snd_soc_dapm_add_route(dapm, route, false);
+               r = snd_soc_dapm_add_route(dapm, route);
                if (r < 0) {
                        dev_err(dapm->dev, "ASoC: Failed to add route %s -> %s -> %s\n",
                                route->source,
@@ -2772,8 +2656,6 @@ int snd_soc_dapm_new_widgets(struct snd_soc_card *card)
                        dapm_new_mixer(w);
                        break;
                case snd_soc_dapm_mux:
-               case snd_soc_dapm_virt_mux:
-               case snd_soc_dapm_value_mux:
                        dapm_new_mux(w);
                        break;
                case snd_soc_dapm_pga:
@@ -2889,22 +2771,19 @@ int snd_soc_dapm_put_volsw(struct snd_kcontrol *kcontrol,
        mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
 
        change = dapm_kcontrol_set_value(kcontrol, val);
-
-       if (reg != SND_SOC_NOPM) {
-               mask = mask << shift;
-               val = val << shift;
-
-               change = snd_soc_test_bits(codec, reg, mask, val);
-       }
-
        if (change) {
                if (reg != SND_SOC_NOPM) {
-                       update.kcontrol = kcontrol;
-                       update.reg = reg;
-                       update.mask = mask;
-                       update.val = val;
+                       mask = mask << shift;
+                       val = val << shift;
+
+                       if (snd_soc_test_bits(codec, reg, mask, val)) {
+                               update.kcontrol = kcontrol;
+                               update.reg = reg;
+                               update.mask = mask;
+                               update.val = val;
+                               card->update = &update;
+                       }
 
-                       card->update = &update;
                }
 
                ret = soc_dapm_mixer_update_power(card, kcontrol, connect);
@@ -2935,213 +2814,75 @@ int snd_soc_dapm_get_enum_double(struct snd_kcontrol *kcontrol,
 {
        struct snd_soc_codec *codec = snd_soc_dapm_kcontrol_codec(kcontrol);
        struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
-       unsigned int val;
-
-       val = snd_soc_read(codec, e->reg);
-       ucontrol->value.enumerated.item[0] = (val >> e->shift_l) & e->mask;
-       if (e->shift_l != e->shift_r)
-               ucontrol->value.enumerated.item[1] =
-                       (val >> e->shift_r) & e->mask;
-
-       return 0;
-}
-EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double);
-
-/**
- * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
- * @kcontrol: mixer control
- * @ucontrol: control element information
- *
- * Callback to set the value of a dapm enumerated double mixer control.
- *
- * Returns 0 for success.
- */
-int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,
-       struct snd_ctl_elem_value *ucontrol)
-{
-       struct snd_soc_codec *codec = snd_soc_dapm_kcontrol_codec(kcontrol);
-       struct snd_soc_card *card = codec->card;
-       struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
-       unsigned int val, mux, change;
-       unsigned int mask;
-       struct snd_soc_dapm_update update;
-       int ret = 0;
-
-       if (ucontrol->value.enumerated.item[0] > e->max - 1)
-               return -EINVAL;
-       mux = ucontrol->value.enumerated.item[0];
-       val = mux << e->shift_l;
-       mask = e->mask << e->shift_l;
-       if (e->shift_l != e->shift_r) {
-               if (ucontrol->value.enumerated.item[1] > e->max - 1)
-                       return -EINVAL;
-               val |= ucontrol->value.enumerated.item[1] << e->shift_r;
-               mask |= e->mask << e->shift_r;
-       }
-
-       mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
-
-       change = snd_soc_test_bits(codec, e->reg, mask, val);
-       if (change) {
-               update.kcontrol = kcontrol;
-               update.reg = e->reg;
-               update.mask = mask;
-               update.val = val;
-               card->update = &update;
-
-               ret = soc_dapm_mux_update_power(card, kcontrol, mux, e);
-
-               card->update = NULL;
-       }
-
-       mutex_unlock(&card->dapm_mutex);
-
-       if (ret > 0)
-               soc_dpcm_runtime_update(card);
-
-       return change;
-}
-EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double);
-
-/**
- * snd_soc_dapm_get_enum_virt - Get virtual DAPM mux
- * @kcontrol: mixer control
- * @ucontrol: control element information
- *
- * Returns 0 for success.
- */
-int snd_soc_dapm_get_enum_virt(struct snd_kcontrol *kcontrol,
-                              struct snd_ctl_elem_value *ucontrol)
-{
-       ucontrol->value.enumerated.item[0] = dapm_kcontrol_get_value(kcontrol);
-       return 0;
-}
-EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_virt);
-
-/**
- * snd_soc_dapm_put_enum_virt - Set virtual DAPM mux
- * @kcontrol: mixer control
- * @ucontrol: control element information
- *
- * Returns 0 for success.
- */
-int snd_soc_dapm_put_enum_virt(struct snd_kcontrol *kcontrol,
-                              struct snd_ctl_elem_value *ucontrol)
-{
-       struct snd_soc_codec *codec = snd_soc_dapm_kcontrol_codec(kcontrol);
-       struct snd_soc_card *card = codec->card;
-       unsigned int value;
-       struct soc_enum *e =
-               (struct soc_enum *)kcontrol->private_value;
-       int change;
-       int ret = 0;
-
-       if (ucontrol->value.enumerated.item[0] >= e->max)
-               return -EINVAL;
-
-       mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
-
-       value = ucontrol->value.enumerated.item[0];
-       change = dapm_kcontrol_set_value(kcontrol, value);
-       if (change)
-               ret = soc_dapm_mux_update_power(card, kcontrol, value, e);
-
-       mutex_unlock(&card->dapm_mutex);
+       unsigned int reg_val, val;
 
-       if (ret > 0)
-               soc_dpcm_runtime_update(card);
-
-       return change;
-}
-EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_virt);
-
-/**
- * snd_soc_dapm_get_value_enum_double - dapm semi enumerated double mixer get
- *                                     callback
- * @kcontrol: mixer control
- * @ucontrol: control element information
- *
- * Callback to get the value of a dapm semi enumerated double mixer control.
- *
- * Semi enumerated mixer: the enumerated items are referred as values. Can be
- * used for handling bitfield coded enumeration for example.
- *
- * Returns 0 for success.
- */
-int snd_soc_dapm_get_value_enum_double(struct snd_kcontrol *kcontrol,
-       struct snd_ctl_elem_value *ucontrol)
-{
-       struct snd_soc_codec *codec = snd_soc_dapm_kcontrol_codec(kcontrol);
-       struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
-       unsigned int reg_val, val, mux;
+       if (e->reg != SND_SOC_NOPM)
+               reg_val = snd_soc_read(codec, e->reg);
+       else
+               reg_val = dapm_kcontrol_get_value(kcontrol);
 
-       reg_val = snd_soc_read(codec, e->reg);
        val = (reg_val >> e->shift_l) & e->mask;
-       for (mux = 0; mux < e->max; mux++) {
-               if (val == e->values[mux])
-                       break;
-       }
-       ucontrol->value.enumerated.item[0] = mux;
+       ucontrol->value.enumerated.item[0] = snd_soc_enum_val_to_item(e, val);
        if (e->shift_l != e->shift_r) {
                val = (reg_val >> e->shift_r) & e->mask;
-               for (mux = 0; mux < e->max; mux++) {
-                       if (val == e->values[mux])
-                               break;
-               }
-               ucontrol->value.enumerated.item[1] = mux;
+               val = snd_soc_enum_val_to_item(e, val);
+               ucontrol->value.enumerated.item[1] = val;
        }
 
        return 0;
 }
-EXPORT_SYMBOL_GPL(snd_soc_dapm_get_value_enum_double);
+EXPORT_SYMBOL_GPL(snd_soc_dapm_get_enum_double);
 
 /**
- * snd_soc_dapm_put_value_enum_double - dapm semi enumerated double mixer set
- *                                     callback
+ * snd_soc_dapm_put_enum_double - dapm enumerated double mixer set callback
  * @kcontrol: mixer control
  * @ucontrol: control element information
  *
- * Callback to set the value of a dapm semi enumerated double mixer control.
- *
- * Semi enumerated mixer: the enumerated items are referred as values. Can be
- * used for handling bitfield coded enumeration for example.
+ * Callback to set the value of a dapm enumerated double mixer control.
  *
  * Returns 0 for success.
  */
-int snd_soc_dapm_put_value_enum_double(struct snd_kcontrol *kcontrol,
+int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,
        struct snd_ctl_elem_value *ucontrol)
 {
        struct snd_soc_codec *codec = snd_soc_dapm_kcontrol_codec(kcontrol);
        struct snd_soc_card *card = codec->card;
        struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
-       unsigned int val, mux, change;
+       unsigned int *item = ucontrol->value.enumerated.item;
+       unsigned int val, change;
        unsigned int mask;
        struct snd_soc_dapm_update update;
        int ret = 0;
 
-       if (ucontrol->value.enumerated.item[0] > e->max - 1)
+       if (item[0] >= e->items)
                return -EINVAL;
-       mux = ucontrol->value.enumerated.item[0];
-       val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l;
+
+       val = snd_soc_enum_item_to_val(e, item[0]) << e->shift_l;
        mask = e->mask << e->shift_l;
        if (e->shift_l != e->shift_r) {
-               if (ucontrol->value.enumerated.item[1] > e->max - 1)
+               if (item[1] > e->items)
                        return -EINVAL;
-               val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r;
+               val |= snd_soc_enum_item_to_val(e, item[1]) << e->shift_l;
                mask |= e->mask << e->shift_r;
        }
 
        mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
 
-       change = snd_soc_test_bits(codec, e->reg, mask, val);
+       if (e->reg != SND_SOC_NOPM)
+               change = snd_soc_test_bits(codec, e->reg, mask, val);
+       else
+               change = dapm_kcontrol_set_value(kcontrol, val);
+
        if (change) {
-               update.kcontrol = kcontrol;
-               update.reg = e->reg;
-               update.mask = mask;
-               update.val = val;
-               card->update = &update;
+               if (e->reg != SND_SOC_NOPM) {
+                       update.kcontrol = kcontrol;
+                       update.reg = e->reg;
+                       update.mask = mask;
+                       update.val = val;
+                       card->update = &update;
+               }
 
-               ret = soc_dapm_mux_update_power(card, kcontrol, mux, e);
+               ret = soc_dapm_mux_update_power(card, kcontrol, item[0], e);
 
                card->update = NULL;
        }
@@ -3153,7 +2894,7 @@ int snd_soc_dapm_put_value_enum_double(struct snd_kcontrol *kcontrol,
 
        return change;
 }
-EXPORT_SYMBOL_GPL(snd_soc_dapm_put_value_enum_double);
+EXPORT_SYMBOL_GPL(snd_soc_dapm_put_enum_double);
 
 /**
  * snd_soc_dapm_info_pin_switch - Info for a pin switch
@@ -3283,8 +3024,6 @@ snd_soc_dapm_new_control(struct snd_soc_dapm_context *dapm,
                w->power_check = dapm_generic_check_power;
                break;
        case snd_soc_dapm_mux:
-       case snd_soc_dapm_virt_mux:
-       case snd_soc_dapm_value_mux:
                w->power_check = dapm_generic_check_power;
                break;
        case snd_soc_dapm_dai_out:
@@ -3483,11 +3222,11 @@ int snd_soc_dapm_new_pcm(struct snd_soc_card *card,
                         struct snd_soc_dapm_widget *source,
                         struct snd_soc_dapm_widget *sink)
 {
-       struct snd_soc_dapm_route routes[2];
        struct snd_soc_dapm_widget template;
        struct snd_soc_dapm_widget *w;
        size_t len;
        char *link_name;
+       int ret;
 
        len = strlen(source->name) + strlen(sink->name) + 2;
        link_name = devm_kzalloc(card->dev, len, GFP_KERNEL);
@@ -3514,15 +3253,10 @@ int snd_soc_dapm_new_pcm(struct snd_soc_card *card,
 
        w->params = params;
 
-       memset(&routes, 0, sizeof(routes));
-
-       routes[0].source = source->name;
-       routes[0].sink = link_name;
-       routes[1].source = link_name;
-       routes[1].sink = sink->name;
-
-       return snd_soc_dapm_add_routes(&card->dapm, routes,
-                                      ARRAY_SIZE(routes));
+       ret = snd_soc_dapm_add_path(&card->dapm, source, w, NULL, NULL);
+       if (ret)
+               return ret;
+       return snd_soc_dapm_add_path(&card->dapm, w, sink, NULL, NULL);
 }
 
 int snd_soc_dapm_new_dai_widgets(struct snd_soc_dapm_context *dapm,
@@ -3580,6 +3314,7 @@ int snd_soc_dapm_new_dai_widgets(struct snd_soc_dapm_context *dapm,
 int snd_soc_dapm_link_dai_widgets(struct snd_soc_card *card)
 {
        struct snd_soc_dapm_widget *dai_w, *w;
+       struct snd_soc_dapm_widget *src, *sink;
        struct snd_soc_dai *dai;
 
        /* For each DAI widget... */
@@ -3610,25 +3345,15 @@ int snd_soc_dapm_link_dai_widgets(struct snd_soc_card *card)
                        if (!w->sname || !strstr(w->sname, dai_w->name))
                                continue;
 
-                       if (dai->driver->playback.stream_name &&
-                           strstr(w->sname,
-                                  dai->driver->playback.stream_name)) {
-                               dev_dbg(dai->dev, "%s -> %s\n",
-                                        dai->playback_widget->name, w->name);
-
-                               snd_soc_dapm_add_path(w->dapm,
-                                       dai->playback_widget, w, NULL, NULL);
-                       }
-
-                       if (dai->driver->capture.stream_name &&
-                           strstr(w->sname,
-                                  dai->driver->capture.stream_name)) {
-                               dev_dbg(dai->dev, "%s -> %s\n",
-                                       w->name, dai->capture_widget->name);
-
-                               snd_soc_dapm_add_path(w->dapm, w,
-                                       dai->capture_widget, NULL, NULL);
+                       if (dai_w->id == snd_soc_dapm_dai_in) {
+                               src = dai_w;
+                               sink = w;
+                       } else {
+                               src = w;
+                               sink = dai_w;
                        }
+                       dev_dbg(dai->dev, "%s -> %s\n", src->name, sink->name);
+                       snd_soc_dapm_add_path(w->dapm, src, sink, NULL, NULL);
                }
        }
 
@@ -3638,12 +3363,10 @@ int snd_soc_dapm_link_dai_widgets(struct snd_soc_card *card)
 void snd_soc_dapm_connect_dai_link_widgets(struct snd_soc_card *card)
 {
        struct snd_soc_pcm_runtime *rtd = card->rtd;
+       struct snd_soc_dapm_widget *sink, *source;
        struct snd_soc_dai *cpu_dai, *codec_dai;
-       struct snd_soc_dapm_route r;
        int i;
 
-       memset(&r, 0, sizeof(r));
-
        /* for each BE DAI link... */
        for (i = 0; i < card->num_rtd; i++) {
                rtd = &card->rtd[i];
@@ -3661,55 +3384,49 @@ void snd_soc_dapm_connect_dai_link_widgets(struct snd_soc_card *card)
 
                /* connect BE DAI playback if widgets are valid */
                if (codec_dai->playback_widget && cpu_dai->playback_widget) {
-                       r.source = cpu_dai->playback_widget->name;
-                       r.sink = codec_dai->playback_widget->name;
+                       source = cpu_dai->playback_widget;
+                       sink = codec_dai->playback_widget;
                        dev_dbg(rtd->dev, "connected DAI link %s:%s -> %s:%s\n",
-                               cpu_dai->codec->name, r.source,
-                               codec_dai->platform->name, r.sink);
+                               cpu_dai->codec->name, source->name,
+                               codec_dai->platform->name, sink->name);
 
-                       snd_soc_dapm_add_route(&card->dapm, &r, true);
+                       snd_soc_dapm_add_path(&card->dapm, source, sink,
+                               NULL, NULL);
                }
 
                /* connect BE DAI capture if widgets are valid */
                if (codec_dai->capture_widget && cpu_dai->capture_widget) {
-                       r.source = codec_dai->capture_widget->name;
-                       r.sink = cpu_dai->capture_widget->name;
+                       source = codec_dai->capture_widget;
+                       sink = cpu_dai->capture_widget;
                        dev_dbg(rtd->dev, "connected DAI link %s:%s -> %s:%s\n",
-                               codec_dai->codec->name, r.source,
-                               cpu_dai->platform->name, r.sink);
+                               codec_dai->codec->name, source->name,
+                               cpu_dai->platform->name, sink->name);
 
-                       snd_soc_dapm_add_route(&card->dapm, &r, true);
+                       snd_soc_dapm_add_path(&card->dapm, source, sink,
+                               NULL, NULL);
                }
-
        }
 }
 
-static void soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
+static void soc_dapm_dai_stream_event(struct snd_soc_dai *dai, int stream,
        int event)
 {
+       struct snd_soc_dapm_widget *w;
 
-       struct snd_soc_dapm_widget *w_cpu, *w_codec;
-       struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
-       struct snd_soc_dai *codec_dai = rtd->codec_dai;
-
-       if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
-               w_cpu = cpu_dai->playback_widget;
-               w_codec = codec_dai->playback_widget;
-       } else {
-               w_cpu = cpu_dai->capture_widget;
-               w_codec = codec_dai->capture_widget;
-       }
-
-       if (w_cpu) {
+       if (stream == SNDRV_PCM_STREAM_PLAYBACK)
+               w = dai->playback_widget;
+       else
+               w = dai->capture_widget;
 
-               dapm_mark_dirty(w_cpu, "stream event");
+       if (w) {
+               dapm_mark_dirty(w, "stream event");
 
                switch (event) {
                case SND_SOC_DAPM_STREAM_START:
-                       w_cpu->active = 1;
+                       w->active = 1;
                        break;
                case SND_SOC_DAPM_STREAM_STOP:
-                       w_cpu->active = 0;
+                       w->active = 0;
                        break;
                case SND_SOC_DAPM_STREAM_SUSPEND:
                case SND_SOC_DAPM_STREAM_RESUME:
@@ -3718,25 +3435,13 @@ static void soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
                        break;
                }
        }
+}
 
-       if (w_codec) {
-
-               dapm_mark_dirty(w_codec, "stream event");
-
-               switch (event) {
-               case SND_SOC_DAPM_STREAM_START:
-                       w_codec->active = 1;
-                       break;
-               case SND_SOC_DAPM_STREAM_STOP:
-                       w_codec->active = 0;
-                       break;
-               case SND_SOC_DAPM_STREAM_SUSPEND:
-               case SND_SOC_DAPM_STREAM_RESUME:
-               case SND_SOC_DAPM_STREAM_PAUSE_PUSH:
-               case SND_SOC_DAPM_STREAM_PAUSE_RELEASE:
-                       break;
-               }
-       }
+static void soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int stream,
+       int event)
+{
+       soc_dapm_dai_stream_event(rtd->cpu_dai, stream, event);
+       soc_dapm_dai_stream_event(rtd->codec_dai, stream, event);
 
        dapm_power_widgets(rtd->card, event);
 }
@@ -4098,7 +3803,7 @@ void snd_soc_dapm_free(struct snd_soc_dapm_context *dapm)
 }
 EXPORT_SYMBOL_GPL(snd_soc_dapm_free);
 
-static void soc_dapm_shutdown_codec(struct snd_soc_dapm_context *dapm)
+static void soc_dapm_shutdown_dapm(struct snd_soc_dapm_context *dapm)
 {
        struct snd_soc_card *card = dapm->card;
        struct snd_soc_dapm_widget *w;
@@ -4138,14 +3843,21 @@ static void soc_dapm_shutdown_codec(struct snd_soc_dapm_context *dapm)
  */
 void snd_soc_dapm_shutdown(struct snd_soc_card *card)
 {
-       struct snd_soc_codec *codec;
+       struct snd_soc_dapm_context *dapm;
 
-       list_for_each_entry(codec, &card->codec_dev_list, card_list) {
-               soc_dapm_shutdown_codec(&codec->dapm);
-               if (codec->dapm.bias_level == SND_SOC_BIAS_STANDBY)
-                       snd_soc_dapm_set_bias_level(&codec->dapm,
-                                                   SND_SOC_BIAS_OFF);
+       list_for_each_entry(dapm, &card->dapm_list, list) {
+               if (dapm != &card->dapm) {
+                       soc_dapm_shutdown_dapm(dapm);
+                       if (dapm->bias_level == SND_SOC_BIAS_STANDBY)
+                               snd_soc_dapm_set_bias_level(dapm,
+                                                           SND_SOC_BIAS_OFF);
+               }
        }
+
+       soc_dapm_shutdown_dapm(&card->dapm);
+       if (card->dapm.bias_level == SND_SOC_BIAS_STANDBY)
+               snd_soc_dapm_set_bias_level(&card->dapm,
+                                           SND_SOC_BIAS_OFF);
 }
 
 /* Module information */