Skip to content

Commit 17ffa93

Browse files
committed
src: copier: update virtual index value for ssp
Virtual index value for I2S on PTL contains two information: - time slot group index : 4 - i2s instance : 4 In order to correctly configure the dai api, both of the above values should be retained. Signed-off-by: Damian Nikodem <damian.nikodem@intel.com>
1 parent 25b5ccf commit 17ffa93

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/audio/dai-zephyr.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,8 @@ int dai_set_config(struct dai *dai, struct ipc_config_dai *common_config,
154154
cfg_params = is_blob ? spec_config : &sof_cfg->ssp;
155155
dai_set_link_hda_config(&cfg.link_config,
156156
common_config, cfg_params);
157+
/* Store tdm slot group index*/
158+
cfg.tdm_slot_group = common_config->dai_index & 0xF;
157159
break;
158160
case SOF_DAI_INTEL_ALH:
159161
cfg.type = is_blob ? DAI_INTEL_ALH_NHLT : DAI_INTEL_ALH;

west.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ manifest:
4343

4444
- name: zephyr
4545
repo-path: zephyr
46-
revision: 0a3f2f0397a86425cc7d12fa3a0c0ab8020d80e1
46+
revision: pull/74030/head
4747
remote: zephyrproject
4848

4949
# Import some projects listed in zephyr/west.yml@revision

0 commit comments

Comments
 (0)