netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Jiawen Wu" <jiawenwu@trustnetic.com>
To: "'Russell King \(Oracle\)'" <linux@armlinux.org.uk>
Cc: "'Simon Horman'" <simon.horman@corigine.com>, <kabel@kernel.org>,
	<andrew@lunn.ch>, <hkallweit1@gmail.com>, <davem@davemloft.net>,
	<edumazet@google.com>, <kuba@kernel.org>, <pabeni@redhat.com>,
	<netdev@vger.kernel.org>
Subject: RE: [PATCH net] net: phy: marvell10g: fix 88x3310 power up
Date: Tue, 18 Jul 2023 17:58:28 +0800	[thread overview]
Message-ID: <013e01d9b95e$66c10350$344309f0$@trustnetic.com> (raw)
In-Reply-To: <ZLZgHRNMVws//QEZ@shell.armlinux.org.uk>

On Tuesday, July 18, 2023 5:49 PM, Russell King (Oracle) wrote:
> On Tue, Jul 18, 2023 at 05:12:33PM +0800, Jiawen Wu wrote:
> > On Monday, July 17, 2023 8:23 PM, Russell King (Oracle) wrote:
> > > On Mon, Jul 17, 2023 at 06:51:38PM +0800, Jiawen Wu wrote:
> > > > > > > > There are two places that mv3310_reset() is called, mv3310_config_mdix()
> > > > > > > > and mv3310_set_edpd(). One of them is in the probe function, after we
> > > > > > > > have powered up the PHY.
> > > > > > > >
> > > > > > > > I think we need much more information from the reporter before we can
> > > > > > > > guess which commit is a problem, if any.
> > > > > > > >
> > > > > > > > When does the reset time out?
> > > > > > > > What is the code path that we see mv3310_reset() timing out?
> > > > > > > > Does the problem happen while resuming or probing?
> > > > > > > > How soon after clearing the power down bit is mv3310_reset() called?
> > > > > > >
> > > > > > > I need to test it more times for more information.
> > > > > > >
> > > > > > > As far as I know, reset timeout appears in mv3310_set_edpd(), after mv3310_power_up()
> > > > > > > in mv3310_config_init().
> > > > > > >
> > > > > > > Now what I'm confused about is, sometimes there was weird values while probing, just
> > > > > > > to read out a weird firmware version, that caused the test to fail.
> > > > > > >
> > > > > > > And for this phy_read_mmd_poll_timeout(), it only succeeds when sleep_before_read = true.
> > > > > > > Otherwise, it would never succeed to clear the power down bit. Currently it looks like clearing
> > > > > > > the bit takes about 1ms.
> > > > > >
> > > > > > So, reading the bit before the first delay period results in the bit not
> > > > > > clearing, despite having written it to be zero?
> > > > >
> > > > > Yes. So in the original code, there is no delay to read the register again for
> > > > > setting software reset bit. I think the power down bit is not actually cleared
> > > > > in my test.
> > > >
> > > > Hi Russell,
> > > >
> > > > I confirmed last week that this change is valid to make mv3310_reset() success.
> > > > But now reset fails again, only on port 0. Reset timeout still appears in
> > > > mv3310_config_init() -> mv3310_set_edpd() -> mv3310_reset(). I deleted this
> > > > change to test again, and the result shows that this change is valid for port 1.
> > > >
> > > > So I'm a little confused. Since I don't have programming guidelines for this PHY,
> > > > but only a datasheet. Could you please help to check for any possible problems
> > > > with it?
> > >
> > > I think the question that's missing is... why do other 88x3310 users not
> > > see this problem - what is special about your port 0?
> > >
> > > Maybe there's a clue with the hardware schematics? Do you have access to
> > > those?
> >
> > This problem never happened again after I poweroff and restart the machine.
> > However, this patch is still required to successfully probe the PHY.
> >
> > One thing I've noticed is that there is restriction in mv3310_power_up(), software
> > reset not performed when priv->firmware_ver < 0x00030000. And my 88x3310's
> > firmware version happens to 0x20200. Will this restriction cause subsequent reset
> > timeout(without this patch)?
> 
> We (Matteo and I) discovered the need for software reset by
> experimentation on his Macchiatobin and trying different firmware
> versions. Essentially, I had 0.2.1.0 which didn't need the software
> reset, Matteo had 0.3.3.0 which did seem to need it.
> 
> I also upgraded my firmware to 0.3.3.0 and even 0.3.10.0 and confirmed
> that the software reset works on the two PHYs on my boards.
> 
> What I don't understand is "this patch is still required to successfully
> probe the PHY". The power-up path is not called during probe - nor is
> the EDPD path. By "probe" I'm assuming we're talking about the driver
> probe, in other words, mv3310_probe(), not the config_init - it may be
> that you're terminology is not matching phylib's terminology. Please
> can you clarify.

I'm sorry for the mistake in my description. I mean MAC driver probe, in fact
it is in phy_connect_direct(), to call mv3310_config_init().


  reply	other threads:[~2023-07-18 10:01 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-12  6:26 [PATCH net] net: phy: marvell10g: fix 88x3310 power up Jiawen Wu
2023-07-13 10:26 ` Simon Horman
2023-07-13 10:35   ` Russell King (Oracle)
2023-07-13 10:45     ` Simon Horman
2023-07-13 10:53       ` Russell King (Oracle)
2023-07-13 11:30         ` Jiawen Wu
2023-07-13 11:41           ` Russell King (Oracle)
2023-07-13 11:50             ` Jiawen Wu
2023-07-17 10:51               ` Jiawen Wu
2023-07-17 12:22                 ` Russell King (Oracle)
2023-07-18  9:12                   ` Jiawen Wu
2023-07-18  9:49                     ` Russell King (Oracle)
2023-07-18  9:58                       ` Jiawen Wu [this message]
2023-07-18 11:47                         ` Russell King (Oracle)
2023-07-19  2:29                           ` Jiawen Wu
2023-07-19  3:53                             ` Jiawen Wu
2023-07-19  6:50                             ` Russell King (Oracle)
2023-07-19  7:57                               ` Jiawen Wu
2023-07-19  8:27                                 ` Russell King (Oracle)
2023-07-19  8:38                                   ` Jiawen Wu
2023-07-19  8:52                                     ` Russell King (Oracle)
2023-07-13 12:18         ` Simon Horman
2023-07-13 10:46 ` Russell King (Oracle)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='013e01d9b95e$66c10350$344309f0$@trustnetic.com' \
    --to=jiawenwu@trustnetic.com \
    --cc=andrew@lunn.ch \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=hkallweit1@gmail.com \
    --cc=kabel@kernel.org \
    --cc=kuba@kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=simon.horman@corigine.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).