From: "Marek Behún" <marek.behun@nic.cz>
To: Robert Marko <robert.marko@sartura.hr>
Cc: u-boot@lists.denx.de, sr@denx.de, pali@kernel.org
Subject: Re: [PATCH v2 2/4] net: mvneta: add SFP TX disable handling
Date: Wed, 23 Mar 2022 23:25:35 +0100 [thread overview]
Message-ID: <20220323232535.6361635a@thinkpad> (raw)
In-Reply-To: <20220323171910.1947852-2-robert.marko@sartura.hr>
On Wed, 23 Mar 2022 18:19:08 +0100
Robert Marko <robert.marko@sartura.hr> wrote:
> Add support for handling SFP TX disable for MVNETA in the same fashion as
> to what MVPP2 is doing in order to enable using SFP-s.
>
> This allows using ethernet on SFP only boards.
>
> Signed-off-by: Robert Marko <robert.marko@sartura.hr>
> ---
> Changes in v2:
> * Parse the standard SFP node for TX disable GPIO instead of using a
> custom property
>
> drivers/net/mvneta.c | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/drivers/net/mvneta.c b/drivers/net/mvneta.c
> index 4a4268c2b2..018f2da393 100644
> --- a/drivers/net/mvneta.c
> +++ b/drivers/net/mvneta.c
> @@ -286,6 +286,7 @@ struct mvneta_port {
> struct phy_device *phydev;
> #if CONFIG_IS_ENABLED(DM_GPIO)
> struct gpio_desc phy_reset_gpio;
> + struct gpio_desc sfp_tx_disable_gpio;
> #endif
> struct mii_dev *bus;
> };
> @@ -1693,6 +1694,9 @@ static int mvneta_probe(struct udevice *dev)
> {
> struct eth_pdata *pdata = dev_get_plat(dev);
> struct mvneta_port *pp = dev_get_priv(dev);
> +#if CONFIG_IS_ENABLED(DM_GPIO)
> + struct ofnode_phandle_args sfp_args;
> +#endif
> void *blob = (void *)gd->fdt_blob;
> int node = dev_of_offset(dev);
> struct mii_dev *bus;
> @@ -1767,6 +1771,11 @@ static int mvneta_probe(struct udevice *dev)
> return ret;
>
> #if CONFIG_IS_ENABLED(DM_GPIO)
> + ret = dev_read_phandle_with_args(dev, "sfp", NULL, 0, 0, &sfp_args);
> + if (!ret)
> + gpio_request_by_name_nodev(sfp_args.node, "tx-disable-gpio", 0,
> + &pp->sfp_tx_disable_gpio, GPIOD_IS_OUT);
This should also check whether the sfp_args.node is not disabled:
if (!ret && ofnode_is_enabled(sf_args.node))
because for example current dts for Turris Omnia in Linux' upstream
has sfp node but it is disabled by default.
The dev_read_phandle_with_args() function does not check whether the
sfp node is disabled or not (if I am looking at the code correctly.
Marek
next prev parent reply other threads:[~2022-03-23 22:25 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-23 17:19 [PATCH v2 1/4] arm: mvebu: dts: uDPU: update DTS Robert Marko
2022-03-23 17:19 ` [PATCH v2 2/4] net: mvneta: add SFP TX disable handling Robert Marko
2022-03-23 22:25 ` Marek Behún [this message]
2022-03-24 9:47 ` Robert Marko
2022-03-23 17:19 ` [PATCH v2 3/4] arm: mvebu: dts: uDPU: fix non-working networking Robert Marko
2022-03-23 17:19 ` [PATCH v2 4/4] mvebu: uDPU: update defconfig Robert Marko
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=20220323232535.6361635a@thinkpad \
--to=marek.behun@nic.cz \
--cc=pali@kernel.org \
--cc=robert.marko@sartura.hr \
--cc=sr@denx.de \
--cc=u-boot@lists.denx.de \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.