From: "Russell King (Oracle)" <linux@armlinux.org.uk>
To: Prasanna Vengateshan <prasanna.vengateshan@microchip.com>
Cc: andrew@lunn.ch, netdev@vger.kernel.org, olteanv@gmail.com,
robh+dt@kernel.org, UNGLinuxDriver@microchip.com,
Woojung.Huh@microchip.com, hkallweit1@gmail.com,
davem@davemloft.net, kuba@kernel.org,
linux-kernel@vger.kernel.org, vivien.didelot@gmail.com,
f.fainelli@gmail.com, devicetree@vger.kernel.org
Subject: Re: [PATCH v7 net-next 06/10] net: dsa: microchip: add support for phylink management
Date: Fri, 4 Feb 2022 18:14:53 +0000 [thread overview]
Message-ID: <Yf1tHUaecq2DLgcE@shell.armlinux.org.uk> (raw)
In-Reply-To: <20220204174500.72814-7-prasanna.vengateshan@microchip.com>
Hi,
On Fri, Feb 04, 2022 at 11:14:56PM +0530, Prasanna Vengateshan wrote:
> +static void lan937x_phylink_mac_link_up(struct dsa_switch *ds, int port,
> + unsigned int mode,
> + phy_interface_t interface,
> + struct phy_device *phydev,
> + int speed, int duplex,
> + bool tx_pause, bool rx_pause)
> +{
> + struct ksz_device *dev = ds->priv;
> +
> + /* Internal PHYs */
> + if (lan937x_is_internal_phy_port(dev, port))
> + return;
> +
> + if (phylink_autoneg_inband(mode)) {
> + dev_err(ds->dev, "In-band AN not supported!\n");
> + return;
> + }
No need to check this in the link_up() method - if this were true,
you've already printed an error in the mac_config() method and this
one doesn't provide any additional useful information.
> +
> + lan937x_config_interface(dev, port, speed, duplex,
> + tx_pause, rx_pause);
> +}
> +
> +static void lan937x_phylink_get_caps(struct dsa_switch *ds, int port,
> + struct phylink_config *config)
> +{
> + struct ksz_device *dev = ds->priv;
> +
> + config->mac_capabilities = MAC_100FD;
> +
> + /* internal T1 PHY */
> + if (lan937x_is_internal_base_t1_phy_port(dev, port)) {
> + __set_bit(PHY_INTERFACE_MODE_INTERNAL,
> + config->supported_interfaces);
> + } else {
> + /* MII/RMII/RGMII ports */
> + if (!lan937x_is_internal_base_tx_phy_port(dev, port)) {
Please consider:
} else if (!lan937x_is_internal_base_tx_phy_port(dev, port)) {
/* MII/RMII/RGMII ports */
...
}
to avoid needing two tabs to indent, which probably makes:
> + config->mac_capabilities |= MAC_100HD | MAC_SYM_PAUSE |
> + MAC_ASYM_PAUSE | MAC_10 |
> + MAC_1000FD;
able to be laid out with the two pause modes first followed by the
speeds.
> + phy_interface_set_rgmii(config->supported_interfaces);
> +
> + __set_bit(PHY_INTERFACE_MODE_MII,
> + config->supported_interfaces);
> + __set_bit(PHY_INTERFACE_MODE_RMII,
> + config->supported_interfaces);
> + }
> + }
You seem to be a non-legacy driver in this patch (good!) so please also
add:
config->legacy_pre_march2020 = false;
while DSA is transitioned over. Thanks.
> +}
> +
> const struct dsa_switch_ops lan937x_switch_ops = {
> .get_tag_protocol = lan937x_get_tag_protocol,
> .setup = lan937x_setup,
Thanks.
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 40Mbps down 10Mbps up. Decent connectivity at last!
next prev parent reply other threads:[~2022-02-04 18:15 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-04 17:44 [PATCH v7 net-next 00/10] net: dsa: microchip: DSA driver support for LAN937x switch Prasanna Vengateshan
2022-02-04 17:44 ` [PATCH v7 net-next 01/10] dt-bindings: net: dsa: dt bindings for microchip lan937x Prasanna Vengateshan
2022-02-04 22:11 ` Rob Herring
2022-02-04 17:44 ` [PATCH v7 net-next 02/10] net: dsa: move mib->cnt_ptr reset code to ksz_common.c Prasanna Vengateshan
2022-02-04 17:44 ` [PATCH v7 net-next 03/10] net: phy: Add support for LAN937x T1 phy driver Prasanna Vengateshan
2022-02-04 17:44 ` [PATCH v7 net-next 04/10] net: dsa: tag_ksz: add tag handling for Microchip LAN937x Prasanna Vengateshan
2022-02-04 17:44 ` [PATCH v7 net-next 05/10] net: dsa: microchip: add DSA support for microchip lan937x Prasanna Vengateshan
2022-02-05 3:27 ` Jakub Kicinski
2022-02-04 17:44 ` [PATCH v7 net-next 06/10] net: dsa: microchip: add support for phylink management Prasanna Vengateshan
2022-02-04 18:14 ` Russell King (Oracle) [this message]
2022-02-07 16:58 ` Prasanna Vengateshan
2022-02-04 17:44 ` [PATCH v7 net-next 07/10] net: dsa: microchip: add support for ethtool port counters Prasanna Vengateshan
2022-02-05 3:27 ` Jakub Kicinski
2022-02-07 17:03 ` Prasanna Vengateshan
2022-02-04 17:44 ` [PATCH v7 net-next 08/10] net: dsa: microchip: add support for port mirror operations Prasanna Vengateshan
2022-02-04 17:44 ` [PATCH v7 net-next 09/10] net: dsa: microchip: add support for fdb and mdb management Prasanna Vengateshan
2022-02-04 17:45 ` [PATCH v7 net-next 10/10] net: dsa: microchip: add support for vlan operations Prasanna Vengateshan
2022-02-05 3:29 ` [PATCH v7 net-next 00/10] net: dsa: microchip: DSA driver support for LAN937x switch Jakub Kicinski
2022-02-07 14:01 ` Prasanna Vengateshan
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=Yf1tHUaecq2DLgcE@shell.armlinux.org.uk \
--to=linux@armlinux.org.uk \
--cc=UNGLinuxDriver@microchip.com \
--cc=Woojung.Huh@microchip.com \
--cc=andrew@lunn.ch \
--cc=davem@davemloft.net \
--cc=devicetree@vger.kernel.org \
--cc=f.fainelli@gmail.com \
--cc=hkallweit1@gmail.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=olteanv@gmail.com \
--cc=prasanna.vengateshan@microchip.com \
--cc=robh+dt@kernel.org \
--cc=vivien.didelot@gmail.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).