mirror of https://github.com/thesofproject/sof.git
105 lines
2.9 KiB
Plaintext
105 lines
2.9 KiB
Plaintext
#
|
|
# Topology for Apollo Lake with direct attach digital microphones array
|
|
#
|
|
|
|
# Capture configuration
|
|
# DAI0 2ch 32b mic1-2
|
|
# DAI1 2ch 32b mic1-2
|
|
|
|
# Include topology builder
|
|
include(`utils.m4')
|
|
include(`dai.m4')
|
|
include(`pipeline.m4')
|
|
|
|
# Include TLV library
|
|
include(`common/tlv.m4')
|
|
|
|
# Include Token library
|
|
include(`sof/tokens.m4')
|
|
|
|
# Include Apollolake DSP configuration
|
|
include(`platform/intel/bxt.m4')
|
|
include(`platform/intel/dmic.m4')
|
|
|
|
DEBUG_START
|
|
|
|
#
|
|
# Define the pipelines
|
|
#
|
|
# PCM6 <--- volume <--- DMIC6 (DMIC01)
|
|
# PCM7 <--- volume <--- DMIC7 (DMIC16k)
|
|
#
|
|
|
|
dnl PIPELINE_PCM_DAI_ADD(pipeline,
|
|
dnl pipe id, pcm, max channels, format,
|
|
dnl period, priority, core,
|
|
dnl dai type, dai_index, dai format,
|
|
dnl dai periods, pcm_min_rate, pcm_max_rate,
|
|
dnl pipeline_rate, time_domain)
|
|
|
|
# Passthrough capture pipeline 6 on PCM 6 using max channels 2.
|
|
# Set 1000us deadline on core 0 with priority 0
|
|
PIPELINE_PCM_DAI_ADD(sof/pipe-volume-capture.m4,
|
|
6, 6, 2, s32le,
|
|
1000, 0, 0, DMIC, 0, s32le, 3,
|
|
96000, 96000, 96000)
|
|
|
|
# Passthrough capture pipeline 7 on PCM 7 using max channels 2.
|
|
# Set 1000us deadline on core 0 with priority 0
|
|
PIPELINE_PCM_DAI_ADD(sof/pipe-volume-capture.m4,
|
|
7, 7, 2, s32le,
|
|
1000, 0, 0, DMIC, 1, s32le, 3,
|
|
16000, 16000, 16000)
|
|
|
|
#
|
|
# DAIs configuration
|
|
#
|
|
|
|
dnl DAI_ADD(pipeline,
|
|
dnl pipe id, dai type, dai_index, dai_be,
|
|
dnl buffer, periods, format,
|
|
dnl deadline, priority, core, time_domain)
|
|
|
|
# capture DAI is DMIC 0 using 3 periods
|
|
# Buffers use s32le format, 1000us deadline on core 0 with priority 0
|
|
DAI_ADD(sof/pipe-dai-capture.m4,
|
|
6, DMIC, 0, NoCodec-6,
|
|
PIPELINE_SINK_6, 3, s32le,
|
|
1000, 0, 0, SCHEDULE_TIME_DOMAIN_TIMER)
|
|
|
|
# capture DAI is DMIC 1 using 3 periods
|
|
# Buffers use s32le format, 1000us deadline on core 0 with priority 0
|
|
DAI_ADD(sof/pipe-dai-capture.m4,
|
|
7, DMIC, 1, NoCodec-7,
|
|
PIPELINE_SINK_7, 3, s32le,
|
|
1000, 0, 0, SCHEDULE_TIME_DOMAIN_TIMER)
|
|
|
|
dnl PCM_DUPLEX_ADD(name, pcm_id, playback, capture)
|
|
dnl PCM_CAPTURE_ADD(name, pipeline, capture)
|
|
PCM_CAPTURE_ADD(DMIC01, 6, PIPELINE_PCM_6)
|
|
PCM_CAPTURE_ADD(DMIC16k, 7, PIPELINE_PCM_7)
|
|
|
|
#
|
|
# BE configurations - overrides config in ACPI if present
|
|
#
|
|
|
|
dnl DAI_CONFIG(type, dai_index, link_id, name, ssp_config/dmic_config)
|
|
|
|
DAI_CONFIG(DMIC, 0, 6, NoCodec-6,
|
|
dnl DMIC_CONFIG(driver_version, clk_min, clk_mac, duty_min, duty_max,
|
|
dnl sample_rate, fifo word length, unmute time, type,
|
|
dnl dai_index, pdm controller config)
|
|
DMIC_CONFIG(1, 500000, 4800000, 40, 60, 96000,
|
|
DMIC_WORD_LENGTH(s32le), 400, DMIC, 0,
|
|
PDM_CONFIG(DMIC, 0, STEREO_PDM0)))
|
|
|
|
DAI_CONFIG(DMIC, 1, 7, NoCodec-7,
|
|
dnl DMIC_CONFIG(driver_version, clk_min, clk_mac, duty_min, duty_max,
|
|
dnl sample_rate, fifo word length, unmute time, type,
|
|
dnl dai_index, pdm controller config)
|
|
DMIC_CONFIG(1, 500000, 4800000, 40, 60, 16000,
|
|
DMIC_WORD_LENGTH(s32le), 400, DMIC, 1,
|
|
PDM_CONFIG(DMIC, 1, STEREO_PDM0)))
|
|
|
|
DEBUG_END
|