alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] ASoC: arizona: Add debug prints for output power up/down times
@ 2016-09-27 15:35 Charles Keepax
  2016-09-27 15:35 ` [PATCH 2/2] ASoC: arizona: Add output power up/down delays for speaker path Charles Keepax
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Charles Keepax @ 2016-09-27 15:35 UTC (permalink / raw)
  To: broonie; +Cc: alsa-devel, patches, lgirdwood

When debugging it is useful to check the total power up/down delay that
is executed as part of the coalesced output delay. This patch adds some
debug prints for this.

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

diff --git a/sound/soc/codecs/arizona.c b/sound/soc/codecs/arizona.c
index 780cf4f..eaf1dbb 100644
--- a/sound/soc/codecs/arizona.c
+++ b/sound/soc/codecs/arizona.c
@@ -891,6 +891,8 @@ int arizona_out_ev(struct snd_soc_dapm_widget *w,
 		case ARIZONA_OUT3R_ENA_SHIFT:
 			priv->out_up_pending--;
 			if (!priv->out_up_pending) {
+				dev_dbg(codec->dev, "Power up delay: %d\n",
+					priv->out_up_delay);
 				msleep(priv->out_up_delay);
 				priv->out_up_delay = 0;
 			}
@@ -925,6 +927,8 @@ int arizona_out_ev(struct snd_soc_dapm_widget *w,
 		case ARIZONA_OUT3R_ENA_SHIFT:
 			priv->out_down_pending--;
 			if (!priv->out_down_pending) {
+				dev_dbg(codec->dev, "Power down delay: %d\n",
+					priv->out_down_delay);
 				msleep(priv->out_down_delay);
 				priv->out_down_delay = 0;
 			}
-- 
2.1.4

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

end of thread, other threads:[~2016-09-27 16:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-27 15:35 [PATCH 1/2] ASoC: arizona: Add debug prints for output power up/down times Charles Keepax
2016-09-27 15:35 ` [PATCH 2/2] ASoC: arizona: Add output power up/down delays for speaker path Charles Keepax
2016-09-27 16:18   ` Applied "ASoC: arizona: Add output power up/down delays for speaker path" to the asoc tree Mark Brown
2016-09-27 16:04 ` [PATCH 1/2] ASoC: arizona: Add debug prints for output power up/down times Mark Brown
2016-09-27 16:18 ` Applied "ASoC: arizona: Add debug prints for output power up/down times" 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;
as well as URLs for NNTP newsgroup(s).