Alsa-Devel Archive mirror
 help / color / mirror / Atom feed
From: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
To: linux-sound@vger.kernel.org
Cc: alsa-devel@alsa-project.org, tiwai@suse.de, broonie@kernel.org,
	Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Subject: [PATCH 00/18] ASoC: Intel: updates for 6.10 - part7
Date: Thu,  9 May 2024 11:34:00 -0500	[thread overview]
Message-ID: <20240509163418.67746-1-pierre-louis.bossart@linux.intel.com> (raw)

This patchset should be the last batch for this kernel cycle!

Brent Lu continued his cleanups to refactor and use fewer machine
drivers on Chrmebooks.

Bard Liao updated the sof-sdw machine driver to deal with UCM support
of the RT712 configuration. Note that this sof-sdw driver will be
refactored in the next kernel cycle to allow AMD and others to reuse
common SoundWire parts that are not Intel-specific. Initial changes
are described here: https://github.com/thesofproject/linux/pull/4967

Bard Liao (9):
  ASoC: Intel: sof_sdw_rt_sdca_jack_common: remove -sdca for new codecs
  ASoC: Intel: soc-acpi-intel-mtl-match: add cs42l43 only support
  ASoC: Intel: soc-acpi-intel-lnl-match: add cs42l43 only support
  ASoC: Intel: sof_sdw_cs_amp: rename Speakers to Speaker
  ASoC: Intel: sof_sdw: use generic name for controls/widgets
  ASoC: Intel: sof_sdw: add controls and dapm widgets in codec_info
  ASoC: Intel: sof_sdw: use .controls/.widgets to add controls/widgets
  ASoC: Intel: sof_sdw: add dai parameter to rtd_init callback
  ASoC: Intel: sof_sdw_rt_amp: use dai parameter

Brent Lu (9):
  ASoC: Intel: sof-rt5682: remove DMI quirk for hatch
  ASoC: Intel: sof_rt5682: board id cleanup for mtl boards
  ASoC: Intel: realtek-common: remove 2-spk rt1015p config
  ASoC: Intel: maxim-common: add max_98373_dai_link function
  ASoC: Intel: sof_da7219: use max_98373_dai_link function
  ASoC: Intel: sof_nau8825: use max_98373_dai_link function
  ASoC: Intel: sof_rt5682: use max_98373_dai_link function
  ASoC: Intel: sof_sdw: add max98373 dapm routes
  ASoC: Intel: maxim-common: change max98373 data to static

 sound/soc/intel/boards/Kconfig                |   1 -
 sound/soc/intel/boards/sof_da7219.c           |   5 +-
 sound/soc/intel/boards/sof_maxim_common.c     |  27 ++--
 sound/soc/intel/boards/sof_maxim_common.h     |   7 +-
 sound/soc/intel/boards/sof_nau8825.c          |   5 +-
 sound/soc/intel/boards/sof_realtek_common.c   |  57 +------
 sound/soc/intel/boards/sof_realtek_common.h   |   1 -
 sound/soc/intel/boards/sof_rt5682.c           |  34 +---
 sound/soc/intel/boards/sof_sdw.c              | 146 +++++++++++++++++-
 sound/soc/intel/boards/sof_sdw_common.h       |  34 ++--
 sound/soc/intel/boards/sof_sdw_cs42l42.c      |  26 +---
 sound/soc/intel/boards/sof_sdw_cs42l43.c      |  40 +----
 sound/soc/intel/boards/sof_sdw_cs_amp.c       |  15 +-
 sound/soc/intel/boards/sof_sdw_maxim.c        |  28 +---
 sound/soc/intel/boards/sof_sdw_rt5682.c       |  26 +---
 sound/soc/intel/boards/sof_sdw_rt700.c        |  28 +---
 sound/soc/intel/boards/sof_sdw_rt711.c        |  26 +---
 sound/soc/intel/boards/sof_sdw_rt712_sdca.c   |  24 +--
 sound/soc/intel/boards/sof_sdw_rt722_sdca.c   |  24 +--
 sound/soc/intel/boards/sof_sdw_rt_amp.c       |  42 +----
 sound/soc/intel/boards/sof_sdw_rt_dmic.c      |   2 +-
 .../boards/sof_sdw_rt_sdca_jack_common.c      |  45 +++---
 .../intel/common/soc-acpi-intel-lnl-match.c   |  50 ++++++
 .../intel/common/soc-acpi-intel-mtl-match.c   |  38 ++---
 24 files changed, 302 insertions(+), 429 deletions(-)

-- 
2.40.1


             reply	other threads:[~2024-05-09 16:35 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-09 16:34 Pierre-Louis Bossart [this message]
2024-05-09 16:34 ` [PATCH 01/18] ASoC: Intel: sof_sdw_rt_sdca_jack_common: remove -sdca for new codecs Pierre-Louis Bossart
2024-05-09 16:34 ` [PATCH 02/18] ASoC: Intel: sof-rt5682: remove DMI quirk for hatch Pierre-Louis Bossart
2024-05-09 16:34 ` [PATCH 03/18] ASoC: Intel: sof_rt5682: board id cleanup for mtl boards Pierre-Louis Bossart
2024-05-09 16:34 ` [PATCH 04/18] ASoC: Intel: realtek-common: remove 2-spk rt1015p config Pierre-Louis Bossart
2024-05-09 16:34 ` [PATCH 05/18] ASoC: Intel: soc-acpi-intel-mtl-match: add cs42l43 only support Pierre-Louis Bossart
2024-05-09 16:34 ` [PATCH 06/18] ASoC: Intel: soc-acpi-intel-lnl-match: " Pierre-Louis Bossart
2024-05-09 16:34 ` [PATCH 07/18] ASoC: Intel: maxim-common: add max_98373_dai_link function Pierre-Louis Bossart
2024-05-09 16:34 ` [PATCH 08/18] ASoC: Intel: sof_da7219: use " Pierre-Louis Bossart
2024-05-09 16:34 ` [PATCH 09/18] ASoC: Intel: sof_nau8825: " Pierre-Louis Bossart
2024-05-09 16:34 ` [PATCH 10/18] ASoC: Intel: sof_rt5682: " Pierre-Louis Bossart
2024-05-09 16:34 ` [PATCH 11/18] ASoC: Intel: sof_sdw: add max98373 dapm routes Pierre-Louis Bossart
2024-05-09 16:34 ` [PATCH 12/18] ASoC: Intel: maxim-common: change max98373 data to static Pierre-Louis Bossart
2024-05-09 16:34 ` [PATCH 13/18] ASoC: Intel: sof_sdw_cs_amp: rename Speakers to Speaker Pierre-Louis Bossart
2024-05-09 16:34 ` [PATCH 14/18] ASoC: Intel: sof_sdw: use generic name for controls/widgets Pierre-Louis Bossart
2024-05-09 16:34 ` [PATCH 15/18] ASoC: Intel: sof_sdw: add controls and dapm widgets in codec_info Pierre-Louis Bossart
2024-05-09 16:34 ` [PATCH 16/18] ASoC: Intel: sof_sdw: use .controls/.widgets to add controls/widgets Pierre-Louis Bossart
2024-05-09 16:34 ` [PATCH 17/18] ASoC: Intel: sof_sdw: add dai parameter to rtd_init callback Pierre-Louis Bossart
2024-05-09 16:34 ` [PATCH 18/18] ASoC: Intel: sof_sdw_rt_amp: use dai parameter Pierre-Louis Bossart
2024-05-10 13:18 ` [PATCH 00/18] ASoC: Intel: updates for 6.10 - part7 Mark Brown

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=20240509163418.67746-1-pierre-louis.bossart@linux.intel.com \
    --to=pierre-louis.bossart@linux.intel.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=linux-sound@vger.kernel.org \
    --cc=tiwai@suse.de \
    /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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).