All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/12] ASoC: SOF: stability fixes
@ 2019-05-22 16:21 Pierre-Louis Bossart
  2019-05-22 16:21 ` [PATCH v2 01/12] ASoC: SOF: core: remove DSP after unregistering machine driver Pierre-Louis Bossart
                   ` (11 more replies)
  0 siblings, 12 replies; 31+ messages in thread
From: Pierre-Louis Bossart @ 2019-05-22 16:21 UTC (permalink / raw)
  To: alsa-devel; +Cc: tiwai, broonie, Pierre-Louis Bossart

No new functionality here but fixes to the IPC, memory allocation,
workqueues, control, runtime_pm and HDaudio support. These issues were
identified during the integration/productization of new platforms.

I added a 'Fixes' tag to make sure backports/stable can pick up these
patches, in case it's too late for them to land in 5.2

The next batch for SOF will be a set of new capabilities for trace,
IPC test, Hdaudio support, they will be submitted after additional
tests and once these fixes are reviewed/merged.

Thanks!

Changes since v1:
Feedback from Takashi: use spin_lock_irq instead of spin_lock_irq_save
Added Takashi's Reviewed-by tag

Amadeusz Sławiński (1):
  ALSA: hdac: fix memory release for SST and SOF drivers

Guennadi Liakhovetski (1):
  ASoC: SOF: ipc: fix a race, leading to IPC timeouts

Keyon Jie (1):
  ASoC: SOF: control: correct the copy size for bytes kcontrol put

Libin Yang (2):
  ASoC: SOF: pcm: clear hw_params_upon_resume flag correctly
  ASoC: SOF: Intel: hda-codec: fix memory allocation

Pierre-Louis Bossart (2):
  ASoC: SOF: core: fix error handling with the probe workqueue
  ASoC: SOF: pcm: remove warning - initialize workqueue on open

Ranjani Sridharan (3):
  ASoC: SOF: core: remove DSP after unregistering machine driver
  ASoC: SOF: core: remove snd_soc_unregister_component in case of error
  ASoC: SOF: pcm: remove runtime PM calls during pcm open/close

Zhu Yingjiang (2):
  ASoC: SOF: Intel: hda: fix the hda init chip
  ASoC: SOF: Intel: hda: use the defined ppcap functions

 sound/hda/ext/hdac_ext_bus.c    |   1 -
 sound/soc/sof/control.c         |   9 +--
 sound/soc/sof/core.c            |  29 +++++++--
 sound/soc/sof/intel/bdw.c       |  10 +--
 sound/soc/sof/intel/byt.c       |  11 ++--
 sound/soc/sof/intel/cnl.c       |   5 ++
 sound/soc/sof/intel/hda-codec.c |   6 +-
 sound/soc/sof/intel/hda-ctrl.c  | 102 +++++++++++++++++++++++++++---
 sound/soc/sof/intel/hda-ipc.c   |  18 +++++-
 sound/soc/sof/intel/hda.c       | 109 +++++++-------------------------
 sound/soc/sof/ipc.c             |  13 ----
 sound/soc/sof/pcm.c             |  37 ++---------
 12 files changed, 184 insertions(+), 166 deletions(-)

-- 
2.20.1

_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
https://mailman.alsa-project.org/mailman/listinfo/alsa-devel

^ permalink raw reply	[flat|nested] 31+ messages in thread
* [PATCH v3 9/9] ASoC: SOF: Intel: hda: use the defined ppcap functions
@ 2019-05-24 19:09 Pierre-Louis Bossart
  2019-05-30 16:33 ` Applied "ASoC: SOF: Intel: hda: use the defined ppcap functions" to the asoc tree Mark Brown
  0 siblings, 1 reply; 31+ messages in thread
From: Pierre-Louis Bossart @ 2019-05-24 19:09 UTC (permalink / raw)
  To: alsa-devel; +Cc: tiwai, broonie, Zhu Yingjiang, Pierre-Louis Bossart

From: Zhu Yingjiang <yingjiang.zhu@linux.intel.com>

There are already defined ppcap and ppcap interrupt functions, use
the already defined functions for easy code read.

Fixes: 8a300c8fb17 ("ASoC: SOF: Intel: Add HDA controller for Intel DSP")
Reviewed-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Zhu Yingjiang <yingjiang.zhu@linux.intel.com>
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
---
 sound/soc/sof/intel/hda.c | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/sound/soc/sof/intel/hda.c b/sound/soc/sof/intel/hda.c
index e47f03dc62f0..7edeee4fc74b 100644
--- a/sound/soc/sof/intel/hda.c
+++ b/sound/soc/sof/intel/hda.c
@@ -540,13 +540,9 @@ int hda_dsp_probe(struct snd_sof_dev *sdev)
 	if (ret < 0)
 		goto free_ipc_irq;
 
-	/* enable DSP features */
-	snd_sof_dsp_update_bits(sdev, HDA_DSP_PP_BAR, SOF_HDA_REG_PP_PPCTL,
-				SOF_HDA_PPCTL_GPROCEN, SOF_HDA_PPCTL_GPROCEN);
-
-	/* enable DSP IRQ */
-	snd_sof_dsp_update_bits(sdev, HDA_DSP_PP_BAR, SOF_HDA_REG_PP_PPCTL,
-				SOF_HDA_PPCTL_PIE, SOF_HDA_PPCTL_PIE);
+	/* enable ppcap interrupt */
+	hda_dsp_ctrl_ppcap_enable(sdev, true);
+	hda_dsp_ctrl_ppcap_int_enable(sdev, true);
 
 	/* initialize waitq for code loading */
 	init_waitqueue_head(&sdev->waitq);
-- 
2.20.1

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

end of thread, other threads:[~2019-06-17  7:30 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-22 16:21 [PATCH v2 00/12] ASoC: SOF: stability fixes Pierre-Louis Bossart
2019-05-22 16:21 ` [PATCH v2 01/12] ASoC: SOF: core: remove DSP after unregistering machine driver Pierre-Louis Bossart
2019-05-22 16:21 ` [PATCH v2 02/12] ASoC: SOF: core: remove snd_soc_unregister_component in case of error Pierre-Louis Bossart
2019-05-22 16:21 ` [PATCH v2 03/12] ASoC: SOF: core: fix error handling with the probe workqueue Pierre-Louis Bossart
2019-05-22 16:21 ` [PATCH v2 04/12] ASoC: SOF: pcm: remove runtime PM calls during pcm open/close Pierre-Louis Bossart
2019-05-22 16:21 ` [PATCH v2 05/12] ASoC: SOF: pcm: clear hw_params_upon_resume flag correctly Pierre-Louis Bossart
2019-05-22 16:21 ` [PATCH v2 06/12] ASoC: SOF: pcm: remove warning - initialize workqueue on open Pierre-Louis Bossart
2019-05-22 16:21 ` [PATCH v2 07/12] ASoC: SOF: control: correct the copy size for bytes kcontrol put Pierre-Louis Bossart
2019-05-22 16:21 ` [PATCH v2 08/12] ASoC: SOF: ipc: fix a race, leading to IPC timeouts Pierre-Louis Bossart
2019-05-23  6:34   ` [PATCH v3 " Guennadi Liakhovetski
2019-06-05 11:34     ` Mark Brown
2019-05-22 16:21 ` [PATCH v2 09/12] ASoC: SOF: Intel: hda: fix the hda init chip Pierre-Louis Bossart
2019-05-22 16:21 ` [PATCH v2 10/12] ASoC: SOF: Intel: hda: use the defined ppcap functions Pierre-Louis Bossart
2019-06-06 21:27   ` Applied "ASoC: SOF: Intel: hda: use the defined ppcap functions" to the asoc tree Mark Brown
2019-05-22 16:21 ` [PATCH v2 11/12] ALSA: hdac: fix memory release for SST and SOF drivers Pierre-Louis Bossart
2019-05-22 16:21 ` [PATCH v2 12/12] ASoC: SOF: Intel: hda-codec: fix memory allocation Pierre-Louis Bossart
2019-05-23  4:10   ` Yang, Libin
2019-05-23  8:03   ` Yang, Libin
2019-05-23  8:15     ` Takashi Iwai
2019-05-23  8:21       ` Yang, Libin
2019-05-23  8:27         ` Takashi Iwai
2019-05-23  8:34           ` Yang, Libin
2019-06-03  9:10           ` Yang, Libin
2019-06-03 13:45             ` Pierre-Louis Bossart
2019-06-04  1:38               ` Yang, Libin
2019-06-04  1:21             ` Yang, Libin
2019-06-17  7:30             ` Yang, Libin
2019-05-23  8:24       ` Yang, Libin
2019-05-23 11:35         ` Pierre-Louis Bossart
2019-05-24  1:10           ` Yang, Libin
2019-05-24 19:09 [PATCH v3 9/9] ASoC: SOF: Intel: hda: use the defined ppcap functions Pierre-Louis Bossart
2019-05-30 16:33 ` Applied "ASoC: SOF: Intel: hda: use the defined ppcap functions" to the asoc tree 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.