diff mbox series

[for,v6.15] ASoC: Intel: sof_sdw: Add quirk for Asus Zenbook S16

Message ID 20250404133213.4658-1-peter.ujfalusi@linux.intel.com (mailing list archive)
State Accepted
Commit dfcf3dde45df383f2695c3d3475fec153d2c7dbe
Headers show
Series [for,v6.15] ASoC: Intel: sof_sdw: Add quirk for Asus Zenbook S16 | expand

Commit Message

Péter Ujfalusi April 4, 2025, 1:32 p.m. UTC
Asus laptops with sound PCI subsystem ID 1043:1f43 have the DMICs
connected to the host instead of the CS42L43 so need the
SOC_SDW_CODEC_MIC quirk.

Link: https://github.com/thesofproject/sof/issues/9930
Fixes: 084344970808 ("ASoC: Intel: sof_sdw: Add quirk for Asus Zenbook S14")
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
Reviewed-by: Bard Liao <yung-chuan.liao@linux.intel.com>
Reviewed-by: Simon Trimmer <simont@opensource.cirrus.com>
Cc: stable@vger.kernel.org
---
Hi,

The S16 variant of the Zenbook has 4 PCH connected DMICs and the new
topology needed for it is released alongside with the -2ch variant for
the S14.

Add a Fixes tag so this is backported to 6.14 since we have at least one
user with this laptop without audio support.

Regards,
Peter

 sound/soc/intel/boards/sof_sdw.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Mark Brown April 7, 2025, 11:49 p.m. UTC | #1
On Fri, 04 Apr 2025 16:32:13 +0300, Peter Ujfalusi wrote:
> Asus laptops with sound PCI subsystem ID 1043:1f43 have the DMICs
> connected to the host instead of the CS42L43 so need the
> SOC_SDW_CODEC_MIC quirk.
> 
> 

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next

Thanks!

[1/1] ASoC: Intel: sof_sdw: Add quirk for Asus Zenbook S16
      commit: dfcf3dde45df383f2695c3d3475fec153d2c7dbe

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
diff mbox series

Patch

diff --git a/sound/soc/intel/boards/sof_sdw.c b/sound/soc/intel/boards/sof_sdw.c
index 90dafa810b2e..095d08b3fc82 100644
--- a/sound/soc/intel/boards/sof_sdw.c
+++ b/sound/soc/intel/boards/sof_sdw.c
@@ -764,6 +764,7 @@  static const struct dmi_system_id sof_sdw_quirk_table[] = {
 
 static const struct snd_pci_quirk sof_sdw_ssid_quirk_table[] = {
 	SND_PCI_QUIRK(0x1043, 0x1e13, "ASUS Zenbook S14", SOC_SDW_CODEC_MIC),
+	SND_PCI_QUIRK(0x1043, 0x1f43, "ASUS Zenbook S16", SOC_SDW_CODEC_MIC),
 	{}
 };