Re: [PATCH] sh_eth: call phy_scan_fixups() after PHY reset
From: Sergei Shtylyov <hidden>
Date: 2013-11-21 17:48:24
Also in:
linux-sh
Hello. On 16-11-2013 4:04, Florian Fainelli wrote:
quoted
quoted
quoted
David, will you ever reply to this mail?
quoted
quoted
I really haven't had the time with my backlog, and it's been so long ago that I've forgotten all of the context.
quoted
Hm, I thought I provided enough context and also that's what mail archives are for... :-)
quoted
quoted
Sorry, someone will have to start the conversation up anew.
[snip]
quoted
Now, about the ways to deal with this issue that I see. First I thought about using PHY platform fixup mechanism which is already hooked up to a PHY reset in phy_mii_ioctl() (the code is somewhat naive though as it doesn't wait for the reset completion before calling fixups and the driver's config_init() method).
That's something that needs fixing and also a dedicated helper or such should be used because we are potentially messing up with the configuration the PHY library thinks it has applied to the PHY (e.g: disabling auto-negotiation etc...).
Agreed.
quoted
All I needed is calling fixups after direct PHY reset done via phy_write() but I didn't want to add a hook there due to that reset completion wait loop that was obviously necessary (this function is simple *inline*), so went for a simplistic local phy_scan_fixups() call (that function was helpfully already exported although not called by anyone except phylib itself) after PHY reset in the 'sh_eth' driver which you saw in my patch and which you didn't like; I've also coded the PHY platform fixup which got successfully merged via arch/arm/mach-shmobile/ subtree at that time. Your argument was that the driver is going against the control flow provided by phylib (it's not alone doing PHY reset, I should note) and so you wanted me to embed everything into phylib control flow. I replied that I fear the unexpected consequencies of doing compulsory PHY reset for every driver using phylib (that's how I understood your idea at least)... then, after a long pause, I suggested to code phy_reset() function within phylib which the drivers that currently do reset their PHYs could use instead of open coding the reset bit polling loop, etc. and which would include a hook for the platform fixups and PHY driver config_init() call. I'd still like to hear your opinion on this approach -- which is less invasive. What I can also do in this case is again ignore ETH_LINK signal in the 'sh_eth' driver and stop caring about the LED functions matching to what's designed for the boards. This doesn't need PHY platform fixup or any change in phylib and Ethernet driver.
This signal is probably present for a good reason: avoiding expensive MDIO register access,
As the driver is using phylib (and that in the polled mode) anyway, this
advantage is nullified.
and if that works for most platforms why not keeping it?
Because it starts to bounce on/off after each packet as I've already told
(which most probably affects the packet reception as seen from NFS timeout) in
the default mode of KSZ8041. We had to completely ignore this signal on BOCK-W
where LED mode 00 is used (and yet I had to fix the 'sh_eth' driver's logic
that should have relied on phylib's callback to become aware of the link
state). On the newer boards, we have this issue again after we reset the PHY
when opening 'eth0' device. I'm not sure why I have to repeat the text that
you've skipped.
quoted
What I also can do is stop resetting PHY in the 'sh_eth' driver (only getting it out of sleep for which the reset doesn't seem necessary), although we'd still need the PHY platform fixup for the PHY resets done via phy_mii_ioctl()... I'm not so much familiar with the driver to be sure it won't hurt (the driver is used on e.g. some SH platforms I don't get any access to) and I couldn't get any useful input from the driver's primary author -- but perhaps it's really not necessary. What do you think?
Quite a lot of PHYs actually require a reset through BMCR_RESET when resuming from S2/S3 sleep states and even if they do not, it does not
I'm not very familiar with PHY power management ATM, and only know about
the BMCR powerdown bit...
hurt doing so, I would welcome a generic solution to do that which would not circumvent the libphy state machine and APIs. So the general idea would be to:
- provide a helper, e.g: phy_reset(phydev) which: - toggles BMCR_RESET, waits for it to be clear - call fixups on the phy_device - call config_init on the phy_device - restores any kind of duplex/autoneg settings we enabled/disabled
I'm not sure I follow here. If the driver calls phy_reset(), it should
know already that these settings will be affected, no? This sentence only
makes sense to me if we do phy_reset() somewhere in the PHY PM code as you
have hinted...
- resume the PHY state machine at the appropriate state
Too bad I'm only slightly familiar with phylib ATM.
Being in hospital also doesn't help to advance on that matter. :-(
-- Florian
WBR, Sergei