Skip to content

Commit

Permalink
hssi: increate timeout to 1 second
Browse files Browse the repository at this point in the history
Some operations are taking longer than the current timeout, such as
putting an HSSI port in loopback. Timeout is a failure, so waiting
a little long isn't a problem. Actual completion observed has been
over 100ms, so chose 1 second.

The current timeout logic could be improved but is not changed in
this commit. Time passed is calculated as the sum of sleep times,
which assumes MMIO reads are free and sleep is exactly the requested
wait.

Signed-off-by: Michael Adler <michael.adler@intel.com>
  • Loading branch information
michael-adler committed Jun 17, 2024
1 parent 8f0e4d0 commit 9bbaf0c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions binaries/hssi/ethernet/hssicommon.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,10 @@
# mailbox register poll interval 1 microseconds
HSSI_POLL_SLEEP_TIME = 1/1000000

# mailbox register poll timeout 500 microseconds
HSSI_POLL_TIMEOUT = 5/10000
# Mailbox register poll timeout 1 second. Responses are typically much
# faster than one second, but in rare cases can take a while. No reason
# to make this short since timeout is generally a failure.
HSSI_POLL_TIMEOUT = 1

HSSI_FEATURE_ID = 0x15

Expand Down

0 comments on commit 9bbaf0c

Please sign in to comment.