All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ASoC: img-parallel-out: Add pm_runtime_get/put to set_fmt callback
@ 2017-10-02 10:00 Ed Blake
  2017-10-04 10:39 ` Mark Brown
  2017-10-04 11:28 ` Applied "ASoC: img-parallel-out: Add pm_runtime_get/put to set_fmt callback" to the asoc tree Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Ed Blake @ 2017-10-02 10:00 UTC (permalink / raw)
  To: lgirdwood, broonie; +Cc: alsa-devel, Ed Blake

Add pm_runtime_get_sync and pm_runtime_put calls to set_fmt callback
function. This fixes a bus error during boot when CONFIG_SUSPEND is
defined when this function gets called while the device is runtime
disabled and device registers are accessed while the clock is disabled.

Signed-off-by: Ed Blake <ed.blake@sondrel.com>
---
 sound/soc/img/img-parallel-out.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sound/soc/img/img-parallel-out.c b/sound/soc/img/img-parallel-out.c
index 23b0f0f..2fc8a63 100644
--- a/sound/soc/img/img-parallel-out.c
+++ b/sound/soc/img/img-parallel-out.c
@@ -164,9 +164,11 @@ static int img_prl_out_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
 		return -EINVAL;
 	}
 
+	pm_runtime_get_sync(prl->dev);
 	reg = img_prl_out_readl(prl, IMG_PRL_OUT_CTL);
 	reg = (reg & ~IMG_PRL_OUT_CTL_EDGE_MASK) | control_set;
 	img_prl_out_writel(prl, reg, IMG_PRL_OUT_CTL);
+	pm_runtime_put(prl->dev);
 
 	return 0;
 }
-- 
1.9.1

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

* Re: [PATCH] ASoC: img-parallel-out: Add pm_runtime_get/put to set_fmt callback
  2017-10-02 10:00 [PATCH] ASoC: img-parallel-out: Add pm_runtime_get/put to set_fmt callback Ed Blake
@ 2017-10-04 10:39 ` Mark Brown
  2017-10-04 11:28 ` Applied "ASoC: img-parallel-out: Add pm_runtime_get/put to set_fmt callback" to the asoc tree Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2017-10-04 10:39 UTC (permalink / raw)
  To: Ed Blake; +Cc: alsa-devel, lgirdwood


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

On Mon, Oct 02, 2017 at 11:00:33AM +0100, Ed Blake wrote:

> +	pm_runtime_get_sync(prl->dev);

I'll apply this since the driver already has runtime PM and it makes
things better but please in a followup patch add error handling.

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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



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

* Applied "ASoC: img-parallel-out: Add pm_runtime_get/put to set_fmt callback" to the asoc tree
  2017-10-02 10:00 [PATCH] ASoC: img-parallel-out: Add pm_runtime_get/put to set_fmt callback Ed Blake
  2017-10-04 10:39 ` Mark Brown
@ 2017-10-04 11:28 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2017-10-04 11:28 UTC (permalink / raw)
  To: Ed Blake; +Cc: alsa-devel, broonie, lgirdwood

The patch

   ASoC: img-parallel-out: Add pm_runtime_get/put to set_fmt callback

has been applied to the asoc tree at

   git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git 

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.  

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

>From c70458890ff15d858bd347fa9f563818bcd6e457 Mon Sep 17 00:00:00 2001
From: Ed Blake <ed.blake@sondrel.com>
Date: Mon, 2 Oct 2017 11:00:33 +0100
Subject: [PATCH] ASoC: img-parallel-out: Add pm_runtime_get/put to set_fmt
 callback

Add pm_runtime_get_sync and pm_runtime_put calls to set_fmt callback
function. This fixes a bus error during boot when CONFIG_SUSPEND is
defined when this function gets called while the device is runtime
disabled and device registers are accessed while the clock is disabled.

Signed-off-by: Ed Blake <ed.blake@sondrel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/img/img-parallel-out.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sound/soc/img/img-parallel-out.c b/sound/soc/img/img-parallel-out.c
index 23b0f0f6ec9c..2fc8a6372206 100644
--- a/sound/soc/img/img-parallel-out.c
+++ b/sound/soc/img/img-parallel-out.c
@@ -164,9 +164,11 @@ static int img_prl_out_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
 		return -EINVAL;
 	}
 
+	pm_runtime_get_sync(prl->dev);
 	reg = img_prl_out_readl(prl, IMG_PRL_OUT_CTL);
 	reg = (reg & ~IMG_PRL_OUT_CTL_EDGE_MASK) | control_set;
 	img_prl_out_writel(prl, reg, IMG_PRL_OUT_CTL);
+	pm_runtime_put(prl->dev);
 
 	return 0;
 }
-- 
2.14.1

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

end of thread, other threads:[~2017-10-04 11:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-02 10:00 [PATCH] ASoC: img-parallel-out: Add pm_runtime_get/put to set_fmt callback Ed Blake
2017-10-04 10:39 ` Mark Brown
2017-10-04 11:28 ` Applied "ASoC: img-parallel-out: Add pm_runtime_get/put to set_fmt callback" to the asoc tree Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.