Skip to content

Commit 767bcb0

Browse files
committed
[DO-NOT-MERGE]temp workarounds for known issues
ignore : DRM error Unclaimed access detected prior to suspending ignore : SDW Parity error detected workaround : multiple-pipeline, use duration instead of pkill
1 parent 70c9d34 commit 767bcb0

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

test-case/multiple-pipeline.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ func_run_pipeline_with_type()
116116

117117
dlogi "Testing: $pcm [$dev]"
118118

119-
"${APP_LST[$direction]}" -D "$dev" -c "$channel" -r "$rate" -f "$fmt" "${DEV_LST[$direction]}" -q &
119+
"${APP_LST[$direction]}" -D "$dev" -c "$channel" -r "$rate" -f "$fmt" "${DEV_LST[$direction]}" -q -d "6" &
120120

121121
: $((tmp_count--))
122122
if [ "$tmp_count" -le 0 ]; then return 0; fi
@@ -201,9 +201,9 @@ do
201201
dlogi "checking pipeline status again"
202202
ps_checks
203203

204-
dlogc 'pkill -9 aplay arecord'
205-
pkill -9 arecord || true
206-
pkill -9 aplay || true
204+
#dlogc 'pkill -9 aplay arecord'
205+
#pkill -9 arecord || true
206+
#pkill -9 aplay || true
207207
sleep 1 # try not to pollute the next iteration
208208

209209
if pgrep arecord || pgrep aplay; then

tools/sof-kernel-log-check.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,12 @@ trap - EXIT
149149
# TODO explain why we ignore this one and where
150150
ignore_str='error: debugfs write failed to idle -16'
151151

152+
#TWLignore DRM errors
153+
ignore_str="$ignore_str"'|i915 [[:digit:].:]+: \[drm\] \*ERROR\* Unclaimed access detected prior to suspending'
154+
155+
#Soundwire igone parity erros
156+
ignore_str="$ignore_str"'|rt711 sdw:[0-9]:[0-9]:[A-Za-z0-9]*:[A-Za-z0-9]*:[0-9]*: Parity error detected'
157+
152158
# CML Helios known issue related with xhci_hcd
153159
# https://bugzilla.kernel.org/show_bug.cgi?id=202541
154160
ignore_str="$ignore_str"'|xhci_hcd 0000:00:14\.0: WARN Set TR Deq Ptr cmd failed due to incorrect slot or ep state'

0 commit comments

Comments
 (0)