All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/8] ASoC: SOF: Intel and IMX updates for 5.8
@ 2020-05-15 13:59 Kai Vehmanen
  2020-05-15 13:59 ` [PATCH 1/8] ASoC: SOF: Do nothing when DSP PM callbacks are not set Kai Vehmanen
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Kai Vehmanen @ 2020-05-15 13:59 UTC (permalink / raw)
  To: alsa-devel, broonie
  Cc: daniel.baluta, pierre-louis.bossart, kai.vehmanen, ranjani.sridharan

Hi,

here's a series of minor fixes and improvements to SOF. Add support
for smart amplifier component type. Cover more systems by relaxing
match rules for the generic Soundwire machine driver. Fix issues with
driver unload and address a few compiler warnings.

Daniel Baluta (2):
  ASoC: SOF: Do nothing when DSP PM callbacks are not set
  ASoC: SOF: define INFO_ flags in dsp_ops

Keyon Jie (1):
  ASoC: SOF: topology: add support to smart amplifier

Marcin Rajwa (2):
  ASoC: SOF: add a power_down_notify method
  ASoC: SOF: inform DSP that driver is going to be removed

Pierre-Louis Bossart (2):
  ASoC: SOF: imx: make dsp_ops static
  ASoC: SOF: imx: make imx8m_dsp_ops static

randerwang (1):
  ASoC: SOF: Intel: sdw: relax sdw machine select constraints

 include/sound/sof/topology.h |  2 ++
 sound/soc/sof/core.c         |  6 ++++++
 sound/soc/sof/imx/imx8.c     |  2 +-
 sound/soc/sof/imx/imx8m.c    |  8 +++++++-
 sound/soc/sof/intel/hda.c    | 10 +++++++++-
 sound/soc/sof/pm.c           | 19 +++++++++++++++++--
 sound/soc/sof/sof-priv.h     |  1 +
 sound/soc/sof/topology.c     |  1 +
 8 files changed, 44 insertions(+), 5 deletions(-)

-- 
2.26.0


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

* [PATCH 1/8] ASoC: SOF: Do nothing when DSP PM callbacks are not set
  2020-05-15 13:59 [PATCH 0/8] ASoC: SOF: Intel and IMX updates for 5.8 Kai Vehmanen
@ 2020-05-15 13:59 ` Kai Vehmanen
  2020-05-15 13:59 ` [PATCH 2/8] ASoC: SOF: add a power_down_notify method Kai Vehmanen
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Kai Vehmanen @ 2020-05-15 13:59 UTC (permalink / raw)
  To: alsa-devel, broonie
  Cc: daniel.baluta, pierre-louis.bossart, kai.vehmanen, ranjani.sridharan

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

This provides a better separation between runtime and PM sleep
callbacks.

Only do nothing if given runtime flag is set and calback is not set.

With the current implementation, if PM sleep callback is set but runtime
callback is not set then at runtime resume we reload the firmware even
if we do not support runtime resume callback.

Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
---
 sound/soc/sof/pm.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/sound/soc/sof/pm.c b/sound/soc/sof/pm.c
index 1f8f7e33979d..119e4d644ef4 100644
--- a/sound/soc/sof/pm.c
+++ b/sound/soc/sof/pm.c
@@ -90,7 +90,10 @@ static int sof_resume(struct device *dev, bool runtime_resume)
 	int ret;
 
 	/* do nothing if dsp resume callbacks are not set */
-	if (!sof_ops(sdev)->resume || !sof_ops(sdev)->runtime_resume)
+	if (!runtime_resume && !sof_ops(sdev)->resume)
+		return 0;
+
+	if (runtime_resume && !sof_ops(sdev)->runtime_resume)
 		return 0;
 
 	/* DSP was never successfully started, nothing to resume */
@@ -175,7 +178,10 @@ static int sof_suspend(struct device *dev, bool runtime_suspend)
 	int ret;
 
 	/* do nothing if dsp suspend callback is not set */
-	if (!sof_ops(sdev)->suspend)
+	if (!runtime_suspend && !sof_ops(sdev)->suspend)
+		return 0;
+
+	if (runtime_suspend && !sof_ops(sdev)->runtime_suspend)
 		return 0;
 
 	if (sdev->fw_state != SOF_FW_BOOT_COMPLETE)
-- 
2.26.0


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

* [PATCH 2/8] ASoC: SOF: add a power_down_notify method
  2020-05-15 13:59 [PATCH 0/8] ASoC: SOF: Intel and IMX updates for 5.8 Kai Vehmanen
  2020-05-15 13:59 ` [PATCH 1/8] ASoC: SOF: Do nothing when DSP PM callbacks are not set Kai Vehmanen
@ 2020-05-15 13:59 ` Kai Vehmanen
  2020-05-15 13:59 ` [PATCH 3/8] ASoC: SOF: inform DSP that driver is going to be removed Kai Vehmanen
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Kai Vehmanen @ 2020-05-15 13:59 UTC (permalink / raw)
  To: alsa-devel, broonie
  Cc: Marcin Rajwa, daniel.baluta, pierre-louis.bossart, kai.vehmanen,
	ranjani.sridharan

From: Marcin Rajwa <marcin.rajwa@linux.intel.com>

This patch adds a snd_sof_dsp_power_down_notify() method which aims to
prepare the DSP for the upcoming power down.
This new function make use of SOF_IPC_PM_CTX_SAVE message.

Signed-off-by: Marcin Rajwa <marcin.rajwa@linux.intel.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
---
 sound/soc/sof/pm.c       | 9 +++++++++
 sound/soc/sof/sof-priv.h | 1 +
 2 files changed, 10 insertions(+)

diff --git a/sound/soc/sof/pm.c b/sound/soc/sof/pm.c
index 119e4d644ef4..5e804a7728f5 100644
--- a/sound/soc/sof/pm.c
+++ b/sound/soc/sof/pm.c
@@ -256,6 +256,15 @@ static int sof_suspend(struct device *dev, bool runtime_suspend)
 	return ret;
 }
 
+int snd_sof_dsp_power_down_notify(struct snd_sof_dev *sdev)
+{
+	/* Notify DSP of upcoming power down */
+	if (sof_ops(sdev)->remove)
+		return sof_send_pm_ctx_ipc(sdev, SOF_IPC_PM_CTX_SAVE);
+
+	return 0;
+}
+
 int snd_sof_runtime_suspend(struct device *dev)
 {
 	return sof_suspend(dev, true);
diff --git a/sound/soc/sof/sof-priv.h b/sound/soc/sof/sof-priv.h
index a34dbae9f971..3ed39b887214 100644
--- a/sound/soc/sof/sof-priv.h
+++ b/sound/soc/sof/sof-priv.h
@@ -453,6 +453,7 @@ int snd_sof_runtime_resume(struct device *dev);
 int snd_sof_runtime_idle(struct device *dev);
 int snd_sof_resume(struct device *dev);
 int snd_sof_suspend(struct device *dev);
+int snd_sof_dsp_power_down_notify(struct snd_sof_dev *sdev);
 int snd_sof_prepare(struct device *dev);
 void snd_sof_complete(struct device *dev);
 
-- 
2.26.0


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

* [PATCH 3/8] ASoC: SOF: inform DSP that driver is going to be removed
  2020-05-15 13:59 [PATCH 0/8] ASoC: SOF: Intel and IMX updates for 5.8 Kai Vehmanen
  2020-05-15 13:59 ` [PATCH 1/8] ASoC: SOF: Do nothing when DSP PM callbacks are not set Kai Vehmanen
  2020-05-15 13:59 ` [PATCH 2/8] ASoC: SOF: add a power_down_notify method Kai Vehmanen
@ 2020-05-15 13:59 ` Kai Vehmanen
  2020-05-15 13:59 ` [PATCH 4/8] ASoC: SOF: topology: add support to smart amplifier Kai Vehmanen
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Kai Vehmanen @ 2020-05-15 13:59 UTC (permalink / raw)
  To: alsa-devel, broonie
  Cc: Marcin Rajwa, daniel.baluta, pierre-louis.bossart, kai.vehmanen,
	ranjani.sridharan

From: Marcin Rajwa <marcin.rajwa@linux.intel.com>

This patch invokes the DSP power down notifier to inform
DSP that driver is going to be removed.
The module removal entails DSP power down, disabling of
IRQs and more. Therefore it is highly recommended to inform
the DSP about this upcoming event.

Due to hardware limitations on some Intel platforms it is necessary
to power gate all LPSRAM banks that were enabled prior to controller
reset. Otherwise, an attempt to write LPSRAM control registers may
have no effect.

Signed-off-by: Marcin Rajwa <marcin.rajwa@linux.intel.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
---
 sound/soc/sof/core.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/sound/soc/sof/core.c b/sound/soc/sof/core.c
index ef9be4f45e27..339c4930b0c0 100644
--- a/sound/soc/sof/core.c
+++ b/sound/soc/sof/core.c
@@ -343,6 +343,12 @@ int snd_sof_device_remove(struct device *dev)
 {
 	struct snd_sof_dev *sdev = dev_get_drvdata(dev);
 	struct snd_sof_pdata *pdata = sdev->pdata;
+	int ret;
+
+	ret = snd_sof_dsp_power_down_notify(sdev);
+	if (ret < 0)
+		dev_warn(dev, "error: %d failed to prepare DSP for device removal",
+			 ret);
 
 	if (IS_ENABLED(CONFIG_SND_SOC_SOF_PROBE_WORK_QUEUE))
 		cancel_work_sync(&sdev->probe_work);
-- 
2.26.0


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

* [PATCH 4/8] ASoC: SOF: topology: add support to smart amplifier
  2020-05-15 13:59 [PATCH 0/8] ASoC: SOF: Intel and IMX updates for 5.8 Kai Vehmanen
                   ` (2 preceding siblings ...)
  2020-05-15 13:59 ` [PATCH 3/8] ASoC: SOF: inform DSP that driver is going to be removed Kai Vehmanen
@ 2020-05-15 13:59 ` Kai Vehmanen
  2020-05-15 13:59 ` [PATCH 5/8] ASoC: SOF: Intel: sdw: relax sdw machine select constraints Kai Vehmanen
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Kai Vehmanen @ 2020-05-15 13:59 UTC (permalink / raw)
  To: alsa-devel, broonie
  Cc: Keyon Jie, daniel.baluta, pierre-louis.bossart, kai.vehmanen,
	ranjani.sridharan

From: Keyon Jie <yang.jie@linux.intel.com>

Add smart amplifier component support, which is designed as another new
type of process component and used for speaker protection algorithm
integration.

Signed-off-by: Keyon Jie <yang.jie@linux.intel.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
---
 include/sound/sof/topology.h | 2 ++
 sound/soc/sof/topology.c     | 1 +
 2 files changed, 3 insertions(+)

diff --git a/include/sound/sof/topology.h b/include/sound/sof/topology.h
index 872de52b3144..f56e80d09b32 100644
--- a/include/sound/sof/topology.h
+++ b/include/sound/sof/topology.h
@@ -38,6 +38,7 @@ enum sof_comp_type {
 	SOF_COMP_DEMUX,
 	SOF_COMP_ASRC,		/**< Asynchronous sample rate converter */
 	SOF_COMP_DCBLOCK,
+	SOF_COMP_SMART_AMP,             /**< smart amplifier component */
 	/* keep FILEREAD/FILEWRITE as the last ones */
 	SOF_COMP_FILEREAD = 10000,	/**< host test based file IO */
 	SOF_COMP_FILEWRITE = 10001,	/**< host test based file IO */
@@ -220,6 +221,7 @@ enum sof_ipc_process_type {
 	SOF_PROCESS_MUX,
 	SOF_PROCESS_DEMUX,
 	SOF_PROCESS_DCBLOCK,
+	SOF_PROCESS_SMART_AMP,	/**< Smart Amplifier */
 };
 
 /* generic "effect", "codec" or proprietary processing component */
diff --git a/sound/soc/sof/topology.c b/sound/soc/sof/topology.c
index 0259537d3740..6a9703e5ff60 100644
--- a/sound/soc/sof/topology.c
+++ b/sound/soc/sof/topology.c
@@ -431,6 +431,7 @@ static const struct sof_process_types sof_process[] = {
 	{"MUX", SOF_PROCESS_MUX, SOF_COMP_MUX},
 	{"DEMUX", SOF_PROCESS_DEMUX, SOF_COMP_DEMUX},
 	{"DCBLOCK", SOF_PROCESS_DCBLOCK, SOF_COMP_DCBLOCK},
+	{"SMART_AMP", SOF_PROCESS_SMART_AMP, SOF_COMP_SMART_AMP},
 };
 
 static enum sof_ipc_process_type find_process(const char *name)
-- 
2.26.0


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

* [PATCH 5/8] ASoC: SOF: Intel: sdw: relax sdw machine select constraints
  2020-05-15 13:59 [PATCH 0/8] ASoC: SOF: Intel and IMX updates for 5.8 Kai Vehmanen
                   ` (3 preceding siblings ...)
  2020-05-15 13:59 ` [PATCH 4/8] ASoC: SOF: topology: add support to smart amplifier Kai Vehmanen
@ 2020-05-15 13:59 ` Kai Vehmanen
  2020-05-15 13:59 ` [PATCH 6/8] ASoC: SOF: define INFO_ flags in dsp_ops Kai Vehmanen
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Kai Vehmanen @ 2020-05-15 13:59 UTC (permalink / raw)
  To: alsa-devel, broonie
  Cc: Guennadi Liakhovetski, kai.vehmanen, pierre-louis.bossart,
	ranjani.sridharan, daniel.baluta, randerwang

From: randerwang <rander.wang@linux.intel.com>

On some platforms such as Up Extreme all links are enabled but only one
link can be used by external codec. Instead of exact match of two masks,
first check whether link_mask of mach is subset of link_mask supported
by hw and then go on searching link_adr.

Signed-off-by: randerwang <rander.wang@linux.intel.com>
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
---
 sound/soc/sof/intel/hda.c | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/sound/soc/sof/intel/hda.c b/sound/soc/sof/intel/hda.c
index 578ac7b036b0..63ca920c8e6e 100644
--- a/sound/soc/sof/intel/hda.c
+++ b/sound/soc/sof/intel/hda.c
@@ -1107,7 +1107,15 @@ static int hda_sdw_machine_select(struct snd_sof_dev *sdev)
 	if (link_mask && !pdata->machine) {
 		for (mach = pdata->desc->alt_machines;
 		     mach && mach->link_mask; mach++) {
-			if (mach->link_mask != link_mask)
+			/*
+			 * On some platforms such as Up Extreme all links
+			 * are enabled but only one link can be used by
+			 * external codec. Instead of exact match of two masks,
+			 * first check whether link_mask of mach is subset of
+			 * link_mask supported by hw and then go on searching
+			 * link_adr
+			 */
+			if (~link_mask & mach->link_mask)
 				continue;
 
 			/* No need to match adr if there is no links defined */
-- 
2.26.0


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

* [PATCH 6/8] ASoC: SOF: define INFO_ flags in dsp_ops
  2020-05-15 13:59 [PATCH 0/8] ASoC: SOF: Intel and IMX updates for 5.8 Kai Vehmanen
                   ` (4 preceding siblings ...)
  2020-05-15 13:59 ` [PATCH 5/8] ASoC: SOF: Intel: sdw: relax sdw machine select constraints Kai Vehmanen
@ 2020-05-15 13:59 ` Kai Vehmanen
  2020-05-15 13:59 ` [PATCH 7/8] ASoC: SOF: imx: make dsp_ops static Kai Vehmanen
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Kai Vehmanen @ 2020-05-15 13:59 UTC (permalink / raw)
  To: alsa-devel, broonie
  Cc: daniel.baluta, pierre-louis.bossart, kai.vehmanen, ranjani.sridharan

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

In the past, the INFO_ flags such as PAUSE/NO_PERIOD_WAKEUP were
defined in the SOF PCM core, but that was changed since
commit 27e322fabd508b ("ASoC: SOF: define INFO_ flags in dsp_ops")

Now these flags must be set in DSP ops.

Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
---
 sound/soc/sof/imx/imx8m.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/sound/soc/sof/imx/imx8m.c b/sound/soc/sof/imx/imx8m.c
index 3ac0444dca93..f83581041cf3 100644
--- a/sound/soc/sof/imx/imx8m.c
+++ b/sound/soc/sof/imx/imx8m.c
@@ -273,6 +273,12 @@ struct snd_sof_dsp_ops sof_imx8m_ops = {
 	/* DAI drivers */
 	.drv = imx8m_dai,
 	.num_drv = 1, /* we have only 1 SAI interface on i.MX8M */
+
+	.hw_info = SNDRV_PCM_INFO_MMAP |
+		SNDRV_PCM_INFO_MMAP_VALID |
+		SNDRV_PCM_INFO_INTERLEAVED |
+		SNDRV_PCM_INFO_PAUSE |
+		SNDRV_PCM_INFO_NO_PERIOD_WAKEUP,
 };
 EXPORT_SYMBOL(sof_imx8m_ops);
 
-- 
2.26.0


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

* [PATCH 7/8] ASoC: SOF: imx: make dsp_ops static
  2020-05-15 13:59 [PATCH 0/8] ASoC: SOF: Intel and IMX updates for 5.8 Kai Vehmanen
                   ` (5 preceding siblings ...)
  2020-05-15 13:59 ` [PATCH 6/8] ASoC: SOF: define INFO_ flags in dsp_ops Kai Vehmanen
@ 2020-05-15 13:59 ` Kai Vehmanen
  2020-05-15 13:59 ` [PATCH 8/8] ASoC: SOF: imx: make imx8m_dsp_ops static Kai Vehmanen
  2020-05-18 16:40 ` [PATCH 0/8] ASoC: SOF: Intel and IMX updates for 5.8 Mark Brown
  8 siblings, 0 replies; 10+ messages in thread
From: Kai Vehmanen @ 2020-05-15 13:59 UTC (permalink / raw)
  To: alsa-devel, broonie
  Cc: daniel.baluta, pierre-louis.bossart, kai.vehmanen, ranjani.sridharan

From: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>

This was in the SOF tree but lost in upstream contributions

Fixes: 202acc565a1f05 ("ASoC: SOF: imx: Add i.MX8 HW support")
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
---
 sound/soc/sof/imx/imx8.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/sof/imx/imx8.c b/sound/soc/sof/imx/imx8.c
index 68b2edccd791..63f9c20a1bac 100644
--- a/sound/soc/sof/imx/imx8.c
+++ b/sound/soc/sof/imx/imx8.c
@@ -119,7 +119,7 @@ static void imx8_dsp_handle_request(struct imx_dsp_ipc *ipc)
 	snd_sof_ipc_msgs_rx(priv->sdev);
 }
 
-struct imx_dsp_ops dsp_ops = {
+static struct imx_dsp_ops dsp_ops = {
 	.handle_reply		= imx8_dsp_handle_reply,
 	.handle_request		= imx8_dsp_handle_request,
 };
-- 
2.26.0


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

* [PATCH 8/8] ASoC: SOF: imx: make imx8m_dsp_ops static
  2020-05-15 13:59 [PATCH 0/8] ASoC: SOF: Intel and IMX updates for 5.8 Kai Vehmanen
                   ` (6 preceding siblings ...)
  2020-05-15 13:59 ` [PATCH 7/8] ASoC: SOF: imx: make dsp_ops static Kai Vehmanen
@ 2020-05-15 13:59 ` Kai Vehmanen
  2020-05-18 16:40 ` [PATCH 0/8] ASoC: SOF: Intel and IMX updates for 5.8 Mark Brown
  8 siblings, 0 replies; 10+ messages in thread
From: Kai Vehmanen @ 2020-05-15 13:59 UTC (permalink / raw)
  To: alsa-devel, broonie
  Cc: daniel.baluta, pierre-louis.bossart, kai.vehmanen, ranjani.sridharan

From: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>

This was in the SOF tree but lost in upstream contributions.

Fixes: afb93d716533dd ("ASoC: SOF: imx: Add i.MX8M HW support")
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
---
 sound/soc/sof/imx/imx8m.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/sof/imx/imx8m.c b/sound/soc/sof/imx/imx8m.c
index f83581041cf3..fa86a9e2990f 100644
--- a/sound/soc/sof/imx/imx8m.c
+++ b/sound/soc/sof/imx/imx8m.c
@@ -92,7 +92,7 @@ static void imx8m_dsp_handle_request(struct imx_dsp_ipc *ipc)
 	snd_sof_ipc_msgs_rx(priv->sdev);
 }
 
-struct imx_dsp_ops imx8m_dsp_ops = {
+static struct imx_dsp_ops imx8m_dsp_ops = {
 	.handle_reply		= imx8m_dsp_handle_reply,
 	.handle_request		= imx8m_dsp_handle_request,
 };
-- 
2.26.0


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

* Re: [PATCH 0/8] ASoC: SOF: Intel and IMX updates for 5.8
  2020-05-15 13:59 [PATCH 0/8] ASoC: SOF: Intel and IMX updates for 5.8 Kai Vehmanen
                   ` (7 preceding siblings ...)
  2020-05-15 13:59 ` [PATCH 8/8] ASoC: SOF: imx: make imx8m_dsp_ops static Kai Vehmanen
@ 2020-05-18 16:40 ` Mark Brown
  8 siblings, 0 replies; 10+ messages in thread
From: Mark Brown @ 2020-05-18 16:40 UTC (permalink / raw)
  To: alsa-devel, Kai Vehmanen
  Cc: daniel.baluta, ranjani.sridharan, pierre-louis.bossart

On Fri, 15 May 2020 16:59:50 +0300, Kai Vehmanen wrote:
> here's a series of minor fixes and improvements to SOF. Add support
> for smart amplifier component type. Cover more systems by relaxing
> match rules for the generic Soundwire machine driver. Fix issues with
> driver unload and address a few compiler warnings.
> 
> Daniel Baluta (2):
>   ASoC: SOF: Do nothing when DSP PM callbacks are not set
>   ASoC: SOF: define INFO_ flags in dsp_ops
> 
> [...]

Applied to

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

Thanks!

[1/8] ASoC: SOF: Do nothing when DSP PM callbacks are not set
      commit: c26fde3b15ed41f5f452f1da727795f787833287
[2/8] ASoC: SOF: add a power_down_notify method
      commit: 3541aef1b83fa3a13e9c4ecc0919156ff2ec9c22
[3/8] ASoC: SOF: inform DSP that driver is going to be removed
      commit: 9f369f7e4660d05b5318aa413db199a70dfb2c4f
[4/8] ASoC: SOF: topology: add support to smart amplifier
      commit: 82e8c00fa18a3ef0ad3087dcad1d82637a738e30
[5/8] ASoC: SOF: Intel: sdw: relax sdw machine select constraints
      commit: 7d1952bceb8a1a2372a1cb86ab109c6ec8772c5c
[6/8] ASoC: SOF: define INFO_ flags in dsp_ops
      commit: 5c2c3cb1ca7875a2685c8cc65f08a1238e00cedb
[7/8] ASoC: SOF: imx: make dsp_ops static
      commit: 35e7c09d1edd6c60bfa98070b657986500819fd6
[8/8] ASoC: SOF: imx: make imx8m_dsp_ops static
      commit: 99cb681e7b8eec917ddb34b76e303aa20b2d1c1a

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

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

end of thread, other threads:[~2020-05-18 16:42 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-15 13:59 [PATCH 0/8] ASoC: SOF: Intel and IMX updates for 5.8 Kai Vehmanen
2020-05-15 13:59 ` [PATCH 1/8] ASoC: SOF: Do nothing when DSP PM callbacks are not set Kai Vehmanen
2020-05-15 13:59 ` [PATCH 2/8] ASoC: SOF: add a power_down_notify method Kai Vehmanen
2020-05-15 13:59 ` [PATCH 3/8] ASoC: SOF: inform DSP that driver is going to be removed Kai Vehmanen
2020-05-15 13:59 ` [PATCH 4/8] ASoC: SOF: topology: add support to smart amplifier Kai Vehmanen
2020-05-15 13:59 ` [PATCH 5/8] ASoC: SOF: Intel: sdw: relax sdw machine select constraints Kai Vehmanen
2020-05-15 13:59 ` [PATCH 6/8] ASoC: SOF: define INFO_ flags in dsp_ops Kai Vehmanen
2020-05-15 13:59 ` [PATCH 7/8] ASoC: SOF: imx: make dsp_ops static Kai Vehmanen
2020-05-15 13:59 ` [PATCH 8/8] ASoC: SOF: imx: make imx8m_dsp_ops static Kai Vehmanen
2020-05-18 16:40 ` [PATCH 0/8] ASoC: SOF: Intel and IMX updates for 5.8 Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.