mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Takashi Iwai <tiwai@suse.de>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Mark Brown <broonie@kernel.org>,
	Liam Girdwood <lgirdwood@gmail.com>,
	Linux Sound Mailing List <linux-sound@vger.kernel.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: [GIT PULL] sound fixes for 7.2-rc5
Date: Wed, 22 Jul 2026 11:15:38 +0200	[thread overview]
Message-ID: <87ldb3gzb9.wl-tiwai@suse.de> (raw)

Linus,

please pull sound fixes for v7.2-rc5 from:

  git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git tags/sound-7.2-rc5

The topmost commit is 9573818cc1b7ac22176d0a2b60bfbc440e94f7d5

----------------------------------------------------------------

sound fixes for 7.2-rc5

A collection of fixes that have been accumulated recently.
The amount is still "new normal", but all small fixes.
Mostly hardware-specific quirks, but including a few core fixes, too.

ALSA Core:
- Fix potential UAF and race fixes in ALSA timer core
- Fix sequencer queue timer cleanup to prevent leaks and double-free

HD-audio:
- Fix silent streams with Intel HDMI keep-alive silent mode
- Quirks for HP laptops (Pavilion x360, EliteBook 830 G8, ZBook 8
  G2a), Samsung 750XBE/730XBE, and Dell Pro QC1255, Alienware x16 R2,
  Lunnen Ground 14
- Properly validate ACPI mute object in CS35L41 HDA companion driver
- Reset calibration data size on failure in TAS2781 HDA driver.

USB-audio:
- Support FIXED_RATE quirk for JBL Quantum650 Wireless USB headset

ASoC:
- Intel SOF SoundWire board driver quirks for new Dell laptops
- DMI overrides and quirks for AMD ACP/YC platforms, including new
  ASUS TUF platforms and MSI Vector A16 HX laptops
- Skip sysclk reset for active DAIs in shutdown for FSL imx-card
- Fix spurious BCLK on resume by clearing BYP in FSL SAI driver
- Add playback-only quirk for H616 codec in Allwinner driver
- Fix Cirrus Logic CS35L56 potential probe deadlock
- Fix cache write-through on resume in FS210X codec
- Bound firmware description string parsing in TAS2781 codec driver
- Fix duplicate DAPM widget names for wideband DAI in BT-SCO codec

----------------------------------------------------------------

Antonio Ignacio Campos Ruiz (1):
      ASoC: amd: yc: Add DMI quirk for MSI Vector A16 HX A8WIG

Chancel Liu (2):
      ASoC: fsl_sai: Fix spurious BCLK on resume by clearing BYP
      ASoC: fsl: imx-card: Skip sysclk reset for active DAIs in shutdown

Charles Keepax (1):
      ASoC: Intel: sof_sdw: Add quirks for new Dell laptops

Chen-Yu Tsai (1):
      ASoC: sun4i-codec: Set quirks.playback_only for H616 codec

Chris Chiu (1):
      ALSA: hda/realtek: Add inverted LED quirk for HP ZBook 8 G2a

Daniel C. Ribeiro (1):
      ALSA: usb-audio: Add FIXED_RATE quirk for JBL Quantum650 Wireless

Guangshuo Li (1):
      ALSA: hda: cs35l41: validate and free ACPI mute object

Kai Vehmanen (1):
      ALSA: hda: codecs: hdmi: disable keep-alive before audio format change

Kailang Yang (1):
      ALSA: hda/realtek - Add quirk for Dell Pro QC1255

Marcel Kłos (1):
      ALSA: hda/realtek: Add quirk for HP EliteBook 830 G8 (8AB8) to enable mute LEDs

Mark Brown (1):
      ASoC: fs210x: Make cache write through again during resume

Nikita Maksimov (1):
      ALSA: hda/realtek: Fix speakers on Lunnen Ground 14

Norbert Szetei (3):
      ALSA: seq: close a re-opened queue timer in the destructor
      ALSA: timer: don't re-enter an instance callback that is still running
      ALSA: timer: drain a slave's callback before its master detaches it

Oliver Ohrt (1):
      ALSA: hda/realtek: Fix speakers on Alienware x16 R2

Pengpeng Hou (1):
      ASoC: tas2781: bound firmware description string parsing

Philipp Oster (1):
      ALSA: hda/tas2781: clear cali_data.total_sz when calibration read fails

Richard Fitzgerald (2):
      ASoC: cs35l56: Fix potential probe() deadlock
      ASoC: cs35l56: Use complete_all() to signal init_completion

Shengjiu Wang (1):
      ASoC: bt-sco: fix duplicate DAPM widget names for wideband DAI

Syed Saba Kareem (1):
      ASoC: amd: acp: add ACP70 DMI override for new ASUS TUF platforms

Takashi Iwai (1):
      ALSA: hda/realtek: Add quirk for HP Pavilion x360

Zhang Heng (1):
      ALSA: hda/realtek: Add HDA_CODEC_QUIRK for Samsung 750XBE/730XBE

---
 sound/core/seq/seq_timer.c                     | 13 ++++-
 sound/core/timer.c                             | 21 +++++--
 sound/hda/codecs/hdmi/hdmi.c                   |  3 +
 sound/hda/codecs/hdmi/hdmi_local.h             |  9 +++
 sound/hda/codecs/hdmi/intelhdmi.c              | 36 ++++++++++--
 sound/hda/codecs/realtek/alc269.c              | 76 +++++++++++++++++++++++++-
 sound/hda/codecs/side-codecs/cs35l41_hda.c     | 11 +++-
 sound/hda/codecs/side-codecs/tas2781_hda_i2c.c |  3 +
 sound/soc/amd/acp-config.c                     | 12 ++++
 sound/soc/amd/yc/acp6x-mach.c                  |  7 +++
 sound/soc/codecs/bt-sco.c                      | 10 +++-
 sound/soc/codecs/cs35l56-i2c.c                 |  4 +-
 sound/soc/codecs/cs35l56-spi.c                 |  4 +-
 sound/soc/codecs/cs35l56.c                     | 17 +++++-
 sound/soc/codecs/fs210x.c                      |  1 +
 sound/soc/codecs/tas2781-fmwlib.c              | 63 +++++++++++++++++++--
 sound/soc/fsl/fsl_sai.c                        | 29 ++++++++--
 sound/soc/fsl/imx-card.c                       | 12 ++--
 sound/soc/intel/boards/sof_sdw.c               |  2 +
 sound/soc/sunxi/sun4i-codec.c                  |  1 +
 sound/usb/quirks.c                             |  2 +
 21 files changed, 300 insertions(+), 36 deletions(-)


             reply	other threads:[~2026-07-22  9:15 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-22  9:15 Takashi Iwai [this message]
2026-07-22 20:53 ` pr-tracker-bot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87ldb3gzb9.wl-tiwai@suse.de \
    --to=tiwai@suse.de \
    --cc=broonie@kernel.org \
    --cc=lgirdwood@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-sound@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®