From: Lorenzo Bianconi <lorenzo@kernel.org>
To: Christian Marangi <ansuelsmth@gmail.com>
Cc: Andrew Lunn <andrew+netdev@lunn.ch>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Russell King <linux@armlinux.org.uk>,
linux-arm-kernel@lists.infradead.org,
linux-mediatek@lists.infradead.org, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [net-next PATCH 2/2] net: airoha: add phylink support for GDM1
Date: Wed, 22 Oct 2025 09:28:49 +0200 [thread overview]
Message-ID: <aPiHsYquV0NEc8zc@lore-desk> (raw)
In-Reply-To: <20251021193315.2192359-3-ansuelsmth@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2872 bytes --]
[...]
> static int airoha_alloc_gdm_port(struct airoha_eth *eth,
> struct device_node *np, int index)
> {
> @@ -2931,19 +2995,30 @@ static int airoha_alloc_gdm_port(struct airoha_eth *eth,
> port->id = id;
> eth->ports[p] = port;
>
> - err = airoha_metadata_dst_alloc(port);
> - if (err)
> - return err;
> + return airoha_metadata_dst_alloc(port);
> +}
>
> - err = register_netdev(dev);
> - if (err)
> - goto free_metadata_dst;
> +static int airoha_register_gdm_ports(struct airoha_eth *eth)
> +{
> + int i;
>
> - return 0;
> + for (i = 0; i < ARRAY_SIZE(eth->ports); i++) {
> + struct airoha_gdm_port *port = eth->ports[i];
> + int err;
>
> -free_metadata_dst:
> - airoha_metadata_dst_free(port);
> - return err;
> + if (!port)
> + continue;
> +
> + err = airoha_setup_phylink(port->dev);
> + if (err)
> + return err;
> +
> + err = register_netdev(port->dev);
> + if (err)
> + return err;
> + }
> +
> + return 0;
> }
>
> static int airoha_probe(struct platform_device *pdev)
> @@ -3034,6 +3109,10 @@ static int airoha_probe(struct platform_device *pdev)
> }
> }
>
> + err = airoha_register_gdm_ports(eth);
is there any specific reason we need to alloc all netdevs before registering
the given phylink? I guess you can just do it in airoha_alloc_gdm_port(),
right?
Regards,
Lorenzo
> + if (err)
> + goto error_napi_stop;
> +
> return 0;
>
> error_napi_stop:
> @@ -3047,10 +3126,14 @@ static int airoha_probe(struct platform_device *pdev)
> for (i = 0; i < ARRAY_SIZE(eth->ports); i++) {
> struct airoha_gdm_port *port = eth->ports[i];
>
> - if (port && port->dev->reg_state == NETREG_REGISTERED) {
> + if (!port)
> + continue;
> +
> + if (port->dev->reg_state == NETREG_REGISTERED) {
> unregister_netdev(port->dev);
> - airoha_metadata_dst_free(port);
> + phylink_destroy(port->phylink);
> }
> + airoha_metadata_dst_free(port);
> }
> free_netdev(eth->napi_dev);
> platform_set_drvdata(pdev, NULL);
> @@ -3076,6 +3159,7 @@ static void airoha_remove(struct platform_device *pdev)
>
> airoha_dev_stop(port->dev);
> unregister_netdev(port->dev);
> + phylink_destroy(port->phylink);
> airoha_metadata_dst_free(port);
> }
> free_netdev(eth->napi_dev);
> diff --git a/drivers/net/ethernet/airoha/airoha_eth.h b/drivers/net/ethernet/airoha/airoha_eth.h
> index eb27a4ff5198..c144c1ece23b 100644
> --- a/drivers/net/ethernet/airoha/airoha_eth.h
> +++ b/drivers/net/ethernet/airoha/airoha_eth.h
> @@ -531,6 +531,9 @@ struct airoha_gdm_port {
> struct net_device *dev;
> int id;
>
> + struct phylink *phylink;
> + struct phylink_config phylink_config;
> +
> struct airoha_hw_stats stats;
>
> DECLARE_BITMAP(qos_sq_bmap, AIROHA_NUM_QOS_CHANNELS);
> --
> 2.51.0
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
next prev parent reply other threads:[~2025-10-22 7:28 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-21 19:33 [net-next PATCH 0/2] net: airoha: initial phylink support Christian Marangi
2025-10-21 19:33 ` [net-next PATCH 1/2] net: airoha: use device_set_node helper to setup GDM node Christian Marangi
2025-10-21 19:33 ` [net-next PATCH 2/2] net: airoha: add phylink support for GDM1 Christian Marangi
2025-10-22 7:28 ` Lorenzo Bianconi [this message]
2025-10-22 7:42 ` Maxime Chevallier
2025-10-22 15:52 ` Christian Marangi
2025-10-22 15:45 ` Simon Horman
2025-10-22 15:48 ` Christian Marangi
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=aPiHsYquV0NEc8zc@lore-desk \
--to=lorenzo@kernel.org \
--cc=andrew+netdev@lunn.ch \
--cc=ansuelsmth@gmail.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux@armlinux.org.uk \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
/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;
as well as URLs for NNTP newsgroup(s).