Linus, please pull sound fixes for v5.12-rc2 from:
git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git tags/sound-5.12-rc2 The topmost commit is 26af17722a07597d3e556eda92c6fce8d528bc9f ---------------------------------------------------------------- sound fixes for 5.12-rc2 Slightly bulky changes are seen at this time, mostly for dealing with the messed up Kconfig for ASoC Intel SOF stuff. The driver and its code was split to each module per platform now, which is far more straightforward. This should cover the randconfig problems, and more importantly, improve the actual device handling as well. Other than that, nothing particular stands out: the HDMI PCM assignment fix for Intel Tigerlake, MIPS n64 error handling fix, and the usual suspects, HD-audio / USB-audio quirks. ---------------------------------------------------------------- Andrea Fagiani (1): ALSA: usb-audio: use Corsair Virtuoso mapping for Corsair Virtuoso SE Arnd Bergmann (1): ASoC: SOF: ACPI: avoid reverse module dependency Chris Chiu (1): ALSA: hda/realtek: Enable headset mic of Acer SWIFT with ALC256 Colin Ian King (1): ALSA: ctxfi: cthw20k2: fix mask on conf to allow 4 bits Eckhart Mohr (1): ALSA: hda/realtek: Add quirk for Clevo NH55RZQ Hui Wang (1): ALSA: hda/hdmi: let new platforms assign the pcm slot dynamically Nicolas MURE (1): ALSA: usb-audio: Fix Pioneer DJM devices URB_CONTROL request direction to set samplerate Pierre-Louis Bossart (8): ALSA: hda: fix kernel-doc warnings ALSA: hda: intel-nhlt: verify config type ASoC: soc-acpi: allow for partial match in parent name ASoC: SOF: pci: split PCI into different drivers ASoC: SOF: pci: move DSP_CONFIG use to platform-specific drivers ASoC: SOF: Intel: SoundWire: simplify Kconfig ALSA: hda: move Intel SoundWire ACPI scan to dedicated module ALSA: hda: intel-sdw-acpi: add missing include files Takashi Iwai (4): ALSA: usb-audio: Don't abort even if the clock rate differs ALSA: usb-audio: Drop bogus dB range in too low level ALSA: usb-audio: Allow modifying parameters with succeeding hw_params calls ALSA: hda/realtek: Apply dual codec quirks for MSI Godlike X570 board Wei Yongjun (1): ALSA: n64: Fix return value check in n64audio_probe() Werner Sembach (1): ALSA: hda/realtek: Add quirk for Intel NUC 10 --- drivers/soundwire/intel.h | 2 - drivers/soundwire/intel_init.c | 158 ----------------- include/linux/soundwire/sdw_intel.h | 2 + include/sound/intel-nhlt.h | 5 + include/sound/soc-acpi.h | 2 +- sound/hda/Kconfig | 4 + sound/hda/Makefile | 3 + sound/hda/ext/hdac_ext_controller.c | 2 +- sound/hda/ext/hdac_ext_stream.c | 2 +- sound/hda/hdac_regmap.c | 2 +- sound/hda/intel-dsp-config.c | 2 +- sound/hda/intel-nhlt.c | 54 +++++- sound/hda/intel-sdw-acpi.c | 179 +++++++++++++++++++ sound/mips/snd-n64.c | 8 +- sound/pci/ctxfi/cthw20k2.c | 2 +- sound/pci/hda/hda_codec.c | 6 +- sound/pci/hda/hda_generic.c | 4 +- sound/pci/hda/hda_jack.c | 4 +- sound/pci/hda/patch_ca0132.c | 9 +- sound/pci/hda/patch_hdmi.c | 18 +- sound/pci/hda/patch_realtek.c | 26 +++ sound/soc/sof/Kconfig | 15 +- sound/soc/sof/Makefile | 4 +- sound/soc/sof/intel/Kconfig | 254 +++++++++------------------ sound/soc/sof/intel/Makefile | 20 ++- sound/soc/sof/intel/bdw.c | 67 ++++++- sound/soc/sof/intel/byt.c | 106 ++++++++++- sound/soc/sof/intel/hda.c | 18 ++ sound/soc/sof/intel/hda.h | 3 + sound/soc/sof/intel/pci-apl.c | 81 +++++++++ sound/soc/sof/intel/pci-cnl.c | 104 +++++++++++ sound/soc/sof/intel/pci-icl.c | 84 +++++++++ sound/soc/sof/intel/pci-tgl.c | 121 +++++++++++++ sound/soc/sof/intel/pci-tng.c | 70 ++++++++ sound/soc/sof/intel/shim.h | 6 - sound/soc/sof/sof-acpi-dev.c | 130 ++------------ sound/soc/sof/sof-acpi-dev.h | 16 ++ sound/soc/sof/sof-pci-dev.c | 340 +----------------------------------- sound/soc/sof/sof-pci-dev.h | 17 ++ sound/usb/clock.c | 8 +- sound/usb/mixer.c | 11 ++ sound/usb/mixer_maps.c | 10 ++ sound/usb/pcm.c | 12 +- sound/usb/quirks.c | 2 +- 44 files changed, 1145 insertions(+), 848 deletions(-) create mode 100644 sound/hda/intel-sdw-acpi.c create mode 100644 sound/soc/sof/intel/pci-apl.c create mode 100644 sound/soc/sof/intel/pci-cnl.c create mode 100644 sound/soc/sof/intel/pci-icl.c create mode 100644 sound/soc/sof/intel/pci-tgl.c create mode 100644 sound/soc/sof/intel/pci-tng.c create mode 100644 sound/soc/sof/sof-acpi-dev.h create mode 100644 sound/soc/sof/sof-pci-dev.h