alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/12] ASoC: Intel: Skylake: Add support for library load
@ 2016-07-26 12:36 Vinod Koul
  2016-07-26 12:36 ` [PATCH 01/12] ASoC: Intel: Skylake: Check list empty while getting module info Vinod Koul
                   ` (11 more replies)
  0 siblings, 12 replies; 25+ messages in thread
From: Vinod Koul @ 2016-07-26 12:36 UTC (permalink / raw)
  To: alsa-devel; +Cc: liam.r.girdwood, patches.audio, broonie, Vinod Koul

This patch series adds support for library loading. A module maybe part
of base firmware or in a different library. A library may have one or
more modules. The names of library to be loaded are passed as topology
manifest data. The library list is loaded after base FW during dsp init.
So we add support library load IPC and the usage in broxton ops for
loading libs.

To load a list of lib(s) coming from topology, we need to split DSP
init, into object creation and fw_init. The fw_init is invoked from
soc-probe after topology is initialized. Now fw is initialized later,
so module UUID query was move to runtime as the firmware is not available
at topology initialization.

While at it, also fix the parsing UUIDs only once for SKL and BXT ops
and one comment code style.

Lastly this series adds support for specifying processing domain for
modules.

Kranthi G (1):
  ASoC: Intel: Skylake: add support for tplg manifest load

Ramesh Babu (2):
  ASoC: Intel: Skylake: Add library loading IPCs
  ASoC: Intel: Skylake: Add library loading support

Senthilnathan Veppur (2):
  ASoC: Intel: Skylake: add additional args to module parsing
  ASoC: Intel: Skylake: Add module processing domain support

Vinod Koul (7):
  ASoC: Intel: Skylake: Check list empty while getting module info
  ASoC: Intel: Skylake: Move modules query to runtime
  ASoC: Intel: Skylake: modify skl_get_dsp_ops()
  ASoC: Intel: Skylake: split fw and dsp initialization
  ASoC: Intel: Skylake: Parse UUIDs once
  ASoC: Intel: Bxt: Parse UUIDs once
  ASoC: Intel: Skylake: Fix a comment style

 sound/soc/intel/skylake/bxt-sst.c            | 114 ++++++++++++++++++++++++---
 sound/soc/intel/skylake/skl-messages.c       |  39 +++++----
 sound/soc/intel/skylake/skl-pcm.c            |  20 +++++
 sound/soc/intel/skylake/skl-sst-dsp.h        |   7 +-
 sound/soc/intel/skylake/skl-sst-ipc.c        |  29 +++++++
 sound/soc/intel/skylake/skl-sst-ipc.h        |  12 ++-
 sound/soc/intel/skylake/skl-sst-utils.c      |  14 +++-
 sound/soc/intel/skylake/skl-sst.c            |  43 ++++++----
 sound/soc/intel/skylake/skl-topology.c       |  55 +++++++++++--
 sound/soc/intel/skylake/skl-topology.h       |   2 +-
 sound/soc/intel/skylake/skl-tplg-interface.h |  15 +++-
 sound/soc/intel/skylake/skl.h                |   2 +
 12 files changed, 297 insertions(+), 55 deletions(-)

-- 
1.9.1

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

end of thread, other threads:[~2016-08-05 11:19 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-26 12:36 [PATCH 00/12] ASoC: Intel: Skylake: Add support for library load Vinod Koul
2016-07-26 12:36 ` [PATCH 01/12] ASoC: Intel: Skylake: Check list empty while getting module info Vinod Koul
2016-08-01 17:07   ` Applied "ASoC: Intel: Skylake: Check list empty while getting module info" to the asoc tree Mark Brown
2016-07-26 12:36 ` [PATCH 02/12] ASoC: Intel: Skylake: Move modules query to runtime Vinod Koul
2016-08-01 17:07   ` Applied "ASoC: Intel: Skylake: Move modules query to runtime" to the asoc tree Mark Brown
2016-07-26 12:36 ` [PATCH 03/12] ASoC: Intel: Skylake: modify skl_get_dsp_ops() Vinod Koul
2016-08-01 17:07   ` Applied "ASoC: Intel: Skylake: modify skl_get_dsp_ops()" to the asoc tree Mark Brown
2016-07-26 12:36 ` [PATCH 04/12] ASoC: Intel: Skylake: split fw and dsp initialization Vinod Koul
2016-08-01 17:07   ` Applied "ASoC: Intel: Skylake: split fw and dsp initialization" to the asoc tree Mark Brown
2016-07-26 12:36 ` [PATCH 05/12] ASoC: Intel: Skylake: add support for tplg manifest load Vinod Koul
2016-08-01 17:07   ` Applied "ASoC: Intel: Skylake: add support for tplg manifest load" to the asoc tree Mark Brown
2016-07-26 12:36 ` [PATCH 06/12] ASoC: Intel: Skylake: add additional args to module parsing Vinod Koul
2016-08-01 17:07   ` Applied "ASoC: Intel: Skylake: add additional args to module parsing" to the asoc tree Mark Brown
2016-07-26 12:36 ` [PATCH 07/12] ASoC: Intel: Skylake: Parse UUIDs once Vinod Koul
2016-08-01 17:07   ` Applied "ASoC: Intel: Skylake: Parse UUIDs once" to the asoc tree Mark Brown
2016-07-26 12:36 ` [PATCH 08/12] ASoC: Intel: Bxt: Parse UUIDs once Vinod Koul
2016-08-01 17:07   ` Applied "ASoC: Intel: Bxt: Parse UUIDs once" to the asoc tree Mark Brown
2016-07-26 12:36 ` [PATCH 09/12] ASoC: Intel: Skylake: Add library loading IPCs Vinod Koul
2016-08-01 17:07   ` Applied "ASoC: Intel: Skylake: Add library loading IPCs" to the asoc tree Mark Brown
2016-07-26 12:36 ` [PATCH 10/12] ASoC: Intel: Skylake: Add library loading support Vinod Koul
2016-08-05 11:19   ` Applied "ASoC: Intel: Skylake: Add library loading support" to the asoc tree Mark Brown
2016-07-26 12:36 ` [PATCH 11/12] ASoC: Intel: Skylake: Fix a comment style Vinod Koul
2016-08-05 11:19   ` Applied "ASoC: Intel: Skylake: Fix a comment style" to the asoc tree Mark Brown
2016-07-26 12:36 ` [PATCH 12/12] ASoC: Intel: Skylake: Add module processing domain support Vinod Koul
2016-08-05 11:18   ` Applied "ASoC: Intel: Skylake: Add module processing domain support" to the asoc tree Mark Brown

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).