public inbox for linux-sound@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/27] ASoC: Intel: Link handling rework and fixes
@ 2023-11-27 15:26 Peter Ujfalusi
  2023-11-27 15:26 ` [PATCH 01/27] ASoC: Intel: sof_ssp_amp: remove dead code Peter Ujfalusi
                   ` (27 more replies)
  0 siblings, 28 replies; 29+ messages in thread
From: Peter Ujfalusi @ 2023-11-27 15:26 UTC (permalink / raw)
  To: lgirdwood, broonie
  Cc: alsa-devel, linux-sound, pierre-louis.bossart, kai.vehmanen,
	ranjani.sridharan, yung-chuan.liao, chao.song

Hi,

SOF board updates for 6.8 including few small fix and the majority is to add
generic helpers for codec, amp, BT offload, HDMI-In and DAI link generation
among various machine drivers.

Regards,
Peter
---
Bard Liao (2):
  ASoC: Intel: sof_maxim_common: add else between 2 if test
  ASoC: Intel: sof_maxim_common: check return value

Brent Lu (24):
  ASoC: Intel: sof_ssp_amp: remove dead code
  ASoC: Intel: ssp-common: get codec name function
  ASoC: Intel: board_helpers: support codec link initialization
  ASoC: Intel: sof_cs42l42: use common module for codec link
  ASoC: Intel: sof_nau8825: use common module for codec link
  ASoC: Intel: sof_rt5682: use common module for codec link
  ASoC: Intel: board_helpers: support amp link initialization
  ASoC: Intel: sof_cs42l42: use common module for amp link
  ASoC: Intel: sof_nau8825: use common module for amp link
  ASoC: Intel: sof_rt5682: use common module for amp link
  ASoC: Intel: sof_ssp_amp: use common module for amp link
  ASoC: Intel: sof_ssp_amp: rename function parameter
  ASoC: Intel: board_helpers: support BT offload link initialization
  ASoC: Intel: sof_cs42l42: use common module for BT offload link
  ASoC: Intel: sof_nau8825: use common module for BT offload link
  ASoC: Intel: sof_rt5682: use common module for BT offload link
  ASoC: Intel: sof_ssp_amp: use common module for BT offload link
  ASoC: Intel: sof_ssp_amp: simplify HDMI-In quirks
  ASoC: Intel: board_helpers: support HDMI-In link initialization
  ASoC: Intel: sof_rt5682: use common module for HDMI-In link
  ASoC: Intel: sof_ssp_amp: use common module for HDMI-In link
  ASoC: Intel: board_helpers: support DAI link array generation
  ASoC: Intel: sof_nau8825: use common module for DAI link generation
  ASoC: Intel: sof_rt5682: use common module for DAI link generation

Chao Song (1):
  ASoC: Intel: cht_bsw_rt5672: check return value

 sound/soc/intel/boards/cht_bsw_rt5672.c    |   8 +-
 sound/soc/intel/boards/sof_board_helpers.c | 330 +++++++++++++++++++++
 sound/soc/intel/boards/sof_board_helpers.h |  31 ++
 sound/soc/intel/boards/sof_cs42l42.c       | 229 ++++----------
 sound/soc/intel/boards/sof_maxim_common.c  |  13 +-
 sound/soc/intel/boards/sof_nau8825.c       | 224 ++++----------
 sound/soc/intel/boards/sof_rt5682.c        | 328 ++++++--------------
 sound/soc/intel/boards/sof_ssp_amp.c       | 160 ++++------
 sound/soc/intel/boards/sof_ssp_common.c    |  21 ++
 sound/soc/intel/boards/sof_ssp_common.h    |   1 +
 10 files changed, 653 insertions(+), 692 deletions(-)

-- 
2.43.0


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

end of thread, other threads:[~2023-11-28 13:55 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-27 15:26 [PATCH 00/27] ASoC: Intel: Link handling rework and fixes Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 01/27] ASoC: Intel: sof_ssp_amp: remove dead code Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 02/27] ASoC: Intel: sof_maxim_common: add else between 2 if test Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 03/27] ASoC: Intel: sof_maxim_common: check return value Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 04/27] ASoC: Intel: cht_bsw_rt5672: " Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 05/27] ASoC: Intel: ssp-common: get codec name function Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 06/27] ASoC: Intel: board_helpers: support codec link initialization Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 07/27] ASoC: Intel: sof_cs42l42: use common module for codec link Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 08/27] ASoC: Intel: sof_nau8825: " Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 09/27] ASoC: Intel: sof_rt5682: " Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 10/27] ASoC: Intel: board_helpers: support amp link initialization Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 11/27] ASoC: Intel: sof_cs42l42: use common module for amp link Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 12/27] ASoC: Intel: sof_nau8825: " Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 13/27] ASoC: Intel: sof_rt5682: " Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 14/27] ASoC: Intel: sof_ssp_amp: " Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 15/27] ASoC: Intel: sof_ssp_amp: rename function parameter Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 16/27] ASoC: Intel: board_helpers: support BT offload link initialization Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 17/27] ASoC: Intel: sof_cs42l42: use common module for BT offload link Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 18/27] ASoC: Intel: sof_nau8825: " Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 19/27] ASoC: Intel: sof_rt5682: " Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 20/27] ASoC: Intel: sof_ssp_amp: " Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 21/27] ASoC: Intel: sof_ssp_amp: simplify HDMI-In quirks Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 22/27] ASoC: Intel: board_helpers: support HDMI-In link initialization Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 23/27] ASoC: Intel: sof_rt5682: use common module for HDMI-In link Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 24/27] ASoC: Intel: sof_ssp_amp: " Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 25/27] ASoC: Intel: board_helpers: support DAI link array generation Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 26/27] ASoC: Intel: sof_nau8825: use common module for DAI link generation Peter Ujfalusi
2023-11-27 15:26 ` [PATCH 27/27] ASoC: Intel: sof_rt5682: " Peter Ujfalusi
2023-11-28 13:55 ` [PATCH 00/27] ASoC: Intel: Link handling rework and fixes Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox