From: Daniel Baluta <daniel.baluta@nxp.com>
To: "broonie@kernel.org" <broonie@kernel.org>
Cc: dl-linux-imx <linux-imx@nxp.com>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Cosmin Samoila <cosmin.samoila@nxp.com>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
"wakasugi.jb@om.asahi-kasei.co.jp"
<wakasugi.jb@om.asahi-kasei.co.jp>,
Fabio Estevam <fabio.estevam@nxp.com>,
"andy.shevchenko@gmail.com" <andy.shevchenko@gmail.com>,
"mihai.serban@gmail.com" <mihai.serban@gmail.com>,
"robh@kernel.org" <robh@kernel.org>,
"S.j. Wang" <shengjiu.wang@nxp.com>,
"alsa-devel@alsa-project.org" <alsa-devel@alsa-project.org>,
"mihai.serban@nxp.com" <mihai.serban@nxp.com>
Subject: Re: [PATCH v3 1/2] ASoC: codecs: Add support for AK5558 ADC driver
Date: Tue, 13 Feb 2018 12:15:20 +0000 [thread overview]
Message-ID: <1518524119.17642.15.camel@nxp.com> (raw)
In-Reply-To: <20180212120213.GB12976@sirena.org.uk>
On Lu, 2018-02-12 at 12:02 +0000, Mark Brown wrote:
> On Mon, Feb 05, 2018 at 07:01:54PM +0200, Daniel Baluta wrote:
> >
> > AK5558 is a 32-bit, 768 kHZ sampling, differential input ADC
> > for digital audio systems.
> >
> > --- /dev/null
> > +++ b/sound/soc/codecs/ak5558.c
> > @@ -0,0 +1,618 @@
> > +/* SPDX-License-Identifier: GPL-2.0 */
> > +/*
> > + * Audio driver for AK5558 ADC
> Please don't mix C++ and C style comments - just make the entire comment
> C++.
>
Sure. Will use:
// SPDX-License-Identifier: GPL-2.0
> >
> > +static const char * const tdm_texts[] = {
> > + "Off", "TDM128", "TDM256", "TDM512",
> > +};
> This looks like it should be a set_tdm_slot() operation, and indeed
> set_tdm_slot() appears to be implemented and duplicate this.
>
Yup, will remove this. At first there was no set_tdm_slot.
> >
> > +static const char * const dsdon_texts[] = {
> > + "PCM", "DSD",
> > +};
> This looks like it's setting the DAI format?
Ditto. Will remove.
>
> >
> > + SND_SOC_DAPM_MUX("AK5558 Ch1 Enable", SND_SOC_NOPM, 0, 0,
> > + &ak5558_channel1_mux_control),
> On/off controls should be switches not muxes, though if this is just
> selecting which channels are active (rather than a mute) I'd not expect
> it to be a control at all - the board can say if inputs are disabled.
OK, agree that if we want to have a way to select which channels are active
we should use a switch.
Will remove this control for now.
>
> >
> > +static int ak5558_set_mcki(struct snd_soc_codec *codec, int fs, int rclk)
> > +{
> > + u8 mode;
> > +
> > + mode = snd_soc_read(codec, AK5558_02_CONTROL1);
> > + mode &= ~AK5558_CKS;
> > + mode |= AK5558_CKS_AUTO;
> > +
> > + snd_soc_update_bits(codec, AK5558_02_CONTROL1, AK5558_CKS, mode);
> > +
> > + return 0;
> > +}
> This appears to just ignore the parameters?
These are left overs from a v1 cleanup. Will fix.
thanks Mark! Will send v4 asap.
thanks,
Daniel.
next prev parent reply other threads:[~2018-02-13 12:15 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-05 17:01 [PATCH v3 0/2] Add support for AK5558 ADC Daniel Baluta
2018-02-05 17:01 ` [PATCH v3 1/2] ASoC: codecs: Add support for AK5558 ADC driver Daniel Baluta
2018-02-05 20:27 ` Fabio Estevam
2018-02-06 14:12 ` Andy Shevchenko
2018-02-12 12:02 ` Mark Brown
2018-02-13 12:15 ` Daniel Baluta [this message]
2018-02-05 17:01 ` [PATCH v3 2/2] ASoC: ak5558: Add bindings for AK5558 ADC Daniel Baluta
2018-02-05 20:26 ` Fabio Estevam
2018-02-06 2:16 ` Fabio Estevam
2018-02-09 2:46 ` Rob Herring
2018-02-16 12:16 ` Applied "ASoC: ak5558: Add bindings for AK5558 ADC" to the asoc tree Mark Brown
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1518524119.17642.15.camel@nxp.com \
--to=daniel.baluta@nxp.com \
--cc=alsa-devel@alsa-project.org \
--cc=andy.shevchenko@gmail.com \
--cc=broonie@kernel.org \
--cc=cosmin.samoila@nxp.com \
--cc=devicetree@vger.kernel.org \
--cc=fabio.estevam@nxp.com \
--cc=linux-imx@nxp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mihai.serban@gmail.com \
--cc=mihai.serban@nxp.com \
--cc=robh@kernel.org \
--cc=shengjiu.wang@nxp.com \
--cc=wakasugi.jb@om.asahi-kasei.co.jp \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome