From: Nicolin Chen <Guangyu.Chen@freescale.com>
To: Mark Rutland <mark.rutland@arm.com>
Cc: "broonie@kernel.org" <broonie@kernel.org>,
"brian.austin@cirrus.com" <brian.austin@cirrus.com>,
"Paul.Handrigan@cirrus.com" <Paul.Handrigan@cirrus.com>,
"robh+dt@kernel.org" <robh+dt@kernel.org>,
Pawel Moll <Pawel.Moll@arm.com>,
"ijc+devicetree@hellion.org.uk" <ijc+devicetree@hellion.org.uk>,
"galak@codeaurora.org" <galak@codeaurora.org>,
"rob@landley.net" <rob@landley.net>,
"lgirdwood@gmail.com" <lgirdwood@gmail.com>,
"grant.likely@linaro.org" <grant.likely@linaro.org>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
"linux-doc@vger.kernel.org" <linux-doc@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"alsa-devel@alsa-project.org" <alsa-devel@alsa-project.org>,
"lars@metafoo.de" <lars@metafoo.de>
Subject: Re: [PATCH v2] ASoC: cs42888: Add codec driver support
Date: Tue, 11 Mar 2014 19:11:51 +0800 [thread overview]
Message-ID: <20140311111150.GB799@MrMyself> (raw)
In-Reply-To: <20140311113053.GA1036@e106331-lin.cambridge.arm.com>
On Tue, Mar 11, 2014 at 11:30:53AM +0000, Mark Rutland wrote:
> On Tue, Mar 11, 2014 at 11:19:51AM +0000, Nicolin Chen wrote:
> > This patch adds support for the Cirrus Logic CS42888 Audio CODEC that
> > has four 24-bit A/D and eight 24-bit D/A converters.
> >
> > [ CS42888 supports both I2C and SPI control ports. As initial patch,
> > this patch only adds the support for I2C. ]
> >
> > Signed-off-by: Nicolin Chen <Guangyu.Chen@freescale.com>
> > ---
> >
> > Changelog
> > v2:
> > * Separated driver into I2C and main part drivers.
> > * Added error out if failed to get clock.
> > * Enabled Auto-mute function as default.
> > * Disabled runtime-pm in remove().
> > * Added return value checking for regcache_sync().
> > * Fixed some trival parts like 'const' as Lars mentioned.
> >
> > .../devicetree/bindings/sound/cs42888.txt | 27 ++
> > sound/soc/codecs/Kconfig | 10 +
> > sound/soc/codecs/Makefile | 4 +
> > sound/soc/codecs/cs42888-i2c.c | 68 +++
> > sound/soc/codecs/cs42888.c | 536 +++++++++++++++++++++
> > sound/soc/codecs/cs42888.h | 213 ++++++++
> > 6 files changed, 858 insertions(+)
> > create mode 100644 Documentation/devicetree/bindings/sound/cs42888.txt
> > create mode 100644 sound/soc/codecs/cs42888-i2c.c
> > create mode 100644 sound/soc/codecs/cs42888.c
> > create mode 100644 sound/soc/codecs/cs42888.h
> >
> > diff --git a/Documentation/devicetree/bindings/sound/cs42888.txt b/Documentation/devicetree/bindings/sound/cs42888.txt
> > new file mode 100644
> > index 0000000..7736527
> > --- /dev/null
> > +++ b/Documentation/devicetree/bindings/sound/cs42888.txt
> > @@ -0,0 +1,27 @@
> > +CS42888 audio CODEC
> > +
> > +Required properties:
> > +
> > + - compatible : "cirrus,cs42888"
> > +
> > + - reg : the I2C address of the device for I2C
> > +
> > + - clocks : phandle to the clock source for MCLK
> > +
> > + - clock-names : must contain "mclk".
>
> If you use clock-names, please define the clocks property in terms of
> clock-names to avoid redundancy. e.g.
>
> - clocks: a list of phandles + clock-specifiers, one for each entry in
> clock-names.
>
> It makes the relationship between the two clearer, and makes it far
> easier to alter the binding in future if required.
Thank you for the quick reply.
Will fix it in a minute.
Best regards,
Nicolin Chen
next prev parent reply other threads:[~2014-03-11 11:11 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-11 11:19 [PATCH v2] ASoC: cs42888: Add codec driver support Nicolin Chen
2014-03-11 11:19 ` Nicolin Chen
2014-03-11 11:30 ` Mark Rutland
2014-03-11 11:11 ` Nicolin Chen [this message]
[not found] ` <1394536791-8381-1-git-send-email-Guangyu.Chen-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
2014-03-11 15:41 ` Brian Austin
2014-03-11 15:41 ` Brian Austin
2014-03-11 15:55 ` Lars-Peter Clausen
2014-03-11 18:46 ` Mark Brown
2014-03-12 1:54 ` Nicolin Chen
2014-03-12 1:54 ` Nicolin Chen
2014-03-12 2:05 ` Austin, Brian
2014-03-12 2:03 ` Nicolin Chen
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=20140311111150.GB799@MrMyself \
--to=guangyu.chen@freescale.com \
--cc=Paul.Handrigan@cirrus.com \
--cc=Pawel.Moll@arm.com \
--cc=alsa-devel@alsa-project.org \
--cc=brian.austin@cirrus.com \
--cc=broonie@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=galak@codeaurora.org \
--cc=grant.likely@linaro.org \
--cc=ijc+devicetree@hellion.org.uk \
--cc=lars@metafoo.de \
--cc=lgirdwood@gmail.com \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=rob@landley.net \
--cc=robh+dt@kernel.org \
/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 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.