linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] sound fixes for 5.12-rc2
@ 2021-03-04  9:49 Takashi Iwai
  2021-03-04 19:30 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Takashi Iwai @ 2021-03-04  9:49 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Mark Brown, Liam Girdwood, Linux Kernel Mailing List

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


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [GIT PULL] sound fixes for 5.12-rc2
  2021-03-04  9:49 [GIT PULL] sound fixes for 5.12-rc2 Takashi Iwai
@ 2021-03-04 19:30 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2021-03-04 19:30 UTC (permalink / raw)
  To: Takashi Iwai
  Cc: Linus Torvalds, Mark Brown, Liam Girdwood, Linux Kernel Mailing List

The pull request you sent on Thu, 04 Mar 2021 10:49:59 +0100:

> git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git tags/sound-5.12-rc2

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/43df5242af4ed67e8811257ab1bfe6a07e4a5858

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-03-04 19:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-04  9:49 [GIT PULL] sound fixes for 5.12-rc2 Takashi Iwai
2021-03-04 19:30 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).