xref: /openbmc/linux/drivers/net/phy/at803x.c (revision 7beecaf7)
1a2443fd1SAndrew Lunn // SPDX-License-Identifier: GPL-2.0+
20ca7111aSMatus Ujhelyi /*
30ca7111aSMatus Ujhelyi  * drivers/net/phy/at803x.c
40ca7111aSMatus Ujhelyi  *
596c36712SMichael Walle  * Driver for Qualcomm Atheros AR803x PHY
60ca7111aSMatus Ujhelyi  *
70ca7111aSMatus Ujhelyi  * Author: Matus Ujhelyi <ujhelyi.m@gmail.com>
80ca7111aSMatus Ujhelyi  */
90ca7111aSMatus Ujhelyi 
100ca7111aSMatus Ujhelyi #include <linux/phy.h>
110ca7111aSMatus Ujhelyi #include <linux/module.h>
120ca7111aSMatus Ujhelyi #include <linux/string.h>
130ca7111aSMatus Ujhelyi #include <linux/netdevice.h>
140ca7111aSMatus Ujhelyi #include <linux/etherdevice.h>
156cb75767SMichael Walle #include <linux/ethtool_netlink.h>
1613a56b44SDaniel Mack #include <linux/of_gpio.h>
172f664823SMichael Walle #include <linux/bitfield.h>
1813a56b44SDaniel Mack #include <linux/gpio/consumer.h>
192f664823SMichael Walle #include <linux/regulator/of_regulator.h>
202f664823SMichael Walle #include <linux/regulator/driver.h>
212f664823SMichael Walle #include <linux/regulator/consumer.h>
222f664823SMichael Walle #include <dt-bindings/net/qca-ar803x.h>
230ca7111aSMatus Ujhelyi 
247dce80c2SOleksij Rempel #define AT803X_SPECIFIC_FUNCTION_CONTROL	0x10
257dce80c2SOleksij Rempel #define AT803X_SFC_ASSERT_CRS			BIT(11)
267dce80c2SOleksij Rempel #define AT803X_SFC_FORCE_LINK			BIT(10)
277dce80c2SOleksij Rempel #define AT803X_SFC_MDI_CROSSOVER_MODE_M		GENMASK(6, 5)
287dce80c2SOleksij Rempel #define AT803X_SFC_AUTOMATIC_CROSSOVER		0x3
297dce80c2SOleksij Rempel #define AT803X_SFC_MANUAL_MDIX			0x1
307dce80c2SOleksij Rempel #define AT803X_SFC_MANUAL_MDI			0x0
317dce80c2SOleksij Rempel #define AT803X_SFC_SQE_TEST			BIT(2)
327dce80c2SOleksij Rempel #define AT803X_SFC_POLARITY_REVERSAL		BIT(1)
337dce80c2SOleksij Rempel #define AT803X_SFC_DISABLE_JABBER		BIT(0)
347dce80c2SOleksij Rempel 
3506d5f344SRussell King #define AT803X_SPECIFIC_STATUS			0x11
3606d5f344SRussell King #define AT803X_SS_SPEED_MASK			(3 << 14)
3706d5f344SRussell King #define AT803X_SS_SPEED_1000			(2 << 14)
3806d5f344SRussell King #define AT803X_SS_SPEED_100			(1 << 14)
3906d5f344SRussell King #define AT803X_SS_SPEED_10			(0 << 14)
4006d5f344SRussell King #define AT803X_SS_DUPLEX			BIT(13)
4106d5f344SRussell King #define AT803X_SS_SPEED_DUPLEX_RESOLVED		BIT(11)
4206d5f344SRussell King #define AT803X_SS_MDIX				BIT(6)
4306d5f344SRussell King 
440ca7111aSMatus Ujhelyi #define AT803X_INTR_ENABLE			0x12
45e6e4a556SMartin Blumenstingl #define AT803X_INTR_ENABLE_AUTONEG_ERR		BIT(15)
46e6e4a556SMartin Blumenstingl #define AT803X_INTR_ENABLE_SPEED_CHANGED	BIT(14)
47e6e4a556SMartin Blumenstingl #define AT803X_INTR_ENABLE_DUPLEX_CHANGED	BIT(13)
48e6e4a556SMartin Blumenstingl #define AT803X_INTR_ENABLE_PAGE_RECEIVED	BIT(12)
49e6e4a556SMartin Blumenstingl #define AT803X_INTR_ENABLE_LINK_FAIL		BIT(11)
50e6e4a556SMartin Blumenstingl #define AT803X_INTR_ENABLE_LINK_SUCCESS		BIT(10)
51e6e4a556SMartin Blumenstingl #define AT803X_INTR_ENABLE_WIRESPEED_DOWNGRADE	BIT(5)
52e6e4a556SMartin Blumenstingl #define AT803X_INTR_ENABLE_POLARITY_CHANGED	BIT(1)
53e6e4a556SMartin Blumenstingl #define AT803X_INTR_ENABLE_WOL			BIT(0)
54e6e4a556SMartin Blumenstingl 
550ca7111aSMatus Ujhelyi #define AT803X_INTR_STATUS			0x13
56a46bd63bSMartin Blumenstingl 
5713a56b44SDaniel Mack #define AT803X_SMART_SPEED			0x14
58cde0f4f8SMichael Walle #define AT803X_SMART_SPEED_ENABLE		BIT(5)
59cde0f4f8SMichael Walle #define AT803X_SMART_SPEED_RETRY_LIMIT_MASK	GENMASK(4, 2)
60cde0f4f8SMichael Walle #define AT803X_SMART_SPEED_BYPASS_TIMER		BIT(1)
616cb75767SMichael Walle #define AT803X_CDT				0x16
626cb75767SMichael Walle #define AT803X_CDT_MDI_PAIR_MASK		GENMASK(9, 8)
636cb75767SMichael Walle #define AT803X_CDT_ENABLE_TEST			BIT(0)
646cb75767SMichael Walle #define AT803X_CDT_STATUS			0x1c
656cb75767SMichael Walle #define AT803X_CDT_STATUS_STAT_NORMAL		0
666cb75767SMichael Walle #define AT803X_CDT_STATUS_STAT_SHORT		1
676cb75767SMichael Walle #define AT803X_CDT_STATUS_STAT_OPEN		2
686cb75767SMichael Walle #define AT803X_CDT_STATUS_STAT_FAIL		3
696cb75767SMichael Walle #define AT803X_CDT_STATUS_STAT_MASK		GENMASK(9, 8)
706cb75767SMichael Walle #define AT803X_CDT_STATUS_DELTA_TIME_MASK	GENMASK(7, 0)
7113a56b44SDaniel Mack #define AT803X_LED_CONTROL			0x18
72a46bd63bSMartin Blumenstingl 
73*7beecaf7SLuo Jie #define AT803X_PHY_MMD3_WOL_CTRL		0x8012
74*7beecaf7SLuo Jie #define AT803X_WOL_EN				BIT(5)
750ca7111aSMatus Ujhelyi #define AT803X_LOC_MAC_ADDR_0_15_OFFSET		0x804C
760ca7111aSMatus Ujhelyi #define AT803X_LOC_MAC_ADDR_16_31_OFFSET	0x804B
770ca7111aSMatus Ujhelyi #define AT803X_LOC_MAC_ADDR_32_47_OFFSET	0x804A
78f62265b5SZefir Kurtisi #define AT803X_REG_CHIP_CONFIG			0x1f
79f62265b5SZefir Kurtisi #define AT803X_BT_BX_REG_SEL			0x8000
80a46bd63bSMartin Blumenstingl 
811ca6d1b1SMugunthan V N #define AT803X_DEBUG_ADDR			0x1D
821ca6d1b1SMugunthan V N #define AT803X_DEBUG_DATA			0x1E
83a46bd63bSMartin Blumenstingl 
84f62265b5SZefir Kurtisi #define AT803X_MODE_CFG_MASK			0x0F
85f62265b5SZefir Kurtisi #define AT803X_MODE_CFG_SGMII			0x01
86f62265b5SZefir Kurtisi 
87f62265b5SZefir Kurtisi #define AT803X_PSSR				0x11	/*PHY-Specific Status Register*/
88f62265b5SZefir Kurtisi #define AT803X_PSSR_MR_AN_COMPLETE		0x0200
89f62265b5SZefir Kurtisi 
9067999555SAnsuel Smith #define AT803X_DEBUG_ANALOG_TEST_CTRL		0x00
911ca83119SAnsuel Smith #define QCA8327_DEBUG_MANU_CTRL_EN		BIT(2)
921ca83119SAnsuel Smith #define QCA8337_DEBUG_MANU_CTRL_EN		GENMASK(3, 2)
932e5f9f28SMartin Blumenstingl #define AT803X_DEBUG_RX_CLK_DLY_EN		BIT(15)
94a46bd63bSMartin Blumenstingl 
9567999555SAnsuel Smith #define AT803X_DEBUG_SYSTEM_CTRL_MODE		0x05
962e5f9f28SMartin Blumenstingl #define AT803X_DEBUG_TX_CLK_DLY_EN		BIT(8)
970ca7111aSMatus Ujhelyi 
98ba3c01eeSAnsuel Smith #define AT803X_DEBUG_REG_HIB_CTRL		0x0b
99ba3c01eeSAnsuel Smith #define   AT803X_DEBUG_HIB_CTRL_SEL_RST_80U	BIT(10)
100ba3c01eeSAnsuel Smith #define   AT803X_DEBUG_HIB_CTRL_EN_ANY_CHANGE	BIT(13)
101ba3c01eeSAnsuel Smith 
102272833b9SAnsuel Smith #define AT803X_DEBUG_REG_3C			0x3C
103272833b9SAnsuel Smith 
10467999555SAnsuel Smith #define AT803X_DEBUG_REG_GREEN			0x3D
105ba3c01eeSAnsuel Smith #define   AT803X_DEBUG_GATE_CLK_IN1000		BIT(6)
106272833b9SAnsuel Smith 
1072f664823SMichael Walle #define AT803X_DEBUG_REG_1F			0x1F
1082f664823SMichael Walle #define AT803X_DEBUG_PLL_ON			BIT(2)
1092f664823SMichael Walle #define AT803X_DEBUG_RGMII_1V8			BIT(3)
1102f664823SMichael Walle 
111272833b9SAnsuel Smith #define MDIO_AZ_DEBUG				0x800D
112272833b9SAnsuel Smith 
1132f664823SMichael Walle /* AT803x supports either the XTAL input pad, an internal PLL or the
1142f664823SMichael Walle  * DSP as clock reference for the clock output pad. The XTAL reference
1152f664823SMichael Walle  * is only used for 25 MHz output, all other frequencies need the PLL.
1162f664823SMichael Walle  * The DSP as a clock reference is used in synchronous ethernet
1172f664823SMichael Walle  * applications.
1182f664823SMichael Walle  *
1192f664823SMichael Walle  * By default the PLL is only enabled if there is a link. Otherwise
1202f664823SMichael Walle  * the PHY will go into low power state and disabled the PLL. You can
1212f664823SMichael Walle  * set the PLL_ON bit (see debug register 0x1f) to keep the PLL always
1222f664823SMichael Walle  * enabled.
1232f664823SMichael Walle  */
1242f664823SMichael Walle #define AT803X_MMD7_CLK25M			0x8016
1252f664823SMichael Walle #define AT803X_CLK_OUT_MASK			GENMASK(4, 2)
1262f664823SMichael Walle #define AT803X_CLK_OUT_25MHZ_XTAL		0
1272f664823SMichael Walle #define AT803X_CLK_OUT_25MHZ_DSP		1
1282f664823SMichael Walle #define AT803X_CLK_OUT_50MHZ_PLL		2
1292f664823SMichael Walle #define AT803X_CLK_OUT_50MHZ_DSP		3
1302f664823SMichael Walle #define AT803X_CLK_OUT_62_5MHZ_PLL		4
1312f664823SMichael Walle #define AT803X_CLK_OUT_62_5MHZ_DSP		5
1322f664823SMichael Walle #define AT803X_CLK_OUT_125MHZ_PLL		6
1332f664823SMichael Walle #define AT803X_CLK_OUT_125MHZ_DSP		7
1342f664823SMichael Walle 
135428061f7SMichael Walle /* The AR8035 has another mask which is compatible with the AR8031/AR8033 mask
136428061f7SMichael Walle  * but doesn't support choosing between XTAL/PLL and DSP.
1372f664823SMichael Walle  */
1382f664823SMichael Walle #define AT8035_CLK_OUT_MASK			GENMASK(4, 3)
1392f664823SMichael Walle 
1402f664823SMichael Walle #define AT803X_CLK_OUT_STRENGTH_MASK		GENMASK(8, 7)
1412f664823SMichael Walle #define AT803X_CLK_OUT_STRENGTH_FULL		0
1422f664823SMichael Walle #define AT803X_CLK_OUT_STRENGTH_HALF		1
1432f664823SMichael Walle #define AT803X_CLK_OUT_STRENGTH_QUARTER		2
1442f664823SMichael Walle 
145cde0f4f8SMichael Walle #define AT803X_DEFAULT_DOWNSHIFT		5
146cde0f4f8SMichael Walle #define AT803X_MIN_DOWNSHIFT			2
147cde0f4f8SMichael Walle #define AT803X_MAX_DOWNSHIFT			9
148cde0f4f8SMichael Walle 
149390b4cadSRussell King #define AT803X_MMD3_SMARTEEE_CTL1		0x805b
150390b4cadSRussell King #define AT803X_MMD3_SMARTEEE_CTL2		0x805c
151390b4cadSRussell King #define AT803X_MMD3_SMARTEEE_CTL3		0x805d
152390b4cadSRussell King #define AT803X_MMD3_SMARTEEE_CTL3_LPI_EN	BIT(8)
153390b4cadSRussell King 
1547908d2ceSOleksij Rempel #define ATH9331_PHY_ID				0x004dd041
155bd8ca17fSDaniel Mack #define ATH8030_PHY_ID				0x004dd076
156bd8ca17fSDaniel Mack #define ATH8031_PHY_ID				0x004dd074
1575800091aSDavid Bauer #define ATH8032_PHY_ID				0x004dd023
158bd8ca17fSDaniel Mack #define ATH8035_PHY_ID				0x004dd072
1590465d8f8SMichael Walle #define AT8030_PHY_ID_MASK			0xffffffef
160bd8ca17fSDaniel Mack 
161b4df02b5SAnsuel Smith #define QCA8327_A_PHY_ID			0x004dd033
162b4df02b5SAnsuel Smith #define QCA8327_B_PHY_ID			0x004dd034
163272833b9SAnsuel Smith #define QCA8337_PHY_ID				0x004dd036
164fada2ce0SDavid Bauer #define QCA9561_PHY_ID				0x004dd042
165272833b9SAnsuel Smith #define QCA8K_PHY_ID_MASK			0xffffffff
166272833b9SAnsuel Smith 
167272833b9SAnsuel Smith #define QCA8K_DEVFLAGS_REVISION_MASK		GENMASK(2, 0)
168272833b9SAnsuel Smith 
169c329e5afSDavid Bauer #define AT803X_PAGE_FIBER			0
170c329e5afSDavid Bauer #define AT803X_PAGE_COPPER			1
171c329e5afSDavid Bauer 
172d0e13fd5SAnsuel Smith /* don't turn off internal PLL */
173d0e13fd5SAnsuel Smith #define AT803X_KEEP_PLL_ENABLED			BIT(0)
174d0e13fd5SAnsuel Smith #define AT803X_DISABLE_SMARTEEE			BIT(1)
175d0e13fd5SAnsuel Smith 
17696c36712SMichael Walle MODULE_DESCRIPTION("Qualcomm Atheros AR803x PHY driver");
1770ca7111aSMatus Ujhelyi MODULE_AUTHOR("Matus Ujhelyi");
1780ca7111aSMatus Ujhelyi MODULE_LICENSE("GPL");
1790ca7111aSMatus Ujhelyi 
180272833b9SAnsuel Smith enum stat_access_type {
181272833b9SAnsuel Smith 	PHY,
182272833b9SAnsuel Smith 	MMD
183272833b9SAnsuel Smith };
184272833b9SAnsuel Smith 
185272833b9SAnsuel Smith struct at803x_hw_stat {
186272833b9SAnsuel Smith 	const char *string;
187272833b9SAnsuel Smith 	u8 reg;
188272833b9SAnsuel Smith 	u32 mask;
189272833b9SAnsuel Smith 	enum stat_access_type access_type;
190272833b9SAnsuel Smith };
191272833b9SAnsuel Smith 
192272833b9SAnsuel Smith static struct at803x_hw_stat at803x_hw_stats[] = {
193272833b9SAnsuel Smith 	{ "phy_idle_errors", 0xa, GENMASK(7, 0), PHY},
194272833b9SAnsuel Smith 	{ "phy_receive_errors", 0x15, GENMASK(15, 0), PHY},
195272833b9SAnsuel Smith 	{ "eee_wake_errors", 0x16, GENMASK(15, 0), MMD},
196272833b9SAnsuel Smith };
197272833b9SAnsuel Smith 
1982f664823SMichael Walle struct at803x_priv {
1992f664823SMichael Walle 	int flags;
2002f664823SMichael Walle 	u16 clk_25m_reg;
2012f664823SMichael Walle 	u16 clk_25m_mask;
202390b4cadSRussell King 	u8 smarteee_lpi_tw_1g;
203390b4cadSRussell King 	u8 smarteee_lpi_tw_100m;
2042f664823SMichael Walle 	struct regulator_dev *vddio_rdev;
2052f664823SMichael Walle 	struct regulator_dev *vddh_rdev;
2062f664823SMichael Walle 	struct regulator *vddio;
207272833b9SAnsuel Smith 	u64 stats[ARRAY_SIZE(at803x_hw_stats)];
2082f664823SMichael Walle };
2092f664823SMichael Walle 
21013a56b44SDaniel Mack struct at803x_context {
21113a56b44SDaniel Mack 	u16 bmcr;
21213a56b44SDaniel Mack 	u16 advertise;
21313a56b44SDaniel Mack 	u16 control1000;
21413a56b44SDaniel Mack 	u16 int_enable;
21513a56b44SDaniel Mack 	u16 smart_speed;
21613a56b44SDaniel Mack 	u16 led_control;
21713a56b44SDaniel Mack };
21813a56b44SDaniel Mack 
219272833b9SAnsuel Smith static int at803x_debug_reg_write(struct phy_device *phydev, u16 reg, u16 data)
220272833b9SAnsuel Smith {
221272833b9SAnsuel Smith 	int ret;
222272833b9SAnsuel Smith 
223272833b9SAnsuel Smith 	ret = phy_write(phydev, AT803X_DEBUG_ADDR, reg);
224272833b9SAnsuel Smith 	if (ret < 0)
225272833b9SAnsuel Smith 		return ret;
226272833b9SAnsuel Smith 
227272833b9SAnsuel Smith 	return phy_write(phydev, AT803X_DEBUG_DATA, data);
228272833b9SAnsuel Smith }
229272833b9SAnsuel Smith 
2302e5f9f28SMartin Blumenstingl static int at803x_debug_reg_read(struct phy_device *phydev, u16 reg)
2312e5f9f28SMartin Blumenstingl {
2322e5f9f28SMartin Blumenstingl 	int ret;
2332e5f9f28SMartin Blumenstingl 
2342e5f9f28SMartin Blumenstingl 	ret = phy_write(phydev, AT803X_DEBUG_ADDR, reg);
2352e5f9f28SMartin Blumenstingl 	if (ret < 0)
2362e5f9f28SMartin Blumenstingl 		return ret;
2372e5f9f28SMartin Blumenstingl 
2382e5f9f28SMartin Blumenstingl 	return phy_read(phydev, AT803X_DEBUG_DATA);
2392e5f9f28SMartin Blumenstingl }
2402e5f9f28SMartin Blumenstingl 
2412e5f9f28SMartin Blumenstingl static int at803x_debug_reg_mask(struct phy_device *phydev, u16 reg,
2422e5f9f28SMartin Blumenstingl 				 u16 clear, u16 set)
2432e5f9f28SMartin Blumenstingl {
2442e5f9f28SMartin Blumenstingl 	u16 val;
2452e5f9f28SMartin Blumenstingl 	int ret;
2462e5f9f28SMartin Blumenstingl 
2472e5f9f28SMartin Blumenstingl 	ret = at803x_debug_reg_read(phydev, reg);
2482e5f9f28SMartin Blumenstingl 	if (ret < 0)
2492e5f9f28SMartin Blumenstingl 		return ret;
2502e5f9f28SMartin Blumenstingl 
2512e5f9f28SMartin Blumenstingl 	val = ret & 0xffff;
2522e5f9f28SMartin Blumenstingl 	val &= ~clear;
2532e5f9f28SMartin Blumenstingl 	val |= set;
2542e5f9f28SMartin Blumenstingl 
2552e5f9f28SMartin Blumenstingl 	return phy_write(phydev, AT803X_DEBUG_DATA, val);
2562e5f9f28SMartin Blumenstingl }
2572e5f9f28SMartin Blumenstingl 
258c329e5afSDavid Bauer static int at803x_write_page(struct phy_device *phydev, int page)
259c329e5afSDavid Bauer {
260c329e5afSDavid Bauer 	int mask;
261c329e5afSDavid Bauer 	int set;
262c329e5afSDavid Bauer 
263c329e5afSDavid Bauer 	if (page == AT803X_PAGE_COPPER) {
264c329e5afSDavid Bauer 		set = AT803X_BT_BX_REG_SEL;
265c329e5afSDavid Bauer 		mask = 0;
266c329e5afSDavid Bauer 	} else {
267c329e5afSDavid Bauer 		set = 0;
268c329e5afSDavid Bauer 		mask = AT803X_BT_BX_REG_SEL;
269c329e5afSDavid Bauer 	}
270c329e5afSDavid Bauer 
271c329e5afSDavid Bauer 	return __phy_modify(phydev, AT803X_REG_CHIP_CONFIG, mask, set);
272c329e5afSDavid Bauer }
273c329e5afSDavid Bauer 
274c329e5afSDavid Bauer static int at803x_read_page(struct phy_device *phydev)
275c329e5afSDavid Bauer {
276c329e5afSDavid Bauer 	int ccr = __phy_read(phydev, AT803X_REG_CHIP_CONFIG);
277c329e5afSDavid Bauer 
278c329e5afSDavid Bauer 	if (ccr < 0)
279c329e5afSDavid Bauer 		return ccr;
280c329e5afSDavid Bauer 
281c329e5afSDavid Bauer 	if (ccr & AT803X_BT_BX_REG_SEL)
282c329e5afSDavid Bauer 		return AT803X_PAGE_COPPER;
283c329e5afSDavid Bauer 
284c329e5afSDavid Bauer 	return AT803X_PAGE_FIBER;
285c329e5afSDavid Bauer }
286c329e5afSDavid Bauer 
2876d4cd041SVinod Koul static int at803x_enable_rx_delay(struct phy_device *phydev)
2886d4cd041SVinod Koul {
28967999555SAnsuel Smith 	return at803x_debug_reg_mask(phydev, AT803X_DEBUG_ANALOG_TEST_CTRL, 0,
2906d4cd041SVinod Koul 				     AT803X_DEBUG_RX_CLK_DLY_EN);
2916d4cd041SVinod Koul }
2926d4cd041SVinod Koul 
2936d4cd041SVinod Koul static int at803x_enable_tx_delay(struct phy_device *phydev)
2946d4cd041SVinod Koul {
29567999555SAnsuel Smith 	return at803x_debug_reg_mask(phydev, AT803X_DEBUG_SYSTEM_CTRL_MODE, 0,
2966d4cd041SVinod Koul 				     AT803X_DEBUG_TX_CLK_DLY_EN);
2976d4cd041SVinod Koul }
2986d4cd041SVinod Koul 
29943f2ebd5SVinod Koul static int at803x_disable_rx_delay(struct phy_device *phydev)
3002e5f9f28SMartin Blumenstingl {
30167999555SAnsuel Smith 	return at803x_debug_reg_mask(phydev, AT803X_DEBUG_ANALOG_TEST_CTRL,
302cd28d1d6SVinod Koul 				     AT803X_DEBUG_RX_CLK_DLY_EN, 0);
3032e5f9f28SMartin Blumenstingl }
3042e5f9f28SMartin Blumenstingl 
30543f2ebd5SVinod Koul static int at803x_disable_tx_delay(struct phy_device *phydev)
3062e5f9f28SMartin Blumenstingl {
30767999555SAnsuel Smith 	return at803x_debug_reg_mask(phydev, AT803X_DEBUG_SYSTEM_CTRL_MODE,
308cd28d1d6SVinod Koul 				     AT803X_DEBUG_TX_CLK_DLY_EN, 0);
3092e5f9f28SMartin Blumenstingl }
3102e5f9f28SMartin Blumenstingl 
31113a56b44SDaniel Mack /* save relevant PHY registers to private copy */
31213a56b44SDaniel Mack static void at803x_context_save(struct phy_device *phydev,
31313a56b44SDaniel Mack 				struct at803x_context *context)
31413a56b44SDaniel Mack {
31513a56b44SDaniel Mack 	context->bmcr = phy_read(phydev, MII_BMCR);
31613a56b44SDaniel Mack 	context->advertise = phy_read(phydev, MII_ADVERTISE);
31713a56b44SDaniel Mack 	context->control1000 = phy_read(phydev, MII_CTRL1000);
31813a56b44SDaniel Mack 	context->int_enable = phy_read(phydev, AT803X_INTR_ENABLE);
31913a56b44SDaniel Mack 	context->smart_speed = phy_read(phydev, AT803X_SMART_SPEED);
32013a56b44SDaniel Mack 	context->led_control = phy_read(phydev, AT803X_LED_CONTROL);
32113a56b44SDaniel Mack }
32213a56b44SDaniel Mack 
32313a56b44SDaniel Mack /* restore relevant PHY registers from private copy */
32413a56b44SDaniel Mack static void at803x_context_restore(struct phy_device *phydev,
32513a56b44SDaniel Mack 				   const struct at803x_context *context)
32613a56b44SDaniel Mack {
32713a56b44SDaniel Mack 	phy_write(phydev, MII_BMCR, context->bmcr);
32813a56b44SDaniel Mack 	phy_write(phydev, MII_ADVERTISE, context->advertise);
32913a56b44SDaniel Mack 	phy_write(phydev, MII_CTRL1000, context->control1000);
33013a56b44SDaniel Mack 	phy_write(phydev, AT803X_INTR_ENABLE, context->int_enable);
33113a56b44SDaniel Mack 	phy_write(phydev, AT803X_SMART_SPEED, context->smart_speed);
33213a56b44SDaniel Mack 	phy_write(phydev, AT803X_LED_CONTROL, context->led_control);
33313a56b44SDaniel Mack }
33413a56b44SDaniel Mack 
335ea13c9eeSMugunthan V N static int at803x_set_wol(struct phy_device *phydev,
336ea13c9eeSMugunthan V N 			  struct ethtool_wolinfo *wol)
3370ca7111aSMatus Ujhelyi {
3380ca7111aSMatus Ujhelyi 	struct net_device *ndev = phydev->attached_dev;
3390ca7111aSMatus Ujhelyi 	const u8 *mac;
340*7beecaf7SLuo Jie 	int ret, irq_enabled;
341c0f0b563SLuo Jie 	unsigned int i;
342c0f0b563SLuo Jie 	const unsigned int offsets[] = {
3430ca7111aSMatus Ujhelyi 		AT803X_LOC_MAC_ADDR_32_47_OFFSET,
3440ca7111aSMatus Ujhelyi 		AT803X_LOC_MAC_ADDR_16_31_OFFSET,
3450ca7111aSMatus Ujhelyi 		AT803X_LOC_MAC_ADDR_0_15_OFFSET,
3460ca7111aSMatus Ujhelyi 	};
3470ca7111aSMatus Ujhelyi 
3480ca7111aSMatus Ujhelyi 	if (!ndev)
349ea13c9eeSMugunthan V N 		return -ENODEV;
3500ca7111aSMatus Ujhelyi 
351ea13c9eeSMugunthan V N 	if (wol->wolopts & WAKE_MAGIC) {
3520ca7111aSMatus Ujhelyi 		mac = (const u8 *) ndev->dev_addr;
3530ca7111aSMatus Ujhelyi 
3540ca7111aSMatus Ujhelyi 		if (!is_valid_ether_addr(mac))
355fc755687SDan Murphy 			return -EINVAL;
3560ca7111aSMatus Ujhelyi 
3570e021396SCarlo Caione 		for (i = 0; i < 3; i++)
358c0f0b563SLuo Jie 			phy_write_mmd(phydev, MDIO_MMD_PCS, offsets[i],
3590ca7111aSMatus Ujhelyi 				      mac[(i * 2) + 1] | (mac[(i * 2)] << 8));
360ea13c9eeSMugunthan V N 
361*7beecaf7SLuo Jie 		/* Enable WOL function */
362*7beecaf7SLuo Jie 		ret = phy_modify_mmd(phydev, MDIO_MMD_PCS, AT803X_PHY_MMD3_WOL_CTRL,
363*7beecaf7SLuo Jie 				0, AT803X_WOL_EN);
364*7beecaf7SLuo Jie 		if (ret)
365*7beecaf7SLuo Jie 			return ret;
366*7beecaf7SLuo Jie 		/* Enable WOL interrupt */
3672d4284e8SLuo Jie 		ret = phy_modify(phydev, AT803X_INTR_ENABLE, 0, AT803X_INTR_ENABLE_WOL);
368ea13c9eeSMugunthan V N 		if (ret)
369ea13c9eeSMugunthan V N 			return ret;
370ea13c9eeSMugunthan V N 	} else {
371*7beecaf7SLuo Jie 		/* Disable WoL function */
372*7beecaf7SLuo Jie 		ret = phy_modify_mmd(phydev, MDIO_MMD_PCS, AT803X_PHY_MMD3_WOL_CTRL,
373*7beecaf7SLuo Jie 				AT803X_WOL_EN, 0);
374*7beecaf7SLuo Jie 		if (ret)
375*7beecaf7SLuo Jie 			return ret;
376*7beecaf7SLuo Jie 		/* Disable WOL interrupt */
3772d4284e8SLuo Jie 		ret = phy_modify(phydev, AT803X_INTR_ENABLE, AT803X_INTR_ENABLE_WOL, 0);
378ea13c9eeSMugunthan V N 		if (ret)
379ea13c9eeSMugunthan V N 			return ret;
380ea13c9eeSMugunthan V N 	}
381ea13c9eeSMugunthan V N 
382*7beecaf7SLuo Jie 	/* Clear WOL status */
383*7beecaf7SLuo Jie 	ret = phy_read(phydev, AT803X_INTR_STATUS);
384*7beecaf7SLuo Jie 	if (ret < 0)
385ea13c9eeSMugunthan V N 		return ret;
386*7beecaf7SLuo Jie 
387*7beecaf7SLuo Jie 	/* Check if there are other interrupts except for WOL triggered when PHY is
388*7beecaf7SLuo Jie 	 * in interrupt mode, only the interrupts enabled by AT803X_INTR_ENABLE can
389*7beecaf7SLuo Jie 	 * be passed up to the interrupt PIN.
390*7beecaf7SLuo Jie 	 */
391*7beecaf7SLuo Jie 	irq_enabled = phy_read(phydev, AT803X_INTR_ENABLE);
392*7beecaf7SLuo Jie 	if (irq_enabled < 0)
393*7beecaf7SLuo Jie 		return irq_enabled;
394*7beecaf7SLuo Jie 
395*7beecaf7SLuo Jie 	irq_enabled &= ~AT803X_INTR_ENABLE_WOL;
396*7beecaf7SLuo Jie 	if (ret & irq_enabled && !phy_polling_mode(phydev))
397*7beecaf7SLuo Jie 		phy_trigger_machine(phydev);
398*7beecaf7SLuo Jie 
399*7beecaf7SLuo Jie 	return 0;
400ea13c9eeSMugunthan V N }
401ea13c9eeSMugunthan V N 
402ea13c9eeSMugunthan V N static void at803x_get_wol(struct phy_device *phydev,
403ea13c9eeSMugunthan V N 			   struct ethtool_wolinfo *wol)
404ea13c9eeSMugunthan V N {
405ea13c9eeSMugunthan V N 	u32 value;
406ea13c9eeSMugunthan V N 
407ea13c9eeSMugunthan V N 	wol->supported = WAKE_MAGIC;
408ea13c9eeSMugunthan V N 	wol->wolopts = 0;
409ea13c9eeSMugunthan V N 
410*7beecaf7SLuo Jie 	value = phy_read_mmd(phydev, MDIO_MMD_PCS, AT803X_PHY_MMD3_WOL_CTRL);
411*7beecaf7SLuo Jie 	if (value < 0)
412*7beecaf7SLuo Jie 		return;
413*7beecaf7SLuo Jie 
414*7beecaf7SLuo Jie 	if (value & AT803X_WOL_EN)
415ea13c9eeSMugunthan V N 		wol->wolopts |= WAKE_MAGIC;
4160ca7111aSMatus Ujhelyi }
4170ca7111aSMatus Ujhelyi 
418272833b9SAnsuel Smith static int at803x_get_sset_count(struct phy_device *phydev)
419272833b9SAnsuel Smith {
420272833b9SAnsuel Smith 	return ARRAY_SIZE(at803x_hw_stats);
421272833b9SAnsuel Smith }
422272833b9SAnsuel Smith 
423272833b9SAnsuel Smith static void at803x_get_strings(struct phy_device *phydev, u8 *data)
424272833b9SAnsuel Smith {
425272833b9SAnsuel Smith 	int i;
426272833b9SAnsuel Smith 
427272833b9SAnsuel Smith 	for (i = 0; i < ARRAY_SIZE(at803x_hw_stats); i++) {
428272833b9SAnsuel Smith 		strscpy(data + i * ETH_GSTRING_LEN,
429272833b9SAnsuel Smith 			at803x_hw_stats[i].string, ETH_GSTRING_LEN);
430272833b9SAnsuel Smith 	}
431272833b9SAnsuel Smith }
432272833b9SAnsuel Smith 
433272833b9SAnsuel Smith static u64 at803x_get_stat(struct phy_device *phydev, int i)
434272833b9SAnsuel Smith {
435272833b9SAnsuel Smith 	struct at803x_hw_stat stat = at803x_hw_stats[i];
436272833b9SAnsuel Smith 	struct at803x_priv *priv = phydev->priv;
437272833b9SAnsuel Smith 	int val;
438272833b9SAnsuel Smith 	u64 ret;
439272833b9SAnsuel Smith 
440272833b9SAnsuel Smith 	if (stat.access_type == MMD)
441272833b9SAnsuel Smith 		val = phy_read_mmd(phydev, MDIO_MMD_PCS, stat.reg);
442272833b9SAnsuel Smith 	else
443272833b9SAnsuel Smith 		val = phy_read(phydev, stat.reg);
444272833b9SAnsuel Smith 
445272833b9SAnsuel Smith 	if (val < 0) {
446272833b9SAnsuel Smith 		ret = U64_MAX;
447272833b9SAnsuel Smith 	} else {
448272833b9SAnsuel Smith 		val = val & stat.mask;
449272833b9SAnsuel Smith 		priv->stats[i] += val;
450272833b9SAnsuel Smith 		ret = priv->stats[i];
451272833b9SAnsuel Smith 	}
452272833b9SAnsuel Smith 
453272833b9SAnsuel Smith 	return ret;
454272833b9SAnsuel Smith }
455272833b9SAnsuel Smith 
456272833b9SAnsuel Smith static void at803x_get_stats(struct phy_device *phydev,
457272833b9SAnsuel Smith 			     struct ethtool_stats *stats, u64 *data)
458272833b9SAnsuel Smith {
459272833b9SAnsuel Smith 	int i;
460272833b9SAnsuel Smith 
461272833b9SAnsuel Smith 	for (i = 0; i < ARRAY_SIZE(at803x_hw_stats); i++)
462272833b9SAnsuel Smith 		data[i] = at803x_get_stat(phydev, i);
463272833b9SAnsuel Smith }
464272833b9SAnsuel Smith 
4656229ed1fSDaniel Mack static int at803x_suspend(struct phy_device *phydev)
4666229ed1fSDaniel Mack {
4676229ed1fSDaniel Mack 	int value;
4686229ed1fSDaniel Mack 	int wol_enabled;
4696229ed1fSDaniel Mack 
4706229ed1fSDaniel Mack 	value = phy_read(phydev, AT803X_INTR_ENABLE);
471e6e4a556SMartin Blumenstingl 	wol_enabled = value & AT803X_INTR_ENABLE_WOL;
4726229ed1fSDaniel Mack 
4736229ed1fSDaniel Mack 	if (wol_enabled)
474fea23fb5SRussell King 		value = BMCR_ISOLATE;
4756229ed1fSDaniel Mack 	else
476fea23fb5SRussell King 		value = BMCR_PDOWN;
4776229ed1fSDaniel Mack 
478fea23fb5SRussell King 	phy_modify(phydev, MII_BMCR, 0, value);
4796229ed1fSDaniel Mack 
4806229ed1fSDaniel Mack 	return 0;
4816229ed1fSDaniel Mack }
4826229ed1fSDaniel Mack 
4836229ed1fSDaniel Mack static int at803x_resume(struct phy_device *phydev)
4846229ed1fSDaniel Mack {
485f102852fSRussell King 	return phy_modify(phydev, MII_BMCR, BMCR_PDOWN | BMCR_ISOLATE, 0);
4866229ed1fSDaniel Mack }
4876229ed1fSDaniel Mack 
4882f664823SMichael Walle static int at803x_rgmii_reg_set_voltage_sel(struct regulator_dev *rdev,
4892f664823SMichael Walle 					    unsigned int selector)
4902f664823SMichael Walle {
4912f664823SMichael Walle 	struct phy_device *phydev = rdev_get_drvdata(rdev);
4922f664823SMichael Walle 
4932f664823SMichael Walle 	if (selector)
4942f664823SMichael Walle 		return at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_1F,
4952f664823SMichael Walle 					     0, AT803X_DEBUG_RGMII_1V8);
4962f664823SMichael Walle 	else
4972f664823SMichael Walle 		return at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_1F,
4982f664823SMichael Walle 					     AT803X_DEBUG_RGMII_1V8, 0);
4992f664823SMichael Walle }
5002f664823SMichael Walle 
5012f664823SMichael Walle static int at803x_rgmii_reg_get_voltage_sel(struct regulator_dev *rdev)
5022f664823SMichael Walle {
5032f664823SMichael Walle 	struct phy_device *phydev = rdev_get_drvdata(rdev);
5042f664823SMichael Walle 	int val;
5052f664823SMichael Walle 
5062f664823SMichael Walle 	val = at803x_debug_reg_read(phydev, AT803X_DEBUG_REG_1F);
5072f664823SMichael Walle 	if (val < 0)
5082f664823SMichael Walle 		return val;
5092f664823SMichael Walle 
5102f664823SMichael Walle 	return (val & AT803X_DEBUG_RGMII_1V8) ? 1 : 0;
5112f664823SMichael Walle }
5122f664823SMichael Walle 
5133faaf539SRikard Falkeborn static const struct regulator_ops vddio_regulator_ops = {
5142f664823SMichael Walle 	.list_voltage = regulator_list_voltage_table,
5152f664823SMichael Walle 	.set_voltage_sel = at803x_rgmii_reg_set_voltage_sel,
5162f664823SMichael Walle 	.get_voltage_sel = at803x_rgmii_reg_get_voltage_sel,
5172f664823SMichael Walle };
5182f664823SMichael Walle 
5192f664823SMichael Walle static const unsigned int vddio_voltage_table[] = {
5202f664823SMichael Walle 	1500000,
5212f664823SMichael Walle 	1800000,
5222f664823SMichael Walle };
5232f664823SMichael Walle 
5242f664823SMichael Walle static const struct regulator_desc vddio_desc = {
5252f664823SMichael Walle 	.name = "vddio",
5262f664823SMichael Walle 	.of_match = of_match_ptr("vddio-regulator"),
5272f664823SMichael Walle 	.n_voltages = ARRAY_SIZE(vddio_voltage_table),
5282f664823SMichael Walle 	.volt_table = vddio_voltage_table,
5292f664823SMichael Walle 	.ops = &vddio_regulator_ops,
5302f664823SMichael Walle 	.type = REGULATOR_VOLTAGE,
5312f664823SMichael Walle 	.owner = THIS_MODULE,
5322f664823SMichael Walle };
5332f664823SMichael Walle 
5343faaf539SRikard Falkeborn static const struct regulator_ops vddh_regulator_ops = {
5352f664823SMichael Walle };
5362f664823SMichael Walle 
5372f664823SMichael Walle static const struct regulator_desc vddh_desc = {
5382f664823SMichael Walle 	.name = "vddh",
5392f664823SMichael Walle 	.of_match = of_match_ptr("vddh-regulator"),
5402f664823SMichael Walle 	.n_voltages = 1,
5412f664823SMichael Walle 	.fixed_uV = 2500000,
5422f664823SMichael Walle 	.ops = &vddh_regulator_ops,
5432f664823SMichael Walle 	.type = REGULATOR_VOLTAGE,
5442f664823SMichael Walle 	.owner = THIS_MODULE,
5452f664823SMichael Walle };
5462f664823SMichael Walle 
5472f664823SMichael Walle static int at8031_register_regulators(struct phy_device *phydev)
5482f664823SMichael Walle {
5492f664823SMichael Walle 	struct at803x_priv *priv = phydev->priv;
5502f664823SMichael Walle 	struct device *dev = &phydev->mdio.dev;
5512f664823SMichael Walle 	struct regulator_config config = { };
5522f664823SMichael Walle 
5532f664823SMichael Walle 	config.dev = dev;
5542f664823SMichael Walle 	config.driver_data = phydev;
5552f664823SMichael Walle 
5562f664823SMichael Walle 	priv->vddio_rdev = devm_regulator_register(dev, &vddio_desc, &config);
5572f664823SMichael Walle 	if (IS_ERR(priv->vddio_rdev)) {
5582f664823SMichael Walle 		phydev_err(phydev, "failed to register VDDIO regulator\n");
5592f664823SMichael Walle 		return PTR_ERR(priv->vddio_rdev);
5602f664823SMichael Walle 	}
5612f664823SMichael Walle 
5622f664823SMichael Walle 	priv->vddh_rdev = devm_regulator_register(dev, &vddh_desc, &config);
5632f664823SMichael Walle 	if (IS_ERR(priv->vddh_rdev)) {
5642f664823SMichael Walle 		phydev_err(phydev, "failed to register VDDH regulator\n");
5652f664823SMichael Walle 		return PTR_ERR(priv->vddh_rdev);
5662f664823SMichael Walle 	}
5672f664823SMichael Walle 
5682f664823SMichael Walle 	return 0;
5692f664823SMichael Walle }
5702f664823SMichael Walle 
5712f664823SMichael Walle static int at803x_parse_dt(struct phy_device *phydev)
5722f664823SMichael Walle {
5732f664823SMichael Walle 	struct device_node *node = phydev->mdio.dev.of_node;
5742f664823SMichael Walle 	struct at803x_priv *priv = phydev->priv;
575390b4cadSRussell King 	u32 freq, strength, tw;
5763f2edd30SAndrew Lunn 	unsigned int sel;
5772f664823SMichael Walle 	int ret;
5782f664823SMichael Walle 
5792f664823SMichael Walle 	if (!IS_ENABLED(CONFIG_OF_MDIO))
5802f664823SMichael Walle 		return 0;
5812f664823SMichael Walle 
582390b4cadSRussell King 	if (of_property_read_bool(node, "qca,disable-smarteee"))
583390b4cadSRussell King 		priv->flags |= AT803X_DISABLE_SMARTEEE;
584390b4cadSRussell King 
585390b4cadSRussell King 	if (!of_property_read_u32(node, "qca,smarteee-tw-us-1g", &tw)) {
586390b4cadSRussell King 		if (!tw || tw > 255) {
587390b4cadSRussell King 			phydev_err(phydev, "invalid qca,smarteee-tw-us-1g\n");
588390b4cadSRussell King 			return -EINVAL;
589390b4cadSRussell King 		}
590390b4cadSRussell King 		priv->smarteee_lpi_tw_1g = tw;
591390b4cadSRussell King 	}
592390b4cadSRussell King 
593390b4cadSRussell King 	if (!of_property_read_u32(node, "qca,smarteee-tw-us-100m", &tw)) {
594390b4cadSRussell King 		if (!tw || tw > 255) {
595390b4cadSRussell King 			phydev_err(phydev, "invalid qca,smarteee-tw-us-100m\n");
596390b4cadSRussell King 			return -EINVAL;
597390b4cadSRussell King 		}
598390b4cadSRussell King 		priv->smarteee_lpi_tw_100m = tw;
599390b4cadSRussell King 	}
600390b4cadSRussell King 
6012f664823SMichael Walle 	ret = of_property_read_u32(node, "qca,clk-out-frequency", &freq);
6022f664823SMichael Walle 	if (!ret) {
6032f664823SMichael Walle 		switch (freq) {
6042f664823SMichael Walle 		case 25000000:
6052f664823SMichael Walle 			sel = AT803X_CLK_OUT_25MHZ_XTAL;
6062f664823SMichael Walle 			break;
6072f664823SMichael Walle 		case 50000000:
6082f664823SMichael Walle 			sel = AT803X_CLK_OUT_50MHZ_PLL;
6092f664823SMichael Walle 			break;
6102f664823SMichael Walle 		case 62500000:
6112f664823SMichael Walle 			sel = AT803X_CLK_OUT_62_5MHZ_PLL;
6122f664823SMichael Walle 			break;
6132f664823SMichael Walle 		case 125000000:
6142f664823SMichael Walle 			sel = AT803X_CLK_OUT_125MHZ_PLL;
6152f664823SMichael Walle 			break;
6162f664823SMichael Walle 		default:
6172f664823SMichael Walle 			phydev_err(phydev, "invalid qca,clk-out-frequency\n");
6182f664823SMichael Walle 			return -EINVAL;
6192f664823SMichael Walle 		}
6202f664823SMichael Walle 
6213f2edd30SAndrew Lunn 		priv->clk_25m_reg |= FIELD_PREP(AT803X_CLK_OUT_MASK, sel);
6223f2edd30SAndrew Lunn 		priv->clk_25m_mask |= AT803X_CLK_OUT_MASK;
6232f664823SMichael Walle 
6242f664823SMichael Walle 		/* Fixup for the AR8030/AR8035. This chip has another mask and
6252f664823SMichael Walle 		 * doesn't support the DSP reference. Eg. the lowest bit of the
6262f664823SMichael Walle 		 * mask. The upper two bits select the same frequencies. Mask
6272f664823SMichael Walle 		 * the lowest bit here.
6282f664823SMichael Walle 		 *
6292f664823SMichael Walle 		 * Warning:
6302f664823SMichael Walle 		 *   There was no datasheet for the AR8030 available so this is
6312f664823SMichael Walle 		 *   just a guess. But the AR8035 is listed as pin compatible
6322f664823SMichael Walle 		 *   to the AR8030 so there might be a good chance it works on
6332f664823SMichael Walle 		 *   the AR8030 too.
6342f664823SMichael Walle 		 */
6358887ca54SRussell King 		if (phydev->drv->phy_id == ATH8030_PHY_ID ||
6368887ca54SRussell King 		    phydev->drv->phy_id == ATH8035_PHY_ID) {
637b1f4c209SOleksij Rempel 			priv->clk_25m_reg &= AT8035_CLK_OUT_MASK;
638b1f4c209SOleksij Rempel 			priv->clk_25m_mask &= AT8035_CLK_OUT_MASK;
6392f664823SMichael Walle 		}
6402f664823SMichael Walle 	}
6412f664823SMichael Walle 
6422f664823SMichael Walle 	ret = of_property_read_u32(node, "qca,clk-out-strength", &strength);
6432f664823SMichael Walle 	if (!ret) {
6442f664823SMichael Walle 		priv->clk_25m_mask |= AT803X_CLK_OUT_STRENGTH_MASK;
6452f664823SMichael Walle 		switch (strength) {
6462f664823SMichael Walle 		case AR803X_STRENGTH_FULL:
6472f664823SMichael Walle 			priv->clk_25m_reg |= AT803X_CLK_OUT_STRENGTH_FULL;
6482f664823SMichael Walle 			break;
6492f664823SMichael Walle 		case AR803X_STRENGTH_HALF:
6502f664823SMichael Walle 			priv->clk_25m_reg |= AT803X_CLK_OUT_STRENGTH_HALF;
6512f664823SMichael Walle 			break;
6522f664823SMichael Walle 		case AR803X_STRENGTH_QUARTER:
6532f664823SMichael Walle 			priv->clk_25m_reg |= AT803X_CLK_OUT_STRENGTH_QUARTER;
6542f664823SMichael Walle 			break;
6552f664823SMichael Walle 		default:
6562f664823SMichael Walle 			phydev_err(phydev, "invalid qca,clk-out-strength\n");
6572f664823SMichael Walle 			return -EINVAL;
6582f664823SMichael Walle 		}
6592f664823SMichael Walle 	}
6602f664823SMichael Walle 
661428061f7SMichael Walle 	/* Only supported on AR8031/AR8033, the AR8030/AR8035 use strapping
662428061f7SMichael Walle 	 * options.
663428061f7SMichael Walle 	 */
6648887ca54SRussell King 	if (phydev->drv->phy_id == ATH8031_PHY_ID) {
6652f664823SMichael Walle 		if (of_property_read_bool(node, "qca,keep-pll-enabled"))
6662f664823SMichael Walle 			priv->flags |= AT803X_KEEP_PLL_ENABLED;
6672f664823SMichael Walle 
6682f664823SMichael Walle 		ret = at8031_register_regulators(phydev);
6692f664823SMichael Walle 		if (ret < 0)
6702f664823SMichael Walle 			return ret;
6712f664823SMichael Walle 
6722f664823SMichael Walle 		priv->vddio = devm_regulator_get_optional(&phydev->mdio.dev,
6732f664823SMichael Walle 							  "vddio");
6742f664823SMichael Walle 		if (IS_ERR(priv->vddio)) {
6752f664823SMichael Walle 			phydev_err(phydev, "failed to get VDDIO regulator\n");
6762f664823SMichael Walle 			return PTR_ERR(priv->vddio);
6772f664823SMichael Walle 		}
6782f664823SMichael Walle 	}
6792f664823SMichael Walle 
6802f664823SMichael Walle 	return 0;
6812f664823SMichael Walle }
6822f664823SMichael Walle 
6832f664823SMichael Walle static int at803x_probe(struct phy_device *phydev)
6842f664823SMichael Walle {
6852f664823SMichael Walle 	struct device *dev = &phydev->mdio.dev;
6862f664823SMichael Walle 	struct at803x_priv *priv;
687c329e5afSDavid Bauer 	int ret;
6882f664823SMichael Walle 
6892f664823SMichael Walle 	priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
6902f664823SMichael Walle 	if (!priv)
6912f664823SMichael Walle 		return -ENOMEM;
6922f664823SMichael Walle 
6932f664823SMichael Walle 	phydev->priv = priv;
6942f664823SMichael Walle 
695c329e5afSDavid Bauer 	ret = at803x_parse_dt(phydev);
696c329e5afSDavid Bauer 	if (ret)
697c329e5afSDavid Bauer 		return ret;
698c329e5afSDavid Bauer 
6998f7e8762SMichael Walle 	if (priv->vddio) {
7008f7e8762SMichael Walle 		ret = regulator_enable(priv->vddio);
7018f7e8762SMichael Walle 		if (ret < 0)
7028f7e8762SMichael Walle 			return ret;
7038f7e8762SMichael Walle 	}
7048f7e8762SMichael Walle 
705c329e5afSDavid Bauer 	/* Some bootloaders leave the fiber page selected.
706c329e5afSDavid Bauer 	 * Switch to the copper page, as otherwise we read
707c329e5afSDavid Bauer 	 * the PHY capabilities from the fiber side.
708c329e5afSDavid Bauer 	 */
7098887ca54SRussell King 	if (phydev->drv->phy_id == ATH8031_PHY_ID) {
7108f7e8762SMichael Walle 		phy_lock_mdio_bus(phydev);
7118f7e8762SMichael Walle 		ret = at803x_write_page(phydev, AT803X_PAGE_COPPER);
7128f7e8762SMichael Walle 		phy_unlock_mdio_bus(phydev);
7138f7e8762SMichael Walle 		if (ret)
7148f7e8762SMichael Walle 			goto err;
715c329e5afSDavid Bauer 	}
716c329e5afSDavid Bauer 
7178f7e8762SMichael Walle 	return 0;
7188f7e8762SMichael Walle 
7198f7e8762SMichael Walle err:
7208f7e8762SMichael Walle 	if (priv->vddio)
7218f7e8762SMichael Walle 		regulator_disable(priv->vddio);
7228f7e8762SMichael Walle 
723c329e5afSDavid Bauer 	return ret;
7242f664823SMichael Walle }
7252f664823SMichael Walle 
7262318ca8aSMichael Walle static void at803x_remove(struct phy_device *phydev)
7272318ca8aSMichael Walle {
7282318ca8aSMichael Walle 	struct at803x_priv *priv = phydev->priv;
7292318ca8aSMichael Walle 
7302318ca8aSMichael Walle 	if (priv->vddio)
7312318ca8aSMichael Walle 		regulator_disable(priv->vddio);
7322318ca8aSMichael Walle }
7332318ca8aSMichael Walle 
734b856150cSDavid Bauer static int at803x_get_features(struct phy_device *phydev)
735b856150cSDavid Bauer {
736b856150cSDavid Bauer 	int err;
737b856150cSDavid Bauer 
738b856150cSDavid Bauer 	err = genphy_read_abilities(phydev);
739b856150cSDavid Bauer 	if (err)
740b856150cSDavid Bauer 		return err;
741b856150cSDavid Bauer 
742f5621a01SVladimir Oltean 	if (phydev->drv->phy_id != ATH8031_PHY_ID)
743b856150cSDavid Bauer 		return 0;
744b856150cSDavid Bauer 
745b856150cSDavid Bauer 	/* AR8031/AR8033 have different status registers
746b856150cSDavid Bauer 	 * for copper and fiber operation. However, the
747b856150cSDavid Bauer 	 * extended status register is the same for both
748b856150cSDavid Bauer 	 * operation modes.
749b856150cSDavid Bauer 	 *
750b856150cSDavid Bauer 	 * As a result of that, ESTATUS_1000_XFULL is set
751b856150cSDavid Bauer 	 * to 1 even when operating in copper TP mode.
752b856150cSDavid Bauer 	 *
753b856150cSDavid Bauer 	 * Remove this mode from the supported link modes,
754b856150cSDavid Bauer 	 * as this driver currently only supports copper
755b856150cSDavid Bauer 	 * operation.
756b856150cSDavid Bauer 	 */
757b856150cSDavid Bauer 	linkmode_clear_bit(ETHTOOL_LINK_MODE_1000baseX_Full_BIT,
758b856150cSDavid Bauer 			   phydev->supported);
759b856150cSDavid Bauer 	return 0;
760b856150cSDavid Bauer }
761b856150cSDavid Bauer 
762390b4cadSRussell King static int at803x_smarteee_config(struct phy_device *phydev)
763390b4cadSRussell King {
764390b4cadSRussell King 	struct at803x_priv *priv = phydev->priv;
765390b4cadSRussell King 	u16 mask = 0, val = 0;
766390b4cadSRussell King 	int ret;
767390b4cadSRussell King 
768390b4cadSRussell King 	if (priv->flags & AT803X_DISABLE_SMARTEEE)
769390b4cadSRussell King 		return phy_modify_mmd(phydev, MDIO_MMD_PCS,
770390b4cadSRussell King 				      AT803X_MMD3_SMARTEEE_CTL3,
771390b4cadSRussell King 				      AT803X_MMD3_SMARTEEE_CTL3_LPI_EN, 0);
772390b4cadSRussell King 
773390b4cadSRussell King 	if (priv->smarteee_lpi_tw_1g) {
774390b4cadSRussell King 		mask |= 0xff00;
775390b4cadSRussell King 		val |= priv->smarteee_lpi_tw_1g << 8;
776390b4cadSRussell King 	}
777390b4cadSRussell King 	if (priv->smarteee_lpi_tw_100m) {
778390b4cadSRussell King 		mask |= 0x00ff;
779390b4cadSRussell King 		val |= priv->smarteee_lpi_tw_100m;
780390b4cadSRussell King 	}
781390b4cadSRussell King 	if (!mask)
782390b4cadSRussell King 		return 0;
783390b4cadSRussell King 
784390b4cadSRussell King 	ret = phy_modify_mmd(phydev, MDIO_MMD_PCS, AT803X_MMD3_SMARTEEE_CTL1,
785390b4cadSRussell King 			     mask, val);
786390b4cadSRussell King 	if (ret)
787390b4cadSRussell King 		return ret;
788390b4cadSRussell King 
789390b4cadSRussell King 	return phy_modify_mmd(phydev, MDIO_MMD_PCS, AT803X_MMD3_SMARTEEE_CTL3,
790390b4cadSRussell King 			      AT803X_MMD3_SMARTEEE_CTL3_LPI_EN,
791390b4cadSRussell King 			      AT803X_MMD3_SMARTEEE_CTL3_LPI_EN);
792390b4cadSRussell King }
793390b4cadSRussell King 
7942f664823SMichael Walle static int at803x_clk_out_config(struct phy_device *phydev)
7952f664823SMichael Walle {
7962f664823SMichael Walle 	struct at803x_priv *priv = phydev->priv;
7972f664823SMichael Walle 
7982f664823SMichael Walle 	if (!priv->clk_25m_mask)
7992f664823SMichael Walle 		return 0;
8002f664823SMichael Walle 
801a45c1c10SRussell King 	return phy_modify_mmd(phydev, MDIO_MMD_AN, AT803X_MMD7_CLK25M,
802a45c1c10SRussell King 			      priv->clk_25m_mask, priv->clk_25m_reg);
8032f664823SMichael Walle }
8042f664823SMichael Walle 
8052f664823SMichael Walle static int at8031_pll_config(struct phy_device *phydev)
8062f664823SMichael Walle {
8072f664823SMichael Walle 	struct at803x_priv *priv = phydev->priv;
8082f664823SMichael Walle 
8092f664823SMichael Walle 	/* The default after hardware reset is PLL OFF. After a soft reset, the
8102f664823SMichael Walle 	 * values are retained.
8112f664823SMichael Walle 	 */
8122f664823SMichael Walle 	if (priv->flags & AT803X_KEEP_PLL_ENABLED)
8132f664823SMichael Walle 		return at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_1F,
8142f664823SMichael Walle 					     0, AT803X_DEBUG_PLL_ON);
8152f664823SMichael Walle 	else
8162f664823SMichael Walle 		return at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_1F,
8172f664823SMichael Walle 					     AT803X_DEBUG_PLL_ON, 0);
8182f664823SMichael Walle }
8192f664823SMichael Walle 
8200ca7111aSMatus Ujhelyi static int at803x_config_init(struct phy_device *phydev)
8210ca7111aSMatus Ujhelyi {
8221ca6d1b1SMugunthan V N 	int ret;
8230ca7111aSMatus Ujhelyi 
8246d4cd041SVinod Koul 	/* The RX and TX delay default is:
8256d4cd041SVinod Koul 	 *   after HW reset: RX delay enabled and TX delay disabled
8266d4cd041SVinod Koul 	 *   after SW reset: RX delay enabled, while TX delay retains the
8276d4cd041SVinod Koul 	 *   value before reset.
8286d4cd041SVinod Koul 	 */
829bb0ce4c1SAndré Draszik 	if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID ||
830bb0ce4c1SAndré Draszik 	    phydev->interface == PHY_INTERFACE_MODE_RGMII_RXID)
831bb0ce4c1SAndré Draszik 		ret = at803x_enable_rx_delay(phydev);
832bb0ce4c1SAndré Draszik 	else
833cd28d1d6SVinod Koul 		ret = at803x_disable_rx_delay(phydev);
8342e5f9f28SMartin Blumenstingl 	if (ret < 0)
8351ca6d1b1SMugunthan V N 		return ret;
8366d4cd041SVinod Koul 
8376d4cd041SVinod Koul 	if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID ||
838bb0ce4c1SAndré Draszik 	    phydev->interface == PHY_INTERFACE_MODE_RGMII_TXID)
8396d4cd041SVinod Koul 		ret = at803x_enable_tx_delay(phydev);
840bb0ce4c1SAndré Draszik 	else
841bb0ce4c1SAndré Draszik 		ret = at803x_disable_tx_delay(phydev);
8422f664823SMichael Walle 	if (ret < 0)
8436d4cd041SVinod Koul 		return ret;
8442f664823SMichael Walle 
845390b4cadSRussell King 	ret = at803x_smarteee_config(phydev);
846390b4cadSRussell King 	if (ret < 0)
847390b4cadSRussell King 		return ret;
848390b4cadSRussell King 
8492f664823SMichael Walle 	ret = at803x_clk_out_config(phydev);
8502f664823SMichael Walle 	if (ret < 0)
8512f664823SMichael Walle 		return ret;
8522f664823SMichael Walle 
8538887ca54SRussell King 	if (phydev->drv->phy_id == ATH8031_PHY_ID) {
8542f664823SMichael Walle 		ret = at8031_pll_config(phydev);
8552f664823SMichael Walle 		if (ret < 0)
8562f664823SMichael Walle 			return ret;
8572f664823SMichael Walle 	}
8582f664823SMichael Walle 
8593c51fa5dSRussell King 	/* Ar803x extended next page bit is enabled by default. Cisco
8603c51fa5dSRussell King 	 * multigig switches read this bit and attempt to negotiate 10Gbps
8613c51fa5dSRussell King 	 * rates even if the next page bit is disabled. This is incorrect
8623c51fa5dSRussell King 	 * behaviour but we still need to accommodate it. XNP is only needed
8633c51fa5dSRussell King 	 * for 10Gbps support, so disable XNP.
8643c51fa5dSRussell King 	 */
8653c51fa5dSRussell King 	return phy_modify(phydev, MII_ADVERTISE, MDIO_AN_CTRL1_XNP, 0);
8660ca7111aSMatus Ujhelyi }
8670ca7111aSMatus Ujhelyi 
86877a99394SZhao Qiang static int at803x_ack_interrupt(struct phy_device *phydev)
86977a99394SZhao Qiang {
87077a99394SZhao Qiang 	int err;
87177a99394SZhao Qiang 
872a46bd63bSMartin Blumenstingl 	err = phy_read(phydev, AT803X_INTR_STATUS);
87377a99394SZhao Qiang 
87477a99394SZhao Qiang 	return (err < 0) ? err : 0;
87577a99394SZhao Qiang }
87677a99394SZhao Qiang 
87777a99394SZhao Qiang static int at803x_config_intr(struct phy_device *phydev)
87877a99394SZhao Qiang {
87977a99394SZhao Qiang 	int err;
88077a99394SZhao Qiang 	int value;
88177a99394SZhao Qiang 
882a46bd63bSMartin Blumenstingl 	value = phy_read(phydev, AT803X_INTR_ENABLE);
88377a99394SZhao Qiang 
884e6e4a556SMartin Blumenstingl 	if (phydev->interrupts == PHY_INTERRUPT_ENABLED) {
885a3417885SIoana Ciornei 		/* Clear any pending interrupts */
886a3417885SIoana Ciornei 		err = at803x_ack_interrupt(phydev);
887a3417885SIoana Ciornei 		if (err)
888a3417885SIoana Ciornei 			return err;
889a3417885SIoana Ciornei 
890e6e4a556SMartin Blumenstingl 		value |= AT803X_INTR_ENABLE_AUTONEG_ERR;
891e6e4a556SMartin Blumenstingl 		value |= AT803X_INTR_ENABLE_SPEED_CHANGED;
892e6e4a556SMartin Blumenstingl 		value |= AT803X_INTR_ENABLE_DUPLEX_CHANGED;
893e6e4a556SMartin Blumenstingl 		value |= AT803X_INTR_ENABLE_LINK_FAIL;
894e6e4a556SMartin Blumenstingl 		value |= AT803X_INTR_ENABLE_LINK_SUCCESS;
895e6e4a556SMartin Blumenstingl 
896e6e4a556SMartin Blumenstingl 		err = phy_write(phydev, AT803X_INTR_ENABLE, value);
897a3417885SIoana Ciornei 	} else {
898a46bd63bSMartin Blumenstingl 		err = phy_write(phydev, AT803X_INTR_ENABLE, 0);
899a3417885SIoana Ciornei 		if (err)
900a3417885SIoana Ciornei 			return err;
901a3417885SIoana Ciornei 
902a3417885SIoana Ciornei 		/* Clear any pending interrupts */
903a3417885SIoana Ciornei 		err = at803x_ack_interrupt(phydev);
904a3417885SIoana Ciornei 	}
90577a99394SZhao Qiang 
90677a99394SZhao Qiang 	return err;
90777a99394SZhao Qiang }
90877a99394SZhao Qiang 
90929773097SIoana Ciornei static irqreturn_t at803x_handle_interrupt(struct phy_device *phydev)
91029773097SIoana Ciornei {
91129773097SIoana Ciornei 	int irq_status, int_enabled;
91229773097SIoana Ciornei 
91329773097SIoana Ciornei 	irq_status = phy_read(phydev, AT803X_INTR_STATUS);
91429773097SIoana Ciornei 	if (irq_status < 0) {
91529773097SIoana Ciornei 		phy_error(phydev);
91629773097SIoana Ciornei 		return IRQ_NONE;
91729773097SIoana Ciornei 	}
91829773097SIoana Ciornei 
91929773097SIoana Ciornei 	/* Read the current enabled interrupts */
92029773097SIoana Ciornei 	int_enabled = phy_read(phydev, AT803X_INTR_ENABLE);
92129773097SIoana Ciornei 	if (int_enabled < 0) {
92229773097SIoana Ciornei 		phy_error(phydev);
92329773097SIoana Ciornei 		return IRQ_NONE;
92429773097SIoana Ciornei 	}
92529773097SIoana Ciornei 
92629773097SIoana Ciornei 	/* See if this was one of our enabled interrupts */
92729773097SIoana Ciornei 	if (!(irq_status & int_enabled))
92829773097SIoana Ciornei 		return IRQ_NONE;
92929773097SIoana Ciornei 
93029773097SIoana Ciornei 	phy_trigger_machine(phydev);
93129773097SIoana Ciornei 
93229773097SIoana Ciornei 	return IRQ_HANDLED;
93329773097SIoana Ciornei }
93429773097SIoana Ciornei 
93513a56b44SDaniel Mack static void at803x_link_change_notify(struct phy_device *phydev)
93613a56b44SDaniel Mack {
93713a56b44SDaniel Mack 	/*
93813a56b44SDaniel Mack 	 * Conduct a hardware reset for AT8030 every time a link loss is
93913a56b44SDaniel Mack 	 * signalled. This is necessary to circumvent a hardware bug that
94013a56b44SDaniel Mack 	 * occurs when the cable is unplugged while TX packets are pending
94113a56b44SDaniel Mack 	 * in the FIFO. In such cases, the FIFO enters an error mode it
94213a56b44SDaniel Mack 	 * cannot recover from by software.
94313a56b44SDaniel Mack 	 */
9446110ed2dSDavid Bauer 	if (phydev->state == PHY_NOLINK && phydev->mdio.reset_gpio) {
94513a56b44SDaniel Mack 		struct at803x_context context;
94613a56b44SDaniel Mack 
94713a56b44SDaniel Mack 		at803x_context_save(phydev, &context);
94813a56b44SDaniel Mack 
949bafbdd52SSergei Shtylyov 		phy_device_reset(phydev, 1);
95013a56b44SDaniel Mack 		msleep(1);
951bafbdd52SSergei Shtylyov 		phy_device_reset(phydev, 0);
952d57019d1SSergei Shtylyov 		msleep(1);
95313a56b44SDaniel Mack 
95413a56b44SDaniel Mack 		at803x_context_restore(phydev, &context);
95513a56b44SDaniel Mack 
9565c5f626bSHeiner Kallweit 		phydev_dbg(phydev, "%s(): phy was reset\n", __func__);
95713a56b44SDaniel Mack 	}
95813a56b44SDaniel Mack }
95913a56b44SDaniel Mack 
96006d5f344SRussell King static int at803x_read_status(struct phy_device *phydev)
96106d5f344SRussell King {
96206d5f344SRussell King 	int ss, err, old_link = phydev->link;
96306d5f344SRussell King 
96406d5f344SRussell King 	/* Update the link, but return if there was an error */
96506d5f344SRussell King 	err = genphy_update_link(phydev);
96606d5f344SRussell King 	if (err)
96706d5f344SRussell King 		return err;
96806d5f344SRussell King 
96906d5f344SRussell King 	/* why bother the PHY if nothing can have changed */
97006d5f344SRussell King 	if (phydev->autoneg == AUTONEG_ENABLE && old_link && phydev->link)
97106d5f344SRussell King 		return 0;
97206d5f344SRussell King 
97306d5f344SRussell King 	phydev->speed = SPEED_UNKNOWN;
97406d5f344SRussell King 	phydev->duplex = DUPLEX_UNKNOWN;
97506d5f344SRussell King 	phydev->pause = 0;
97606d5f344SRussell King 	phydev->asym_pause = 0;
97706d5f344SRussell King 
97806d5f344SRussell King 	err = genphy_read_lpa(phydev);
97906d5f344SRussell King 	if (err < 0)
98006d5f344SRussell King 		return err;
98106d5f344SRussell King 
98206d5f344SRussell King 	/* Read the AT8035 PHY-Specific Status register, which indicates the
98306d5f344SRussell King 	 * speed and duplex that the PHY is actually using, irrespective of
98406d5f344SRussell King 	 * whether we are in autoneg mode or not.
98506d5f344SRussell King 	 */
98606d5f344SRussell King 	ss = phy_read(phydev, AT803X_SPECIFIC_STATUS);
98706d5f344SRussell King 	if (ss < 0)
98806d5f344SRussell King 		return ss;
98906d5f344SRussell King 
99006d5f344SRussell King 	if (ss & AT803X_SS_SPEED_DUPLEX_RESOLVED) {
9917dce80c2SOleksij Rempel 		int sfc;
9927dce80c2SOleksij Rempel 
9937dce80c2SOleksij Rempel 		sfc = phy_read(phydev, AT803X_SPECIFIC_FUNCTION_CONTROL);
9947dce80c2SOleksij Rempel 		if (sfc < 0)
9957dce80c2SOleksij Rempel 			return sfc;
9967dce80c2SOleksij Rempel 
99706d5f344SRussell King 		switch (ss & AT803X_SS_SPEED_MASK) {
99806d5f344SRussell King 		case AT803X_SS_SPEED_10:
99906d5f344SRussell King 			phydev->speed = SPEED_10;
100006d5f344SRussell King 			break;
100106d5f344SRussell King 		case AT803X_SS_SPEED_100:
100206d5f344SRussell King 			phydev->speed = SPEED_100;
100306d5f344SRussell King 			break;
100406d5f344SRussell King 		case AT803X_SS_SPEED_1000:
100506d5f344SRussell King 			phydev->speed = SPEED_1000;
100606d5f344SRussell King 			break;
100706d5f344SRussell King 		}
100806d5f344SRussell King 		if (ss & AT803X_SS_DUPLEX)
100906d5f344SRussell King 			phydev->duplex = DUPLEX_FULL;
101006d5f344SRussell King 		else
101106d5f344SRussell King 			phydev->duplex = DUPLEX_HALF;
10127dce80c2SOleksij Rempel 
101306d5f344SRussell King 		if (ss & AT803X_SS_MDIX)
101406d5f344SRussell King 			phydev->mdix = ETH_TP_MDI_X;
101506d5f344SRussell King 		else
101606d5f344SRussell King 			phydev->mdix = ETH_TP_MDI;
10177dce80c2SOleksij Rempel 
10187dce80c2SOleksij Rempel 		switch (FIELD_GET(AT803X_SFC_MDI_CROSSOVER_MODE_M, sfc)) {
10197dce80c2SOleksij Rempel 		case AT803X_SFC_MANUAL_MDI:
10207dce80c2SOleksij Rempel 			phydev->mdix_ctrl = ETH_TP_MDI;
10217dce80c2SOleksij Rempel 			break;
10227dce80c2SOleksij Rempel 		case AT803X_SFC_MANUAL_MDIX:
10237dce80c2SOleksij Rempel 			phydev->mdix_ctrl = ETH_TP_MDI_X;
10247dce80c2SOleksij Rempel 			break;
10257dce80c2SOleksij Rempel 		case AT803X_SFC_AUTOMATIC_CROSSOVER:
10267dce80c2SOleksij Rempel 			phydev->mdix_ctrl = ETH_TP_MDI_AUTO;
10277dce80c2SOleksij Rempel 			break;
10287dce80c2SOleksij Rempel 		}
102906d5f344SRussell King 	}
103006d5f344SRussell King 
103106d5f344SRussell King 	if (phydev->autoneg == AUTONEG_ENABLE && phydev->autoneg_complete)
103206d5f344SRussell King 		phy_resolve_aneg_pause(phydev);
103306d5f344SRussell King 
103406d5f344SRussell King 	return 0;
103506d5f344SRussell King }
103606d5f344SRussell King 
10377dce80c2SOleksij Rempel static int at803x_config_mdix(struct phy_device *phydev, u8 ctrl)
10387dce80c2SOleksij Rempel {
10397dce80c2SOleksij Rempel 	u16 val;
10407dce80c2SOleksij Rempel 
10417dce80c2SOleksij Rempel 	switch (ctrl) {
10427dce80c2SOleksij Rempel 	case ETH_TP_MDI:
10437dce80c2SOleksij Rempel 		val = AT803X_SFC_MANUAL_MDI;
10447dce80c2SOleksij Rempel 		break;
10457dce80c2SOleksij Rempel 	case ETH_TP_MDI_X:
10467dce80c2SOleksij Rempel 		val = AT803X_SFC_MANUAL_MDIX;
10477dce80c2SOleksij Rempel 		break;
10487dce80c2SOleksij Rempel 	case ETH_TP_MDI_AUTO:
10497dce80c2SOleksij Rempel 		val = AT803X_SFC_AUTOMATIC_CROSSOVER;
10507dce80c2SOleksij Rempel 		break;
10517dce80c2SOleksij Rempel 	default:
10527dce80c2SOleksij Rempel 		return 0;
10537dce80c2SOleksij Rempel 	}
10547dce80c2SOleksij Rempel 
10557dce80c2SOleksij Rempel 	return phy_modify_changed(phydev, AT803X_SPECIFIC_FUNCTION_CONTROL,
10567dce80c2SOleksij Rempel 			  AT803X_SFC_MDI_CROSSOVER_MODE_M,
10577dce80c2SOleksij Rempel 			  FIELD_PREP(AT803X_SFC_MDI_CROSSOVER_MODE_M, val));
10587dce80c2SOleksij Rempel }
10597dce80c2SOleksij Rempel 
10607dce80c2SOleksij Rempel static int at803x_config_aneg(struct phy_device *phydev)
10617dce80c2SOleksij Rempel {
10627dce80c2SOleksij Rempel 	int ret;
10637dce80c2SOleksij Rempel 
10647dce80c2SOleksij Rempel 	ret = at803x_config_mdix(phydev, phydev->mdix_ctrl);
10657dce80c2SOleksij Rempel 	if (ret < 0)
10667dce80c2SOleksij Rempel 		return ret;
10677dce80c2SOleksij Rempel 
10687dce80c2SOleksij Rempel 	/* Changes of the midx bits are disruptive to the normal operation;
10697dce80c2SOleksij Rempel 	 * therefore any changes to these registers must be followed by a
10707dce80c2SOleksij Rempel 	 * software reset to take effect.
10717dce80c2SOleksij Rempel 	 */
10727dce80c2SOleksij Rempel 	if (ret == 1) {
10737dce80c2SOleksij Rempel 		ret = genphy_soft_reset(phydev);
10747dce80c2SOleksij Rempel 		if (ret < 0)
10757dce80c2SOleksij Rempel 			return ret;
10767dce80c2SOleksij Rempel 	}
10777dce80c2SOleksij Rempel 
10787dce80c2SOleksij Rempel 	return genphy_config_aneg(phydev);
10797dce80c2SOleksij Rempel }
10807dce80c2SOleksij Rempel 
1081cde0f4f8SMichael Walle static int at803x_get_downshift(struct phy_device *phydev, u8 *d)
1082cde0f4f8SMichael Walle {
1083cde0f4f8SMichael Walle 	int val;
1084cde0f4f8SMichael Walle 
1085cde0f4f8SMichael Walle 	val = phy_read(phydev, AT803X_SMART_SPEED);
1086cde0f4f8SMichael Walle 	if (val < 0)
1087cde0f4f8SMichael Walle 		return val;
1088cde0f4f8SMichael Walle 
1089cde0f4f8SMichael Walle 	if (val & AT803X_SMART_SPEED_ENABLE)
1090cde0f4f8SMichael Walle 		*d = FIELD_GET(AT803X_SMART_SPEED_RETRY_LIMIT_MASK, val) + 2;
1091cde0f4f8SMichael Walle 	else
1092cde0f4f8SMichael Walle 		*d = DOWNSHIFT_DEV_DISABLE;
1093cde0f4f8SMichael Walle 
1094cde0f4f8SMichael Walle 	return 0;
1095cde0f4f8SMichael Walle }
1096cde0f4f8SMichael Walle 
1097cde0f4f8SMichael Walle static int at803x_set_downshift(struct phy_device *phydev, u8 cnt)
1098cde0f4f8SMichael Walle {
1099cde0f4f8SMichael Walle 	u16 mask, set;
1100cde0f4f8SMichael Walle 	int ret;
1101cde0f4f8SMichael Walle 
1102cde0f4f8SMichael Walle 	switch (cnt) {
1103cde0f4f8SMichael Walle 	case DOWNSHIFT_DEV_DEFAULT_COUNT:
1104cde0f4f8SMichael Walle 		cnt = AT803X_DEFAULT_DOWNSHIFT;
1105cde0f4f8SMichael Walle 		fallthrough;
1106cde0f4f8SMichael Walle 	case AT803X_MIN_DOWNSHIFT ... AT803X_MAX_DOWNSHIFT:
1107cde0f4f8SMichael Walle 		set = AT803X_SMART_SPEED_ENABLE |
1108cde0f4f8SMichael Walle 		      AT803X_SMART_SPEED_BYPASS_TIMER |
1109cde0f4f8SMichael Walle 		      FIELD_PREP(AT803X_SMART_SPEED_RETRY_LIMIT_MASK, cnt - 2);
1110cde0f4f8SMichael Walle 		mask = AT803X_SMART_SPEED_RETRY_LIMIT_MASK;
1111cde0f4f8SMichael Walle 		break;
1112cde0f4f8SMichael Walle 	case DOWNSHIFT_DEV_DISABLE:
1113cde0f4f8SMichael Walle 		set = 0;
1114cde0f4f8SMichael Walle 		mask = AT803X_SMART_SPEED_ENABLE |
1115cde0f4f8SMichael Walle 		       AT803X_SMART_SPEED_BYPASS_TIMER;
1116cde0f4f8SMichael Walle 		break;
1117cde0f4f8SMichael Walle 	default:
1118cde0f4f8SMichael Walle 		return -EINVAL;
1119cde0f4f8SMichael Walle 	}
1120cde0f4f8SMichael Walle 
1121cde0f4f8SMichael Walle 	ret = phy_modify_changed(phydev, AT803X_SMART_SPEED, mask, set);
1122cde0f4f8SMichael Walle 
1123cde0f4f8SMichael Walle 	/* After changing the smart speed settings, we need to perform a
1124cde0f4f8SMichael Walle 	 * software reset, use phy_init_hw() to make sure we set the
1125cde0f4f8SMichael Walle 	 * reapply any values which might got lost during software reset.
1126cde0f4f8SMichael Walle 	 */
1127cde0f4f8SMichael Walle 	if (ret == 1)
1128cde0f4f8SMichael Walle 		ret = phy_init_hw(phydev);
1129cde0f4f8SMichael Walle 
1130cde0f4f8SMichael Walle 	return ret;
1131cde0f4f8SMichael Walle }
1132cde0f4f8SMichael Walle 
1133cde0f4f8SMichael Walle static int at803x_get_tunable(struct phy_device *phydev,
1134cde0f4f8SMichael Walle 			      struct ethtool_tunable *tuna, void *data)
1135cde0f4f8SMichael Walle {
1136cde0f4f8SMichael Walle 	switch (tuna->id) {
1137cde0f4f8SMichael Walle 	case ETHTOOL_PHY_DOWNSHIFT:
1138cde0f4f8SMichael Walle 		return at803x_get_downshift(phydev, data);
1139cde0f4f8SMichael Walle 	default:
1140cde0f4f8SMichael Walle 		return -EOPNOTSUPP;
1141cde0f4f8SMichael Walle 	}
1142cde0f4f8SMichael Walle }
1143cde0f4f8SMichael Walle 
1144cde0f4f8SMichael Walle static int at803x_set_tunable(struct phy_device *phydev,
1145cde0f4f8SMichael Walle 			      struct ethtool_tunable *tuna, const void *data)
1146cde0f4f8SMichael Walle {
1147cde0f4f8SMichael Walle 	switch (tuna->id) {
1148cde0f4f8SMichael Walle 	case ETHTOOL_PHY_DOWNSHIFT:
1149cde0f4f8SMichael Walle 		return at803x_set_downshift(phydev, *(const u8 *)data);
1150cde0f4f8SMichael Walle 	default:
1151cde0f4f8SMichael Walle 		return -EOPNOTSUPP;
1152cde0f4f8SMichael Walle 	}
1153cde0f4f8SMichael Walle }
1154cde0f4f8SMichael Walle 
11556cb75767SMichael Walle static int at803x_cable_test_result_trans(u16 status)
11566cb75767SMichael Walle {
11576cb75767SMichael Walle 	switch (FIELD_GET(AT803X_CDT_STATUS_STAT_MASK, status)) {
11586cb75767SMichael Walle 	case AT803X_CDT_STATUS_STAT_NORMAL:
11596cb75767SMichael Walle 		return ETHTOOL_A_CABLE_RESULT_CODE_OK;
11606cb75767SMichael Walle 	case AT803X_CDT_STATUS_STAT_SHORT:
11616cb75767SMichael Walle 		return ETHTOOL_A_CABLE_RESULT_CODE_SAME_SHORT;
11626cb75767SMichael Walle 	case AT803X_CDT_STATUS_STAT_OPEN:
11636cb75767SMichael Walle 		return ETHTOOL_A_CABLE_RESULT_CODE_OPEN;
11646cb75767SMichael Walle 	case AT803X_CDT_STATUS_STAT_FAIL:
11656cb75767SMichael Walle 	default:
11666cb75767SMichael Walle 		return ETHTOOL_A_CABLE_RESULT_CODE_UNSPEC;
11676cb75767SMichael Walle 	}
11686cb75767SMichael Walle }
11696cb75767SMichael Walle 
11706cb75767SMichael Walle static bool at803x_cdt_test_failed(u16 status)
11716cb75767SMichael Walle {
11726cb75767SMichael Walle 	return FIELD_GET(AT803X_CDT_STATUS_STAT_MASK, status) ==
11736cb75767SMichael Walle 		AT803X_CDT_STATUS_STAT_FAIL;
11746cb75767SMichael Walle }
11756cb75767SMichael Walle 
11766cb75767SMichael Walle static bool at803x_cdt_fault_length_valid(u16 status)
11776cb75767SMichael Walle {
11786cb75767SMichael Walle 	switch (FIELD_GET(AT803X_CDT_STATUS_STAT_MASK, status)) {
11796cb75767SMichael Walle 	case AT803X_CDT_STATUS_STAT_OPEN:
11806cb75767SMichael Walle 	case AT803X_CDT_STATUS_STAT_SHORT:
11816cb75767SMichael Walle 		return true;
11826cb75767SMichael Walle 	}
11836cb75767SMichael Walle 	return false;
11846cb75767SMichael Walle }
11856cb75767SMichael Walle 
11866cb75767SMichael Walle static int at803x_cdt_fault_length(u16 status)
11876cb75767SMichael Walle {
11886cb75767SMichael Walle 	int dt;
11896cb75767SMichael Walle 
11906cb75767SMichael Walle 	/* According to the datasheet the distance to the fault is
11916cb75767SMichael Walle 	 * DELTA_TIME * 0.824 meters.
11926cb75767SMichael Walle 	 *
11936cb75767SMichael Walle 	 * The author suspect the correct formula is:
11946cb75767SMichael Walle 	 *
11956cb75767SMichael Walle 	 *   fault_distance = DELTA_TIME * (c * VF) / 125MHz / 2
11966cb75767SMichael Walle 	 *
11976cb75767SMichael Walle 	 * where c is the speed of light, VF is the velocity factor of
11986cb75767SMichael Walle 	 * the twisted pair cable, 125MHz the counter frequency and
11996cb75767SMichael Walle 	 * we need to divide by 2 because the hardware will measure the
12006cb75767SMichael Walle 	 * round trip time to the fault and back to the PHY.
12016cb75767SMichael Walle 	 *
12026cb75767SMichael Walle 	 * With a VF of 0.69 we get the factor 0.824 mentioned in the
12036cb75767SMichael Walle 	 * datasheet.
12046cb75767SMichael Walle 	 */
12056cb75767SMichael Walle 	dt = FIELD_GET(AT803X_CDT_STATUS_DELTA_TIME_MASK, status);
12066cb75767SMichael Walle 
12076cb75767SMichael Walle 	return (dt * 824) / 10;
12086cb75767SMichael Walle }
12096cb75767SMichael Walle 
12106cb75767SMichael Walle static int at803x_cdt_start(struct phy_device *phydev, int pair)
12116cb75767SMichael Walle {
12126cb75767SMichael Walle 	u16 cdt;
12136cb75767SMichael Walle 
12146cb75767SMichael Walle 	cdt = FIELD_PREP(AT803X_CDT_MDI_PAIR_MASK, pair) |
12156cb75767SMichael Walle 	      AT803X_CDT_ENABLE_TEST;
12166cb75767SMichael Walle 
12176cb75767SMichael Walle 	return phy_write(phydev, AT803X_CDT, cdt);
12186cb75767SMichael Walle }
12196cb75767SMichael Walle 
12206cb75767SMichael Walle static int at803x_cdt_wait_for_completion(struct phy_device *phydev)
12216cb75767SMichael Walle {
12226cb75767SMichael Walle 	int val, ret;
12236cb75767SMichael Walle 
12246cb75767SMichael Walle 	/* One test run takes about 25ms */
12256cb75767SMichael Walle 	ret = phy_read_poll_timeout(phydev, AT803X_CDT, val,
12266cb75767SMichael Walle 				    !(val & AT803X_CDT_ENABLE_TEST),
12276cb75767SMichael Walle 				    30000, 100000, true);
12286cb75767SMichael Walle 
12296cb75767SMichael Walle 	return ret < 0 ? ret : 0;
12306cb75767SMichael Walle }
12316cb75767SMichael Walle 
12326cb75767SMichael Walle static int at803x_cable_test_one_pair(struct phy_device *phydev, int pair)
12336cb75767SMichael Walle {
12346cb75767SMichael Walle 	static const int ethtool_pair[] = {
12356cb75767SMichael Walle 		ETHTOOL_A_CABLE_PAIR_A,
12366cb75767SMichael Walle 		ETHTOOL_A_CABLE_PAIR_B,
12376cb75767SMichael Walle 		ETHTOOL_A_CABLE_PAIR_C,
12386cb75767SMichael Walle 		ETHTOOL_A_CABLE_PAIR_D,
12396cb75767SMichael Walle 	};
12406cb75767SMichael Walle 	int ret, val;
12416cb75767SMichael Walle 
12426cb75767SMichael Walle 	ret = at803x_cdt_start(phydev, pair);
12436cb75767SMichael Walle 	if (ret)
12446cb75767SMichael Walle 		return ret;
12456cb75767SMichael Walle 
12466cb75767SMichael Walle 	ret = at803x_cdt_wait_for_completion(phydev);
12476cb75767SMichael Walle 	if (ret)
12486cb75767SMichael Walle 		return ret;
12496cb75767SMichael Walle 
12506cb75767SMichael Walle 	val = phy_read(phydev, AT803X_CDT_STATUS);
12516cb75767SMichael Walle 	if (val < 0)
12526cb75767SMichael Walle 		return val;
12536cb75767SMichael Walle 
12546cb75767SMichael Walle 	if (at803x_cdt_test_failed(val))
12556cb75767SMichael Walle 		return 0;
12566cb75767SMichael Walle 
12576cb75767SMichael Walle 	ethnl_cable_test_result(phydev, ethtool_pair[pair],
12586cb75767SMichael Walle 				at803x_cable_test_result_trans(val));
12596cb75767SMichael Walle 
12606cb75767SMichael Walle 	if (at803x_cdt_fault_length_valid(val))
12616cb75767SMichael Walle 		ethnl_cable_test_fault_length(phydev, ethtool_pair[pair],
12626cb75767SMichael Walle 					      at803x_cdt_fault_length(val));
12636cb75767SMichael Walle 
12646cb75767SMichael Walle 	return 1;
12656cb75767SMichael Walle }
12666cb75767SMichael Walle 
12676cb75767SMichael Walle static int at803x_cable_test_get_status(struct phy_device *phydev,
12686cb75767SMichael Walle 					bool *finished)
12696cb75767SMichael Walle {
1270dc0f3ed1SOleksij Rempel 	unsigned long pair_mask;
12716cb75767SMichael Walle 	int retries = 20;
12726cb75767SMichael Walle 	int pair, ret;
12736cb75767SMichael Walle 
1274dc0f3ed1SOleksij Rempel 	if (phydev->phy_id == ATH9331_PHY_ID ||
1275fada2ce0SDavid Bauer 	    phydev->phy_id == ATH8032_PHY_ID ||
1276fada2ce0SDavid Bauer 	    phydev->phy_id == QCA9561_PHY_ID)
1277dc0f3ed1SOleksij Rempel 		pair_mask = 0x3;
1278dc0f3ed1SOleksij Rempel 	else
1279dc0f3ed1SOleksij Rempel 		pair_mask = 0xf;
1280dc0f3ed1SOleksij Rempel 
12816cb75767SMichael Walle 	*finished = false;
12826cb75767SMichael Walle 
12836cb75767SMichael Walle 	/* According to the datasheet the CDT can be performed when
12846cb75767SMichael Walle 	 * there is no link partner or when the link partner is
12856cb75767SMichael Walle 	 * auto-negotiating. Starting the test will restart the AN
12866cb75767SMichael Walle 	 * automatically. It seems that doing this repeatedly we will
12876cb75767SMichael Walle 	 * get a slot where our link partner won't disturb our
12886cb75767SMichael Walle 	 * measurement.
12896cb75767SMichael Walle 	 */
12906cb75767SMichael Walle 	while (pair_mask && retries--) {
12916cb75767SMichael Walle 		for_each_set_bit(pair, &pair_mask, 4) {
12926cb75767SMichael Walle 			ret = at803x_cable_test_one_pair(phydev, pair);
12936cb75767SMichael Walle 			if (ret < 0)
12946cb75767SMichael Walle 				return ret;
12956cb75767SMichael Walle 			if (ret)
12966cb75767SMichael Walle 				clear_bit(pair, &pair_mask);
12976cb75767SMichael Walle 		}
12986cb75767SMichael Walle 		if (pair_mask)
12996cb75767SMichael Walle 			msleep(250);
13006cb75767SMichael Walle 	}
13016cb75767SMichael Walle 
13026cb75767SMichael Walle 	*finished = true;
13036cb75767SMichael Walle 
13046cb75767SMichael Walle 	return 0;
13056cb75767SMichael Walle }
13066cb75767SMichael Walle 
13076cb75767SMichael Walle static int at803x_cable_test_start(struct phy_device *phydev)
13086cb75767SMichael Walle {
13096cb75767SMichael Walle 	/* Enable auto-negotiation, but advertise no capabilities, no link
13106cb75767SMichael Walle 	 * will be established. A restart of the auto-negotiation is not
13116cb75767SMichael Walle 	 * required, because the cable test will automatically break the link.
13126cb75767SMichael Walle 	 */
13136cb75767SMichael Walle 	phy_write(phydev, MII_BMCR, BMCR_ANENABLE);
13146cb75767SMichael Walle 	phy_write(phydev, MII_ADVERTISE, ADVERTISE_CSMA);
1315dc0f3ed1SOleksij Rempel 	if (phydev->phy_id != ATH9331_PHY_ID &&
1316fada2ce0SDavid Bauer 	    phydev->phy_id != ATH8032_PHY_ID &&
1317fada2ce0SDavid Bauer 	    phydev->phy_id != QCA9561_PHY_ID)
13186cb75767SMichael Walle 		phy_write(phydev, MII_CTRL1000, 0);
13196cb75767SMichael Walle 
13206cb75767SMichael Walle 	/* we do all the (time consuming) work later */
13216cb75767SMichael Walle 	return 0;
13226cb75767SMichael Walle }
13236cb75767SMichael Walle 
1324272833b9SAnsuel Smith static int qca83xx_config_init(struct phy_device *phydev)
1325272833b9SAnsuel Smith {
1326272833b9SAnsuel Smith 	u8 switch_revision;
1327272833b9SAnsuel Smith 
1328272833b9SAnsuel Smith 	switch_revision = phydev->dev_flags & QCA8K_DEVFLAGS_REVISION_MASK;
1329272833b9SAnsuel Smith 
1330272833b9SAnsuel Smith 	switch (switch_revision) {
1331272833b9SAnsuel Smith 	case 1:
1332272833b9SAnsuel Smith 		/* For 100M waveform */
133367999555SAnsuel Smith 		at803x_debug_reg_write(phydev, AT803X_DEBUG_ANALOG_TEST_CTRL, 0x02ea);
1334272833b9SAnsuel Smith 		/* Turn on Gigabit clock */
133567999555SAnsuel Smith 		at803x_debug_reg_write(phydev, AT803X_DEBUG_REG_GREEN, 0x68a0);
1336272833b9SAnsuel Smith 		break;
1337272833b9SAnsuel Smith 
1338272833b9SAnsuel Smith 	case 2:
1339272833b9SAnsuel Smith 		phy_write_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV, 0x0);
1340272833b9SAnsuel Smith 		fallthrough;
1341272833b9SAnsuel Smith 	case 4:
1342272833b9SAnsuel Smith 		phy_write_mmd(phydev, MDIO_MMD_PCS, MDIO_AZ_DEBUG, 0x803f);
134367999555SAnsuel Smith 		at803x_debug_reg_write(phydev, AT803X_DEBUG_REG_GREEN, 0x6860);
134467999555SAnsuel Smith 		at803x_debug_reg_write(phydev, AT803X_DEBUG_SYSTEM_CTRL_MODE, 0x2c46);
1345272833b9SAnsuel Smith 		at803x_debug_reg_write(phydev, AT803X_DEBUG_REG_3C, 0x6000);
1346272833b9SAnsuel Smith 		break;
1347272833b9SAnsuel Smith 	}
1348272833b9SAnsuel Smith 
13491ca83119SAnsuel Smith 	/* QCA8327 require DAC amplitude adjustment for 100m set to +6%.
13501ca83119SAnsuel Smith 	 * Disable on init and enable only with 100m speed following
13511ca83119SAnsuel Smith 	 * qca original source code.
13521ca83119SAnsuel Smith 	 */
13531ca83119SAnsuel Smith 	if (phydev->drv->phy_id == QCA8327_A_PHY_ID ||
13541ca83119SAnsuel Smith 	    phydev->drv->phy_id == QCA8327_B_PHY_ID)
135567999555SAnsuel Smith 		at803x_debug_reg_mask(phydev, AT803X_DEBUG_ANALOG_TEST_CTRL,
13561ca83119SAnsuel Smith 				      QCA8327_DEBUG_MANU_CTRL_EN, 0);
13571ca83119SAnsuel Smith 
13589d1c29b4SAnsuel Smith 	/* Following original QCA sourcecode set port to prefer master */
13599d1c29b4SAnsuel Smith 	phy_set_bits(phydev, MII_CTRL1000, CTL1000_PREFER_MASTER);
13609d1c29b4SAnsuel Smith 
1361272833b9SAnsuel Smith 	return 0;
1362272833b9SAnsuel Smith }
1363272833b9SAnsuel Smith 
13641ca83119SAnsuel Smith static void qca83xx_link_change_notify(struct phy_device *phydev)
13651ca83119SAnsuel Smith {
13661ca83119SAnsuel Smith 	/* QCA8337 doesn't require DAC Amplitude adjustement */
13671ca83119SAnsuel Smith 	if (phydev->drv->phy_id == QCA8337_PHY_ID)
13681ca83119SAnsuel Smith 		return;
13691ca83119SAnsuel Smith 
13701ca83119SAnsuel Smith 	/* Set DAC Amplitude adjustment to +6% for 100m on link running */
13711ca83119SAnsuel Smith 	if (phydev->state == PHY_RUNNING) {
13721ca83119SAnsuel Smith 		if (phydev->speed == SPEED_100)
137367999555SAnsuel Smith 			at803x_debug_reg_mask(phydev, AT803X_DEBUG_ANALOG_TEST_CTRL,
13741ca83119SAnsuel Smith 					      QCA8327_DEBUG_MANU_CTRL_EN,
13751ca83119SAnsuel Smith 					      QCA8327_DEBUG_MANU_CTRL_EN);
13761ca83119SAnsuel Smith 	} else {
13771ca83119SAnsuel Smith 		/* Reset DAC Amplitude adjustment */
137867999555SAnsuel Smith 		at803x_debug_reg_mask(phydev, AT803X_DEBUG_ANALOG_TEST_CTRL,
13791ca83119SAnsuel Smith 				      QCA8327_DEBUG_MANU_CTRL_EN, 0);
13801ca83119SAnsuel Smith 	}
13811ca83119SAnsuel Smith }
13821ca83119SAnsuel Smith 
1383ba3c01eeSAnsuel Smith static int qca83xx_resume(struct phy_device *phydev)
1384ba3c01eeSAnsuel Smith {
1385ba3c01eeSAnsuel Smith 	int ret, val;
1386ba3c01eeSAnsuel Smith 
1387ba3c01eeSAnsuel Smith 	/* Skip reset if not suspended */
1388ba3c01eeSAnsuel Smith 	if (!phydev->suspended)
1389ba3c01eeSAnsuel Smith 		return 0;
1390ba3c01eeSAnsuel Smith 
1391ba3c01eeSAnsuel Smith 	/* Reinit the port, reset values set by suspend */
1392ba3c01eeSAnsuel Smith 	qca83xx_config_init(phydev);
1393ba3c01eeSAnsuel Smith 
1394ba3c01eeSAnsuel Smith 	/* Reset the port on port resume */
1395ba3c01eeSAnsuel Smith 	phy_set_bits(phydev, MII_BMCR, BMCR_RESET | BMCR_ANENABLE);
1396ba3c01eeSAnsuel Smith 
1397ba3c01eeSAnsuel Smith 	/* On resume from suspend the switch execute a reset and
1398ba3c01eeSAnsuel Smith 	 * restart auto-negotiation. Wait for reset to complete.
1399ba3c01eeSAnsuel Smith 	 */
1400ba3c01eeSAnsuel Smith 	ret = phy_read_poll_timeout(phydev, MII_BMCR, val, !(val & BMCR_RESET),
1401ba3c01eeSAnsuel Smith 				    50000, 600000, true);
1402ba3c01eeSAnsuel Smith 	if (ret)
1403ba3c01eeSAnsuel Smith 		return ret;
1404ba3c01eeSAnsuel Smith 
1405ba3c01eeSAnsuel Smith 	msleep(1);
1406ba3c01eeSAnsuel Smith 
1407ba3c01eeSAnsuel Smith 	return 0;
1408ba3c01eeSAnsuel Smith }
1409ba3c01eeSAnsuel Smith 
1410ba3c01eeSAnsuel Smith static int qca83xx_suspend(struct phy_device *phydev)
1411ba3c01eeSAnsuel Smith {
1412ba3c01eeSAnsuel Smith 	u16 mask = 0;
1413ba3c01eeSAnsuel Smith 
1414ba3c01eeSAnsuel Smith 	/* Only QCA8337 support actual suspend.
1415ba3c01eeSAnsuel Smith 	 * QCA8327 cause port unreliability when phy suspend
1416ba3c01eeSAnsuel Smith 	 * is set.
1417ba3c01eeSAnsuel Smith 	 */
1418ba3c01eeSAnsuel Smith 	if (phydev->drv->phy_id == QCA8337_PHY_ID) {
1419ba3c01eeSAnsuel Smith 		genphy_suspend(phydev);
1420ba3c01eeSAnsuel Smith 	} else {
1421ba3c01eeSAnsuel Smith 		mask |= ~(BMCR_SPEED1000 | BMCR_FULLDPLX);
1422ba3c01eeSAnsuel Smith 		phy_modify(phydev, MII_BMCR, mask, 0);
1423ba3c01eeSAnsuel Smith 	}
1424ba3c01eeSAnsuel Smith 
142567999555SAnsuel Smith 	at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_GREEN,
1426ba3c01eeSAnsuel Smith 			      AT803X_DEBUG_GATE_CLK_IN1000, 0);
1427ba3c01eeSAnsuel Smith 
1428ba3c01eeSAnsuel Smith 	at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_HIB_CTRL,
1429ba3c01eeSAnsuel Smith 			      AT803X_DEBUG_HIB_CTRL_EN_ANY_CHANGE |
1430ba3c01eeSAnsuel Smith 			      AT803X_DEBUG_HIB_CTRL_SEL_RST_80U, 0);
1431ba3c01eeSAnsuel Smith 
1432ba3c01eeSAnsuel Smith 	return 0;
1433ba3c01eeSAnsuel Smith }
1434ba3c01eeSAnsuel Smith 
1435317420abSMugunthan V N static struct phy_driver at803x_driver[] = {
1436317420abSMugunthan V N {
143796c36712SMichael Walle 	/* Qualcomm Atheros AR8035 */
14380465d8f8SMichael Walle 	PHY_ID_MATCH_EXACT(ATH8035_PHY_ID),
143996c36712SMichael Walle 	.name			= "Qualcomm Atheros AR8035",
14406cb75767SMichael Walle 	.flags			= PHY_POLL_CABLE_TEST,
14412f664823SMichael Walle 	.probe			= at803x_probe,
14422318ca8aSMichael Walle 	.remove			= at803x_remove,
14437dce80c2SOleksij Rempel 	.config_aneg		= at803x_config_aneg,
14440ca7111aSMatus Ujhelyi 	.config_init		= at803x_config_init,
1445cde0f4f8SMichael Walle 	.soft_reset		= genphy_soft_reset,
1446ea13c9eeSMugunthan V N 	.set_wol		= at803x_set_wol,
1447ea13c9eeSMugunthan V N 	.get_wol		= at803x_get_wol,
14486229ed1fSDaniel Mack 	.suspend		= at803x_suspend,
14496229ed1fSDaniel Mack 	.resume			= at803x_resume,
1450dcdecdcfSHeiner Kallweit 	/* PHY_GBIT_FEATURES */
145106d5f344SRussell King 	.read_status		= at803x_read_status,
14520eae5982SMåns Rullgård 	.config_intr		= at803x_config_intr,
145329773097SIoana Ciornei 	.handle_interrupt	= at803x_handle_interrupt,
1454cde0f4f8SMichael Walle 	.get_tunable		= at803x_get_tunable,
1455cde0f4f8SMichael Walle 	.set_tunable		= at803x_set_tunable,
14566cb75767SMichael Walle 	.cable_test_start	= at803x_cable_test_start,
14576cb75767SMichael Walle 	.cable_test_get_status	= at803x_cable_test_get_status,
1458317420abSMugunthan V N }, {
145996c36712SMichael Walle 	/* Qualcomm Atheros AR8030 */
1460bd8ca17fSDaniel Mack 	.phy_id			= ATH8030_PHY_ID,
146196c36712SMichael Walle 	.name			= "Qualcomm Atheros AR8030",
14620465d8f8SMichael Walle 	.phy_id_mask		= AT8030_PHY_ID_MASK,
14632f664823SMichael Walle 	.probe			= at803x_probe,
14642318ca8aSMichael Walle 	.remove			= at803x_remove,
14650ca7111aSMatus Ujhelyi 	.config_init		= at803x_config_init,
146613a56b44SDaniel Mack 	.link_change_notify	= at803x_link_change_notify,
1467ea13c9eeSMugunthan V N 	.set_wol		= at803x_set_wol,
1468ea13c9eeSMugunthan V N 	.get_wol		= at803x_get_wol,
14696229ed1fSDaniel Mack 	.suspend		= at803x_suspend,
14706229ed1fSDaniel Mack 	.resume			= at803x_resume,
1471dcdecdcfSHeiner Kallweit 	/* PHY_BASIC_FEATURES */
14720eae5982SMåns Rullgård 	.config_intr		= at803x_config_intr,
147329773097SIoana Ciornei 	.handle_interrupt	= at803x_handle_interrupt,
147405d7cce8SMugunthan V N }, {
147596c36712SMichael Walle 	/* Qualcomm Atheros AR8031/AR8033 */
14760465d8f8SMichael Walle 	PHY_ID_MATCH_EXACT(ATH8031_PHY_ID),
147796c36712SMichael Walle 	.name			= "Qualcomm Atheros AR8031/AR8033",
14786cb75767SMichael Walle 	.flags			= PHY_POLL_CABLE_TEST,
14792f664823SMichael Walle 	.probe			= at803x_probe,
14802318ca8aSMichael Walle 	.remove			= at803x_remove,
148105d7cce8SMugunthan V N 	.config_init		= at803x_config_init,
148263477a5dSMichael Walle 	.config_aneg		= at803x_config_aneg,
1483cde0f4f8SMichael Walle 	.soft_reset		= genphy_soft_reset,
148405d7cce8SMugunthan V N 	.set_wol		= at803x_set_wol,
148505d7cce8SMugunthan V N 	.get_wol		= at803x_get_wol,
14866229ed1fSDaniel Mack 	.suspend		= at803x_suspend,
14876229ed1fSDaniel Mack 	.resume			= at803x_resume,
1488c329e5afSDavid Bauer 	.read_page		= at803x_read_page,
1489c329e5afSDavid Bauer 	.write_page		= at803x_write_page,
1490b856150cSDavid Bauer 	.get_features		= at803x_get_features,
149106d5f344SRussell King 	.read_status		= at803x_read_status,
149277a99394SZhao Qiang 	.config_intr		= &at803x_config_intr,
149329773097SIoana Ciornei 	.handle_interrupt	= at803x_handle_interrupt,
1494cde0f4f8SMichael Walle 	.get_tunable		= at803x_get_tunable,
1495cde0f4f8SMichael Walle 	.set_tunable		= at803x_set_tunable,
14966cb75767SMichael Walle 	.cable_test_start	= at803x_cable_test_start,
14976cb75767SMichael Walle 	.cable_test_get_status	= at803x_cable_test_get_status,
14987908d2ceSOleksij Rempel }, {
14995800091aSDavid Bauer 	/* Qualcomm Atheros AR8032 */
15005800091aSDavid Bauer 	PHY_ID_MATCH_EXACT(ATH8032_PHY_ID),
15015800091aSDavid Bauer 	.name			= "Qualcomm Atheros AR8032",
15025800091aSDavid Bauer 	.probe			= at803x_probe,
15035800091aSDavid Bauer 	.remove			= at803x_remove,
1504dc0f3ed1SOleksij Rempel 	.flags			= PHY_POLL_CABLE_TEST,
15055800091aSDavid Bauer 	.config_init		= at803x_config_init,
15065800091aSDavid Bauer 	.link_change_notify	= at803x_link_change_notify,
15075800091aSDavid Bauer 	.set_wol		= at803x_set_wol,
15085800091aSDavid Bauer 	.get_wol		= at803x_get_wol,
15095800091aSDavid Bauer 	.suspend		= at803x_suspend,
15105800091aSDavid Bauer 	.resume			= at803x_resume,
15115800091aSDavid Bauer 	/* PHY_BASIC_FEATURES */
15125800091aSDavid Bauer 	.config_intr		= at803x_config_intr,
151329773097SIoana Ciornei 	.handle_interrupt	= at803x_handle_interrupt,
1514dc0f3ed1SOleksij Rempel 	.cable_test_start	= at803x_cable_test_start,
1515dc0f3ed1SOleksij Rempel 	.cable_test_get_status	= at803x_cable_test_get_status,
15165800091aSDavid Bauer }, {
15177908d2ceSOleksij Rempel 	/* ATHEROS AR9331 */
15187908d2ceSOleksij Rempel 	PHY_ID_MATCH_EXACT(ATH9331_PHY_ID),
151996c36712SMichael Walle 	.name			= "Qualcomm Atheros AR9331 built-in PHY",
15207908d2ceSOleksij Rempel 	.suspend		= at803x_suspend,
15217908d2ceSOleksij Rempel 	.resume			= at803x_resume,
1522dc0f3ed1SOleksij Rempel 	.flags			= PHY_POLL_CABLE_TEST,
15237908d2ceSOleksij Rempel 	/* PHY_BASIC_FEATURES */
15247908d2ceSOleksij Rempel 	.config_intr		= &at803x_config_intr,
152529773097SIoana Ciornei 	.handle_interrupt	= at803x_handle_interrupt,
1526dc0f3ed1SOleksij Rempel 	.cable_test_start	= at803x_cable_test_start,
1527dc0f3ed1SOleksij Rempel 	.cable_test_get_status	= at803x_cable_test_get_status,
15287dce80c2SOleksij Rempel 	.read_status		= at803x_read_status,
15297dce80c2SOleksij Rempel 	.soft_reset		= genphy_soft_reset,
15307dce80c2SOleksij Rempel 	.config_aneg		= at803x_config_aneg,
1531272833b9SAnsuel Smith }, {
1532fada2ce0SDavid Bauer 	/* Qualcomm Atheros QCA9561 */
1533fada2ce0SDavid Bauer 	PHY_ID_MATCH_EXACT(QCA9561_PHY_ID),
1534fada2ce0SDavid Bauer 	.name			= "Qualcomm Atheros QCA9561 built-in PHY",
1535fada2ce0SDavid Bauer 	.suspend		= at803x_suspend,
1536fada2ce0SDavid Bauer 	.resume			= at803x_resume,
1537fada2ce0SDavid Bauer 	.flags			= PHY_POLL_CABLE_TEST,
1538fada2ce0SDavid Bauer 	/* PHY_BASIC_FEATURES */
1539fada2ce0SDavid Bauer 	.config_intr		= &at803x_config_intr,
1540fada2ce0SDavid Bauer 	.handle_interrupt	= at803x_handle_interrupt,
1541fada2ce0SDavid Bauer 	.cable_test_start	= at803x_cable_test_start,
1542fada2ce0SDavid Bauer 	.cable_test_get_status	= at803x_cable_test_get_status,
1543fada2ce0SDavid Bauer 	.read_status		= at803x_read_status,
1544fada2ce0SDavid Bauer 	.soft_reset		= genphy_soft_reset,
1545fada2ce0SDavid Bauer 	.config_aneg		= at803x_config_aneg,
1546fada2ce0SDavid Bauer }, {
1547272833b9SAnsuel Smith 	/* QCA8337 */
1548272833b9SAnsuel Smith 	.phy_id			= QCA8337_PHY_ID,
1549272833b9SAnsuel Smith 	.phy_id_mask		= QCA8K_PHY_ID_MASK,
1550d44fd860SAnsuel Smith 	.name			= "Qualcomm Atheros 8337 internal PHY",
1551272833b9SAnsuel Smith 	/* PHY_GBIT_FEATURES */
15521ca83119SAnsuel Smith 	.link_change_notify	= qca83xx_link_change_notify,
1553272833b9SAnsuel Smith 	.probe			= at803x_probe,
1554272833b9SAnsuel Smith 	.flags			= PHY_IS_INTERNAL,
1555272833b9SAnsuel Smith 	.config_init		= qca83xx_config_init,
1556272833b9SAnsuel Smith 	.soft_reset		= genphy_soft_reset,
1557272833b9SAnsuel Smith 	.get_sset_count		= at803x_get_sset_count,
1558272833b9SAnsuel Smith 	.get_strings		= at803x_get_strings,
1559272833b9SAnsuel Smith 	.get_stats		= at803x_get_stats,
1560ba3c01eeSAnsuel Smith 	.suspend		= qca83xx_suspend,
1561ba3c01eeSAnsuel Smith 	.resume			= qca83xx_resume,
15620ccf8511SAnsuel Smith }, {
1563b4df02b5SAnsuel Smith 	/* QCA8327-A from switch QCA8327-AL1A */
1564b4df02b5SAnsuel Smith 	.phy_id			= QCA8327_A_PHY_ID,
15650ccf8511SAnsuel Smith 	.phy_id_mask		= QCA8K_PHY_ID_MASK,
1566d44fd860SAnsuel Smith 	.name			= "Qualcomm Atheros 8327-A internal PHY",
1567b4df02b5SAnsuel Smith 	/* PHY_GBIT_FEATURES */
15681ca83119SAnsuel Smith 	.link_change_notify	= qca83xx_link_change_notify,
1569b4df02b5SAnsuel Smith 	.probe			= at803x_probe,
1570b4df02b5SAnsuel Smith 	.flags			= PHY_IS_INTERNAL,
1571b4df02b5SAnsuel Smith 	.config_init		= qca83xx_config_init,
1572b4df02b5SAnsuel Smith 	.soft_reset		= genphy_soft_reset,
1573b4df02b5SAnsuel Smith 	.get_sset_count		= at803x_get_sset_count,
1574b4df02b5SAnsuel Smith 	.get_strings		= at803x_get_strings,
1575b4df02b5SAnsuel Smith 	.get_stats		= at803x_get_stats,
1576ba3c01eeSAnsuel Smith 	.suspend		= qca83xx_suspend,
1577ba3c01eeSAnsuel Smith 	.resume			= qca83xx_resume,
1578b4df02b5SAnsuel Smith }, {
1579b4df02b5SAnsuel Smith 	/* QCA8327-B from switch QCA8327-BL1A */
1580b4df02b5SAnsuel Smith 	.phy_id			= QCA8327_B_PHY_ID,
1581b4df02b5SAnsuel Smith 	.phy_id_mask		= QCA8K_PHY_ID_MASK,
1582d44fd860SAnsuel Smith 	.name			= "Qualcomm Atheros 8327-B internal PHY",
15830ccf8511SAnsuel Smith 	/* PHY_GBIT_FEATURES */
15841ca83119SAnsuel Smith 	.link_change_notify	= qca83xx_link_change_notify,
15850ccf8511SAnsuel Smith 	.probe			= at803x_probe,
15860ccf8511SAnsuel Smith 	.flags			= PHY_IS_INTERNAL,
15870ccf8511SAnsuel Smith 	.config_init		= qca83xx_config_init,
15880ccf8511SAnsuel Smith 	.soft_reset		= genphy_soft_reset,
15890ccf8511SAnsuel Smith 	.get_sset_count		= at803x_get_sset_count,
15900ccf8511SAnsuel Smith 	.get_strings		= at803x_get_strings,
15910ccf8511SAnsuel Smith 	.get_stats		= at803x_get_stats,
1592ba3c01eeSAnsuel Smith 	.suspend		= qca83xx_suspend,
1593ba3c01eeSAnsuel Smith 	.resume			= qca83xx_resume,
1594272833b9SAnsuel Smith }, };
15950ca7111aSMatus Ujhelyi 
159650fd7150SJohan Hovold module_phy_driver(at803x_driver);
15970ca7111aSMatus Ujhelyi 
15980ca7111aSMatus Ujhelyi static struct mdio_device_id __maybe_unused atheros_tbl[] = {
15990465d8f8SMichael Walle 	{ ATH8030_PHY_ID, AT8030_PHY_ID_MASK },
16000465d8f8SMichael Walle 	{ PHY_ID_MATCH_EXACT(ATH8031_PHY_ID) },
16015800091aSDavid Bauer 	{ PHY_ID_MATCH_EXACT(ATH8032_PHY_ID) },
16020465d8f8SMichael Walle 	{ PHY_ID_MATCH_EXACT(ATH8035_PHY_ID) },
16037908d2ceSOleksij Rempel 	{ PHY_ID_MATCH_EXACT(ATH9331_PHY_ID) },
16040ccf8511SAnsuel Smith 	{ PHY_ID_MATCH_EXACT(QCA8337_PHY_ID) },
1605b4df02b5SAnsuel Smith 	{ PHY_ID_MATCH_EXACT(QCA8327_A_PHY_ID) },
1606b4df02b5SAnsuel Smith 	{ PHY_ID_MATCH_EXACT(QCA8327_B_PHY_ID) },
1607fada2ce0SDavid Bauer 	{ PHY_ID_MATCH_EXACT(QCA9561_PHY_ID) },
16080ca7111aSMatus Ujhelyi 	{ }
16090ca7111aSMatus Ujhelyi };
16100ca7111aSMatus Ujhelyi 
16110ca7111aSMatus Ujhelyi MODULE_DEVICE_TABLE(mdio, atheros_tbl);
1612