From: "Emmanuel Fusté" <emmanuel.fuste-QFKgK+z4sOrR7s880joybQ@public.gmane.org>
To: kernel-TqfNSX0MhmxHKSADF0wUEw@public.gmane.org,
Rob Herring <robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
Pawel Moll <pawel.moll-5wv7dgnIgG8@public.gmane.org>,
Mark Rutland <mark.rutland-5wv7dgnIgG8@public.gmane.org>,
Mark Brown <broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
Jaroslav Kysela <perex-/Fr2/VpizcU@public.gmane.org>,
Takashi Iwai <tiwai-IBi9RG/b67k@public.gmane.org>,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw@public.gmane.org,
linux-rpi-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
Matthias Reichl <hias-vtPv7MOkFPkAvxtiuMwx3w@public.gmane.org>,
Florian Meier <florian.meier-oZ8rN/sblLk@public.gmane.org>
Subject: Re: [alsa-devel] [PATCH 1/2] ASoC: pcm5102a: Add support for PCM5102A codec
Date: Sun, 22 May 2016 23:29:55 +0200 [thread overview]
Message-ID: <34ab107e-10dc-fbd3-28d1-203c6411851c@laposte.net> (raw)
In-Reply-To: <1463130853-25096-2-git-send-email-kernel-TqfNSX0MhmxHKSADF0wUEw@public.gmane.org>
Le 13/05/2016 à 11:14, kernel-TqfNSX0MhmxHKSADF0wUEw@public.gmane.org a écrit :
> From: Florian Meier <florian.meier-oZ8rN/sblLk@public.gmane.org>
>
> Some definitions to support the PCM5102A codec
> by Texas Instruments.
>
> Signed-off-by: Florian Meier <florian.meier-oZ8rN/sblLk@public.gmane.org>
>
> Changes to original patch by Florian Meier:
> * rebased (Makefile and Kconfig
> * fixed checkpath errors (spaces, newlines)
> * added dt-binding documentation
>
> Signed-off-by: Martin Sperl <kernel-TqfNSX0MhmxHKSADF0wUEw@public.gmane.org>
> ---
> .../devicetree/bindings/sound/pcm5102a.txt | 13 ++++
> sound/soc/codecs/Kconfig | 4 ++
> sound/soc/codecs/Makefile | 2 +
> sound/soc/codecs/pcm5102a.c | 69 ++++++++++++++++++++++
> 4 files changed, 88 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/sound/pcm5102a.txt
> create mode 100644 sound/soc/codecs/pcm5102a.c
>
> diff --git a/Documentation/devicetree/bindings/sound/pcm5102a.txt b/Documentation/devicetree/bindings/sound/pcm5102a.txt
> new file mode 100644
> index 0000000..c63ab0b6
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/sound/pcm5102a.txt
> @@ -0,0 +1,13 @@
> +PCM5102a audio CODECs
> +
> +These devices does not use I2C or SPI.
> +
> +Required properties:
> +
> + - compatible : set as "ti,pcm5102a"
> +
> +Examples:
> +
> + pcm5102a: pcm5102a {
> + compatible = "ti,pcm5102a";
> + };
> diff --git a/sound/soc/codecs/Kconfig b/sound/soc/codecs/Kconfig
> index 7ef3a0c..26ae0b5 100644
> --- a/sound/soc/codecs/Kconfig
> +++ b/sound/soc/codecs/Kconfig
> @@ -94,6 +94,7 @@ config SND_SOC_ALL_CODECS
> select SND_SOC_PCM3008
> select SND_SOC_PCM3168A_I2C if I2C
> select SND_SOC_PCM3168A_SPI if SPI_MASTER
> + select SND_SOC_PCM5102A
> select SND_SOC_PCM512x_I2C if I2C
> select SND_SOC_PCM512x_SPI if SPI_MASTER
> select SND_SOC_RT286 if I2C
> @@ -575,6 +576,9 @@ config SND_SOC_PCM3168A_SPI
> select SND_SOC_PCM3168A
> select REGMAP_SPI
>
> +config SND_SOC_PCM5102A
> + tristate
> +
> config SND_SOC_PCM512x
> tristate
>
> diff --git a/sound/soc/codecs/Makefile b/sound/soc/codecs/Makefile
> index 185a712..4532a74 100644
> --- a/sound/soc/codecs/Makefile
> +++ b/sound/soc/codecs/Makefile
> @@ -89,6 +89,7 @@ snd-soc-pcm3008-objs := pcm3008.o
> snd-soc-pcm3168a-objs := pcm3168a.o
> snd-soc-pcm3168a-i2c-objs := pcm3168a-i2c.o
> snd-soc-pcm3168a-spi-objs := pcm3168a-spi.o
> +snd-soc-pcm5102a-objs := pcm5102a.o
> snd-soc-pcm512x-objs := pcm512x.o
> snd-soc-pcm512x-i2c-objs := pcm512x-i2c.o
> snd-soc-pcm512x-spi-objs := pcm512x-spi.o
> @@ -298,6 +299,7 @@ obj-$(CONFIG_SND_SOC_PCM3008) += snd-soc-pcm3008.o
> obj-$(CONFIG_SND_SOC_PCM3168A) += snd-soc-pcm3168a.o
> obj-$(CONFIG_SND_SOC_PCM3168A_I2C) += snd-soc-pcm3168a-i2c.o
> obj-$(CONFIG_SND_SOC_PCM3168A_SPI) += snd-soc-pcm3168a-spi.o
> +obj-$(CONFIG_SND_SOC_PCM5102A) += snd-soc-pcm5102a.o
> obj-$(CONFIG_SND_SOC_PCM512x) += snd-soc-pcm512x.o
> obj-$(CONFIG_SND_SOC_PCM512x_I2C) += snd-soc-pcm512x-i2c.o
> obj-$(CONFIG_SND_SOC_PCM512x_SPI) += snd-soc-pcm512x-spi.o
> diff --git a/sound/soc/codecs/pcm5102a.c b/sound/soc/codecs/pcm5102a.c
> new file mode 100644
> index 0000000..ed51567
> --- /dev/null
> +++ b/sound/soc/codecs/pcm5102a.c
> @@ -0,0 +1,69 @@
> +/*
> + * Driver for the PCM5102A codec
> + *
> + * Author: Florian Meier <florian.meier-oZ8rN/sblLk@public.gmane.org>
> + * Copyright 2013
> + *
> + * This program is free software; you can redistribute it and/or
> + * modify it under the terms of the GNU General Public License
> + * version 2 as published by the Free Software Foundation.
> + *
> + * This program is distributed in the hope that it will be useful, but
> + * WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
> + * General Public License for more details.
> + */
> +
> +#include <linux/init.h>
> +#include <linux/module.h>
> +#include <linux/platform_device.h>
> +
> +#include <sound/soc.h>
> +
> +static struct snd_soc_dai_driver pcm5102a_dai = {
> + .name = "pcm5102a-hifi",
> + .playback = {
> + .channels_min = 2,
> + .channels_max = 2,
> + .rates = SNDRV_PCM_RATE_8000_192000,
> + .formats = SNDRV_PCM_FMTBIT_S16_LE |
> + SNDRV_PCM_FMTBIT_S24_LE |
> + SNDRV_PCM_FMTBIT_S32_LE
> + },
> +};
> +
> +static struct snd_soc_codec_driver soc_codec_dev_pcm5102a;
> +
> +static int pcm5102a_probe(struct platform_device *pdev)
> +{
> + return snd_soc_register_codec(&pdev->dev, &soc_codec_dev_pcm5102a,
> + &pcm5102a_dai, 1);
> +}
> +
> +static int pcm5102a_remove(struct platform_device *pdev)
> +{
> + snd_soc_unregister_codec(&pdev->dev);
> + return 0;
> +}
> +
> +static const struct of_device_id pcm5102a_of_match[] = {
> + { .compatible = "ti,pcm5102a", },
> + { }
> +};
> +MODULE_DEVICE_TABLE(of, pcm5102a_of_match);
> +
> +static struct platform_driver pcm5102a_codec_driver = {
> + .probe = pcm5102a_probe,
> + .remove = pcm5102a_remove,
> + .driver = {
> + .name = "pcm5102a-codec",
> + .owner = THIS_MODULE,
> + .of_match_table = pcm5102a_of_match,
> + },
> +};
> +
> +module_platform_driver(pcm5102a_codec_driver);
> +
> +MODULE_DESCRIPTION("ASoC PCM5102A codec driver");
> +MODULE_AUTHOR("Florian Meier <florian.meier-oZ8rN/sblLk@public.gmane.org>");
> +MODULE_LICENSE("GPL v2");
>
Hello,
There is nothing PCM5102A specific here, and it is pretty generic.
Wouldn't it be better to write instead a simple-i2s-codec for all the
classics I2S "hifi" DACs which will get the I2S/DAI parameters from DT ?
PCM510x, PCM5122 in HW mode, ES9023, a bunch of ES90xx implementations
etc... will use exactly the same code with only format and rate
variation. And for the rate, it is implementation dependent, even in the
case of pcm5102a.
Emmanuel.
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2016-05-22 21:29 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-13 9:14 [PATCH 0/2] ASoC: bcm2835: add support for hifiberry-dac kernel-TqfNSX0MhmxHKSADF0wUEw
[not found] ` <1463130853-25096-1-git-send-email-kernel-TqfNSX0MhmxHKSADF0wUEw@public.gmane.org>
2016-05-13 9:14 ` [PATCH 1/2] ASoC: pcm5102a: Add support for PCM5102A codec kernel-TqfNSX0MhmxHKSADF0wUEw
[not found] ` <1463130853-25096-2-git-send-email-kernel-TqfNSX0MhmxHKSADF0wUEw@public.gmane.org>
2016-05-16 16:26 ` Rob Herring
2016-05-22 21:29 ` Emmanuel Fusté [this message]
[not found] ` <34ab107e-10dc-fbd3-28d1-203c6411851c-QFKgK+z4sOrR7s880joybQ@public.gmane.org>
2016-05-23 17:08 ` [alsa-devel] " Mark Brown
[not found] ` <20160523170853.GB8206-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2016-05-23 20:37 ` Emmanuel Fusté
[not found] ` <312f8476-a437-04d9-3d16-38d7c7c233ad-QFKgK+z4sOrR7s880joybQ@public.gmane.org>
2016-05-23 22:29 ` Mark Brown
2016-05-24 14:44 ` Ricard Wanderlof
2016-05-24 22:33 ` Emmanuel Fusté
2016-05-13 9:14 ` [PATCH 2/2] ASoC: Add support for HifiBerry DAC kernel-TqfNSX0MhmxHKSADF0wUEw
[not found] ` <1463130853-25096-3-git-send-email-kernel-TqfNSX0MhmxHKSADF0wUEw@public.gmane.org>
2016-05-13 10:54 ` Mark Brown
[not found] ` <20160513105409.GB22038-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2016-05-13 12:20 ` Martin Sperl
[not found] ` <C139252A-23AC-4C37-A5E5-E0D7AF1DCC89-TqfNSX0MhmxHKSADF0wUEw@public.gmane.org>
2016-05-13 13:21 ` Mark Brown
2016-05-13 16:21 ` Martin Sperl
[not found] ` <20160513132113.GP22038-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2016-05-20 12:28 ` kernel-TqfNSX0MhmxHKSADF0wUEw
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=34ab107e-10dc-fbd3-28d1-203c6411851c@laposte.net \
--to=emmanuel.fuste-qfkgk+z4sorr7s880joybq@public.gmane.org \
--cc=alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw@public.gmane.org \
--cc=broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=florian.meier-oZ8rN/sblLk@public.gmane.org \
--cc=hias-vtPv7MOkFPkAvxtiuMwx3w@public.gmane.org \
--cc=kernel-TqfNSX0MhmxHKSADF0wUEw@public.gmane.org \
--cc=linux-rpi-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=mark.rutland-5wv7dgnIgG8@public.gmane.org \
--cc=pawel.moll-5wv7dgnIgG8@public.gmane.org \
--cc=perex-/Fr2/VpizcU@public.gmane.org \
--cc=robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=tiwai-IBi9RG/b67k@public.gmane.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox