Skip to content

Commit

Permalink
topology2: cavs-nocodec-bt: fix PCM0 and PCM1 capabilities
Browse files Browse the repository at this point in the history
The pipelines for PCM0 and PCM1 only support S32_LE audio
format. Fix the PCM capability descriptions to match the actual
pipeline definitions. This allows to run test suites that enumerate
all support PCMs and their formats.

Signed-off-by: Kai Vehmanen <[email protected]>
  • Loading branch information
kv2019i committed Dec 21, 2023
1 parent dabf0a6 commit 144e032
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools/topology/topology2/cavs-nocodec-bt.conf
Original file line number Diff line number Diff line change
Expand Up @@ -278,13 +278,13 @@ Object.PCM.pcm [
Object.PCM.pcm_caps.1 {
direction "playback"
name "SSP0 Playback"
formats 'S16_LE,S24_LE,S32_LE'
formats 'S32_LE'
}

Object.PCM.pcm_caps.2 {
direction "capture"
name "SSP0 Capture"
formats 'S16_LE,S24_LE,S32_LE'
formats 'S32_LE'
}
}
{
Expand All @@ -298,13 +298,13 @@ Object.PCM.pcm [
Object.PCM.pcm_caps.1 {
direction "playback"
name "SSP1 Playback"
formats 'S16_LE,S24_LE,S32_LE'
formats 'S32_LE'
}

Object.PCM.pcm_caps.2 {
direction "capture"
name "SSP1 Capture"
formats 'S16_LE,S24_LE,S32_LE'
formats 'S32_LE'
}
}
]
Expand Down

0 comments on commit 144e032

Please sign in to comment.