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

sof-kernel-log-check: ignore i915 firmware loading error on MTL #1233

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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: 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
Loading