linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next 1/1] net: phy: Add additional logics on probing C45 PHY devices
@ 2020-11-12 15:03 Wong Vee Khee
  2020-11-12 15:21 ` Andrew Lunn
  2020-11-17 19:56 ` Jakub Kicinski
  0 siblings, 2 replies; 3+ messages in thread
From: Wong Vee Khee @ 2020-11-12 15:03 UTC (permalink / raw)
  To: Andrew Lunn, Heiner Kallweit, Russell King, David S . Miller,
	Jakub Kicinski
  Cc: netdev, linux-kernel, Ong Boon Leong, Voon Wei Feng, Wong Vee Khee

For clause 45 PHY, introduce additional logics in get_phy_c45_ids() to
check if there is at least one valid device ID, return 0 on true, and
-ENODEV otherwise.

Signed-off-by: Wong Vee Khee <vee.khee.wong@intel.com>
---
 drivers/net/phy/phy_device.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c
index e13a46c25437..c9ddcd7a63d4 100644
--- a/drivers/net/phy/phy_device.c
+++ b/drivers/net/phy/phy_device.c
@@ -730,6 +730,7 @@ static int get_phy_c45_ids(struct mii_bus *bus, int addr,
 	const int num_ids = ARRAY_SIZE(c45_ids->device_ids);
 	u32 devs_in_pkg = 0;
 	int i, ret, phy_reg;
+	u32 valid_did = 0;
 
 	/* Find first non-zero Devices In package. Device zero is reserved
 	 * for 802.3 c45 complied PHYs, so don't probe it at first.
@@ -796,12 +797,21 @@ static int get_phy_c45_ids(struct mii_bus *bus, int addr,
 		if (phy_reg < 0)
 			return -EIO;
 		c45_ids->device_ids[i] |= phy_reg;
+
+		/* Check if there is at least one valid device ID */
+		if (c45_ids->device_ids[i] &&
+		    (c45_ids->device_ids[i] & 0x1fffffff) != 0x1fffffff)
+			valid_did |= (1 << i);
 	}
 
 	c45_ids->devices_in_package = devs_in_pkg;
 	/* Bit 0 doesn't represent a device, it indicates c22 regs presence */
 	c45_ids->mmds_present = devs_in_pkg & ~BIT(0);
 
+	/* There is no valid device ID */
+	if (!valid_did)
+		return -ENODEV;
+
 	return 0;
 }
 
-- 
2.17.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH net-next 1/1] net: phy: Add additional logics on probing C45 PHY devices
  2020-11-12 15:03 [PATCH net-next 1/1] net: phy: Add additional logics on probing C45 PHY devices Wong Vee Khee
@ 2020-11-12 15:21 ` Andrew Lunn
  2020-11-17 19:56 ` Jakub Kicinski
  1 sibling, 0 replies; 3+ messages in thread
From: Andrew Lunn @ 2020-11-12 15:21 UTC (permalink / raw)
  To: Wong Vee Khee
  Cc: Heiner Kallweit, Russell King, David S . Miller, Jakub Kicinski,
	netdev, linux-kernel, Ong Boon Leong, Voon Wei Feng

On Thu, Nov 12, 2020 at 11:03:51PM +0800, Wong Vee Khee wrote:
> For clause 45 PHY, introduce additional logics in get_phy_c45_ids() to
> check if there is at least one valid device ID, return 0 on true, and
> -ENODEV otherwise.

So does this mean you have a device which uses c45 and does not have
any valid IDs? What device is it? Can it be used via c22?

I would like to know more about why this is needed, since it sounds
like a workaround for a broken device.

     Andrew

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH net-next 1/1] net: phy: Add additional logics on probing C45 PHY devices
  2020-11-12 15:03 [PATCH net-next 1/1] net: phy: Add additional logics on probing C45 PHY devices Wong Vee Khee
  2020-11-12 15:21 ` Andrew Lunn
@ 2020-11-17 19:56 ` Jakub Kicinski
  1 sibling, 0 replies; 3+ messages in thread
From: Jakub Kicinski @ 2020-11-17 19:56 UTC (permalink / raw)
  To: Wong Vee Khee
  Cc: Andrew Lunn, Heiner Kallweit, Russell King, David S . Miller,
	netdev, linux-kernel, Ong Boon Leong, Voon Wei Feng

On Thu, 12 Nov 2020 23:03:51 +0800 Wong Vee Khee wrote:
> For clause 45 PHY, introduce additional logics in get_phy_c45_ids() to
> check if there is at least one valid device ID, return 0 on true, and
> -ENODEV otherwise.
> 
> Signed-off-by: Wong Vee Khee <vee.khee.wong@intel.com>

I don't see any response to Andrew's questions, so I'm dropping this
from patchwork.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-11-17 19:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-12 15:03 [PATCH net-next 1/1] net: phy: Add additional logics on probing C45 PHY devices Wong Vee Khee
2020-11-12 15:21 ` Andrew Lunn
2020-11-17 19:56 ` Jakub Kicinski

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).