mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <sha@pengutronix.de>
To: Ahmad Fatoum <a.fatoum@pengutronix.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH master] net: bcmgenet: fix OF node of MII bus controller
Date: Fri, 2 Dec 2022 09:56:15 +0100	[thread overview]
Message-ID: <20221202085615.GO29728@pengutronix.de> (raw)
In-Reply-To: <20221130115157.3858878-1-a.fatoum@pengutronix.de>

On Wed, Nov 30, 2022 at 12:51:57PM +0100, Ahmad Fatoum wrote:
> The bcmgenet device tree binding describes the MDIO controller as a
> subnode of the Ethernet controller node. Linux handles this by having
> a driver for each of the MAC and MDIO controller, but in barebox we
> keep a single driver and largely ignore the subnode.
> 
> Since Commit 8abc2059298d ("net: add support for MDIO devices"), this
> leads to following error message:
> 
>   ERROR: miibus0: /scb/ethernet@7d580000/mdio@e14 PHY address 3604 is too
>   large
> 
> Give the MII bus the correct device tree node to fix this. We already do
> it this way in the designware_eqos driver.
> 
> This was tested on a Raspberry Pi 4b, where Link up and reading PHY ID
> of 600d 84a2 is sensible (matches PHY_ID_BCM54210E). DHCP though didn't
> work for me with or without this patch.
> 
> Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
> ---
>  drivers/net/bcmgenet.c | 2 ++
>  1 file changed, 2 insertions(+)

Applied, thanks

Sascha

> 
> diff --git a/drivers/net/bcmgenet.c b/drivers/net/bcmgenet.c
> index 2098e73b5cea..03389db8749b 100644
> --- a/drivers/net/bcmgenet.c
> +++ b/drivers/net/bcmgenet.c
> @@ -577,6 +577,8 @@ static int bcmgenet_probe(struct device_d *dev)
>  
>  	priv->miibus.priv = priv;
>  	priv->miibus.parent = dev;
> +	priv->miibus.dev.device_node
> +		= of_get_compatible_child(dev->device_node, "brcm,genet-mdio-v5");
>  
>  	ret = mdiobus_register(&priv->miibus);
>  	if (ret)
> -- 
> 2.30.2
> 
> 
> 

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |



      reply	other threads:[~2022-12-02  8:57 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-30 11:51 Ahmad Fatoum
2022-12-02  8:56 ` Sascha Hauer [this message]

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=20221202085615.GO29728@pengutronix.de \
    --to=sha@pengutronix.de \
    --cc=a.fatoum@pengutronix.de \
    --cc=barebox@lists.infradead.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