diff mbox series

[CFT,net-next] net: macb: use .mac_select_pcs() interface

Message ID E1mxq4w-00GWry-Lg@rmk-PC.armlinux.org.uk (mailing list archive)
State RFC
Delegated to: Netdev Maintainers
Headers show
Series [CFT,net-next] net: macb: use .mac_select_pcs() interface | expand

Checks

Context Check Description
netdev/tree_selection success Clearly marked for net-next
netdev/fixes_present success Fixes tag not required for -next series
netdev/subject_prefix success Link
netdev/cover_letter success Single patches do not need cover letters
netdev/patch_count success Link
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 25 this patch: 25
netdev/cc_maintainers warning 1 maintainers not CCed: linux@armlinux.org.uk
netdev/build_clang success Errors and warnings before: 0 this patch: 0
netdev/module_param success Was 0 now: 0
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/verify_fixes success No Fixes tag
netdev/build_allmodconfig_warn success Errors and warnings before: 25 this patch: 25
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 76 lines checked
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/source_inline success Was 0 now: 0

Commit Message

Russell King (Oracle) Dec. 16, 2021, 12:41 p.m. UTC
Convert the PCS selection to use mac_select_pcs, which allows the PCS
to perform any validation it needs.

We must use separate phylink_pcs instances for the USX and SGMII PCS,
rather than just changing the "ops" pointer before re-setting it to
phylink as this interface queries the PCS, rather than requesting it
to be changed.

Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
---
 drivers/net/ethernet/cadence/macb.h      |  3 ++-
 drivers/net/ethernet/cadence/macb_main.c | 26 +++++++++++-------------
 2 files changed, 14 insertions(+), 15 deletions(-)

Comments

Nicolas Ferre Dec. 16, 2021, 1:15 p.m. UTC | #1
On 16/12/2021 at 13:41, Russell King (Oracle) wrote:
> Convert the PCS selection to use mac_select_pcs, which allows the PCS
> to perform any validation it needs.
> 
> We must use separate phylink_pcs instances for the USX and SGMII PCS,
> rather than just changing the "ops" pointer before re-setting it to
> phylink as this interface queries the PCS, rather than requesting it
> to be changed.
> 
> Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>

Looks good to me:
Acked-by: Nicolas Ferre <nicolas.ferre@microchip.com>

Thanks Russell. Best regards,
   Nicolas

> ---
>   drivers/net/ethernet/cadence/macb.h      |  3 ++-
>   drivers/net/ethernet/cadence/macb_main.c | 26 +++++++++++-------------
>   2 files changed, 14 insertions(+), 15 deletions(-)
> 
> diff --git a/drivers/net/ethernet/cadence/macb.h b/drivers/net/ethernet/cadence/macb.h
> index 5620b97b3482..9ddbee7de72b 100644
> --- a/drivers/net/ethernet/cadence/macb.h
> +++ b/drivers/net/ethernet/cadence/macb.h
> @@ -1271,7 +1271,8 @@ struct macb {
>          struct mii_bus          *mii_bus;
>          struct phylink          *phylink;
>          struct phylink_config   phylink_config;
> -       struct phylink_pcs      phylink_pcs;
> +       struct phylink_pcs      phylink_usx_pcs;
> +       struct phylink_pcs      phylink_sgmii_pcs;
> 
>          u32                     caps;
>          unsigned int            dma_burst_length;
> diff --git a/drivers/net/ethernet/cadence/macb_main.c b/drivers/net/ethernet/cadence/macb_main.c
> index d4da9adf6777..a363da928e8b 100644
> --- a/drivers/net/ethernet/cadence/macb_main.c
> +++ b/drivers/net/ethernet/cadence/macb_main.c
> @@ -510,7 +510,7 @@ static void macb_usx_pcs_link_up(struct phylink_pcs *pcs, unsigned int mode,
>                                   phy_interface_t interface, int speed,
>                                   int duplex)
>   {
> -       struct macb *bp = container_of(pcs, struct macb, phylink_pcs);
> +       struct macb *bp = container_of(pcs, struct macb, phylink_usx_pcs);
>          u32 config;
> 
>          config = gem_readl(bp, USX_CONTROL);
> @@ -524,7 +524,7 @@ static void macb_usx_pcs_link_up(struct phylink_pcs *pcs, unsigned int mode,
>   static void macb_usx_pcs_get_state(struct phylink_pcs *pcs,
>                                     struct phylink_link_state *state)
>   {
> -       struct macb *bp = container_of(pcs, struct macb, phylink_pcs);
> +       struct macb *bp = container_of(pcs, struct macb, phylink_usx_pcs);
>          u32 val;
> 
>          state->speed = SPEED_10000;
> @@ -544,7 +544,7 @@ static int macb_usx_pcs_config(struct phylink_pcs *pcs,
>                                 const unsigned long *advertising,
>                                 bool permit_pause_to_mac)
>   {
> -       struct macb *bp = container_of(pcs, struct macb, phylink_pcs);
> +       struct macb *bp = container_of(pcs, struct macb, phylink_usx_pcs);
> 
>          gem_writel(bp, USX_CONTROL, gem_readl(bp, USX_CONTROL) |
>                     GEM_BIT(SIGNAL_OK));
> @@ -727,28 +727,23 @@ static void macb_mac_link_up(struct phylink_config *config,
>          netif_tx_wake_all_queues(ndev);
>   }
> 
> -static int macb_mac_prepare(struct phylink_config *config, unsigned int mode,
> -                           phy_interface_t interface)
> +static struct phylink_pcs *macb_mac_select_pcs(struct phylink_config *config,
> +                                              phy_interface_t interface)
>   {
>          struct net_device *ndev = to_net_dev(config->dev);
>          struct macb *bp = netdev_priv(ndev);
> 
>          if (interface == PHY_INTERFACE_MODE_10GBASER)
> -               bp->phylink_pcs.ops = &macb_phylink_usx_pcs_ops;
> +               return &bp->phylink_usx_pcs;
>          else if (interface == PHY_INTERFACE_MODE_SGMII)
> -               bp->phylink_pcs.ops = &macb_phylink_pcs_ops;
> +               return &bp->phylink_sgmii_pcs;
>          else
> -               bp->phylink_pcs.ops = NULL;
> -
> -       if (bp->phylink_pcs.ops)
> -               phylink_set_pcs(bp->phylink, &bp->phylink_pcs);
> -
> -       return 0;
> +               return NULL;
>   }
> 
>   static const struct phylink_mac_ops macb_phylink_ops = {
>          .validate = phylink_generic_validate,
> -       .mac_prepare = macb_mac_prepare,
> +       .mac_select_pcs = macb_mac_select_pcs,
>          .mac_config = macb_mac_config,
>          .mac_link_down = macb_mac_link_down,
>          .mac_link_up = macb_mac_link_up,
> @@ -806,6 +801,9 @@ static int macb_mii_probe(struct net_device *dev)
>   {
>          struct macb *bp = netdev_priv(dev);
> 
> +       bp->phylink_sgmii_pcs.ops = &macb_phylink_pcs_ops;
> +       bp->phylink_usx_pcs.ops = &macb_phylink_usx_pcs_ops;
> +
>          bp->phylink_config.dev = &dev->dev;
>          bp->phylink_config.type = PHYLINK_NETDEV;
> 
> --
> 2.30.2
>
diff mbox series

Patch

diff --git a/drivers/net/ethernet/cadence/macb.h b/drivers/net/ethernet/cadence/macb.h
index 5620b97b3482..9ddbee7de72b 100644
--- a/drivers/net/ethernet/cadence/macb.h
+++ b/drivers/net/ethernet/cadence/macb.h
@@ -1271,7 +1271,8 @@  struct macb {
 	struct mii_bus		*mii_bus;
 	struct phylink		*phylink;
 	struct phylink_config	phylink_config;
-	struct phylink_pcs	phylink_pcs;
+	struct phylink_pcs	phylink_usx_pcs;
+	struct phylink_pcs	phylink_sgmii_pcs;
 
 	u32			caps;
 	unsigned int		dma_burst_length;
diff --git a/drivers/net/ethernet/cadence/macb_main.c b/drivers/net/ethernet/cadence/macb_main.c
index d4da9adf6777..a363da928e8b 100644
--- a/drivers/net/ethernet/cadence/macb_main.c
+++ b/drivers/net/ethernet/cadence/macb_main.c
@@ -510,7 +510,7 @@  static void macb_usx_pcs_link_up(struct phylink_pcs *pcs, unsigned int mode,
 				 phy_interface_t interface, int speed,
 				 int duplex)
 {
-	struct macb *bp = container_of(pcs, struct macb, phylink_pcs);
+	struct macb *bp = container_of(pcs, struct macb, phylink_usx_pcs);
 	u32 config;
 
 	config = gem_readl(bp, USX_CONTROL);
@@ -524,7 +524,7 @@  static void macb_usx_pcs_link_up(struct phylink_pcs *pcs, unsigned int mode,
 static void macb_usx_pcs_get_state(struct phylink_pcs *pcs,
 				   struct phylink_link_state *state)
 {
-	struct macb *bp = container_of(pcs, struct macb, phylink_pcs);
+	struct macb *bp = container_of(pcs, struct macb, phylink_usx_pcs);
 	u32 val;
 
 	state->speed = SPEED_10000;
@@ -544,7 +544,7 @@  static int macb_usx_pcs_config(struct phylink_pcs *pcs,
 			       const unsigned long *advertising,
 			       bool permit_pause_to_mac)
 {
-	struct macb *bp = container_of(pcs, struct macb, phylink_pcs);
+	struct macb *bp = container_of(pcs, struct macb, phylink_usx_pcs);
 
 	gem_writel(bp, USX_CONTROL, gem_readl(bp, USX_CONTROL) |
 		   GEM_BIT(SIGNAL_OK));
@@ -727,28 +727,23 @@  static void macb_mac_link_up(struct phylink_config *config,
 	netif_tx_wake_all_queues(ndev);
 }
 
-static int macb_mac_prepare(struct phylink_config *config, unsigned int mode,
-			    phy_interface_t interface)
+static struct phylink_pcs *macb_mac_select_pcs(struct phylink_config *config,
+					       phy_interface_t interface)
 {
 	struct net_device *ndev = to_net_dev(config->dev);
 	struct macb *bp = netdev_priv(ndev);
 
 	if (interface == PHY_INTERFACE_MODE_10GBASER)
-		bp->phylink_pcs.ops = &macb_phylink_usx_pcs_ops;
+		return &bp->phylink_usx_pcs;
 	else if (interface == PHY_INTERFACE_MODE_SGMII)
-		bp->phylink_pcs.ops = &macb_phylink_pcs_ops;
+		return &bp->phylink_sgmii_pcs;
 	else
-		bp->phylink_pcs.ops = NULL;
-
-	if (bp->phylink_pcs.ops)
-		phylink_set_pcs(bp->phylink, &bp->phylink_pcs);
-
-	return 0;
+		return NULL;
 }
 
 static const struct phylink_mac_ops macb_phylink_ops = {
 	.validate = phylink_generic_validate,
-	.mac_prepare = macb_mac_prepare,
+	.mac_select_pcs = macb_mac_select_pcs,
 	.mac_config = macb_mac_config,
 	.mac_link_down = macb_mac_link_down,
 	.mac_link_up = macb_mac_link_up,
@@ -806,6 +801,9 @@  static int macb_mii_probe(struct net_device *dev)
 {
 	struct macb *bp = netdev_priv(dev);
 
+	bp->phylink_sgmii_pcs.ops = &macb_phylink_pcs_ops;
+	bp->phylink_usx_pcs.ops = &macb_phylink_usx_pcs_ops;
+
 	bp->phylink_config.dev = &dev->dev;
 	bp->phylink_config.type = PHYLINK_NETDEV;