Skip to content

Commit 6498498

Browse files
committed
sof-kernel-log-check: ignore i915 firmware loading error
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: #1048 Signed-off-by: Fred Oh <fred.oh@linux.intel.com>
1 parent 2504bd6 commit 6498498

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

tools/sof-kernel-log-check.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,11 @@ case "$platform" in
279279
# unclaimed access happens when try to read/write something that is powered down
280280
# issue link : internal issue #243
281281
ignore_str="$ignore_str"'|i915 [[:digit:].:]+: \[drm\] \*ERROR\* Unclaimed access detected .+'
282+
# i915 firmware loading error on ADLP_SKU0B00_SDCA
283+
# BugLink: https://github.com/thesofproject/sof-test/issues/1048
284+
ignore_str="$ignore_str"'|i915 [[:digit:].:]+: \[drm\] \*ERROR\* GT0: GuC initialization failed'
285+
ignore_str="$ignore_str"'|i915 [[:digit:].:]+: \[drm\] \*ERROR\* GT0: Enabling uc failed'
286+
ignore_str="$ignore_str"'|i915 [[:digit:].:]+: \[drm\] \*ERROR\* GT0: Failed to initialize GPU'
282287
;;
283288
tgl)
284289
# Bug Report: https://github.com/thesofproject/sof-test/issues/838

0 commit comments

Comments
 (0)