]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
net: stmmac: use integrated PCS for BASE-X modes
authorRussell King (Oracle) <rmk+kernel@armlinux.org.uk>
Wed, 18 Mar 2026 16:06:31 +0000 (16:06 +0000)
committerJakub Kicinski <kuba@kernel.org>
Tue, 24 Mar 2026 00:32:19 +0000 (17:32 -0700)
dwmac-qcom-ethqos supports SGMII and 2500BASE-X using the integrated
PCS, so we need to expand the PCS support to include support for
BASE-X modes.

Add support to the prereset configuration to detect 2500BASE-X, and
arrange for stmmac_mac_select_pcs() to return the integrated PCS if
its supported_interfaces bitmap reports support for the interface mode.

This results in priv->hw->pcs now being write-only, so remove it.

Reviewed-by: Maxime Chevallier <maxime.chevallier@bootlin.com>
Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Link: https://patch.msgid.link/E1w2tPj-0000000DYAv-2JcZ@rmk-PC.armlinux.org.uk
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/stmicro/stmmac/common.h
drivers/net/ethernet/stmicro/stmmac/stmmac_main.c

index 8166389c853f0fe932b6a10a1fdc42858ab51f87..927ea6230073f4256fbfaabc56fdfdb41eaa9031 100644 (file)
@@ -278,9 +278,6 @@ struct stmmac_safety_stats {
 #define FLOW_TX                2
 #define FLOW_AUTO      (FLOW_TX | FLOW_RX)
 
-/* PCS defines */
-#define STMMAC_PCS_SGMII       (1 << 1)
-
 #define SF_DMA_MODE 1          /* DMA STORE-AND-FORWARD Operation Mode */
 
 /* DMA HW feature register fields */
@@ -632,7 +629,6 @@ struct mac_device_info {
        unsigned int unicast_filter_entries;
        unsigned int mcast_bits_log2;
        unsigned int rx_csum;
-       unsigned int pcs;
        unsigned int num_vlan;
        u32 vlan_filter[32];
        bool vlan_fail_q_en;
index bd0f5d487e0fbc942d7ae0557af83f7b6b216b88..ecb6d9a27567b3ba4c5458c2705c5b73e58d23b5 100644 (file)
@@ -1027,11 +1027,8 @@ static struct phylink_pcs *stmmac_mac_select_pcs(struct phylink_config *config,
                        return pcs;
        }
 
-       /* The PCS control register is only relevant for SGMII, TBI and RTBI
-        * modes. We no longer support TBI or RTBI, so only configure this
-        * register when operating in SGMII mode with the integrated PCS.
-        */
-       if (priv->hw->pcs & STMMAC_PCS_SGMII && priv->integrated_pcs)
+       if (priv->integrated_pcs &&
+           test_bit(interface, priv->integrated_pcs->pcs.supported_interfaces))
                return &priv->integrated_pcs->pcs;
 
        return NULL;
@@ -1290,7 +1287,6 @@ static void stmmac_check_pcs_mode(struct stmmac_priv *priv)
 
        if (priv->dma_cap.pcs && interface == PHY_INTERFACE_MODE_SGMII) {
                netdev_dbg(priv->dev, "PCS SGMII support enabled\n");
-               priv->hw->pcs = STMMAC_PCS_SGMII;
 
                switch (speed) {
                case SPEED_10: