Alsa-Devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/17] ASoC: Intel: Skylake: More fixes and updates
@ 2015-10-27  0:22 Vinod Koul
  2015-10-27  0:22 ` [PATCH 01/17] ASoC: Intel: Skylake: Fix to correct check for non DSP widget Vinod Koul
                   ` (17 more replies)
  0 siblings, 18 replies; 41+ messages in thread
From: Vinod Koul @ 2015-10-27  0:22 UTC (permalink / raw)
  To: alsa-devel; +Cc: liam.r.girdwood, tiwai, broonie, Vinod Koul, patches.audio

Hi all,

This series adds more minor fixes and some enhancements to the driver.
Most of the fixes patches are single line count changes

The enhancements are:
- optimizing code and using module pin info for unbinding
- supporting virtual dsp widgets like switches in topology
- add pin formats and supports multiple heterogeneous pins

Hardik T Shah (3):
  ASoC: Intel: Skylake: Add multiple pin formats
  ASoC: Intel: Skylake: Update the topology interface structure
  ASoC: Intel: Skylake: Add support for module GUIDs

Jeeja KP (14):
  ASoC: Intel: Skylake: Fix to correct check for non DSP widget
  ASoC: Intel: Skylake: Fix not to ignore return value in be hw_params
  ASoC: Intel: Skylake: Fix to add 32 bit in update FE params
  ASoC: Intel: Skylake: Fix to ignore codec_mask check in probe
  ASoC: Intel: Skylake: Fix to ignore blob check if link type is HDA
  ASoC: Intel: Skylake: Fix support for multiple pins in a module
  ASoC: Intel: Skylake: Fix bit depth when querying the NHLT blob
  ASoC: Intel: Skylake: use module_pin info for unbind
  ASoC: Intel: Skylake: Add support for virtual dsp widgets
  ASoC: Intel: Skylake: Fix DSP pipe underrun/overrun issue
  ASoC: Intel: Skylake: Fix to remove be copier widget power check
  ASoC: Intel: Skylake: Ignore rate check for DMIC link
  ASoC: Intel: Skylake: Fix to remove channel_map calculation
  ASoC: Intel: Skylake: Fix PM behaviour

 sound/soc/intel/skylake/skl-messages.c       | 189 +++++--------
 sound/soc/intel/skylake/skl-nhlt.c           |  19 +-
 sound/soc/intel/skylake/skl-pcm.c            | 139 +++++-----
 sound/soc/intel/skylake/skl-topology.c       | 387 ++++++++++++++-------------
 sound/soc/intel/skylake/skl-topology.h       |  35 ++-
 sound/soc/intel/skylake/skl-tplg-interface.h |  90 +++++--
 sound/soc/intel/skylake/skl.c                |  63 +++--
 sound/soc/intel/skylake/skl.h                |   1 -
 8 files changed, 483 insertions(+), 440 deletions(-)

-- 
2.4.3

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

end of thread, other threads:[~2015-10-30 11:31 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-27  0:22 [PATCH 00/17] ASoC: Intel: Skylake: More fixes and updates Vinod Koul
2015-10-27  0:22 ` [PATCH 01/17] ASoC: Intel: Skylake: Fix to correct check for non DSP widget Vinod Koul
2015-10-27  4:49   ` Applied "ASoC: Intel: Skylake: Fix to correct check for non DSP widget" to the asoc tree Mark Brown
2015-10-27  0:22 ` [PATCH 02/17] ASoC: Intel: Skylake: Fix not to ignore return value in be hw_params Vinod Koul
2015-10-27  4:49   ` Applied "ASoC: Intel: Skylake: Fix not to ignore return value in be hw_params" to the asoc tree Mark Brown
2015-10-27  0:22 ` [PATCH 03/17] ASoC: Intel: Skylake: Fix to add 32 bit in update FE params Vinod Koul
2015-10-27  4:49   ` Applied "ASoC: Intel: Skylake: Fix to add 32 bit in update FE params" to the asoc tree Mark Brown
2015-10-27  0:22 ` [PATCH 04/17] ASoC: Intel: Skylake: Fix to ignore codec_mask check in probe Vinod Koul
2015-10-27  4:49   ` Applied "ASoC: Intel: Skylake: Fix to ignore codec_mask check in probe" to the asoc tree Mark Brown
2015-10-27  0:22 ` [PATCH 05/17] ASoC: Intel: Skylake: Fix to ignore blob check if link type is HDA Vinod Koul
2015-10-27  4:49   ` Applied "ASoC: Intel: Skylake: Fix to ignore blob check if link type is HDA" to the asoc tree Mark Brown
2015-10-27  0:22 ` [PATCH 06/17] ASoC: Intel: Skylake: Fix support for multiple pins in a module Vinod Koul
2015-10-27  4:49   ` Applied "ASoC: Intel: Skylake: Fix support for multiple pins in a module" to the asoc tree Mark Brown
2015-10-27  0:22 ` [PATCH 07/17] ASoC: Intel: Skylake: Fix bit depth when querying the NHLT blob Vinod Koul
2015-10-27  4:49   ` Applied "ASoC: Intel: Skylake: Fix bit depth when querying the NHLT blob" to the asoc tree Mark Brown
2015-10-27  0:22 ` [PATCH 08/17] ASoC: Intel: Skylake: use module_pin info for unbind Vinod Koul
2015-10-27  4:49   ` Applied "ASoC: Intel: Skylake: use module_pin info for unbind" to the asoc tree Mark Brown
2015-10-27  0:22 ` [PATCH 09/17] ASoC: Intel: Skylake: Add support for virtual dsp widgets Vinod Koul
2015-10-30  2:08   ` Mark Brown
2015-10-27  0:22 ` [PATCH 10/17] ASoC: Intel: Skylake: Fix DSP pipe underrun/overrun issue Vinod Koul
2015-10-30  2:08   ` Mark Brown
2015-10-27  0:22 ` [PATCH 11/17] ASoC: Intel: Skylake: Fix to remove be copier widget power check Vinod Koul
2015-10-30  2:08   ` Mark Brown
2015-10-27  0:22 ` [PATCH 12/17] ASoC: Intel: Skylake: Add multiple pin formats Vinod Koul
2015-10-30  2:08   ` Mark Brown
2015-10-27  0:22 ` [PATCH 13/17] ASoC: Intel: Skylake: Update the topology interface structure Vinod Koul
2015-10-30  2:08   ` Mark Brown
2015-10-27  0:22 ` [PATCH 14/17] ASoC: Intel: Skylake: Add support for module GUIDs Vinod Koul
2015-10-30  2:08   ` Mark Brown
2015-10-27  0:22 ` [PATCH 15/17] ASoC: Intel: Skylake: Ignore rate check for DMIC link Vinod Koul
2015-10-30  2:08   ` Mark Brown
2015-10-27  0:22 ` [PATCH 16/17] ASoC: Intel: Skylake: Fix to remove channel_map calculation Vinod Koul
2015-10-30  2:08   ` Mark Brown
2015-10-27  0:23 ` [PATCH 17/17] ASoC: Intel: Skylake: Fix PM behaviour Vinod Koul
2015-10-29  3:31   ` [PATCH 1/2] ASoC: Intel: Skylake: Fix the SSP0 Fmt fixup to 24 bit Vinod Koul
2015-10-29  3:31     ` [PATCH 2/2] ASoC: Intel: Skylake: fix missing machine device creation Vinod Koul
2015-10-30  2:08     ` [PATCH 1/2] ASoC: Intel: Skylake: Fix the SSP0 Fmt fixup to 24 bit Mark Brown
2015-10-30  2:08   ` [PATCH 17/17] ASoC: Intel: Skylake: Fix PM behaviour Mark Brown
2015-10-29  3:34 ` [PATCH 00/17] ASoC: Intel: Skylake: More fixes and updates Vinod Koul
2015-10-30  0:50   ` Mark Brown
2015-10-30 11:34     ` Vinod Koul

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox