* [PATCH] ASoC: Intel: soc-acpi-intel-ptl-match: add rt721_l3_rt1320_l3
@ 2026-08-15 18:27 Sataporn
2026-08-17 4:42 ` Liao, Bard
2026-08-17 15:56 ` Mark Brown
0 siblings, 2 replies; 7+ messages in thread
From: Sataporn @ 2026-08-15 18:27 UTC (permalink / raw)
To: Bard Liao, Pierre-Louis Bossart, Peter Ujfalusi, Mark Brown,
linux-sound
Cc: linux-kernel, Sataporn
The Lenovo Yoga Slim 7i 14IPH11 (DMI product 83QM) drives four speakers
from two amplifiers on SoundWire link 3:
sdw:0:3:025d:0721:01 RT721, CompanionAmp function only
sdw:0:3:025d:1320:01 RT1320, SmartAmp function
This chassis has no headset jack, and the microphones are the PCH DMIC
array, so no jack or mic function is described for either peripheral.
The Panther Lake match table has no RT721 entry at all: the RT1320 is
described on links 1, 2 and 3, but only ever paired with RT712, RT713
or RT722. This layout therefore matches nothing and the driver falls
back to the default SoundWire machine with function topologies.
That fallback misbehaves here, because the firmware also declares a
peripheral that is not fitted:
sdw:0:3:025d:0722:01 RT722, never attaches, reported UNATTACHED
Its ACPI device (SWD0, _ADR 0x000330025D072201, in SSDT "LENOVO CB-01")
has no _STA method, so it is enumerated unconditionally on every SKU
sharing this mainboard (LNVNB161216), which also ships in CS42L43 and
RT722 variants. It carries UAJ, SmartMic, HID and SmartAmp functions,
which appear to describe a sibling SKU that has a headset jack. The
default machine driver selects it for the jack, microphone and speaker
functions:
Components : ... cfg-amp:3 ... spk:rt721 rt1320 rt722 hs:rt722 mic:rt722
and every stream then fails when its ports are programmed:
rt722-sdca sdw:0:3:025d:0722:01: DPN_PortCtrl register write failed for port 1
soundwire sdw-master-0-3: Program transport params failed: -61
soundwire sdw-master-0-3: Program params failed: -61
SDW3-Playback-SimpleJack: ASoC error (-61): at snd_soc_link_prepare()
Speakers and microphones are silent; only HDMI works.
Add an entry describing the two amplifiers. They share aggregation
group 1, following the existing rt712_vb_l3_rt1320_l3 entry: with
separate groups each device asks for a DAI link named
"SDW3-Playback-SmartAmp" and the second registration fails with
-EEXIST.
The RT721 needs its own speaker endpoint rather than spk_l_endpoint,
because the endpoint number indexes the codec DAI array and the RT721
exposes its amplifier as endpoint 1: endpoint 0 is the jack, so
reusing spk_l_endpoint creates a jack DAI link and no amplifier at
all.
No monolithic topology exists for this combination, so sof_tplg_filename
is set to the "dummy" name that hda_sdw_machine_select() already uses for
the default machine. Without it, load_topology() runs with no_fallback
clear, and sof_sdw_get_tplg_files() abandons the function topologies
entirely on reaching the SSP2-BT link, which has no separate topology
yet:
sof_sdw sof_sdw: dai_link SSP2-BT id 8
sof_sdw sof_sdw: dai_link SSP2-BT is not supported by separated tplg yet
falling back to a monolithic file that does not exist. Marking the
absence of a fallback lets that link be skipped instead, and keeps BT
offload enabled.
snd_soc_acpi_sdw_link_slaves_found() only requires the peripherals named
in the table to be present, so the unfitted RT722 does not prevent the
match. An explicit entry stops the machine driver selecting it, without
needing a quirk for the firmware bug itself.
Signed-off-by: Sataporn <excursively@gmail.com>
---
alsa-info with this patch applied:
https://alsa-project.org/db/?f=8b9e4c24389cc520c77b3ece54edcbfbb50d07c6
diff --git a/sound/soc/intel/common/soc-acpi-intel-ptl-match.c b/sound/soc/intel/common/soc-acpi-intel-ptl-match.c
index f7694b2..c3ce060 100644
--- a/sound/soc/intel/common/soc-acpi-intel-ptl-match.c
+++ b/sound/soc/intel/common/soc-acpi-intel-ptl-match.c
@@ -92,6 +92,18 @@ static const struct snd_soc_acpi_endpoint spk_r_endpoint = {
.group_id = 1,
};
+/*
+ * The RT721 exposes its amplifier as endpoint 1; endpoint 0 is the jack and
+ * endpoint 2 the DMIC array, neither of which is wired up on boards that use
+ * the codec as a speaker amplifier only.
+ */
+static const struct snd_soc_acpi_endpoint rt721_spk_l_endpoint = {
+ .num = 1,
+ .aggregated = 1,
+ .group_position = 0,
+ .group_id = 1,
+};
+
static const struct snd_soc_acpi_endpoint jack_dmic_endpoints[] = {
/* Jack Endpoint */
{
@@ -211,6 +223,15 @@ static const struct snd_soc_acpi_adr_device rt712_vb_3_group1_adr[] = {
}
};
+static const struct snd_soc_acpi_adr_device rt721_3_group1_adr[] = {
+ {
+ .adr = 0x000330025D072101ull,
+ .num_endpoints = 1,
+ .endpoints = &rt721_spk_l_endpoint,
+ .name_prefix = "rt721"
+ }
+};
+
static const struct snd_soc_acpi_adr_device rt713_vb_2_adr[] = {
{
.adr = 0x000230025d071301ull,
@@ -437,6 +458,20 @@ static const struct snd_soc_acpi_link_adr ptl_sdw_rt712_vb_l3_rt1320_l3[] = {
{}
};
+static const struct snd_soc_acpi_link_adr ptl_sdw_rt721_l3_rt1320_l3[] = {
+ {
+ .mask = BIT(3),
+ .num_adr = ARRAY_SIZE(rt721_3_group1_adr),
+ .adr_d = rt721_3_group1_adr,
+ },
+ {
+ .mask = BIT(3),
+ .num_adr = ARRAY_SIZE(rt1320_3_group1_adr),
+ .adr_d = rt1320_3_group1_adr,
+ },
+ {}
+};
+
/* this table is used when there is no I2S codec present */
struct snd_soc_acpi_mach snd_soc_acpi_intel_ptl_sdw_machines[] = {
/* Order Priority: mockup > most links > most bit link-mask > alphabetical */
@@ -531,6 +566,19 @@ struct snd_soc_acpi_mach snd_soc_acpi_intel_ptl_sdw_machines[] = {
.sof_tplg_filename = "sof-ptl-rt712-l3-rt1320-l3.tplg",
.get_function_tplg_files = sof_sdw_get_tplg_files,
},
+ {
+ .link_mask = BIT(3),
+ .links = ptl_sdw_rt721_l3_rt1320_l3,
+ .drv_name = "sof_sdw",
+ /*
+ * No monolithic topology exists for this combination; the
+ * "dummy" name marks that, so the function topologies are
+ * used and functions without one are skipped rather than
+ * failing the card.
+ */
+ .sof_tplg_filename = "sof-ptl-dummy.tplg",
+ .get_function_tplg_files = sof_sdw_get_tplg_files,
+ },
{},
};
EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_ptl_sdw_machines);
--
2.43.0
--
2.51.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* RE: [PATCH] ASoC: Intel: soc-acpi-intel-ptl-match: add rt721_l3_rt1320_l3
2026-08-15 18:27 [PATCH] ASoC: Intel: soc-acpi-intel-ptl-match: add rt721_l3_rt1320_l3 Sataporn
@ 2026-08-17 4:42 ` Liao, Bard
2026-08-17 9:00 ` Sataporn Saijai
2026-08-17 15:56 ` Mark Brown
1 sibling, 1 reply; 7+ messages in thread
From: Liao, Bard @ 2026-08-17 4:42 UTC (permalink / raw)
To: Sataporn, Bard Liao, Pierre-Louis Bossart, Peter Ujfalusi,
Mark Brown, linux-sound@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, Ujfalusi, Peter
> -----Original Message-----
> From: Sataporn <excursively@gmail.com>
> Sent: Sunday, August 16, 2026 2:28 AM
> To: Bard Liao <yung-chuan.liao@linux.intel.com>; Pierre-Louis Bossart <pierre-
> louis.bossart@linux.dev>; Peter Ujfalusi <peter.ujfalusi@linux.intel.com>;
> Mark Brown <broonie@kernel.org>; linux-sound@vger.kernel.org
> Cc: linux-kernel@vger.kernel.org; Sataporn <excursively@gmail.com>
> Subject: [PATCH] ASoC: Intel: soc-acpi-intel-ptl-match: add
> rt721_l3_rt1320_l3
>
> The Lenovo Yoga Slim 7i 14IPH11 (DMI product 83QM) drives four speakers
> from two amplifiers on SoundWire link 3:
>
> sdw:0:3:025d:0721:01 RT721, CompanionAmp function only
> sdw:0:3:025d:1320:01 RT1320, SmartAmp function
>
> This chassis has no headset jack, and the microphones are the PCH DMIC
> array, so no jack or mic function is described for either peripheral.
>
> The Panther Lake match table has no RT721 entry at all: the RT1320 is
> described on links 1, 2 and 3, but only ever paired with RT712, RT713
> or RT722. This layout therefore matches nothing and the driver falls
> back to the default SoundWire machine with function topologies.
>
> That fallback misbehaves here, because the firmware also declares a
> peripheral that is not fitted:
>
> sdw:0:3:025d:0722:01 RT722, never attaches, reported UNATTACHED
>
> Its ACPI device (SWD0, _ADR 0x000330025D072201, in SSDT "LENOVO CB-
> 01")
> has no _STA method, so it is enumerated unconditionally on every SKU
> sharing this mainboard (LNVNB161216), which also ships in CS42L43 and
> RT722 variants. It carries UAJ, SmartMic, HID and SmartAmp functions,
> which appear to describe a sibling SKU that has a headset jack. The
> default machine driver selects it for the jack, microphone and speaker
> functions:
>
> Components : ... cfg-amp:3 ... spk:rt721 rt1320 rt722 hs:rt722 mic:rt722
>
> and every stream then fails when its ports are programmed:
>
> rt722-sdca sdw:0:3:025d:0722:01: DPN_PortCtrl register write failed for port
> 1
> soundwire sdw-master-0-3: Program transport params failed: -61
> soundwire sdw-master-0-3: Program params failed: -61
> SDW3-Playback-SimpleJack: ASoC error (-61): at snd_soc_link_prepare()
>
Can you add the SKU to drivers/soundwire/dmi-quirks.c?
Like 4dab2b904414 ("soundwire: dmi-quirks: Disable ghost Realtek devices ")
> Speakers and microphones are silent; only HDMI works.
>
> Add an entry describing the two amplifiers. They share aggregation
> group 1, following the existing rt712_vb_l3_rt1320_l3 entry: with
> separate groups each device asks for a DAI link named
> "SDW3-Playback-SmartAmp" and the second registration fails with
> -EEXIST.
>
> The RT721 needs its own speaker endpoint rather than spk_l_endpoint,
> because the endpoint number indexes the codec DAI array and the RT721
> exposes its amplifier as endpoint 1: endpoint 0 is the jack, so
> reusing spk_l_endpoint creates a jack DAI link and no amplifier at
> all.
>
> No monolithic topology exists for this combination, so sof_tplg_filename
> is set to the "dummy" name that hda_sdw_machine_select() already uses for
> the default machine. Without it, load_topology() runs with no_fallback
> clear, and sof_sdw_get_tplg_files() abandons the function topologies
> entirely on reaching the SSP2-BT link, which has no separate topology
> yet:
>
> sof_sdw sof_sdw: dai_link SSP2-BT id 8
> sof_sdw sof_sdw: dai_link SSP2-BT is not supported by separated tplg yet
>
> falling back to a monolithic file that does not exist. Marking the
> absence of a fallback lets that link be skipped instead, and keeps BT
> offload enabled.
Can you check if c8f3c9fa75ff ("ASoC: soc-acpi / SOF: Add best_effort
flag to get_function_tplg_files op ") is in your kernel?
In theory, it will skip the BT link and will load other function
topologies.
>
> snd_soc_acpi_sdw_link_slaves_found() only requires the peripherals named
> in the table to be present, so the unfitted RT722 does not prevent the
> match. An explicit entry stops the machine driver selecting it, without
> needing a quirk for the firmware bug itself.
>
> Signed-off-by: Sataporn <excursively@gmail.com>
> ---
> alsa-info with this patch applied:
> https://alsa-
> project.org/db/?f=8b9e4c24389cc520c77b3ece54edcbfbb50d07c6
>
> diff --git a/sound/soc/intel/common/soc-acpi-intel-ptl-match.c
> b/sound/soc/intel/common/soc-acpi-intel-ptl-match.c
> index f7694b2..c3ce060 100644
> --- a/sound/soc/intel/common/soc-acpi-intel-ptl-match.c
> +++ b/sound/soc/intel/common/soc-acpi-intel-ptl-match.c
> @@ -92,6 +92,18 @@ static const struct snd_soc_acpi_endpoint
> spk_r_endpoint = {
> .group_id = 1,
> };
>
> +/*
> + * The RT721 exposes its amplifier as endpoint 1; endpoint 0 is the jack and
> + * endpoint 2 the DMIC array, neither of which is wired up on boards that use
> + * the codec as a speaker amplifier only.
> + */
> +static const struct snd_soc_acpi_endpoint rt721_spk_l_endpoint = {
> + .num = 1,
> + .aggregated = 1,
> + .group_position = 0,
> + .group_id = 1,
> +};
> +
> static const struct snd_soc_acpi_endpoint jack_dmic_endpoints[] = {
> /* Jack Endpoint */
> {
> @@ -211,6 +223,15 @@ static const struct snd_soc_acpi_adr_device
> rt712_vb_3_group1_adr[] = {
> }
> };
>
> +static const struct snd_soc_acpi_adr_device rt721_3_group1_adr[] = {
> + {
> + .adr = 0x000330025D072101ull,
> + .num_endpoints = 1,
> + .endpoints = &rt721_spk_l_endpoint,
> + .name_prefix = "rt721"
> + }
> +};
> +
> static const struct snd_soc_acpi_adr_device rt713_vb_2_adr[] = {
> {
> .adr = 0x000230025d071301ull,
> @@ -437,6 +458,20 @@ static const struct snd_soc_acpi_link_adr
> ptl_sdw_rt712_vb_l3_rt1320_l3[] = {
> {}
> };
>
> +static const struct snd_soc_acpi_link_adr ptl_sdw_rt721_l3_rt1320_l3[] = {
> + {
> + .mask = BIT(3),
> + .num_adr = ARRAY_SIZE(rt721_3_group1_adr),
> + .adr_d = rt721_3_group1_adr,
> + },
> + {
> + .mask = BIT(3),
> + .num_adr = ARRAY_SIZE(rt1320_3_group1_adr),
> + .adr_d = rt1320_3_group1_adr,
> + },
> + {}
> +};
> +
> /* this table is used when there is no I2S codec present */
> struct snd_soc_acpi_mach snd_soc_acpi_intel_ptl_sdw_machines[] = {
> /* Order Priority: mockup > most links > most bit link-mask > alphabetical */
> @@ -531,6 +566,19 @@ struct snd_soc_acpi_mach
> snd_soc_acpi_intel_ptl_sdw_machines[] = {
> .sof_tplg_filename = "sof-ptl-rt712-l3-rt1320-l3.tplg",
> .get_function_tplg_files = sof_sdw_get_tplg_files,
> },
> + {
> + .link_mask = BIT(3),
> + .links = ptl_sdw_rt721_l3_rt1320_l3,
> + .drv_name = "sof_sdw",
> + /*
> + * No monolithic topology exists for this combination; the
> + * "dummy" name marks that, so the function topologies are
> + * used and functions without one are skipped rather than
> + * failing the card.
> + */
> + .sof_tplg_filename = "sof-ptl-dummy.tplg",
> + .get_function_tplg_files = sof_sdw_get_tplg_files,
> + },
> {},
> };
> EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_ptl_sdw_machines);
> --
> 2.43.0
>
> --
> 2.51.0
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] ASoC: Intel: soc-acpi-intel-ptl-match: add rt721_l3_rt1320_l3
2026-08-17 4:42 ` Liao, Bard
@ 2026-08-17 9:00 ` Sataporn Saijai
0 siblings, 0 replies; 7+ messages in thread
From: Sataporn Saijai @ 2026-08-17 9:00 UTC (permalink / raw)
To: Liao, Bard
Cc: Bard Liao, Pierre-Louis Bossart, Peter Ujfalusi, Mark Brown,
linux-sound@vger.kernel.org, linux-kernel@vger.kernel.org,
Ujfalusi, Peter
On Mon, Aug 17, 2026 at 11:42 AM Liao, Bard <bard.liao@intel.com> wrote:
> Can you add the SKU to drivers/soundwire/dmi-quirks.c?
> Like 4dab2b904414 ("soundwire: dmi-quirks: Disable ghost Realtek devices ")
Done. ghost_realtek already has the exact address, so only the DMI match
for 83QM was needed. Tested - the RT722 no longer appears under
/sys/bus/soundwire/devices/. Will send as patch 1/2 in v2.
> Can you check if c8f3c9fa75ff ("ASoC: soc-acpi / SOF: Add best_effort
> flag to get_function_tplg_files op ") is in your kernel?
> In theory, it will skip the BT link and will load other function
> topologies.
It is in my tree (7.2.0-rc7), but best_effort is only ever set from the
topology name:
topology.c: bool no_fallback = strstr(file, "dummy");
With a real sof_tplg_filename it is false, so sof_sdw_get_tplg_files()
returns 0 at SSP2-BT instead of skipping it, and the card fails to probe.
The comment above that line describes 'dummy' as meaning no monolithic
fallback exists, which is the case here - so I think it is the intended
mechanism, though this would be the first machine entry to use it. Happy
to do it differently if you prefer.
Thanks,
Sataporn
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] ASoC: Intel: soc-acpi-intel-ptl-match: add rt721_l3_rt1320_l3
2026-08-15 18:27 [PATCH] ASoC: Intel: soc-acpi-intel-ptl-match: add rt721_l3_rt1320_l3 Sataporn
2026-08-17 4:42 ` Liao, Bard
@ 2026-08-17 15:56 ` Mark Brown
2026-08-18 3:53 ` Sataporn Saijai
1 sibling, 1 reply; 7+ messages in thread
From: Mark Brown @ 2026-08-17 15:56 UTC (permalink / raw)
To: Sataporn
Cc: Bard Liao, Pierre-Louis Bossart, Peter Ujfalusi, linux-sound,
linux-kernel
[-- Attachment #1: Type: text/plain, Size: 1015 bytes --]
On Sun, Aug 16, 2026 at 01:27:47AM +0700, Sataporn wrote:
> Add an entry describing the two amplifiers. They share aggregation
> group 1, following the existing rt712_vb_l3_rt1320_l3 entry: with
> separate groups each device asks for a DAI link named
> "SDW3-Playback-SmartAmp" and the second registration fails with
> -EEXIST.
> + {
> + .link_mask = BIT(3),
> + .links = ptl_sdw_rt721_l3_rt1320_l3,
> + .drv_name = "sof_sdw",
> + /*
> + * No monolithic topology exists for this combination; the
> + * "dummy" name marks that, so the function topologies are
> + * used and functions without one are skipped rather than
> + * failing the card.
> + */
> + .sof_tplg_filename = "sof-ptl-dummy.tplg",
> + .get_function_tplg_files = sof_sdw_get_tplg_files,
> + },
Will this match on other systems that have additional components, or
more SDCA functions active?
> {},
> };
> EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_ptl_sdw_machines);
> --
> 2.43.0
>
> --
> 2.51.0
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] ASoC: Intel: soc-acpi-intel-ptl-match: add rt721_l3_rt1320_l3
2026-08-17 15:56 ` Mark Brown
@ 2026-08-18 3:53 ` Sataporn Saijai
2026-08-18 15:01 ` Mark Brown
0 siblings, 1 reply; 7+ messages in thread
From: Sataporn Saijai @ 2026-08-18 3:53 UTC (permalink / raw)
To: Mark Brown
Cc: Bard Liao, Pierre-Louis Bossart, Peter Ujfalusi, linux-sound,
linux-kernel
On Mon, Aug 17, 2026 at 10:56 PM Mark Brown <broonie@kernel.org> wrote:
> Will this match on other systems that have additional components, or
> more SDCA functions active?
Yes, it is loose. snd_soc_acpi_sdw_link_slaves_found() only checks
specific device IDs (like part_id, mfg_id, sdw_version, and link_id)
and ignores any other peripheral hardware.
I tested this by adding a temporary
ptl_sdw_rt721_l3_rt722_l3_rt1320_l3 entry above the
ptl_sdw_rt721_l3_rt1320_l3 entry. I kept the same kernel, only
changing the dmi-quirks.c:
with the quirk: spk:rt721+rt1320 no errors, audio works properly.
without the quirk: spk:rt721+rt722+rt1320 hs:rt722 mic:rt722, the
system fails at prepare with -61 and there is no audio.
This is because an entry covering all three parts would match this
machine on the ghost RT722, even though it never attaches. The failure
is silent, the card registers and aplay reports success.
I could not test the cross-link case, this machine only has link 3 populated.
For the SDCA functions, I will use jack_amp_g1_dmic_endpoints for the
RT721 instead of amp only. This machine only declares the amp and the
codec driver skips the other two, so any board wiring the jack and
DMICs gets those links as well:
rt721-sdca sdw:0:3:025d:0721:01: SDCA device function for DAI type 0
not supported, skip endpoint
rt721-sdca sdw:0:3:025d:0721:01: SDCA device function for DAI type 2
not supported, skip endpoint
Initially, I looked into updating the match table. But then I figured
out it isn't needed, just adding the quirk is enough.
No SoundWire machine driver found for the ACPI-reported configuration:
link 3 mfg_id 0x025d part_id 0x0721 version 0x3
link 3 mfg_id 0x025d part_id 0x1320 version 0x3
Use SoundWire default machine driver with function topologies
The default machine driver builds the same configuration once the
ghost is removed, so the match entry is not required on this machine.
By the way, I noticed ptl_rt721_l0 and ptl_rt721_l3 were dropped in
7.2 (they were there in 6.18). Was that removed on purpose to use the
default machine driver? If so I will just send the DMI quirk.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] ASoC: Intel: soc-acpi-intel-ptl-match: add rt721_l3_rt1320_l3
2026-08-18 3:53 ` Sataporn Saijai
@ 2026-08-18 15:01 ` Mark Brown
2026-08-18 18:24 ` Sataporn Saijai
0 siblings, 1 reply; 7+ messages in thread
From: Mark Brown @ 2026-08-18 15:01 UTC (permalink / raw)
To: Sataporn Saijai
Cc: Bard Liao, Pierre-Louis Bossart, Peter Ujfalusi, linux-sound,
linux-kernel
[-- Attachment #1: Type: text/plain, Size: 365 bytes --]
On Tue, Aug 18, 2026 at 10:53:12AM +0700, Sataporn Saijai wrote:
> By the way, I noticed ptl_rt721_l0 and ptl_rt721_l3 were dropped in
> 7.2 (they were there in 6.18). Was that removed on purpose to use the
> default machine driver? If so I will just send the DMI quirk.
That's the general idea, and if a DMI quirk does the right thing that's
going to be better.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] ASoC: Intel: soc-acpi-intel-ptl-match: add rt721_l3_rt1320_l3
2026-08-18 15:01 ` Mark Brown
@ 2026-08-18 18:24 ` Sataporn Saijai
0 siblings, 0 replies; 7+ messages in thread
From: Sataporn Saijai @ 2026-08-18 18:24 UTC (permalink / raw)
To: Mark Brown
Cc: Bard Liao, Pierre-Louis Bossart, Peter Ujfalusi, linux-sound,
linux-kernel
On Tue, Aug 18, 2026 at 10:01 PM Mark Brown <broonie@kernel.org> wrote:
> That's the general idea, and if a DMI quirk does the right thing that's
> going to be better.
Thank you
Dropping this, sent separately as:
https://lore.kernel.org/linux-sound/20260818182020.143096-1-excursively@gmail.com/
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-08-18 18:24 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-15 18:27 [PATCH] ASoC: Intel: soc-acpi-intel-ptl-match: add rt721_l3_rt1320_l3 Sataporn
2026-08-17 4:42 ` Liao, Bard
2026-08-17 9:00 ` Sataporn Saijai
2026-08-17 15:56 ` Mark Brown
2026-08-18 3:53 ` Sataporn Saijai
2026-08-18 15:01 ` Mark Brown
2026-08-18 18:24 ` Sataporn Saijai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox