Skip to content

Commit

Permalink
topology1: imx8ulp: overwrite CHANNELS_MIN
Browse files Browse the repository at this point in the history
On 8ULP SAI is connected to BT which supports
only 1 channel for both playback and record.

Fixes: aaff352 ('topology1: pipe-volume-capture.m4: Set minimum number of channels to 2')

Signed-off-by: Iuliana Prodan <[email protected]>
  • Loading branch information
iuliana-prodan authored and kv2019i committed Feb 12, 2024
1 parent 7c0c8a4 commit a6700af
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
5 changes: 2 additions & 3 deletions tools/topology/topology1/sof-imx8ulp-9x9-btsco.m4
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ include(`platform/imx/imx8.m4')
# PCM0 <----> volume <-----> SAI6 (connect to BT)
#

define(`CHANNELS_MIN', 1)
# SAI6 is connected to BT which supports only 1 channel for playback and record
ifdef(`CHANNELS_MIN', `', `define(CHANNELS_MIN, 1)')

dnl PIPELINE_PCM_ADD(pipeline,
dnl pipe id, pcm, max channels, format,
Expand All @@ -40,8 +41,6 @@ PIPELINE_PCM_ADD(sof/pipe-volume-playback.m4,
1000, 0, 0,
`RATE', `RATE', `RATE')

undefine(`CHANNELS_MIN')

# Low Latency capture pipeline 2 on PCM 0 using max 1 channels of s16le.
# Set 1000us deadline with priority 0 on core 0
PIPELINE_PCM_ADD(sof/pipe-volume-capture.m4,
Expand Down
6 changes: 3 additions & 3 deletions tools/topology/topology1/sof-imx8ulp-btsco.m4
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ include(`platform/imx/imx8.m4')
# PCM0 <----> volume <-----> SAI5 (connect to BT)
#

define(`CHANNELS_MIN', 1)
# SAI5 is connected to BT which supports only 1 channel for playback and record
ifdef(`CHANNELS_MIN', `', `define(CHANNELS_MIN, 1)')

dnl PIPELINE_PCM_ADD(pipeline,
dnl pipe id, pcm, max channels, format,
Expand All @@ -40,14 +41,13 @@ PIPELINE_PCM_ADD(sof/pipe-volume-playback.m4,
1000, 0, 0,
`RATE', `RATE', `RATE')

undefine(`CHANNELS_MIN')

# Low Latency capture pipeline 2 on PCM 0 using max 1 channels of s16le.
# Set 1000us deadline with priority 0 on core 0
PIPELINE_PCM_ADD(sof/pipe-volume-capture.m4,
2, 0, 1, s16le,
1000, 0, 0,
`RATE', `RATE', `RATE')

#
# DAIs configuration
#
Expand Down

0 comments on commit a6700af

Please sign in to comment.