Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions tools/topology/topology2/include/common/pcm.conf
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,16 @@ Class.PCM."pcm" {
token_ref "stream.bool"
}

DefineAttribute."playback_pause_supported" {
# Token reference and type
token_ref "stream.bool"
}

DefineAttribute."capture_pause_supported" {
# Token reference and type
token_ref "stream.bool"
}

attributes {
!constructor [
"name"
Expand All @@ -60,4 +70,6 @@ Class.PCM."pcm" {

# Default values for PCM attributes
compress "false"
playback_pause_supported "false"
capture_pause_supported "false"
}
6 changes: 4 additions & 2 deletions tools/topology/topology2/include/common/tokens.conf
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,10 @@ Object.Base.VendorToken {

"13" {
name "stream"
playback_compatible_d0i3 "1200"
capture_compatible_d0i3 "1201"
playback_compatible_d0i3 1200
capture_compatible_d0i3 1201
playback_pause_supported 1202
capture_pause_supported 1203
}

"14" {
Expand Down