xref: /openbmc/linux/drivers/net/phy/at803x.c (revision c0f0b563)
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 
730ca7111aSMatus Ujhelyi #define AT803X_LOC_MAC_ADDR_0_15_OFFSET		0x804C
740ca7111aSMatus Ujhelyi #define AT803X_LOC_MAC_ADDR_16_31_OFFSET	0x804B
750ca7111aSMatus Ujhelyi #define AT803X_LOC_MAC_ADDR_32_47_OFFSET	0x804A
76f62265b5SZefir Kurtisi #define AT803X_REG_CHIP_CONFIG			0x1f
77f62265b5SZefir Kurtisi #define AT803X_BT_BX_REG_SEL			0x8000
78a46bd63bSMartin Blumenstingl 
791ca6d1b1SMugunthan V N #define AT803X_DEBUG_ADDR			0x1D
801ca6d1b1SMugunthan V N #define AT803X_DEBUG_DATA			0x1E
81a46bd63bSMartin Blumenstingl 
82f62265b5SZefir Kurtisi #define AT803X_MODE_CFG_MASK			0x0F
83f62265b5SZefir Kurtisi #define AT803X_MODE_CFG_SGMII			0x01
84f62265b5SZefir Kurtisi 
85f62265b5SZefir Kurtisi #define AT803X_PSSR				0x11	/*PHY-Specific Status Register*/
86f62265b5SZefir Kurtisi #define AT803X_PSSR_MR_AN_COMPLETE		0x0200
87f62265b5SZefir Kurtisi 
8867999555SAnsuel Smith #define AT803X_DEBUG_ANALOG_TEST_CTRL		0x00
891ca83119SAnsuel Smith #define QCA8327_DEBUG_MANU_CTRL_EN		BIT(2)
901ca83119SAnsuel Smith #define QCA8337_DEBUG_MANU_CTRL_EN		GENMASK(3, 2)
912e5f9f28SMartin Blumenstingl #define AT803X_DEBUG_RX_CLK_DLY_EN		BIT(15)
92a46bd63bSMartin Blumenstingl 
9367999555SAnsuel Smith #define AT803X_DEBUG_SYSTEM_CTRL_MODE		0x05
942e5f9f28SMartin Blumenstingl #define AT803X_DEBUG_TX_CLK_DLY_EN		BIT(8)
950ca7111aSMatus Ujhelyi 
96ba3c01eeSAnsuel Smith #define AT803X_DEBUG_REG_HIB_CTRL		0x0b
97ba3c01eeSAnsuel Smith #define   AT803X_DEBUG_HIB_CTRL_SEL_RST_80U	BIT(10)
98ba3c01eeSAnsuel Smith #define   AT803X_DEBUG_HIB_CTRL_EN_ANY_CHANGE	BIT(13)
99ba3c01eeSAnsuel Smith 
100272833b9SAnsuel Smith #define AT803X_DEBUG_REG_3C			0x3C
101272833b9SAnsuel Smith 
10267999555SAnsuel Smith #define AT803X_DEBUG_REG_GREEN			0x3D
103ba3c01eeSAnsuel Smith #define   AT803X_DEBUG_GATE_CLK_IN1000		BIT(6)
104272833b9SAnsuel Smith 
1052f664823SMichael Walle #define AT803X_DEBUG_REG_1F			0x1F
1062f664823SMichael Walle #define AT803X_DEBUG_PLL_ON			BIT(2)
1072f664823SMichael Walle #define AT803X_DEBUG_RGMII_1V8			BIT(3)
1082f664823SMichael Walle 
109272833b9SAnsuel Smith #define MDIO_AZ_DEBUG				0x800D
110272833b9SAnsuel Smith 
1112f664823SMichael Walle /* AT803x supports either the XTAL input pad, an internal PLL or the
1122f664823SMichael Walle  * DSP as clock reference for the clock output pad. The XTAL reference
1132f664823SMichael Walle  * is only used for 25 MHz output, all other frequencies need the PLL.
1142f664823SMichael Walle  * The DSP as a clock reference is used in synchronous ethernet
1152f664823SMichael Walle  * applications.
1162f664823SMichael Walle  *
1172f664823SMichael Walle  * By default the PLL is only enabled if there is a link. Otherwise
1182f664823SMichael Walle  * the PHY will go into low power state and disabled the PLL. You can
1192f664823SMichael Walle  * set the PLL_ON bit (see debug register 0x1f) to keep the PLL always
1202f664823SMichael Walle  * enabled.
1212f664823SMichael Walle  */
1222f664823SMichael Walle #define AT803X_MMD7_CLK25M			0x8016
1232f664823SMichael Walle #define AT803X_CLK_OUT_MASK			GENMASK(4, 2)
1242f664823SMichael Walle #define AT803X_CLK_OUT_25MHZ_XTAL		0
1252f664823SMichael Walle #define AT803X_CLK_OUT_25MHZ_DSP		1
1262f664823SMichael Walle #define AT803X_CLK_OUT_50MHZ_PLL		2
1272f664823SMichael Walle #define AT803X_CLK_OUT_50MHZ_DSP		3
1282f664823SMichael Walle #define AT803X_CLK_OUT_62_5MHZ_PLL		4
1292f664823SMichael Walle #define AT803X_CLK_OUT_62_5MHZ_DSP		5
1302f664823SMichael Walle #define AT803X_CLK_OUT_125MHZ_PLL		6
1312f664823SMichael Walle #define AT803X_CLK_OUT_125MHZ_DSP		7
1322f664823SMichael Walle 
133428061f7SMichael Walle /* The AR8035 has another mask which is compatible with the AR8031/AR8033 mask
134428061f7SMichael Walle  * but doesn't support choosing between XTAL/PLL and DSP.
1352f664823SMichael Walle  */
1362f664823SMichael Walle #define AT8035_CLK_OUT_MASK			GENMASK(4, 3)
1372f664823SMichael Walle 
1382f664823SMichael Walle #define AT803X_CLK_OUT_STRENGTH_MASK		GENMASK(8, 7)
1392f664823SMichael Walle #define AT803X_CLK_OUT_STRENGTH_FULL		0
1402f664823SMichael Walle #define AT803X_CLK_OUT_STRENGTH_HALF		1
1412f664823SMichael Walle #define AT803X_CLK_OUT_STRENGTH_QUARTER		2
1422f664823SMichael Walle 
143cde0f4f8SMichael Walle #define AT803X_DEFAULT_DOWNSHIFT		5
144cde0f4f8SMichael Walle #define AT803X_MIN_DOWNSHIFT			2
145cde0f4f8SMichael Walle #define AT803X_MAX_DOWNSHIFT			9
146cde0f4f8SMichael Walle 
147390b4cadSRussell King #define AT803X_MMD3_SMARTEEE_CTL1		0x805b
148390b4cadSRussell King #define AT803X_MMD3_SMARTEEE_CTL2		0x805c
149390b4cadSRussell King #define AT803X_MMD3_SMARTEEE_CTL3		0x805d
150390b4cadSRussell King #define AT803X_MMD3_SMARTEEE_CTL3_LPI_EN	BIT(8)
151390b4cadSRussell King 
1527908d2ceSOleksij Rempel #define ATH9331_PHY_ID				0x004dd041
153bd8ca17fSDaniel Mack #define ATH8030_PHY_ID				0x004dd076
154bd8ca17fSDaniel Mack #define ATH8031_PHY_ID				0x004dd074
1555800091aSDavid Bauer #define ATH8032_PHY_ID				0x004dd023
156bd8ca17fSDaniel Mack #define ATH8035_PHY_ID				0x004dd072
1570465d8f8SMichael Walle #define AT8030_PHY_ID_MASK			0xffffffef
158bd8ca17fSDaniel Mack 
159b4df02b5SAnsuel Smith #define QCA8327_A_PHY_ID			0x004dd033
160b4df02b5SAnsuel Smith #define QCA8327_B_PHY_ID			0x004dd034
161272833b9SAnsuel Smith #define QCA8337_PHY_ID				0x004dd036
162fada2ce0SDavid Bauer #define QCA9561_PHY_ID				0x004dd042
163272833b9SAnsuel Smith #define QCA8K_PHY_ID_MASK			0xffffffff
164272833b9SAnsuel Smith 
165272833b9SAnsuel Smith #define QCA8K_DEVFLAGS_REVISION_MASK		GENMASK(2, 0)
166272833b9SAnsuel Smith 
167c329e5afSDavid Bauer #define AT803X_PAGE_FIBER			0
168c329e5afSDavid Bauer #define AT803X_PAGE_COPPER			1
169c329e5afSDavid Bauer 
170d0e13fd5SAnsuel Smith /* don't turn off internal PLL */
171d0e13fd5SAnsuel Smith #define AT803X_KEEP_PLL_ENABLED			BIT(0)
172d0e13fd5SAnsuel Smith #define AT803X_DISABLE_SMARTEEE			BIT(1)
173d0e13fd5SAnsuel Smith 
17496c36712SMichael Walle MODULE_DESCRIPTION("Qualcomm Atheros AR803x PHY driver");
1750ca7111aSMatus Ujhelyi MODULE_AUTHOR("Matus Ujhelyi");
1760ca7111aSMatus Ujhelyi MODULE_LICENSE("GPL");
1770ca7111aSMatus Ujhelyi 
178272833b9SAnsuel Smith enum stat_access_type {
179272833b9SAnsuel Smith 	PHY,
180272833b9SAnsuel Smith 	MMD
181272833b9SAnsuel Smith };
182272833b9SAnsuel Smith 
183272833b9SAnsuel Smith struct at803x_hw_stat {
184272833b9SAnsuel Smith 	const char *string;
185272833b9SAnsuel Smith 	u8 reg;
186272833b9SAnsuel Smith 	u32 mask;
187272833b9SAnsuel Smith 	enum stat_access_type access_type;
188272833b9SAnsuel Smith };
189272833b9SAnsuel Smith 
190272833b9SAnsuel Smith static struct at803x_hw_stat at803x_hw_stats[] = {
191272833b9SAnsuel Smith 	{ "phy_idle_errors", 0xa, GENMASK(7, 0), PHY},
192272833b9SAnsuel Smith 	{ "phy_receive_errors", 0x15, GENMASK(15, 0), PHY},
193272833b9SAnsuel Smith 	{ "eee_wake_errors", 0x16, GENMASK(15, 0), MMD},
194272833b9SAnsuel Smith };
195272833b9SAnsuel Smith 
1962f664823SMichael Walle struct at803x_priv {
1972f664823SMichael Walle 	int flags;
1982f664823SMichael Walle 	u16 clk_25m_reg;
1992f664823SMichael Walle 	u16 clk_25m_mask;
200390b4cadSRussell King 	u8 smarteee_lpi_tw_1g;
201390b4cadSRussell King 	u8 smarteee_lpi_tw_100m;
2022f664823SMichael Walle 	struct regulator_dev *vddio_rdev;
2032f664823SMichael Walle 	struct regulator_dev *vddh_rdev;
2042f664823SMichael Walle 	struct regulator *vddio;
205272833b9SAnsuel Smith 	u64 stats[ARRAY_SIZE(at803x_hw_stats)];
2062f664823SMichael Walle };
2072f664823SMichael Walle 
20813a56b44SDaniel Mack struct at803x_context {
20913a56b44SDaniel Mack 	u16 bmcr;
21013a56b44SDaniel Mack 	u16 advertise;
21113a56b44SDaniel Mack 	u16 control1000;
21213a56b44SDaniel Mack 	u16 int_enable;
21313a56b44SDaniel Mack 	u16 smart_speed;
21413a56b44SDaniel Mack 	u16 led_control;
21513a56b44SDaniel Mack };
21613a56b44SDaniel Mack 
217272833b9SAnsuel Smith static int at803x_debug_reg_write(struct phy_device *phydev, u16 reg, u16 data)
218272833b9SAnsuel Smith {
219272833b9SAnsuel Smith 	int ret;
220272833b9SAnsuel Smith 
221272833b9SAnsuel Smith 	ret = phy_write(phydev, AT803X_DEBUG_ADDR, reg);
222272833b9SAnsuel Smith 	if (ret < 0)
223272833b9SAnsuel Smith 		return ret;
224272833b9SAnsuel Smith 
225272833b9SAnsuel Smith 	return phy_write(phydev, AT803X_DEBUG_DATA, data);
226272833b9SAnsuel Smith }
227272833b9SAnsuel Smith 
2282e5f9f28SMartin Blumenstingl static int at803x_debug_reg_read(struct phy_device *phydev, u16 reg)
2292e5f9f28SMartin Blumenstingl {
2302e5f9f28SMartin Blumenstingl 	int ret;
2312e5f9f28SMartin Blumenstingl 
2322e5f9f28SMartin Blumenstingl 	ret = phy_write(phydev, AT803X_DEBUG_ADDR, reg);
2332e5f9f28SMartin Blumenstingl 	if (ret < 0)
2342e5f9f28SMartin Blumenstingl 		return ret;
2352e5f9f28SMartin Blumenstingl 
2362e5f9f28SMartin Blumenstingl 	return phy_read(phydev, AT803X_DEBUG_DATA);
2372e5f9f28SMartin Blumenstingl }
2382e5f9f28SMartin Blumenstingl 
2392e5f9f28SMartin Blumenstingl static int at803x_debug_reg_mask(struct phy_device *phydev, u16 reg,
2402e5f9f28SMartin Blumenstingl 				 u16 clear, u16 set)
2412e5f9f28SMartin Blumenstingl {
2422e5f9f28SMartin Blumenstingl 	u16 val;
2432e5f9f28SMartin Blumenstingl 	int ret;
2442e5f9f28SMartin Blumenstingl 
2452e5f9f28SMartin Blumenstingl 	ret = at803x_debug_reg_read(phydev, reg);
2462e5f9f28SMartin Blumenstingl 	if (ret < 0)
2472e5f9f28SMartin Blumenstingl 		return ret;
2482e5f9f28SMartin Blumenstingl 
2492e5f9f28SMartin Blumenstingl 	val = ret & 0xffff;
2502e5f9f28SMartin Blumenstingl 	val &= ~clear;
2512e5f9f28SMartin Blumenstingl 	val |= set;
2522e5f9f28SMartin Blumenstingl 
2532e5f9f28SMartin Blumenstingl 	return phy_write(phydev, AT803X_DEBUG_DATA, val);
2542e5f9f28SMartin Blumenstingl }
2552e5f9f28SMartin Blumenstingl 
256c329e5afSDavid Bauer static int at803x_write_page(struct phy_device *phydev, int page)
257c329e5afSDavid Bauer {
258c329e5afSDavid Bauer 	int mask;
259c329e5afSDavid Bauer 	int set;
260c329e5afSDavid Bauer 
261c329e5afSDavid Bauer 	if (page == AT803X_PAGE_COPPER) {
262c329e5afSDavid Bauer 		set = AT803X_BT_BX_REG_SEL;
263c329e5afSDavid Bauer 		mask = 0;
264c329e5afSDavid Bauer 	} else {
265c329e5afSDavid Bauer 		set = 0;
266c329e5afSDavid Bauer 		mask = AT803X_BT_BX_REG_SEL;
267c329e5afSDavid Bauer 	}
268c329e5afSDavid Bauer 
269c329e5afSDavid Bauer 	return __phy_modify(phydev, AT803X_REG_CHIP_CONFIG, mask, set);
270c329e5afSDavid Bauer }
271c329e5afSDavid Bauer 
272c329e5afSDavid Bauer static int at803x_read_page(struct phy_device *phydev)
273c329e5afSDavid Bauer {
274c329e5afSDavid Bauer 	int ccr = __phy_read(phydev, AT803X_REG_CHIP_CONFIG);
275c329e5afSDavid Bauer 
276c329e5afSDavid Bauer 	if (ccr < 0)
277c329e5afSDavid Bauer 		return ccr;
278c329e5afSDavid Bauer 
279c329e5afSDavid Bauer 	if (ccr & AT803X_BT_BX_REG_SEL)
280c329e5afSDavid Bauer 		return AT803X_PAGE_COPPER;
281c329e5afSDavid Bauer 
282c329e5afSDavid Bauer 	return AT803X_PAGE_FIBER;
283c329e5afSDavid Bauer }
284c329e5afSDavid Bauer 
2856d4cd041SVinod Koul static int at803x_enable_rx_delay(struct phy_device *phydev)
2866d4cd041SVinod Koul {
28767999555SAnsuel Smith 	return at803x_debug_reg_mask(phydev, AT803X_DEBUG_ANALOG_TEST_CTRL, 0,
2886d4cd041SVinod Koul 				     AT803X_DEBUG_RX_CLK_DLY_EN);
2896d4cd041SVinod Koul }
2906d4cd041SVinod Koul 
2916d4cd041SVinod Koul static int at803x_enable_tx_delay(struct phy_device *phydev)
2926d4cd041SVinod Koul {
29367999555SAnsuel Smith 	return at803x_debug_reg_mask(phydev, AT803X_DEBUG_SYSTEM_CTRL_MODE, 0,
2946d4cd041SVinod Koul 				     AT803X_DEBUG_TX_CLK_DLY_EN);
2956d4cd041SVinod Koul }
2966d4cd041SVinod Koul 
29743f2ebd5SVinod Koul static int at803x_disable_rx_delay(struct phy_device *phydev)
2982e5f9f28SMartin Blumenstingl {
29967999555SAnsuel Smith 	return at803x_debug_reg_mask(phydev, AT803X_DEBUG_ANALOG_TEST_CTRL,
300cd28d1d6SVinod Koul 				     AT803X_DEBUG_RX_CLK_DLY_EN, 0);
3012e5f9f28SMartin Blumenstingl }
3022e5f9f28SMartin Blumenstingl 
30343f2ebd5SVinod Koul static int at803x_disable_tx_delay(struct phy_device *phydev)
3042e5f9f28SMartin Blumenstingl {
30567999555SAnsuel Smith 	return at803x_debug_reg_mask(phydev, AT803X_DEBUG_SYSTEM_CTRL_MODE,
306cd28d1d6SVinod Koul 				     AT803X_DEBUG_TX_CLK_DLY_EN, 0);
3072e5f9f28SMartin Blumenstingl }
3082e5f9f28SMartin Blumenstingl 
30913a56b44SDaniel Mack /* save relevant PHY registers to private copy */
31013a56b44SDaniel Mack static void at803x_context_save(struct phy_device *phydev,
31113a56b44SDaniel Mack 				struct at803x_context *context)
31213a56b44SDaniel Mack {
31313a56b44SDaniel Mack 	context->bmcr = phy_read(phydev, MII_BMCR);
31413a56b44SDaniel Mack 	context->advertise = phy_read(phydev, MII_ADVERTISE);
31513a56b44SDaniel Mack 	context->control1000 = phy_read(phydev, MII_CTRL1000);
31613a56b44SDaniel Mack 	context->int_enable = phy_read(phydev, AT803X_INTR_ENABLE);
31713a56b44SDaniel Mack 	context->smart_speed = phy_read(phydev, AT803X_SMART_SPEED);
31813a56b44SDaniel Mack 	context->led_control = phy_read(phydev, AT803X_LED_CONTROL);
31913a56b44SDaniel Mack }
32013a56b44SDaniel Mack 
32113a56b44SDaniel Mack /* restore relevant PHY registers from private copy */
32213a56b44SDaniel Mack static void at803x_context_restore(struct phy_device *phydev,
32313a56b44SDaniel Mack 				   const struct at803x_context *context)
32413a56b44SDaniel Mack {
32513a56b44SDaniel Mack 	phy_write(phydev, MII_BMCR, context->bmcr);
32613a56b44SDaniel Mack 	phy_write(phydev, MII_ADVERTISE, context->advertise);
32713a56b44SDaniel Mack 	phy_write(phydev, MII_CTRL1000, context->control1000);
32813a56b44SDaniel Mack 	phy_write(phydev, AT803X_INTR_ENABLE, context->int_enable);
32913a56b44SDaniel Mack 	phy_write(phydev, AT803X_SMART_SPEED, context->smart_speed);
33013a56b44SDaniel Mack 	phy_write(phydev, AT803X_LED_CONTROL, context->led_control);
33113a56b44SDaniel Mack }
33213a56b44SDaniel Mack 
333ea13c9eeSMugunthan V N static int at803x_set_wol(struct phy_device *phydev,
334ea13c9eeSMugunthan V N 			  struct ethtool_wolinfo *wol)
3350ca7111aSMatus Ujhelyi {
3360ca7111aSMatus Ujhelyi 	struct net_device *ndev = phydev->attached_dev;
3370ca7111aSMatus Ujhelyi 	const u8 *mac;
338ea13c9eeSMugunthan V N 	int ret;
339ea13c9eeSMugunthan V N 	u32 value;
340*c0f0b563SLuo Jie 	unsigned int i;
341*c0f0b563SLuo Jie 	const unsigned int offsets[] = {
3420ca7111aSMatus Ujhelyi 		AT803X_LOC_MAC_ADDR_32_47_OFFSET,
3430ca7111aSMatus Ujhelyi 		AT803X_LOC_MAC_ADDR_16_31_OFFSET,
3440ca7111aSMatus Ujhelyi 		AT803X_LOC_MAC_ADDR_0_15_OFFSET,
3450ca7111aSMatus Ujhelyi 	};
3460ca7111aSMatus Ujhelyi 
3470ca7111aSMatus Ujhelyi 	if (!ndev)
348ea13c9eeSMugunthan V N 		return -ENODEV;
3490ca7111aSMatus Ujhelyi 
350ea13c9eeSMugunthan V N 	if (wol->wolopts & WAKE_MAGIC) {
3510ca7111aSMatus Ujhelyi 		mac = (const u8 *) ndev->dev_addr;
3520ca7111aSMatus Ujhelyi 
3530ca7111aSMatus Ujhelyi 		if (!is_valid_ether_addr(mac))
354fc755687SDan Murphy 			return -EINVAL;
3550ca7111aSMatus Ujhelyi 
3560e021396SCarlo Caione 		for (i = 0; i < 3; i++)
357*c0f0b563SLuo Jie 			phy_write_mmd(phydev, MDIO_MMD_PCS, offsets[i],
3580ca7111aSMatus Ujhelyi 				      mac[(i * 2) + 1] | (mac[(i * 2)] << 8));
359ea13c9eeSMugunthan V N 
360ea13c9eeSMugunthan V N 		value = phy_read(phydev, AT803X_INTR_ENABLE);
361e6e4a556SMartin Blumenstingl 		value |= AT803X_INTR_ENABLE_WOL;
362ea13c9eeSMugunthan V N 		ret = phy_write(phydev, AT803X_INTR_ENABLE, value);
363ea13c9eeSMugunthan V N 		if (ret)
364ea13c9eeSMugunthan V N 			return ret;
365ea13c9eeSMugunthan V N 		value = phy_read(phydev, AT803X_INTR_STATUS);
366ea13c9eeSMugunthan V N 	} else {
367ea13c9eeSMugunthan V N 		value = phy_read(phydev, AT803X_INTR_ENABLE);
368e6e4a556SMartin Blumenstingl 		value &= (~AT803X_INTR_ENABLE_WOL);
369ea13c9eeSMugunthan V N 		ret = phy_write(phydev, AT803X_INTR_ENABLE, value);
370ea13c9eeSMugunthan V N 		if (ret)
371ea13c9eeSMugunthan V N 			return ret;
372ea13c9eeSMugunthan V N 		value = phy_read(phydev, AT803X_INTR_STATUS);
373ea13c9eeSMugunthan V N 	}
374ea13c9eeSMugunthan V N 
375ea13c9eeSMugunthan V N 	return ret;
376ea13c9eeSMugunthan V N }
377ea13c9eeSMugunthan V N 
378ea13c9eeSMugunthan V N static void at803x_get_wol(struct phy_device *phydev,
379ea13c9eeSMugunthan V N 			   struct ethtool_wolinfo *wol)
380ea13c9eeSMugunthan V N {
381ea13c9eeSMugunthan V N 	u32 value;
382ea13c9eeSMugunthan V N 
383ea13c9eeSMugunthan V N 	wol->supported = WAKE_MAGIC;
384ea13c9eeSMugunthan V N 	wol->wolopts = 0;
385ea13c9eeSMugunthan V N 
386ea13c9eeSMugunthan V N 	value = phy_read(phydev, AT803X_INTR_ENABLE);
387e6e4a556SMartin Blumenstingl 	if (value & AT803X_INTR_ENABLE_WOL)
388ea13c9eeSMugunthan V N 		wol->wolopts |= WAKE_MAGIC;
3890ca7111aSMatus Ujhelyi }
3900ca7111aSMatus Ujhelyi 
391272833b9SAnsuel Smith static int at803x_get_sset_count(struct phy_device *phydev)
392272833b9SAnsuel Smith {
393272833b9SAnsuel Smith 	return ARRAY_SIZE(at803x_hw_stats);
394272833b9SAnsuel Smith }
395272833b9SAnsuel Smith 
396272833b9SAnsuel Smith static void at803x_get_strings(struct phy_device *phydev, u8 *data)
397272833b9SAnsuel Smith {
398272833b9SAnsuel Smith 	int i;
399272833b9SAnsuel Smith 
400272833b9SAnsuel Smith 	for (i = 0; i < ARRAY_SIZE(at803x_hw_stats); i++) {
401272833b9SAnsuel Smith 		strscpy(data + i * ETH_GSTRING_LEN,
402272833b9SAnsuel Smith 			at803x_hw_stats[i].string, ETH_GSTRING_LEN);
403272833b9SAnsuel Smith 	}
404272833b9SAnsuel Smith }
405272833b9SAnsuel Smith 
406272833b9SAnsuel Smith static u64 at803x_get_stat(struct phy_device *phydev, int i)
407272833b9SAnsuel Smith {
408272833b9SAnsuel Smith 	struct at803x_hw_stat stat = at803x_hw_stats[i];
409272833b9SAnsuel Smith 	struct at803x_priv *priv = phydev->priv;
410272833b9SAnsuel Smith 	int val;
411272833b9SAnsuel Smith 	u64 ret;
412272833b9SAnsuel Smith 
413272833b9SAnsuel Smith 	if (stat.access_type == MMD)
414272833b9SAnsuel Smith 		val = phy_read_mmd(phydev, MDIO_MMD_PCS, stat.reg);
415272833b9SAnsuel Smith 	else
416272833b9SAnsuel Smith 		val = phy_read(phydev, stat.reg);
417272833b9SAnsuel Smith 
418272833b9SAnsuel Smith 	if (val < 0) {
419272833b9SAnsuel Smith 		ret = U64_MAX;
420272833b9SAnsuel Smith 	} else {
421272833b9SAnsuel Smith 		val = val & stat.mask;
422272833b9SAnsuel Smith 		priv->stats[i] += val;
423272833b9SAnsuel Smith 		ret = priv->stats[i];
424272833b9SAnsuel Smith 	}
425272833b9SAnsuel Smith 
426272833b9SAnsuel Smith 	return ret;
427272833b9SAnsuel Smith }
428272833b9SAnsuel Smith 
429272833b9SAnsuel Smith static void at803x_get_stats(struct phy_device *phydev,
430272833b9SAnsuel Smith 			     struct ethtool_stats *stats, u64 *data)
431272833b9SAnsuel Smith {
432272833b9SAnsuel Smith 	int i;
433272833b9SAnsuel Smith 
434272833b9SAnsuel Smith 	for (i = 0; i < ARRAY_SIZE(at803x_hw_stats); i++)
435272833b9SAnsuel Smith 		data[i] = at803x_get_stat(phydev, i);
436272833b9SAnsuel Smith }
437272833b9SAnsuel Smith 
4386229ed1fSDaniel Mack static int at803x_suspend(struct phy_device *phydev)
4396229ed1fSDaniel Mack {
4406229ed1fSDaniel Mack 	int value;
4416229ed1fSDaniel Mack 	int wol_enabled;
4426229ed1fSDaniel Mack 
4436229ed1fSDaniel Mack 	value = phy_read(phydev, AT803X_INTR_ENABLE);
444e6e4a556SMartin Blumenstingl 	wol_enabled = value & AT803X_INTR_ENABLE_WOL;
4456229ed1fSDaniel Mack 
4466229ed1fSDaniel Mack 	if (wol_enabled)
447fea23fb5SRussell King 		value = BMCR_ISOLATE;
4486229ed1fSDaniel Mack 	else
449fea23fb5SRussell King 		value = BMCR_PDOWN;
4506229ed1fSDaniel Mack 
451fea23fb5SRussell King 	phy_modify(phydev, MII_BMCR, 0, value);
4526229ed1fSDaniel Mack 
4536229ed1fSDaniel Mack 	return 0;
4546229ed1fSDaniel Mack }
4556229ed1fSDaniel Mack 
4566229ed1fSDaniel Mack static int at803x_resume(struct phy_device *phydev)
4576229ed1fSDaniel Mack {
458f102852fSRussell King 	return phy_modify(phydev, MII_BMCR, BMCR_PDOWN | BMCR_ISOLATE, 0);
4596229ed1fSDaniel Mack }
4606229ed1fSDaniel Mack 
4612f664823SMichael Walle static int at803x_rgmii_reg_set_voltage_sel(struct regulator_dev *rdev,
4622f664823SMichael Walle 					    unsigned int selector)
4632f664823SMichael Walle {
4642f664823SMichael Walle 	struct phy_device *phydev = rdev_get_drvdata(rdev);
4652f664823SMichael Walle 
4662f664823SMichael Walle 	if (selector)
4672f664823SMichael Walle 		return at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_1F,
4682f664823SMichael Walle 					     0, AT803X_DEBUG_RGMII_1V8);
4692f664823SMichael Walle 	else
4702f664823SMichael Walle 		return at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_1F,
4712f664823SMichael Walle 					     AT803X_DEBUG_RGMII_1V8, 0);
4722f664823SMichael Walle }
4732f664823SMichael Walle 
4742f664823SMichael Walle static int at803x_rgmii_reg_get_voltage_sel(struct regulator_dev *rdev)
4752f664823SMichael Walle {
4762f664823SMichael Walle 	struct phy_device *phydev = rdev_get_drvdata(rdev);
4772f664823SMichael Walle 	int val;
4782f664823SMichael Walle 
4792f664823SMichael Walle 	val = at803x_debug_reg_read(phydev, AT803X_DEBUG_REG_1F);
4802f664823SMichael Walle 	if (val < 0)
4812f664823SMichael Walle 		return val;
4822f664823SMichael Walle 
4832f664823SMichael Walle 	return (val & AT803X_DEBUG_RGMII_1V8) ? 1 : 0;
4842f664823SMichael Walle }
4852f664823SMichael Walle 
4863faaf539SRikard Falkeborn static const struct regulator_ops vddio_regulator_ops = {
4872f664823SMichael Walle 	.list_voltage = regulator_list_voltage_table,
4882f664823SMichael Walle 	.set_voltage_sel = at803x_rgmii_reg_set_voltage_sel,
4892f664823SMichael Walle 	.get_voltage_sel = at803x_rgmii_reg_get_voltage_sel,
4902f664823SMichael Walle };
4912f664823SMichael Walle 
4922f664823SMichael Walle static const unsigned int vddio_voltage_table[] = {
4932f664823SMichael Walle 	1500000,
4942f664823SMichael Walle 	1800000,
4952f664823SMichael Walle };
4962f664823SMichael Walle 
4972f664823SMichael Walle static const struct regulator_desc vddio_desc = {
4982f664823SMichael Walle 	.name = "vddio",
4992f664823SMichael Walle 	.of_match = of_match_ptr("vddio-regulator"),
5002f664823SMichael Walle 	.n_voltages = ARRAY_SIZE(vddio_voltage_table),
5012f664823SMichael Walle 	.volt_table = vddio_voltage_table,
5022f664823SMichael Walle 	.ops = &vddio_regulator_ops,
5032f664823SMichael Walle 	.type = REGULATOR_VOLTAGE,
5042f664823SMichael Walle 	.owner = THIS_MODULE,
5052f664823SMichael Walle };
5062f664823SMichael Walle 
5073faaf539SRikard Falkeborn static const struct regulator_ops vddh_regulator_ops = {
5082f664823SMichael Walle };
5092f664823SMichael Walle 
5102f664823SMichael Walle static const struct regulator_desc vddh_desc = {
5112f664823SMichael Walle 	.name = "vddh",
5122f664823SMichael Walle 	.of_match = of_match_ptr("vddh-regulator"),
5132f664823SMichael Walle 	.n_voltages = 1,
5142f664823SMichael Walle 	.fixed_uV = 2500000,
5152f664823SMichael Walle 	.ops = &vddh_regulator_ops,
5162f664823SMichael Walle 	.type = REGULATOR_VOLTAGE,
5172f664823SMichael Walle 	.owner = THIS_MODULE,
5182f664823SMichael Walle };
5192f664823SMichael Walle 
5202f664823SMichael Walle static int at8031_register_regulators(struct phy_device *phydev)
5212f664823SMichael Walle {
5222f664823SMichael Walle 	struct at803x_priv *priv = phydev->priv;
5232f664823SMichael Walle 	struct device *dev = &phydev->mdio.dev;
5242f664823SMichael Walle 	struct regulator_config config = { };
5252f664823SMichael Walle 
5262f664823SMichael Walle 	config.dev = dev;
5272f664823SMichael Walle 	config.driver_data = phydev;
5282f664823SMichael Walle 
5292f664823SMichael Walle 	priv->vddio_rdev = devm_regulator_register(dev, &vddio_desc, &config);
5302f664823SMichael Walle 	if (IS_ERR(priv->vddio_rdev)) {
5312f664823SMichael Walle 		phydev_err(phydev, "failed to register VDDIO regulator\n");
5322f664823SMichael Walle 		return PTR_ERR(priv->vddio_rdev);
5332f664823SMichael Walle 	}
5342f664823SMichael Walle 
5352f664823SMichael Walle 	priv->vddh_rdev = devm_regulator_register(dev, &vddh_desc, &config);
5362f664823SMichael Walle 	if (IS_ERR(priv->vddh_rdev)) {
5372f664823SMichael Walle 		phydev_err(phydev, "failed to register VDDH regulator\n");
5382f664823SMichael Walle 		return PTR_ERR(priv->vddh_rdev);
5392f664823SMichael Walle 	}
5402f664823SMichael Walle 
5412f664823SMichael Walle 	return 0;
5422f664823SMichael Walle }
5432f664823SMichael Walle 
5442f664823SMichael Walle static int at803x_parse_dt(struct phy_device *phydev)
5452f664823SMichael Walle {
5462f664823SMichael Walle 	struct device_node *node = phydev->mdio.dev.of_node;
5472f664823SMichael Walle 	struct at803x_priv *priv = phydev->priv;
548390b4cadSRussell King 	u32 freq, strength, tw;
5493f2edd30SAndrew Lunn 	unsigned int sel;
5502f664823SMichael Walle 	int ret;
5512f664823SMichael Walle 
5522f664823SMichael Walle 	if (!IS_ENABLED(CONFIG_OF_MDIO))
5532f664823SMichael Walle 		return 0;
5542f664823SMichael Walle 
555390b4cadSRussell King 	if (of_property_read_bool(node, "qca,disable-smarteee"))
556390b4cadSRussell King 		priv->flags |= AT803X_DISABLE_SMARTEEE;
557390b4cadSRussell King 
558390b4cadSRussell King 	if (!of_property_read_u32(node, "qca,smarteee-tw-us-1g", &tw)) {
559390b4cadSRussell King 		if (!tw || tw > 255) {
560390b4cadSRussell King 			phydev_err(phydev, "invalid qca,smarteee-tw-us-1g\n");
561390b4cadSRussell King 			return -EINVAL;
562390b4cadSRussell King 		}
563390b4cadSRussell King 		priv->smarteee_lpi_tw_1g = tw;
564390b4cadSRussell King 	}
565390b4cadSRussell King 
566390b4cadSRussell King 	if (!of_property_read_u32(node, "qca,smarteee-tw-us-100m", &tw)) {
567390b4cadSRussell King 		if (!tw || tw > 255) {
568390b4cadSRussell King 			phydev_err(phydev, "invalid qca,smarteee-tw-us-100m\n");
569390b4cadSRussell King 			return -EINVAL;
570390b4cadSRussell King 		}
571390b4cadSRussell King 		priv->smarteee_lpi_tw_100m = tw;
572390b4cadSRussell King 	}
573390b4cadSRussell King 
5742f664823SMichael Walle 	ret = of_property_read_u32(node, "qca,clk-out-frequency", &freq);
5752f664823SMichael Walle 	if (!ret) {
5762f664823SMichael Walle 		switch (freq) {
5772f664823SMichael Walle 		case 25000000:
5782f664823SMichael Walle 			sel = AT803X_CLK_OUT_25MHZ_XTAL;
5792f664823SMichael Walle 			break;
5802f664823SMichael Walle 		case 50000000:
5812f664823SMichael Walle 			sel = AT803X_CLK_OUT_50MHZ_PLL;
5822f664823SMichael Walle 			break;
5832f664823SMichael Walle 		case 62500000:
5842f664823SMichael Walle 			sel = AT803X_CLK_OUT_62_5MHZ_PLL;
5852f664823SMichael Walle 			break;
5862f664823SMichael Walle 		case 125000000:
5872f664823SMichael Walle 			sel = AT803X_CLK_OUT_125MHZ_PLL;
5882f664823SMichael Walle 			break;
5892f664823SMichael Walle 		default:
5902f664823SMichael Walle 			phydev_err(phydev, "invalid qca,clk-out-frequency\n");
5912f664823SMichael Walle 			return -EINVAL;
5922f664823SMichael Walle 		}
5932f664823SMichael Walle 
5943f2edd30SAndrew Lunn 		priv->clk_25m_reg |= FIELD_PREP(AT803X_CLK_OUT_MASK, sel);
5953f2edd30SAndrew Lunn 		priv->clk_25m_mask |= AT803X_CLK_OUT_MASK;
5962f664823SMichael Walle 
5972f664823SMichael Walle 		/* Fixup for the AR8030/AR8035. This chip has another mask and
5982f664823SMichael Walle 		 * doesn't support the DSP reference. Eg. the lowest bit of the
5992f664823SMichael Walle 		 * mask. The upper two bits select the same frequencies. Mask
6002f664823SMichael Walle 		 * the lowest bit here.
6012f664823SMichael Walle 		 *
6022f664823SMichael Walle 		 * Warning:
6032f664823SMichael Walle 		 *   There was no datasheet for the AR8030 available so this is
6042f664823SMichael Walle 		 *   just a guess. But the AR8035 is listed as pin compatible
6052f664823SMichael Walle 		 *   to the AR8030 so there might be a good chance it works on
6062f664823SMichael Walle 		 *   the AR8030 too.
6072f664823SMichael Walle 		 */
6088887ca54SRussell King 		if (phydev->drv->phy_id == ATH8030_PHY_ID ||
6098887ca54SRussell King 		    phydev->drv->phy_id == ATH8035_PHY_ID) {
610b1f4c209SOleksij Rempel 			priv->clk_25m_reg &= AT8035_CLK_OUT_MASK;
611b1f4c209SOleksij Rempel 			priv->clk_25m_mask &= AT8035_CLK_OUT_MASK;
6122f664823SMichael Walle 		}
6132f664823SMichael Walle 	}
6142f664823SMichael Walle 
6152f664823SMichael Walle 	ret = of_property_read_u32(node, "qca,clk-out-strength", &strength);
6162f664823SMichael Walle 	if (!ret) {
6172f664823SMichael Walle 		priv->clk_25m_mask |= AT803X_CLK_OUT_STRENGTH_MASK;
6182f664823SMichael Walle 		switch (strength) {
6192f664823SMichael Walle 		case AR803X_STRENGTH_FULL:
6202f664823SMichael Walle 			priv->clk_25m_reg |= AT803X_CLK_OUT_STRENGTH_FULL;
6212f664823SMichael Walle 			break;
6222f664823SMichael Walle 		case AR803X_STRENGTH_HALF:
6232f664823SMichael Walle 			priv->clk_25m_reg |= AT803X_CLK_OUT_STRENGTH_HALF;
6242f664823SMichael Walle 			break;
6252f664823SMichael Walle 		case AR803X_STRENGTH_QUARTER:
6262f664823SMichael Walle 			priv->clk_25m_reg |= AT803X_CLK_OUT_STRENGTH_QUARTER;
6272f664823SMichael Walle 			break;
6282f664823SMichael Walle 		default:
6292f664823SMichael Walle 			phydev_err(phydev, "invalid qca,clk-out-strength\n");
6302f664823SMichael Walle 			return -EINVAL;
6312f664823SMichael Walle 		}
6322f664823SMichael Walle 	}
6332f664823SMichael Walle 
634428061f7SMichael Walle 	/* Only supported on AR8031/AR8033, the AR8030/AR8035 use strapping
635428061f7SMichael Walle 	 * options.
636428061f7SMichael Walle 	 */
6378887ca54SRussell King 	if (phydev->drv->phy_id == ATH8031_PHY_ID) {
6382f664823SMichael Walle 		if (of_property_read_bool(node, "qca,keep-pll-enabled"))
6392f664823SMichael Walle 			priv->flags |= AT803X_KEEP_PLL_ENABLED;
6402f664823SMichael Walle 
6412f664823SMichael Walle 		ret = at8031_register_regulators(phydev);
6422f664823SMichael Walle 		if (ret < 0)
6432f664823SMichael Walle 			return ret;
6442f664823SMichael Walle 
6452f664823SMichael Walle 		priv->vddio = devm_regulator_get_optional(&phydev->mdio.dev,
6462f664823SMichael Walle 							  "vddio");
6472f664823SMichael Walle 		if (IS_ERR(priv->vddio)) {
6482f664823SMichael Walle 			phydev_err(phydev, "failed to get VDDIO regulator\n");
6492f664823SMichael Walle 			return PTR_ERR(priv->vddio);
6502f664823SMichael Walle 		}
6512f664823SMichael Walle 	}
6522f664823SMichael Walle 
6532f664823SMichael Walle 	return 0;
6542f664823SMichael Walle }
6552f664823SMichael Walle 
6562f664823SMichael Walle static int at803x_probe(struct phy_device *phydev)
6572f664823SMichael Walle {
6582f664823SMichael Walle 	struct device *dev = &phydev->mdio.dev;
6592f664823SMichael Walle 	struct at803x_priv *priv;
660c329e5afSDavid Bauer 	int ret;
6612f664823SMichael Walle 
6622f664823SMichael Walle 	priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
6632f664823SMichael Walle 	if (!priv)
6642f664823SMichael Walle 		return -ENOMEM;
6652f664823SMichael Walle 
6662f664823SMichael Walle 	phydev->priv = priv;
6672f664823SMichael Walle 
668c329e5afSDavid Bauer 	ret = at803x_parse_dt(phydev);
669c329e5afSDavid Bauer 	if (ret)
670c329e5afSDavid Bauer 		return ret;
671c329e5afSDavid Bauer 
6728f7e8762SMichael Walle 	if (priv->vddio) {
6738f7e8762SMichael Walle 		ret = regulator_enable(priv->vddio);
6748f7e8762SMichael Walle 		if (ret < 0)
6758f7e8762SMichael Walle 			return ret;
6768f7e8762SMichael Walle 	}
6778f7e8762SMichael Walle 
678c329e5afSDavid Bauer 	/* Some bootloaders leave the fiber page selected.
679c329e5afSDavid Bauer 	 * Switch to the copper page, as otherwise we read
680c329e5afSDavid Bauer 	 * the PHY capabilities from the fiber side.
681c329e5afSDavid Bauer 	 */
6828887ca54SRussell King 	if (phydev->drv->phy_id == ATH8031_PHY_ID) {
6838f7e8762SMichael Walle 		phy_lock_mdio_bus(phydev);
6848f7e8762SMichael Walle 		ret = at803x_write_page(phydev, AT803X_PAGE_COPPER);
6858f7e8762SMichael Walle 		phy_unlock_mdio_bus(phydev);
6868f7e8762SMichael Walle 		if (ret)
6878f7e8762SMichael Walle 			goto err;
688c329e5afSDavid Bauer 	}
689c329e5afSDavid Bauer 
6908f7e8762SMichael Walle 	return 0;
6918f7e8762SMichael Walle 
6928f7e8762SMichael Walle err:
6938f7e8762SMichael Walle 	if (priv->vddio)
6948f7e8762SMichael Walle 		regulator_disable(priv->vddio);
6958f7e8762SMichael Walle 
696c329e5afSDavid Bauer 	return ret;
6972f664823SMichael Walle }
6982f664823SMichael Walle 
6992318ca8aSMichael Walle static void at803x_remove(struct phy_device *phydev)
7002318ca8aSMichael Walle {
7012318ca8aSMichael Walle 	struct at803x_priv *priv = phydev->priv;
7022318ca8aSMichael Walle 
7032318ca8aSMichael Walle 	if (priv->vddio)
7042318ca8aSMichael Walle 		regulator_disable(priv->vddio);
7052318ca8aSMichael Walle }
7062318ca8aSMichael Walle 
707b856150cSDavid Bauer static int at803x_get_features(struct phy_device *phydev)
708b856150cSDavid Bauer {
709b856150cSDavid Bauer 	int err;
710b856150cSDavid Bauer 
711b856150cSDavid Bauer 	err = genphy_read_abilities(phydev);
712b856150cSDavid Bauer 	if (err)
713b856150cSDavid Bauer 		return err;
714b856150cSDavid Bauer 
715f5621a01SVladimir Oltean 	if (phydev->drv->phy_id != ATH8031_PHY_ID)
716b856150cSDavid Bauer 		return 0;
717b856150cSDavid Bauer 
718b856150cSDavid Bauer 	/* AR8031/AR8033 have different status registers
719b856150cSDavid Bauer 	 * for copper and fiber operation. However, the
720b856150cSDavid Bauer 	 * extended status register is the same for both
721b856150cSDavid Bauer 	 * operation modes.
722b856150cSDavid Bauer 	 *
723b856150cSDavid Bauer 	 * As a result of that, ESTATUS_1000_XFULL is set
724b856150cSDavid Bauer 	 * to 1 even when operating in copper TP mode.
725b856150cSDavid Bauer 	 *
726b856150cSDavid Bauer 	 * Remove this mode from the supported link modes,
727b856150cSDavid Bauer 	 * as this driver currently only supports copper
728b856150cSDavid Bauer 	 * operation.
729b856150cSDavid Bauer 	 */
730b856150cSDavid Bauer 	linkmode_clear_bit(ETHTOOL_LINK_MODE_1000baseX_Full_BIT,
731b856150cSDavid Bauer 			   phydev->supported);
732b856150cSDavid Bauer 	return 0;
733b856150cSDavid Bauer }
734b856150cSDavid Bauer 
735390b4cadSRussell King static int at803x_smarteee_config(struct phy_device *phydev)
736390b4cadSRussell King {
737390b4cadSRussell King 	struct at803x_priv *priv = phydev->priv;
738390b4cadSRussell King 	u16 mask = 0, val = 0;
739390b4cadSRussell King 	int ret;
740390b4cadSRussell King 
741390b4cadSRussell King 	if (priv->flags & AT803X_DISABLE_SMARTEEE)
742390b4cadSRussell King 		return phy_modify_mmd(phydev, MDIO_MMD_PCS,
743390b4cadSRussell King 				      AT803X_MMD3_SMARTEEE_CTL3,
744390b4cadSRussell King 				      AT803X_MMD3_SMARTEEE_CTL3_LPI_EN, 0);
745390b4cadSRussell King 
746390b4cadSRussell King 	if (priv->smarteee_lpi_tw_1g) {
747390b4cadSRussell King 		mask |= 0xff00;
748390b4cadSRussell King 		val |= priv->smarteee_lpi_tw_1g << 8;
749390b4cadSRussell King 	}
750390b4cadSRussell King 	if (priv->smarteee_lpi_tw_100m) {
751390b4cadSRussell King 		mask |= 0x00ff;
752390b4cadSRussell King 		val |= priv->smarteee_lpi_tw_100m;
753390b4cadSRussell King 	}
754390b4cadSRussell King 	if (!mask)
755390b4cadSRussell King 		return 0;
756390b4cadSRussell King 
757390b4cadSRussell King 	ret = phy_modify_mmd(phydev, MDIO_MMD_PCS, AT803X_MMD3_SMARTEEE_CTL1,
758390b4cadSRussell King 			     mask, val);
759390b4cadSRussell King 	if (ret)
760390b4cadSRussell King 		return ret;
761390b4cadSRussell King 
762390b4cadSRussell King 	return phy_modify_mmd(phydev, MDIO_MMD_PCS, AT803X_MMD3_SMARTEEE_CTL3,
763390b4cadSRussell King 			      AT803X_MMD3_SMARTEEE_CTL3_LPI_EN,
764390b4cadSRussell King 			      AT803X_MMD3_SMARTEEE_CTL3_LPI_EN);
765390b4cadSRussell King }
766390b4cadSRussell King 
7672f664823SMichael Walle static int at803x_clk_out_config(struct phy_device *phydev)
7682f664823SMichael Walle {
7692f664823SMichael Walle 	struct at803x_priv *priv = phydev->priv;
7702f664823SMichael Walle 
7712f664823SMichael Walle 	if (!priv->clk_25m_mask)
7722f664823SMichael Walle 		return 0;
7732f664823SMichael Walle 
774a45c1c10SRussell King 	return phy_modify_mmd(phydev, MDIO_MMD_AN, AT803X_MMD7_CLK25M,
775a45c1c10SRussell King 			      priv->clk_25m_mask, priv->clk_25m_reg);
7762f664823SMichael Walle }
7772f664823SMichael Walle 
7782f664823SMichael Walle static int at8031_pll_config(struct phy_device *phydev)
7792f664823SMichael Walle {
7802f664823SMichael Walle 	struct at803x_priv *priv = phydev->priv;
7812f664823SMichael Walle 
7822f664823SMichael Walle 	/* The default after hardware reset is PLL OFF. After a soft reset, the
7832f664823SMichael Walle 	 * values are retained.
7842f664823SMichael Walle 	 */
7852f664823SMichael Walle 	if (priv->flags & AT803X_KEEP_PLL_ENABLED)
7862f664823SMichael Walle 		return at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_1F,
7872f664823SMichael Walle 					     0, AT803X_DEBUG_PLL_ON);
7882f664823SMichael Walle 	else
7892f664823SMichael Walle 		return at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_1F,
7902f664823SMichael Walle 					     AT803X_DEBUG_PLL_ON, 0);
7912f664823SMichael Walle }
7922f664823SMichael Walle 
7930ca7111aSMatus Ujhelyi static int at803x_config_init(struct phy_device *phydev)
7940ca7111aSMatus Ujhelyi {
7951ca6d1b1SMugunthan V N 	int ret;
7960ca7111aSMatus Ujhelyi 
7976d4cd041SVinod Koul 	/* The RX and TX delay default is:
7986d4cd041SVinod Koul 	 *   after HW reset: RX delay enabled and TX delay disabled
7996d4cd041SVinod Koul 	 *   after SW reset: RX delay enabled, while TX delay retains the
8006d4cd041SVinod Koul 	 *   value before reset.
8016d4cd041SVinod Koul 	 */
802bb0ce4c1SAndré Draszik 	if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID ||
803bb0ce4c1SAndré Draszik 	    phydev->interface == PHY_INTERFACE_MODE_RGMII_RXID)
804bb0ce4c1SAndré Draszik 		ret = at803x_enable_rx_delay(phydev);
805bb0ce4c1SAndré Draszik 	else
806cd28d1d6SVinod Koul 		ret = at803x_disable_rx_delay(phydev);
8072e5f9f28SMartin Blumenstingl 	if (ret < 0)
8081ca6d1b1SMugunthan V N 		return ret;
8096d4cd041SVinod Koul 
8106d4cd041SVinod Koul 	if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID ||
811bb0ce4c1SAndré Draszik 	    phydev->interface == PHY_INTERFACE_MODE_RGMII_TXID)
8126d4cd041SVinod Koul 		ret = at803x_enable_tx_delay(phydev);
813bb0ce4c1SAndré Draszik 	else
814bb0ce4c1SAndré Draszik 		ret = at803x_disable_tx_delay(phydev);
8152f664823SMichael Walle 	if (ret < 0)
8166d4cd041SVinod Koul 		return ret;
8172f664823SMichael Walle 
818390b4cadSRussell King 	ret = at803x_smarteee_config(phydev);
819390b4cadSRussell King 	if (ret < 0)
820390b4cadSRussell King 		return ret;
821390b4cadSRussell King 
8222f664823SMichael Walle 	ret = at803x_clk_out_config(phydev);
8232f664823SMichael Walle 	if (ret < 0)
8242f664823SMichael Walle 		return ret;
8252f664823SMichael Walle 
8268887ca54SRussell King 	if (phydev->drv->phy_id == ATH8031_PHY_ID) {
8272f664823SMichael Walle 		ret = at8031_pll_config(phydev);
8282f664823SMichael Walle 		if (ret < 0)
8292f664823SMichael Walle 			return ret;
8302f664823SMichael Walle 	}
8312f664823SMichael Walle 
8323c51fa5dSRussell King 	/* Ar803x extended next page bit is enabled by default. Cisco
8333c51fa5dSRussell King 	 * multigig switches read this bit and attempt to negotiate 10Gbps
8343c51fa5dSRussell King 	 * rates even if the next page bit is disabled. This is incorrect
8353c51fa5dSRussell King 	 * behaviour but we still need to accommodate it. XNP is only needed
8363c51fa5dSRussell King 	 * for 10Gbps support, so disable XNP.
8373c51fa5dSRussell King 	 */
8383c51fa5dSRussell King 	return phy_modify(phydev, MII_ADVERTISE, MDIO_AN_CTRL1_XNP, 0);
8390ca7111aSMatus Ujhelyi }
8400ca7111aSMatus Ujhelyi 
84177a99394SZhao Qiang static int at803x_ack_interrupt(struct phy_device *phydev)
84277a99394SZhao Qiang {
84377a99394SZhao Qiang 	int err;
84477a99394SZhao Qiang 
845a46bd63bSMartin Blumenstingl 	err = phy_read(phydev, AT803X_INTR_STATUS);
84677a99394SZhao Qiang 
84777a99394SZhao Qiang 	return (err < 0) ? err : 0;
84877a99394SZhao Qiang }
84977a99394SZhao Qiang 
85077a99394SZhao Qiang static int at803x_config_intr(struct phy_device *phydev)
85177a99394SZhao Qiang {
85277a99394SZhao Qiang 	int err;
85377a99394SZhao Qiang 	int value;
85477a99394SZhao Qiang 
855a46bd63bSMartin Blumenstingl 	value = phy_read(phydev, AT803X_INTR_ENABLE);
85677a99394SZhao Qiang 
857e6e4a556SMartin Blumenstingl 	if (phydev->interrupts == PHY_INTERRUPT_ENABLED) {
858a3417885SIoana Ciornei 		/* Clear any pending interrupts */
859a3417885SIoana Ciornei 		err = at803x_ack_interrupt(phydev);
860a3417885SIoana Ciornei 		if (err)
861a3417885SIoana Ciornei 			return err;
862a3417885SIoana Ciornei 
863e6e4a556SMartin Blumenstingl 		value |= AT803X_INTR_ENABLE_AUTONEG_ERR;
864e6e4a556SMartin Blumenstingl 		value |= AT803X_INTR_ENABLE_SPEED_CHANGED;
865e6e4a556SMartin Blumenstingl 		value |= AT803X_INTR_ENABLE_DUPLEX_CHANGED;
866e6e4a556SMartin Blumenstingl 		value |= AT803X_INTR_ENABLE_LINK_FAIL;
867e6e4a556SMartin Blumenstingl 		value |= AT803X_INTR_ENABLE_LINK_SUCCESS;
868e6e4a556SMartin Blumenstingl 
869e6e4a556SMartin Blumenstingl 		err = phy_write(phydev, AT803X_INTR_ENABLE, value);
870a3417885SIoana Ciornei 	} else {
871a46bd63bSMartin Blumenstingl 		err = phy_write(phydev, AT803X_INTR_ENABLE, 0);
872a3417885SIoana Ciornei 		if (err)
873a3417885SIoana Ciornei 			return err;
874a3417885SIoana Ciornei 
875a3417885SIoana Ciornei 		/* Clear any pending interrupts */
876a3417885SIoana Ciornei 		err = at803x_ack_interrupt(phydev);
877a3417885SIoana Ciornei 	}
87877a99394SZhao Qiang 
87977a99394SZhao Qiang 	return err;
88077a99394SZhao Qiang }
88177a99394SZhao Qiang 
88229773097SIoana Ciornei static irqreturn_t at803x_handle_interrupt(struct phy_device *phydev)
88329773097SIoana Ciornei {
88429773097SIoana Ciornei 	int irq_status, int_enabled;
88529773097SIoana Ciornei 
88629773097SIoana Ciornei 	irq_status = phy_read(phydev, AT803X_INTR_STATUS);
88729773097SIoana Ciornei 	if (irq_status < 0) {
88829773097SIoana Ciornei 		phy_error(phydev);
88929773097SIoana Ciornei 		return IRQ_NONE;
89029773097SIoana Ciornei 	}
89129773097SIoana Ciornei 
89229773097SIoana Ciornei 	/* Read the current enabled interrupts */
89329773097SIoana Ciornei 	int_enabled = phy_read(phydev, AT803X_INTR_ENABLE);
89429773097SIoana Ciornei 	if (int_enabled < 0) {
89529773097SIoana Ciornei 		phy_error(phydev);
89629773097SIoana Ciornei 		return IRQ_NONE;
89729773097SIoana Ciornei 	}
89829773097SIoana Ciornei 
89929773097SIoana Ciornei 	/* See if this was one of our enabled interrupts */
90029773097SIoana Ciornei 	if (!(irq_status & int_enabled))
90129773097SIoana Ciornei 		return IRQ_NONE;
90229773097SIoana Ciornei 
90329773097SIoana Ciornei 	phy_trigger_machine(phydev);
90429773097SIoana Ciornei 
90529773097SIoana Ciornei 	return IRQ_HANDLED;
90629773097SIoana Ciornei }
90729773097SIoana Ciornei 
90813a56b44SDaniel Mack static void at803x_link_change_notify(struct phy_device *phydev)
90913a56b44SDaniel Mack {
91013a56b44SDaniel Mack 	/*
91113a56b44SDaniel Mack 	 * Conduct a hardware reset for AT8030 every time a link loss is
91213a56b44SDaniel Mack 	 * signalled. This is necessary to circumvent a hardware bug that
91313a56b44SDaniel Mack 	 * occurs when the cable is unplugged while TX packets are pending
91413a56b44SDaniel Mack 	 * in the FIFO. In such cases, the FIFO enters an error mode it
91513a56b44SDaniel Mack 	 * cannot recover from by software.
91613a56b44SDaniel Mack 	 */
9176110ed2dSDavid Bauer 	if (phydev->state == PHY_NOLINK && phydev->mdio.reset_gpio) {
91813a56b44SDaniel Mack 		struct at803x_context context;
91913a56b44SDaniel Mack 
92013a56b44SDaniel Mack 		at803x_context_save(phydev, &context);
92113a56b44SDaniel Mack 
922bafbdd52SSergei Shtylyov 		phy_device_reset(phydev, 1);
92313a56b44SDaniel Mack 		msleep(1);
924bafbdd52SSergei Shtylyov 		phy_device_reset(phydev, 0);
925d57019d1SSergei Shtylyov 		msleep(1);
92613a56b44SDaniel Mack 
92713a56b44SDaniel Mack 		at803x_context_restore(phydev, &context);
92813a56b44SDaniel Mack 
9295c5f626bSHeiner Kallweit 		phydev_dbg(phydev, "%s(): phy was reset\n", __func__);
93013a56b44SDaniel Mack 	}
93113a56b44SDaniel Mack }
93213a56b44SDaniel Mack 
93306d5f344SRussell King static int at803x_read_status(struct phy_device *phydev)
93406d5f344SRussell King {
93506d5f344SRussell King 	int ss, err, old_link = phydev->link;
93606d5f344SRussell King 
93706d5f344SRussell King 	/* Update the link, but return if there was an error */
93806d5f344SRussell King 	err = genphy_update_link(phydev);
93906d5f344SRussell King 	if (err)
94006d5f344SRussell King 		return err;
94106d5f344SRussell King 
94206d5f344SRussell King 	/* why bother the PHY if nothing can have changed */
94306d5f344SRussell King 	if (phydev->autoneg == AUTONEG_ENABLE && old_link && phydev->link)
94406d5f344SRussell King 		return 0;
94506d5f344SRussell King 
94606d5f344SRussell King 	phydev->speed = SPEED_UNKNOWN;
94706d5f344SRussell King 	phydev->duplex = DUPLEX_UNKNOWN;
94806d5f344SRussell King 	phydev->pause = 0;
94906d5f344SRussell King 	phydev->asym_pause = 0;
95006d5f344SRussell King 
95106d5f344SRussell King 	err = genphy_read_lpa(phydev);
95206d5f344SRussell King 	if (err < 0)
95306d5f344SRussell King 		return err;
95406d5f344SRussell King 
95506d5f344SRussell King 	/* Read the AT8035 PHY-Specific Status register, which indicates the
95606d5f344SRussell King 	 * speed and duplex that the PHY is actually using, irrespective of
95706d5f344SRussell King 	 * whether we are in autoneg mode or not.
95806d5f344SRussell King 	 */
95906d5f344SRussell King 	ss = phy_read(phydev, AT803X_SPECIFIC_STATUS);
96006d5f344SRussell King 	if (ss < 0)
96106d5f344SRussell King 		return ss;
96206d5f344SRussell King 
96306d5f344SRussell King 	if (ss & AT803X_SS_SPEED_DUPLEX_RESOLVED) {
9647dce80c2SOleksij Rempel 		int sfc;
9657dce80c2SOleksij Rempel 
9667dce80c2SOleksij Rempel 		sfc = phy_read(phydev, AT803X_SPECIFIC_FUNCTION_CONTROL);
9677dce80c2SOleksij Rempel 		if (sfc < 0)
9687dce80c2SOleksij Rempel 			return sfc;
9697dce80c2SOleksij Rempel 
97006d5f344SRussell King 		switch (ss & AT803X_SS_SPEED_MASK) {
97106d5f344SRussell King 		case AT803X_SS_SPEED_10:
97206d5f344SRussell King 			phydev->speed = SPEED_10;
97306d5f344SRussell King 			break;
97406d5f344SRussell King 		case AT803X_SS_SPEED_100:
97506d5f344SRussell King 			phydev->speed = SPEED_100;
97606d5f344SRussell King 			break;
97706d5f344SRussell King 		case AT803X_SS_SPEED_1000:
97806d5f344SRussell King 			phydev->speed = SPEED_1000;
97906d5f344SRussell King 			break;
98006d5f344SRussell King 		}
98106d5f344SRussell King 		if (ss & AT803X_SS_DUPLEX)
98206d5f344SRussell King 			phydev->duplex = DUPLEX_FULL;
98306d5f344SRussell King 		else
98406d5f344SRussell King 			phydev->duplex = DUPLEX_HALF;
9857dce80c2SOleksij Rempel 
98606d5f344SRussell King 		if (ss & AT803X_SS_MDIX)
98706d5f344SRussell King 			phydev->mdix = ETH_TP_MDI_X;
98806d5f344SRussell King 		else
98906d5f344SRussell King 			phydev->mdix = ETH_TP_MDI;
9907dce80c2SOleksij Rempel 
9917dce80c2SOleksij Rempel 		switch (FIELD_GET(AT803X_SFC_MDI_CROSSOVER_MODE_M, sfc)) {
9927dce80c2SOleksij Rempel 		case AT803X_SFC_MANUAL_MDI:
9937dce80c2SOleksij Rempel 			phydev->mdix_ctrl = ETH_TP_MDI;
9947dce80c2SOleksij Rempel 			break;
9957dce80c2SOleksij Rempel 		case AT803X_SFC_MANUAL_MDIX:
9967dce80c2SOleksij Rempel 			phydev->mdix_ctrl = ETH_TP_MDI_X;
9977dce80c2SOleksij Rempel 			break;
9987dce80c2SOleksij Rempel 		case AT803X_SFC_AUTOMATIC_CROSSOVER:
9997dce80c2SOleksij Rempel 			phydev->mdix_ctrl = ETH_TP_MDI_AUTO;
10007dce80c2SOleksij Rempel 			break;
10017dce80c2SOleksij Rempel 		}
100206d5f344SRussell King 	}
100306d5f344SRussell King 
100406d5f344SRussell King 	if (phydev->autoneg == AUTONEG_ENABLE && phydev->autoneg_complete)
100506d5f344SRussell King 		phy_resolve_aneg_pause(phydev);
100606d5f344SRussell King 
100706d5f344SRussell King 	return 0;
100806d5f344SRussell King }
100906d5f344SRussell King 
10107dce80c2SOleksij Rempel static int at803x_config_mdix(struct phy_device *phydev, u8 ctrl)
10117dce80c2SOleksij Rempel {
10127dce80c2SOleksij Rempel 	u16 val;
10137dce80c2SOleksij Rempel 
10147dce80c2SOleksij Rempel 	switch (ctrl) {
10157dce80c2SOleksij Rempel 	case ETH_TP_MDI:
10167dce80c2SOleksij Rempel 		val = AT803X_SFC_MANUAL_MDI;
10177dce80c2SOleksij Rempel 		break;
10187dce80c2SOleksij Rempel 	case ETH_TP_MDI_X:
10197dce80c2SOleksij Rempel 		val = AT803X_SFC_MANUAL_MDIX;
10207dce80c2SOleksij Rempel 		break;
10217dce80c2SOleksij Rempel 	case ETH_TP_MDI_AUTO:
10227dce80c2SOleksij Rempel 		val = AT803X_SFC_AUTOMATIC_CROSSOVER;
10237dce80c2SOleksij Rempel 		break;
10247dce80c2SOleksij Rempel 	default:
10257dce80c2SOleksij Rempel 		return 0;
10267dce80c2SOleksij Rempel 	}
10277dce80c2SOleksij Rempel 
10287dce80c2SOleksij Rempel 	return phy_modify_changed(phydev, AT803X_SPECIFIC_FUNCTION_CONTROL,
10297dce80c2SOleksij Rempel 			  AT803X_SFC_MDI_CROSSOVER_MODE_M,
10307dce80c2SOleksij Rempel 			  FIELD_PREP(AT803X_SFC_MDI_CROSSOVER_MODE_M, val));
10317dce80c2SOleksij Rempel }
10327dce80c2SOleksij Rempel 
10337dce80c2SOleksij Rempel static int at803x_config_aneg(struct phy_device *phydev)
10347dce80c2SOleksij Rempel {
10357dce80c2SOleksij Rempel 	int ret;
10367dce80c2SOleksij Rempel 
10377dce80c2SOleksij Rempel 	ret = at803x_config_mdix(phydev, phydev->mdix_ctrl);
10387dce80c2SOleksij Rempel 	if (ret < 0)
10397dce80c2SOleksij Rempel 		return ret;
10407dce80c2SOleksij Rempel 
10417dce80c2SOleksij Rempel 	/* Changes of the midx bits are disruptive to the normal operation;
10427dce80c2SOleksij Rempel 	 * therefore any changes to these registers must be followed by a
10437dce80c2SOleksij Rempel 	 * software reset to take effect.
10447dce80c2SOleksij Rempel 	 */
10457dce80c2SOleksij Rempel 	if (ret == 1) {
10467dce80c2SOleksij Rempel 		ret = genphy_soft_reset(phydev);
10477dce80c2SOleksij Rempel 		if (ret < 0)
10487dce80c2SOleksij Rempel 			return ret;
10497dce80c2SOleksij Rempel 	}
10507dce80c2SOleksij Rempel 
10517dce80c2SOleksij Rempel 	return genphy_config_aneg(phydev);
10527dce80c2SOleksij Rempel }
10537dce80c2SOleksij Rempel 
1054cde0f4f8SMichael Walle static int at803x_get_downshift(struct phy_device *phydev, u8 *d)
1055cde0f4f8SMichael Walle {
1056cde0f4f8SMichael Walle 	int val;
1057cde0f4f8SMichael Walle 
1058cde0f4f8SMichael Walle 	val = phy_read(phydev, AT803X_SMART_SPEED);
1059cde0f4f8SMichael Walle 	if (val < 0)
1060cde0f4f8SMichael Walle 		return val;
1061cde0f4f8SMichael Walle 
1062cde0f4f8SMichael Walle 	if (val & AT803X_SMART_SPEED_ENABLE)
1063cde0f4f8SMichael Walle 		*d = FIELD_GET(AT803X_SMART_SPEED_RETRY_LIMIT_MASK, val) + 2;
1064cde0f4f8SMichael Walle 	else
1065cde0f4f8SMichael Walle 		*d = DOWNSHIFT_DEV_DISABLE;
1066cde0f4f8SMichael Walle 
1067cde0f4f8SMichael Walle 	return 0;
1068cde0f4f8SMichael Walle }
1069cde0f4f8SMichael Walle 
1070cde0f4f8SMichael Walle static int at803x_set_downshift(struct phy_device *phydev, u8 cnt)
1071cde0f4f8SMichael Walle {
1072cde0f4f8SMichael Walle 	u16 mask, set;
1073cde0f4f8SMichael Walle 	int ret;
1074cde0f4f8SMichael Walle 
1075cde0f4f8SMichael Walle 	switch (cnt) {
1076cde0f4f8SMichael Walle 	case DOWNSHIFT_DEV_DEFAULT_COUNT:
1077cde0f4f8SMichael Walle 		cnt = AT803X_DEFAULT_DOWNSHIFT;
1078cde0f4f8SMichael Walle 		fallthrough;
1079cde0f4f8SMichael Walle 	case AT803X_MIN_DOWNSHIFT ... AT803X_MAX_DOWNSHIFT:
1080cde0f4f8SMichael Walle 		set = AT803X_SMART_SPEED_ENABLE |
1081cde0f4f8SMichael Walle 		      AT803X_SMART_SPEED_BYPASS_TIMER |
1082cde0f4f8SMichael Walle 		      FIELD_PREP(AT803X_SMART_SPEED_RETRY_LIMIT_MASK, cnt - 2);
1083cde0f4f8SMichael Walle 		mask = AT803X_SMART_SPEED_RETRY_LIMIT_MASK;
1084cde0f4f8SMichael Walle 		break;
1085cde0f4f8SMichael Walle 	case DOWNSHIFT_DEV_DISABLE:
1086cde0f4f8SMichael Walle 		set = 0;
1087cde0f4f8SMichael Walle 		mask = AT803X_SMART_SPEED_ENABLE |
1088cde0f4f8SMichael Walle 		       AT803X_SMART_SPEED_BYPASS_TIMER;
1089cde0f4f8SMichael Walle 		break;
1090cde0f4f8SMichael Walle 	default:
1091cde0f4f8SMichael Walle 		return -EINVAL;
1092cde0f4f8SMichael Walle 	}
1093cde0f4f8SMichael Walle 
1094cde0f4f8SMichael Walle 	ret = phy_modify_changed(phydev, AT803X_SMART_SPEED, mask, set);
1095cde0f4f8SMichael Walle 
1096cde0f4f8SMichael Walle 	/* After changing the smart speed settings, we need to perform a
1097cde0f4f8SMichael Walle 	 * software reset, use phy_init_hw() to make sure we set the
1098cde0f4f8SMichael Walle 	 * reapply any values which might got lost during software reset.
1099cde0f4f8SMichael Walle 	 */
1100cde0f4f8SMichael Walle 	if (ret == 1)
1101cde0f4f8SMichael Walle 		ret = phy_init_hw(phydev);
1102cde0f4f8SMichael Walle 
1103cde0f4f8SMichael Walle 	return ret;
1104cde0f4f8SMichael Walle }
1105cde0f4f8SMichael Walle 
1106cde0f4f8SMichael Walle static int at803x_get_tunable(struct phy_device *phydev,
1107cde0f4f8SMichael Walle 			      struct ethtool_tunable *tuna, void *data)
1108cde0f4f8SMichael Walle {
1109cde0f4f8SMichael Walle 	switch (tuna->id) {
1110cde0f4f8SMichael Walle 	case ETHTOOL_PHY_DOWNSHIFT:
1111cde0f4f8SMichael Walle 		return at803x_get_downshift(phydev, data);
1112cde0f4f8SMichael Walle 	default:
1113cde0f4f8SMichael Walle 		return -EOPNOTSUPP;
1114cde0f4f8SMichael Walle 	}
1115cde0f4f8SMichael Walle }
1116cde0f4f8SMichael Walle 
1117cde0f4f8SMichael Walle static int at803x_set_tunable(struct phy_device *phydev,
1118cde0f4f8SMichael Walle 			      struct ethtool_tunable *tuna, const void *data)
1119cde0f4f8SMichael Walle {
1120cde0f4f8SMichael Walle 	switch (tuna->id) {
1121cde0f4f8SMichael Walle 	case ETHTOOL_PHY_DOWNSHIFT:
1122cde0f4f8SMichael Walle 		return at803x_set_downshift(phydev, *(const u8 *)data);
1123cde0f4f8SMichael Walle 	default:
1124cde0f4f8SMichael Walle 		return -EOPNOTSUPP;
1125cde0f4f8SMichael Walle 	}
1126cde0f4f8SMichael Walle }
1127cde0f4f8SMichael Walle 
11286cb75767SMichael Walle static int at803x_cable_test_result_trans(u16 status)
11296cb75767SMichael Walle {
11306cb75767SMichael Walle 	switch (FIELD_GET(AT803X_CDT_STATUS_STAT_MASK, status)) {
11316cb75767SMichael Walle 	case AT803X_CDT_STATUS_STAT_NORMAL:
11326cb75767SMichael Walle 		return ETHTOOL_A_CABLE_RESULT_CODE_OK;
11336cb75767SMichael Walle 	case AT803X_CDT_STATUS_STAT_SHORT:
11346cb75767SMichael Walle 		return ETHTOOL_A_CABLE_RESULT_CODE_SAME_SHORT;
11356cb75767SMichael Walle 	case AT803X_CDT_STATUS_STAT_OPEN:
11366cb75767SMichael Walle 		return ETHTOOL_A_CABLE_RESULT_CODE_OPEN;
11376cb75767SMichael Walle 	case AT803X_CDT_STATUS_STAT_FAIL:
11386cb75767SMichael Walle 	default:
11396cb75767SMichael Walle 		return ETHTOOL_A_CABLE_RESULT_CODE_UNSPEC;
11406cb75767SMichael Walle 	}
11416cb75767SMichael Walle }
11426cb75767SMichael Walle 
11436cb75767SMichael Walle static bool at803x_cdt_test_failed(u16 status)
11446cb75767SMichael Walle {
11456cb75767SMichael Walle 	return FIELD_GET(AT803X_CDT_STATUS_STAT_MASK, status) ==
11466cb75767SMichael Walle 		AT803X_CDT_STATUS_STAT_FAIL;
11476cb75767SMichael Walle }
11486cb75767SMichael Walle 
11496cb75767SMichael Walle static bool at803x_cdt_fault_length_valid(u16 status)
11506cb75767SMichael Walle {
11516cb75767SMichael Walle 	switch (FIELD_GET(AT803X_CDT_STATUS_STAT_MASK, status)) {
11526cb75767SMichael Walle 	case AT803X_CDT_STATUS_STAT_OPEN:
11536cb75767SMichael Walle 	case AT803X_CDT_STATUS_STAT_SHORT:
11546cb75767SMichael Walle 		return true;
11556cb75767SMichael Walle 	}
11566cb75767SMichael Walle 	return false;
11576cb75767SMichael Walle }
11586cb75767SMichael Walle 
11596cb75767SMichael Walle static int at803x_cdt_fault_length(u16 status)
11606cb75767SMichael Walle {
11616cb75767SMichael Walle 	int dt;
11626cb75767SMichael Walle 
11636cb75767SMichael Walle 	/* According to the datasheet the distance to the fault is
11646cb75767SMichael Walle 	 * DELTA_TIME * 0.824 meters.
11656cb75767SMichael Walle 	 *
11666cb75767SMichael Walle 	 * The author suspect the correct formula is:
11676cb75767SMichael Walle 	 *
11686cb75767SMichael Walle 	 *   fault_distance = DELTA_TIME * (c * VF) / 125MHz / 2
11696cb75767SMichael Walle 	 *
11706cb75767SMichael Walle 	 * where c is the speed of light, VF is the velocity factor of
11716cb75767SMichael Walle 	 * the twisted pair cable, 125MHz the counter frequency and
11726cb75767SMichael Walle 	 * we need to divide by 2 because the hardware will measure the
11736cb75767SMichael Walle 	 * round trip time to the fault and back to the PHY.
11746cb75767SMichael Walle 	 *
11756cb75767SMichael Walle 	 * With a VF of 0.69 we get the factor 0.824 mentioned in the
11766cb75767SMichael Walle 	 * datasheet.
11776cb75767SMichael Walle 	 */
11786cb75767SMichael Walle 	dt = FIELD_GET(AT803X_CDT_STATUS_DELTA_TIME_MASK, status);
11796cb75767SMichael Walle 
11806cb75767SMichael Walle 	return (dt * 824) / 10;
11816cb75767SMichael Walle }
11826cb75767SMichael Walle 
11836cb75767SMichael Walle static int at803x_cdt_start(struct phy_device *phydev, int pair)
11846cb75767SMichael Walle {
11856cb75767SMichael Walle 	u16 cdt;
11866cb75767SMichael Walle 
11876cb75767SMichael Walle 	cdt = FIELD_PREP(AT803X_CDT_MDI_PAIR_MASK, pair) |
11886cb75767SMichael Walle 	      AT803X_CDT_ENABLE_TEST;
11896cb75767SMichael Walle 
11906cb75767SMichael Walle 	return phy_write(phydev, AT803X_CDT, cdt);
11916cb75767SMichael Walle }
11926cb75767SMichael Walle 
11936cb75767SMichael Walle static int at803x_cdt_wait_for_completion(struct phy_device *phydev)
11946cb75767SMichael Walle {
11956cb75767SMichael Walle 	int val, ret;
11966cb75767SMichael Walle 
11976cb75767SMichael Walle 	/* One test run takes about 25ms */
11986cb75767SMichael Walle 	ret = phy_read_poll_timeout(phydev, AT803X_CDT, val,
11996cb75767SMichael Walle 				    !(val & AT803X_CDT_ENABLE_TEST),
12006cb75767SMichael Walle 				    30000, 100000, true);
12016cb75767SMichael Walle 
12026cb75767SMichael Walle 	return ret < 0 ? ret : 0;
12036cb75767SMichael Walle }
12046cb75767SMichael Walle 
12056cb75767SMichael Walle static int at803x_cable_test_one_pair(struct phy_device *phydev, int pair)
12066cb75767SMichael Walle {
12076cb75767SMichael Walle 	static const int ethtool_pair[] = {
12086cb75767SMichael Walle 		ETHTOOL_A_CABLE_PAIR_A,
12096cb75767SMichael Walle 		ETHTOOL_A_CABLE_PAIR_B,
12106cb75767SMichael Walle 		ETHTOOL_A_CABLE_PAIR_C,
12116cb75767SMichael Walle 		ETHTOOL_A_CABLE_PAIR_D,
12126cb75767SMichael Walle 	};
12136cb75767SMichael Walle 	int ret, val;
12146cb75767SMichael Walle 
12156cb75767SMichael Walle 	ret = at803x_cdt_start(phydev, pair);
12166cb75767SMichael Walle 	if (ret)
12176cb75767SMichael Walle 		return ret;
12186cb75767SMichael Walle 
12196cb75767SMichael Walle 	ret = at803x_cdt_wait_for_completion(phydev);
12206cb75767SMichael Walle 	if (ret)
12216cb75767SMichael Walle 		return ret;
12226cb75767SMichael Walle 
12236cb75767SMichael Walle 	val = phy_read(phydev, AT803X_CDT_STATUS);
12246cb75767SMichael Walle 	if (val < 0)
12256cb75767SMichael Walle 		return val;
12266cb75767SMichael Walle 
12276cb75767SMichael Walle 	if (at803x_cdt_test_failed(val))
12286cb75767SMichael Walle 		return 0;
12296cb75767SMichael Walle 
12306cb75767SMichael Walle 	ethnl_cable_test_result(phydev, ethtool_pair[pair],
12316cb75767SMichael Walle 				at803x_cable_test_result_trans(val));
12326cb75767SMichael Walle 
12336cb75767SMichael Walle 	if (at803x_cdt_fault_length_valid(val))
12346cb75767SMichael Walle 		ethnl_cable_test_fault_length(phydev, ethtool_pair[pair],
12356cb75767SMichael Walle 					      at803x_cdt_fault_length(val));
12366cb75767SMichael Walle 
12376cb75767SMichael Walle 	return 1;
12386cb75767SMichael Walle }
12396cb75767SMichael Walle 
12406cb75767SMichael Walle static int at803x_cable_test_get_status(struct phy_device *phydev,
12416cb75767SMichael Walle 					bool *finished)
12426cb75767SMichael Walle {
1243dc0f3ed1SOleksij Rempel 	unsigned long pair_mask;
12446cb75767SMichael Walle 	int retries = 20;
12456cb75767SMichael Walle 	int pair, ret;
12466cb75767SMichael Walle 
1247dc0f3ed1SOleksij Rempel 	if (phydev->phy_id == ATH9331_PHY_ID ||
1248fada2ce0SDavid Bauer 	    phydev->phy_id == ATH8032_PHY_ID ||
1249fada2ce0SDavid Bauer 	    phydev->phy_id == QCA9561_PHY_ID)
1250dc0f3ed1SOleksij Rempel 		pair_mask = 0x3;
1251dc0f3ed1SOleksij Rempel 	else
1252dc0f3ed1SOleksij Rempel 		pair_mask = 0xf;
1253dc0f3ed1SOleksij Rempel 
12546cb75767SMichael Walle 	*finished = false;
12556cb75767SMichael Walle 
12566cb75767SMichael Walle 	/* According to the datasheet the CDT can be performed when
12576cb75767SMichael Walle 	 * there is no link partner or when the link partner is
12586cb75767SMichael Walle 	 * auto-negotiating. Starting the test will restart the AN
12596cb75767SMichael Walle 	 * automatically. It seems that doing this repeatedly we will
12606cb75767SMichael Walle 	 * get a slot where our link partner won't disturb our
12616cb75767SMichael Walle 	 * measurement.
12626cb75767SMichael Walle 	 */
12636cb75767SMichael Walle 	while (pair_mask && retries--) {
12646cb75767SMichael Walle 		for_each_set_bit(pair, &pair_mask, 4) {
12656cb75767SMichael Walle 			ret = at803x_cable_test_one_pair(phydev, pair);
12666cb75767SMichael Walle 			if (ret < 0)
12676cb75767SMichael Walle 				return ret;
12686cb75767SMichael Walle 			if (ret)
12696cb75767SMichael Walle 				clear_bit(pair, &pair_mask);
12706cb75767SMichael Walle 		}
12716cb75767SMichael Walle 		if (pair_mask)
12726cb75767SMichael Walle 			msleep(250);
12736cb75767SMichael Walle 	}
12746cb75767SMichael Walle 
12756cb75767SMichael Walle 	*finished = true;
12766cb75767SMichael Walle 
12776cb75767SMichael Walle 	return 0;
12786cb75767SMichael Walle }
12796cb75767SMichael Walle 
12806cb75767SMichael Walle static int at803x_cable_test_start(struct phy_device *phydev)
12816cb75767SMichael Walle {
12826cb75767SMichael Walle 	/* Enable auto-negotiation, but advertise no capabilities, no link
12836cb75767SMichael Walle 	 * will be established. A restart of the auto-negotiation is not
12846cb75767SMichael Walle 	 * required, because the cable test will automatically break the link.
12856cb75767SMichael Walle 	 */
12866cb75767SMichael Walle 	phy_write(phydev, MII_BMCR, BMCR_ANENABLE);
12876cb75767SMichael Walle 	phy_write(phydev, MII_ADVERTISE, ADVERTISE_CSMA);
1288dc0f3ed1SOleksij Rempel 	if (phydev->phy_id != ATH9331_PHY_ID &&
1289fada2ce0SDavid Bauer 	    phydev->phy_id != ATH8032_PHY_ID &&
1290fada2ce0SDavid Bauer 	    phydev->phy_id != QCA9561_PHY_ID)
12916cb75767SMichael Walle 		phy_write(phydev, MII_CTRL1000, 0);
12926cb75767SMichael Walle 
12936cb75767SMichael Walle 	/* we do all the (time consuming) work later */
12946cb75767SMichael Walle 	return 0;
12956cb75767SMichael Walle }
12966cb75767SMichael Walle 
1297272833b9SAnsuel Smith static int qca83xx_config_init(struct phy_device *phydev)
1298272833b9SAnsuel Smith {
1299272833b9SAnsuel Smith 	u8 switch_revision;
1300272833b9SAnsuel Smith 
1301272833b9SAnsuel Smith 	switch_revision = phydev->dev_flags & QCA8K_DEVFLAGS_REVISION_MASK;
1302272833b9SAnsuel Smith 
1303272833b9SAnsuel Smith 	switch (switch_revision) {
1304272833b9SAnsuel Smith 	case 1:
1305272833b9SAnsuel Smith 		/* For 100M waveform */
130667999555SAnsuel Smith 		at803x_debug_reg_write(phydev, AT803X_DEBUG_ANALOG_TEST_CTRL, 0x02ea);
1307272833b9SAnsuel Smith 		/* Turn on Gigabit clock */
130867999555SAnsuel Smith 		at803x_debug_reg_write(phydev, AT803X_DEBUG_REG_GREEN, 0x68a0);
1309272833b9SAnsuel Smith 		break;
1310272833b9SAnsuel Smith 
1311272833b9SAnsuel Smith 	case 2:
1312272833b9SAnsuel Smith 		phy_write_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV, 0x0);
1313272833b9SAnsuel Smith 		fallthrough;
1314272833b9SAnsuel Smith 	case 4:
1315272833b9SAnsuel Smith 		phy_write_mmd(phydev, MDIO_MMD_PCS, MDIO_AZ_DEBUG, 0x803f);
131667999555SAnsuel Smith 		at803x_debug_reg_write(phydev, AT803X_DEBUG_REG_GREEN, 0x6860);
131767999555SAnsuel Smith 		at803x_debug_reg_write(phydev, AT803X_DEBUG_SYSTEM_CTRL_MODE, 0x2c46);
1318272833b9SAnsuel Smith 		at803x_debug_reg_write(phydev, AT803X_DEBUG_REG_3C, 0x6000);
1319272833b9SAnsuel Smith 		break;
1320272833b9SAnsuel Smith 	}
1321272833b9SAnsuel Smith 
13221ca83119SAnsuel Smith 	/* QCA8327 require DAC amplitude adjustment for 100m set to +6%.
13231ca83119SAnsuel Smith 	 * Disable on init and enable only with 100m speed following
13241ca83119SAnsuel Smith 	 * qca original source code.
13251ca83119SAnsuel Smith 	 */
13261ca83119SAnsuel Smith 	if (phydev->drv->phy_id == QCA8327_A_PHY_ID ||
13271ca83119SAnsuel Smith 	    phydev->drv->phy_id == QCA8327_B_PHY_ID)
132867999555SAnsuel Smith 		at803x_debug_reg_mask(phydev, AT803X_DEBUG_ANALOG_TEST_CTRL,
13291ca83119SAnsuel Smith 				      QCA8327_DEBUG_MANU_CTRL_EN, 0);
13301ca83119SAnsuel Smith 
13319d1c29b4SAnsuel Smith 	/* Following original QCA sourcecode set port to prefer master */
13329d1c29b4SAnsuel Smith 	phy_set_bits(phydev, MII_CTRL1000, CTL1000_PREFER_MASTER);
13339d1c29b4SAnsuel Smith 
1334272833b9SAnsuel Smith 	return 0;
1335272833b9SAnsuel Smith }
1336272833b9SAnsuel Smith 
13371ca83119SAnsuel Smith static void qca83xx_link_change_notify(struct phy_device *phydev)
13381ca83119SAnsuel Smith {
13391ca83119SAnsuel Smith 	/* QCA8337 doesn't require DAC Amplitude adjustement */
13401ca83119SAnsuel Smith 	if (phydev->drv->phy_id == QCA8337_PHY_ID)
13411ca83119SAnsuel Smith 		return;
13421ca83119SAnsuel Smith 
13431ca83119SAnsuel Smith 	/* Set DAC Amplitude adjustment to +6% for 100m on link running */
13441ca83119SAnsuel Smith 	if (phydev->state == PHY_RUNNING) {
13451ca83119SAnsuel Smith 		if (phydev->speed == SPEED_100)
134667999555SAnsuel Smith 			at803x_debug_reg_mask(phydev, AT803X_DEBUG_ANALOG_TEST_CTRL,
13471ca83119SAnsuel Smith 					      QCA8327_DEBUG_MANU_CTRL_EN,
13481ca83119SAnsuel Smith 					      QCA8327_DEBUG_MANU_CTRL_EN);
13491ca83119SAnsuel Smith 	} else {
13501ca83119SAnsuel Smith 		/* Reset DAC Amplitude adjustment */
135167999555SAnsuel Smith 		at803x_debug_reg_mask(phydev, AT803X_DEBUG_ANALOG_TEST_CTRL,
13521ca83119SAnsuel Smith 				      QCA8327_DEBUG_MANU_CTRL_EN, 0);
13531ca83119SAnsuel Smith 	}
13541ca83119SAnsuel Smith }
13551ca83119SAnsuel Smith 
1356ba3c01eeSAnsuel Smith static int qca83xx_resume(struct phy_device *phydev)
1357ba3c01eeSAnsuel Smith {
1358ba3c01eeSAnsuel Smith 	int ret, val;
1359ba3c01eeSAnsuel Smith 
1360ba3c01eeSAnsuel Smith 	/* Skip reset if not suspended */
1361ba3c01eeSAnsuel Smith 	if (!phydev->suspended)
1362ba3c01eeSAnsuel Smith 		return 0;
1363ba3c01eeSAnsuel Smith 
1364ba3c01eeSAnsuel Smith 	/* Reinit the port, reset values set by suspend */
1365ba3c01eeSAnsuel Smith 	qca83xx_config_init(phydev);
1366ba3c01eeSAnsuel Smith 
1367ba3c01eeSAnsuel Smith 	/* Reset the port on port resume */
1368ba3c01eeSAnsuel Smith 	phy_set_bits(phydev, MII_BMCR, BMCR_RESET | BMCR_ANENABLE);
1369ba3c01eeSAnsuel Smith 
1370ba3c01eeSAnsuel Smith 	/* On resume from suspend the switch execute a reset and
1371ba3c01eeSAnsuel Smith 	 * restart auto-negotiation. Wait for reset to complete.
1372ba3c01eeSAnsuel Smith 	 */
1373ba3c01eeSAnsuel Smith 	ret = phy_read_poll_timeout(phydev, MII_BMCR, val, !(val & BMCR_RESET),
1374ba3c01eeSAnsuel Smith 				    50000, 600000, true);
1375ba3c01eeSAnsuel Smith 	if (ret)
1376ba3c01eeSAnsuel Smith 		return ret;
1377ba3c01eeSAnsuel Smith 
1378ba3c01eeSAnsuel Smith 	msleep(1);
1379ba3c01eeSAnsuel Smith 
1380ba3c01eeSAnsuel Smith 	return 0;
1381ba3c01eeSAnsuel Smith }
1382ba3c01eeSAnsuel Smith 
1383ba3c01eeSAnsuel Smith static int qca83xx_suspend(struct phy_device *phydev)
1384ba3c01eeSAnsuel Smith {
1385ba3c01eeSAnsuel Smith 	u16 mask = 0;
1386ba3c01eeSAnsuel Smith 
1387ba3c01eeSAnsuel Smith 	/* Only QCA8337 support actual suspend.
1388ba3c01eeSAnsuel Smith 	 * QCA8327 cause port unreliability when phy suspend
1389ba3c01eeSAnsuel Smith 	 * is set.
1390ba3c01eeSAnsuel Smith 	 */
1391ba3c01eeSAnsuel Smith 	if (phydev->drv->phy_id == QCA8337_PHY_ID) {
1392ba3c01eeSAnsuel Smith 		genphy_suspend(phydev);
1393ba3c01eeSAnsuel Smith 	} else {
1394ba3c01eeSAnsuel Smith 		mask |= ~(BMCR_SPEED1000 | BMCR_FULLDPLX);
1395ba3c01eeSAnsuel Smith 		phy_modify(phydev, MII_BMCR, mask, 0);
1396ba3c01eeSAnsuel Smith 	}
1397ba3c01eeSAnsuel Smith 
139867999555SAnsuel Smith 	at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_GREEN,
1399ba3c01eeSAnsuel Smith 			      AT803X_DEBUG_GATE_CLK_IN1000, 0);
1400ba3c01eeSAnsuel Smith 
1401ba3c01eeSAnsuel Smith 	at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_HIB_CTRL,
1402ba3c01eeSAnsuel Smith 			      AT803X_DEBUG_HIB_CTRL_EN_ANY_CHANGE |
1403ba3c01eeSAnsuel Smith 			      AT803X_DEBUG_HIB_CTRL_SEL_RST_80U, 0);
1404ba3c01eeSAnsuel Smith 
1405ba3c01eeSAnsuel Smith 	return 0;
1406ba3c01eeSAnsuel Smith }
1407ba3c01eeSAnsuel Smith 
1408317420abSMugunthan V N static struct phy_driver at803x_driver[] = {
1409317420abSMugunthan V N {
141096c36712SMichael Walle 	/* Qualcomm Atheros AR8035 */
14110465d8f8SMichael Walle 	PHY_ID_MATCH_EXACT(ATH8035_PHY_ID),
141296c36712SMichael Walle 	.name			= "Qualcomm Atheros AR8035",
14136cb75767SMichael Walle 	.flags			= PHY_POLL_CABLE_TEST,
14142f664823SMichael Walle 	.probe			= at803x_probe,
14152318ca8aSMichael Walle 	.remove			= at803x_remove,
14167dce80c2SOleksij Rempel 	.config_aneg		= at803x_config_aneg,
14170ca7111aSMatus Ujhelyi 	.config_init		= at803x_config_init,
1418cde0f4f8SMichael Walle 	.soft_reset		= genphy_soft_reset,
1419ea13c9eeSMugunthan V N 	.set_wol		= at803x_set_wol,
1420ea13c9eeSMugunthan V N 	.get_wol		= at803x_get_wol,
14216229ed1fSDaniel Mack 	.suspend		= at803x_suspend,
14226229ed1fSDaniel Mack 	.resume			= at803x_resume,
1423dcdecdcfSHeiner Kallweit 	/* PHY_GBIT_FEATURES */
142406d5f344SRussell King 	.read_status		= at803x_read_status,
14250eae5982SMåns Rullgård 	.config_intr		= at803x_config_intr,
142629773097SIoana Ciornei 	.handle_interrupt	= at803x_handle_interrupt,
1427cde0f4f8SMichael Walle 	.get_tunable		= at803x_get_tunable,
1428cde0f4f8SMichael Walle 	.set_tunable		= at803x_set_tunable,
14296cb75767SMichael Walle 	.cable_test_start	= at803x_cable_test_start,
14306cb75767SMichael Walle 	.cable_test_get_status	= at803x_cable_test_get_status,
1431317420abSMugunthan V N }, {
143296c36712SMichael Walle 	/* Qualcomm Atheros AR8030 */
1433bd8ca17fSDaniel Mack 	.phy_id			= ATH8030_PHY_ID,
143496c36712SMichael Walle 	.name			= "Qualcomm Atheros AR8030",
14350465d8f8SMichael Walle 	.phy_id_mask		= AT8030_PHY_ID_MASK,
14362f664823SMichael Walle 	.probe			= at803x_probe,
14372318ca8aSMichael Walle 	.remove			= at803x_remove,
14380ca7111aSMatus Ujhelyi 	.config_init		= at803x_config_init,
143913a56b44SDaniel Mack 	.link_change_notify	= at803x_link_change_notify,
1440ea13c9eeSMugunthan V N 	.set_wol		= at803x_set_wol,
1441ea13c9eeSMugunthan V N 	.get_wol		= at803x_get_wol,
14426229ed1fSDaniel Mack 	.suspend		= at803x_suspend,
14436229ed1fSDaniel Mack 	.resume			= at803x_resume,
1444dcdecdcfSHeiner Kallweit 	/* PHY_BASIC_FEATURES */
14450eae5982SMåns Rullgård 	.config_intr		= at803x_config_intr,
144629773097SIoana Ciornei 	.handle_interrupt	= at803x_handle_interrupt,
144705d7cce8SMugunthan V N }, {
144896c36712SMichael Walle 	/* Qualcomm Atheros AR8031/AR8033 */
14490465d8f8SMichael Walle 	PHY_ID_MATCH_EXACT(ATH8031_PHY_ID),
145096c36712SMichael Walle 	.name			= "Qualcomm Atheros AR8031/AR8033",
14516cb75767SMichael Walle 	.flags			= PHY_POLL_CABLE_TEST,
14522f664823SMichael Walle 	.probe			= at803x_probe,
14532318ca8aSMichael Walle 	.remove			= at803x_remove,
145405d7cce8SMugunthan V N 	.config_init		= at803x_config_init,
145563477a5dSMichael Walle 	.config_aneg		= at803x_config_aneg,
1456cde0f4f8SMichael Walle 	.soft_reset		= genphy_soft_reset,
145705d7cce8SMugunthan V N 	.set_wol		= at803x_set_wol,
145805d7cce8SMugunthan V N 	.get_wol		= at803x_get_wol,
14596229ed1fSDaniel Mack 	.suspend		= at803x_suspend,
14606229ed1fSDaniel Mack 	.resume			= at803x_resume,
1461c329e5afSDavid Bauer 	.read_page		= at803x_read_page,
1462c329e5afSDavid Bauer 	.write_page		= at803x_write_page,
1463b856150cSDavid Bauer 	.get_features		= at803x_get_features,
146406d5f344SRussell King 	.read_status		= at803x_read_status,
146577a99394SZhao Qiang 	.config_intr		= &at803x_config_intr,
146629773097SIoana Ciornei 	.handle_interrupt	= at803x_handle_interrupt,
1467cde0f4f8SMichael Walle 	.get_tunable		= at803x_get_tunable,
1468cde0f4f8SMichael Walle 	.set_tunable		= at803x_set_tunable,
14696cb75767SMichael Walle 	.cable_test_start	= at803x_cable_test_start,
14706cb75767SMichael Walle 	.cable_test_get_status	= at803x_cable_test_get_status,
14717908d2ceSOleksij Rempel }, {
14725800091aSDavid Bauer 	/* Qualcomm Atheros AR8032 */
14735800091aSDavid Bauer 	PHY_ID_MATCH_EXACT(ATH8032_PHY_ID),
14745800091aSDavid Bauer 	.name			= "Qualcomm Atheros AR8032",
14755800091aSDavid Bauer 	.probe			= at803x_probe,
14765800091aSDavid Bauer 	.remove			= at803x_remove,
1477dc0f3ed1SOleksij Rempel 	.flags			= PHY_POLL_CABLE_TEST,
14785800091aSDavid Bauer 	.config_init		= at803x_config_init,
14795800091aSDavid Bauer 	.link_change_notify	= at803x_link_change_notify,
14805800091aSDavid Bauer 	.set_wol		= at803x_set_wol,
14815800091aSDavid Bauer 	.get_wol		= at803x_get_wol,
14825800091aSDavid Bauer 	.suspend		= at803x_suspend,
14835800091aSDavid Bauer 	.resume			= at803x_resume,
14845800091aSDavid Bauer 	/* PHY_BASIC_FEATURES */
14855800091aSDavid Bauer 	.config_intr		= at803x_config_intr,
148629773097SIoana Ciornei 	.handle_interrupt	= at803x_handle_interrupt,
1487dc0f3ed1SOleksij Rempel 	.cable_test_start	= at803x_cable_test_start,
1488dc0f3ed1SOleksij Rempel 	.cable_test_get_status	= at803x_cable_test_get_status,
14895800091aSDavid Bauer }, {
14907908d2ceSOleksij Rempel 	/* ATHEROS AR9331 */
14917908d2ceSOleksij Rempel 	PHY_ID_MATCH_EXACT(ATH9331_PHY_ID),
149296c36712SMichael Walle 	.name			= "Qualcomm Atheros AR9331 built-in PHY",
14937908d2ceSOleksij Rempel 	.suspend		= at803x_suspend,
14947908d2ceSOleksij Rempel 	.resume			= at803x_resume,
1495dc0f3ed1SOleksij Rempel 	.flags			= PHY_POLL_CABLE_TEST,
14967908d2ceSOleksij Rempel 	/* PHY_BASIC_FEATURES */
14977908d2ceSOleksij Rempel 	.config_intr		= &at803x_config_intr,
149829773097SIoana Ciornei 	.handle_interrupt	= at803x_handle_interrupt,
1499dc0f3ed1SOleksij Rempel 	.cable_test_start	= at803x_cable_test_start,
1500dc0f3ed1SOleksij Rempel 	.cable_test_get_status	= at803x_cable_test_get_status,
15017dce80c2SOleksij Rempel 	.read_status		= at803x_read_status,
15027dce80c2SOleksij Rempel 	.soft_reset		= genphy_soft_reset,
15037dce80c2SOleksij Rempel 	.config_aneg		= at803x_config_aneg,
1504272833b9SAnsuel Smith }, {
1505fada2ce0SDavid Bauer 	/* Qualcomm Atheros QCA9561 */
1506fada2ce0SDavid Bauer 	PHY_ID_MATCH_EXACT(QCA9561_PHY_ID),
1507fada2ce0SDavid Bauer 	.name			= "Qualcomm Atheros QCA9561 built-in PHY",
1508fada2ce0SDavid Bauer 	.suspend		= at803x_suspend,
1509fada2ce0SDavid Bauer 	.resume			= at803x_resume,
1510fada2ce0SDavid Bauer 	.flags			= PHY_POLL_CABLE_TEST,
1511fada2ce0SDavid Bauer 	/* PHY_BASIC_FEATURES */
1512fada2ce0SDavid Bauer 	.config_intr		= &at803x_config_intr,
1513fada2ce0SDavid Bauer 	.handle_interrupt	= at803x_handle_interrupt,
1514fada2ce0SDavid Bauer 	.cable_test_start	= at803x_cable_test_start,
1515fada2ce0SDavid Bauer 	.cable_test_get_status	= at803x_cable_test_get_status,
1516fada2ce0SDavid Bauer 	.read_status		= at803x_read_status,
1517fada2ce0SDavid Bauer 	.soft_reset		= genphy_soft_reset,
1518fada2ce0SDavid Bauer 	.config_aneg		= at803x_config_aneg,
1519fada2ce0SDavid Bauer }, {
1520272833b9SAnsuel Smith 	/* QCA8337 */
1521272833b9SAnsuel Smith 	.phy_id			= QCA8337_PHY_ID,
1522272833b9SAnsuel Smith 	.phy_id_mask		= QCA8K_PHY_ID_MASK,
1523d44fd860SAnsuel Smith 	.name			= "Qualcomm Atheros 8337 internal PHY",
1524272833b9SAnsuel Smith 	/* PHY_GBIT_FEATURES */
15251ca83119SAnsuel Smith 	.link_change_notify	= qca83xx_link_change_notify,
1526272833b9SAnsuel Smith 	.probe			= at803x_probe,
1527272833b9SAnsuel Smith 	.flags			= PHY_IS_INTERNAL,
1528272833b9SAnsuel Smith 	.config_init		= qca83xx_config_init,
1529272833b9SAnsuel Smith 	.soft_reset		= genphy_soft_reset,
1530272833b9SAnsuel Smith 	.get_sset_count		= at803x_get_sset_count,
1531272833b9SAnsuel Smith 	.get_strings		= at803x_get_strings,
1532272833b9SAnsuel Smith 	.get_stats		= at803x_get_stats,
1533ba3c01eeSAnsuel Smith 	.suspend		= qca83xx_suspend,
1534ba3c01eeSAnsuel Smith 	.resume			= qca83xx_resume,
15350ccf8511SAnsuel Smith }, {
1536b4df02b5SAnsuel Smith 	/* QCA8327-A from switch QCA8327-AL1A */
1537b4df02b5SAnsuel Smith 	.phy_id			= QCA8327_A_PHY_ID,
15380ccf8511SAnsuel Smith 	.phy_id_mask		= QCA8K_PHY_ID_MASK,
1539d44fd860SAnsuel Smith 	.name			= "Qualcomm Atheros 8327-A internal PHY",
1540b4df02b5SAnsuel Smith 	/* PHY_GBIT_FEATURES */
15411ca83119SAnsuel Smith 	.link_change_notify	= qca83xx_link_change_notify,
1542b4df02b5SAnsuel Smith 	.probe			= at803x_probe,
1543b4df02b5SAnsuel Smith 	.flags			= PHY_IS_INTERNAL,
1544b4df02b5SAnsuel Smith 	.config_init		= qca83xx_config_init,
1545b4df02b5SAnsuel Smith 	.soft_reset		= genphy_soft_reset,
1546b4df02b5SAnsuel Smith 	.get_sset_count		= at803x_get_sset_count,
1547b4df02b5SAnsuel Smith 	.get_strings		= at803x_get_strings,
1548b4df02b5SAnsuel Smith 	.get_stats		= at803x_get_stats,
1549ba3c01eeSAnsuel Smith 	.suspend		= qca83xx_suspend,
1550ba3c01eeSAnsuel Smith 	.resume			= qca83xx_resume,
1551b4df02b5SAnsuel Smith }, {
1552b4df02b5SAnsuel Smith 	/* QCA8327-B from switch QCA8327-BL1A */
1553b4df02b5SAnsuel Smith 	.phy_id			= QCA8327_B_PHY_ID,
1554b4df02b5SAnsuel Smith 	.phy_id_mask		= QCA8K_PHY_ID_MASK,
1555d44fd860SAnsuel Smith 	.name			= "Qualcomm Atheros 8327-B internal PHY",
15560ccf8511SAnsuel Smith 	/* PHY_GBIT_FEATURES */
15571ca83119SAnsuel Smith 	.link_change_notify	= qca83xx_link_change_notify,
15580ccf8511SAnsuel Smith 	.probe			= at803x_probe,
15590ccf8511SAnsuel Smith 	.flags			= PHY_IS_INTERNAL,
15600ccf8511SAnsuel Smith 	.config_init		= qca83xx_config_init,
15610ccf8511SAnsuel Smith 	.soft_reset		= genphy_soft_reset,
15620ccf8511SAnsuel Smith 	.get_sset_count		= at803x_get_sset_count,
15630ccf8511SAnsuel Smith 	.get_strings		= at803x_get_strings,
15640ccf8511SAnsuel Smith 	.get_stats		= at803x_get_stats,
1565ba3c01eeSAnsuel Smith 	.suspend		= qca83xx_suspend,
1566ba3c01eeSAnsuel Smith 	.resume			= qca83xx_resume,
1567272833b9SAnsuel Smith }, };
15680ca7111aSMatus Ujhelyi 
156950fd7150SJohan Hovold module_phy_driver(at803x_driver);
15700ca7111aSMatus Ujhelyi 
15710ca7111aSMatus Ujhelyi static struct mdio_device_id __maybe_unused atheros_tbl[] = {
15720465d8f8SMichael Walle 	{ ATH8030_PHY_ID, AT8030_PHY_ID_MASK },
15730465d8f8SMichael Walle 	{ PHY_ID_MATCH_EXACT(ATH8031_PHY_ID) },
15745800091aSDavid Bauer 	{ PHY_ID_MATCH_EXACT(ATH8032_PHY_ID) },
15750465d8f8SMichael Walle 	{ PHY_ID_MATCH_EXACT(ATH8035_PHY_ID) },
15767908d2ceSOleksij Rempel 	{ PHY_ID_MATCH_EXACT(ATH9331_PHY_ID) },
15770ccf8511SAnsuel Smith 	{ PHY_ID_MATCH_EXACT(QCA8337_PHY_ID) },
1578b4df02b5SAnsuel Smith 	{ PHY_ID_MATCH_EXACT(QCA8327_A_PHY_ID) },
1579b4df02b5SAnsuel Smith 	{ PHY_ID_MATCH_EXACT(QCA8327_B_PHY_ID) },
1580fada2ce0SDavid Bauer 	{ PHY_ID_MATCH_EXACT(QCA9561_PHY_ID) },
15810ca7111aSMatus Ujhelyi 	{ }
15820ca7111aSMatus Ujhelyi };
15830ca7111aSMatus Ujhelyi 
15840ca7111aSMatus Ujhelyi MODULE_DEVICE_TABLE(mdio, atheros_tbl);
1585