All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/10] ASoC: Intel: Skylake: Add support for D0i3
@ 2016-09-26  5:35 Vinod Koul
  2016-09-26  5:35 ` [PATCH 01/10] ASoC: Intel: Add check_dsp_lp_on callback on IPC Vinod Koul
                   ` (9 more replies)
  0 siblings, 10 replies; 24+ messages in thread
From: Vinod Koul @ 2016-09-26  5:35 UTC (permalink / raw)
  To: alsa-devel; +Cc: liam.r.girdwood, patches.audio, broonie, Vinod Koul

This series adds support for low power D0i3 mode which lets audio controller
perform stream and non streaming usage scenarios while being in lower power
D0i3 state.

In this series, first we modify the sst_ipc_tx_message() API to check if
the DSP is in lower powered D0i3 mode or not and if so bring it to
active before sending any messages. This is followed by a new API
sst_ipc_tx_message_nopm() to send message without checking the new PM
method.

Then we start adding D0i3 refcounting which decides the entry to D0i3
mode based on capability. This is derived from topology data.
The new IPC to enter D0i3 is also required.

Finally we remove unwarranted pci device enabling calls on suspend.

Jayachandran B (3):
  ASoC: Intel: Skylake: Add D0iX callbacks
  ASoC: Intel: Skylake: Flush pending D0i3 request on suspend
  ASoC: Intel: Skylake: remove pci device enabling calls on suspend

Pardha Saradhi K (2):
  ASoC: Intel: Skylake: Add D0iX IPCs
  ASoC: Intel: Skylake: Add support for programming D0i3C

Vinod Koul (5):
  ASoC: Intel: Add check_dsp_lp_on callback on IPC
  ASoC: Intel: Add sst_ipc_tx_message_nopm
  ASoC: Intel: Skylake: Add support for LPMode
  ASoC: Intel: Skylake: Add support for specifying D0i3 configuration
  ASoC: Intel: Skylake: Add D0i3 mode ref counting

 include/uapi/sound/snd_sst_tokens.h    |   8 +-
 sound/soc/intel/common/sst-ipc.c       |  27 +++++-
 sound/soc/intel/common/sst-ipc.h       |   4 +
 sound/soc/intel/skylake/bxt-sst.c      | 145 +++++++++++++++++++++++++++++++++
 sound/soc/intel/skylake/skl-messages.c |  30 ++++++-
 sound/soc/intel/skylake/skl-pcm.c      |  10 +++
 sound/soc/intel/skylake/skl-sst-dsp.h  |  12 +++
 sound/soc/intel/skylake/skl-sst-ipc.c  |  69 +++++++++++++++-
 sound/soc/intel/skylake/skl-sst-ipc.h  |  36 +++++++-
 sound/soc/intel/skylake/skl-topology.c |  47 +++++++++++
 sound/soc/intel/skylake/skl-topology.h |  11 +++
 sound/soc/intel/skylake/skl.c          |  59 +++++++++++++-
 sound/soc/intel/skylake/skl.h          |   6 ++
 13 files changed, 456 insertions(+), 8 deletions(-)

-- 
1.9.1

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

end of thread, other threads:[~2016-11-09 15:25 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-26  5:35 [PATCH 00/10] ASoC: Intel: Skylake: Add support for D0i3 Vinod Koul
2016-09-26  5:35 ` [PATCH 01/10] ASoC: Intel: Add check_dsp_lp_on callback on IPC Vinod Koul
2016-09-26  5:35 ` [PATCH 02/10] ASoC: Intel: Add sst_ipc_tx_message_nopm Vinod Koul
2016-10-28 18:05   ` Mark Brown
2016-10-30 21:37     ` Vinod Koul
2016-11-03 17:27   ` Applied "ASoC: Intel: Add sst_ipc_tx_message_nopm" to the asoc tree Mark Brown
2016-09-26  5:35 ` [PATCH 03/10] ASoC: Intel: Skylake: Add D0iX IPCs Vinod Koul
2016-10-28 18:06   ` Mark Brown
2016-10-30 21:40     ` Vinod Koul
2016-11-03 17:27   ` Applied "ASoC: Intel: Skylake: Add D0iX IPCs" to the asoc tree Mark Brown
2016-09-26  5:35 ` [PATCH 04/10] ASoC: Intel: Skylake: Add support for programming D0i3C Vinod Koul
2016-11-03 17:27   ` Applied "ASoC: Intel: Skylake: Add support for programming D0i3C" to the asoc tree Mark Brown
2016-09-26  5:35 ` [PATCH 05/10] ASoC: Intel: Skylake: Add D0iX callbacks Vinod Koul
2016-11-03 17:26   ` Applied "ASoC: Intel: Skylake: Add D0iX callbacks" to the asoc tree Mark Brown
2016-09-26  5:35 ` [PATCH 06/10] ASoC: Intel: Skylake: Add support for LPMode Vinod Koul
2016-11-03 17:26   ` Applied "ASoC: Intel: Skylake: Add support for LPMode" to the asoc tree Mark Brown
2016-09-26  5:35 ` [PATCH 07/10] ASoC: Intel: Skylake: Add support for specifying D0i3 configuration Vinod Koul
2016-11-03 17:26   ` Applied "ASoC: Intel: Skylake: Add support for specifying D0i3 configuration" to the asoc tree Mark Brown
2016-09-26  5:35 ` [PATCH 08/10] ASoC: Intel: Skylake: Add D0i3 mode ref counting Vinod Koul
2016-11-03 17:26   ` Applied "ASoC: Intel: Skylake: Add D0i3 mode ref counting" to the asoc tree Mark Brown
2016-09-26  5:35 ` [PATCH 09/10] ASoC: Intel: Skylake: Flush pending D0i3 request on suspend Vinod Koul
2016-11-09 15:25   ` Applied "ASoC: Intel: Skylake: Flush pending D0i3 request on suspend" to the asoc tree Mark Brown
2016-09-26  5:35 ` [PATCH 10/10] ASoC: Intel: Skylake: remove pci device enabling calls on suspend Vinod Koul
2016-11-09 15:25   ` Applied "ASoC: Intel: Skylake: remove pci device enabling calls on suspend" 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.