Skip to content

Commit

Permalink
sof-kernel-log-check: ignore i915 firmware loading error on MTL
Browse files Browse the repository at this point in the history
Ignore FW load error on MTL. These don't affect audio test execution.

Signed-off-by: Kai Vehmanen <[email protected]>
  • Loading branch information
kv2019i committed Sep 23, 2024
1 parent a00f414 commit b112b5b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tools/sof-kernel-log-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,14 @@ case "$platform" in
# ignore the ACPI error on LNL.
# kernel: ACPI: \: Can't tag data node
ignore_str="$ignore_str""|kernel: ACPI: \\\\: Can't tag data node"
;;
mtl)
# boot-time issue seen on some DUTs, not affecting audio test execution
# https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12092
ignore_str="$ignore_str""|kernel: i915 0000:00:02.0: [drm] *ERROR* GT1: Request submission for GSC load failed -ETIME"
ignore_str="$ignore_str""|kernel: i915 0000:00:02.0: [drm] *ERROR* GT1: Failed to load GSC firmware i915/mtl_gsc_1.bin -ETIME"
ignore_str="$ignore_str""|kernel: i915 0000:00:02.0: [drm] *ERROR* GT1: GUC: Engine reset failed on .+"
;;
esac

# 'failed to change power setting' and other errors observed at boot
Expand Down

0 comments on commit b112b5b

Please sign in to comment.