@@ -560,6 +560,7 @@ static void tja1102_p1_register(struct work_struct *work)
.mii_bus = bus,
/* Real PHY ID of Port 1 is 0 */
.phy_id = PHY_ID_TJA1102,
+ .phy_id_broken = true,
};
struct phy_device *phy;
@@ -969,6 +969,9 @@ static int phy_device_detect(struct phy_device_config *config)
int addr = config->phy_addr;
int r;
+ if (config->phy_id_broken)
+ return 0;
+
if (is_c45)
r = get_phy_c45_ids(bus, addr, c45_ids);
else
@@ -764,6 +764,8 @@ static inline struct phy_device *to_phy_device(const struct device *dev)
* @phy_id: UID for this device found during discovery
* @c45_ids: 802.3-c45 Device Identifiers if is_c45.
* @is_c45: If true the PHY uses the 802.3 clause 45 protocol
+ * @phy_id_broken: Skip the phy_id detection instead use the supplied phy_id or
+ * c45_ids.
*
* The struct contain possible configuration parameters for a PHY device which
* are used to setup the struct phy_device.
@@ -775,6 +777,7 @@ struct phy_device_config {
u32 phy_id;
struct phy_c45_device_ids c45_ids;
bool is_c45;
+ bool phy_id_broken;
};
/**
Some phy's don't report the correct phy-id, e.g. the TJA1102 dual-port report 0 for the 2nd port. To fix this a driver needs to supply the phyid instead and tell the phy framework to not try to readout the phyid. The latter case is done via the new 'phy_id_broken' flag which tells the phy framework to skip phyid readout for the corresponding phy. Signed-off-by: Marco Felsch <m.felsch@pengutronix.de> --- drivers/net/phy/nxp-tja11xx.c | 1 + drivers/net/phy/phy_device.c | 3 +++ include/linux/phy.h | 3 +++ 3 files changed, 7 insertions(+)