linux/sound/soc/sof
Mark Brown 99f11b6552
Merge series "Introduce new SOF helpers" from Daniel Baluta <daniel.baluta@oss.nxp.com>
Daniel Baluta <daniel.baluta@nxp.com>:

From: Daniel Baluta <daniel.baluta@nxp.com>

This patchseries adds new helpers in order to reduce code duplication
and prepare for compress audio support with SOF.

Bud Liviu-Alexandru (1):
  ASoC: SOF: Make Intel IPC stream ops generic

Daniel Baluta (3):
  ASoC: SOF: Introduce snd_sof_mailbox_read / snd_sof_mailbox_write
    callbacks
  ASoC: SOF: imx: Use newly introduced generic IPC stream ops
  ASoC: SOF: Introduce fragment elapsed notification API

 sound/soc/sof/Kconfig                         |  4 ++
 sound/soc/sof/Makefile                        |  3 +-
 sound/soc/sof/compress.c                      | 51 +++++++++++++++++++
 sound/soc/sof/imx/Kconfig                     |  2 +
 sound/soc/sof/imx/imx8.c                      | 39 +++++++-------
 sound/soc/sof/imx/imx8m.c                     | 26 ++++------
 sound/soc/sof/intel/Makefile                  |  3 --
 sound/soc/sof/intel/apl.c                     |  4 ++
 sound/soc/sof/intel/bdw.c                     | 12 +++--
 sound/soc/sof/intel/byt.c                     | 24 ++++++---
 sound/soc/sof/intel/cnl.c                     |  4 ++
 sound/soc/sof/intel/icl.c                     |  4 ++
 sound/soc/sof/intel/pci-tng.c                 | 12 +++--
 sound/soc/sof/intel/tgl.c                     |  4 ++
 sound/soc/sof/ipc.c                           |  6 ++-
 sound/soc/sof/ops.h                           | 15 ++++++
 sound/soc/sof/pcm.c                           |  7 ++-
 sound/soc/sof/sof-audio.h                     | 11 +++-
 sound/soc/sof/sof-priv.h                      | 28 ++++++----
 .../sof/{intel/intel-ipc.c => stream-ipc.c}   | 50 +++++++++---------
 sound/soc/sof/topology.c                      |  6 ++-
 21 files changed, 218 insertions(+), 97 deletions(-)
 create mode 100644 sound/soc/sof/compress.c
 rename sound/soc/sof/{intel/intel-ipc.c => stream-ipc.c} (58%)

--
2.27.0
2021-10-07 22:24:58 +01:00
..
imx ASoC: SOF: Introduce fragment elapsed notification API 2021-10-07 16:57:57 +01:00
intel Merge series "Introduce new SOF helpers" from Daniel Baluta <daniel.baluta@oss.nxp.com> 2021-10-07 22:24:58 +01:00
xtensa ASoC: SOF: Rename sof_arch_ops to dsp_arch_ops 2021-09-17 13:17:47 +01:00
compress.c ASoC: SOF: Introduce fragment elapsed notification API 2021-10-07 16:57:57 +01:00
control.c ASoC: SOF: Handle control change notification from firmware 2021-09-13 01:59:18 +01:00
core.c ASoC: SOF: core: Clean up snd_sof_get_status() prints 2021-10-07 15:45:38 +01:00
debug.c ASoC: SOF: debug: Print out the fw_state along with the DSP dump 2021-10-07 15:45:33 +01:00
ipc.c Merge series "Introduce new SOF helpers" from Daniel Baluta <daniel.baluta@oss.nxp.com> 2021-10-07 22:24:58 +01:00
Kconfig ASoC: SOF: Introduce fragment elapsed notification API 2021-10-07 16:57:57 +01:00
loader.c ASoC: SOF: loader: Drop SOF_DBG_DUMP_REGS flag when firmware start fails 2021-10-07 15:45:39 +01:00
Makefile ASoC: SOF: Introduce fragment elapsed notification API 2021-10-07 16:57:57 +01:00
nocodec.c ASOC: SOF: simplify nocodec mode 2021-04-12 17:05:55 +01:00
ops.c ASoC: SOF: ops: Force DSP panic dumps to be printed 2021-10-07 15:45:35 +01:00
ops.h Merge series "Introduce new SOF helpers" from Daniel Baluta <daniel.baluta@oss.nxp.com> 2021-10-07 22:24:58 +01:00
pcm.c ASoC: SOF: Introduce fragment elapsed notification API 2021-10-07 16:57:57 +01:00
pm.c Merge series "ASoC: SOF: Improvements for debugging" from Peter Ujfalusi <peter.ujfalusi@linux.intel.com>: 2021-10-07 22:24:56 +01:00
sof-acpi-dev.c ASoC: SOF: Check desc->ops directly in acpi/pci/of probe functions 2021-05-21 13:13:35 +01:00
sof-acpi-dev.h ASoC: SOF: ACPI: avoid reverse module dependency 2021-03-02 15:31:40 +01:00
sof-audio.c ASoC: SOF: pipelines: Harmonize all functions to use struct snd_sof_dev 2021-10-07 15:45:45 +01:00
sof-audio.h Merge series "Introduce new SOF helpers" from Daniel Baluta <daniel.baluta@oss.nxp.com> 2021-10-07 22:24:58 +01:00
sof-of-dev.c ASoC: SOF: OF: Add fw_path and tplg_path parameters 2021-10-05 13:09:59 +01:00
sof-pci-dev.c ASoC: SOF: Intel: Use DMI string to search for adl_mx98373_rt5682 variant 2021-08-03 18:26:10 +01:00
sof-pci-dev.h ASoC: SOF: pci: split PCI into different drivers 2021-03-02 15:32:00 +01:00
sof-priv.h Merge series "Introduce new SOF helpers" from Daniel Baluta <daniel.baluta@oss.nxp.com> 2021-10-07 22:24:58 +01:00
sof-probes.c ASoC: SOF: sof-probes: Correct the function names used for snd_soc_cdai_ops 2021-09-16 14:04:15 +01:00
sof-probes.h ASoC: SOF: probe: Merge and clean up the probe and compress files 2021-09-16 14:04:13 +01:00
stream-ipc.c ASoC: SOF: Make Intel IPC stream ops generic 2021-10-07 16:57:54 +01:00
topology.c Merge series "Introduce new SOF helpers" from Daniel Baluta <daniel.baluta@oss.nxp.com> 2021-10-07 22:24:58 +01:00
trace.c ASoC: SOF: prefix some terse and cryptic dev_dbg() with __func__ 2021-09-28 13:16:27 +01:00
utils.c ASoC: SOF: core: Do not use 'bar' as parameter for block_read/write 2021-09-15 16:25:04 +01:00