alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 1/5] ASoC: Correct typo in SOC_VALUE_ENUM_SINGLE macro
@ 2015-05-01 11:37 Charles Keepax
  2015-05-01 11:37 ` [PATCH v3 2/5] ASoC: dapm: Remove local OOM error message Charles Keepax
                   ` (5 more replies)
  0 siblings, 6 replies; 12+ messages in thread
From: Charles Keepax @ 2015-05-01 11:37 UTC (permalink / raw)
  To: broonie; +Cc: alsa-devel, lars, lgirdwood, patches

xnitmes is clearly intended to be xnitems, but all other macros just
refer to this as xitems, so change it to that.

Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
---

Changes since v2:
 - Use snd_soc_enum_item_to_val to get zero value from mux to account for
   non-value enums
 - Improve handling in snd_soc_dapm_put_enum_double of the situation
   where the register and widget views of the control values don't match

Thanks,
Charles

 include/sound/soc.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/sound/soc.h b/include/sound/soc.h
index a73d855..45cfd69 100644
--- a/include/sound/soc.h
+++ b/include/sound/soc.h
@@ -190,8 +190,8 @@
 #define SOC_VALUE_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xmask, xitems, xtexts, xvalues) \
 {	.reg = xreg, .shift_l = xshift_l, .shift_r = xshift_r, \
 	.mask = xmask, .items = xitems, .texts = xtexts, .values = xvalues}
-#define SOC_VALUE_ENUM_SINGLE(xreg, xshift, xmask, xnitmes, xtexts, xvalues) \
-	SOC_VALUE_ENUM_DOUBLE(xreg, xshift, xshift, xmask, xnitmes, xtexts, xvalues)
+#define SOC_VALUE_ENUM_SINGLE(xreg, xshift, xmask, xitems, xtexts, xvalues) \
+	SOC_VALUE_ENUM_DOUBLE(xreg, xshift, xshift, xmask, xitems, xtexts, xvalues)
 #define SOC_ENUM_SINGLE_VIRT(xitems, xtexts) \
 	SOC_ENUM_SINGLE(SND_SOC_NOPM, 0, xitems, xtexts)
 #define SOC_ENUM(xname, xenum) \
-- 
1.7.2.5

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

* [PATCH v3 2/5] ASoC: dapm: Remove local OOM error message
  2015-05-01 11:37 [PATCH v3 1/5] ASoC: Correct typo in SOC_VALUE_ENUM_SINGLE macro Charles Keepax
@ 2015-05-01 11:37 ` Charles Keepax
  2015-05-04 12:04   ` Mark Brown
  2015-05-01 11:37 ` [PATCH v3 3/5] ASoC: dapm: Append "Autodisable" to autodisable widget names Charles Keepax
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 12+ messages in thread
From: Charles Keepax @ 2015-05-01 11:37 UTC (permalink / raw)
  To: broonie; +Cc: alsa-devel, lars, lgirdwood, patches

The memory subsystem is pretty chatty on failure no need to have local
OOM messages as well.

Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
---
 sound/soc/soc-dapm.c |    6 +-----
 1 files changed, 1 insertions(+), 5 deletions(-)

diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c
index 79b9478..beb48b6 100644
--- a/sound/soc/soc-dapm.c
+++ b/sound/soc/soc-dapm.c
@@ -310,12 +310,8 @@ static int dapm_kcontrol_data_alloc(struct snd_soc_dapm_widget *widget,
 	struct soc_mixer_control *mc;
 
 	data = kzalloc(sizeof(*data), GFP_KERNEL);
-	if (!data) {
-		dev_err(widget->dapm->dev,
-				"ASoC: can't allocate kcontrol data for %s\n",
-				widget->name);
+	if (!data)
 		return -ENOMEM;
-	}
 
 	INIT_LIST_HEAD(&data->paths);
 
-- 
1.7.2.5

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

* [PATCH v3 3/5] ASoC: dapm: Append "Autodisable" to autodisable widget names
  2015-05-01 11:37 [PATCH v3 1/5] ASoC: Correct typo in SOC_VALUE_ENUM_SINGLE macro Charles Keepax
  2015-05-01 11:37 ` [PATCH v3 2/5] ASoC: dapm: Remove local OOM error message Charles Keepax
@ 2015-05-01 11:37 ` Charles Keepax
  2015-05-04 12:04   ` Mark Brown
  2015-05-01 11:37 ` [PATCH v3 4/5] ASoC: dapm: Add support for autodisable mux controls Charles Keepax
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 12+ messages in thread
From: Charles Keepax @ 2015-05-01 11:37 UTC (permalink / raw)
  To: broonie; +Cc: alsa-devel, lars, lgirdwood, patches

This makes it a little easier to follow what is happening in debugfs.
Additionally is also useful in facilitating work to add autodisable
muxes because the control name is already used for the mux widget and
thus shouldn't be reused for the autodisable widget.

Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
---
 sound/soc/soc-dapm.c |   23 ++++++++++++++++++++---
 1 files changed, 20 insertions(+), 3 deletions(-)

diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c
index beb48b6..a0d97f8 100644
--- a/sound/soc/soc-dapm.c
+++ b/sound/soc/soc-dapm.c
@@ -308,6 +308,8 @@ static int dapm_kcontrol_data_alloc(struct snd_soc_dapm_widget *widget,
 {
 	struct dapm_kcontrol_data *data;
 	struct soc_mixer_control *mc;
+	const char *name;
+	int ret;
 
 	data = kzalloc(sizeof(*data), GFP_KERNEL);
 	if (!data)
@@ -324,6 +326,13 @@ static int dapm_kcontrol_data_alloc(struct snd_soc_dapm_widget *widget,
 		if (mc->autodisable) {
 			struct snd_soc_dapm_widget template;
 
+			name = kasprintf(GFP_KERNEL, "%s %s", kcontrol->id.name,
+					 "Autodisable");
+			if (!name) {
+				ret = -ENOMEM;
+				goto err_data;
+			}
+
 			memset(&template, 0, sizeof(template));
 			template.reg = mc->reg;
 			template.mask = (1 << fls(mc->max)) - 1;
@@ -334,15 +343,15 @@ static int dapm_kcontrol_data_alloc(struct snd_soc_dapm_widget *widget,
 				template.off_val = 0;
 			template.on_val = template.off_val;
 			template.id = snd_soc_dapm_kcontrol;
-			template.name = kcontrol->id.name;
+			template.name = name;
 
 			data->value = template.on_val;
 
 			data->widget = snd_soc_dapm_new_control(widget->dapm,
 				&template);
 			if (!data->widget) {
-				kfree(data);
-				return -ENOMEM;
+				ret = -ENOMEM;
+				goto err_name;
 			}
 		}
 		break;
@@ -353,11 +362,19 @@ static int dapm_kcontrol_data_alloc(struct snd_soc_dapm_widget *widget,
 	kcontrol->private_data = data;
 
 	return 0;
+
+err_name:
+	kfree(name);
+err_data:
+	kfree(data);
+	return ret;
 }
 
 static void dapm_kcontrol_free(struct snd_kcontrol *kctl)
 {
 	struct dapm_kcontrol_data *data = snd_kcontrol_chip(kctl);
+	if (data->widget)
+		kfree(data->widget->name);
 	kfree(data->wlist);
 	kfree(data);
 }
-- 
1.7.2.5

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

* [PATCH v3 4/5] ASoC: dapm: Add support for autodisable mux controls
  2015-05-01 11:37 [PATCH v3 1/5] ASoC: Correct typo in SOC_VALUE_ENUM_SINGLE macro Charles Keepax
  2015-05-01 11:37 ` [PATCH v3 2/5] ASoC: dapm: Remove local OOM error message Charles Keepax
  2015-05-01 11:37 ` [PATCH v3 3/5] ASoC: dapm: Append "Autodisable" to autodisable widget names Charles Keepax
@ 2015-05-01 11:37 ` Charles Keepax
  2015-05-06 16:12   ` Mark Brown
  2015-05-01 11:37 ` [PATCH v3 5/5] ASoC: arizona: Use auto disable muxes for routing Charles Keepax
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 12+ messages in thread
From: Charles Keepax @ 2015-05-01 11:37 UTC (permalink / raw)
  To: broonie; +Cc: alsa-devel, lars, lgirdwood, patches

Commit 57295073b6ac ("ASoC: dapm: Implement mixer input auto-disable")
added support for autodisable controls, controls whose values are only
written to the hardware when their respective widgets are powered up.
But it only added support for controls based on the mixer abstraction.

This patch add support for mux controls (DAPM controls based on the
enum abstraction) to be auto-disabled as well. As each mux can only have
a single control, there is no need to tie the autodisable widget to the
inputs (as is done for the mixer controls) it can be tided directly to
the mux widget itself.

Note that it is assumed that the first entry in a autodisable mux
control will always represent the off state for the mux and is what the
mux will be set to whilst it is disabled.

Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
---
 include/sound/soc.h  |   10 ++++++
 sound/soc/soc-dapm.c |   78 +++++++++++++++++++++++++++++++++++++------------
 2 files changed, 69 insertions(+), 19 deletions(-)

diff --git a/include/sound/soc.h b/include/sound/soc.h
index 45cfd69..28b8ae6 100644
--- a/include/sound/soc.h
+++ b/include/sound/soc.h
@@ -192,6 +192,10 @@
 	.mask = xmask, .items = xitems, .texts = xtexts, .values = xvalues}
 #define SOC_VALUE_ENUM_SINGLE(xreg, xshift, xmask, xitems, xtexts, xvalues) \
 	SOC_VALUE_ENUM_DOUBLE(xreg, xshift, xshift, xmask, xitems, xtexts, xvalues)
+#define SOC_VALUE_ENUM_SINGLE_AUTODISABLE(xreg, xshift, xmask, xitems, xtexts, xvalues) \
+{	.reg = xreg, .shift_l = xshift, .shift_r = xshift, \
+	.mask = xmask, .items = xitems, .texts = xtexts, \
+	.values = xvalues, .autodisable = 1}
 #define SOC_ENUM_SINGLE_VIRT(xitems, xtexts) \
 	SOC_ENUM_SINGLE(SND_SOC_NOPM, 0, xitems, xtexts)
 #define SOC_ENUM(xname, xenum) \
@@ -312,6 +316,11 @@
 							ARRAY_SIZE(xtexts), xtexts, xvalues)
 #define SOC_VALUE_ENUM_SINGLE_DECL(name, xreg, xshift, xmask, xtexts, xvalues) \
 	SOC_VALUE_ENUM_DOUBLE_DECL(name, xreg, xshift, xshift, xmask, xtexts, xvalues)
+
+#define SOC_VALUE_ENUM_SINGLE_AUTODISABLE_DECL(name, xreg, xshift, xmask, xtexts, xvalues) \
+	const struct soc_enum name = SOC_VALUE_ENUM_SINGLE_AUTODISABLE(xreg, \
+		xshift, xmask, ARRAY_SIZE(xtexts), xtexts, xvalues)
+
 #define SOC_ENUM_SINGLE_VIRT_DECL(name, xtexts) \
 	const struct soc_enum name = SOC_ENUM_SINGLE_VIRT(ARRAY_SIZE(xtexts), xtexts)
 
@@ -1200,6 +1209,7 @@ struct soc_enum {
 	unsigned int mask;
 	const char * const *texts;
 	const unsigned int *values;
+	unsigned int autodisable:1;
 };
 
 /**
diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c
index a0d97f8..79e6cf4 100644
--- a/sound/soc/soc-dapm.c
+++ b/sound/soc/soc-dapm.c
@@ -308,6 +308,7 @@ static int dapm_kcontrol_data_alloc(struct snd_soc_dapm_widget *widget,
 {
 	struct dapm_kcontrol_data *data;
 	struct soc_mixer_control *mc;
+	struct soc_enum *e;
 	const char *name;
 	int ret;
 
@@ -355,6 +356,41 @@ static int dapm_kcontrol_data_alloc(struct snd_soc_dapm_widget *widget,
 			}
 		}
 		break;
+	case snd_soc_dapm_mux:
+		e = (struct soc_enum *)kcontrol->private_value;
+
+		if (e->autodisable) {
+			struct snd_soc_dapm_widget template;
+
+			name = kasprintf(GFP_KERNEL, "%s %s", kcontrol->id.name,
+					 "Autodisable");
+			if (!name) {
+				ret = -ENOMEM;
+				goto err_data;
+			}
+
+			memset(&template, 0, sizeof(template));
+			template.reg = e->reg;
+			template.mask = e->mask << e->shift_l;
+			template.shift = e->shift_l;
+			template.off_val = snd_soc_enum_item_to_val(e, 0);
+			template.on_val = template.off_val;
+			template.id = snd_soc_dapm_kcontrol;
+			template.name = name;
+
+			data->value = template.on_val;
+
+			data->widget = snd_soc_dapm_new_control(widget->dapm,
+					&template);
+			if (!data->widget) {
+				ret = -ENOMEM;
+				goto err_name;
+			}
+
+			snd_soc_dapm_add_path(widget->dapm, data->widget,
+					      widget, NULL, NULL);
+		}
+		break;
 	default:
 		break;
 	}
@@ -418,11 +454,6 @@ static void dapm_kcontrol_add_path(const struct snd_kcontrol *kcontrol,
 	struct dapm_kcontrol_data *data = snd_kcontrol_chip(kcontrol);
 
 	list_add_tail(&path->list_kcontrol, &data->paths);
-
-	if (data->widget) {
-		snd_soc_dapm_add_path(data->widget->dapm, data->widget,
-		    path->source, NULL, NULL);
-	}
 }
 
 static bool dapm_kcontrol_is_powered(const struct snd_kcontrol *kcontrol)
@@ -820,6 +851,7 @@ static int dapm_new_mixer(struct snd_soc_dapm_widget *w)
 {
 	int i, ret;
 	struct snd_soc_dapm_path *path;
+	struct dapm_kcontrol_data *data;
 
 	/* add kcontrol */
 	for (i = 0; i < w->num_kcontrols; i++) {
@@ -829,16 +861,20 @@ static int dapm_new_mixer(struct snd_soc_dapm_widget *w)
 			if (path->name != (char *)w->kcontrol_news[i].name)
 				continue;
 
-			if (w->kcontrols[i]) {
-				dapm_kcontrol_add_path(w->kcontrols[i], path);
-				continue;
+			if (!w->kcontrols[i]) {
+				ret = dapm_create_or_share_mixmux_kcontrol(w, i);
+				if (ret < 0)
+					return ret;
 			}
 
-			ret = dapm_create_or_share_mixmux_kcontrol(w, i);
-			if (ret < 0)
-				return ret;
-
 			dapm_kcontrol_add_path(w->kcontrols[i], path);
+
+			data = snd_kcontrol_chip(w->kcontrols[i]);
+			if (data->widget)
+				snd_soc_dapm_add_path(data->widget->dapm,
+						      data->widget,
+						      path->source,
+						      NULL, NULL);
 		}
 	}
 
@@ -2945,16 +2981,19 @@ int snd_soc_dapm_get_enum_double(struct snd_kcontrol *kcontrol,
 	struct snd_ctl_elem_value *ucontrol)
 {
 	struct snd_soc_dapm_context *dapm = snd_soc_dapm_kcontrol_dapm(kcontrol);
+	struct snd_soc_card *card = dapm->card;
 	struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
 	unsigned int reg_val, val;
 
-	if (e->reg != SND_SOC_NOPM) {
+	mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
+	if (e->reg != SND_SOC_NOPM && dapm_kcontrol_is_powered(kcontrol)) {
 		int ret = soc_dapm_read(dapm, e->reg, &reg_val);
 		if (ret)
 			return ret;
 	} else {
 		reg_val = dapm_kcontrol_get_value(kcontrol);
 	}
+	mutex_unlock(&card->dapm_mutex);
 
 	val = (reg_val >> e->shift_l) & e->mask;
 	ucontrol->value.enumerated.item[0] = snd_soc_enum_val_to_item(e, val);
@@ -2984,7 +3023,7 @@ int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,
 	struct snd_soc_card *card = dapm->card;
 	struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
 	unsigned int *item = ucontrol->value.enumerated.item;
-	unsigned int val, change;
+	unsigned int val, change, reg_change = 0;
 	unsigned int mask;
 	struct snd_soc_dapm_update update;
 	int ret = 0;
@@ -3003,19 +3042,20 @@ int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol,
 
 	mutex_lock_nested(&card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
 
+	change = dapm_kcontrol_set_value(kcontrol, val);
+
 	if (e->reg != SND_SOC_NOPM)
-		change = soc_dapm_test_bits(dapm, e->reg, mask, val);
-	else
-		change = dapm_kcontrol_set_value(kcontrol, val);
+		reg_change = soc_dapm_test_bits(dapm, e->reg, mask, val);
 
-	if (change) {
-		if (e->reg != SND_SOC_NOPM) {
+	if (change || reg_change) {
+		if (reg_change) {
 			update.kcontrol = kcontrol;
 			update.reg = e->reg;
 			update.mask = mask;
 			update.val = val;
 			card->update = &update;
 		}
+		change |= reg_change;
 
 		ret = soc_dapm_mux_update_power(card, kcontrol, item[0], e);
 
-- 
1.7.2.5

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

* [PATCH v3 5/5] ASoC: arizona: Use auto disable muxes for routing
  2015-05-01 11:37 [PATCH v3 1/5] ASoC: Correct typo in SOC_VALUE_ENUM_SINGLE macro Charles Keepax
                   ` (2 preceding siblings ...)
  2015-05-01 11:37 ` [PATCH v3 4/5] ASoC: dapm: Add support for autodisable mux controls Charles Keepax
@ 2015-05-01 11:37 ` Charles Keepax
  2015-05-06 16:16   ` Mark Brown
  2015-05-01 14:31 ` [PATCH v3 1/5] ASoC: Correct typo in SOC_VALUE_ENUM_SINGLE macro Lars-Peter Clausen
  2015-05-04 12:03 ` Mark Brown
  5 siblings, 1 reply; 12+ messages in thread
From: Charles Keepax @ 2015-05-01 11:37 UTC (permalink / raw)
  To: broonie; +Cc: alsa-devel, lars, lgirdwood, patches

The mixer core on the Arizona devices is powered up whenever any routing
is non-zero. This patch saves a little power and avoids a few difficult
corner cases (around the mixer core being powered whilst there is no
clock available), by using the autodisable mux functionality to only
write out the settings for the muxes when they are powered up.

Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
---
 sound/soc/codecs/arizona.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sound/soc/codecs/arizona.h b/sound/soc/codecs/arizona.h
index 11ff899..bacc296 100644
--- a/sound/soc/codecs/arizona.h
+++ b/sound/soc/codecs/arizona.h
@@ -107,8 +107,8 @@ extern int arizona_mixer_values[ARIZONA_NUM_MIXER_INPUTS];
 			     arizona_mixer_tlv)
 
 #define ARIZONA_MUX_ENUM_DECL(name, reg) \
-	SOC_VALUE_ENUM_SINGLE_DECL(name, reg, 0, 0xff,			\
-				   arizona_mixer_texts, arizona_mixer_values)
+	SOC_VALUE_ENUM_SINGLE_AUTODISABLE_DECL( \
+		name, reg, 0, 0xff, arizona_mixer_texts, arizona_mixer_values)
 
 #define ARIZONA_MUX_CTL_DECL(name) \
 	const struct snd_kcontrol_new name##_mux =	\
-- 
1.7.2.5

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

* Re: [PATCH v3 1/5] ASoC: Correct typo in SOC_VALUE_ENUM_SINGLE macro
  2015-05-01 11:37 [PATCH v3 1/5] ASoC: Correct typo in SOC_VALUE_ENUM_SINGLE macro Charles Keepax
                   ` (3 preceding siblings ...)
  2015-05-01 11:37 ` [PATCH v3 5/5] ASoC: arizona: Use auto disable muxes for routing Charles Keepax
@ 2015-05-01 14:31 ` Lars-Peter Clausen
  2015-05-04 12:03 ` Mark Brown
  5 siblings, 0 replies; 12+ messages in thread
From: Lars-Peter Clausen @ 2015-05-01 14:31 UTC (permalink / raw)
  To: Charles Keepax, broonie; +Cc: alsa-devel, patches, lgirdwood

On 05/01/2015 01:37 PM, Charles Keepax wrote:
> xnitmes is clearly intended to be xnitems, but all other macros just
> refer to this as xitems, so change it to that.
>
> Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>

Looks good, works fine, thanks. Patch 1-4:

Reviewed-by: Lars-Peter Clausen <lars@metafoo.de>
Tested-by: Lars-Peter Clausen <lars@metafoo.de>

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

* Re: [PATCH v3 1/5] ASoC: Correct typo in SOC_VALUE_ENUM_SINGLE macro
  2015-05-01 11:37 [PATCH v3 1/5] ASoC: Correct typo in SOC_VALUE_ENUM_SINGLE macro Charles Keepax
                   ` (4 preceding siblings ...)
  2015-05-01 14:31 ` [PATCH v3 1/5] ASoC: Correct typo in SOC_VALUE_ENUM_SINGLE macro Lars-Peter Clausen
@ 2015-05-04 12:03 ` Mark Brown
  2015-05-04 14:23   ` Charles Keepax
  5 siblings, 1 reply; 12+ messages in thread
From: Mark Brown @ 2015-05-04 12:03 UTC (permalink / raw)
  To: Charles Keepax; +Cc: alsa-devel, lars, lgirdwood, patches


[-- Attachment #1.1: Type: text/plain, Size: 534 bytes --]

On Fri, May 01, 2015 at 12:37:23PM +0100, Charles Keepax wrote:

> Changes since v2:
>  - Use snd_soc_enum_item_to_val to get zero value from mux to account for
>    non-value enums
>  - Improve handling in snd_soc_dapm_put_enum_double of the situation
>    where the register and widget views of the control values don't match
> 
> Thanks,
> Charles
> 
>  include/sound/soc.h |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)

This list of changes doesn't appear to have anything to do with this
patch?

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



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

* Re: [PATCH v3 2/5] ASoC: dapm: Remove local OOM error message
  2015-05-01 11:37 ` [PATCH v3 2/5] ASoC: dapm: Remove local OOM error message Charles Keepax
@ 2015-05-04 12:04   ` Mark Brown
  0 siblings, 0 replies; 12+ messages in thread
From: Mark Brown @ 2015-05-04 12:04 UTC (permalink / raw)
  To: Charles Keepax; +Cc: alsa-devel, lars, lgirdwood, patches


[-- Attachment #1.1: Type: text/plain, Size: 179 bytes --]

On Fri, May 01, 2015 at 12:37:24PM +0100, Charles Keepax wrote:
> The memory subsystem is pretty chatty on failure no need to have local
> OOM messages as well.

Applied, thanks.

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



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

* Re: [PATCH v3 3/5] ASoC: dapm: Append "Autodisable" to autodisable widget names
  2015-05-01 11:37 ` [PATCH v3 3/5] ASoC: dapm: Append "Autodisable" to autodisable widget names Charles Keepax
@ 2015-05-04 12:04   ` Mark Brown
  0 siblings, 0 replies; 12+ messages in thread
From: Mark Brown @ 2015-05-04 12:04 UTC (permalink / raw)
  To: Charles Keepax; +Cc: alsa-devel, lars, lgirdwood, patches


[-- Attachment #1.1: Type: text/plain, Size: 351 bytes --]

On Fri, May 01, 2015 at 12:37:25PM +0100, Charles Keepax wrote:
> This makes it a little easier to follow what is happening in debugfs.
> Additionally is also useful in facilitating work to add autodisable
> muxes because the control name is already used for the mux widget and
> thus shouldn't be reused for the autodisable widget.

Applied, thanks.

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



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

* Re: [PATCH v3 1/5] ASoC: Correct typo in SOC_VALUE_ENUM_SINGLE macro
  2015-05-04 12:03 ` Mark Brown
@ 2015-05-04 14:23   ` Charles Keepax
  0 siblings, 0 replies; 12+ messages in thread
From: Charles Keepax @ 2015-05-04 14:23 UTC (permalink / raw)
  To: Mark Brown; +Cc: alsa-devel, lars, lgirdwood, patches

On Mon, May 04, 2015 at 01:03:41PM +0100, Mark Brown wrote:
> On Fri, May 01, 2015 at 12:37:23PM +0100, Charles Keepax wrote:
> 
> > Changes since v2:
> >  - Use snd_soc_enum_item_to_val to get zero value from mux to account for
> >    non-value enums
> >  - Improve handling in snd_soc_dapm_put_enum_double of the situation
> >    where the register and widget views of the control values don't match
> > 
> > Thanks,
> > Charles
> > 
> >  include/sound/soc.h |    4 ++--
> >  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> This list of changes doesn't appear to have anything to do with this
> patch?

Sorry, I probably should have either added a cover letter or put
those on patch 4 that is the patch they relate to.

Thanks,
Charles

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

* Re: [PATCH v3 4/5] ASoC: dapm: Add support for autodisable mux controls
  2015-05-01 11:37 ` [PATCH v3 4/5] ASoC: dapm: Add support for autodisable mux controls Charles Keepax
@ 2015-05-06 16:12   ` Mark Brown
  0 siblings, 0 replies; 12+ messages in thread
From: Mark Brown @ 2015-05-06 16:12 UTC (permalink / raw)
  To: Charles Keepax; +Cc: alsa-devel, lars, lgirdwood, patches


[-- Attachment #1.1: Type: text/plain, Size: 373 bytes --]

On Fri, May 01, 2015 at 12:37:26PM +0100, Charles Keepax wrote:
> Commit 57295073b6ac ("ASoC: dapm: Implement mixer input auto-disable")
> added support for autodisable controls, controls whose values are only
> written to the hardware when their respective widgets are powered up.
> But it only added support for controls based on the mixer abstraction.

Applied, thanks.

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



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

* Re: [PATCH v3 5/5] ASoC: arizona: Use auto disable muxes for routing
  2015-05-01 11:37 ` [PATCH v3 5/5] ASoC: arizona: Use auto disable muxes for routing Charles Keepax
@ 2015-05-06 16:16   ` Mark Brown
  0 siblings, 0 replies; 12+ messages in thread
From: Mark Brown @ 2015-05-06 16:16 UTC (permalink / raw)
  To: Charles Keepax; +Cc: alsa-devel, lars, lgirdwood, patches


[-- Attachment #1.1: Type: text/plain, Size: 438 bytes --]

On Fri, May 01, 2015 at 12:37:27PM +0100, Charles Keepax wrote:
> The mixer core on the Arizona devices is powered up whenever any routing
> is non-zero. This patch saves a little power and avoids a few difficult
> corner cases (around the mixer core being powered whilst there is no
> clock available), by using the autodisable mux functionality to only
> write out the settings for the muxes when they are powered up.

Applied, thanks.

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



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

end of thread, other threads:[~2015-05-06 16:16 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-01 11:37 [PATCH v3 1/5] ASoC: Correct typo in SOC_VALUE_ENUM_SINGLE macro Charles Keepax
2015-05-01 11:37 ` [PATCH v3 2/5] ASoC: dapm: Remove local OOM error message Charles Keepax
2015-05-04 12:04   ` Mark Brown
2015-05-01 11:37 ` [PATCH v3 3/5] ASoC: dapm: Append "Autodisable" to autodisable widget names Charles Keepax
2015-05-04 12:04   ` Mark Brown
2015-05-01 11:37 ` [PATCH v3 4/5] ASoC: dapm: Add support for autodisable mux controls Charles Keepax
2015-05-06 16:12   ` Mark Brown
2015-05-01 11:37 ` [PATCH v3 5/5] ASoC: arizona: Use auto disable muxes for routing Charles Keepax
2015-05-06 16:16   ` Mark Brown
2015-05-01 14:31 ` [PATCH v3 1/5] ASoC: Correct typo in SOC_VALUE_ENUM_SINGLE macro Lars-Peter Clausen
2015-05-04 12:03 ` Mark Brown
2015-05-04 14:23   ` Charles Keepax

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).