Skip to content

Commit 2b5c6cb

Browse files
committed
kernel-log-check: ignore I2C GDIX touchscreen errors on all products
More Goodix errors were just caught on a different system: https://sof-ci.01.org/sofpr/PR5449/build12176/devicetest/?model=CML_HEL_RT5682&testcase=verify-kernel-boot-log Feb 23 16:59:09 jf-cml-hel-rt5682-02 kernel: Linux version 5.13.0-28-generic (gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.> Feb 23 16:59:09 jf-cml-hel-rt5682-02 kernel: i2c_hid_acpi i2c-GDIX0000:00: unexpected HID descriptor bcdVersion (0x0000) Feb 23 16:59:09 jf-cml-hel-rt5682-02 kernel: i2c_hid_acpi i2c-GDIX0000:00: Failed to fetch the HID Descriptor Feb 28 21:08:07 jf-cml-hel-rt5682-02 kernel: Linux version 5.16.0-rc1-daily-default-20220227-0 (gcc (Ubunt> Feb 28 21:08:07 jf-cml-hel-rt5682-02 kernel: i2c_hid_acpi i2c-GDIX0000:00: unexpected HID descriptor bcdVersion (0x0000) Feb 28 21:08:07 jf-cml-hel-rt5682-02 kernel: i2c_hid_acpi i2c-GDIX0000:00: Failed to fetch the HID Descriptor See internal issue 174 Signed-off-by: Marc Herbert <marc.herbert@intel.com>
1 parent 0addb17 commit 2b5c6cb

1 file changed

Lines changed: 9 additions & 5 deletions

File tree

tools/sof-kernel-log-check.sh

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -272,11 +272,6 @@ case "$platform" in
272272
# Bug Report: https://github.com/thesofproject/sof-test/issues/838
273273
# New TGLU_UP_HDA_ZEPHYR device reporting "TPM interrupt not working" errors.
274274
ignore_str="$ignore_str"'|kernel: tpm tpm0: \[Firmware Bug\]: TPM interrupt not working, polling instead'
275-
# 'failed to change power setting' and other errors observed at
276-
# boot time on one TGLU_VOLT_SDW. Internal issue #174. GOODIX
277-
# touchscreen
278-
# /sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-GDIX0000:00
279-
ignore_str="$ignore_str"'|kernel: i2c_hid_acpi i2c-GDIX0000:00'
280275
;;
281276
ehl)
282277
# i915 crtc logs can be ignored
@@ -285,6 +280,15 @@ case "$platform" in
285280
ignore_str="$ignore_str""|i915 [[:digit:].:]+: \[drm\] \*ERROR\* Suspending crtc's failed with -[[:digit:]]+"
286281
esac
287282

283+
# 'failed to change power setting' and other errors observed at boot
284+
# time on one TGLU_VOLT_SDW. Internal issue #174. GOODIX touchscreen
285+
# /sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-GDIX0000:00
286+
#
287+
# Also: Failed to fetch the HID Descriptor / unexpected bcdVersion (0x0000)
288+
# on one CML_HEL_RT5682
289+
ignore_str="$ignore_str"'|kernel: i2c_hid_acpi i2c-GDIX0000:00'
290+
291+
288292
# below are new error level kernel logs from journalctl --priority=err
289293
# that did not influence system and can be ignored
290294

0 commit comments

Comments
 (0)