You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MAX_WAIT_FW_LOADING variable has default value of 70 seconds, The default value was decided high to cover MTL i915 probe timeout. In normal production device, FW loading time is less than a second. It doesn't mean MAX_WAIT_FW_LOADING to waste 70 seconds for every test in every platform, it will escape the polling as soon as FW loading is done.
One concern is raised, even 10 second timeout also pretty luxury but it may hide fw loading delay regression problem. If we can configure
MAX_WAIT_FW_LOADING=70s for MTL and newer platforms which might have same i915 driver problem,
MAX_WAIT_FW_LOADING=10s for other platforms
And with this configurable feature we can set back 10 seconds for MTL when i915 drivers are upsteamed, in near future.
We don't want to wait for 70s in every test on every platform when the
firmware does not load. When multiplied by the number of tests in a plan
this can cause a considerable waste of hardware resources.
i915 timeout aside, 10s has proved over a long period to be more than
enough.
Fixes: thesofproject#1059
Signed-off-by: Marc Herbert <[email protected]>
We don't want to wait for 70s in every test on every platform when the
firmware does not load. When multiplied by the number of tests in a plan
this can cause a considerable waste of hardware resources.
i915 timeout aside, 10s has proved over a long period to be more than
enough.
Fixes: #1059
Signed-off-by: Marc Herbert <[email protected]>
MAX_WAIT_FW_LOADING variable has default value of 70 seconds, The default value was decided high to cover MTL i915 probe timeout. In normal production device, FW loading time is less than a second. It doesn't mean MAX_WAIT_FW_LOADING to waste 70 seconds for every test in every platform, it will escape the polling as soon as FW loading is done.
One concern is raised, even 10 second timeout also pretty luxury but it may hide fw loading delay regression problem. If we can configure
And with this configurable feature we can set back 10 seconds for MTL when i915 drivers are upsteamed, in near future.
Related PRs,
The text was updated successfully, but these errors were encountered: