* [PATCH v2 1/2] ASoC: dt-bindings: ti,tas2781: Add TAS5832 support @ 2026-04-14 1:54 Baojun Xu 2026-04-14 1:54 ` [PATCH v2 2/2] ASoC: tas2781: Add tas5832 support Baojun Xu 2026-04-14 6:56 ` [PATCH v2 1/2] ASoC: dt-bindings: ti,tas2781: Add TAS5832 support Krzysztof Kozlowski 0 siblings, 2 replies; 4+ messages in thread From: Baojun Xu @ 2026-04-14 1:54 UTC (permalink / raw) To: broonie, tiwai Cc: andriy.shevchenko, 13916275206, shenghao-ding, baojun.xu, linux-sound, linux-kernel, lgirdwood, robh, krzk+dt, conor+dt, devicetree, k-yi, henry.lo, robinchen, will-wang, jim.shil, toastcheng, chinkaiting TAS5832 is in same family with TAS5827/28/30. Signed-off-by: Baojun Xu <baojun.xu@ti.com> --- v2: - No update. --- Documentation/devicetree/bindings/sound/ti,tas2781.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/sound/ti,tas2781.yaml b/Documentation/devicetree/bindings/sound/ti,tas2781.yaml index f3a5638f4239..b21466bb0730 100644 --- a/Documentation/devicetree/bindings/sound/ti,tas2781.yaml +++ b/Documentation/devicetree/bindings/sound/ti,tas2781.yaml @@ -1,5 +1,5 @@ # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) -# Copyright (C) 2022 - 2025 Texas Instruments Incorporated +# Copyright (C) 2022 - 2026 Texas Instruments Incorporated %YAML 1.2 --- $id: http://devicetree.org/schemas/sound/ti,tas2781.yaml# @@ -107,6 +107,9 @@ properties: ti,tas5830: 65-W Stereo, Digital Input, High Efficiency Closed-Loop Class-D Amplifier with Class-H Algorithm + + ti,tas5832: 81-W Stereo, Digital Input, High Efficiency Closed-Loop + Class-D Amplifier with Class-H Algorithm oneOf: - items: - enum: @@ -128,6 +131,7 @@ properties: - ti,tas5827 - ti,tas5828 - ti,tas5830 + - ti,tas5832 - const: ti,tas2781 - enum: - ti,tas2781 @@ -264,6 +268,7 @@ allOf: - ti,tas5827 - ti,tas5828 - ti,tas5830 + - ti,tas5832 then: properties: reg: -- 2.25.1 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH v2 2/2] ASoC: tas2781: Add tas5832 support 2026-04-14 1:54 [PATCH v2 1/2] ASoC: dt-bindings: ti,tas2781: Add TAS5832 support Baojun Xu @ 2026-04-14 1:54 ` Baojun Xu 2026-04-14 6:56 ` [PATCH v2 1/2] ASoC: dt-bindings: ti,tas2781: Add TAS5832 support Krzysztof Kozlowski 1 sibling, 0 replies; 4+ messages in thread From: Baojun Xu @ 2026-04-14 1:54 UTC (permalink / raw) To: broonie, tiwai Cc: andriy.shevchenko, 13916275206, shenghao-ding, baojun.xu, linux-sound, linux-kernel, lgirdwood, robh, krzk+dt, conor+dt, devicetree, k-yi, henry.lo, robinchen, will-wang, jim.shil, toastcheng, chinkaiting TAS5832 is in same family with TAS5827/28/30. Signed-off-by: Baojun Xu <baojun.xu@ti.com> --- v2: - Follow the updated association protocol based on device name and id. --- include/sound/tas2781.h | 1 + sound/soc/codecs/tas2781-i2c.c | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/include/sound/tas2781.h b/include/sound/tas2781.h index e847cf51878c..95296bb4a33a 100644 --- a/include/sound/tas2781.h +++ b/include/sound/tas2781.h @@ -131,6 +131,7 @@ enum audio_device { TAS5827, TAS5828, TAS5830, + TAS5832, TAS_OTHERS, }; diff --git a/sound/soc/codecs/tas2781-i2c.c b/sound/soc/codecs/tas2781-i2c.c index c593f9da0c5b..86b591c489c2 100644 --- a/sound/soc/codecs/tas2781-i2c.c +++ b/sound/soc/codecs/tas2781-i2c.c @@ -119,6 +119,7 @@ static const struct i2c_device_id tasdevice_id[] = { { "tas5827", TAS5827 }, { "tas5828", TAS5828 }, { "tas5830", TAS5830 }, + { "tas5832", TAS5832 }, {} }; @@ -143,6 +144,7 @@ static const struct of_device_id tasdevice_of_match[] = { { .compatible = "ti,tas5827", .data = &tasdevice_id[TAS5827] }, { .compatible = "ti,tas5828", .data = &tasdevice_id[TAS5828] }, { .compatible = "ti,tas5830", .data = &tasdevice_id[TAS5830] }, + { .compatible = "ti,tas5832", .data = &tasdevice_id[TAS5832] }, {}, }; MODULE_DEVICE_TABLE(of, tasdevice_of_match); @@ -1746,6 +1748,7 @@ static void tasdevice_fw_ready(const struct firmware *fmw, case TAS5827: case TAS5828: case TAS5830: + case TAS5832: /* If DSP FW fail, DSP kcontrol won't be created. */ tasdevice_dsp_remove(tas_priv); } @@ -1917,6 +1920,7 @@ static int tasdevice_codec_probe(struct snd_soc_component *codec) case TAS5827: case TAS5828: case TAS5830: + case TAS5832: p = (struct snd_kcontrol_new *)tas5825_snd_controls; size = ARRAY_SIZE(tas5825_snd_controls); break; @@ -2104,6 +2108,7 @@ static const struct acpi_device_id tasdevice_acpi_match[] = { { "TXNW5827", (kernel_ulong_t)&tasdevice_id[TAS5827] }, { "TXNW5828", (kernel_ulong_t)&tasdevice_id[TAS5828] }, { "TXNW5830", (kernel_ulong_t)&tasdevice_id[TAS5830] }, + { "TXNW5832", (kernel_ulong_t)&tasdevice_id[TAS5832] }, {}, }; -- 2.25.1 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v2 1/2] ASoC: dt-bindings: ti,tas2781: Add TAS5832 support 2026-04-14 1:54 [PATCH v2 1/2] ASoC: dt-bindings: ti,tas2781: Add TAS5832 support Baojun Xu 2026-04-14 1:54 ` [PATCH v2 2/2] ASoC: tas2781: Add tas5832 support Baojun Xu @ 2026-04-14 6:56 ` Krzysztof Kozlowski 2026-04-14 7:53 ` [EXTERNAL] " Xu, Baojun 1 sibling, 1 reply; 4+ messages in thread From: Krzysztof Kozlowski @ 2026-04-14 6:56 UTC (permalink / raw) To: Baojun Xu Cc: broonie, tiwai, andriy.shevchenko, 13916275206, shenghao-ding, linux-sound, linux-kernel, lgirdwood, robh, krzk+dt, conor+dt, devicetree, k-yi, henry.lo, robinchen, will-wang, jim.shil, toastcheng, chinkaiting On Tue, Apr 14, 2026 at 09:54:40AM +0800, Baojun Xu wrote: > TAS5832 is in same family with TAS5827/28/30. > > Signed-off-by: Baojun Xu <baojun.xu@ti.com> > --- > v2: > - No update. > --- So you are going to just ignore review? Best regards, Krzysztof ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [EXTERNAL] Re: [PATCH v2 1/2] ASoC: dt-bindings: ti,tas2781: Add TAS5832 support 2026-04-14 6:56 ` [PATCH v2 1/2] ASoC: dt-bindings: ti,tas2781: Add TAS5832 support Krzysztof Kozlowski @ 2026-04-14 7:53 ` Xu, Baojun 0 siblings, 0 replies; 4+ messages in thread From: Xu, Baojun @ 2026-04-14 7:53 UTC (permalink / raw) To: Krzysztof Kozlowski Cc: broonie@kernel.org, tiwai@suse.de, andriy.shevchenko@linux.intel.com, 13916275206@139.com, Ding, Shenghao, linux-sound@vger.kernel.org, linux-kernel@vger.kernel.org, lgirdwood@gmail.com, robh@kernel.org, krzk+dt@kernel.org, conor+dt@kernel.org, devicetree@vger.kernel.org, Yi, Ken, Lo, Henry, Chen, Robin, Wang, Will, jim.shil@goertek.com, toastcheng@google.com, chinkaiting@google.com > From: Krzysztof Kozlowski <krzk@kernel.org> > Sent: 14 April 2026 14:56 > To: Xu, Baojun > > On Tue, Apr 14, 2026 at 09:54:40AM +0800, Baojun Xu wrote: > > TAS5832 is in same family with TAS5827/28/30. > > > > Signed-off-by: Baojun Xu <baojun.xu@ti.com> > > --- > > v2: > > - No update. > > --- > > So you are going to just ignore review? This patch was reviewed by Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>. I has resend the patch with reviewed tag, please ignore this email. > > Best regards, > Krzysztof > > Best Regards Jim ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-04-14 7:53 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-04-14 1:54 [PATCH v2 1/2] ASoC: dt-bindings: ti,tas2781: Add TAS5832 support Baojun Xu 2026-04-14 1:54 ` [PATCH v2 2/2] ASoC: tas2781: Add tas5832 support Baojun Xu 2026-04-14 6:56 ` [PATCH v2 1/2] ASoC: dt-bindings: ti,tas2781: Add TAS5832 support Krzysztof Kozlowski 2026-04-14 7:53 ` [EXTERNAL] " Xu, Baojun
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox