Linux Sound subsystem development
 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 6.13-rc1
Date: Fri, 29 Nov 2024 11:02:38 +0100	[thread overview]
Message-ID: <87sera5pdt.wl-tiwai@suse.de> (raw)

Linus,

please pull sound fixes for v6.13-rc1 from:

  git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git tags/sound-fix-6.13-rc1

The topmost commit is 2e5bf5b6d2617aff3bd6577bbc8e024cca436d76

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

sound fixes for 6.13-rc1

A collection of small fixes.  Majority of changes are device-specific
fixes and quirks, while there are a few core fixes to address
regressions and corner cases spotted by fuzzers.

- Fix of spinlock range that wrongly covered kvfree() call in rawmidi
- Fix potential NULL dereference at PCM mmap
- Fix incorrectly advertised MIDI 2.0 UMP Function Block info
- Various ASoC AMD quirks and fixes
- ASoC SOF Intel, Mediatek, HDMI-codec fixes
- A few more quirks and TAS2781 codec fix for HD-audio
- A couple of fixes for USB-audio for malicious USB descriptors

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

Alex Far (1):
      ASoC: amd: yc: fix internal mic on Redmi G 2022

Baojun Xu (1):
      ALSA: hda/tas2781: Add speaker id check for ASUS projects

Bard Liao (1):
      ASoC: SOF: ipc3-topology: Convert the topology pin index to ALH dai index

Benoît Sevens (1):
      ALSA: usb-audio: Fix potential out-of-bound accesses for Extigy and Mbox devices

Charles Han (1):
      ASoC: imx-audmix: Add NULL check in imx_audmix_probe

Dinesh Kumar (1):
      ALSA: hda/realtek: Fix Internal Speaker and Mic boost of Infinix Y4 Max

Dirk Su (1):
      ALSA: hda/realtek: fix mute/micmute LEDs don't work for EliteBook X G1i

Hridesh MG (1):
      ALSA: docs: fix dead hyperlink to Intel HD-Audio spec

Ilya Zverev (1):
      ASoC: amd: yc: Add a quirk for microfone on Lenovo ThinkPad P14s Gen 5 21MES00B00

Jaroslav Kysela (1):
      ALSA: hda: improve bass speaker support for ASUS Zenbook UM5606WA

Kailang Yang (4):
      ALSA: hda/realtek: Update ALC256 depop procedure
      ALSA: hda/realtek: Enable speaker pins for Medion E15443 platform
      ALSA: hda/realtek: Update ALC225 depop procedure
      ALSA: hda/realtek: Set PCBeep to default value for ALC274

Li Zhijian (1):
      selftests/alsa: Add a few missing gitignore files

Mario Limonciello (1):
      ASoC: amd: Fix build dependencies for `SND_SOC_AMD_PS`

Nícolas F. R. A. Prado (1):
      ASoC: mediatek: Check num_codecs is not zero to avoid panic during probe

Pei Xiao (1):
      ALSA: ac97: bus: Fix the mistake in the comment

Takashi Iwai (6):
      ALSA: pcm: Add sanity NULL check for the default mmap fault handler
      ALSA: rawmidi: Fix kvfree() call in spinlock
      ALSA: usb-audio: Fix out of bounds reads when finding clock sources
      ALSA: hda: Show the codec quirk info at probing
      ALSA: ump: Fix evaluation of MIDI 1.0 FB info
      ALSA: hda/realtek: Apply quirk for Medion E15433

Uwe Kleine-König (1):
      ASoC: amd: yc: Add quirk for microphone on Lenovo Thinkpad T14s Gen 6 21M1CTO1WW

Venkata Prasad Potturu (1):
      ASoC: amd: yc: Fix for enabling DMIC on acp6x via _DSD entry

Zhu Jun (1):
      ALSA: asihpi: Remove unused variable

Zichen Xie (1):
      ALSA: core: Fix possible NULL dereference caused by kunit_kzalloc()

anish kumar (1):
      ASoC: doc: dapm: Add location information for dapm-graph tool

liujing (1):
      ASoC: apple: Fix the wrong format specifier

---
 Documentation/sound/hd-audio/notes.rst             |   2 +-
 Documentation/sound/soc/dapm.rst                   |   3 +
 include/sound/tas2781.h                            |   1 +
 sound/ac97/bus.c                                   |   5 +-
 sound/core/pcm_native.c                            |   6 +-
 sound/core/rawmidi.c                               |   4 +-
 sound/core/sound_kunit.c                           |  11 ++
 sound/core/ump.c                                   |   5 +-
 sound/pci/asihpi/asihpi.c                          |   2 +-
 sound/pci/hda/hda_auto_parser.c                    |  20 +--
 sound/pci/hda/patch_realtek.c                      | 169 ++++++++++++---------
 sound/pci/hda/tas2781_hda_i2c.c                    |  63 +++++++-
 sound/soc/amd/Kconfig                              |   1 +
 sound/soc/amd/yc/acp6x-mach.c                      |  39 ++++-
 sound/soc/apple/mca.c                              |   2 +-
 sound/soc/fsl/imx-audmix.c                         |   3 +
 sound/soc/mediatek/mt8188/mt8188-mt6359.c          |   9 +-
 .../mediatek/mt8192/mt8192-mt6359-rt1015-rt5682.c  |   4 +-
 sound/soc/mediatek/mt8195/mt8195-mt6359.c          |   9 +-
 sound/soc/sof/ipc3-topology.c                      |  26 +++-
 sound/usb/clock.c                                  |  24 ++-
 sound/usb/quirks.c                                 |  27 +++-
 tools/testing/selftests/alsa/.gitignore            |   2 +
 23 files changed, 328 insertions(+), 109 deletions(-)


             reply	other threads:[~2024-11-29 10:02 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-29 10:02 Takashi Iwai [this message]
2024-11-29 21:33 ` [GIT PULL] sound fixes for 6.13-rc1 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=87sera5pdt.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