[PATCH v1 2/2] ASoC: sdw_utils: add tac5272 support
From: Niranjan Holalu Yogendra
Date: Mon Sep 07 2026 - 23:29:53 EST
From: Niranjan H Y <niranjan.hy@xxxxxx>
Update soundiwre utils to support tac5272 which is
UAJ only variant.
Signed-off-by: Niranjan H Y <niranjan.hy@xxxxxx>
Reviewed-by: Bard Liao <yung-chuan.liao@xxxxxxxxxxxxxxx>
---
sound/soc/sdw_utils/soc_sdw_utils.c | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/sound/soc/sdw_utils/soc_sdw_utils.c b/sound/soc/sdw_utils/soc_sdw_utils.c
index 88031238c..ab0132031 100644
--- a/sound/soc/sdw_utils/soc_sdw_utils.c
+++ b/sound/soc/sdw_utils/soc_sdw_utils.c
@@ -81,6 +81,27 @@ static const struct snd_kcontrol_new rt700_controls[] = {
};
struct asoc_sdw_codec_info codec_info_list[] = {
+ {
+ .vendor_id = 0x0102,
+ .part_id = 0x5272,
+ .name_prefix = "tac5272",
+ .dais = {
+ {
+ /* UAJ only - no speaker or DMIC */
+ .direction = {true, true},
+ .dai_name = "tac5xx2-aif3",
+ .component_name = "tac5272",
+ .dai_type = SOC_SDW_DAI_TYPE_JACK,
+ .dailink = {SOC_SDW_JACK_OUT_DAI_ID, SOC_SDW_JACK_IN_DAI_ID},
+ .controls = generic_jack_controls,
+ .num_controls = ARRAY_SIZE(generic_jack_controls),
+ .widgets = generic_jack_widgets,
+ .num_widgets = ARRAY_SIZE(generic_jack_widgets),
+ .rtd_init = asoc_sdw_ti_sdca_jack_rtd_init,
+ },
+ },
+ .dai_num = 1,
+ },
{
.vendor_id = 0x0102,
.part_id = 0x5572,
--
2.34.1