]> git.baikalelectronics.ru Git - kernel.git/commit
net: phy: broadcom: Fix brcm_fet_config_init()
authorFlorian Fainelli <f.fainelli@gmail.com>
Thu, 24 Mar 2022 23:24:38 +0000 (16:24 -0700)
committerJakub Kicinski <kuba@kernel.org>
Fri, 25 Mar 2022 23:59:21 +0000 (16:59 -0700)
commitdc22088192a79078870ea5d7c3c6b7aabbb31d9f
treeaac23a666bd97a1ae860cb7e4c9cfd827550a41e
parent597dcdf6d4880b4992c4ff999eb50a80466d36da
net: phy: broadcom: Fix brcm_fet_config_init()

A Broadcom AC201 PHY (same entry as 5241) would be flagged by the
Broadcom UniMAC MDIO controller as not completing the turn around
properly since the PHY expects 65 MDC clock cycles to complete a write
cycle, and the MDIO controller was only sending 64 MDC clock cycles as
determined by looking at a scope shot.

This would make the subsequent read fail with the UniMAC MDIO controller
command field having MDIO_READ_FAIL set and we would abort the
brcm_fet_config_init() function and thus not probe the PHY at all.

After issuing a software reset, wait for at least 1ms which is well
above the 1us reset delay advertised by the datasheet and issue a dummy
read to let the PHY turn around the line properly. This read
specifically ignores -EIO which would be returned by MDIO controllers
checking for the line being turned around.

If we have a genuine reaad failure, the next read of the interrupt
status register would pick it up anyway.

Fixes: 762a6783a18b ("broadcom: Add AC131 phy support")
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Link: https://lore.kernel.org/r/20220324232438.1156812-1-f.fainelli@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/phy/broadcom.c