* mii_bus->read return checking in phy_device.c
@ 2011-03-04 17:25 Florian Fainelli
2011-03-04 18:06 ` Fleming Andy-AFLEMING
0 siblings, 1 reply; 5+ messages in thread
From: Florian Fainelli @ 2011-03-04 17:25 UTC (permalink / raw)
To: netdev; +Cc: David Miller, Andy Fleming
Hello Andy,
While debugging a PHY probing issue with the au1000_eth, I stumbled upon this
in drivers/net/phy/phy_device.c:
phy_reg = bus->read(bus, addr, MII_PHYSID1);
if (phy_reg < 0)
return -EIO;
most drivers implement phylib's mdio_read callback by simply returning the
contents of their MDIO register after a readl, ioread ... which is unsigned.
Would not it rather make sense to check for phy_reg <= 0 instead?
This can lead for instance to believing that a PHY is present at a wrong
address because the MDIO read function returns 0 for that particular register,
which is logical because no PHY is present at that address.
I am asking in case I just miss something.
Thank you.
--
Florian
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: mii_bus->read return checking in phy_device.c
2011-03-04 17:25 mii_bus->read return checking in phy_device.c Florian Fainelli
@ 2011-03-04 18:06 ` Fleming Andy-AFLEMING
2011-03-04 18:12 ` Florian Fainelli
0 siblings, 1 reply; 5+ messages in thread
From: Fleming Andy-AFLEMING @ 2011-03-04 18:06 UTC (permalink / raw)
To: Florian Fainelli; +Cc: netdev@vger.kernel.org, David Miller
On Mar 4, 2011, at 11:24, "Florian Fainelli" <florian@openwrt.org> wrote:
> Hello Andy,
>
> While debugging a PHY probing issue with the au1000_eth, I stumbled upon this
> in drivers/net/phy/phy_device.c:
>
> phy_reg = bus->read(bus, addr, MII_PHYSID1);
>
> if (phy_reg < 0)
> return -EIO;
>
> most drivers implement phylib's mdio_read callback by simply returning the
> contents of their MDIO register after a readl, ioread ... which is unsigned.
> Would not it rather make sense to check for phy_reg <= 0 instead?
That isn't a check for a non-existent PHY. PHY registers are unsigned 16-bit quantities. The negative 32-bit return value would be the result of something going wrong in the bus transaction.
Notice that later the code actually checks to see if the read value was mostly 1s...
>
> This can lead for instance to believing that a PHY is present at a wrong
> address because the MDIO read function returns 0 for that particular register,
> which is logical because no PHY is present at that address.
>
> I am asking in case I just miss something.
>
> Thank you.
> --
> Florian
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: mii_bus->read return checking in phy_device.c
2011-03-04 18:06 ` Fleming Andy-AFLEMING
@ 2011-03-04 18:12 ` Florian Fainelli
2011-03-04 18:19 ` Fleming Andy-AFLEMING
0 siblings, 1 reply; 5+ messages in thread
From: Florian Fainelli @ 2011-03-04 18:12 UTC (permalink / raw)
To: Fleming Andy-AFLEMING; +Cc: netdev@vger.kernel.org, David Miller
On Friday 04 March 2011 19:06:20 Fleming Andy-AFLEMING wrote:
> On Mar 4, 2011, at 11:24, "Florian Fainelli" <florian@openwrt.org> wrote:
> > Hello Andy,
> >
> > While debugging a PHY probing issue with the au1000_eth, I stumbled upon
> > this
> >
> > in drivers/net/phy/phy_device.c:
> > phy_reg = bus->read(bus, addr, MII_PHYSID1);
> >
> > if (phy_reg < 0)
> >
> > return -EIO;
> >
> > most drivers implement phylib's mdio_read callback by simply returning
> > the contents of their MDIO register after a readl, ioread ... which is
> > unsigned. Would not it rather make sense to check for phy_reg <= 0
> > instead?
>
> That isn't a check for a non-existent PHY. PHY registers are unsigned
> 16-bit quantities. The negative 32-bit return value would be the result
> of something going wrong in the bus transaction.
Ok, but 0 is not an acceptable value either for both ID1 and ID2.
>
> Notice that later the code actually checks to see if the read value was
> mostly 1s...
What if the MDIO bus returns 0 instead of 1? Should that be fixed to return
0xffff instead in the driver?
>
> > This can lead for instance to believing that a PHY is present at a wrong
> > address because the MDIO read function returns 0 for that particular
> > register, which is logical because no PHY is present at that address.
> >
> > I am asking in case I just miss something.
> >
> > Thank you.
> > --
> > Florian
>
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: mii_bus->read return checking in phy_device.c
2011-03-04 18:12 ` Florian Fainelli
@ 2011-03-04 18:19 ` Fleming Andy-AFLEMING
2011-03-07 9:43 ` Florian Fainelli
0 siblings, 1 reply; 5+ messages in thread
From: Fleming Andy-AFLEMING @ 2011-03-04 18:19 UTC (permalink / raw)
To: Florian Fainelli; +Cc: netdev@vger.kernel.org, David Miller
On Mar 4, 2011, at 12:10, "Florian Fainelli" <florian@openwrt.org> wrote:
> On Friday 04 March 2011 19:06:20 Fleming Andy-AFLEMING wrote:
>> On Mar 4, 2011, at 11:24, "Florian Fainelli" <florian@openwrt.org> wrote:
>>> Hello Andy,
>>>
>>> While debugging a PHY probing issue with the au1000_eth, I stumbled upon
>>> this
>>>
>>> in drivers/net/phy/phy_device.c:
>>> phy_reg = bus->read(bus, addr, MII_PHYSID1);
>>>
>>> if (phy_reg < 0)
>>>
>>> return -EIO;
>>>
>>> most drivers implement phylib's mdio_read callback by simply returning
>>> the contents of their MDIO register after a readl, ioread ... which is
>>> unsigned. Would not it rather make sense to check for phy_reg <= 0
>>> instead?
>>
>> That isn't a check for a non-existent PHY. PHY registers are unsigned
>> 16-bit quantities. The negative 32-bit return value would be the result
>> of something going wrong in the bus transaction.
>
> Ok, but 0 is not an acceptable value either for both ID1 and ID2.
I don't remember the exact details, but i recall we had a discussion about this several years ago, and decided that 0 should not be interpreted as a non-existent PHY. I know I have a part that has an internal PHY which doesnt have anything in the ID registers. If your driver is aware that it did not get a response from the PHY, it should return 0xffff. Otherwise, you can return 0, and just be aware that the PHY subsystem will believe there's a PHY there.
>
>>
>> Notice that later the code actually checks to see if the read value was
>> mostly 1s...
>
> What if the MDIO bus returns 0 instead of 1? Should that be fixed to return
> 0xffff instead in the driver?
>
>>
>>> This can lead for instance to believing that a PHY is present at a wrong
>>> address because the MDIO read function returns 0 for that particular
>>> register, which is logical because no PHY is present at that address.
>>>
>>> I am asking in case I just miss something.
>>>
>>> Thank you.
>>> --
>>> Florian
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe netdev" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: mii_bus->read return checking in phy_device.c
2011-03-04 18:19 ` Fleming Andy-AFLEMING
@ 2011-03-07 9:43 ` Florian Fainelli
0 siblings, 0 replies; 5+ messages in thread
From: Florian Fainelli @ 2011-03-07 9:43 UTC (permalink / raw)
To: Fleming Andy-AFLEMING; +Cc: netdev@vger.kernel.org, David Miller
On Friday 04 March 2011 19:19:10 Fleming Andy-AFLEMING wrote:
> On Mar 4, 2011, at 12:10, "Florian Fainelli" <florian@openwrt.org> wrote:
> > On Friday 04 March 2011 19:06:20 Fleming Andy-AFLEMING wrote:
> >> On Mar 4, 2011, at 11:24, "Florian Fainelli" <florian@openwrt.org> wrote:
> >>> Hello Andy,
> >>>
> >>> While debugging a PHY probing issue with the au1000_eth, I stumbled
> >>> upon this
> >>>
> >>> in drivers/net/phy/phy_device.c:
> >>> phy_reg = bus->read(bus, addr, MII_PHYSID1);
> >>>
> >>> if (phy_reg < 0)
> >>>
> >>> return -EIO;
> >>>
> >>> most drivers implement phylib's mdio_read callback by simply returning
> >>> the contents of their MDIO register after a readl, ioread ... which is
> >>> unsigned. Would not it rather make sense to check for phy_reg <= 0
> >>> instead?
> >>
> >> That isn't a check for a non-existent PHY. PHY registers are unsigned
> >> 16-bit quantities. The negative 32-bit return value would be the result
> >> of something going wrong in the bus transaction.
> >
> > Ok, but 0 is not an acceptable value either for both ID1 and ID2.
>
> I don't remember the exact details, but i recall we had a discussion about
> this several years ago, and decided that 0 should not be interpreted as a
> non-existent PHY. I know I have a part that has an internal PHY which
> doesnt have anything in the ID registers. If your driver is aware that it
> did not get a response from the PHY, it should return 0xffff. Otherwise,
> you can return 0, and just be aware that the PHY subsystem will believe
> there's a PHY there.
Allright, thanks for the clarification, I have sorted this in platform code
registering the particular ethernet driver.
--
Florian
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-03-07 9:42 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-04 17:25 mii_bus->read return checking in phy_device.c Florian Fainelli
2011-03-04 18:06 ` Fleming Andy-AFLEMING
2011-03-04 18:12 ` Florian Fainelli
2011-03-04 18:19 ` Fleming Andy-AFLEMING
2011-03-07 9:43 ` Florian Fainelli
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).