Skip to content

Commit

Permalink
sof-kernel-log-check: ignore i915 firmware loading error
Browse files Browse the repository at this point in the history
Filter out below errors:
[ 8196.630952] kernel: i915 0000:00:02.0: [drm] *ERROR* GT0: GuC initialization failed -ENXIO
[ 8196.630953] kernel: i915 0000:00:02.0: [drm] *ERROR* GT0: Enabling uc failed (-5)
[ 8196.630955] kernel: i915 0000:00:02.0: [drm] *ERROR* GT0: Failed to initialize GPU, declaring it wedged!

Link: thesofproject#1048

Signed-off-by: Fred Oh <fred.oh@linux.intel.com>
  • Loading branch information
fredoh9 committed Nov 28, 2023
1 parent 6b35e10 commit 2df1d61
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tools/sof-kernel-log-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,11 @@ case "$platform" in
# unclaimed access happens when try to read/write something that is powered down
# issue link : internal issue #243
ignore_str="$ignore_str"'|i915 [[:digit:].:]+: \[drm\] \*ERROR\* Unclaimed access detected .+'
# i915 firmware loading error on ADLP_SKU0B00_SDCA
# BugLink: https://github.com/thesofproject/sof-test/issues/1048
ignore_str="$ignore_str"'|i915 [[:digit:].:]+: \[drm\] \*ERROR\* GT0: GuC initialization failed'
ignore_str="$ignore_str"'|i915 [[:digit:].:]+: \[drm\] \*ERROR\* GT0: Enabling uc failed'
ignore_str="$ignore_str"'|i915 [[:digit:].:]+: \[drm\] \*ERROR\* GT0: Failed to initialize GPU'
;;
tgl)
# Bug Report: https://github.com/thesofproject/sof-test/issues/838
Expand Down

0 comments on commit 2df1d61

Please sign in to comment.