From: Florian Fainelli <f.fainelli@gmail.com>
To: Shengzhou Liu <Shengzhou.Liu@freescale.com>,
netdev@vger.kernel.org, davem@davemloft.net
Subject: Re: [PATCH v3] net/phy: tune get_phy_c45_ids to support more c45 phy
Date: Fri, 26 Jun 2015 11:17:01 -0700 [thread overview]
Message-ID: <558D971D.5090500@gmail.com> (raw)
In-Reply-To: <1435312732-24890-1-git-send-email-Shengzhou.Liu@freescale.com>
On 26/06/15 02:58, Shengzhou Liu wrote:
> As some C45 10G PHYs(e.g. Cortina CS4315/CS4340 PHY) have
> zero Devices In package, current driver can't get correct
> devices_in_package value by non-zero Devices In package.
> so let's probe more with zero Devices In package to support
> more C45 PHYs.
This looks better to me now:
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
>
> Signed-off-by: Shengzhou Liu <Shengzhou.Liu@freescale.com>
> ---
> v3: restructure the loop to probe naturally.
> v2: use MDIO_DEVS1 and MDIO_DEVS2 instead of constant '6', '5'
>
> drivers/net/phy/phy_device.c | 20 ++++++++++++++------
> 1 file changed, 14 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c
> index bdfe51f..3e90037 100644
> --- a/drivers/net/phy/phy_device.c
> +++ b/drivers/net/phy/phy_device.c
> @@ -230,7 +230,7 @@ static int get_phy_c45_ids(struct mii_bus *bus, int addr, u32 *phy_id,
> for (i = 1;
> i < num_ids && c45_ids->devices_in_package == 0;
> i++) {
> - reg_addr = MII_ADDR_C45 | i << 16 | MDIO_DEVS2;
> +retry: reg_addr = MII_ADDR_C45 | i << 16 | MDIO_DEVS2;
> phy_reg = mdiobus_read(bus, addr, reg_addr);
> if (phy_reg < 0)
> return -EIO;
> @@ -242,12 +242,20 @@ static int get_phy_c45_ids(struct mii_bus *bus, int addr, u32 *phy_id,
> return -EIO;
> c45_ids->devices_in_package |= (phy_reg & 0xffff);
>
> - /* If mostly Fs, there is no device there,
> - * let's get out of here.
> - */
> if ((c45_ids->devices_in_package & 0x1fffffff) == 0x1fffffff) {
> - *phy_id = 0xffffffff;
> - return 0;
> + if (i) {
> + /* If mostly Fs, there is no device there,
> + * then let's continue to probe more, as some
> + * 10G PHYs have zero Devices In package,
> + * e.g. Cortina CS4315/CS4340 PHY.
> + */
> + i = 0;
> + goto retry;
> + } else {
> + /* no device there, let's get out of here */
> + *phy_id = 0xffffffff;
> + return 0;
> + }
> }
> }
>
>
--
Florian
next prev parent reply other threads:[~2015-06-26 18:18 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-26 9:58 [PATCH v3] net/phy: tune get_phy_c45_ids to support more c45 phy Shengzhou Liu
2015-06-26 18:17 ` Florian Fainelli [this message]
2015-06-29 0:06 ` David Miller
-- strict thread matches above, loose matches on Subject: below --
2014-05-28 8:54 Shengzhou Liu
2014-05-31 0:41 ` David Miller
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=558D971D.5090500@gmail.com \
--to=f.fainelli@gmail.com \
--cc=Shengzhou.Liu@freescale.com \
--cc=davem@davemloft.net \
--cc=netdev@vger.kernel.org \
/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).