Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DO-NOT-MERGE]temp workarounds for known issues #1214

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
8 changes: 4 additions & 4 deletions test-case/multiple-pipeline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func_run_pipeline_with_type()

dlogi "Testing: $pcm [$dev]"

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

: $((tmp_count--))
if [ "$tmp_count" -le 0 ]; then return 0; fi
Expand Down Expand Up @@ -201,9 +201,9 @@ do
dlogi "checking pipeline status again"
ps_checks

dlogc 'pkill -9 aplay arecord'
pkill -9 arecord || true
pkill -9 aplay || true
#dlogc 'pkill -9 aplay arecord'
#pkill -9 arecord || true
#pkill -9 aplay || true
sleep 1 # try not to pollute the next iteration

if pgrep arecord || pgrep aplay; then
Expand Down
6 changes: 6 additions & 0 deletions tools/sof-kernel-log-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,12 @@ trap - EXIT
# TODO explain why we ignore this one and where
ignore_str='error: debugfs write failed to idle -16'

#TWLignore DRM errors
ignore_str="$ignore_str"'|i915 [[:digit:].:]+: \[drm\] \*ERROR\* Unclaimed access detected prior to suspending'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've been deploying the following modprobe.d workaround and it's been working great:

options i915 mmio_debug=-1

https://github.com/intel-innersource/drivers.audio.ci.sof-framework/issues/573

I think you can drop this.


#Soundwire igone parity erros
ignore_str="$ignore_str"'|sdw:[0-9]:[0-9]:[A-Za-z0-9]*:[A-Za-z0-9]*:[0-9]*: Parity error detected'

# CML Helios known issue related with xhci_hcd
# https://bugzilla.kernel.org/show_bug.cgi?id=202541
ignore_str="$ignore_str"'|xhci_hcd 0000:00:14\.0: WARN Set TR Deq Ptr cmd failed due to incorrect slot or ep state'
Expand Down
Loading