Merge branch 'dsa-mv88e6xxx-Improve-indirect-addressing-performance'
authorDavid S. Miller <davem@davemloft.net>
Mon, 31 Jan 2022 11:29:13 +0000 (11:29 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 31 Jan 2022 11:29:13 +0000 (11:29 +0000)
commitfe8930278c6b9bc1bcaa1736706465da8637ff6c
treece7222aed80d444ba6a7059e66d67842b69fb47d
parent0da8aa00bfcfeb3f4e6537dd8e2001e0727ba549
parent7bca16b22e6a126f66f7d8d551be10815ba46fdb
Merge branch 'dsa-mv88e6xxx-Improve-indirect-addressing-performance'

Tobias Waldekranz says:

====================
net: dsa: mv88e6xxx: Improve indirect addressing performance

The individual patches have all the details. This work was triggered
by recent work on a platform that took 16s (sic) to load the mv88e6xxx
module.

The first patch gets rid of most of that time by replacing a very long
delay with a tighter poll loop to wait for the busy bit to clear.

The second patch shaves off some more time by avoiding redundant
busy-bit-checks, saving 1 out of 4 MDIO operations for every register
read/write in the optimal case.

v1 -> v2:
- Make sure that we always poll the busy bit at least twice, in the
  unlikely event that the first one is quick to query the hardware,
  but is then scheduled out for a long time before the timeout is
  checked.

v2 -> v3:
- Fallback to the longer sleeps after the initial two poll attempts.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>