diff mbox series

[net-next,v1,3/7] net: phy: Introduce fwnode_get_phy_id()

Message ID 20200930160430.7908-4-calvin.johnson@oss.nxp.com
State New
Headers show
Series [net-next,v1,1/7] Documentation: ACPI: DSD: Document MDIO PHY | expand

Commit Message

Calvin Johnson Sept. 30, 2020, 4:04 p.m. UTC
Extract phy_id from compatible string. This will be used by
fwnode_mdiobus_register_phy() to create phy device using the
phy_id.

Signed-off-by: Calvin Johnson <calvin.johnson@oss.nxp.com>
---

 drivers/net/phy/phy_device.c | 32 +++++++++++++++++++++++++++++++-
 include/linux/phy.h          |  5 +++++
 2 files changed, 36 insertions(+), 1 deletion(-)

Comments

Andrew Lunn Sept. 30, 2020, 4:34 p.m. UTC | #1
> +/* Extract the phy ID from the compatible string of the form

> + * ethernet-phy-idAAAA.BBBB.

> + */

> +int fwnode_get_phy_id(struct fwnode_handle *fwnode, u32 *phy_id)

> +{

> +	unsigned int upper, lower;

> +	const char *cp;

> +	int ret;

> +

> +	ret = fwnode_property_read_string(fwnode, "compatible", &cp);

> +	if (ret)

> +		return ret;

> +

> +	if (sscanf(cp, "ethernet-phy-id%4x.%4x", &upper, &lower) == 2) {

> +		*phy_id = ((upper & 0xFFFF) << 16) | (lower & 0xFFFF);

> +		return 0;

> +	}

> +	return -EINVAL;

> +}

> +EXPORT_SYMBOL(fwnode_get_phy_id);


Hi Calvin

Do you really need this? Do you have a board with a broken PHY ID?

>  /**

>   * get_phy_device - reads the specified PHY device and returns its @phy_device

>   *		    struct

> @@ -2866,7 +2888,15 @@ EXPORT_SYMBOL_GPL(device_phy_find_device);

>   */

>  struct fwnode_handle *fwnode_get_phy_node(struct fwnode_handle *fwnode)

>  {

> -	return fwnode_find_reference(fwnode, "phy-handle", 0);

> +	struct fwnode_handle *phy_node;

> +

> +	phy_node = fwnode_find_reference(fwnode, "phy-handle", 0);

> +	if (is_acpi_node(fwnode) || !IS_ERR(phy_node))

> +		return phy_node;

> +	phy_node = fwnode_find_reference(fwnode, "phy", 0);

> +	if (IS_ERR(phy_node))

> +		phy_node = fwnode_find_reference(fwnode, "phy-device", 0);

> +	return phy_node;


Why do you have three different ways to reference a PHY?

    Andrew
Russell King (Oracle) Sept. 30, 2020, 6:07 p.m. UTC | #2
On Wed, Sep 30, 2020 at 06:34:40PM +0200, Andrew Lunn wrote:
> > @@ -2866,7 +2888,15 @@ EXPORT_SYMBOL_GPL(device_phy_find_device);

> >   */

> >  struct fwnode_handle *fwnode_get_phy_node(struct fwnode_handle *fwnode)

> >  {

> > -	return fwnode_find_reference(fwnode, "phy-handle", 0);

> > +	struct fwnode_handle *phy_node;

> > +

> > +	phy_node = fwnode_find_reference(fwnode, "phy-handle", 0);

> > +	if (is_acpi_node(fwnode) || !IS_ERR(phy_node))

> > +		return phy_node;

> > +	phy_node = fwnode_find_reference(fwnode, "phy", 0);

> > +	if (IS_ERR(phy_node))

> > +		phy_node = fwnode_find_reference(fwnode, "phy-device", 0);

> > +	return phy_node;

> 

> Why do you have three different ways to reference a PHY?


Compatibility with the DT version - note that "phy" and "phy-device"
are only used for non-ACPI fwnodes. This should allow us to convert
drivers where necessary without fear of causing DT regressions.

-- 
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 40Mbps down 10Mbps up. Decent connectivity at last!
Andrew Lunn Sept. 30, 2020, 6:19 p.m. UTC | #3
On Wed, Sep 30, 2020 at 07:07:25PM +0100, Russell King - ARM Linux admin wrote:
> On Wed, Sep 30, 2020 at 06:34:40PM +0200, Andrew Lunn wrote:
> > > @@ -2866,7 +2888,15 @@ EXPORT_SYMBOL_GPL(device_phy_find_device);
> > >   */
> > >  struct fwnode_handle *fwnode_get_phy_node(struct fwnode_handle *fwnode)
> > >  {
> > > -	return fwnode_find_reference(fwnode, "phy-handle", 0);
> > > +	struct fwnode_handle *phy_node;
> > > +
> > > +	phy_node = fwnode_find_reference(fwnode, "phy-handle", 0);
> > > +	if (is_acpi_node(fwnode) || !IS_ERR(phy_node))
> > > +		return phy_node;
> > > +	phy_node = fwnode_find_reference(fwnode, "phy", 0);
> > > +	if (IS_ERR(phy_node))
> > > +		phy_node = fwnode_find_reference(fwnode, "phy-device", 0);
> > > +	return phy_node;
> > 
> > Why do you have three different ways to reference a PHY?
> 
> Compatibility with the DT version - note that "phy" and "phy-device"
> are only used for non-ACPI fwnodes. This should allow us to convert
> drivers where necessary without fear of causing DT regressions.

Ah.

A comment would be good here.

  Andrew
Calvin Johnson Oct. 1, 2020, 4 a.m. UTC | #4
On Wed, Sep 30, 2020 at 08:19:02PM +0200, Andrew Lunn wrote:
> On Wed, Sep 30, 2020 at 07:07:25PM +0100, Russell King - ARM Linux admin wrote:

> > On Wed, Sep 30, 2020 at 06:34:40PM +0200, Andrew Lunn wrote:

> > > > @@ -2866,7 +2888,15 @@ EXPORT_SYMBOL_GPL(device_phy_find_device);

> > > >   */

> > > >  struct fwnode_handle *fwnode_get_phy_node(struct fwnode_handle *fwnode)

> > > >  {

> > > > -	return fwnode_find_reference(fwnode, "phy-handle", 0);

> > > > +	struct fwnode_handle *phy_node;

> > > > +

> > > > +	phy_node = fwnode_find_reference(fwnode, "phy-handle", 0);

> > > > +	if (is_acpi_node(fwnode) || !IS_ERR(phy_node))

> > > > +		return phy_node;

> > > > +	phy_node = fwnode_find_reference(fwnode, "phy", 0);

> > > > +	if (IS_ERR(phy_node))

> > > > +		phy_node = fwnode_find_reference(fwnode, "phy-device", 0);

> > > > +	return phy_node;

> > > 

> > > Why do you have three different ways to reference a PHY?

> > 

> > Compatibility with the DT version - note that "phy" and "phy-device"

> > are only used for non-ACPI fwnodes. This should allow us to convert

> > drivers where necessary without fear of causing DT regressions.

> 

> Ah.

> 

> A comment would be good here.


Sure. Will add comment.

Thanks
Calvin
Grant Likely Oct. 2, 2020, 10:48 a.m. UTC | #5
On 01/10/2020 05:00, Calvin Johnson wrote:
> On Wed, Sep 30, 2020 at 08:19:02PM +0200, Andrew Lunn wrote:

>> On Wed, Sep 30, 2020 at 07:07:25PM +0100, Russell King - ARM Linux admin wrote:

>>> On Wed, Sep 30, 2020 at 06:34:40PM +0200, Andrew Lunn wrote:

>>>>> @@ -2866,7 +2888,15 @@ EXPORT_SYMBOL_GPL(device_phy_find_device);

>>>>>    */

>>>>>   struct fwnode_handle *fwnode_get_phy_node(struct fwnode_handle *fwnode)

>>>>>   {

>>>>> -	return fwnode_find_reference(fwnode, "phy-handle", 0);

>>>>> +	struct fwnode_handle *phy_node;

>>>>> +

>>>>> +	phy_node = fwnode_find_reference(fwnode, "phy-handle", 0);

>>>>> +	if (is_acpi_node(fwnode) || !IS_ERR(phy_node))

>>>>> +		return phy_node;

>>>>> +	phy_node = fwnode_find_reference(fwnode, "phy", 0);

>>>>> +	if (IS_ERR(phy_node))

>>>>> +		phy_node = fwnode_find_reference(fwnode, "phy-device", 0);

>>>>> +	return phy_node;

>>>>

>>>> Why do you have three different ways to reference a PHY?

>>>

>>> Compatibility with the DT version - note that "phy" and "phy-device"

>>> are only used for non-ACPI fwnodes. This should allow us to convert

>>> drivers where necessary without fear of causing DT regressions.

>>

>> Ah.

>>

>> A comment would be good here.

> 

> Sure. Will add comment.


Actually, I agree with Andrew. I don't see why new properties are being 
defined for following a reference from a property to a PHY node. This 
function shouldn't need to change at all.

g.
Grant Likely Oct. 2, 2020, 11:05 a.m. UTC | #6
On 30/09/2020 17:04, Calvin Johnson wrote:
> Extract phy_id from compatible string. This will be used by
> fwnode_mdiobus_register_phy() to create phy device using the
> phy_id.
> 
> Signed-off-by: Calvin Johnson <calvin.johnson@oss.nxp.com>
> ---
> 
>   drivers/net/phy/phy_device.c | 32 +++++++++++++++++++++++++++++++-
>   include/linux/phy.h          |  5 +++++
>   2 files changed, 36 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c
> index c4aec56d0a95..162abde6223d 100644
> --- a/drivers/net/phy/phy_device.c
> +++ b/drivers/net/phy/phy_device.c
> @@ -9,6 +9,7 @@
>   
>   #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
>   
> +#include <linux/acpi.h>
>   #include <linux/bitmap.h>
>   #include <linux/delay.h>
>   #include <linux/errno.h>
> @@ -845,6 +846,27 @@ static int get_phy_c22_id(struct mii_bus *bus, int addr, u32 *phy_id)
>   	return 0;
>   }
>   
> +/* Extract the phy ID from the compatible string of the form
> + * ethernet-phy-idAAAA.BBBB.
> + */
> +int fwnode_get_phy_id(struct fwnode_handle *fwnode, u32 *phy_id)
> +{
> +	unsigned int upper, lower;
> +	const char *cp;
> +	int ret;
> +
> +	ret = fwnode_property_read_string(fwnode, "compatible", &cp);
> +	if (ret)
> +		return ret;
> +
> +	if (sscanf(cp, "ethernet-phy-id%4x.%4x", &upper, &lower) == 2) {
> +		*phy_id = ((upper & 0xFFFF) << 16) | (lower & 0xFFFF);
> +		return 0;
> +	}
> +	return -EINVAL;
> +}
> +EXPORT_SYMBOL(fwnode_get_phy_id);

This block, and the changes in patch 4 duplicate functions from 
drivers/of/of_mdio.c, but it doesn't refactor anything in 
drivers/of/of_mdio.c to use the new path. Is your intent to bring all of 
the parsing in these functions of "compatible" into the ACPI code path?

If so, then the existing code path needs to be refactored to work with 
fwnode_handle instead of device_node.

If not, then the DT path in these functions should call out to of_mdio, 
while the ACPI path only does what is necessary.

> +
>   /**
>    * get_phy_device - reads the specified PHY device and returns its @phy_device
>    *		    struct
> @@ -2866,7 +2888,15 @@ EXPORT_SYMBOL_GPL(device_phy_find_device);
>    */
>   struct fwnode_handle *fwnode_get_phy_node(struct fwnode_handle *fwnode)
>   {
> -	return fwnode_find_reference(fwnode, "phy-handle", 0);
> +	struct fwnode_handle *phy_node;
> +
> +	phy_node = fwnode_find_reference(fwnode, "phy-handle", 0);
> +	if (is_acpi_node(fwnode) || !IS_ERR(phy_node))
> +		return phy_node;
> +	phy_node = fwnode_find_reference(fwnode, "phy", 0);
> +	if (IS_ERR(phy_node))
> +		phy_node = fwnode_find_reference(fwnode, "phy-device", 0);
> +	return phy_node;
>   }
>   EXPORT_SYMBOL_GPL(fwnode_get_phy_node);
>   
> diff --git a/include/linux/phy.h b/include/linux/phy.h
> index 7b1bf3d46fd3..b6814e04092f 100644
> --- a/include/linux/phy.h
> +++ b/include/linux/phy.h
> @@ -1378,6 +1378,7 @@ struct phy_device *phy_device_create(struct mii_bus *bus, int addr, u32 phy_id,
>   				     bool is_c45,
>   				     struct phy_c45_device_ids *c45_ids);
>   #if IS_ENABLED(CONFIG_PHYLIB)
> +int fwnode_get_phy_id(struct fwnode_handle *fwnode, u32 *phy_id);
>   struct phy_device *fwnode_phy_find_device(struct fwnode_handle *phy_fwnode);
>   struct phy_device *device_phy_find_device(struct device *dev);
>   struct fwnode_handle *fwnode_get_phy_node(struct fwnode_handle *fwnode);
> @@ -1385,6 +1386,10 @@ struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45);
>   int phy_device_register(struct phy_device *phy);
>   void phy_device_free(struct phy_device *phydev);
>   #else
> +static inline int fwnode_get_phy_id(struct fwnode_handle *fwnode, u32 *phy_id)
> +{
> +	return 0;
> +}
>   static inline
>   struct phy_device *fwnode_phy_find_device(struct fwnode_handle *phy_fwnode)
>   {
>
Florian Fainelli Oct. 2, 2020, 3:14 p.m. UTC | #7
On 10/2/2020 4:05 AM, Grant Likely wrote:
> 
> 
> On 30/09/2020 17:04, Calvin Johnson wrote:
>> Extract phy_id from compatible string. This will be used by
>> fwnode_mdiobus_register_phy() to create phy device using the
>> phy_id.
>>
>> Signed-off-by: Calvin Johnson <calvin.johnson@oss.nxp.com>
>> ---
>>
>>   drivers/net/phy/phy_device.c | 32 +++++++++++++++++++++++++++++++-
>>   include/linux/phy.h          |  5 +++++
>>   2 files changed, 36 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c
>> index c4aec56d0a95..162abde6223d 100644
>> --- a/drivers/net/phy/phy_device.c
>> +++ b/drivers/net/phy/phy_device.c
>> @@ -9,6 +9,7 @@
>>   #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
>> +#include <linux/acpi.h>
>>   #include <linux/bitmap.h>
>>   #include <linux/delay.h>
>>   #include <linux/errno.h>
>> @@ -845,6 +846,27 @@ static int get_phy_c22_id(struct mii_bus *bus, 
>> int addr, u32 *phy_id)
>>       return 0;
>>   }
>> +/* Extract the phy ID from the compatible string of the form
>> + * ethernet-phy-idAAAA.BBBB.
>> + */
>> +int fwnode_get_phy_id(struct fwnode_handle *fwnode, u32 *phy_id)
>> +{
>> +    unsigned int upper, lower;
>> +    const char *cp;
>> +    int ret;
>> +
>> +    ret = fwnode_property_read_string(fwnode, "compatible", &cp);
>> +    if (ret)
>> +        return ret;
>> +
>> +    if (sscanf(cp, "ethernet-phy-id%4x.%4x", &upper, &lower) == 2) {
>> +        *phy_id = ((upper & 0xFFFF) << 16) | (lower & 0xFFFF);
>> +        return 0;
>> +    }
>> +    return -EINVAL;
>> +}
>> +EXPORT_SYMBOL(fwnode_get_phy_id);
> 
> This block, and the changes in patch 4 duplicate functions from 
> drivers/of/of_mdio.c, but it doesn't refactor anything in 
> drivers/of/of_mdio.c to use the new path. Is your intent to bring all of 
> the parsing in these functions of "compatible" into the ACPI code path?
> 
> If so, then the existing code path needs to be refactored to work with 
> fwnode_handle instead of device_node.
> 
> If not, then the DT path in these functions should call out to of_mdio, 
> while the ACPI path only does what is necessary.

Rob has been asking before to have drivers/of/of_mdio.c be merged or at 
least relocated within drivers/net/phy where it would naturally belong. 
As a preliminary step towards ACPI support that would seem reasonable to do.

Then, as Grant suggests you can start re-factoring as much as possible 
with using fwnode_handle.
Russell King (Oracle) Oct. 2, 2020, 3:50 p.m. UTC | #8
On Fri, Oct 02, 2020 at 08:14:07AM -0700, Florian Fainelli wrote:
> On 10/2/2020 4:05 AM, Grant Likely wrote:

> > On 30/09/2020 17:04, Calvin Johnson wrote:

> > > Extract phy_id from compatible string. This will be used by

> > > fwnode_mdiobus_register_phy() to create phy device using the

> > > phy_id.

> > > 

> > > Signed-off-by: Calvin Johnson <calvin.johnson@oss.nxp.com>

> > > ---

> > > 

> > >   drivers/net/phy/phy_device.c | 32 +++++++++++++++++++++++++++++++-

> > >   include/linux/phy.h          |  5 +++++

> > >   2 files changed, 36 insertions(+), 1 deletion(-)

> > > 

> > > diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c

> > > index c4aec56d0a95..162abde6223d 100644

> > > --- a/drivers/net/phy/phy_device.c

> > > +++ b/drivers/net/phy/phy_device.c

> > > @@ -9,6 +9,7 @@

> > >   #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

> > > +#include <linux/acpi.h>

> > >   #include <linux/bitmap.h>

> > >   #include <linux/delay.h>

> > >   #include <linux/errno.h>

> > > @@ -845,6 +846,27 @@ static int get_phy_c22_id(struct mii_bus *bus,

> > > int addr, u32 *phy_id)

> > >       return 0;

> > >   }

> > > +/* Extract the phy ID from the compatible string of the form

> > > + * ethernet-phy-idAAAA.BBBB.

> > > + */

> > > +int fwnode_get_phy_id(struct fwnode_handle *fwnode, u32 *phy_id)

> > > +{

> > > +    unsigned int upper, lower;

> > > +    const char *cp;

> > > +    int ret;

> > > +

> > > +    ret = fwnode_property_read_string(fwnode, "compatible", &cp);

> > > +    if (ret)

> > > +        return ret;

> > > +

> > > +    if (sscanf(cp, "ethernet-phy-id%4x.%4x", &upper, &lower) == 2) {

> > > +        *phy_id = ((upper & 0xFFFF) << 16) | (lower & 0xFFFF);

> > > +        return 0;

> > > +    }

> > > +    return -EINVAL;

> > > +}

> > > +EXPORT_SYMBOL(fwnode_get_phy_id);

> > 

> > This block, and the changes in patch 4 duplicate functions from

> > drivers/of/of_mdio.c, but it doesn't refactor anything in

> > drivers/of/of_mdio.c to use the new path. Is your intent to bring all of

> > the parsing in these functions of "compatible" into the ACPI code path?

> > 

> > If so, then the existing code path needs to be refactored to work with

> > fwnode_handle instead of device_node.

> > 

> > If not, then the DT path in these functions should call out to of_mdio,

> > while the ACPI path only does what is necessary.

> 

> Rob has been asking before to have drivers/of/of_mdio.c be merged or at

> least relocated within drivers/net/phy where it would naturally belong. As a

> preliminary step towards ACPI support that would seem reasonable to do.


I think even I have commented on specific functions while reviewing
patches from NXP that the DT/ACPI code should use common bases...

I have been planning that if that doesn't get done, then I'd do it,
but really NXP should do it being the ones adding this infrastructure;
they should do the job properly and not take advantage of volunteers
in the community cleaning up their resulting submissions.

-- 
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 40Mbps down 10Mbps up. Decent connectivity at last!
Calvin Johnson Oct. 3, 2020, 6 p.m. UTC | #9
On Fri, Oct 02, 2020 at 12:05:14PM +0100, Grant Likely wrote:
> 

> 

> On 30/09/2020 17:04, Calvin Johnson wrote:

> > Extract phy_id from compatible string. This will be used by

> > fwnode_mdiobus_register_phy() to create phy device using the

> > phy_id.

> > 

> > Signed-off-by: Calvin Johnson <calvin.johnson@oss.nxp.com>

> > ---

> > 

> >   drivers/net/phy/phy_device.c | 32 +++++++++++++++++++++++++++++++-

> >   include/linux/phy.h          |  5 +++++

> >   2 files changed, 36 insertions(+), 1 deletion(-)

> > 

> > diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c

> > index c4aec56d0a95..162abde6223d 100644

> > --- a/drivers/net/phy/phy_device.c

> > +++ b/drivers/net/phy/phy_device.c

> > @@ -9,6 +9,7 @@

> >   #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

> > +#include <linux/acpi.h>

> >   #include <linux/bitmap.h>

> >   #include <linux/delay.h>

> >   #include <linux/errno.h>

> > @@ -845,6 +846,27 @@ static int get_phy_c22_id(struct mii_bus *bus, int addr, u32 *phy_id)

> >   	return 0;

> >   }

> > +/* Extract the phy ID from the compatible string of the form

> > + * ethernet-phy-idAAAA.BBBB.

> > + */

> > +int fwnode_get_phy_id(struct fwnode_handle *fwnode, u32 *phy_id)

> > +{

> > +	unsigned int upper, lower;

> > +	const char *cp;

> > +	int ret;

> > +

> > +	ret = fwnode_property_read_string(fwnode, "compatible", &cp);

> > +	if (ret)

> > +		return ret;

> > +

> > +	if (sscanf(cp, "ethernet-phy-id%4x.%4x", &upper, &lower) == 2) {

> > +		*phy_id = ((upper & 0xFFFF) << 16) | (lower & 0xFFFF);

> > +		return 0;

> > +	}

> > +	return -EINVAL;

> > +}

> > +EXPORT_SYMBOL(fwnode_get_phy_id);

> 

> This block, and the changes in patch 4 duplicate functions from

> drivers/of/of_mdio.c, but it doesn't refactor anything in

> drivers/of/of_mdio.c to use the new path. Is your intent to bring all of the

> parsing in these functions of "compatible" into the ACPI code path?

> 

> If so, then the existing code path needs to be refactored to work with

> fwnode_handle instead of device_node.

> 

> If not, then the DT path in these functions should call out to of_mdio,

> while the ACPI path only does what is necessary.


I'll work on refactoring as Florian and Rob are also suggesting the same.

Thanks
Calvin
Calvin Johnson Oct. 3, 2020, 6:03 p.m. UTC | #10
Hi Russell and Florian,

On Fri, Oct 02, 2020 at 04:50:26PM +0100, Russell King - ARM Linux admin wrote:
> On Fri, Oct 02, 2020 at 08:14:07AM -0700, Florian Fainelli wrote:
> > On 10/2/2020 4:05 AM, Grant Likely wrote:
> > > On 30/09/2020 17:04, Calvin Johnson wrote:
> > > > Extract phy_id from compatible string. This will be used by
> > > > fwnode_mdiobus_register_phy() to create phy device using the
> > > > phy_id.
> > > > 
> > > > Signed-off-by: Calvin Johnson <calvin.johnson@oss.nxp.com>
> > > > ---
> > > > 
> > > >   drivers/net/phy/phy_device.c | 32 +++++++++++++++++++++++++++++++-
> > > >   include/linux/phy.h          |  5 +++++
> > > >   2 files changed, 36 insertions(+), 1 deletion(-)
> > > > 
> > > > diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c
> > > > index c4aec56d0a95..162abde6223d 100644
> > > > --- a/drivers/net/phy/phy_device.c
> > > > +++ b/drivers/net/phy/phy_device.c
> > > > @@ -9,6 +9,7 @@
> > > >   #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
> > > > +#include <linux/acpi.h>
> > > >   #include <linux/bitmap.h>
> > > >   #include <linux/delay.h>
> > > >   #include <linux/errno.h>
> > > > @@ -845,6 +846,27 @@ static int get_phy_c22_id(struct mii_bus *bus,
> > > > int addr, u32 *phy_id)
> > > >       return 0;
> > > >   }
> > > > +/* Extract the phy ID from the compatible string of the form
> > > > + * ethernet-phy-idAAAA.BBBB.
> > > > + */
> > > > +int fwnode_get_phy_id(struct fwnode_handle *fwnode, u32 *phy_id)
> > > > +{
> > > > +    unsigned int upper, lower;
> > > > +    const char *cp;
> > > > +    int ret;
> > > > +
> > > > +    ret = fwnode_property_read_string(fwnode, "compatible", &cp);
> > > > +    if (ret)
> > > > +        return ret;
> > > > +
> > > > +    if (sscanf(cp, "ethernet-phy-id%4x.%4x", &upper, &lower) == 2) {
> > > > +        *phy_id = ((upper & 0xFFFF) << 16) | (lower & 0xFFFF);
> > > > +        return 0;
> > > > +    }
> > > > +    return -EINVAL;
> > > > +}
> > > > +EXPORT_SYMBOL(fwnode_get_phy_id);
> > > 
> > > This block, and the changes in patch 4 duplicate functions from
> > > drivers/of/of_mdio.c, but it doesn't refactor anything in
> > > drivers/of/of_mdio.c to use the new path. Is your intent to bring all of
> > > the parsing in these functions of "compatible" into the ACPI code path?
> > > 
> > > If so, then the existing code path needs to be refactored to work with
> > > fwnode_handle instead of device_node.
> > > 
> > > If not, then the DT path in these functions should call out to of_mdio,
> > > while the ACPI path only does what is necessary.
> > 
> > Rob has been asking before to have drivers/of/of_mdio.c be merged or at
> > least relocated within drivers/net/phy where it would naturally belong. As a
> > preliminary step towards ACPI support that would seem reasonable to do.
> 
> I think even I have commented on specific functions while reviewing
> patches from NXP that the DT/ACPI code should use common bases...
> 
> I have been planning that if that doesn't get done, then I'd do it,
> but really NXP should do it being the ones adding this infrastructure;
> they should do the job properly and not take advantage of volunteers
> in the community cleaning up their resulting submissions.

I'll work on it.

Thanks
Calvin
diff mbox series

Patch

diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c
index c4aec56d0a95..162abde6223d 100644
--- a/drivers/net/phy/phy_device.c
+++ b/drivers/net/phy/phy_device.c
@@ -9,6 +9,7 @@ 
 
 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
 
+#include <linux/acpi.h>
 #include <linux/bitmap.h>
 #include <linux/delay.h>
 #include <linux/errno.h>
@@ -845,6 +846,27 @@  static int get_phy_c22_id(struct mii_bus *bus, int addr, u32 *phy_id)
 	return 0;
 }
 
+/* Extract the phy ID from the compatible string of the form
+ * ethernet-phy-idAAAA.BBBB.
+ */
+int fwnode_get_phy_id(struct fwnode_handle *fwnode, u32 *phy_id)
+{
+	unsigned int upper, lower;
+	const char *cp;
+	int ret;
+
+	ret = fwnode_property_read_string(fwnode, "compatible", &cp);
+	if (ret)
+		return ret;
+
+	if (sscanf(cp, "ethernet-phy-id%4x.%4x", &upper, &lower) == 2) {
+		*phy_id = ((upper & 0xFFFF) << 16) | (lower & 0xFFFF);
+		return 0;
+	}
+	return -EINVAL;
+}
+EXPORT_SYMBOL(fwnode_get_phy_id);
+
 /**
  * get_phy_device - reads the specified PHY device and returns its @phy_device
  *		    struct
@@ -2866,7 +2888,15 @@  EXPORT_SYMBOL_GPL(device_phy_find_device);
  */
 struct fwnode_handle *fwnode_get_phy_node(struct fwnode_handle *fwnode)
 {
-	return fwnode_find_reference(fwnode, "phy-handle", 0);
+	struct fwnode_handle *phy_node;
+
+	phy_node = fwnode_find_reference(fwnode, "phy-handle", 0);
+	if (is_acpi_node(fwnode) || !IS_ERR(phy_node))
+		return phy_node;
+	phy_node = fwnode_find_reference(fwnode, "phy", 0);
+	if (IS_ERR(phy_node))
+		phy_node = fwnode_find_reference(fwnode, "phy-device", 0);
+	return phy_node;
 }
 EXPORT_SYMBOL_GPL(fwnode_get_phy_node);
 
diff --git a/include/linux/phy.h b/include/linux/phy.h
index 7b1bf3d46fd3..b6814e04092f 100644
--- a/include/linux/phy.h
+++ b/include/linux/phy.h
@@ -1378,6 +1378,7 @@  struct phy_device *phy_device_create(struct mii_bus *bus, int addr, u32 phy_id,
 				     bool is_c45,
 				     struct phy_c45_device_ids *c45_ids);
 #if IS_ENABLED(CONFIG_PHYLIB)
+int fwnode_get_phy_id(struct fwnode_handle *fwnode, u32 *phy_id);
 struct phy_device *fwnode_phy_find_device(struct fwnode_handle *phy_fwnode);
 struct phy_device *device_phy_find_device(struct device *dev);
 struct fwnode_handle *fwnode_get_phy_node(struct fwnode_handle *fwnode);
@@ -1385,6 +1386,10 @@  struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45);
 int phy_device_register(struct phy_device *phy);
 void phy_device_free(struct phy_device *phydev);
 #else
+static inline int fwnode_get_phy_id(struct fwnode_handle *fwnode, u32 *phy_id)
+{
+	return 0;
+}
 static inline
 struct phy_device *fwnode_phy_find_device(struct fwnode_handle *phy_fwnode)
 {