diff options
author | Jeeja KP <jeeja.kp@intel.com> | 2015-10-22 20:52:38 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-10-23 19:31:34 +0300 |
commit | d7b188131c4823a85d17b992083bf8a8c32a2be3 (patch) | |
tree | 94334be06868db8818ac1c24752b09c8e75f5ec8 /sound/soc/intel/skylake/skl-topology.h | |
parent | 4d8adccb220ca270cfcdd80752618095fdc9990c (diff) | |
download | linux-d7b188131c4823a85d17b992083bf8a8c32a2be3.tar.xz |
ASoC: Intel: Skylake: Update for ssp node index in copier cfg
DSP firmware has interface change for SSP node index structure.
New FW interface removes the dual_mono field and adds 4 bits for
TDM slot group index. This patch updates the ssp dma to align with
the DSP firmware structure.
Signed-off-by: Jeeja KP <jeeja.kp@intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel/skylake/skl-topology.h')
-rw-r--r-- | sound/soc/intel/skylake/skl-topology.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/soc/intel/skylake/skl-topology.h b/sound/soc/intel/skylake/skl-topology.h index 0c83dc3ea3e2..2399535a196a 100644 --- a/sound/soc/intel/skylake/skl-topology.h +++ b/sound/soc/intel/skylake/skl-topology.h @@ -153,8 +153,7 @@ enum skl_dma_type { union skl_ssp_dma_node { u8 val; struct { - u8 dual_mono:1; - u8 time_slot:3; + u8 time_slot_index:4; u8 i2s_instance:4; } dma_node; }; |