lkml.org 
[lkml]   [2017]   [Nov]   [30]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v2 2/2] ASoC: codecs: Add initial PCM1862/63/64/65 universal ADC driver
On Wed, Nov 29, 2017 at 12:50:15PM -0600, Andrew F. Davis wrote:

> + case SND_SOC_BIAS_STANDBY:
> + pcm186x_power_on(codec);
> + break;
> + case SND_SOC_BIAS_OFF:
> + pcm186x_power_off(codec);
> + break;
> + }

> +/*
> + * The PCM186x's page register is located on every page, allowing to program it
> + * without having to switch pages. Take advantage of this by defining the range
> + * such to have this register located inside the data window.
> + */

That sounds like a normal page register?

> +int pcm186x_probe(struct device *dev, enum pcm186x_type type, int irq,
> + struct regmap *regmap)
> +{

> + ret = regulator_bulk_disable(ARRAY_SIZE(priv->supplies),
> + priv->supplies);
> + if (ret) {
> + dev_err(dev, "failed disable supplies: %d\n", ret);
> + return ret;
> + }

> +static int __maybe_unused pcm186x_resume(struct device *dev)
> +{
> + struct pcm186x_priv *priv = dev_get_drvdata(dev);
> + int ret;
> +
> + ret = regulator_bulk_enable(ARRAY_SIZE(priv->supplies),
> + priv->supplies);
> + if (ret != 0) {
> + dev_err(dev, "failed to enable supplies: %d\n", ret);
> + return ret;
> + }

> +const struct dev_pm_ops pcm186x_pm_ops = {
> + SET_RUNTIME_PM_OPS(pcm186x_suspend, pcm186x_resume, NULL)
> +};
> +EXPORT_SYMBOL_GPL(pcm186x_pm_ops);

There's no code in the driver that enables runtime PM so this isn't
going to do anything. I'm also not clear that the power management
handling is in general joined up - we leave the regulators disabled
at the end of probe, relying on the bias level configuration to reenable
them but then the runtime PM configuration also tries to enable and
disable them. Based on what I think the intention is I'd suggest
removing the bias level handling and then having probe enable runtime
PM with the device flagged as active, letting runtime PM do any
disabling if the device is idle.

I'd also expect to see some system suspend handling.
[unhandled content-type:application/pgp-signature]
\
 
 \ /
  Last update: 2017-11-30 13:21    [W:0.264 / U:0.080 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site