Skip to content

Commit 8bba67b

Browse files
kv2019imarc-hb
authored andcommitted
sof-kernel-log-check.sh: finetune mei_me known error filtering
Move CML specific mei_me error filters to platform specific section and cover all three typical errors mei_me emits on these devices. Example CI run where error is seen in logs: https://sof-ci.01.org/linuxpr/PR2518/build4747/devicetest/ BugLink: #389 Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
1 parent df251ce commit 8bba67b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tools/sof-kernel-log-check.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,6 @@ ignore_str='error: debugfs write failed to idle -16'
1515
# https://bugzilla.kernel.org/show_bug.cgi?id=202541
1616
ignore_str="$ignore_str"'|xhci_hcd 0000:00:14\.0: WARN Set TR Deq Ptr cmd failed due to incorrect slot or ep state'
1717

18-
# CML Mantis occasionally throws Intel(R) Management Engine Interface(mei) errors
19-
# https://unix.stackexchange.com/questions/109294/mei-00000016-0-init-hw-failure
20-
ignore_str="$ignore_str"'|mei_me 0000:00:16\.0: wait hw ready failed'
21-
ignore_str="$ignore_str"'|mei_me 0000:00:16\.0: hw_start failed ret = -62'
22-
2318
# CML Mantis has DELL touchpad i2c error on suspend/resume
2419
ignore_str="$ignore_str"'|i2c_designware i2c_designware\.0: controller timed out'
2520
ignore_str="$ignore_str"'|i2c_hid i2c-DELL0955:00: failed to change power setting'
@@ -104,9 +99,14 @@ case "$platform" in
10499
# Audio PCI ID on CML Mantis is [8086:9dc8], which is defined as CNL in linux kernel.
105100
# https://github.com/thesofproject/linux/blob/topic/sof-dev/sound/soc/sof/sof-pci-dev.c
106101
icl|cml|cnl)
107-
# On CML_RVP_SDW, suspend-resume test case failed due to "mei_me 0000:00:16.4: hw_reset failed ret = -62".
102+
# On CML_RVP_SDW, suspend-resume test case failed due to "mei_me 0000:00:16.4: hw_reset failed ret = -62" or with "hw_start" with same error code.
108103
# https://github.com/thesofproject/sof-test/issues/389
109104
ignore_str="$ignore_str"'|mei_me 0000:00:16\..: hw_reset failed ret = -62'
105+
ignore_str="$ignore_str"'|mei_me 0000:00:16\..: hw_start failed ret = -62'
106+
107+
# CML Mantis occasionally throws Intel(R) Management Engine Interface(mei) errors
108+
# https://unix.stackexchange.com/questions/109294/mei-00000016-0-init-hw-failure
109+
ignore_str="$ignore_str"'|mei_me 0000:00:16\..: wait hw ready failed'
110110
;;
111111
esac
112112

0 commit comments

Comments
 (0)