ASoC: Intel: soc-acpi-intel-arl-match: Add RT713 + dual RT1320 support - #5935
Open
jgault87 wants to merge 1 commit into
Open
ASoC: Intel: soc-acpi-intel-arl-match: Add RT713 + dual RT1320 support#5935jgault87 wants to merge 1 commit into
jgault87 wants to merge 1 commit into
Conversation
Add a SoundWire machine-driver match entry for boards with an RT713
(SDCA "VB" jack/dmic variant) on link 0 and two RT1320 speaker amps
sharing link 2 (distinguished by unique_id 0/1, left/right).
This exact codec pairing is already supported on Panther Lake
(ptl_sdw_rt713_vb_l2_rt1320_l13) and Lunar Lake
(lnl_sdw_rt713_vb_l2_rt1320_l13); Arrow Lake was missing the
corresponding entry, so affected boards fell back to the generic
skl_hda_dsp_generic driver and only exposed HDMI outputs.
Confirmed on an MSI Raider 16 Max HX B2WI (MS-2651): the kernel now
correctly identifies the hardware and no longer falls back to the
generic HDA driver.
No dedicated topology has been built for this link0/link2 layout yet,
so sof_tplg_filename is set to a placeholder ("sof-arl-dummy.tplg")
rather than pointing at an existing but unrelated topology, per review
feedback.
Signed-off-by: JJ Gault <jgault87@gmail.com>
jgault87
requested review from
bardliao,
dbaluta,
kv2019i,
lgirdwood,
plbossart,
ranj063 and
ujfalusi
as code owners
September 11, 2026 22:22
Collaborator
|
Can one of the admins verify this patch?
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a SoundWire machine-driver match entry for Arrow Lake boards with an RT713 (SDCA "VB" jack/dmic variant) on link 0 and two RT1320 speaker amps sharing link 2 (unique_id 0/1, left/right).
Fixes #5934.
This codec pairing is already supported on Panther Lake (
ptl_sdw_rt713_vb_l2_rt1320_l13) and Lunar Lake (lnl_sdw_rt713_vb_l2_rt1320_l13); Arrow Lake was missing the corresponding entry, so affected boards fell back toskl_hda_dsp_genericand only exposed HDMI outputs.Hardware tested
MSI Raider 16 Max HX B2WI (MS-2651). Confirmed via kernel log that the machine driver now correctly identifies the hardware (requests the specified topology filename) instead of falling back to the generic HDA driver.
Topology filename
Per @bardliao's review on the linked issue,
sof_tplg_filenameis set to a placeholder (sof-arl-dummy.tplg) rather than pointing at the existing-but-unrelatedsof-arl-rt722-l0_rt1320-l2.tplg, since no topology has actually been built/validated for this specific link0/link2 layout yet.Note
I'm not in a position to build the actual topology myself (no access to SOF's topology2 toolchain setup), so this PR only covers the machine-driver detection side. Happy to test against a real topology if someone puts one together, or to answer any questions about the hardware.