From: Horatiu Vultur <horatiu.vultur@microchip.com>
To: Michael Walle <michael@walle.cc>
Cc: "David S . Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Vladimir Oltean <olteanv@gmail.com>, <netdev@vger.kernel.org>,
<linux-kernel@vger.kernel.org>
Subject: Re: [PATCH net v2] net: lan966x: hardcode the number of external ports
Date: Tue, 5 Jul 2022 20:12:26 +0200 [thread overview]
Message-ID: <20220705181226.jcnwjqcmfsypr4q6@soft-dev3-1.localhost> (raw)
In-Reply-To: <20220704153654.1167886-1-michael@walle.cc>
The 07/04/2022 17:36, Michael Walle wrote:
>
> Instead of counting the child nodes in the device tree, hardcode the
> number of ports in the driver itself. The counting won't work at all
> if an ethernet port is marked as disabled, e.g. because it is not
> connected on the board at all.
>
> It turns out that the LAN9662 and LAN9668 use the same switching IP
> with the same synthesis parameters. The only difference is that the
> output ports are not connected. Thus, we can just hardcode the
> number of physical ports to 8.
>
> Fixes: db8bcaad5393 ("net: lan966x: add the basic lan966x driver")
> Signed-off-by: Michael Walle <michael@walle.cc>
Reviewed-by: Horatiu Vultur <horatiu.vultur@microchip.com>
> ---
> changes since v1:
> - add fixes tag since the fix is simple
> - switch from new specific compatible to "just use 8 for all"
>
> drivers/net/ethernet/microchip/lan966x/lan966x_main.c | 8 ++------
> drivers/net/ethernet/microchip/lan966x/lan966x_main.h | 1 +
> 2 files changed, 3 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/net/ethernet/microchip/lan966x/lan966x_main.c b/drivers/net/ethernet/microchip/lan966x/lan966x_main.c
> index 5784c4161e5e..1d6e3b641b2e 100644
> --- a/drivers/net/ethernet/microchip/lan966x/lan966x_main.c
> +++ b/drivers/net/ethernet/microchip/lan966x/lan966x_main.c
> @@ -994,7 +994,7 @@ static int lan966x_probe(struct platform_device *pdev)
> struct fwnode_handle *ports, *portnp;
> struct lan966x *lan966x;
> u8 mac_addr[ETH_ALEN];
> - int err, i;
> + int err;
>
> lan966x = devm_kzalloc(&pdev->dev, sizeof(*lan966x), GFP_KERNEL);
> if (!lan966x)
> @@ -1025,11 +1025,7 @@ static int lan966x_probe(struct platform_device *pdev)
> if (err)
> return dev_err_probe(&pdev->dev, err, "Reset failed");
>
> - i = 0;
> - fwnode_for_each_available_child_node(ports, portnp)
> - ++i;
> -
> - lan966x->num_phys_ports = i;
> + lan966x->num_phys_ports = NUM_PHYS_PORTS;
> lan966x->ports = devm_kcalloc(&pdev->dev, lan966x->num_phys_ports,
> sizeof(struct lan966x_port *),
> GFP_KERNEL);
> diff --git a/drivers/net/ethernet/microchip/lan966x/lan966x_main.h b/drivers/net/ethernet/microchip/lan966x/lan966x_main.h
> index 3b86ddddc756..2787055c1847 100644
> --- a/drivers/net/ethernet/microchip/lan966x/lan966x_main.h
> +++ b/drivers/net/ethernet/microchip/lan966x/lan966x_main.h
> @@ -34,6 +34,7 @@
> /* Reserved amount for (SRC, PRIO) at index 8*SRC + PRIO */
> #define QSYS_Q_RSRV 95
>
> +#define NUM_PHYS_PORTS 8
> #define CPU_PORT 8
>
> /* Reserved PGIDs */
> --
> 2.30.2
>
--
/Horatiu
next prev parent reply other threads:[~2022-07-05 18:08 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-04 15:36 [PATCH net v2] net: lan966x: hardcode the number of external ports Michael Walle
2022-07-05 18:12 ` Horatiu Vultur [this message]
2022-07-06 1:30 ` patchwork-bot+netdevbpf
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=20220705181226.jcnwjqcmfsypr4q6@soft-dev3-1.localhost \
--to=horatiu.vultur@microchip.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=michael@walle.cc \
--cc=netdev@vger.kernel.org \
--cc=olteanv@gmail.com \
--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