* [PATCH] ASoC: sdw_utils: fix missing component_name for cs42l43 part_id 0x2A3B
@ 2026-06-10 4:17 Chia-Lin Kao (AceLan)
2026-06-12 15:08 ` Mark Brown
0 siblings, 1 reply; 3+ messages in thread
From: Chia-Lin Kao (AceLan) @ 2026-06-10 4:17 UTC (permalink / raw)
To: Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai,
Bard Liao, Charles Keepax, Peter Ujfalusi, Shuming Fan,
Niranjan H Y, Maciej Strozek, Mac Chiang, Richard Fitzgerald,
Miaoqian Lin
Cc: linux-sound, linux-kernel
commit 87a3f5c8ac20 ("ASoC: sdw_utils: cs42l43: allow spk component names
to be combined") moved spk:cs42l43-spk generation from rtd_init() into
the asoc_sdw_rtd_init() generic path by adding component_name to
codec_info_list entries. However, only the 0x4243 cs42l43 entry was
updated; the 0x2A3B entry (vendor_id 0x01fa, Cirrus Logic cs42l43 with
sidecar bridge) was missed.
Without component_name on the 0x2A3B dp6 DAI, asoc_sdw_rtd_init() never
accumulates spk_components and never appends 'spk:cs42l43-spk' (or its
sidecar alias 'spk:cs35l56-bridge') to card->components. The sof-soundwire
UCM regex ' spk:([a-z0-9]+...)' then fails to match, causing WirePlumber
to mark all HiFi profiles as unavailable=no and fall back to the Off
profile — resulting in Dummy Output in GNOME.
The existing sidecar redirect in asoc_sdw_rtd_init() already handles the
SOC_SDW_SIDECAR_AMPS case: when component_name is 'cs42l43-spk' and
sidecar amps are active, it substitutes 'cs35l56-bridge' into
card->components, which matches the existing cs35l56-bridge.conf UCM file.
Fixes: 87a3f5c8ac20 ("ASoC: sdw_utils: cs42l43: allow spk component names to be combined")
Signed-off-by: Chia-Lin Kao (AceLan) <acelan.kao@canonical.com>
---
sound/soc/sdw_utils/soc_sdw_utils.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sound/soc/sdw_utils/soc_sdw_utils.c b/sound/soc/sdw_utils/soc_sdw_utils.c
index 681452bb89f2b..3c3e7c89e976f 100644
--- a/sound/soc/sdw_utils/soc_sdw_utils.c
+++ b/sound/soc/sdw_utils/soc_sdw_utils.c
@@ -969,6 +969,7 @@ struct asoc_sdw_codec_info codec_info_list[] = {
{
.direction = {true, false},
.codec_name = "cs42l43-codec",
+ .component_name = "cs42l43-spk",
.dai_name = "cs42l43-dp6",
.dai_type = SOC_SDW_DAI_TYPE_AMP,
.dailink = {SOC_SDW_AMP_OUT_DAI_ID, SOC_SDW_UNUSED_DAI_ID},
--
2.53.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] ASoC: sdw_utils: fix missing component_name for cs42l43 part_id 0x2A3B
2026-06-10 4:17 [PATCH] ASoC: sdw_utils: fix missing component_name for cs42l43 part_id 0x2A3B Chia-Lin Kao (AceLan)
@ 2026-06-12 15:08 ` Mark Brown
2026-06-15 8:59 ` Charles Keepax
0 siblings, 1 reply; 3+ messages in thread
From: Mark Brown @ 2026-06-12 15:08 UTC (permalink / raw)
To: Liam Girdwood, Jaroslav Kysela, Takashi Iwai, Bard Liao,
Charles Keepax, Peter Ujfalusi, Shuming Fan, Niranjan H Y,
Maciej Strozek, Mac Chiang, Richard Fitzgerald, Miaoqian Lin,
Chia-Lin Kao (AceLan)
Cc: linux-sound, linux-kernel
On Wed, 10 Jun 2026 12:17:53 +0800, Chia-Lin Kao (AceLan) wrote:
> ASoC: sdw_utils: fix missing component_name for cs42l43 part_id 0x2A3B
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-7.2
Thanks!
[1/1] ASoC: sdw_utils: fix missing component_name for cs42l43 part_id 0x2A3B
https://git.kernel.org/broonie/sound/c/c429fbea6174
All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying
to this mail.
Thanks,
Mark
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] ASoC: sdw_utils: fix missing component_name for cs42l43 part_id 0x2A3B
2026-06-12 15:08 ` Mark Brown
@ 2026-06-15 8:59 ` Charles Keepax
0 siblings, 0 replies; 3+ messages in thread
From: Charles Keepax @ 2026-06-15 8:59 UTC (permalink / raw)
To: acelan.kao
Cc: Liam Girdwood, Jaroslav Kysela, Takashi Iwai, Bard Liao,
Peter Ujfalusi, Shuming Fan, Niranjan H Y, Maciej Strozek,
Mac Chiang, Richard Fitzgerald, Miaoqian Lin, linux-sound,
linux-kernel, broonie
On Fri, Jun 12, 2026 at 04:08:05PM +0100, Mark Brown wrote:
> On Wed, 10 Jun 2026 12:17:53 +0800, Chia-Lin Kao (AceLan) wrote:
> > ASoC: sdw_utils: fix missing component_name for cs42l43 part_id 0x2A3B
>
> Applied to
>
> https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-7.2
>
> Thanks!
>
> [1/1] ASoC: sdw_utils: fix missing component_name for cs42l43 part_id 0x2A3B
> https://git.kernel.org/broonie/sound/c/c429fbea6174
Hi Chia-Lin Kao,
Did you get a bounce email for this patch from the Cirrus folks
and if so can I get a copy of that?
It seems we are all on it but none of us received the email. I am
assuming something went wrong in our email stack but if there was
a bounce would be excellent to have something to point our IT
people at.
Thanks,
Charles
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-06-15 9:01 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-10 4:17 [PATCH] ASoC: sdw_utils: fix missing component_name for cs42l43 part_id 0x2A3B Chia-Lin Kao (AceLan)
2026-06-12 15:08 ` Mark Brown
2026-06-15 8:59 ` Charles Keepax
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox