alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
From: Mark Brown <broonie@kernel.org>
To: Cezary Rojewski <cezary.rojewski@intel.com>
Cc: alsa-devel@alsa-project.org, Mark Brown <broonie@kernel.org>,
	Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Subject: Applied "ASoC: SOF: Implement Probe IPC API" to the asoc tree
Date: Wed, 19 Feb 2020 00:10:55 +0000	[thread overview]
Message-ID: 
Message-ID: <20200219001055.bdWTBwHOd7khCcV5xnK_Kpa_L9pp9w9D1XWIkCRyiBc@z> (raw)
In-Reply-To: 

The patch

   ASoC: SOF: Implement Probe IPC API

has been applied to the asoc tree at

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git 

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.  

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

From f3b433e4699fa358ce5b7bd7688bebe36068c199 Mon Sep 17 00:00:00 2001
From: Cezary Rojewski <cezary.rojewski@intel.com>
Date: Tue, 18 Feb 2020 15:39:19 +0100
Subject: [PATCH] ASoC: SOF: Implement Probe IPC API

Add all required types and methods to support each and every request
that driver could sent to firmware. Probe is one of SOF firmware
features which allows for data extraction and injection directly from
or to DMA stream.

Exposes eight IPCs:
- addition and removal of injection DMAs
- addition and removal of probe points
- info retrieval of injection DMAs and probe points
- probe initialization and cleanup

Signed-off-by: Cezary Rojewski <cezary.rojewski@intel.com>
Acked-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/20200218143924.10565-5-cezary.rojewski@intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 include/sound/sof/header.h    |  11 ++
 sound/soc/sof/Kconfig         |   8 +
 sound/soc/sof/Makefile        |   1 +
 sound/soc/sof/intel/hda-ipc.c |   4 +-
 sound/soc/sof/probe.c         | 286 ++++++++++++++++++++++++++++++++++
 sound/soc/sof/probe.h         |  85 ++++++++++
 6 files changed, 394 insertions(+), 1 deletion(-)
 create mode 100644 sound/soc/sof/probe.c
 create mode 100644 sound/soc/sof/probe.h

diff --git a/include/sound/sof/header.h b/include/sound/sof/header.h
index bf3edd9c08b4..b79479575cc8 100644
--- a/include/sound/sof/header.h
+++ b/include/sound/sof/header.h
@@ -51,6 +51,7 @@
 #define SOF_IPC_GLB_TRACE_MSG			SOF_GLB_TYPE(0x9U)
 #define SOF_IPC_GLB_GDB_DEBUG                   SOF_GLB_TYPE(0xAU)
 #define SOF_IPC_GLB_TEST_MSG			SOF_GLB_TYPE(0xBU)
+#define SOF_IPC_GLB_PROBE			SOF_GLB_TYPE(0xCU)
 
 /*
  * DSP Command Message Types
@@ -102,6 +103,16 @@
 #define SOF_IPC_STREAM_VORBIS_PARAMS		SOF_CMD_TYPE(0x010)
 #define SOF_IPC_STREAM_VORBIS_FREE		SOF_CMD_TYPE(0x011)
 
+/* probe */
+#define SOF_IPC_PROBE_INIT			SOF_CMD_TYPE(0x001)
+#define SOF_IPC_PROBE_DEINIT			SOF_CMD_TYPE(0x002)
+#define SOF_IPC_PROBE_DMA_ADD			SOF_CMD_TYPE(0x003)
+#define SOF_IPC_PROBE_DMA_INFO			SOF_CMD_TYPE(0x004)
+#define SOF_IPC_PROBE_DMA_REMOVE		SOF_CMD_TYPE(0x005)
+#define SOF_IPC_PROBE_POINT_ADD		SOF_CMD_TYPE(0x006)
+#define SOF_IPC_PROBE_POINT_INFO		SOF_CMD_TYPE(0x007)
+#define SOF_IPC_PROBE_POINT_REMOVE		SOF_CMD_TYPE(0x008)
+
 /* trace */
 #define SOF_IPC_TRACE_DMA_PARAMS		SOF_CMD_TYPE(0x001)
 #define SOF_IPC_TRACE_DMA_POSITION		SOF_CMD_TYPE(0x002)
diff --git a/sound/soc/sof/Kconfig b/sound/soc/sof/Kconfig
index 827b0ec92522..65c3cfbcb812 100644
--- a/sound/soc/sof/Kconfig
+++ b/sound/soc/sof/Kconfig
@@ -41,6 +41,14 @@ config SND_SOC_SOF_OF
 	  required to enable i.MX8 devices.
 	  Say Y if you need this option. If unsure select "N".
 
+config SND_SOC_SOF_DEBUG_PROBES
+	bool "SOF enable data probing"
+	help
+	  This option enables the data probing feature that can be used to
+	  gather data directly from specific points of the audio pipeline.
+	  Say Y if you want to enable probes.
+	  If unsure, select "N".
+
 config SND_SOC_SOF_DEVELOPER_SUPPORT
 	bool "SOF developer options support"
 	depends on EXPERT
diff --git a/sound/soc/sof/Makefile b/sound/soc/sof/Makefile
index 0a8bc72c28a5..18d7cab9046e 100644
--- a/sound/soc/sof/Makefile
+++ b/sound/soc/sof/Makefile
@@ -2,6 +2,7 @@
 
 snd-sof-objs := core.o ops.o loader.o ipc.o pcm.o pm.o debug.o topology.o\
 		control.o trace.o utils.o sof-audio.o
+snd-sof-$(CONFIG_SND_SOC_SOF_DEBUG_PROBES) += probe.o
 
 snd-sof-pci-objs := sof-pci-dev.o
 snd-sof-acpi-objs := sof-acpi-dev.o
diff --git a/sound/soc/sof/intel/hda-ipc.c b/sound/soc/sof/intel/hda-ipc.c
index 1837f66e361f..922052883b0a 100644
--- a/sound/soc/sof/intel/hda-ipc.c
+++ b/sound/soc/sof/intel/hda-ipc.c
@@ -106,7 +106,9 @@ void hda_dsp_ipc_get_reply(struct snd_sof_dev *sdev)
 		ret = reply.error;
 	} else {
 		/* reply correct size ? */
-		if (reply.hdr.size != msg->reply_size) {
+		if (reply.hdr.size != msg->reply_size &&
+			/* getter payload is never known upfront */
+			!(reply.hdr.cmd & SOF_IPC_GLB_PROBE)) {
 			dev_err(sdev->dev, "error: reply expected %zu got %u bytes\n",
 				msg->reply_size, reply.hdr.size);
 			ret = -EINVAL;
diff --git a/sound/soc/sof/probe.c b/sound/soc/sof/probe.c
new file mode 100644
index 000000000000..2b2f3dcfc7e9
--- /dev/null
+++ b/sound/soc/sof/probe.c
@@ -0,0 +1,286 @@
+// SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)
+//
+// This file is provided under a dual BSD/GPLv2 license.  When using or
+// redistributing this file, you may do so under either license.
+//
+// Copyright(c) 2019-2020 Intel Corporation. All rights reserved.
+//
+// Author: Cezary Rojewski <cezary.rojewski@intel.com>
+//
+
+#include "sof-priv.h"
+#include "probe.h"
+
+/**
+ * sof_ipc_probe_init - initialize data probing
+ * @sdev:		SOF sound device
+ * @stream_tag:		Extractor stream tag
+ * @buffer_size:	DMA buffer size to set for extractor
+ *
+ * Host chooses whether extraction is supported or not by providing
+ * valid stream tag to DSP. Once specified, stream described by that
+ * tag will be tied to DSP for extraction for the entire lifetime of
+ * probe.
+ *
+ * Probing is initialized only once and each INIT request must be
+ * matched by DEINIT call.
+ */
+int sof_ipc_probe_init(struct snd_sof_dev *sdev,
+		u32 stream_tag, size_t buffer_size)
+{
+	struct sof_ipc_probe_dma_add_params *msg;
+	struct sof_ipc_reply reply;
+	size_t size = struct_size(msg, dma, 1);
+	int ret;
+
+	msg = kmalloc(size, GFP_KERNEL);
+	if (!msg)
+		return -ENOMEM;
+	msg->hdr.size = size;
+	msg->hdr.cmd = SOF_IPC_GLB_PROBE | SOF_IPC_PROBE_INIT;
+	msg->num_elems = 1;
+	msg->dma[0].stream_tag = stream_tag;
+	msg->dma[0].dma_buffer_size = buffer_size;
+
+	ret = sof_ipc_tx_message(sdev->ipc, msg->hdr.cmd, msg, msg->hdr.size,
+			&reply, sizeof(reply));
+	kfree(msg);
+	return ret;
+}
+EXPORT_SYMBOL(sof_ipc_probe_init);
+
+/**
+ * sof_ipc_probe_deinit - cleanup after data probing
+ * @sdev:	SOF sound device
+ *
+ * Host sends DEINIT request to free previously initialized probe
+ * on DSP side once it is no longer needed. DEINIT only when there
+ * are no probes connected and with all injectors detached.
+ */
+int sof_ipc_probe_deinit(struct snd_sof_dev *sdev)
+{
+	struct sof_ipc_cmd_hdr msg;
+	struct sof_ipc_reply reply;
+
+	msg.size = sizeof(msg);
+	msg.cmd = SOF_IPC_GLB_PROBE | SOF_IPC_PROBE_DEINIT;
+
+	return sof_ipc_tx_message(sdev->ipc, msg.cmd, &msg, msg.size,
+			&reply, sizeof(reply));
+}
+EXPORT_SYMBOL(sof_ipc_probe_deinit);
+
+static int sof_ipc_probe_info(struct snd_sof_dev *sdev, unsigned int cmd,
+		void **params, size_t *num_params)
+{
+	struct sof_ipc_probe_info_params msg = {{{0}}};
+	struct sof_ipc_probe_info_params *reply;
+	size_t bytes;
+	int ret;
+
+	*params = NULL;
+	*num_params = 0;
+
+	reply = kzalloc(SOF_IPC_MSG_MAX_SIZE, GFP_KERNEL);
+	if (!reply)
+		return -ENOMEM;
+	msg.rhdr.hdr.size = sizeof(msg);
+	msg.rhdr.hdr.cmd = SOF_IPC_GLB_PROBE | cmd;
+
+	ret = sof_ipc_tx_message(sdev->ipc, msg.rhdr.hdr.cmd, &msg,
+			msg.rhdr.hdr.size, reply, SOF_IPC_MSG_MAX_SIZE);
+	if (ret < 0 || reply->rhdr.error < 0)
+		goto exit;
+
+	if (!reply->num_elems)
+		goto exit;
+
+	bytes = reply->num_elems * sizeof(reply->dma[0]);
+	*params = kmemdup(&reply->dma[0], bytes, GFP_KERNEL);
+	if (!*params) {
+		ret = -ENOMEM;
+		goto exit;
+	}
+	*num_params = msg.num_elems;
+
+exit:
+	kfree(reply);
+	return ret;
+}
+
+/**
+ * sof_ipc_probe_dma_info - retrieve list of active injection dmas
+ * @sdev:	SOF sound device
+ * @dma:	Returned list of active dmas
+ * @num_dma:	Returned count of active dmas
+ *
+ * Host sends DMA_INFO request to obtain list of injection dmas it
+ * can use to transfer data over with.
+ *
+ * Note that list contains only injection dmas as there is only one
+ * extractor (dma) and it is always assigned on probing init.
+ * DSP knows exactly where data from extraction probes is going to,
+ * which is not the case for injection where multiple streams
+ * could be engaged.
+ */
+int sof_ipc_probe_dma_info(struct snd_sof_dev *sdev,
+		struct sof_probe_dma **dma, size_t *num_dma)
+{
+	return sof_ipc_probe_info(sdev, SOF_IPC_PROBE_DMA_INFO,
+			(void **)dma, num_dma);
+}
+EXPORT_SYMBOL(sof_ipc_probe_dma_info);
+
+/**
+ * sof_ipc_probe_dma_add - attach to specified dmas
+ * @sdev:	SOF sound device
+ * @dma:	List of streams (dmas) to attach to
+ * @num_dma:	Number of elements in @dma
+ *
+ * Contrary to extraction, injection streams are never assigned
+ * on init. Before attempting any data injection, host is responsible
+ * for specifying streams which will be later used to transfer data
+ * to connected probe points.
+ */
+int sof_ipc_probe_dma_add(struct snd_sof_dev *sdev,
+		struct sof_probe_dma *dma, size_t num_dma)
+{
+	struct sof_ipc_probe_dma_add_params *msg;
+	struct sof_ipc_reply reply;
+	size_t size = struct_size(msg, dma, num_dma);
+	int ret;
+
+	msg = kmalloc(size, GFP_KERNEL);
+	if (!msg)
+		return -ENOMEM;
+	msg->hdr.size = size;
+	msg->num_elems = num_dma;
+	msg->hdr.cmd = SOF_IPC_GLB_PROBE | SOF_IPC_PROBE_DMA_ADD;
+	memcpy(&msg->dma[0], dma, size - sizeof(*msg));
+
+	ret = sof_ipc_tx_message(sdev->ipc, msg->hdr.cmd, msg, msg->hdr.size,
+			&reply, sizeof(reply));
+	kfree(msg);
+	return ret;
+}
+EXPORT_SYMBOL(sof_ipc_probe_dma_add);
+
+/**
+ * sof_ipc_probe_dma_remove - detach from specified dmas
+ * @sdev:		SOF sound device
+ * @stream_tag:		List of stream tags to detach from
+ * @num_stream_tag:	Number of elements in @stream_tag
+ *
+ * Host sends DMA_REMOVE request to free previously attached stream
+ * from being occupied for injection. Each detach operation should
+ * match equivalent DMA_ADD. Detach only when all probes tied to
+ * given stream have been disconnected.
+ */
+int sof_ipc_probe_dma_remove(struct snd_sof_dev *sdev,
+		unsigned int *stream_tag, size_t num_stream_tag)
+{
+	struct sof_ipc_probe_dma_remove_params *msg;
+	struct sof_ipc_reply reply;
+	size_t size = struct_size(msg, stream_tag, num_stream_tag);
+	int ret;
+
+	msg = kmalloc(size, GFP_KERNEL);
+	if (!msg)
+		return -ENOMEM;
+	msg->hdr.size = size;
+	msg->num_elems = num_stream_tag;
+	msg->hdr.cmd = SOF_IPC_GLB_PROBE | SOF_IPC_PROBE_DMA_REMOVE;
+	memcpy(&msg->stream_tag[0], stream_tag, size - sizeof(*msg));
+
+	ret = sof_ipc_tx_message(sdev->ipc, msg->hdr.cmd, msg, msg->hdr.size,
+			&reply, sizeof(reply));
+	kfree(msg);
+	return ret;
+}
+EXPORT_SYMBOL(sof_ipc_probe_dma_remove);
+
+/**
+ * sof_ipc_probe_points_info - retrieve list of active probe points
+ * @sdev:	SOF sound device
+ * @desc:	Returned list of active probes
+ * @num_desc:	Returned count of active probes
+ *
+ * Host sends PROBE_POINT_INFO request to obtain list of active probe
+ * points, valid for disconnection when given probe is no longer
+ * required.
+ */
+int sof_ipc_probe_points_info(struct snd_sof_dev *sdev,
+		struct sof_probe_point_desc **desc, size_t *num_desc)
+{
+	return sof_ipc_probe_info(sdev, SOF_IPC_PROBE_POINT_INFO,
+				 (void **)desc, num_desc);
+}
+EXPORT_SYMBOL(sof_ipc_probe_points_info);
+
+/**
+ * sof_ipc_probe_points_add - connect specified probes
+ * @sdev:	SOF sound device
+ * @desc:	List of probe points to connect
+ * @num_desc:	Number of elements in @desc
+ *
+ * Dynamically connects to provided set of endpoints. Immediately
+ * after connection is established, host must be prepared to
+ * transfer data from or to target stream given the probing purpose.
+ *
+ * Each probe point should be removed using PROBE_POINT_REMOVE
+ * request when no longer needed.
+ */
+int sof_ipc_probe_points_add(struct snd_sof_dev *sdev,
+		struct sof_probe_point_desc *desc, size_t num_desc)
+{
+	struct sof_ipc_probe_point_add_params *msg;
+	struct sof_ipc_reply reply;
+	size_t size = struct_size(msg, desc, num_desc);
+	int ret;
+
+	msg = kmalloc(size, GFP_KERNEL);
+	if (!msg)
+		return -ENOMEM;
+	msg->hdr.size = size;
+	msg->num_elems = num_desc;
+	msg->hdr.cmd = SOF_IPC_GLB_PROBE | SOF_IPC_PROBE_POINT_ADD;
+	memcpy(&msg->desc[0], desc, size - sizeof(*msg));
+
+	ret = sof_ipc_tx_message(sdev->ipc, msg->hdr.cmd, msg, msg->hdr.size,
+			&reply, sizeof(reply));
+	kfree(msg);
+	return ret;
+}
+EXPORT_SYMBOL(sof_ipc_probe_points_add);
+
+/**
+ * sof_ipc_probe_points_remove - disconnect specified probes
+ * @sdev:		SOF sound device
+ * @buffer_id:		List of probe points to disconnect
+ * @num_buffer_id:	Number of elements in @desc
+ *
+ * Removes previously connected probes from list of active probe
+ * points and frees all resources on DSP side.
+ */
+int sof_ipc_probe_points_remove(struct snd_sof_dev *sdev,
+		unsigned int *buffer_id, size_t num_buffer_id)
+{
+	struct sof_ipc_probe_point_remove_params *msg;
+	struct sof_ipc_reply reply;
+	size_t size = struct_size(msg, buffer_id, num_buffer_id);
+	int ret;
+
+	msg = kmalloc(size, GFP_KERNEL);
+	if (!msg)
+		return -ENOMEM;
+	msg->hdr.size = size;
+	msg->num_elems = num_buffer_id;
+	msg->hdr.cmd = SOF_IPC_GLB_PROBE | SOF_IPC_PROBE_POINT_REMOVE;
+	memcpy(&msg->buffer_id[0], buffer_id, size - sizeof(*msg));
+
+	ret = sof_ipc_tx_message(sdev->ipc, msg->hdr.cmd, msg, msg->hdr.size,
+			&reply, sizeof(reply));
+	kfree(msg);
+	return ret;
+}
+EXPORT_SYMBOL(sof_ipc_probe_points_remove);
diff --git a/sound/soc/sof/probe.h b/sound/soc/sof/probe.h
new file mode 100644
index 000000000000..45daa5552834
--- /dev/null
+++ b/sound/soc/sof/probe.h
@@ -0,0 +1,85 @@
+/* SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause) */
+/*
+ * This file is provided under a dual BSD/GPLv2 license.  When using or
+ * redistributing this file, you may do so under either license.
+ *
+ * Copyright(c) 2019-2020 Intel Corporation. All rights reserved.
+ *
+ * Author: Cezary Rojewski <cezary.rojewski@intel.com>
+ */
+
+#ifndef __SOF_PROBE_H
+#define __SOF_PROBE_H
+
+#include <sound/sof/header.h>
+
+struct snd_sof_dev;
+
+#define SOF_PROBE_INVALID_NODE_ID UINT_MAX
+
+struct sof_probe_dma {
+	unsigned int stream_tag;
+	unsigned int dma_buffer_size;
+} __packed;
+
+enum sof_connection_purpose {
+	SOF_CONNECTION_PURPOSE_EXTRACT = 1,
+	SOF_CONNECTION_PURPOSE_INJECT,
+};
+
+struct sof_probe_point_desc {
+	unsigned int buffer_id;
+	unsigned int purpose;
+	unsigned int stream_tag;
+} __packed;
+
+struct sof_ipc_probe_dma_add_params {
+	struct sof_ipc_cmd_hdr hdr;
+	unsigned int num_elems;
+	struct sof_probe_dma dma[0];
+} __packed;
+
+struct sof_ipc_probe_info_params {
+	struct sof_ipc_reply rhdr;
+	unsigned int num_elems;
+	union {
+		struct sof_probe_dma dma[0];
+		struct sof_probe_point_desc desc[0];
+	};
+} __packed;
+
+struct sof_ipc_probe_dma_remove_params {
+	struct sof_ipc_cmd_hdr hdr;
+	unsigned int num_elems;
+	unsigned int stream_tag[0];
+} __packed;
+
+struct sof_ipc_probe_point_add_params {
+	struct sof_ipc_cmd_hdr hdr;
+	unsigned int num_elems;
+	struct sof_probe_point_desc desc[0];
+} __packed;
+
+struct sof_ipc_probe_point_remove_params {
+	struct sof_ipc_cmd_hdr hdr;
+	unsigned int num_elems;
+	unsigned int buffer_id[0];
+} __packed;
+
+int sof_ipc_probe_init(struct snd_sof_dev *sdev,
+		u32 stream_tag, size_t buffer_size);
+int sof_ipc_probe_deinit(struct snd_sof_dev *sdev);
+int sof_ipc_probe_dma_info(struct snd_sof_dev *sdev,
+		struct sof_probe_dma **dma, size_t *num_dma);
+int sof_ipc_probe_dma_add(struct snd_sof_dev *sdev,
+		struct sof_probe_dma *dma, size_t num_dma);
+int sof_ipc_probe_dma_remove(struct snd_sof_dev *sdev,
+		unsigned int *stream_tag, size_t num_stream_tag);
+int sof_ipc_probe_points_info(struct snd_sof_dev *sdev,
+		struct sof_probe_point_desc **desc, size_t *num_desc);
+int sof_ipc_probe_points_add(struct snd_sof_dev *sdev,
+		struct sof_probe_point_desc *desc, size_t num_desc);
+int sof_ipc_probe_points_remove(struct snd_sof_dev *sdev,
+		unsigned int *buffer_id, size_t num_buffer_id);
+
+#endif
-- 
2.20.1


             reply	other threads:[~2020-02-19  0:25 UTC|newest]

Thread overview: 116+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-19  0:10 Applied "ASoC: SOF: Implement Probe IPC API" to the asoc tree Mark Brown
  -- strict thread matches above, loose matches on Subject: below --
2020-04-14 14:48 Applied "ASoC: soc: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer" " Mark Brown
2020-04-14 14:48 Applied "ASoC: soc-core: set rtd->num_cpu/codec at soc_new_pcm_runtime()" " Mark Brown
2020-04-14 14:48 Applied "ASoC: soc-core: tidyup soc_new_pcm_runtime() rtd setups" " Mark Brown
2020-04-14 14:48 Applied "ASoC: soc-core: remove cpu_dai/codec_dai/cpu_dais/codec_dais" " Mark Brown
2020-04-14 14:46 Applied "ASoC: rockchip-spdif: add #sound-dai-cells property" " Mark Brown
2020-04-14 14:46 Applied "ASoC: rockchip-spdif: add power-domains " Mark Brown
2020-04-14 14:46 Applied "ASoC: wsa881x: mark read_only_wordlength flag" " Mark Brown
2020-04-14 11:59 Applied "ASoC: tas571x: disable regulators on failed probe" " Mark Brown
2020-03-27 15:34 Applied "ASoC: SOF: Intel: add SoundWire configuration interface" " Mark Brown
2020-03-27 15:34 Applied "ASoC: SOF: IPC: dai-intel: move ALH declarations in header file" " Mark Brown
2020-03-27 15:34 Applied "ASoC: SOF: Intel: hda: add SoundWire stream config/free callbacks" " Mark Brown
2020-03-27 15:33 Applied "ASoC: SOF: Intel: hda: disable SoundWire interrupts on suspend" " Mark Brown
2020-03-27 15:33 Applied "ASoC: SOF: Intel: hda: merge IPC, stream and SoundWire interrupt handlers" " Mark Brown
2020-03-27 15:33 Applied "ASoC: SOF: Intel: hda: add parameter to control SoundWire clock stop quirks" " Mark Brown
2020-03-27 15:33 Applied "ASoC: SOF: Intel: hda: add WAKEEN interrupt support for SoundWire" " Mark Brown
2020-03-27 15:33 Applied "Asoc: SOF: Intel: hda: check SoundWire wakeen interrupt in irq thread" " Mark Brown
2020-03-26 19:05 Applied "ASoC: SOF: (cosmetic) use for_each_pcm_streams() in sof_dai_load()" " Mark Brown
2020-03-26 19:05 Applied "ASoC: SOF: fix uninitialised "work" with VirtIO" " Mark Brown
2020-03-25 21:33 Applied "ASoC: Intel: broadwell: Revert back SSP0 link to use dummy components" " Mark Brown
2020-03-24 17:16 Applied "dt-bindings: sound: convert rockchip i2s bindings to yaml" " Mark Brown
2020-03-24 17:16 Applied "dt-bindings: sound: rockchip-i2s: add #sound-dai-cells property" " Mark Brown
2020-03-20 20:45 Applied "ASoC: soc-core: Merge CPU/Codec DAIs" " Mark Brown
2020-03-20 20:45 Applied "ASoC: soc-core: Merge for_each_rtd_cpu/codec_dais()" " Mark Brown
2020-03-20 20:45 Applied "ASoC: soc-dapm: " Mark Brown
2020-03-20 20:45 Applied "ASoC: soc-core: Merge CPU/Codec for soc_dai_pcm_new()" " Mark Brown
2020-03-18 21:41 Applied "ASoC: codecs: wsa881x: remove soundwire stream handling" " Mark Brown
2020-03-16 18:08 Applied "ALSA: compress: add wma codec profiles" " Mark Brown
2020-03-16 18:08 Applied "ALSA: compress: Add wma decoder params" " Mark Brown
2020-03-16 18:08 Applied "ASoC: qcom: q6asm: pass codec profile to q6asm_open_write" " Mark Brown
2020-03-16 18:08 Applied "ASoC: qcom: q6asm: add support to wma config" " Mark Brown
2020-03-16 18:08 Applied "ASoC: qcom: q6asm-dai: add support to wma decoder" " Mark Brown
2020-03-16 18:08 Applied "ALSA: compress: add alac & ape decoder params" " Mark Brown
2020-03-16 18:08 Applied "ASoC: qcom: q6asm: add support for alac and ape configs" " Mark Brown
2020-03-16 18:07 Applied "ALSA: compress: bump the version" " Mark Brown
2020-03-13 16:18 Applied "ASoC: Intel: boards: drop reverse deps for SND_HDA_CODEC_HDMI" " Mark Brown
2020-03-13 16:17 Applied "ASoC: Intel: sof_pcm512x: " Mark Brown
2020-03-13 16:17 Applied "ASoC: Intel: sof_pcm512x: make HDMI optional for all platforms" " Mark Brown
2020-03-13 16:17 Applied "ASoC: SOF: Intel: hda: remove SND_SOC_SOF_HDA_COMMON_HDMI_CODEC" " Mark Brown
2020-03-13 16:17 Applied "ASoC: codecs: hdac_hdmi: (cosmetic) remove redundant variable initialisations" " Mark Brown
2020-03-13 16:17 Applied "ASoC: Intel: skylake: " Mark Brown
2020-03-13 16:17 Applied "ASoC: Intel: (cosmetic) simplify structure member access" " Mark Brown
2020-03-13 16:17 Applied "ASoC: Intel: sof_da7219_max98373: Add support for max98360a speaker amp" " Mark Brown
2020-03-12 13:12 Applied "ASoC: SOF: Intel: Fix stream cleanup on hw free" " Mark Brown
2020-03-11 18:00 Applied "ASoC: zte: zx-tdm: remove redundant variables dev" " Mark Brown
2020-03-09 14:03 Applied "ASoC: jz4740-i2s: Fix divider written at incorrect offset in register" " Mark Brown
2020-03-06 15:03 Applied "ALSA: pcm: Add a standalone version of snd_pcm_limit_hw_rates" " Mark Brown
2020-03-06 15:03 Applied "ASoC: pcm: Export parameter intersection logic" " Mark Brown
2020-03-06 15:03 Applied "ASoC: soc-pcm: move dpcm_fe_dai_close()" " Mark Brown
2020-03-06 15:03 Applied "ASoC: soc-pcm: add dpcm_fe_dai_cleanup()" " Mark Brown
2020-03-06 15:03 Applied "ASoC: soc-pcm: use snd_soc_dai_get_pcm_stream() at dpcm_set_fe_runtime()" " Mark Brown
2020-03-06 15:03 Applied "ASoC: soc-pcm: tidyup dulicate handing at dpcm_fe_dai_startup()" " Mark Brown
2020-03-05 13:15 Applied "ASoC: soc-pcm: use defined stream" " Mark Brown
2020-03-05 13:15 Applied "ASoC: soc-pcm: remove duplicate be check from dpcm_add_paths()" " Mark Brown
2020-03-04 13:39 Applied "ASoC: stm32: sai: manage rebind issue" " Mark Brown
2020-03-03 17:07 Applied "ASoC: amd: Fix compile warning of argument type" " Mark Brown
2020-03-02 14:36 Applied "ASoC: rt1015: set snd_soc_dai_ops in rt1015_dai driver" " Mark Brown
2020-02-26 18:48 Applied "ASoC: tas2562: Fix sample rate error message" " Mark Brown
2020-02-26 18:47 Applied "ASoC: Add dapm_add_valid_dai_widget helper" " Mark Brown
2020-02-26 18:47 Applied "ASoC: Add multiple CPU DAI support in DAPM" " Mark Brown
2020-02-26 18:47 Applied "ASoC: dt-bindings: Add TAS2563 compatible to the TAS2562 binding" " Mark Brown
2020-02-26 18:47 Applied "ASoC: tas2562: Add entries for the TAS2563 audio amplifier" " Mark Brown
2020-02-20 22:18 Applied "dt-bindings: sound: Add TLV320ADCx140 dt bindings" " Mark Brown
2020-02-19 20:57 Applied "ASoC: soundwaire: qcom: use for_each_rtd_codec_dai() macro" " Mark Brown
2020-02-19 20:57 Applied "ASoC: qcom: sdm845: " Mark Brown
2020-02-19 20:57 Applied "ASoC: qcom: apq8016_sbc: " Mark Brown
2020-02-19 20:57 Applied "ASoC: intel: cml_rt1011_rt5682: " Mark Brown
2020-02-19 20:57 Applied "ASoC: intel: kbl_da7219_max98927: " Mark Brown
2020-02-19 20:57 Applied "ASoC: mediatek: mt8183-da7219-max98357: " Mark Brown
2020-02-19 20:57 Applied "ASoC: dt-bindings: Make RK3328 codec GPIO explicit" " Mark Brown
2020-02-19 20:56 Applied "ASoC: meson: add t9015 internal codec binding documentation" " Mark Brown
2020-02-19  0:11 Applied "ASoC: tas2562: Return invalid for when bitwidth is invalid" " Mark Brown
2020-02-19  0:11 Applied "ALSA: core: Expand DMA buffer information" " Mark Brown
2020-02-19  0:11 Applied "ALSA: core: Implement compress page allocation and free routines" " Mark Brown
2020-02-19  0:10 Applied "ASoC: SOF: Generic probe compress operations" " Mark Brown
2020-02-19  0:10 Applied "ASoC: SOF: Provide probe debugfs support" " Mark Brown
2020-02-19  0:10 Applied "ASoC: SOF: Intel: Add Probe compress CPU DAIs" " Mark Brown
2020-02-19  0:10 Applied "ASoC: rt5682: Add DAI clock binding info for WCLK/BCLK CCF usage" " Mark Brown
2020-02-19  0:10 Applied "ASoC: soc-pcm: move dai_get_widget()" " Mark Brown
2020-02-19  0:10 Applied "ASoC: soc-pcm: use dai_get_widget() at dpcm_get_be()" " Mark Brown
2020-02-19  0:10 Applied "ASoC: soc-pcm: use dai_get_widget() at dpcm_end_walk_at_be()" " Mark Brown
2020-02-19  0:10 Applied "ASoC: soc-pcm: use dpcm_get_be() " Mark Brown
2020-02-19  0:10 Applied "ASoC: soc-pcm: remove soc_dpcm_be_digital_mute()" " Mark Brown
2020-02-19  0:09 Applied "ASoC: soc-pcm: remove snd_soc_dpcm_be_get/set_state()" " Mark Brown
2020-02-19  0:09 Applied "ASoC: soc-pcm: add snd_soc_dpcm_can_be() and remove duplicate code" " Mark Brown
2020-02-19  0:09 Applied "ASoC: soc-pcm: use goto and remove multi return" " Mark Brown
2020-02-19  0:09 Applied "ASoC: soc-pcm: merge playback/cature_active into stream_active" " Mark Brown
2020-02-19  0:09 Applied "ALSA: pcm.h: add for_each_pcm_streams()" " Mark Brown
2020-02-19  0:09 Applied "ASoC: soc-core: use for_each_pcm_streams() macro" " Mark Brown
2020-02-19  0:09 Applied "ASoC: soc-pcm: " Mark Brown
2020-02-19  0:09 Applied "ASoC: soc-generic-dmaengine-pcm: " Mark Brown
2020-02-19  0:09 Applied "ASoC: dwc: dwc-i2s: " Mark Brown
2020-02-19  0:09 Applied "ASoC: fsl: fsl_asrc_dma: " Mark Brown
2020-02-19  0:09 Applied "ASoC: qcom: lpass-platform: " Mark Brown
2020-02-19  0:09 Applied "ASoC: sof: sof-audio: " Mark Brown
2020-02-19  0:09 Applied "ALSA: usx2y: " Mark Brown
2020-02-13 13:32 [alsa-devel] Applied "ASoC: mediatek: mt8183-da7219: change supported formats of DL2 and UL1" " Mark Brown
2020-02-13 13:32 [alsa-devel] Applied "ASoC: mediatek: mt8183-da7219: pull TDM GPIO pins down when probed" " Mark Brown
2020-02-13 13:32 [alsa-devel] Applied "ASoC: mediatek: mt8183-da7219: support TDM out and 8ch I2S out" " Mark Brown
2020-02-13 13:32 [alsa-devel] Applied "ASoC: mediatek: mt8183-da7219: apply some refactors" " Mark Brown
2020-01-15 14:12 [alsa-devel] Applied "regulator fix for "regulator: core: Add regulator_is_equal() helper"" " Mark Brown
2020-01-13 16:11 [alsa-devel] Applied "ASoC: atmel: fix build error with CONFIG_SND_ATMEL_SOC_DMA=m" " Mark Brown
2020-01-13 16:11 [alsa-devel] Applied "ASoC: rt1308-sdw: add rt1308 SdW amplifier driver" " Mark Brown
2020-01-13 15:13 [alsa-devel] Applied "ASoC: SOF: Intel: fix HDA codec driver probe with multiple controllers" " Mark Brown
2020-01-13 15:13 [alsa-devel] Applied "ASoC: sti: fix possible sleep-in-atomic" " Mark Brown
2020-01-10 13:38 [alsa-devel] Applied "ASoC: max98090: Drop incorrectly applied duplicate commit" " Mark Brown
2019-12-27  1:08 [alsa-devel] Applied "ASoC: amd: Create multiple I2S platform device endpoint" " Mark Brown
2019-12-25 18:21 [alsa-devel] Applied "ASoC: dt-bindings: add dt bindings for WCD9340/WCD9341 audio codec" " Mark Brown
2019-12-25 18:21 [alsa-devel] Applied "ASoC: wcd934x: add basic controls" " Mark Brown
2019-12-25 18:21 [alsa-devel] Applied "ASoC: wcd934x: add playback dapm widgets" " Mark Brown
2019-12-25 18:21 [alsa-devel] Applied "ASoC: wcd934x: add capture " Mark Brown
2019-12-25 18:21 [alsa-devel] Applied "ASoC: wcd934x: add audio routings" " Mark Brown
2019-12-25 18:21 [alsa-devel] Applied "ASoC: qcom: dt-bindings: Add compatible for DB845c and Lenovo Yoga" " Mark Brown
2019-12-25 18:21 [alsa-devel] Applied "ASoC: qcom: sdm845: add support to " Mark Brown
2019-12-25  0:09 [alsa-devel] Applied "ASoC: fsl_audmix: add missed pm_runtime_disable" " Mark Brown
2019-11-18 17:48 [alsa-devel] Applied "ASoC: SOF: Intel: Fix build break" " 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= \
    --to=broonie@kernel.org \
    --cc=alsa-devel@alsa-project.org \
    --cc=cezary.rojewski@intel.com \
    --cc=pierre-louis.bossart@linux.intel.com \
    /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 NNTP newsgroup(s).