The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH] ALSA: at73c213: manage SSC clock
@ 2016-01-16 18:35 Mans Rullgard
  2016-01-17 14:43 ` Måns Rullgård
  2016-01-17 21:34 ` Hans-Christian Noren Egtvedt
  0 siblings, 2 replies; 4+ messages in thread
From: Mans Rullgard @ 2016-01-16 18:35 UTC (permalink / raw)
  To: Hans-Christian Egtvedt
  Cc: Jaroslav Kysela, Takashi Iwai, alsa-devel, linux-kernel

Since commit 49af54ff0fc7 ("misc: atmel-ssc: prepare clock only when
request") the SSC driver expects clients to manage the SSC clock.
Update this driver accordingly.

Signed-off-by: Mans Rullgard <mans@mansr.com>
---
 sound/spi/at73c213.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/sound/spi/at73c213.c b/sound/spi/at73c213.c
index 39522367897c..3b2d0b2be421 100644
--- a/sound/spi/at73c213.c
+++ b/sound/spi/at73c213.c
@@ -981,6 +981,8 @@ static int snd_at73c213_probe(struct spi_device *spi)
 		goto out_card;
 	}
 
+	clk_enable(chip->ssc->clk);
+
 	retval = snd_at73c213_dev_init(card, spi);
 	if (retval)
 		goto out_ssc;
@@ -998,6 +1000,7 @@ static int snd_at73c213_probe(struct spi_device *spi)
 	goto out;
 
 out_ssc:
+	clk_disable(chip->ssc->clk);
 	ssc_free(chip->ssc);
 out_card:
 	snd_card_free(card);
@@ -1066,6 +1069,9 @@ out:
 	/* Stop DAC master clock. */
 	clk_disable(chip->board->dac_clk);
 
+	/* Stop SSC clock. */
+	clk_disable(chip->ssc->clk);
+
 	ssc_free(chip->ssc);
 	snd_card_free(card);
 
@@ -1080,6 +1086,7 @@ static int snd_at73c213_suspend(struct device *dev)
 	struct snd_at73c213 *chip = card->private_data;
 
 	ssc_writel(chip->ssc->regs, CR, SSC_BIT(CR_TXDIS));
+	clk_disable(chip->ssc->clk);
 	clk_disable(chip->board->dac_clk);
 
 	return 0;
@@ -1091,6 +1098,7 @@ static int snd_at73c213_resume(struct device *dev)
 	struct snd_at73c213 *chip = card->private_data;
 
 	clk_enable(chip->board->dac_clk);
+	clk_enable(chip->ssc->clk);
 	ssc_writel(chip->ssc->regs, CR, SSC_BIT(CR_TXEN));
 
 	return 0;
-- 
2.7.0

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

* Re: [PATCH] ALSA: at73c213: manage SSC clock
  2016-01-16 18:35 [PATCH] ALSA: at73c213: manage SSC clock Mans Rullgard
@ 2016-01-17 14:43 ` Måns Rullgård
  2016-01-17 21:34 ` Hans-Christian Noren Egtvedt
  1 sibling, 0 replies; 4+ messages in thread
From: Måns Rullgård @ 2016-01-17 14:43 UTC (permalink / raw)
  To: Hans-Christian Egtvedt; +Cc: linux-kernel, alsa-devel, Takashi Iwai

Mans Rullgard <mans@mansr.com> writes:

> Since commit 49af54ff0fc7 ("misc: atmel-ssc: prepare clock only when
> request") the SSC driver expects clients to manage the SSC clock.
> Update this driver accordingly.
>
> Signed-off-by: Mans Rullgard <mans@mansr.com>
> ---
>  sound/spi/at73c213.c | 8 ++++++++
>  1 file changed, 8 insertions(+)

On second thoughts, please disregard this patch.  It's better to enable
the clock only when it is actually required.

> diff --git a/sound/spi/at73c213.c b/sound/spi/at73c213.c
> index 39522367897c..3b2d0b2be421 100644
> --- a/sound/spi/at73c213.c
> +++ b/sound/spi/at73c213.c
> @@ -981,6 +981,8 @@ static int snd_at73c213_probe(struct spi_device *spi)
>  		goto out_card;
>  	}
>
> +	clk_enable(chip->ssc->clk);
> +
>  	retval = snd_at73c213_dev_init(card, spi);
>  	if (retval)
>  		goto out_ssc;
> @@ -998,6 +1000,7 @@ static int snd_at73c213_probe(struct spi_device *spi)
>  	goto out;
>
>  out_ssc:
> +	clk_disable(chip->ssc->clk);
>  	ssc_free(chip->ssc);
>  out_card:
>  	snd_card_free(card);
> @@ -1066,6 +1069,9 @@ out:
>  	/* Stop DAC master clock. */
>  	clk_disable(chip->board->dac_clk);
>
> +	/* Stop SSC clock. */
> +	clk_disable(chip->ssc->clk);
> +
>  	ssc_free(chip->ssc);
>  	snd_card_free(card);
>
> @@ -1080,6 +1086,7 @@ static int snd_at73c213_suspend(struct device *dev)
>  	struct snd_at73c213 *chip = card->private_data;
>
>  	ssc_writel(chip->ssc->regs, CR, SSC_BIT(CR_TXDIS));
> +	clk_disable(chip->ssc->clk);
>  	clk_disable(chip->board->dac_clk);
>
>  	return 0;
> @@ -1091,6 +1098,7 @@ static int snd_at73c213_resume(struct device *dev)
>  	struct snd_at73c213 *chip = card->private_data;
>
>  	clk_enable(chip->board->dac_clk);
> +	clk_enable(chip->ssc->clk);
>  	ssc_writel(chip->ssc->regs, CR, SSC_BIT(CR_TXEN));
>
>  	return 0;
> -- 
> 2.7.0
>

-- 
Måns Rullgård

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

* Re: [PATCH] ALSA: at73c213: manage SSC clock
  2016-01-16 18:35 [PATCH] ALSA: at73c213: manage SSC clock Mans Rullgard
  2016-01-17 14:43 ` Måns Rullgård
@ 2016-01-17 21:34 ` Hans-Christian Noren Egtvedt
  2016-01-17 21:44   ` Måns Rullgård
  1 sibling, 1 reply; 4+ messages in thread
From: Hans-Christian Noren Egtvedt @ 2016-01-17 21:34 UTC (permalink / raw)
  To: Mans Rullgard; +Cc: Jaroslav Kysela, Takashi Iwai, alsa-devel, linux-kernel

Around Sat 16 Jan 2016 18:35:49 +0000 or thereabout, Mans Rullgard wrote:
> Since commit 49af54ff0fc7 ("misc: atmel-ssc: prepare clock only when
> request") the SSC driver expects clients to manage the SSC clock.
> Update this driver accordingly.
> 
> Signed-off-by: Mans Rullgard <mans@mansr.com>

Acked-by: Hans-Christian Egtvedt <egtvedt@samfundet.no>

I assume this will go through the alsa tree.

> ---
>  sound/spi/at73c213.c | 8 ++++++++
>  1 file changed, 8 insertions(+)

<snipp diff>

-- 
Best regards, Hans-Christian Egtvedt.

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

* Re: [PATCH] ALSA: at73c213: manage SSC clock
  2016-01-17 21:34 ` Hans-Christian Noren Egtvedt
@ 2016-01-17 21:44   ` Måns Rullgård
  0 siblings, 0 replies; 4+ messages in thread
From: Måns Rullgård @ 2016-01-17 21:44 UTC (permalink / raw)
  To: Hans-Christian Noren Egtvedt
  Cc: Jaroslav Kysela, Takashi Iwai, alsa-devel, linux-kernel

Hans-Christian Noren Egtvedt <egtvedt@samfundet.no> writes:

> Around Sat 16 Jan 2016 18:35:49 +0000 or thereabout, Mans Rullgard wrote:
>> Since commit 49af54ff0fc7 ("misc: atmel-ssc: prepare clock only when
>> request") the SSC driver expects clients to manage the SSC clock.
>> Update this driver accordingly.
>> 
>> Signed-off-by: Mans Rullgard <mans@mansr.com>
>
> Acked-by: Hans-Christian Egtvedt <egtvedt@samfundet.no>
>
> I assume this will go through the alsa tree.

As I said earlier, this patch can be improved to enable the clock only
as needed, i.e. during initial setup and when the device is open.

-- 
Måns Rullgård

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

end of thread, other threads:[~2016-01-17 21:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-16 18:35 [PATCH] ALSA: at73c213: manage SSC clock Mans Rullgard
2016-01-17 14:43 ` Måns Rullgård
2016-01-17 21:34 ` Hans-Christian Noren Egtvedt
2016-01-17 21:44   ` Måns Rullgård

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox