public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/26] ASoC/soundwire: add support for ACE2.x
@ 2023-05-15  7:10 Bard Liao
  2023-05-15  7:10 ` [PATCH v2 01/26] ASoC: SOF: Intel: shim: add enum for ACE 2.0 IP used in LunarLake Bard Liao
                   ` (26 more replies)
  0 siblings, 27 replies; 31+ messages in thread
From: Bard Liao @ 2023-05-15  7:10 UTC (permalink / raw)
  To: alsa-devel, vkoul, broonie, tiwai
  Cc: linux-kernel, vinod.koul, pierre-louis.bossart, bard.liao

This series uses the abstraction added in past kernel cycles to provide
support for the ACE2.x integration. The existing SHIM and Cadence
registers are now split in 3 (SHIM, IP, SHIM vendor-specific), with some
parts also moved to the HDaudio Extended Multi link structures. Nothing
fundamentally different except for the register map.

This series only provides the basic mechanisms to expose SoundWire-based
DAIs. The PCI parts and DSP management will be contributed later, and the
DAI ops are now empty as well.

The change is mainly on SoundWire. It would be better to go through
SoundWire tree.

v2:
 - Some cleanup for free, trigger, hw_params callbacks before introducing
   ACE2.x callbacks.

Pierre-Louis Bossart (26):
  ASoC: SOF: Intel: shim: add enum for ACE 2.0 IP used in LunarLake
  soundwire: intel: add ACE2.x SHIM definitions
  soundwire: intel_ace2x: add empty new ops for LunarLake
  soundwire/ASOC: Intel: update offsets for LunarLake
  soundwire: intel/cadence: set ip_offset at run-time
  ASoC/soundwire: intel: pass hdac_bus pointer for link management
  soundwire: intel: add eml_lock in the interface for new platforms
  ASoC: SOF: Intel: hda: retrieve SoundWire eml_lock and pass pointer
  soundwire: intel_init: use eml_lock parameter
  soundwire: intel_ace2x: add debugfs support
  soundwire: intel_ace2x: add link power-up/down helpers
  soundwire: intel_ace2x: set SYNCPRD before powering-up
  soundwire: intel_ace2x: configure link PHY
  soundwire: intel_ace2x: add DAI registration
  soundwire: intel_ace2x: add sync_arm/sync_go helpers
  soundwire: intel_ace2x: use common helpers for bus start/stop
  soundwire: intel_ace2x: enable wake support
  soundwire: intel_ace2x: add check_cmdsync_unlocked helper
  soundwire: bus: add new manager callback to deal with peripheral
    enumeration
  soundwire: intel_ace2x: add new_peripheral_assigned callback
  soundwire: intel_ace2x: add pre/post bank switch callbacks
  ASoC: SOF/soundwire: re-add substream in params_stream structure
  soundwire: intel: remove .trigger callback implementation
  soundwire: intel: use substream for .trigger callback
  soundwire: intel: remove .free callback implementation
  soundwire: intel: use substream for .free callback

 drivers/soundwire/Makefile              |   3 +-
 drivers/soundwire/bus.c                 |   3 +
 drivers/soundwire/cadence_master.h      |   2 +
 drivers/soundwire/intel.c               |  54 +---
 drivers/soundwire/intel.h               |  16 +
 drivers/soundwire/intel_ace2x.c         | 393 ++++++++++++++++++++++++
 drivers/soundwire/intel_ace2x_debugfs.c | 147 +++++++++
 drivers/soundwire/intel_auxdevice.c     |  17 +
 drivers/soundwire/intel_init.c          |  21 +-
 include/linux/soundwire/sdw.h           |   3 +-
 include/linux/soundwire/sdw_intel.h     |  94 +++++-
 sound/soc/sof/intel/hda.c               |  33 +-
 sound/soc/sof/intel/shim.h              |   1 +
 13 files changed, 723 insertions(+), 64 deletions(-)
 create mode 100644 drivers/soundwire/intel_ace2x.c
 create mode 100644 drivers/soundwire/intel_ace2x_debugfs.c

-- 
2.25.1


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

end of thread, other threads:[~2023-06-07 15:57 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-15  7:10 [PATCH v2 00/26] ASoC/soundwire: add support for ACE2.x Bard Liao
2023-05-15  7:10 ` [PATCH v2 01/26] ASoC: SOF: Intel: shim: add enum for ACE 2.0 IP used in LunarLake Bard Liao
2023-05-15  7:10 ` [PATCH v2 02/26] soundwire: intel: add ACE2.x SHIM definitions Bard Liao
2023-05-15  7:10 ` [PATCH v2 03/26] soundwire: intel_ace2x: add empty new ops for LunarLake Bard Liao
2023-05-15  7:10 ` [PATCH v2 04/26] soundwire/ASOC: Intel: update offsets " Bard Liao
2023-05-15  7:10 ` [PATCH v2 05/26] soundwire: intel/cadence: set ip_offset at run-time Bard Liao
2023-05-15  7:10 ` [PATCH v2 06/26] ASoC/soundwire: intel: pass hdac_bus pointer for link management Bard Liao
2023-05-15  7:10 ` [PATCH v2 07/26] soundwire: intel: add eml_lock in the interface for new platforms Bard Liao
2023-05-15  7:10 ` [PATCH v2 08/26] ASoC: SOF: Intel: hda: retrieve SoundWire eml_lock and pass pointer Bard Liao
2023-05-15  7:10 ` [PATCH v2 09/26] soundwire: intel_init: use eml_lock parameter Bard Liao
2023-05-15  7:10 ` [PATCH v2 10/26] soundwire: intel_ace2x: add debugfs support Bard Liao
2023-05-15  7:10 ` [PATCH v2 11/26] soundwire: intel_ace2x: add link power-up/down helpers Bard Liao
2023-05-15  7:10 ` [PATCH v2 12/26] soundwire: intel_ace2x: set SYNCPRD before powering-up Bard Liao
2023-05-15  7:10 ` [PATCH v2 13/26] soundwire: intel_ace2x: configure link PHY Bard Liao
2023-05-15  7:10 ` [PATCH v2 14/26] soundwire: intel_ace2x: add DAI registration Bard Liao
2023-05-15  7:10 ` [PATCH v2 15/26] soundwire: intel_ace2x: add sync_arm/sync_go helpers Bard Liao
2023-05-15  7:10 ` [PATCH v2 16/26] soundwire: intel_ace2x: use common helpers for bus start/stop Bard Liao
2023-05-15  7:10 ` [PATCH v2 17/26] soundwire: intel_ace2x: enable wake support Bard Liao
2023-05-15  7:10 ` [PATCH v2 18/26] soundwire: intel_ace2x: add check_cmdsync_unlocked helper Bard Liao
2023-05-15  7:10 ` [PATCH v2 19/26] soundwire: bus: add new manager callback to deal with peripheral enumeration Bard Liao
2023-05-15  7:10 ` [PATCH v2 20/26] soundwire: intel_ace2x: add new_peripheral_assigned callback Bard Liao
2023-05-15  7:10 ` [PATCH v2 21/26] soundwire: intel_ace2x: add pre/post bank switch callbacks Bard Liao
2023-05-15  7:10 ` [PATCH v2 22/26] ASoC: SOF/soundwire: re-add substream in params_stream structure Bard Liao
2023-05-15  7:10 ` [PATCH v2 23/26] soundwire: intel: remove .trigger callback implementation Bard Liao
2023-05-15  7:10 ` [PATCH v2 24/26] soundwire: intel: use substream for .trigger callback Bard Liao
2023-05-15  7:10 ` [PATCH v2 25/26] soundwire: intel: remove .free callback implementation Bard Liao
2023-05-15  7:10 ` [PATCH v2 26/26] soundwire: intel: use substream for .free callback Bard Liao
2023-05-27 10:36 ` [PATCH v2 00/26] ASoC/soundwire: add support for ACE2.x Vinod Koul
2023-06-02 20:46   ` Pierre-Louis Bossart
2023-06-07 13:07     ` Vinod Koul
2023-06-07 14:45       ` Pierre-Louis Bossart

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