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

lib.sh: increase MAX_WAIT_FW_LOADING to 13s for CML #1101

Merged
merged 1 commit into from
Sep 7, 2023
Merged
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
6 changes: 5 additions & 1 deletion case-lib/lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,11 @@ start_test()
case "$_pltf" in
# broken i915 with long timeout, see comments in config.sh
mtl) MAX_WAIT_FW_LOADING=70;;
*) MAX_WAIT_FW_LOADING=10;; # more than enough
# rt1011 i2c-10EC1011:00 needs 10 seconds on cml-hel-rt5682,
# see https://github.com/thesofproject/sof-test/pull/1095
cml) MAX_WAIT_FW_LOADING=13;;
# TODO: try to reduce this
*) MAX_WAIT_FW_LOADING=10;;
esac
fi

Expand Down
Loading