topology: sof-byt-codec.m4: add time domain DMA

Add time domain DMA explicitly to DAI_ADD and pipeline.

Signed-off-by: Jaska Uimonen <jaska.uimonen@intel.com>
This commit is contained in:
Jaska Uimonen 2019-11-15 07:59:48 +02:00 committed by Liam Girdwood
parent 6e1ddddd8d
commit 5a0f44a65a
1 changed files with 4 additions and 3 deletions

View File

@ -62,7 +62,7 @@ PIPELINE_PCM_ADD(sof/pipe-low-latency-capture.m4,
DAI_ADD(sof/pipe-dai-playback.m4,
1, SSP, 2, SSP2-Codec,
PIPELINE_SOURCE_1, 2, s24le,
1000, 1, 0)
1000, 1, 0, SCHEDULE_TIME_DOMAIN_DMA)
# PCM Media Playback pipeline 3 on PCM 1 using max 2 channels of s32le.
# 4000us deadline on core 0 with priority 0
@ -70,7 +70,8 @@ PIPELINE_PCM_ADD(sof/pipe-pcm-media.m4,
3, 1, 2, s16le,
4000, 0, 0,
8000, 96000, 48000,
0, PIPELINE_PLAYBACK_SCHED_COMP_1)
SCHEDULE_TIME_DOMAIN_DMA,
PIPELINE_PLAYBACK_SCHED_COMP_1)
# Connect pipelines together
SectionGraph."PIPE_NAME" {
@ -87,7 +88,7 @@ SectionGraph."PIPE_NAME" {
DAI_ADD(sof/pipe-dai-capture.m4,
2, SSP, 2, SSP2-Codec,
PIPELINE_SINK_2, 2, s24le,
1000, 0, 0)
1000, 0, 0, SCHEDULE_TIME_DOMAIN_DMA)
# PCM Low Latency
PCM_DUPLEX_ADD(Low Latency, 0, PIPELINE_PCM_1, PIPELINE_PCM_2)