Andrew Lunn | a2443fd | 2019-01-21 19:05:50 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Matus Ujhelyi | 0ca7111 | 2012-10-14 19:07:16 +0000 | [diff] [blame] | 2 | /* |
| 3 | * drivers/net/phy/at803x.c |
| 4 | * |
Michael Walle | 96c3671 | 2019-11-06 23:36:16 +0100 | [diff] [blame] | 5 | * Driver for Qualcomm Atheros AR803x PHY |
Matus Ujhelyi | 0ca7111 | 2012-10-14 19:07:16 +0000 | [diff] [blame] | 6 | * |
| 7 | * Author: Matus Ujhelyi <ujhelyi.m@gmail.com> |
Matus Ujhelyi | 0ca7111 | 2012-10-14 19:07:16 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <linux/phy.h> |
| 11 | #include <linux/module.h> |
| 12 | #include <linux/string.h> |
| 13 | #include <linux/netdevice.h> |
| 14 | #include <linux/etherdevice.h> |
Michael Walle | 6cb7576 | 2020-05-13 22:38:07 +0200 | [diff] [blame] | 15 | #include <linux/ethtool_netlink.h> |
Daniel Mack | 13a56b4 | 2014-06-18 11:01:43 +0200 | [diff] [blame] | 16 | #include <linux/of_gpio.h> |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 17 | #include <linux/bitfield.h> |
Daniel Mack | 13a56b4 | 2014-06-18 11:01:43 +0200 | [diff] [blame] | 18 | #include <linux/gpio/consumer.h> |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 19 | #include <linux/regulator/of_regulator.h> |
| 20 | #include <linux/regulator/driver.h> |
| 21 | #include <linux/regulator/consumer.h> |
| 22 | #include <dt-bindings/net/qca-ar803x.h> |
Matus Ujhelyi | 0ca7111 | 2012-10-14 19:07:16 +0000 | [diff] [blame] | 23 | |
Oleksij Rempel | 7dce80c | 2020-07-19 10:05:30 +0200 | [diff] [blame] | 24 | #define AT803X_SPECIFIC_FUNCTION_CONTROL 0x10 |
| 25 | #define AT803X_SFC_ASSERT_CRS BIT(11) |
| 26 | #define AT803X_SFC_FORCE_LINK BIT(10) |
| 27 | #define AT803X_SFC_MDI_CROSSOVER_MODE_M GENMASK(6, 5) |
| 28 | #define AT803X_SFC_AUTOMATIC_CROSSOVER 0x3 |
| 29 | #define AT803X_SFC_MANUAL_MDIX 0x1 |
| 30 | #define AT803X_SFC_MANUAL_MDI 0x0 |
| 31 | #define AT803X_SFC_SQE_TEST BIT(2) |
| 32 | #define AT803X_SFC_POLARITY_REVERSAL BIT(1) |
| 33 | #define AT803X_SFC_DISABLE_JABBER BIT(0) |
| 34 | |
Russell King | 06d5f34 | 2019-10-04 17:06:14 +0100 | [diff] [blame] | 35 | #define AT803X_SPECIFIC_STATUS 0x11 |
Luo Jie | 9540cdd | 2021-10-24 16:27:28 +0800 | [diff] [blame] | 36 | #define AT803X_SS_SPEED_MASK GENMASK(15, 14) |
| 37 | #define AT803X_SS_SPEED_1000 2 |
| 38 | #define AT803X_SS_SPEED_100 1 |
| 39 | #define AT803X_SS_SPEED_10 0 |
Russell King | 06d5f34 | 2019-10-04 17:06:14 +0100 | [diff] [blame] | 40 | #define AT803X_SS_DUPLEX BIT(13) |
| 41 | #define AT803X_SS_SPEED_DUPLEX_RESOLVED BIT(11) |
| 42 | #define AT803X_SS_MDIX BIT(6) |
| 43 | |
Luo Jie | 79c7bc0 | 2021-10-24 16:27:30 +0800 | [diff] [blame^] | 44 | #define QCA808X_SS_SPEED_MASK GENMASK(9, 7) |
| 45 | #define QCA808X_SS_SPEED_2500 4 |
| 46 | |
Matus Ujhelyi | 0ca7111 | 2012-10-14 19:07:16 +0000 | [diff] [blame] | 47 | #define AT803X_INTR_ENABLE 0x12 |
Martin Blumenstingl | e6e4a55 | 2016-01-15 01:55:24 +0100 | [diff] [blame] | 48 | #define AT803X_INTR_ENABLE_AUTONEG_ERR BIT(15) |
| 49 | #define AT803X_INTR_ENABLE_SPEED_CHANGED BIT(14) |
| 50 | #define AT803X_INTR_ENABLE_DUPLEX_CHANGED BIT(13) |
| 51 | #define AT803X_INTR_ENABLE_PAGE_RECEIVED BIT(12) |
| 52 | #define AT803X_INTR_ENABLE_LINK_FAIL BIT(11) |
| 53 | #define AT803X_INTR_ENABLE_LINK_SUCCESS BIT(10) |
| 54 | #define AT803X_INTR_ENABLE_WIRESPEED_DOWNGRADE BIT(5) |
| 55 | #define AT803X_INTR_ENABLE_POLARITY_CHANGED BIT(1) |
| 56 | #define AT803X_INTR_ENABLE_WOL BIT(0) |
| 57 | |
Matus Ujhelyi | 0ca7111 | 2012-10-14 19:07:16 +0000 | [diff] [blame] | 58 | #define AT803X_INTR_STATUS 0x13 |
Martin Blumenstingl | a46bd63 | 2016-01-15 01:55:23 +0100 | [diff] [blame] | 59 | |
Daniel Mack | 13a56b4 | 2014-06-18 11:01:43 +0200 | [diff] [blame] | 60 | #define AT803X_SMART_SPEED 0x14 |
Michael Walle | cde0f4f | 2020-04-28 23:15:02 +0200 | [diff] [blame] | 61 | #define AT803X_SMART_SPEED_ENABLE BIT(5) |
| 62 | #define AT803X_SMART_SPEED_RETRY_LIMIT_MASK GENMASK(4, 2) |
| 63 | #define AT803X_SMART_SPEED_BYPASS_TIMER BIT(1) |
Michael Walle | 6cb7576 | 2020-05-13 22:38:07 +0200 | [diff] [blame] | 64 | #define AT803X_CDT 0x16 |
| 65 | #define AT803X_CDT_MDI_PAIR_MASK GENMASK(9, 8) |
| 66 | #define AT803X_CDT_ENABLE_TEST BIT(0) |
| 67 | #define AT803X_CDT_STATUS 0x1c |
| 68 | #define AT803X_CDT_STATUS_STAT_NORMAL 0 |
| 69 | #define AT803X_CDT_STATUS_STAT_SHORT 1 |
| 70 | #define AT803X_CDT_STATUS_STAT_OPEN 2 |
| 71 | #define AT803X_CDT_STATUS_STAT_FAIL 3 |
| 72 | #define AT803X_CDT_STATUS_STAT_MASK GENMASK(9, 8) |
| 73 | #define AT803X_CDT_STATUS_DELTA_TIME_MASK GENMASK(7, 0) |
Daniel Mack | 13a56b4 | 2014-06-18 11:01:43 +0200 | [diff] [blame] | 74 | #define AT803X_LED_CONTROL 0x18 |
Martin Blumenstingl | a46bd63 | 2016-01-15 01:55:23 +0100 | [diff] [blame] | 75 | |
Luo Jie | 7beecaf | 2021-10-24 16:27:27 +0800 | [diff] [blame] | 76 | #define AT803X_PHY_MMD3_WOL_CTRL 0x8012 |
| 77 | #define AT803X_WOL_EN BIT(5) |
Matus Ujhelyi | 0ca7111 | 2012-10-14 19:07:16 +0000 | [diff] [blame] | 78 | #define AT803X_LOC_MAC_ADDR_0_15_OFFSET 0x804C |
| 79 | #define AT803X_LOC_MAC_ADDR_16_31_OFFSET 0x804B |
| 80 | #define AT803X_LOC_MAC_ADDR_32_47_OFFSET 0x804A |
Zefir Kurtisi | f62265b | 2016-10-24 12:40:54 +0200 | [diff] [blame] | 81 | #define AT803X_REG_CHIP_CONFIG 0x1f |
| 82 | #define AT803X_BT_BX_REG_SEL 0x8000 |
Martin Blumenstingl | a46bd63 | 2016-01-15 01:55:23 +0100 | [diff] [blame] | 83 | |
Mugunthan V N | 1ca6d1b | 2013-06-03 20:10:06 +0000 | [diff] [blame] | 84 | #define AT803X_DEBUG_ADDR 0x1D |
| 85 | #define AT803X_DEBUG_DATA 0x1E |
Martin Blumenstingl | a46bd63 | 2016-01-15 01:55:23 +0100 | [diff] [blame] | 86 | |
Zefir Kurtisi | f62265b | 2016-10-24 12:40:54 +0200 | [diff] [blame] | 87 | #define AT803X_MODE_CFG_MASK 0x0F |
| 88 | #define AT803X_MODE_CFG_SGMII 0x01 |
| 89 | |
Ansuel Smith | d0e13fd | 2021-05-14 23:00:14 +0200 | [diff] [blame] | 90 | #define AT803X_PSSR 0x11 /*PHY-Specific Status Register*/ |
| 91 | #define AT803X_PSSR_MR_AN_COMPLETE 0x0200 |
Zefir Kurtisi | f62265b | 2016-10-24 12:40:54 +0200 | [diff] [blame] | 92 | |
Ansuel Smith | 6799955 | 2021-10-10 00:46:18 +0200 | [diff] [blame] | 93 | #define AT803X_DEBUG_ANALOG_TEST_CTRL 0x00 |
Ansuel Smith | 1ca8311 | 2021-10-10 00:46:16 +0200 | [diff] [blame] | 94 | #define QCA8327_DEBUG_MANU_CTRL_EN BIT(2) |
| 95 | #define QCA8337_DEBUG_MANU_CTRL_EN GENMASK(3, 2) |
Martin Blumenstingl | 2e5f9f2 | 2016-01-15 01:55:22 +0100 | [diff] [blame] | 96 | #define AT803X_DEBUG_RX_CLK_DLY_EN BIT(15) |
Martin Blumenstingl | a46bd63 | 2016-01-15 01:55:23 +0100 | [diff] [blame] | 97 | |
Ansuel Smith | 6799955 | 2021-10-10 00:46:18 +0200 | [diff] [blame] | 98 | #define AT803X_DEBUG_SYSTEM_CTRL_MODE 0x05 |
Martin Blumenstingl | 2e5f9f2 | 2016-01-15 01:55:22 +0100 | [diff] [blame] | 99 | #define AT803X_DEBUG_TX_CLK_DLY_EN BIT(8) |
Matus Ujhelyi | 0ca7111 | 2012-10-14 19:07:16 +0000 | [diff] [blame] | 100 | |
Ansuel Smith | ba3c01e | 2021-10-10 00:46:15 +0200 | [diff] [blame] | 101 | #define AT803X_DEBUG_REG_HIB_CTRL 0x0b |
| 102 | #define AT803X_DEBUG_HIB_CTRL_SEL_RST_80U BIT(10) |
| 103 | #define AT803X_DEBUG_HIB_CTRL_EN_ANY_CHANGE BIT(13) |
| 104 | |
Ansuel Smith | 272833b | 2021-05-14 23:00:15 +0200 | [diff] [blame] | 105 | #define AT803X_DEBUG_REG_3C 0x3C |
| 106 | |
Ansuel Smith | 6799955 | 2021-10-10 00:46:18 +0200 | [diff] [blame] | 107 | #define AT803X_DEBUG_REG_GREEN 0x3D |
Ansuel Smith | ba3c01e | 2021-10-10 00:46:15 +0200 | [diff] [blame] | 108 | #define AT803X_DEBUG_GATE_CLK_IN1000 BIT(6) |
Ansuel Smith | 272833b | 2021-05-14 23:00:15 +0200 | [diff] [blame] | 109 | |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 110 | #define AT803X_DEBUG_REG_1F 0x1F |
| 111 | #define AT803X_DEBUG_PLL_ON BIT(2) |
| 112 | #define AT803X_DEBUG_RGMII_1V8 BIT(3) |
| 113 | |
Ansuel Smith | 272833b | 2021-05-14 23:00:15 +0200 | [diff] [blame] | 114 | #define MDIO_AZ_DEBUG 0x800D |
| 115 | |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 116 | /* AT803x supports either the XTAL input pad, an internal PLL or the |
| 117 | * DSP as clock reference for the clock output pad. The XTAL reference |
| 118 | * is only used for 25 MHz output, all other frequencies need the PLL. |
| 119 | * The DSP as a clock reference is used in synchronous ethernet |
| 120 | * applications. |
| 121 | * |
| 122 | * By default the PLL is only enabled if there is a link. Otherwise |
| 123 | * the PHY will go into low power state and disabled the PLL. You can |
| 124 | * set the PLL_ON bit (see debug register 0x1f) to keep the PLL always |
| 125 | * enabled. |
| 126 | */ |
| 127 | #define AT803X_MMD7_CLK25M 0x8016 |
| 128 | #define AT803X_CLK_OUT_MASK GENMASK(4, 2) |
| 129 | #define AT803X_CLK_OUT_25MHZ_XTAL 0 |
| 130 | #define AT803X_CLK_OUT_25MHZ_DSP 1 |
| 131 | #define AT803X_CLK_OUT_50MHZ_PLL 2 |
| 132 | #define AT803X_CLK_OUT_50MHZ_DSP 3 |
| 133 | #define AT803X_CLK_OUT_62_5MHZ_PLL 4 |
| 134 | #define AT803X_CLK_OUT_62_5MHZ_DSP 5 |
| 135 | #define AT803X_CLK_OUT_125MHZ_PLL 6 |
| 136 | #define AT803X_CLK_OUT_125MHZ_DSP 7 |
| 137 | |
Michael Walle | 428061f | 2019-11-06 23:36:15 +0100 | [diff] [blame] | 138 | /* The AR8035 has another mask which is compatible with the AR8031/AR8033 mask |
| 139 | * but doesn't support choosing between XTAL/PLL and DSP. |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 140 | */ |
| 141 | #define AT8035_CLK_OUT_MASK GENMASK(4, 3) |
| 142 | |
| 143 | #define AT803X_CLK_OUT_STRENGTH_MASK GENMASK(8, 7) |
| 144 | #define AT803X_CLK_OUT_STRENGTH_FULL 0 |
| 145 | #define AT803X_CLK_OUT_STRENGTH_HALF 1 |
| 146 | #define AT803X_CLK_OUT_STRENGTH_QUARTER 2 |
| 147 | |
Ansuel Smith | d0e13fd | 2021-05-14 23:00:14 +0200 | [diff] [blame] | 148 | #define AT803X_DEFAULT_DOWNSHIFT 5 |
| 149 | #define AT803X_MIN_DOWNSHIFT 2 |
| 150 | #define AT803X_MAX_DOWNSHIFT 9 |
Michael Walle | cde0f4f | 2020-04-28 23:15:02 +0200 | [diff] [blame] | 151 | |
Russell King | 390b4ca | 2021-01-14 10:45:49 +0000 | [diff] [blame] | 152 | #define AT803X_MMD3_SMARTEEE_CTL1 0x805b |
| 153 | #define AT803X_MMD3_SMARTEEE_CTL2 0x805c |
| 154 | #define AT803X_MMD3_SMARTEEE_CTL3 0x805d |
| 155 | #define AT803X_MMD3_SMARTEEE_CTL3_LPI_EN BIT(8) |
| 156 | |
Ansuel Smith | d0e13fd | 2021-05-14 23:00:14 +0200 | [diff] [blame] | 157 | #define ATH9331_PHY_ID 0x004dd041 |
| 158 | #define ATH8030_PHY_ID 0x004dd076 |
| 159 | #define ATH8031_PHY_ID 0x004dd074 |
| 160 | #define ATH8032_PHY_ID 0x004dd023 |
| 161 | #define ATH8035_PHY_ID 0x004dd072 |
Michael Walle | 0465d8f | 2020-05-22 11:53:31 +0200 | [diff] [blame] | 162 | #define AT8030_PHY_ID_MASK 0xffffffef |
Daniel Mack | bd8ca17 | 2014-06-18 11:01:42 +0200 | [diff] [blame] | 163 | |
Luo Jie | daf6173 | 2021-10-24 16:27:29 +0800 | [diff] [blame] | 164 | #define QCA8081_PHY_ID 0x004dd101 |
| 165 | |
Ansuel Smith | b4df02b | 2021-09-19 18:28:15 +0200 | [diff] [blame] | 166 | #define QCA8327_A_PHY_ID 0x004dd033 |
| 167 | #define QCA8327_B_PHY_ID 0x004dd034 |
Ansuel Smith | 272833b | 2021-05-14 23:00:15 +0200 | [diff] [blame] | 168 | #define QCA8337_PHY_ID 0x004dd036 |
David Bauer | fada2ce | 2021-10-06 00:54:01 +0200 | [diff] [blame] | 169 | #define QCA9561_PHY_ID 0x004dd042 |
Ansuel Smith | 272833b | 2021-05-14 23:00:15 +0200 | [diff] [blame] | 170 | #define QCA8K_PHY_ID_MASK 0xffffffff |
| 171 | |
| 172 | #define QCA8K_DEVFLAGS_REVISION_MASK GENMASK(2, 0) |
| 173 | |
Ansuel Smith | d0e13fd | 2021-05-14 23:00:14 +0200 | [diff] [blame] | 174 | #define AT803X_PAGE_FIBER 0 |
| 175 | #define AT803X_PAGE_COPPER 1 |
| 176 | |
| 177 | /* don't turn off internal PLL */ |
| 178 | #define AT803X_KEEP_PLL_ENABLED BIT(0) |
| 179 | #define AT803X_DISABLE_SMARTEEE BIT(1) |
David Bauer | c329e5a | 2021-04-15 03:26:50 +0200 | [diff] [blame] | 180 | |
Luo Jie | daf6173 | 2021-10-24 16:27:29 +0800 | [diff] [blame] | 181 | MODULE_DESCRIPTION("Qualcomm Atheros AR803x and QCA808X PHY driver"); |
Matus Ujhelyi | 0ca7111 | 2012-10-14 19:07:16 +0000 | [diff] [blame] | 182 | MODULE_AUTHOR("Matus Ujhelyi"); |
| 183 | MODULE_LICENSE("GPL"); |
| 184 | |
Ansuel Smith | 272833b | 2021-05-14 23:00:15 +0200 | [diff] [blame] | 185 | enum stat_access_type { |
| 186 | PHY, |
| 187 | MMD |
| 188 | }; |
| 189 | |
| 190 | struct at803x_hw_stat { |
| 191 | const char *string; |
| 192 | u8 reg; |
| 193 | u32 mask; |
| 194 | enum stat_access_type access_type; |
| 195 | }; |
| 196 | |
| 197 | static struct at803x_hw_stat at803x_hw_stats[] = { |
| 198 | { "phy_idle_errors", 0xa, GENMASK(7, 0), PHY}, |
| 199 | { "phy_receive_errors", 0x15, GENMASK(15, 0), PHY}, |
| 200 | { "eee_wake_errors", 0x16, GENMASK(15, 0), MMD}, |
| 201 | }; |
| 202 | |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 203 | struct at803x_priv { |
| 204 | int flags; |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 205 | u16 clk_25m_reg; |
| 206 | u16 clk_25m_mask; |
Russell King | 390b4ca | 2021-01-14 10:45:49 +0000 | [diff] [blame] | 207 | u8 smarteee_lpi_tw_1g; |
| 208 | u8 smarteee_lpi_tw_100m; |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 209 | struct regulator_dev *vddio_rdev; |
| 210 | struct regulator_dev *vddh_rdev; |
| 211 | struct regulator *vddio; |
Ansuel Smith | 272833b | 2021-05-14 23:00:15 +0200 | [diff] [blame] | 212 | u64 stats[ARRAY_SIZE(at803x_hw_stats)]; |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 213 | }; |
| 214 | |
Daniel Mack | 13a56b4 | 2014-06-18 11:01:43 +0200 | [diff] [blame] | 215 | struct at803x_context { |
| 216 | u16 bmcr; |
| 217 | u16 advertise; |
| 218 | u16 control1000; |
| 219 | u16 int_enable; |
| 220 | u16 smart_speed; |
| 221 | u16 led_control; |
| 222 | }; |
| 223 | |
Ansuel Smith | 272833b | 2021-05-14 23:00:15 +0200 | [diff] [blame] | 224 | static int at803x_debug_reg_write(struct phy_device *phydev, u16 reg, u16 data) |
| 225 | { |
| 226 | int ret; |
| 227 | |
| 228 | ret = phy_write(phydev, AT803X_DEBUG_ADDR, reg); |
| 229 | if (ret < 0) |
| 230 | return ret; |
| 231 | |
| 232 | return phy_write(phydev, AT803X_DEBUG_DATA, data); |
| 233 | } |
| 234 | |
Martin Blumenstingl | 2e5f9f2 | 2016-01-15 01:55:22 +0100 | [diff] [blame] | 235 | static int at803x_debug_reg_read(struct phy_device *phydev, u16 reg) |
| 236 | { |
| 237 | int ret; |
| 238 | |
| 239 | ret = phy_write(phydev, AT803X_DEBUG_ADDR, reg); |
| 240 | if (ret < 0) |
| 241 | return ret; |
| 242 | |
| 243 | return phy_read(phydev, AT803X_DEBUG_DATA); |
| 244 | } |
| 245 | |
| 246 | static int at803x_debug_reg_mask(struct phy_device *phydev, u16 reg, |
| 247 | u16 clear, u16 set) |
| 248 | { |
| 249 | u16 val; |
| 250 | int ret; |
| 251 | |
| 252 | ret = at803x_debug_reg_read(phydev, reg); |
| 253 | if (ret < 0) |
| 254 | return ret; |
| 255 | |
| 256 | val = ret & 0xffff; |
| 257 | val &= ~clear; |
| 258 | val |= set; |
| 259 | |
| 260 | return phy_write(phydev, AT803X_DEBUG_DATA, val); |
| 261 | } |
| 262 | |
David Bauer | c329e5a | 2021-04-15 03:26:50 +0200 | [diff] [blame] | 263 | static int at803x_write_page(struct phy_device *phydev, int page) |
| 264 | { |
| 265 | int mask; |
| 266 | int set; |
| 267 | |
| 268 | if (page == AT803X_PAGE_COPPER) { |
| 269 | set = AT803X_BT_BX_REG_SEL; |
| 270 | mask = 0; |
| 271 | } else { |
| 272 | set = 0; |
| 273 | mask = AT803X_BT_BX_REG_SEL; |
| 274 | } |
| 275 | |
| 276 | return __phy_modify(phydev, AT803X_REG_CHIP_CONFIG, mask, set); |
| 277 | } |
| 278 | |
| 279 | static int at803x_read_page(struct phy_device *phydev) |
| 280 | { |
| 281 | int ccr = __phy_read(phydev, AT803X_REG_CHIP_CONFIG); |
| 282 | |
| 283 | if (ccr < 0) |
| 284 | return ccr; |
| 285 | |
| 286 | if (ccr & AT803X_BT_BX_REG_SEL) |
| 287 | return AT803X_PAGE_COPPER; |
| 288 | |
| 289 | return AT803X_PAGE_FIBER; |
| 290 | } |
| 291 | |
Vinod Koul | 6d4cd04 | 2019-02-21 15:53:15 +0530 | [diff] [blame] | 292 | static int at803x_enable_rx_delay(struct phy_device *phydev) |
| 293 | { |
Ansuel Smith | 6799955 | 2021-10-10 00:46:18 +0200 | [diff] [blame] | 294 | return at803x_debug_reg_mask(phydev, AT803X_DEBUG_ANALOG_TEST_CTRL, 0, |
Vinod Koul | 6d4cd04 | 2019-02-21 15:53:15 +0530 | [diff] [blame] | 295 | AT803X_DEBUG_RX_CLK_DLY_EN); |
| 296 | } |
| 297 | |
| 298 | static int at803x_enable_tx_delay(struct phy_device *phydev) |
| 299 | { |
Ansuel Smith | 6799955 | 2021-10-10 00:46:18 +0200 | [diff] [blame] | 300 | return at803x_debug_reg_mask(phydev, AT803X_DEBUG_SYSTEM_CTRL_MODE, 0, |
Vinod Koul | 6d4cd04 | 2019-02-21 15:53:15 +0530 | [diff] [blame] | 301 | AT803X_DEBUG_TX_CLK_DLY_EN); |
| 302 | } |
| 303 | |
Vinod Koul | 43f2ebd | 2019-02-21 15:53:14 +0530 | [diff] [blame] | 304 | static int at803x_disable_rx_delay(struct phy_device *phydev) |
Martin Blumenstingl | 2e5f9f2 | 2016-01-15 01:55:22 +0100 | [diff] [blame] | 305 | { |
Ansuel Smith | 6799955 | 2021-10-10 00:46:18 +0200 | [diff] [blame] | 306 | return at803x_debug_reg_mask(phydev, AT803X_DEBUG_ANALOG_TEST_CTRL, |
Vinod Koul | cd28d1d | 2019-01-21 14:43:17 +0530 | [diff] [blame] | 307 | AT803X_DEBUG_RX_CLK_DLY_EN, 0); |
Martin Blumenstingl | 2e5f9f2 | 2016-01-15 01:55:22 +0100 | [diff] [blame] | 308 | } |
| 309 | |
Vinod Koul | 43f2ebd | 2019-02-21 15:53:14 +0530 | [diff] [blame] | 310 | static int at803x_disable_tx_delay(struct phy_device *phydev) |
Martin Blumenstingl | 2e5f9f2 | 2016-01-15 01:55:22 +0100 | [diff] [blame] | 311 | { |
Ansuel Smith | 6799955 | 2021-10-10 00:46:18 +0200 | [diff] [blame] | 312 | return at803x_debug_reg_mask(phydev, AT803X_DEBUG_SYSTEM_CTRL_MODE, |
Vinod Koul | cd28d1d | 2019-01-21 14:43:17 +0530 | [diff] [blame] | 313 | AT803X_DEBUG_TX_CLK_DLY_EN, 0); |
Martin Blumenstingl | 2e5f9f2 | 2016-01-15 01:55:22 +0100 | [diff] [blame] | 314 | } |
| 315 | |
Daniel Mack | 13a56b4 | 2014-06-18 11:01:43 +0200 | [diff] [blame] | 316 | /* save relevant PHY registers to private copy */ |
| 317 | static void at803x_context_save(struct phy_device *phydev, |
| 318 | struct at803x_context *context) |
| 319 | { |
| 320 | context->bmcr = phy_read(phydev, MII_BMCR); |
| 321 | context->advertise = phy_read(phydev, MII_ADVERTISE); |
| 322 | context->control1000 = phy_read(phydev, MII_CTRL1000); |
| 323 | context->int_enable = phy_read(phydev, AT803X_INTR_ENABLE); |
| 324 | context->smart_speed = phy_read(phydev, AT803X_SMART_SPEED); |
| 325 | context->led_control = phy_read(phydev, AT803X_LED_CONTROL); |
| 326 | } |
| 327 | |
| 328 | /* restore relevant PHY registers from private copy */ |
| 329 | static void at803x_context_restore(struct phy_device *phydev, |
| 330 | const struct at803x_context *context) |
| 331 | { |
| 332 | phy_write(phydev, MII_BMCR, context->bmcr); |
| 333 | phy_write(phydev, MII_ADVERTISE, context->advertise); |
| 334 | phy_write(phydev, MII_CTRL1000, context->control1000); |
| 335 | phy_write(phydev, AT803X_INTR_ENABLE, context->int_enable); |
| 336 | phy_write(phydev, AT803X_SMART_SPEED, context->smart_speed); |
| 337 | phy_write(phydev, AT803X_LED_CONTROL, context->led_control); |
| 338 | } |
| 339 | |
Mugunthan V N | ea13c9e | 2013-06-03 20:10:05 +0000 | [diff] [blame] | 340 | static int at803x_set_wol(struct phy_device *phydev, |
| 341 | struct ethtool_wolinfo *wol) |
Matus Ujhelyi | 0ca7111 | 2012-10-14 19:07:16 +0000 | [diff] [blame] | 342 | { |
| 343 | struct net_device *ndev = phydev->attached_dev; |
| 344 | const u8 *mac; |
Luo Jie | 7beecaf | 2021-10-24 16:27:27 +0800 | [diff] [blame] | 345 | int ret, irq_enabled; |
Luo Jie | c0f0b56 | 2021-10-24 16:27:25 +0800 | [diff] [blame] | 346 | unsigned int i; |
| 347 | const unsigned int offsets[] = { |
Matus Ujhelyi | 0ca7111 | 2012-10-14 19:07:16 +0000 | [diff] [blame] | 348 | AT803X_LOC_MAC_ADDR_32_47_OFFSET, |
| 349 | AT803X_LOC_MAC_ADDR_16_31_OFFSET, |
| 350 | AT803X_LOC_MAC_ADDR_0_15_OFFSET, |
| 351 | }; |
| 352 | |
| 353 | if (!ndev) |
Mugunthan V N | ea13c9e | 2013-06-03 20:10:05 +0000 | [diff] [blame] | 354 | return -ENODEV; |
Matus Ujhelyi | 0ca7111 | 2012-10-14 19:07:16 +0000 | [diff] [blame] | 355 | |
Mugunthan V N | ea13c9e | 2013-06-03 20:10:05 +0000 | [diff] [blame] | 356 | if (wol->wolopts & WAKE_MAGIC) { |
| 357 | mac = (const u8 *) ndev->dev_addr; |
Matus Ujhelyi | 0ca7111 | 2012-10-14 19:07:16 +0000 | [diff] [blame] | 358 | |
Mugunthan V N | ea13c9e | 2013-06-03 20:10:05 +0000 | [diff] [blame] | 359 | if (!is_valid_ether_addr(mac)) |
Dan Murphy | fc75568 | 2017-10-10 12:42:56 -0500 | [diff] [blame] | 360 | return -EINVAL; |
Matus Ujhelyi | 0ca7111 | 2012-10-14 19:07:16 +0000 | [diff] [blame] | 361 | |
Carlo Caione | 0e02139 | 2019-01-25 12:35:10 +0000 | [diff] [blame] | 362 | for (i = 0; i < 3; i++) |
Luo Jie | c0f0b56 | 2021-10-24 16:27:25 +0800 | [diff] [blame] | 363 | phy_write_mmd(phydev, MDIO_MMD_PCS, offsets[i], |
Carlo Caione | 0e02139 | 2019-01-25 12:35:10 +0000 | [diff] [blame] | 364 | mac[(i * 2) + 1] | (mac[(i * 2)] << 8)); |
Mugunthan V N | ea13c9e | 2013-06-03 20:10:05 +0000 | [diff] [blame] | 365 | |
Luo Jie | 7beecaf | 2021-10-24 16:27:27 +0800 | [diff] [blame] | 366 | /* Enable WOL function */ |
| 367 | ret = phy_modify_mmd(phydev, MDIO_MMD_PCS, AT803X_PHY_MMD3_WOL_CTRL, |
| 368 | 0, AT803X_WOL_EN); |
| 369 | if (ret) |
| 370 | return ret; |
| 371 | /* Enable WOL interrupt */ |
Luo Jie | 2d4284e | 2021-10-24 16:27:26 +0800 | [diff] [blame] | 372 | ret = phy_modify(phydev, AT803X_INTR_ENABLE, 0, AT803X_INTR_ENABLE_WOL); |
Mugunthan V N | ea13c9e | 2013-06-03 20:10:05 +0000 | [diff] [blame] | 373 | if (ret) |
| 374 | return ret; |
Mugunthan V N | ea13c9e | 2013-06-03 20:10:05 +0000 | [diff] [blame] | 375 | } else { |
Luo Jie | 7beecaf | 2021-10-24 16:27:27 +0800 | [diff] [blame] | 376 | /* Disable WoL function */ |
| 377 | ret = phy_modify_mmd(phydev, MDIO_MMD_PCS, AT803X_PHY_MMD3_WOL_CTRL, |
| 378 | AT803X_WOL_EN, 0); |
| 379 | if (ret) |
| 380 | return ret; |
| 381 | /* Disable WOL interrupt */ |
Luo Jie | 2d4284e | 2021-10-24 16:27:26 +0800 | [diff] [blame] | 382 | ret = phy_modify(phydev, AT803X_INTR_ENABLE, AT803X_INTR_ENABLE_WOL, 0); |
Mugunthan V N | ea13c9e | 2013-06-03 20:10:05 +0000 | [diff] [blame] | 383 | if (ret) |
| 384 | return ret; |
Matus Ujhelyi | 0ca7111 | 2012-10-14 19:07:16 +0000 | [diff] [blame] | 385 | } |
Mugunthan V N | ea13c9e | 2013-06-03 20:10:05 +0000 | [diff] [blame] | 386 | |
Luo Jie | 7beecaf | 2021-10-24 16:27:27 +0800 | [diff] [blame] | 387 | /* Clear WOL status */ |
| 388 | ret = phy_read(phydev, AT803X_INTR_STATUS); |
| 389 | if (ret < 0) |
| 390 | return ret; |
| 391 | |
| 392 | /* Check if there are other interrupts except for WOL triggered when PHY is |
| 393 | * in interrupt mode, only the interrupts enabled by AT803X_INTR_ENABLE can |
| 394 | * be passed up to the interrupt PIN. |
| 395 | */ |
| 396 | irq_enabled = phy_read(phydev, AT803X_INTR_ENABLE); |
| 397 | if (irq_enabled < 0) |
| 398 | return irq_enabled; |
| 399 | |
| 400 | irq_enabled &= ~AT803X_INTR_ENABLE_WOL; |
| 401 | if (ret & irq_enabled && !phy_polling_mode(phydev)) |
| 402 | phy_trigger_machine(phydev); |
| 403 | |
| 404 | return 0; |
Mugunthan V N | ea13c9e | 2013-06-03 20:10:05 +0000 | [diff] [blame] | 405 | } |
| 406 | |
| 407 | static void at803x_get_wol(struct phy_device *phydev, |
| 408 | struct ethtool_wolinfo *wol) |
| 409 | { |
| 410 | u32 value; |
| 411 | |
| 412 | wol->supported = WAKE_MAGIC; |
| 413 | wol->wolopts = 0; |
| 414 | |
Luo Jie | 7beecaf | 2021-10-24 16:27:27 +0800 | [diff] [blame] | 415 | value = phy_read_mmd(phydev, MDIO_MMD_PCS, AT803X_PHY_MMD3_WOL_CTRL); |
| 416 | if (value < 0) |
| 417 | return; |
| 418 | |
| 419 | if (value & AT803X_WOL_EN) |
Mugunthan V N | ea13c9e | 2013-06-03 20:10:05 +0000 | [diff] [blame] | 420 | wol->wolopts |= WAKE_MAGIC; |
Matus Ujhelyi | 0ca7111 | 2012-10-14 19:07:16 +0000 | [diff] [blame] | 421 | } |
| 422 | |
Ansuel Smith | 272833b | 2021-05-14 23:00:15 +0200 | [diff] [blame] | 423 | static int at803x_get_sset_count(struct phy_device *phydev) |
| 424 | { |
| 425 | return ARRAY_SIZE(at803x_hw_stats); |
| 426 | } |
| 427 | |
| 428 | static void at803x_get_strings(struct phy_device *phydev, u8 *data) |
| 429 | { |
| 430 | int i; |
| 431 | |
| 432 | for (i = 0; i < ARRAY_SIZE(at803x_hw_stats); i++) { |
| 433 | strscpy(data + i * ETH_GSTRING_LEN, |
| 434 | at803x_hw_stats[i].string, ETH_GSTRING_LEN); |
| 435 | } |
| 436 | } |
| 437 | |
| 438 | static u64 at803x_get_stat(struct phy_device *phydev, int i) |
| 439 | { |
| 440 | struct at803x_hw_stat stat = at803x_hw_stats[i]; |
| 441 | struct at803x_priv *priv = phydev->priv; |
| 442 | int val; |
| 443 | u64 ret; |
| 444 | |
| 445 | if (stat.access_type == MMD) |
| 446 | val = phy_read_mmd(phydev, MDIO_MMD_PCS, stat.reg); |
| 447 | else |
| 448 | val = phy_read(phydev, stat.reg); |
| 449 | |
| 450 | if (val < 0) { |
| 451 | ret = U64_MAX; |
| 452 | } else { |
| 453 | val = val & stat.mask; |
| 454 | priv->stats[i] += val; |
| 455 | ret = priv->stats[i]; |
| 456 | } |
| 457 | |
| 458 | return ret; |
| 459 | } |
| 460 | |
| 461 | static void at803x_get_stats(struct phy_device *phydev, |
| 462 | struct ethtool_stats *stats, u64 *data) |
| 463 | { |
| 464 | int i; |
| 465 | |
| 466 | for (i = 0; i < ARRAY_SIZE(at803x_hw_stats); i++) |
| 467 | data[i] = at803x_get_stat(phydev, i); |
| 468 | } |
| 469 | |
Daniel Mack | 6229ed1 | 2013-09-21 16:53:02 +0200 | [diff] [blame] | 470 | static int at803x_suspend(struct phy_device *phydev) |
| 471 | { |
| 472 | int value; |
| 473 | int wol_enabled; |
| 474 | |
Daniel Mack | 6229ed1 | 2013-09-21 16:53:02 +0200 | [diff] [blame] | 475 | value = phy_read(phydev, AT803X_INTR_ENABLE); |
Martin Blumenstingl | e6e4a55 | 2016-01-15 01:55:24 +0100 | [diff] [blame] | 476 | wol_enabled = value & AT803X_INTR_ENABLE_WOL; |
Daniel Mack | 6229ed1 | 2013-09-21 16:53:02 +0200 | [diff] [blame] | 477 | |
Daniel Mack | 6229ed1 | 2013-09-21 16:53:02 +0200 | [diff] [blame] | 478 | if (wol_enabled) |
Russell King | fea23fb | 2018-01-02 10:58:58 +0000 | [diff] [blame] | 479 | value = BMCR_ISOLATE; |
Daniel Mack | 6229ed1 | 2013-09-21 16:53:02 +0200 | [diff] [blame] | 480 | else |
Russell King | fea23fb | 2018-01-02 10:58:58 +0000 | [diff] [blame] | 481 | value = BMCR_PDOWN; |
Daniel Mack | 6229ed1 | 2013-09-21 16:53:02 +0200 | [diff] [blame] | 482 | |
Russell King | fea23fb | 2018-01-02 10:58:58 +0000 | [diff] [blame] | 483 | phy_modify(phydev, MII_BMCR, 0, value); |
Daniel Mack | 6229ed1 | 2013-09-21 16:53:02 +0200 | [diff] [blame] | 484 | |
| 485 | return 0; |
| 486 | } |
| 487 | |
| 488 | static int at803x_resume(struct phy_device *phydev) |
| 489 | { |
Russell King | f102852 | 2018-01-05 16:07:10 +0000 | [diff] [blame] | 490 | return phy_modify(phydev, MII_BMCR, BMCR_PDOWN | BMCR_ISOLATE, 0); |
Daniel Mack | 6229ed1 | 2013-09-21 16:53:02 +0200 | [diff] [blame] | 491 | } |
| 492 | |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 493 | static int at803x_rgmii_reg_set_voltage_sel(struct regulator_dev *rdev, |
| 494 | unsigned int selector) |
| 495 | { |
| 496 | struct phy_device *phydev = rdev_get_drvdata(rdev); |
| 497 | |
| 498 | if (selector) |
| 499 | return at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_1F, |
| 500 | 0, AT803X_DEBUG_RGMII_1V8); |
| 501 | else |
| 502 | return at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_1F, |
| 503 | AT803X_DEBUG_RGMII_1V8, 0); |
| 504 | } |
| 505 | |
| 506 | static int at803x_rgmii_reg_get_voltage_sel(struct regulator_dev *rdev) |
| 507 | { |
| 508 | struct phy_device *phydev = rdev_get_drvdata(rdev); |
| 509 | int val; |
| 510 | |
| 511 | val = at803x_debug_reg_read(phydev, AT803X_DEBUG_REG_1F); |
| 512 | if (val < 0) |
| 513 | return val; |
| 514 | |
| 515 | return (val & AT803X_DEBUG_RGMII_1V8) ? 1 : 0; |
| 516 | } |
| 517 | |
Rikard Falkeborn | 3faaf53 | 2020-08-27 00:56:06 +0200 | [diff] [blame] | 518 | static const struct regulator_ops vddio_regulator_ops = { |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 519 | .list_voltage = regulator_list_voltage_table, |
| 520 | .set_voltage_sel = at803x_rgmii_reg_set_voltage_sel, |
| 521 | .get_voltage_sel = at803x_rgmii_reg_get_voltage_sel, |
| 522 | }; |
| 523 | |
| 524 | static const unsigned int vddio_voltage_table[] = { |
| 525 | 1500000, |
| 526 | 1800000, |
| 527 | }; |
| 528 | |
| 529 | static const struct regulator_desc vddio_desc = { |
| 530 | .name = "vddio", |
| 531 | .of_match = of_match_ptr("vddio-regulator"), |
| 532 | .n_voltages = ARRAY_SIZE(vddio_voltage_table), |
| 533 | .volt_table = vddio_voltage_table, |
| 534 | .ops = &vddio_regulator_ops, |
| 535 | .type = REGULATOR_VOLTAGE, |
| 536 | .owner = THIS_MODULE, |
| 537 | }; |
| 538 | |
Rikard Falkeborn | 3faaf53 | 2020-08-27 00:56:06 +0200 | [diff] [blame] | 539 | static const struct regulator_ops vddh_regulator_ops = { |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 540 | }; |
| 541 | |
| 542 | static const struct regulator_desc vddh_desc = { |
| 543 | .name = "vddh", |
| 544 | .of_match = of_match_ptr("vddh-regulator"), |
| 545 | .n_voltages = 1, |
| 546 | .fixed_uV = 2500000, |
| 547 | .ops = &vddh_regulator_ops, |
| 548 | .type = REGULATOR_VOLTAGE, |
| 549 | .owner = THIS_MODULE, |
| 550 | }; |
| 551 | |
| 552 | static int at8031_register_regulators(struct phy_device *phydev) |
| 553 | { |
| 554 | struct at803x_priv *priv = phydev->priv; |
| 555 | struct device *dev = &phydev->mdio.dev; |
| 556 | struct regulator_config config = { }; |
| 557 | |
| 558 | config.dev = dev; |
| 559 | config.driver_data = phydev; |
| 560 | |
| 561 | priv->vddio_rdev = devm_regulator_register(dev, &vddio_desc, &config); |
| 562 | if (IS_ERR(priv->vddio_rdev)) { |
| 563 | phydev_err(phydev, "failed to register VDDIO regulator\n"); |
| 564 | return PTR_ERR(priv->vddio_rdev); |
| 565 | } |
| 566 | |
| 567 | priv->vddh_rdev = devm_regulator_register(dev, &vddh_desc, &config); |
| 568 | if (IS_ERR(priv->vddh_rdev)) { |
| 569 | phydev_err(phydev, "failed to register VDDH regulator\n"); |
| 570 | return PTR_ERR(priv->vddh_rdev); |
| 571 | } |
| 572 | |
| 573 | return 0; |
| 574 | } |
| 575 | |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 576 | static int at803x_parse_dt(struct phy_device *phydev) |
| 577 | { |
| 578 | struct device_node *node = phydev->mdio.dev.of_node; |
| 579 | struct at803x_priv *priv = phydev->priv; |
Russell King | 390b4ca | 2021-01-14 10:45:49 +0000 | [diff] [blame] | 580 | u32 freq, strength, tw; |
Andrew Lunn | 3f2edd3 | 2020-07-07 03:49:33 +0200 | [diff] [blame] | 581 | unsigned int sel; |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 582 | int ret; |
| 583 | |
| 584 | if (!IS_ENABLED(CONFIG_OF_MDIO)) |
| 585 | return 0; |
| 586 | |
Russell King | 390b4ca | 2021-01-14 10:45:49 +0000 | [diff] [blame] | 587 | if (of_property_read_bool(node, "qca,disable-smarteee")) |
| 588 | priv->flags |= AT803X_DISABLE_SMARTEEE; |
| 589 | |
| 590 | if (!of_property_read_u32(node, "qca,smarteee-tw-us-1g", &tw)) { |
| 591 | if (!tw || tw > 255) { |
| 592 | phydev_err(phydev, "invalid qca,smarteee-tw-us-1g\n"); |
| 593 | return -EINVAL; |
| 594 | } |
| 595 | priv->smarteee_lpi_tw_1g = tw; |
| 596 | } |
| 597 | |
| 598 | if (!of_property_read_u32(node, "qca,smarteee-tw-us-100m", &tw)) { |
| 599 | if (!tw || tw > 255) { |
| 600 | phydev_err(phydev, "invalid qca,smarteee-tw-us-100m\n"); |
| 601 | return -EINVAL; |
| 602 | } |
| 603 | priv->smarteee_lpi_tw_100m = tw; |
| 604 | } |
| 605 | |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 606 | ret = of_property_read_u32(node, "qca,clk-out-frequency", &freq); |
| 607 | if (!ret) { |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 608 | switch (freq) { |
| 609 | case 25000000: |
| 610 | sel = AT803X_CLK_OUT_25MHZ_XTAL; |
| 611 | break; |
| 612 | case 50000000: |
| 613 | sel = AT803X_CLK_OUT_50MHZ_PLL; |
| 614 | break; |
| 615 | case 62500000: |
| 616 | sel = AT803X_CLK_OUT_62_5MHZ_PLL; |
| 617 | break; |
| 618 | case 125000000: |
| 619 | sel = AT803X_CLK_OUT_125MHZ_PLL; |
| 620 | break; |
| 621 | default: |
| 622 | phydev_err(phydev, "invalid qca,clk-out-frequency\n"); |
| 623 | return -EINVAL; |
| 624 | } |
| 625 | |
Andrew Lunn | 3f2edd3 | 2020-07-07 03:49:33 +0200 | [diff] [blame] | 626 | priv->clk_25m_reg |= FIELD_PREP(AT803X_CLK_OUT_MASK, sel); |
| 627 | priv->clk_25m_mask |= AT803X_CLK_OUT_MASK; |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 628 | |
| 629 | /* Fixup for the AR8030/AR8035. This chip has another mask and |
| 630 | * doesn't support the DSP reference. Eg. the lowest bit of the |
| 631 | * mask. The upper two bits select the same frequencies. Mask |
| 632 | * the lowest bit here. |
| 633 | * |
| 634 | * Warning: |
| 635 | * There was no datasheet for the AR8030 available so this is |
| 636 | * just a guess. But the AR8035 is listed as pin compatible |
| 637 | * to the AR8030 so there might be a good chance it works on |
| 638 | * the AR8030 too. |
| 639 | */ |
Russell King | 8887ca5 | 2021-07-20 14:33:49 +0100 | [diff] [blame] | 640 | if (phydev->drv->phy_id == ATH8030_PHY_ID || |
| 641 | phydev->drv->phy_id == ATH8035_PHY_ID) { |
Oleksij Rempel | b1f4c20 | 2020-04-01 11:57:32 +0200 | [diff] [blame] | 642 | priv->clk_25m_reg &= AT8035_CLK_OUT_MASK; |
| 643 | priv->clk_25m_mask &= AT8035_CLK_OUT_MASK; |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 644 | } |
| 645 | } |
| 646 | |
| 647 | ret = of_property_read_u32(node, "qca,clk-out-strength", &strength); |
| 648 | if (!ret) { |
| 649 | priv->clk_25m_mask |= AT803X_CLK_OUT_STRENGTH_MASK; |
| 650 | switch (strength) { |
| 651 | case AR803X_STRENGTH_FULL: |
| 652 | priv->clk_25m_reg |= AT803X_CLK_OUT_STRENGTH_FULL; |
| 653 | break; |
| 654 | case AR803X_STRENGTH_HALF: |
| 655 | priv->clk_25m_reg |= AT803X_CLK_OUT_STRENGTH_HALF; |
| 656 | break; |
| 657 | case AR803X_STRENGTH_QUARTER: |
| 658 | priv->clk_25m_reg |= AT803X_CLK_OUT_STRENGTH_QUARTER; |
| 659 | break; |
| 660 | default: |
| 661 | phydev_err(phydev, "invalid qca,clk-out-strength\n"); |
| 662 | return -EINVAL; |
| 663 | } |
| 664 | } |
| 665 | |
Michael Walle | 428061f | 2019-11-06 23:36:15 +0100 | [diff] [blame] | 666 | /* Only supported on AR8031/AR8033, the AR8030/AR8035 use strapping |
| 667 | * options. |
| 668 | */ |
Russell King | 8887ca5 | 2021-07-20 14:33:49 +0100 | [diff] [blame] | 669 | if (phydev->drv->phy_id == ATH8031_PHY_ID) { |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 670 | if (of_property_read_bool(node, "qca,keep-pll-enabled")) |
| 671 | priv->flags |= AT803X_KEEP_PLL_ENABLED; |
| 672 | |
| 673 | ret = at8031_register_regulators(phydev); |
| 674 | if (ret < 0) |
| 675 | return ret; |
| 676 | |
| 677 | priv->vddio = devm_regulator_get_optional(&phydev->mdio.dev, |
| 678 | "vddio"); |
| 679 | if (IS_ERR(priv->vddio)) { |
| 680 | phydev_err(phydev, "failed to get VDDIO regulator\n"); |
| 681 | return PTR_ERR(priv->vddio); |
| 682 | } |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 683 | } |
| 684 | |
| 685 | return 0; |
| 686 | } |
| 687 | |
| 688 | static int at803x_probe(struct phy_device *phydev) |
| 689 | { |
| 690 | struct device *dev = &phydev->mdio.dev; |
| 691 | struct at803x_priv *priv; |
David Bauer | c329e5a | 2021-04-15 03:26:50 +0200 | [diff] [blame] | 692 | int ret; |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 693 | |
| 694 | priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL); |
| 695 | if (!priv) |
| 696 | return -ENOMEM; |
| 697 | |
| 698 | phydev->priv = priv; |
| 699 | |
David Bauer | c329e5a | 2021-04-15 03:26:50 +0200 | [diff] [blame] | 700 | ret = at803x_parse_dt(phydev); |
| 701 | if (ret) |
| 702 | return ret; |
| 703 | |
Michael Walle | 8f7e876 | 2021-04-20 12:29:29 +0200 | [diff] [blame] | 704 | if (priv->vddio) { |
| 705 | ret = regulator_enable(priv->vddio); |
| 706 | if (ret < 0) |
| 707 | return ret; |
| 708 | } |
| 709 | |
David Bauer | c329e5a | 2021-04-15 03:26:50 +0200 | [diff] [blame] | 710 | /* Some bootloaders leave the fiber page selected. |
| 711 | * Switch to the copper page, as otherwise we read |
| 712 | * the PHY capabilities from the fiber side. |
| 713 | */ |
Russell King | 8887ca5 | 2021-07-20 14:33:49 +0100 | [diff] [blame] | 714 | if (phydev->drv->phy_id == ATH8031_PHY_ID) { |
Michael Walle | 8f7e876 | 2021-04-20 12:29:29 +0200 | [diff] [blame] | 715 | phy_lock_mdio_bus(phydev); |
| 716 | ret = at803x_write_page(phydev, AT803X_PAGE_COPPER); |
| 717 | phy_unlock_mdio_bus(phydev); |
| 718 | if (ret) |
| 719 | goto err; |
David Bauer | c329e5a | 2021-04-15 03:26:50 +0200 | [diff] [blame] | 720 | } |
| 721 | |
Michael Walle | 8f7e876 | 2021-04-20 12:29:29 +0200 | [diff] [blame] | 722 | return 0; |
| 723 | |
| 724 | err: |
| 725 | if (priv->vddio) |
| 726 | regulator_disable(priv->vddio); |
| 727 | |
David Bauer | c329e5a | 2021-04-15 03:26:50 +0200 | [diff] [blame] | 728 | return ret; |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 729 | } |
| 730 | |
Michael Walle | 2318ca8 | 2020-01-30 18:54:02 +0100 | [diff] [blame] | 731 | static void at803x_remove(struct phy_device *phydev) |
| 732 | { |
| 733 | struct at803x_priv *priv = phydev->priv; |
| 734 | |
| 735 | if (priv->vddio) |
| 736 | regulator_disable(priv->vddio); |
| 737 | } |
| 738 | |
David Bauer | b856150 | 2021-06-27 12:16:07 +0200 | [diff] [blame] | 739 | static int at803x_get_features(struct phy_device *phydev) |
| 740 | { |
| 741 | int err; |
| 742 | |
| 743 | err = genphy_read_abilities(phydev); |
| 744 | if (err) |
| 745 | return err; |
| 746 | |
Vladimir Oltean | f5621a0 | 2021-07-20 20:24:33 +0300 | [diff] [blame] | 747 | if (phydev->drv->phy_id != ATH8031_PHY_ID) |
David Bauer | b856150 | 2021-06-27 12:16:07 +0200 | [diff] [blame] | 748 | return 0; |
| 749 | |
| 750 | /* AR8031/AR8033 have different status registers |
| 751 | * for copper and fiber operation. However, the |
| 752 | * extended status register is the same for both |
| 753 | * operation modes. |
| 754 | * |
| 755 | * As a result of that, ESTATUS_1000_XFULL is set |
| 756 | * to 1 even when operating in copper TP mode. |
| 757 | * |
| 758 | * Remove this mode from the supported link modes, |
| 759 | * as this driver currently only supports copper |
| 760 | * operation. |
| 761 | */ |
| 762 | linkmode_clear_bit(ETHTOOL_LINK_MODE_1000baseX_Full_BIT, |
| 763 | phydev->supported); |
| 764 | return 0; |
| 765 | } |
| 766 | |
Russell King | 390b4ca | 2021-01-14 10:45:49 +0000 | [diff] [blame] | 767 | static int at803x_smarteee_config(struct phy_device *phydev) |
| 768 | { |
| 769 | struct at803x_priv *priv = phydev->priv; |
| 770 | u16 mask = 0, val = 0; |
| 771 | int ret; |
| 772 | |
| 773 | if (priv->flags & AT803X_DISABLE_SMARTEEE) |
| 774 | return phy_modify_mmd(phydev, MDIO_MMD_PCS, |
| 775 | AT803X_MMD3_SMARTEEE_CTL3, |
| 776 | AT803X_MMD3_SMARTEEE_CTL3_LPI_EN, 0); |
| 777 | |
| 778 | if (priv->smarteee_lpi_tw_1g) { |
| 779 | mask |= 0xff00; |
| 780 | val |= priv->smarteee_lpi_tw_1g << 8; |
| 781 | } |
| 782 | if (priv->smarteee_lpi_tw_100m) { |
| 783 | mask |= 0x00ff; |
| 784 | val |= priv->smarteee_lpi_tw_100m; |
| 785 | } |
| 786 | if (!mask) |
| 787 | return 0; |
| 788 | |
| 789 | ret = phy_modify_mmd(phydev, MDIO_MMD_PCS, AT803X_MMD3_SMARTEEE_CTL1, |
| 790 | mask, val); |
| 791 | if (ret) |
| 792 | return ret; |
| 793 | |
| 794 | return phy_modify_mmd(phydev, MDIO_MMD_PCS, AT803X_MMD3_SMARTEEE_CTL3, |
| 795 | AT803X_MMD3_SMARTEEE_CTL3_LPI_EN, |
| 796 | AT803X_MMD3_SMARTEEE_CTL3_LPI_EN); |
| 797 | } |
| 798 | |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 799 | static int at803x_clk_out_config(struct phy_device *phydev) |
| 800 | { |
| 801 | struct at803x_priv *priv = phydev->priv; |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 802 | |
| 803 | if (!priv->clk_25m_mask) |
| 804 | return 0; |
| 805 | |
Russell King | a45c1c1 | 2021-01-10 14:54:36 +0000 | [diff] [blame] | 806 | return phy_modify_mmd(phydev, MDIO_MMD_AN, AT803X_MMD7_CLK25M, |
| 807 | priv->clk_25m_mask, priv->clk_25m_reg); |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 808 | } |
| 809 | |
| 810 | static int at8031_pll_config(struct phy_device *phydev) |
| 811 | { |
| 812 | struct at803x_priv *priv = phydev->priv; |
| 813 | |
| 814 | /* The default after hardware reset is PLL OFF. After a soft reset, the |
| 815 | * values are retained. |
| 816 | */ |
| 817 | if (priv->flags & AT803X_KEEP_PLL_ENABLED) |
| 818 | return at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_1F, |
| 819 | 0, AT803X_DEBUG_PLL_ON); |
| 820 | else |
| 821 | return at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_1F, |
| 822 | AT803X_DEBUG_PLL_ON, 0); |
| 823 | } |
| 824 | |
Matus Ujhelyi | 0ca7111 | 2012-10-14 19:07:16 +0000 | [diff] [blame] | 825 | static int at803x_config_init(struct phy_device *phydev) |
| 826 | { |
Mugunthan V N | 1ca6d1b | 2013-06-03 20:10:06 +0000 | [diff] [blame] | 827 | int ret; |
Matus Ujhelyi | 0ca7111 | 2012-10-14 19:07:16 +0000 | [diff] [blame] | 828 | |
Vinod Koul | 6d4cd04 | 2019-02-21 15:53:15 +0530 | [diff] [blame] | 829 | /* The RX and TX delay default is: |
| 830 | * after HW reset: RX delay enabled and TX delay disabled |
| 831 | * after SW reset: RX delay enabled, while TX delay retains the |
| 832 | * value before reset. |
Vinod Koul | 6d4cd04 | 2019-02-21 15:53:15 +0530 | [diff] [blame] | 833 | */ |
Vinod Koul | 6d4cd04 | 2019-02-21 15:53:15 +0530 | [diff] [blame] | 834 | if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID || |
André Draszik | bb0ce4c | 2019-08-09 12:20:25 +0100 | [diff] [blame] | 835 | phydev->interface == PHY_INTERFACE_MODE_RGMII_RXID) |
Vinod Koul | 6d4cd04 | 2019-02-21 15:53:15 +0530 | [diff] [blame] | 836 | ret = at803x_enable_rx_delay(phydev); |
André Draszik | bb0ce4c | 2019-08-09 12:20:25 +0100 | [diff] [blame] | 837 | else |
| 838 | ret = at803x_disable_rx_delay(phydev); |
| 839 | if (ret < 0) |
| 840 | return ret; |
Martin Blumenstingl | 2e5f9f2 | 2016-01-15 01:55:22 +0100 | [diff] [blame] | 841 | |
Vinod Koul | 6d4cd04 | 2019-02-21 15:53:15 +0530 | [diff] [blame] | 842 | if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID || |
André Draszik | bb0ce4c | 2019-08-09 12:20:25 +0100 | [diff] [blame] | 843 | phydev->interface == PHY_INTERFACE_MODE_RGMII_TXID) |
Vinod Koul | 6d4cd04 | 2019-02-21 15:53:15 +0530 | [diff] [blame] | 844 | ret = at803x_enable_tx_delay(phydev); |
André Draszik | bb0ce4c | 2019-08-09 12:20:25 +0100 | [diff] [blame] | 845 | else |
| 846 | ret = at803x_disable_tx_delay(phydev); |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 847 | if (ret < 0) |
| 848 | return ret; |
Mugunthan V N | 1ca6d1b | 2013-06-03 20:10:06 +0000 | [diff] [blame] | 849 | |
Russell King | 390b4ca | 2021-01-14 10:45:49 +0000 | [diff] [blame] | 850 | ret = at803x_smarteee_config(phydev); |
| 851 | if (ret < 0) |
| 852 | return ret; |
| 853 | |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 854 | ret = at803x_clk_out_config(phydev); |
| 855 | if (ret < 0) |
| 856 | return ret; |
| 857 | |
Russell King | 8887ca5 | 2021-07-20 14:33:49 +0100 | [diff] [blame] | 858 | if (phydev->drv->phy_id == ATH8031_PHY_ID) { |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 859 | ret = at8031_pll_config(phydev); |
| 860 | if (ret < 0) |
| 861 | return ret; |
| 862 | } |
| 863 | |
Russell King | 3c51fa5 | 2021-01-12 22:59:43 +0000 | [diff] [blame] | 864 | /* Ar803x extended next page bit is enabled by default. Cisco |
| 865 | * multigig switches read this bit and attempt to negotiate 10Gbps |
| 866 | * rates even if the next page bit is disabled. This is incorrect |
| 867 | * behaviour but we still need to accommodate it. XNP is only needed |
| 868 | * for 10Gbps support, so disable XNP. |
| 869 | */ |
| 870 | return phy_modify(phydev, MII_ADVERTISE, MDIO_AN_CTRL1_XNP, 0); |
Matus Ujhelyi | 0ca7111 | 2012-10-14 19:07:16 +0000 | [diff] [blame] | 871 | } |
| 872 | |
Zhao Qiang | 77a9939 | 2014-03-28 15:39:41 +0800 | [diff] [blame] | 873 | static int at803x_ack_interrupt(struct phy_device *phydev) |
| 874 | { |
| 875 | int err; |
| 876 | |
Martin Blumenstingl | a46bd63 | 2016-01-15 01:55:23 +0100 | [diff] [blame] | 877 | err = phy_read(phydev, AT803X_INTR_STATUS); |
Zhao Qiang | 77a9939 | 2014-03-28 15:39:41 +0800 | [diff] [blame] | 878 | |
| 879 | return (err < 0) ? err : 0; |
| 880 | } |
| 881 | |
| 882 | static int at803x_config_intr(struct phy_device *phydev) |
| 883 | { |
| 884 | int err; |
| 885 | int value; |
| 886 | |
Martin Blumenstingl | a46bd63 | 2016-01-15 01:55:23 +0100 | [diff] [blame] | 887 | value = phy_read(phydev, AT803X_INTR_ENABLE); |
Zhao Qiang | 77a9939 | 2014-03-28 15:39:41 +0800 | [diff] [blame] | 888 | |
Martin Blumenstingl | e6e4a55 | 2016-01-15 01:55:24 +0100 | [diff] [blame] | 889 | if (phydev->interrupts == PHY_INTERRUPT_ENABLED) { |
Ioana Ciornei | a341788 | 2020-11-01 14:51:00 +0200 | [diff] [blame] | 890 | /* Clear any pending interrupts */ |
| 891 | err = at803x_ack_interrupt(phydev); |
| 892 | if (err) |
| 893 | return err; |
| 894 | |
Martin Blumenstingl | e6e4a55 | 2016-01-15 01:55:24 +0100 | [diff] [blame] | 895 | value |= AT803X_INTR_ENABLE_AUTONEG_ERR; |
| 896 | value |= AT803X_INTR_ENABLE_SPEED_CHANGED; |
| 897 | value |= AT803X_INTR_ENABLE_DUPLEX_CHANGED; |
| 898 | value |= AT803X_INTR_ENABLE_LINK_FAIL; |
| 899 | value |= AT803X_INTR_ENABLE_LINK_SUCCESS; |
| 900 | |
| 901 | err = phy_write(phydev, AT803X_INTR_ENABLE, value); |
Ioana Ciornei | a341788 | 2020-11-01 14:51:00 +0200 | [diff] [blame] | 902 | } else { |
Martin Blumenstingl | a46bd63 | 2016-01-15 01:55:23 +0100 | [diff] [blame] | 903 | err = phy_write(phydev, AT803X_INTR_ENABLE, 0); |
Ioana Ciornei | a341788 | 2020-11-01 14:51:00 +0200 | [diff] [blame] | 904 | if (err) |
| 905 | return err; |
| 906 | |
| 907 | /* Clear any pending interrupts */ |
| 908 | err = at803x_ack_interrupt(phydev); |
| 909 | } |
Zhao Qiang | 77a9939 | 2014-03-28 15:39:41 +0800 | [diff] [blame] | 910 | |
| 911 | return err; |
| 912 | } |
| 913 | |
Ioana Ciornei | 2977309 | 2020-11-01 14:50:59 +0200 | [diff] [blame] | 914 | static irqreturn_t at803x_handle_interrupt(struct phy_device *phydev) |
| 915 | { |
| 916 | int irq_status, int_enabled; |
| 917 | |
| 918 | irq_status = phy_read(phydev, AT803X_INTR_STATUS); |
| 919 | if (irq_status < 0) { |
| 920 | phy_error(phydev); |
| 921 | return IRQ_NONE; |
| 922 | } |
| 923 | |
| 924 | /* Read the current enabled interrupts */ |
| 925 | int_enabled = phy_read(phydev, AT803X_INTR_ENABLE); |
| 926 | if (int_enabled < 0) { |
| 927 | phy_error(phydev); |
| 928 | return IRQ_NONE; |
| 929 | } |
| 930 | |
| 931 | /* See if this was one of our enabled interrupts */ |
| 932 | if (!(irq_status & int_enabled)) |
| 933 | return IRQ_NONE; |
| 934 | |
| 935 | phy_trigger_machine(phydev); |
| 936 | |
| 937 | return IRQ_HANDLED; |
| 938 | } |
| 939 | |
Daniel Mack | 13a56b4 | 2014-06-18 11:01:43 +0200 | [diff] [blame] | 940 | static void at803x_link_change_notify(struct phy_device *phydev) |
| 941 | { |
Daniel Mack | 13a56b4 | 2014-06-18 11:01:43 +0200 | [diff] [blame] | 942 | /* |
| 943 | * Conduct a hardware reset for AT8030 every time a link loss is |
| 944 | * signalled. This is necessary to circumvent a hardware bug that |
| 945 | * occurs when the cable is unplugged while TX packets are pending |
| 946 | * in the FIFO. In such cases, the FIFO enters an error mode it |
| 947 | * cannot recover from by software. |
| 948 | */ |
David Bauer | 6110ed2 | 2019-04-17 23:59:22 +0200 | [diff] [blame] | 949 | if (phydev->state == PHY_NOLINK && phydev->mdio.reset_gpio) { |
Heiner Kallweit | 5c5f626 | 2019-03-19 19:56:51 +0100 | [diff] [blame] | 950 | struct at803x_context context; |
Daniel Mack | 13a56b4 | 2014-06-18 11:01:43 +0200 | [diff] [blame] | 951 | |
Heiner Kallweit | 5c5f626 | 2019-03-19 19:56:51 +0100 | [diff] [blame] | 952 | at803x_context_save(phydev, &context); |
Daniel Mack | 13a56b4 | 2014-06-18 11:01:43 +0200 | [diff] [blame] | 953 | |
Heiner Kallweit | 5c5f626 | 2019-03-19 19:56:51 +0100 | [diff] [blame] | 954 | phy_device_reset(phydev, 1); |
| 955 | msleep(1); |
| 956 | phy_device_reset(phydev, 0); |
| 957 | msleep(1); |
Daniel Mack | 13a56b4 | 2014-06-18 11:01:43 +0200 | [diff] [blame] | 958 | |
Heiner Kallweit | 5c5f626 | 2019-03-19 19:56:51 +0100 | [diff] [blame] | 959 | at803x_context_restore(phydev, &context); |
Daniel Mack | 13a56b4 | 2014-06-18 11:01:43 +0200 | [diff] [blame] | 960 | |
Heiner Kallweit | 5c5f626 | 2019-03-19 19:56:51 +0100 | [diff] [blame] | 961 | phydev_dbg(phydev, "%s(): phy was reset\n", __func__); |
Daniel Mack | 13a56b4 | 2014-06-18 11:01:43 +0200 | [diff] [blame] | 962 | } |
| 963 | } |
| 964 | |
Luo Jie | 79c7bc0 | 2021-10-24 16:27:30 +0800 | [diff] [blame^] | 965 | static int at803x_read_specific_status(struct phy_device *phydev) |
Russell King | 06d5f34 | 2019-10-04 17:06:14 +0100 | [diff] [blame] | 966 | { |
Luo Jie | 79c7bc0 | 2021-10-24 16:27:30 +0800 | [diff] [blame^] | 967 | int ss; |
Russell King | 06d5f34 | 2019-10-04 17:06:14 +0100 | [diff] [blame] | 968 | |
| 969 | /* Read the AT8035 PHY-Specific Status register, which indicates the |
| 970 | * speed and duplex that the PHY is actually using, irrespective of |
| 971 | * whether we are in autoneg mode or not. |
| 972 | */ |
| 973 | ss = phy_read(phydev, AT803X_SPECIFIC_STATUS); |
| 974 | if (ss < 0) |
| 975 | return ss; |
| 976 | |
| 977 | if (ss & AT803X_SS_SPEED_DUPLEX_RESOLVED) { |
Luo Jie | 79c7bc0 | 2021-10-24 16:27:30 +0800 | [diff] [blame^] | 978 | int sfc, speed; |
Oleksij Rempel | 7dce80c | 2020-07-19 10:05:30 +0200 | [diff] [blame] | 979 | |
| 980 | sfc = phy_read(phydev, AT803X_SPECIFIC_FUNCTION_CONTROL); |
| 981 | if (sfc < 0) |
| 982 | return sfc; |
| 983 | |
Luo Jie | 79c7bc0 | 2021-10-24 16:27:30 +0800 | [diff] [blame^] | 984 | /* qca8081 takes the different bits for speed value from at803x */ |
| 985 | if (phydev->drv->phy_id == QCA8081_PHY_ID) |
| 986 | speed = FIELD_GET(QCA808X_SS_SPEED_MASK, ss); |
| 987 | else |
| 988 | speed = FIELD_GET(AT803X_SS_SPEED_MASK, ss); |
| 989 | |
| 990 | switch (speed) { |
Russell King | 06d5f34 | 2019-10-04 17:06:14 +0100 | [diff] [blame] | 991 | case AT803X_SS_SPEED_10: |
| 992 | phydev->speed = SPEED_10; |
| 993 | break; |
| 994 | case AT803X_SS_SPEED_100: |
| 995 | phydev->speed = SPEED_100; |
| 996 | break; |
| 997 | case AT803X_SS_SPEED_1000: |
| 998 | phydev->speed = SPEED_1000; |
| 999 | break; |
Luo Jie | 79c7bc0 | 2021-10-24 16:27:30 +0800 | [diff] [blame^] | 1000 | case QCA808X_SS_SPEED_2500: |
| 1001 | phydev->speed = SPEED_2500; |
| 1002 | break; |
Russell King | 06d5f34 | 2019-10-04 17:06:14 +0100 | [diff] [blame] | 1003 | } |
| 1004 | if (ss & AT803X_SS_DUPLEX) |
| 1005 | phydev->duplex = DUPLEX_FULL; |
| 1006 | else |
| 1007 | phydev->duplex = DUPLEX_HALF; |
Oleksij Rempel | 7dce80c | 2020-07-19 10:05:30 +0200 | [diff] [blame] | 1008 | |
Russell King | 06d5f34 | 2019-10-04 17:06:14 +0100 | [diff] [blame] | 1009 | if (ss & AT803X_SS_MDIX) |
| 1010 | phydev->mdix = ETH_TP_MDI_X; |
| 1011 | else |
| 1012 | phydev->mdix = ETH_TP_MDI; |
Oleksij Rempel | 7dce80c | 2020-07-19 10:05:30 +0200 | [diff] [blame] | 1013 | |
| 1014 | switch (FIELD_GET(AT803X_SFC_MDI_CROSSOVER_MODE_M, sfc)) { |
| 1015 | case AT803X_SFC_MANUAL_MDI: |
| 1016 | phydev->mdix_ctrl = ETH_TP_MDI; |
| 1017 | break; |
| 1018 | case AT803X_SFC_MANUAL_MDIX: |
| 1019 | phydev->mdix_ctrl = ETH_TP_MDI_X; |
| 1020 | break; |
| 1021 | case AT803X_SFC_AUTOMATIC_CROSSOVER: |
| 1022 | phydev->mdix_ctrl = ETH_TP_MDI_AUTO; |
| 1023 | break; |
| 1024 | } |
Russell King | 06d5f34 | 2019-10-04 17:06:14 +0100 | [diff] [blame] | 1025 | } |
| 1026 | |
Luo Jie | 79c7bc0 | 2021-10-24 16:27:30 +0800 | [diff] [blame^] | 1027 | return 0; |
| 1028 | } |
| 1029 | |
| 1030 | static int at803x_read_status(struct phy_device *phydev) |
| 1031 | { |
| 1032 | int err, old_link = phydev->link; |
| 1033 | |
| 1034 | /* Update the link, but return if there was an error */ |
| 1035 | err = genphy_update_link(phydev); |
| 1036 | if (err) |
| 1037 | return err; |
| 1038 | |
| 1039 | /* why bother the PHY if nothing can have changed */ |
| 1040 | if (phydev->autoneg == AUTONEG_ENABLE && old_link && phydev->link) |
| 1041 | return 0; |
| 1042 | |
| 1043 | phydev->speed = SPEED_UNKNOWN; |
| 1044 | phydev->duplex = DUPLEX_UNKNOWN; |
| 1045 | phydev->pause = 0; |
| 1046 | phydev->asym_pause = 0; |
| 1047 | |
| 1048 | err = genphy_read_lpa(phydev); |
| 1049 | if (err < 0) |
| 1050 | return err; |
| 1051 | |
| 1052 | err = at803x_read_specific_status(phydev); |
| 1053 | if (err < 0) |
| 1054 | return err; |
| 1055 | |
Russell King | 06d5f34 | 2019-10-04 17:06:14 +0100 | [diff] [blame] | 1056 | if (phydev->autoneg == AUTONEG_ENABLE && phydev->autoneg_complete) |
| 1057 | phy_resolve_aneg_pause(phydev); |
| 1058 | |
| 1059 | return 0; |
| 1060 | } |
| 1061 | |
Oleksij Rempel | 7dce80c | 2020-07-19 10:05:30 +0200 | [diff] [blame] | 1062 | static int at803x_config_mdix(struct phy_device *phydev, u8 ctrl) |
| 1063 | { |
| 1064 | u16 val; |
| 1065 | |
| 1066 | switch (ctrl) { |
| 1067 | case ETH_TP_MDI: |
| 1068 | val = AT803X_SFC_MANUAL_MDI; |
| 1069 | break; |
| 1070 | case ETH_TP_MDI_X: |
| 1071 | val = AT803X_SFC_MANUAL_MDIX; |
| 1072 | break; |
| 1073 | case ETH_TP_MDI_AUTO: |
| 1074 | val = AT803X_SFC_AUTOMATIC_CROSSOVER; |
| 1075 | break; |
| 1076 | default: |
| 1077 | return 0; |
| 1078 | } |
| 1079 | |
| 1080 | return phy_modify_changed(phydev, AT803X_SPECIFIC_FUNCTION_CONTROL, |
| 1081 | AT803X_SFC_MDI_CROSSOVER_MODE_M, |
| 1082 | FIELD_PREP(AT803X_SFC_MDI_CROSSOVER_MODE_M, val)); |
| 1083 | } |
| 1084 | |
| 1085 | static int at803x_config_aneg(struct phy_device *phydev) |
| 1086 | { |
| 1087 | int ret; |
| 1088 | |
| 1089 | ret = at803x_config_mdix(phydev, phydev->mdix_ctrl); |
| 1090 | if (ret < 0) |
| 1091 | return ret; |
| 1092 | |
| 1093 | /* Changes of the midx bits are disruptive to the normal operation; |
| 1094 | * therefore any changes to these registers must be followed by a |
| 1095 | * software reset to take effect. |
| 1096 | */ |
| 1097 | if (ret == 1) { |
| 1098 | ret = genphy_soft_reset(phydev); |
| 1099 | if (ret < 0) |
| 1100 | return ret; |
| 1101 | } |
| 1102 | |
| 1103 | return genphy_config_aneg(phydev); |
| 1104 | } |
| 1105 | |
Michael Walle | cde0f4f | 2020-04-28 23:15:02 +0200 | [diff] [blame] | 1106 | static int at803x_get_downshift(struct phy_device *phydev, u8 *d) |
| 1107 | { |
| 1108 | int val; |
| 1109 | |
| 1110 | val = phy_read(phydev, AT803X_SMART_SPEED); |
| 1111 | if (val < 0) |
| 1112 | return val; |
| 1113 | |
| 1114 | if (val & AT803X_SMART_SPEED_ENABLE) |
| 1115 | *d = FIELD_GET(AT803X_SMART_SPEED_RETRY_LIMIT_MASK, val) + 2; |
| 1116 | else |
| 1117 | *d = DOWNSHIFT_DEV_DISABLE; |
| 1118 | |
| 1119 | return 0; |
| 1120 | } |
| 1121 | |
| 1122 | static int at803x_set_downshift(struct phy_device *phydev, u8 cnt) |
| 1123 | { |
| 1124 | u16 mask, set; |
| 1125 | int ret; |
| 1126 | |
| 1127 | switch (cnt) { |
| 1128 | case DOWNSHIFT_DEV_DEFAULT_COUNT: |
| 1129 | cnt = AT803X_DEFAULT_DOWNSHIFT; |
| 1130 | fallthrough; |
| 1131 | case AT803X_MIN_DOWNSHIFT ... AT803X_MAX_DOWNSHIFT: |
| 1132 | set = AT803X_SMART_SPEED_ENABLE | |
| 1133 | AT803X_SMART_SPEED_BYPASS_TIMER | |
| 1134 | FIELD_PREP(AT803X_SMART_SPEED_RETRY_LIMIT_MASK, cnt - 2); |
| 1135 | mask = AT803X_SMART_SPEED_RETRY_LIMIT_MASK; |
| 1136 | break; |
| 1137 | case DOWNSHIFT_DEV_DISABLE: |
| 1138 | set = 0; |
| 1139 | mask = AT803X_SMART_SPEED_ENABLE | |
| 1140 | AT803X_SMART_SPEED_BYPASS_TIMER; |
| 1141 | break; |
| 1142 | default: |
| 1143 | return -EINVAL; |
| 1144 | } |
| 1145 | |
| 1146 | ret = phy_modify_changed(phydev, AT803X_SMART_SPEED, mask, set); |
| 1147 | |
| 1148 | /* After changing the smart speed settings, we need to perform a |
| 1149 | * software reset, use phy_init_hw() to make sure we set the |
| 1150 | * reapply any values which might got lost during software reset. |
| 1151 | */ |
| 1152 | if (ret == 1) |
| 1153 | ret = phy_init_hw(phydev); |
| 1154 | |
| 1155 | return ret; |
| 1156 | } |
| 1157 | |
| 1158 | static int at803x_get_tunable(struct phy_device *phydev, |
| 1159 | struct ethtool_tunable *tuna, void *data) |
| 1160 | { |
| 1161 | switch (tuna->id) { |
| 1162 | case ETHTOOL_PHY_DOWNSHIFT: |
| 1163 | return at803x_get_downshift(phydev, data); |
| 1164 | default: |
| 1165 | return -EOPNOTSUPP; |
| 1166 | } |
| 1167 | } |
| 1168 | |
| 1169 | static int at803x_set_tunable(struct phy_device *phydev, |
| 1170 | struct ethtool_tunable *tuna, const void *data) |
| 1171 | { |
| 1172 | switch (tuna->id) { |
| 1173 | case ETHTOOL_PHY_DOWNSHIFT: |
| 1174 | return at803x_set_downshift(phydev, *(const u8 *)data); |
| 1175 | default: |
| 1176 | return -EOPNOTSUPP; |
| 1177 | } |
| 1178 | } |
| 1179 | |
Michael Walle | 6cb7576 | 2020-05-13 22:38:07 +0200 | [diff] [blame] | 1180 | static int at803x_cable_test_result_trans(u16 status) |
| 1181 | { |
| 1182 | switch (FIELD_GET(AT803X_CDT_STATUS_STAT_MASK, status)) { |
| 1183 | case AT803X_CDT_STATUS_STAT_NORMAL: |
| 1184 | return ETHTOOL_A_CABLE_RESULT_CODE_OK; |
| 1185 | case AT803X_CDT_STATUS_STAT_SHORT: |
| 1186 | return ETHTOOL_A_CABLE_RESULT_CODE_SAME_SHORT; |
| 1187 | case AT803X_CDT_STATUS_STAT_OPEN: |
| 1188 | return ETHTOOL_A_CABLE_RESULT_CODE_OPEN; |
| 1189 | case AT803X_CDT_STATUS_STAT_FAIL: |
| 1190 | default: |
| 1191 | return ETHTOOL_A_CABLE_RESULT_CODE_UNSPEC; |
| 1192 | } |
| 1193 | } |
| 1194 | |
| 1195 | static bool at803x_cdt_test_failed(u16 status) |
| 1196 | { |
| 1197 | return FIELD_GET(AT803X_CDT_STATUS_STAT_MASK, status) == |
| 1198 | AT803X_CDT_STATUS_STAT_FAIL; |
| 1199 | } |
| 1200 | |
| 1201 | static bool at803x_cdt_fault_length_valid(u16 status) |
| 1202 | { |
| 1203 | switch (FIELD_GET(AT803X_CDT_STATUS_STAT_MASK, status)) { |
| 1204 | case AT803X_CDT_STATUS_STAT_OPEN: |
| 1205 | case AT803X_CDT_STATUS_STAT_SHORT: |
| 1206 | return true; |
| 1207 | } |
| 1208 | return false; |
| 1209 | } |
| 1210 | |
| 1211 | static int at803x_cdt_fault_length(u16 status) |
| 1212 | { |
| 1213 | int dt; |
| 1214 | |
| 1215 | /* According to the datasheet the distance to the fault is |
| 1216 | * DELTA_TIME * 0.824 meters. |
| 1217 | * |
| 1218 | * The author suspect the correct formula is: |
| 1219 | * |
| 1220 | * fault_distance = DELTA_TIME * (c * VF) / 125MHz / 2 |
| 1221 | * |
| 1222 | * where c is the speed of light, VF is the velocity factor of |
| 1223 | * the twisted pair cable, 125MHz the counter frequency and |
| 1224 | * we need to divide by 2 because the hardware will measure the |
| 1225 | * round trip time to the fault and back to the PHY. |
| 1226 | * |
| 1227 | * With a VF of 0.69 we get the factor 0.824 mentioned in the |
| 1228 | * datasheet. |
| 1229 | */ |
| 1230 | dt = FIELD_GET(AT803X_CDT_STATUS_DELTA_TIME_MASK, status); |
| 1231 | |
| 1232 | return (dt * 824) / 10; |
| 1233 | } |
| 1234 | |
| 1235 | static int at803x_cdt_start(struct phy_device *phydev, int pair) |
| 1236 | { |
| 1237 | u16 cdt; |
| 1238 | |
| 1239 | cdt = FIELD_PREP(AT803X_CDT_MDI_PAIR_MASK, pair) | |
| 1240 | AT803X_CDT_ENABLE_TEST; |
| 1241 | |
| 1242 | return phy_write(phydev, AT803X_CDT, cdt); |
| 1243 | } |
| 1244 | |
| 1245 | static int at803x_cdt_wait_for_completion(struct phy_device *phydev) |
| 1246 | { |
| 1247 | int val, ret; |
| 1248 | |
| 1249 | /* One test run takes about 25ms */ |
| 1250 | ret = phy_read_poll_timeout(phydev, AT803X_CDT, val, |
| 1251 | !(val & AT803X_CDT_ENABLE_TEST), |
| 1252 | 30000, 100000, true); |
| 1253 | |
| 1254 | return ret < 0 ? ret : 0; |
| 1255 | } |
| 1256 | |
| 1257 | static int at803x_cable_test_one_pair(struct phy_device *phydev, int pair) |
| 1258 | { |
| 1259 | static const int ethtool_pair[] = { |
| 1260 | ETHTOOL_A_CABLE_PAIR_A, |
| 1261 | ETHTOOL_A_CABLE_PAIR_B, |
| 1262 | ETHTOOL_A_CABLE_PAIR_C, |
| 1263 | ETHTOOL_A_CABLE_PAIR_D, |
| 1264 | }; |
| 1265 | int ret, val; |
| 1266 | |
| 1267 | ret = at803x_cdt_start(phydev, pair); |
| 1268 | if (ret) |
| 1269 | return ret; |
| 1270 | |
| 1271 | ret = at803x_cdt_wait_for_completion(phydev); |
| 1272 | if (ret) |
| 1273 | return ret; |
| 1274 | |
| 1275 | val = phy_read(phydev, AT803X_CDT_STATUS); |
| 1276 | if (val < 0) |
| 1277 | return val; |
| 1278 | |
| 1279 | if (at803x_cdt_test_failed(val)) |
| 1280 | return 0; |
| 1281 | |
| 1282 | ethnl_cable_test_result(phydev, ethtool_pair[pair], |
| 1283 | at803x_cable_test_result_trans(val)); |
| 1284 | |
| 1285 | if (at803x_cdt_fault_length_valid(val)) |
| 1286 | ethnl_cable_test_fault_length(phydev, ethtool_pair[pair], |
| 1287 | at803x_cdt_fault_length(val)); |
| 1288 | |
| 1289 | return 1; |
| 1290 | } |
| 1291 | |
| 1292 | static int at803x_cable_test_get_status(struct phy_device *phydev, |
| 1293 | bool *finished) |
| 1294 | { |
Oleksij Rempel | dc0f3ed | 2020-05-27 07:08:43 +0200 | [diff] [blame] | 1295 | unsigned long pair_mask; |
Michael Walle | 6cb7576 | 2020-05-13 22:38:07 +0200 | [diff] [blame] | 1296 | int retries = 20; |
| 1297 | int pair, ret; |
| 1298 | |
Oleksij Rempel | dc0f3ed | 2020-05-27 07:08:43 +0200 | [diff] [blame] | 1299 | if (phydev->phy_id == ATH9331_PHY_ID || |
David Bauer | fada2ce | 2021-10-06 00:54:01 +0200 | [diff] [blame] | 1300 | phydev->phy_id == ATH8032_PHY_ID || |
| 1301 | phydev->phy_id == QCA9561_PHY_ID) |
Oleksij Rempel | dc0f3ed | 2020-05-27 07:08:43 +0200 | [diff] [blame] | 1302 | pair_mask = 0x3; |
| 1303 | else |
| 1304 | pair_mask = 0xf; |
| 1305 | |
Michael Walle | 6cb7576 | 2020-05-13 22:38:07 +0200 | [diff] [blame] | 1306 | *finished = false; |
| 1307 | |
| 1308 | /* According to the datasheet the CDT can be performed when |
| 1309 | * there is no link partner or when the link partner is |
| 1310 | * auto-negotiating. Starting the test will restart the AN |
| 1311 | * automatically. It seems that doing this repeatedly we will |
| 1312 | * get a slot where our link partner won't disturb our |
| 1313 | * measurement. |
| 1314 | */ |
| 1315 | while (pair_mask && retries--) { |
| 1316 | for_each_set_bit(pair, &pair_mask, 4) { |
| 1317 | ret = at803x_cable_test_one_pair(phydev, pair); |
| 1318 | if (ret < 0) |
| 1319 | return ret; |
| 1320 | if (ret) |
| 1321 | clear_bit(pair, &pair_mask); |
| 1322 | } |
| 1323 | if (pair_mask) |
| 1324 | msleep(250); |
| 1325 | } |
| 1326 | |
| 1327 | *finished = true; |
| 1328 | |
| 1329 | return 0; |
| 1330 | } |
| 1331 | |
| 1332 | static int at803x_cable_test_start(struct phy_device *phydev) |
| 1333 | { |
| 1334 | /* Enable auto-negotiation, but advertise no capabilities, no link |
| 1335 | * will be established. A restart of the auto-negotiation is not |
| 1336 | * required, because the cable test will automatically break the link. |
| 1337 | */ |
| 1338 | phy_write(phydev, MII_BMCR, BMCR_ANENABLE); |
| 1339 | phy_write(phydev, MII_ADVERTISE, ADVERTISE_CSMA); |
Oleksij Rempel | dc0f3ed | 2020-05-27 07:08:43 +0200 | [diff] [blame] | 1340 | if (phydev->phy_id != ATH9331_PHY_ID && |
David Bauer | fada2ce | 2021-10-06 00:54:01 +0200 | [diff] [blame] | 1341 | phydev->phy_id != ATH8032_PHY_ID && |
| 1342 | phydev->phy_id != QCA9561_PHY_ID) |
Oleksij Rempel | dc0f3ed | 2020-05-27 07:08:43 +0200 | [diff] [blame] | 1343 | phy_write(phydev, MII_CTRL1000, 0); |
Michael Walle | 6cb7576 | 2020-05-13 22:38:07 +0200 | [diff] [blame] | 1344 | |
| 1345 | /* we do all the (time consuming) work later */ |
| 1346 | return 0; |
| 1347 | } |
| 1348 | |
Ansuel Smith | 272833b | 2021-05-14 23:00:15 +0200 | [diff] [blame] | 1349 | static int qca83xx_config_init(struct phy_device *phydev) |
| 1350 | { |
| 1351 | u8 switch_revision; |
| 1352 | |
| 1353 | switch_revision = phydev->dev_flags & QCA8K_DEVFLAGS_REVISION_MASK; |
| 1354 | |
| 1355 | switch (switch_revision) { |
| 1356 | case 1: |
| 1357 | /* For 100M waveform */ |
Ansuel Smith | 6799955 | 2021-10-10 00:46:18 +0200 | [diff] [blame] | 1358 | at803x_debug_reg_write(phydev, AT803X_DEBUG_ANALOG_TEST_CTRL, 0x02ea); |
Ansuel Smith | 272833b | 2021-05-14 23:00:15 +0200 | [diff] [blame] | 1359 | /* Turn on Gigabit clock */ |
Ansuel Smith | 6799955 | 2021-10-10 00:46:18 +0200 | [diff] [blame] | 1360 | at803x_debug_reg_write(phydev, AT803X_DEBUG_REG_GREEN, 0x68a0); |
Ansuel Smith | 272833b | 2021-05-14 23:00:15 +0200 | [diff] [blame] | 1361 | break; |
| 1362 | |
| 1363 | case 2: |
| 1364 | phy_write_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV, 0x0); |
| 1365 | fallthrough; |
| 1366 | case 4: |
| 1367 | phy_write_mmd(phydev, MDIO_MMD_PCS, MDIO_AZ_DEBUG, 0x803f); |
Ansuel Smith | 6799955 | 2021-10-10 00:46:18 +0200 | [diff] [blame] | 1368 | at803x_debug_reg_write(phydev, AT803X_DEBUG_REG_GREEN, 0x6860); |
| 1369 | at803x_debug_reg_write(phydev, AT803X_DEBUG_SYSTEM_CTRL_MODE, 0x2c46); |
Ansuel Smith | 272833b | 2021-05-14 23:00:15 +0200 | [diff] [blame] | 1370 | at803x_debug_reg_write(phydev, AT803X_DEBUG_REG_3C, 0x6000); |
| 1371 | break; |
| 1372 | } |
| 1373 | |
Ansuel Smith | 1ca8311 | 2021-10-10 00:46:16 +0200 | [diff] [blame] | 1374 | /* QCA8327 require DAC amplitude adjustment for 100m set to +6%. |
| 1375 | * Disable on init and enable only with 100m speed following |
| 1376 | * qca original source code. |
| 1377 | */ |
| 1378 | if (phydev->drv->phy_id == QCA8327_A_PHY_ID || |
| 1379 | phydev->drv->phy_id == QCA8327_B_PHY_ID) |
Ansuel Smith | 6799955 | 2021-10-10 00:46:18 +0200 | [diff] [blame] | 1380 | at803x_debug_reg_mask(phydev, AT803X_DEBUG_ANALOG_TEST_CTRL, |
Ansuel Smith | 1ca8311 | 2021-10-10 00:46:16 +0200 | [diff] [blame] | 1381 | QCA8327_DEBUG_MANU_CTRL_EN, 0); |
| 1382 | |
Ansuel Smith | 9d1c29b | 2021-10-10 00:46:17 +0200 | [diff] [blame] | 1383 | /* Following original QCA sourcecode set port to prefer master */ |
| 1384 | phy_set_bits(phydev, MII_CTRL1000, CTL1000_PREFER_MASTER); |
| 1385 | |
Ansuel Smith | 272833b | 2021-05-14 23:00:15 +0200 | [diff] [blame] | 1386 | return 0; |
| 1387 | } |
| 1388 | |
Ansuel Smith | 1ca8311 | 2021-10-10 00:46:16 +0200 | [diff] [blame] | 1389 | static void qca83xx_link_change_notify(struct phy_device *phydev) |
| 1390 | { |
| 1391 | /* QCA8337 doesn't require DAC Amplitude adjustement */ |
| 1392 | if (phydev->drv->phy_id == QCA8337_PHY_ID) |
| 1393 | return; |
| 1394 | |
| 1395 | /* Set DAC Amplitude adjustment to +6% for 100m on link running */ |
| 1396 | if (phydev->state == PHY_RUNNING) { |
| 1397 | if (phydev->speed == SPEED_100) |
Ansuel Smith | 6799955 | 2021-10-10 00:46:18 +0200 | [diff] [blame] | 1398 | at803x_debug_reg_mask(phydev, AT803X_DEBUG_ANALOG_TEST_CTRL, |
Ansuel Smith | 1ca8311 | 2021-10-10 00:46:16 +0200 | [diff] [blame] | 1399 | QCA8327_DEBUG_MANU_CTRL_EN, |
| 1400 | QCA8327_DEBUG_MANU_CTRL_EN); |
| 1401 | } else { |
| 1402 | /* Reset DAC Amplitude adjustment */ |
Ansuel Smith | 6799955 | 2021-10-10 00:46:18 +0200 | [diff] [blame] | 1403 | at803x_debug_reg_mask(phydev, AT803X_DEBUG_ANALOG_TEST_CTRL, |
Ansuel Smith | 1ca8311 | 2021-10-10 00:46:16 +0200 | [diff] [blame] | 1404 | QCA8327_DEBUG_MANU_CTRL_EN, 0); |
| 1405 | } |
| 1406 | } |
| 1407 | |
Ansuel Smith | ba3c01e | 2021-10-10 00:46:15 +0200 | [diff] [blame] | 1408 | static int qca83xx_resume(struct phy_device *phydev) |
| 1409 | { |
| 1410 | int ret, val; |
| 1411 | |
| 1412 | /* Skip reset if not suspended */ |
| 1413 | if (!phydev->suspended) |
| 1414 | return 0; |
| 1415 | |
| 1416 | /* Reinit the port, reset values set by suspend */ |
| 1417 | qca83xx_config_init(phydev); |
| 1418 | |
| 1419 | /* Reset the port on port resume */ |
| 1420 | phy_set_bits(phydev, MII_BMCR, BMCR_RESET | BMCR_ANENABLE); |
| 1421 | |
| 1422 | /* On resume from suspend the switch execute a reset and |
| 1423 | * restart auto-negotiation. Wait for reset to complete. |
| 1424 | */ |
| 1425 | ret = phy_read_poll_timeout(phydev, MII_BMCR, val, !(val & BMCR_RESET), |
| 1426 | 50000, 600000, true); |
| 1427 | if (ret) |
| 1428 | return ret; |
| 1429 | |
| 1430 | msleep(1); |
| 1431 | |
| 1432 | return 0; |
| 1433 | } |
| 1434 | |
| 1435 | static int qca83xx_suspend(struct phy_device *phydev) |
| 1436 | { |
| 1437 | u16 mask = 0; |
| 1438 | |
| 1439 | /* Only QCA8337 support actual suspend. |
| 1440 | * QCA8327 cause port unreliability when phy suspend |
| 1441 | * is set. |
| 1442 | */ |
| 1443 | if (phydev->drv->phy_id == QCA8337_PHY_ID) { |
| 1444 | genphy_suspend(phydev); |
| 1445 | } else { |
| 1446 | mask |= ~(BMCR_SPEED1000 | BMCR_FULLDPLX); |
| 1447 | phy_modify(phydev, MII_BMCR, mask, 0); |
| 1448 | } |
| 1449 | |
Ansuel Smith | 6799955 | 2021-10-10 00:46:18 +0200 | [diff] [blame] | 1450 | at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_GREEN, |
Ansuel Smith | ba3c01e | 2021-10-10 00:46:15 +0200 | [diff] [blame] | 1451 | AT803X_DEBUG_GATE_CLK_IN1000, 0); |
| 1452 | |
| 1453 | at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_HIB_CTRL, |
| 1454 | AT803X_DEBUG_HIB_CTRL_EN_ANY_CHANGE | |
| 1455 | AT803X_DEBUG_HIB_CTRL_SEL_RST_80U, 0); |
| 1456 | |
| 1457 | return 0; |
| 1458 | } |
| 1459 | |
Luo Jie | 79c7bc0 | 2021-10-24 16:27:30 +0800 | [diff] [blame^] | 1460 | static int qca808x_read_status(struct phy_device *phydev) |
| 1461 | { |
| 1462 | int ret; |
| 1463 | |
| 1464 | ret = phy_read_mmd(phydev, MDIO_MMD_AN, MDIO_AN_10GBT_STAT); |
| 1465 | if (ret < 0) |
| 1466 | return ret; |
| 1467 | |
| 1468 | linkmode_mod_bit(ETHTOOL_LINK_MODE_2500baseT_Full_BIT, phydev->lp_advertising, |
| 1469 | ret & MDIO_AN_10GBT_STAT_LP2_5G); |
| 1470 | |
| 1471 | ret = genphy_read_status(phydev); |
| 1472 | if (ret) |
| 1473 | return ret; |
| 1474 | |
| 1475 | ret = at803x_read_specific_status(phydev); |
| 1476 | if (ret < 0) |
| 1477 | return ret; |
| 1478 | |
| 1479 | if (phydev->link && phydev->speed == SPEED_2500) |
| 1480 | phydev->interface = PHY_INTERFACE_MODE_2500BASEX; |
| 1481 | else |
| 1482 | phydev->interface = PHY_INTERFACE_MODE_SMII; |
| 1483 | |
| 1484 | return 0; |
| 1485 | } |
| 1486 | |
Mugunthan V N | 317420a | 2013-06-03 20:10:04 +0000 | [diff] [blame] | 1487 | static struct phy_driver at803x_driver[] = { |
| 1488 | { |
Michael Walle | 96c3671 | 2019-11-06 23:36:16 +0100 | [diff] [blame] | 1489 | /* Qualcomm Atheros AR8035 */ |
Michael Walle | 0465d8f | 2020-05-22 11:53:31 +0200 | [diff] [blame] | 1490 | PHY_ID_MATCH_EXACT(ATH8035_PHY_ID), |
Michael Walle | 96c3671 | 2019-11-06 23:36:16 +0100 | [diff] [blame] | 1491 | .name = "Qualcomm Atheros AR8035", |
Michael Walle | 6cb7576 | 2020-05-13 22:38:07 +0200 | [diff] [blame] | 1492 | .flags = PHY_POLL_CABLE_TEST, |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 1493 | .probe = at803x_probe, |
Michael Walle | 2318ca8 | 2020-01-30 18:54:02 +0100 | [diff] [blame] | 1494 | .remove = at803x_remove, |
Oleksij Rempel | 7dce80c | 2020-07-19 10:05:30 +0200 | [diff] [blame] | 1495 | .config_aneg = at803x_config_aneg, |
Daniel Mack | 13a56b4 | 2014-06-18 11:01:43 +0200 | [diff] [blame] | 1496 | .config_init = at803x_config_init, |
Michael Walle | cde0f4f | 2020-04-28 23:15:02 +0200 | [diff] [blame] | 1497 | .soft_reset = genphy_soft_reset, |
Daniel Mack | 13a56b4 | 2014-06-18 11:01:43 +0200 | [diff] [blame] | 1498 | .set_wol = at803x_set_wol, |
| 1499 | .get_wol = at803x_get_wol, |
| 1500 | .suspend = at803x_suspend, |
| 1501 | .resume = at803x_resume, |
Heiner Kallweit | dcdecdc | 2019-04-12 20:47:03 +0200 | [diff] [blame] | 1502 | /* PHY_GBIT_FEATURES */ |
Russell King | 06d5f34 | 2019-10-04 17:06:14 +0100 | [diff] [blame] | 1503 | .read_status = at803x_read_status, |
Måns Rullgård | 0eae598 | 2015-11-12 17:40:20 +0000 | [diff] [blame] | 1504 | .config_intr = at803x_config_intr, |
Ioana Ciornei | 2977309 | 2020-11-01 14:50:59 +0200 | [diff] [blame] | 1505 | .handle_interrupt = at803x_handle_interrupt, |
Michael Walle | cde0f4f | 2020-04-28 23:15:02 +0200 | [diff] [blame] | 1506 | .get_tunable = at803x_get_tunable, |
| 1507 | .set_tunable = at803x_set_tunable, |
Michael Walle | 6cb7576 | 2020-05-13 22:38:07 +0200 | [diff] [blame] | 1508 | .cable_test_start = at803x_cable_test_start, |
| 1509 | .cable_test_get_status = at803x_cable_test_get_status, |
Mugunthan V N | 317420a | 2013-06-03 20:10:04 +0000 | [diff] [blame] | 1510 | }, { |
Michael Walle | 96c3671 | 2019-11-06 23:36:16 +0100 | [diff] [blame] | 1511 | /* Qualcomm Atheros AR8030 */ |
Daniel Mack | 13a56b4 | 2014-06-18 11:01:43 +0200 | [diff] [blame] | 1512 | .phy_id = ATH8030_PHY_ID, |
Michael Walle | 96c3671 | 2019-11-06 23:36:16 +0100 | [diff] [blame] | 1513 | .name = "Qualcomm Atheros AR8030", |
Michael Walle | 0465d8f | 2020-05-22 11:53:31 +0200 | [diff] [blame] | 1514 | .phy_id_mask = AT8030_PHY_ID_MASK, |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 1515 | .probe = at803x_probe, |
Michael Walle | 2318ca8 | 2020-01-30 18:54:02 +0100 | [diff] [blame] | 1516 | .remove = at803x_remove, |
Daniel Mack | 13a56b4 | 2014-06-18 11:01:43 +0200 | [diff] [blame] | 1517 | .config_init = at803x_config_init, |
| 1518 | .link_change_notify = at803x_link_change_notify, |
| 1519 | .set_wol = at803x_set_wol, |
| 1520 | .get_wol = at803x_get_wol, |
| 1521 | .suspend = at803x_suspend, |
| 1522 | .resume = at803x_resume, |
Heiner Kallweit | dcdecdc | 2019-04-12 20:47:03 +0200 | [diff] [blame] | 1523 | /* PHY_BASIC_FEATURES */ |
Måns Rullgård | 0eae598 | 2015-11-12 17:40:20 +0000 | [diff] [blame] | 1524 | .config_intr = at803x_config_intr, |
Ioana Ciornei | 2977309 | 2020-11-01 14:50:59 +0200 | [diff] [blame] | 1525 | .handle_interrupt = at803x_handle_interrupt, |
Mugunthan V N | 05d7cce | 2013-06-03 20:10:07 +0000 | [diff] [blame] | 1526 | }, { |
Michael Walle | 96c3671 | 2019-11-06 23:36:16 +0100 | [diff] [blame] | 1527 | /* Qualcomm Atheros AR8031/AR8033 */ |
Michael Walle | 0465d8f | 2020-05-22 11:53:31 +0200 | [diff] [blame] | 1528 | PHY_ID_MATCH_EXACT(ATH8031_PHY_ID), |
Michael Walle | 96c3671 | 2019-11-06 23:36:16 +0100 | [diff] [blame] | 1529 | .name = "Qualcomm Atheros AR8031/AR8033", |
Michael Walle | 6cb7576 | 2020-05-13 22:38:07 +0200 | [diff] [blame] | 1530 | .flags = PHY_POLL_CABLE_TEST, |
Michael Walle | 2f66482 | 2019-11-06 23:36:14 +0100 | [diff] [blame] | 1531 | .probe = at803x_probe, |
Michael Walle | 2318ca8 | 2020-01-30 18:54:02 +0100 | [diff] [blame] | 1532 | .remove = at803x_remove, |
Daniel Mack | 13a56b4 | 2014-06-18 11:01:43 +0200 | [diff] [blame] | 1533 | .config_init = at803x_config_init, |
Michael Walle | 63477a5 | 2021-02-14 02:17:11 +0100 | [diff] [blame] | 1534 | .config_aneg = at803x_config_aneg, |
Michael Walle | cde0f4f | 2020-04-28 23:15:02 +0200 | [diff] [blame] | 1535 | .soft_reset = genphy_soft_reset, |
Daniel Mack | 13a56b4 | 2014-06-18 11:01:43 +0200 | [diff] [blame] | 1536 | .set_wol = at803x_set_wol, |
| 1537 | .get_wol = at803x_get_wol, |
| 1538 | .suspend = at803x_suspend, |
| 1539 | .resume = at803x_resume, |
David Bauer | c329e5a | 2021-04-15 03:26:50 +0200 | [diff] [blame] | 1540 | .read_page = at803x_read_page, |
| 1541 | .write_page = at803x_write_page, |
David Bauer | b856150 | 2021-06-27 12:16:07 +0200 | [diff] [blame] | 1542 | .get_features = at803x_get_features, |
Russell King | 06d5f34 | 2019-10-04 17:06:14 +0100 | [diff] [blame] | 1543 | .read_status = at803x_read_status, |
Daniel Mack | 13a56b4 | 2014-06-18 11:01:43 +0200 | [diff] [blame] | 1544 | .config_intr = &at803x_config_intr, |
Ioana Ciornei | 2977309 | 2020-11-01 14:50:59 +0200 | [diff] [blame] | 1545 | .handle_interrupt = at803x_handle_interrupt, |
Michael Walle | cde0f4f | 2020-04-28 23:15:02 +0200 | [diff] [blame] | 1546 | .get_tunable = at803x_get_tunable, |
| 1547 | .set_tunable = at803x_set_tunable, |
Michael Walle | 6cb7576 | 2020-05-13 22:38:07 +0200 | [diff] [blame] | 1548 | .cable_test_start = at803x_cable_test_start, |
| 1549 | .cable_test_get_status = at803x_cable_test_get_status, |
Oleksij Rempel | 7908d2c | 2019-10-03 10:21:12 +0200 | [diff] [blame] | 1550 | }, { |
David Bauer | 5800091 | 2020-04-17 15:41:59 +0200 | [diff] [blame] | 1551 | /* Qualcomm Atheros AR8032 */ |
| 1552 | PHY_ID_MATCH_EXACT(ATH8032_PHY_ID), |
| 1553 | .name = "Qualcomm Atheros AR8032", |
| 1554 | .probe = at803x_probe, |
| 1555 | .remove = at803x_remove, |
Oleksij Rempel | dc0f3ed | 2020-05-27 07:08:43 +0200 | [diff] [blame] | 1556 | .flags = PHY_POLL_CABLE_TEST, |
David Bauer | 5800091 | 2020-04-17 15:41:59 +0200 | [diff] [blame] | 1557 | .config_init = at803x_config_init, |
| 1558 | .link_change_notify = at803x_link_change_notify, |
| 1559 | .set_wol = at803x_set_wol, |
| 1560 | .get_wol = at803x_get_wol, |
| 1561 | .suspend = at803x_suspend, |
| 1562 | .resume = at803x_resume, |
| 1563 | /* PHY_BASIC_FEATURES */ |
David Bauer | 5800091 | 2020-04-17 15:41:59 +0200 | [diff] [blame] | 1564 | .config_intr = at803x_config_intr, |
Ioana Ciornei | 2977309 | 2020-11-01 14:50:59 +0200 | [diff] [blame] | 1565 | .handle_interrupt = at803x_handle_interrupt, |
Oleksij Rempel | dc0f3ed | 2020-05-27 07:08:43 +0200 | [diff] [blame] | 1566 | .cable_test_start = at803x_cable_test_start, |
| 1567 | .cable_test_get_status = at803x_cable_test_get_status, |
David Bauer | 5800091 | 2020-04-17 15:41:59 +0200 | [diff] [blame] | 1568 | }, { |
Oleksij Rempel | 7908d2c | 2019-10-03 10:21:12 +0200 | [diff] [blame] | 1569 | /* ATHEROS AR9331 */ |
| 1570 | PHY_ID_MATCH_EXACT(ATH9331_PHY_ID), |
Michael Walle | 96c3671 | 2019-11-06 23:36:16 +0100 | [diff] [blame] | 1571 | .name = "Qualcomm Atheros AR9331 built-in PHY", |
Oleksij Rempel | 7908d2c | 2019-10-03 10:21:12 +0200 | [diff] [blame] | 1572 | .suspend = at803x_suspend, |
| 1573 | .resume = at803x_resume, |
Oleksij Rempel | dc0f3ed | 2020-05-27 07:08:43 +0200 | [diff] [blame] | 1574 | .flags = PHY_POLL_CABLE_TEST, |
Oleksij Rempel | 7908d2c | 2019-10-03 10:21:12 +0200 | [diff] [blame] | 1575 | /* PHY_BASIC_FEATURES */ |
Oleksij Rempel | 7908d2c | 2019-10-03 10:21:12 +0200 | [diff] [blame] | 1576 | .config_intr = &at803x_config_intr, |
Ioana Ciornei | 2977309 | 2020-11-01 14:50:59 +0200 | [diff] [blame] | 1577 | .handle_interrupt = at803x_handle_interrupt, |
Oleksij Rempel | dc0f3ed | 2020-05-27 07:08:43 +0200 | [diff] [blame] | 1578 | .cable_test_start = at803x_cable_test_start, |
| 1579 | .cable_test_get_status = at803x_cable_test_get_status, |
Oleksij Rempel | 7dce80c | 2020-07-19 10:05:30 +0200 | [diff] [blame] | 1580 | .read_status = at803x_read_status, |
| 1581 | .soft_reset = genphy_soft_reset, |
| 1582 | .config_aneg = at803x_config_aneg, |
Ansuel Smith | 272833b | 2021-05-14 23:00:15 +0200 | [diff] [blame] | 1583 | }, { |
David Bauer | fada2ce | 2021-10-06 00:54:01 +0200 | [diff] [blame] | 1584 | /* Qualcomm Atheros QCA9561 */ |
| 1585 | PHY_ID_MATCH_EXACT(QCA9561_PHY_ID), |
| 1586 | .name = "Qualcomm Atheros QCA9561 built-in PHY", |
| 1587 | .suspend = at803x_suspend, |
| 1588 | .resume = at803x_resume, |
| 1589 | .flags = PHY_POLL_CABLE_TEST, |
| 1590 | /* PHY_BASIC_FEATURES */ |
| 1591 | .config_intr = &at803x_config_intr, |
| 1592 | .handle_interrupt = at803x_handle_interrupt, |
| 1593 | .cable_test_start = at803x_cable_test_start, |
| 1594 | .cable_test_get_status = at803x_cable_test_get_status, |
| 1595 | .read_status = at803x_read_status, |
| 1596 | .soft_reset = genphy_soft_reset, |
| 1597 | .config_aneg = at803x_config_aneg, |
| 1598 | }, { |
Ansuel Smith | 272833b | 2021-05-14 23:00:15 +0200 | [diff] [blame] | 1599 | /* QCA8337 */ |
Ansuel Smith | d44fd86 | 2021-09-19 18:28:17 +0200 | [diff] [blame] | 1600 | .phy_id = QCA8337_PHY_ID, |
| 1601 | .phy_id_mask = QCA8K_PHY_ID_MASK, |
| 1602 | .name = "Qualcomm Atheros 8337 internal PHY", |
Ansuel Smith | 272833b | 2021-05-14 23:00:15 +0200 | [diff] [blame] | 1603 | /* PHY_GBIT_FEATURES */ |
Ansuel Smith | 1ca8311 | 2021-10-10 00:46:16 +0200 | [diff] [blame] | 1604 | .link_change_notify = qca83xx_link_change_notify, |
Ansuel Smith | d44fd86 | 2021-09-19 18:28:17 +0200 | [diff] [blame] | 1605 | .probe = at803x_probe, |
| 1606 | .flags = PHY_IS_INTERNAL, |
| 1607 | .config_init = qca83xx_config_init, |
| 1608 | .soft_reset = genphy_soft_reset, |
| 1609 | .get_sset_count = at803x_get_sset_count, |
| 1610 | .get_strings = at803x_get_strings, |
| 1611 | .get_stats = at803x_get_stats, |
Ansuel Smith | ba3c01e | 2021-10-10 00:46:15 +0200 | [diff] [blame] | 1612 | .suspend = qca83xx_suspend, |
| 1613 | .resume = qca83xx_resume, |
Ansuel Smith | 0ccf851 | 2021-09-14 14:33:45 +0200 | [diff] [blame] | 1614 | }, { |
Ansuel Smith | b4df02b | 2021-09-19 18:28:15 +0200 | [diff] [blame] | 1615 | /* QCA8327-A from switch QCA8327-AL1A */ |
Ansuel Smith | d44fd86 | 2021-09-19 18:28:17 +0200 | [diff] [blame] | 1616 | .phy_id = QCA8327_A_PHY_ID, |
| 1617 | .phy_id_mask = QCA8K_PHY_ID_MASK, |
| 1618 | .name = "Qualcomm Atheros 8327-A internal PHY", |
Ansuel Smith | b4df02b | 2021-09-19 18:28:15 +0200 | [diff] [blame] | 1619 | /* PHY_GBIT_FEATURES */ |
Ansuel Smith | 1ca8311 | 2021-10-10 00:46:16 +0200 | [diff] [blame] | 1620 | .link_change_notify = qca83xx_link_change_notify, |
Ansuel Smith | d44fd86 | 2021-09-19 18:28:17 +0200 | [diff] [blame] | 1621 | .probe = at803x_probe, |
| 1622 | .flags = PHY_IS_INTERNAL, |
| 1623 | .config_init = qca83xx_config_init, |
| 1624 | .soft_reset = genphy_soft_reset, |
| 1625 | .get_sset_count = at803x_get_sset_count, |
| 1626 | .get_strings = at803x_get_strings, |
| 1627 | .get_stats = at803x_get_stats, |
Ansuel Smith | ba3c01e | 2021-10-10 00:46:15 +0200 | [diff] [blame] | 1628 | .suspend = qca83xx_suspend, |
| 1629 | .resume = qca83xx_resume, |
Ansuel Smith | b4df02b | 2021-09-19 18:28:15 +0200 | [diff] [blame] | 1630 | }, { |
| 1631 | /* QCA8327-B from switch QCA8327-BL1A */ |
Ansuel Smith | d44fd86 | 2021-09-19 18:28:17 +0200 | [diff] [blame] | 1632 | .phy_id = QCA8327_B_PHY_ID, |
| 1633 | .phy_id_mask = QCA8K_PHY_ID_MASK, |
| 1634 | .name = "Qualcomm Atheros 8327-B internal PHY", |
Ansuel Smith | 0ccf851 | 2021-09-14 14:33:45 +0200 | [diff] [blame] | 1635 | /* PHY_GBIT_FEATURES */ |
Ansuel Smith | 1ca8311 | 2021-10-10 00:46:16 +0200 | [diff] [blame] | 1636 | .link_change_notify = qca83xx_link_change_notify, |
Ansuel Smith | d44fd86 | 2021-09-19 18:28:17 +0200 | [diff] [blame] | 1637 | .probe = at803x_probe, |
| 1638 | .flags = PHY_IS_INTERNAL, |
| 1639 | .config_init = qca83xx_config_init, |
| 1640 | .soft_reset = genphy_soft_reset, |
| 1641 | .get_sset_count = at803x_get_sset_count, |
| 1642 | .get_strings = at803x_get_strings, |
| 1643 | .get_stats = at803x_get_stats, |
Ansuel Smith | ba3c01e | 2021-10-10 00:46:15 +0200 | [diff] [blame] | 1644 | .suspend = qca83xx_suspend, |
| 1645 | .resume = qca83xx_resume, |
Luo Jie | daf6173 | 2021-10-24 16:27:29 +0800 | [diff] [blame] | 1646 | }, { |
| 1647 | /* Qualcomm QCA8081 */ |
| 1648 | PHY_ID_MATCH_EXACT(QCA8081_PHY_ID), |
| 1649 | .name = "Qualcomm QCA8081", |
| 1650 | .config_intr = at803x_config_intr, |
| 1651 | .handle_interrupt = at803x_handle_interrupt, |
| 1652 | .get_tunable = at803x_get_tunable, |
| 1653 | .set_tunable = at803x_set_tunable, |
| 1654 | .set_wol = at803x_set_wol, |
| 1655 | .get_wol = at803x_get_wol, |
| 1656 | .suspend = genphy_suspend, |
| 1657 | .resume = genphy_resume, |
Luo Jie | 79c7bc0 | 2021-10-24 16:27:30 +0800 | [diff] [blame^] | 1658 | .read_status = qca808x_read_status, |
Ansuel Smith | 272833b | 2021-05-14 23:00:15 +0200 | [diff] [blame] | 1659 | }, }; |
Matus Ujhelyi | 0ca7111 | 2012-10-14 19:07:16 +0000 | [diff] [blame] | 1660 | |
Johan Hovold | 50fd715 | 2014-11-11 19:45:59 +0100 | [diff] [blame] | 1661 | module_phy_driver(at803x_driver); |
Matus Ujhelyi | 0ca7111 | 2012-10-14 19:07:16 +0000 | [diff] [blame] | 1662 | |
| 1663 | static struct mdio_device_id __maybe_unused atheros_tbl[] = { |
Michael Walle | 0465d8f | 2020-05-22 11:53:31 +0200 | [diff] [blame] | 1664 | { ATH8030_PHY_ID, AT8030_PHY_ID_MASK }, |
| 1665 | { PHY_ID_MATCH_EXACT(ATH8031_PHY_ID) }, |
David Bauer | 5800091 | 2020-04-17 15:41:59 +0200 | [diff] [blame] | 1666 | { PHY_ID_MATCH_EXACT(ATH8032_PHY_ID) }, |
Michael Walle | 0465d8f | 2020-05-22 11:53:31 +0200 | [diff] [blame] | 1667 | { PHY_ID_MATCH_EXACT(ATH8035_PHY_ID) }, |
Oleksij Rempel | 7908d2c | 2019-10-03 10:21:12 +0200 | [diff] [blame] | 1668 | { PHY_ID_MATCH_EXACT(ATH9331_PHY_ID) }, |
Ansuel Smith | 0ccf851 | 2021-09-14 14:33:45 +0200 | [diff] [blame] | 1669 | { PHY_ID_MATCH_EXACT(QCA8337_PHY_ID) }, |
Ansuel Smith | b4df02b | 2021-09-19 18:28:15 +0200 | [diff] [blame] | 1670 | { PHY_ID_MATCH_EXACT(QCA8327_A_PHY_ID) }, |
| 1671 | { PHY_ID_MATCH_EXACT(QCA8327_B_PHY_ID) }, |
David Bauer | fada2ce | 2021-10-06 00:54:01 +0200 | [diff] [blame] | 1672 | { PHY_ID_MATCH_EXACT(QCA9561_PHY_ID) }, |
Luo Jie | daf6173 | 2021-10-24 16:27:29 +0800 | [diff] [blame] | 1673 | { PHY_ID_MATCH_EXACT(QCA8081_PHY_ID) }, |
Matus Ujhelyi | 0ca7111 | 2012-10-14 19:07:16 +0000 | [diff] [blame] | 1674 | { } |
| 1675 | }; |
| 1676 | |
| 1677 | MODULE_DEVICE_TABLE(mdio, atheros_tbl); |