Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1227040

Re: [PATCH 2/2] ASoC: sunxi: add support for the on-chip codec on early Allwinner SoCs

From Maxime Ripard <maxime.ripard@free-electrons.com>
Newsgroups linux.kernel
Subject Re: [PATCH 2/2] ASoC: sunxi: add support for the on-chip codec on early Allwinner SoCs
Date 2015-09-17 15:40 +0200
Message-ID <q9HzR-50m-27@gated-at.bofh.it> (permalink)
References <q7Vnz-4Zv-7@gated-at.bofh.it> <q7Vnz-4Zv-13@gated-at.bofh.it> <q9qpj-59A-13@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


[Multipart message — attachments visible in raw view] - view raw

Hi Mark,

On Wed, Sep 16, 2015 at 08:16:12PM +0100, Mark Brown wrote:
> On Sat, Sep 12, 2015 at 03:26:24PM +0200, Maxime Ripard wrote:
> 
> This looks pretty good, there's a few minor things below but I'll apply
> anyway - please send followup patches fixing these.

Sure, I will. Thanks!

> 
> > +	if (clk_set_rate(scodec->clk_module, clk_freq))
> > +		return -EINVAL;
> 
> Better to pass back the error code here rather than silently discard it
> (it might have more information).

Yep.

> 
> > +static struct snd_soc_dai_driver sun4i_codec_dai = {
> > +	.name	= "Codec",
> > +	.ops	= &sun4i_codec_dai_ops,
> > +	.playback = {
> > +		.stream_name	= "Codec Playback",
> > +		.channels_min	= 1,
> > +		.channels_max	= 2,
> > +		.rate_min	= 8000,
> > +		.rate_max	= 192000,
> > +		.rates		= SNDRV_PCM_RATE_8000_48000 |
> > +				  SNDRV_PCM_RATE_96000 |
> > +				  SNDRV_PCM_RATE_192000 |
> > +				  SNDRV_PCM_RATE_KNOT,
> 
> No need to specify both explicit rates and _KNOT, _KNOT covers
> everything.

Ack.

> > +		.formats	= SNDRV_PCM_FMTBIT_S16_LE |
> > +				  SNDRV_PCM_FMTBIT_S32_LE,
> > +		.sig_bits	= 24,
> 
> So presumably also S24_LE (ie, 24 bits packed into a 32 bit word)?

Hmm, probably yes, I'll test that.

> > +	/* Enable the bus clock */
> > +	if (clk_prepare_enable(scodec->clk_apb)) {
> > +		dev_err(&pdev->dev, "Failed to enable the APB clock\n");
> > +		return -EINVAL;
> > +	}
> 
> Ideally we'd have runtime power management to disable the clocks when
> idle.

We don't really have any kind of power management support currently,
but adding runtime pm everywhere is definitely on the todo list. It
might not happen before a while though.

Thanks!
Maxime

-- 
Maxime Ripard, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH 0/2] ASoC: Add support for the Allwinner A10 codec Maxime Ripard <maxime.ripard@free-electrons.com> - 2015-09-12 18:00 +0200
  [PATCH 2/2] ASoC: sunxi: add support for the on-chip codec on early Allwinner SoCs Maxime Ripard <maxime.ripard@free-electrons.com> - 2015-09-12 18:00 +0200
    Re: [PATCH 2/2] ASoC: sunxi: add support for the on-chip codec on  early Allwinner SoCs Mark Brown <broonie@kernel.org> - 2015-09-16 21:20 +0200
      Re: [PATCH 2/2] ASoC: sunxi: add support for the on-chip codec on  early Allwinner SoCs Maxime Ripard <maxime.ripard@free-electrons.com> - 2015-09-17 15:40 +0200
        Re: [linux-sunxi] Re: [PATCH 2/2] ASoC: sunxi: add support for the  on-chip codec on early Allwinner SoCs Chen-Yu Tsai <wens@csie.org> - 2015-09-17 17:20 +0200
          Re: [linux-sunxi] Re: [PATCH 2/2] ASoC: sunxi: add support for the  on-chip codec on early Allwinner SoCs Mark Brown <broonie@kernel.org> - 2015-09-17 19:40 +0200

csiph-web