* [PATCH 1/2] ASoC: pcm512x: Adds bindings for TAS575x devices
@ 2023-09-07 16:08 Joerg Schambacher
2023-09-12 15:15 ` Rob Herring
0 siblings, 1 reply; 3+ messages in thread
From: Joerg Schambacher @ 2023-09-07 16:08 UTC (permalink / raw)
Cc: a-krasser, joerg, Joerg Schambacher, Liam Girdwood, Mark Brown,
Rob Herring, Krzysztof Kozlowski, Conor Dooley, alsa-devel,
devicetree, linux-kernel
The TAS5754/6 power amplifiers use the same pcm512x driver with
only minor restictions described in the bindings document.
Signed-off-by: Joerg Schambacher <joerg.hifiberry@gmail.com>
---
.../devicetree/bindings/sound/pcm512x.txt | 22 +++++++++++++++----
1 file changed, 18 insertions(+), 4 deletions(-)
diff --git a/Documentation/devicetree/bindings/sound/pcm512x.txt b/Documentation/devicetree/bindings/sound/pcm512x.txt
index 3aae3b41bd8e..b16cd0463695 100644
--- a/Documentation/devicetree/bindings/sound/pcm512x.txt
+++ b/Documentation/devicetree/bindings/sound/pcm512x.txt
@@ -1,12 +1,12 @@
-PCM512x audio CODECs
+PCM512x and TAS575x audio CODECs/amplifiers
These devices support both I2C and SPI (configured with pin strapping
-on the board).
+on the board). The TAS575x devices only support I2C.
Required properties:
- - compatible : One of "ti,pcm5121", "ti,pcm5122", "ti,pcm5141" or
- "ti,pcm5142"
+ - compatible : One of "ti,pcm5121", "ti,pcm5122", "ti,pcm5141",
+ "ti,pcm5142", "ti,tas5754" or "ti,tas5756"
- reg : the I2C address of the device for I2C, the chip select
number for SPI.
@@ -25,6 +25,7 @@ Optional properties:
through <6>. The device will be configured for clock input on the
given pll-in pin and PLL output on the given pll-out pin. An
external connection from the pll-out pin to the SCLK pin is assumed.
+ Caution: the TAS-desvices only support gpios 1,2 and 3
Examples:
@@ -50,3 +51,16 @@ Examples:
pll-in = <3>;
pll-out = <6>;
};
+
+ tas5756: tas5756@4f {
+ compatible = "ti,tas5756";
+ reg = <0x4f>;
+
+ AVDD-supply = <®_3v3_analog>;
+ DVDD-supply = <®_1v8>;
+ CPVDD-supply = <®_3v3>;
+
+ clocks = <&sck>;
+ pll-in = <1>;
+ pll-out = <2>;
+ };
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] ASoC: pcm512x: Adds bindings for TAS575x devices
2023-09-07 16:08 [PATCH 1/2] ASoC: pcm512x: Adds bindings for TAS575x devices Joerg Schambacher
@ 2023-09-12 15:15 ` Rob Herring
2023-09-21 10:30 ` Joerg Schambacher
0 siblings, 1 reply; 3+ messages in thread
From: Rob Herring @ 2023-09-12 15:15 UTC (permalink / raw)
To: Joerg Schambacher
Cc: a-krasser, joerg, Liam Girdwood, Mark Brown, Krzysztof Kozlowski,
Conor Dooley, alsa-devel, devicetree, linux-kernel
On Thu, Sep 07, 2023 at 06:08:51PM +0200, Joerg Schambacher wrote:
> The TAS5754/6 power amplifiers use the same pcm512x driver with
> only minor restictions described in the bindings document.
>
> Signed-off-by: Joerg Schambacher <joerg.hifiberry@gmail.com>
> ---
> .../devicetree/bindings/sound/pcm512x.txt | 22 +++++++++++++++----
> 1 file changed, 18 insertions(+), 4 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/sound/pcm512x.txt b/Documentation/devicetree/bindings/sound/pcm512x.txt
> index 3aae3b41bd8e..b16cd0463695 100644
> --- a/Documentation/devicetree/bindings/sound/pcm512x.txt
> +++ b/Documentation/devicetree/bindings/sound/pcm512x.txt
> @@ -1,12 +1,12 @@
> -PCM512x audio CODECs
> +PCM512x and TAS575x audio CODECs/amplifiers
>
> These devices support both I2C and SPI (configured with pin strapping
> -on the board).
> +on the board). The TAS575x devices only support I2C.
>
> Required properties:
>
> - - compatible : One of "ti,pcm5121", "ti,pcm5122", "ti,pcm5141" or
> - "ti,pcm5142"
> + - compatible : One of "ti,pcm5121", "ti,pcm5122", "ti,pcm5141",
> + "ti,pcm5142", "ti,tas5754" or "ti,tas5756"
>
> - reg : the I2C address of the device for I2C, the chip select
> number for SPI.
> @@ -25,6 +25,7 @@ Optional properties:
> through <6>. The device will be configured for clock input on the
> given pll-in pin and PLL output on the given pll-out pin. An
> external connection from the pll-out pin to the SCLK pin is assumed.
> + Caution: the TAS-desvices only support gpios 1,2 and 3
>
> Examples:
>
> @@ -50,3 +51,16 @@ Examples:
> pll-in = <3>;
> pll-out = <6>;
> };
> +
> + tas5756: tas5756@4f {
> + compatible = "ti,tas5756";
Is there anything new here? Just a different compatible doesn't justify
another example.
With that dropped,
Reviewed-by: Rob Herring <robh@kernel.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] ASoC: pcm512x: Adds bindings for TAS575x devices
2023-09-12 15:15 ` Rob Herring
@ 2023-09-21 10:30 ` Joerg Schambacher
0 siblings, 0 replies; 3+ messages in thread
From: Joerg Schambacher @ 2023-09-21 10:30 UTC (permalink / raw)
To: Rob Herring
Cc: a-krasser, joerg, Liam Girdwood, Mark Brown, Krzysztof Kozlowski,
Conor Dooley, alsa-devel, devicetree, linux-kernel
Am 12.09.2023 um 10:15 hat Rob Herring geschrieben:
> On Thu, Sep 07, 2023 at 06:08:51PM +0200, Joerg Schambacher wrote:
> > The TAS5754/6 power amplifiers use the same pcm512x driver with
> > only minor restictions described in the bindings document.
> >
> > Signed-off-by: Joerg Schambacher <joerg.hifiberry@gmail.com>
> > ---
> > .../devicetree/bindings/sound/pcm512x.txt | 22 +++++++++++++++----
> > 1 file changed, 18 insertions(+), 4 deletions(-)
> >
> > diff --git a/Documentation/devicetree/bindings/sound/pcm512x.txt b/Documentation/devicetree/bindings/sound/pcm512x.txt
> > index 3aae3b41bd8e..b16cd0463695 100644
> > --- a/Documentation/devicetree/bindings/sound/pcm512x.txt
> > +++ b/Documentation/devicetree/bindings/sound/pcm512x.txt
> > @@ -1,12 +1,12 @@
> > -PCM512x audio CODECs
> > +PCM512x and TAS575x audio CODECs/amplifiers
> >
> > These devices support both I2C and SPI (configured with pin strapping
> > -on the board).
> > +on the board). The TAS575x devices only support I2C.
> >
> > Required properties:
> >
> > - - compatible : One of "ti,pcm5121", "ti,pcm5122", "ti,pcm5141" or
> > - "ti,pcm5142"
> > + - compatible : One of "ti,pcm5121", "ti,pcm5122", "ti,pcm5141",
> > + "ti,pcm5142", "ti,tas5754" or "ti,tas5756"
> >
> > - reg : the I2C address of the device for I2C, the chip select
> > number for SPI.
> > @@ -25,6 +25,7 @@ Optional properties:
> > through <6>. The device will be configured for clock input on the
> > given pll-in pin and PLL output on the given pll-out pin. An
> > external connection from the pll-out pin to the SCLK pin is assumed.
> > + Caution: the TAS-desvices only support gpios 1,2 and 3
> >
> > Examples:
> >
> > @@ -50,3 +51,16 @@ Examples:
> > pll-in = <3>;
> > pll-out = <6>;
> > };
> > +
> > + tas5756: tas5756@4f {
> > + compatible = "ti,tas5756";
>
> Is there anything new here? Just a different compatible doesn't justify
> another example.
>
> With that dropped,
>
> Reviewed-by: Rob Herring <robh@kernel.org>
Thanks for feedback. Actually, there is nothing really new. More to show
the reduced availability of GPIOs. I'm preparing a new version of the
patch and I will drop the example.
--
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-09-21 17:49 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-07 16:08 [PATCH 1/2] ASoC: pcm512x: Adds bindings for TAS575x devices Joerg Schambacher
2023-09-12 15:15 ` Rob Herring
2023-09-21 10:30 ` Joerg Schambacher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).