Replace the proprietary airoha,pnswap-rx / airoha,pnswap-tx boolean
device tree properties with the standard rx-polarity and tx-polarity
properties defined in phy-common-props.yaml.

Backward compatibility is maintained by reading the legacy boolean
properties first and passing them as the default_pol argument to
phy_get_rx/tx_polarity(). If the standard properties are absent the
legacy values are used transparently, so existing device trees remain
functional without modification.

Link: https://git.kernel.org/linus/66d8a334b57e64e43810623b3d88f0ce9745270b
Signed-off-by: Lucien.Jheng <[email protected]>
---
``` dts config
rx-polarity = <PHY_POL_INVERT>;
tx-polarity = <PHY_POL_NORMAL>;

```en8811h init log with new PHY common props:
U-Boot 2026.01-rc5--gd1a76e2e4a64-dirty (Apr 25 2026 - 15:37:25 +0800)
131072 bytes read in 57 ms (2.2 MiB/s)
mtk-eth ethernet@15100000: MD32 firmware version: 24112802
ofnode_read_bool: airoha,pnswap-rx: false
phy_get_polarity_for_mode: querying 'rx-polarity' for mode '2500base-x' 
(supported=0x3, default=0)
ofnode_get_u32_prop_for_name: looking up '2500base-x' in props='rx-polarity' 
names='rx-polarity-names' default=0
ofnode_read_prop: rx-polarity: ofnode_count_u32_prop: property 'rx-polarity' 
has 4 bytes (1 elements)
ofnode_get_u32_prop_for_name: 'rx-polarity' has 1 elements, 'rx-polarity-names' 
has -1 entries
ofnode_get_u32_prop_for_name: '2500base-x' not found in 'rx-polarity-names', 
trying 'default'
ofnode_get_u32_prop_for_name: 'default' entry not found in 'rx-polarity-names'
ofnode_get_u32_prop_for_name: single-element 'rx-polarity', reading directly
ofnode_read_u32_index: rx-polarity: 0x1 (1)
ofnode_get_u32_prop_for_name: resolved value 1 for name '2500base-x' from 
'rx-polarity'
phy_get_polarity_for_mode: 'rx-polarity' for mode '2500base-x' = 1
ofnode_read_bool: airoha,pnswap-tx: false
phy_get_polarity_for_mode: querying 'tx-polarity' for mode '2500base-x' 
(supported=0x3, default=0)
ofnode_get_u32_prop_for_name: looking up '2500base-x' in props='tx-polarity' 
names='tx-polarity-names' default=0
ofnode_read_prop: tx-polarity: ofnode_count_u32_prop: property 'tx-polarity' 
has 4 bytes (1 elements)
ofnode_get_u32_prop_for_name: 'tx-polarity' has 1 elements, 'tx-polarity-names' 
has -1 entries
ofnode_get_u32_prop_for_name: '2500base-x' not found in 'tx-polarity-names', 
trying 'default'
ofnode_get_u32_prop_for_name: 'default' entry not found in 'tx-polarity-names'
ofnode_get_u32_prop_for_name: single-element 'tx-polarity', reading directly
ofnode_read_u32_index: tx-polarity: 0x0 (0)
ofnode_get_u32_prop_for_name: resolved value 0 for name '2500base-x' from 
'tx-polarity'
phy_get_polarity_for_mode: 'tx-polarity' for mode '2500base-x' = 0

 drivers/net/phy/airoha/Kconfig      |  1 +
 drivers/net/phy/airoha/air_en8811.c | 60 +++++++++++++++++++++--------
 2 files changed, 45 insertions(+), 16 deletions(-)

diff --git a/drivers/net/phy/airoha/Kconfig b/drivers/net/phy/airoha/Kconfig
index da8747939e3..4139df343ad 100644
--- a/drivers/net/phy/airoha/Kconfig
+++ b/drivers/net/phy/airoha/Kconfig
@@ -7,6 +7,7 @@ config PHY_AIROHA_EN8811
        depends on PHY_AIROHA
        depends on SUPPORTS_FW_LOADER
        select FW_LOADER
+       select PHY_COMMON_PROPS
        help
          AIROHA EN8811H supported.
          AIROHA AN8811HB supported.
diff --git a/drivers/net/phy/airoha/air_en8811.c 
b/drivers/net/phy/airoha/air_en8811.c
index 0b974472732..32f06dd6dfa 100644
--- a/drivers/net/phy/airoha/air_en8811.c
+++ b/drivers/net/phy/airoha/air_en8811.c
@@ -23,6 +23,7 @@
 #include <linux/compat.h>
 #include <dm/device_compat.h>
 #include <u-boot/crc.h>
+#include <linux/phy/phy-common-props.h>

 /* MII Registers */
 #define AIR_AUX_CTRL_STATUS            0x1d
@@ -1046,11 +1047,50 @@ static int air_leds_init(struct phy_device *phydev, int 
num, u16 dur, int mode)
        return 0;
 }

-static int en8811h_config(struct phy_device *phydev)
+static int en8811h_config_serdes_polarity(struct phy_device *phydev)
 {
-       struct en8811h_priv *priv = phydev->priv;
        ofnode node = phy_get_ofnode(phydev);
+       unsigned int pol, default_pol;
        u32 pbus_value = 0;
+       int ret;
+
+       if (!ofnode_valid(node))
+               return 0;
+
+       default_pol = PHY_POL_NORMAL;
+       if (ofnode_read_bool(node, "airoha,pnswap-rx"))
+               default_pol = PHY_POL_INVERT;
+
+       ret = phy_get_rx_polarity(node,
+                                 phy_string_for_interface(phydev->interface),
+                                 BIT(PHY_POL_NORMAL) | BIT(PHY_POL_INVERT),
+                                 default_pol, &pol);
+       if (ret)
+               return ret;
+       if (pol == PHY_POL_INVERT)
+               pbus_value |= EN8811H_POLARITY_RX_REVERSE;
+
+       default_pol = PHY_POL_NORMAL;
+       if (ofnode_read_bool(node, "airoha,pnswap-tx"))
+               default_pol = PHY_POL_INVERT;
+
+       ret = phy_get_tx_polarity(node,
+                                 phy_string_for_interface(phydev->interface),
+                                 BIT(PHY_POL_NORMAL) | BIT(PHY_POL_INVERT),
+                                 default_pol, &pol);
+       if (ret)
+               return ret;
+       if (pol == PHY_POL_NORMAL)
+               pbus_value |= EN8811H_POLARITY_TX_NORMAL;
+
+       return air_buckpbus_reg_modify(phydev, EN8811H_POLARITY,
+                                      EN8811H_POLARITY_RX_REVERSE |
+                                      EN8811H_POLARITY_TX_NORMAL, pbus_value);
+}
+
+static int en8811h_config(struct phy_device *phydev)
+{
+       struct en8811h_priv *priv = phydev->priv;
        int ret = 0;

        /* If restart happened in .probe(), no need to restart now */
@@ -1081,20 +1121,8 @@ static int en8811h_config(struct phy_device *phydev)
        if (ret < 0)
                return ret;

-       /* Serdes polarity */
-       pbus_value = 0;
-       if (ofnode_read_bool(node, "airoha,pnswap-rx"))
-               pbus_value |=  EN8811H_POLARITY_RX_REVERSE;
-       else
-               pbus_value &= ~EN8811H_POLARITY_RX_REVERSE;
-       if (ofnode_read_bool(node, "airoha,pnswap-tx"))
-               pbus_value &= ~EN8811H_POLARITY_TX_NORMAL;
-       else
-               pbus_value |=  EN8811H_POLARITY_TX_NORMAL;
-       ret = air_buckpbus_reg_modify(phydev, EN8811H_POLARITY,
-                                     EN8811H_POLARITY_RX_REVERSE |
-                                     EN8811H_POLARITY_TX_NORMAL,
-                                     pbus_value);
+       /* Configure Serdes polarity from device tree */
+       ret = en8811h_config_serdes_polarity(phydev);
        if (ret < 0)
                return ret;

--
2.34.1

Reply via email to