dmaengine: imx-sdma: Let the core do the device node validation
[linux/fpc-iii.git] / drivers / net / phy / at803x.c
blob222ccd9ecfcebc0bf92beb82e177fba7c3bfaea5
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * drivers/net/phy/at803x.c
5 * Driver for Atheros 803x PHY
7 * Author: Matus Ujhelyi <ujhelyi.m@gmail.com>
8 */
10 #include <linux/phy.h>
11 #include <linux/module.h>
12 #include <linux/string.h>
13 #include <linux/netdevice.h>
14 #include <linux/etherdevice.h>
15 #include <linux/of_gpio.h>
16 #include <linux/gpio/consumer.h>
18 #define AT803X_INTR_ENABLE 0x12
19 #define AT803X_INTR_ENABLE_AUTONEG_ERR BIT(15)
20 #define AT803X_INTR_ENABLE_SPEED_CHANGED BIT(14)
21 #define AT803X_INTR_ENABLE_DUPLEX_CHANGED BIT(13)
22 #define AT803X_INTR_ENABLE_PAGE_RECEIVED BIT(12)
23 #define AT803X_INTR_ENABLE_LINK_FAIL BIT(11)
24 #define AT803X_INTR_ENABLE_LINK_SUCCESS BIT(10)
25 #define AT803X_INTR_ENABLE_WIRESPEED_DOWNGRADE BIT(5)
26 #define AT803X_INTR_ENABLE_POLARITY_CHANGED BIT(1)
27 #define AT803X_INTR_ENABLE_WOL BIT(0)
29 #define AT803X_INTR_STATUS 0x13
31 #define AT803X_SMART_SPEED 0x14
32 #define AT803X_LED_CONTROL 0x18
34 #define AT803X_DEVICE_ADDR 0x03
35 #define AT803X_LOC_MAC_ADDR_0_15_OFFSET 0x804C
36 #define AT803X_LOC_MAC_ADDR_16_31_OFFSET 0x804B
37 #define AT803X_LOC_MAC_ADDR_32_47_OFFSET 0x804A
38 #define AT803X_REG_CHIP_CONFIG 0x1f
39 #define AT803X_BT_BX_REG_SEL 0x8000
41 #define AT803X_DEBUG_ADDR 0x1D
42 #define AT803X_DEBUG_DATA 0x1E
44 #define AT803X_MODE_CFG_MASK 0x0F
45 #define AT803X_MODE_CFG_SGMII 0x01
47 #define AT803X_PSSR 0x11 /*PHY-Specific Status Register*/
48 #define AT803X_PSSR_MR_AN_COMPLETE 0x0200
50 #define AT803X_DEBUG_REG_0 0x00
51 #define AT803X_DEBUG_RX_CLK_DLY_EN BIT(15)
53 #define AT803X_DEBUG_REG_5 0x05
54 #define AT803X_DEBUG_TX_CLK_DLY_EN BIT(8)
56 #define ATH8030_PHY_ID 0x004dd076
57 #define ATH8031_PHY_ID 0x004dd074
58 #define ATH8035_PHY_ID 0x004dd072
59 #define AT803X_PHY_ID_MASK 0xffffffef
61 MODULE_DESCRIPTION("Atheros 803x PHY driver");
62 MODULE_AUTHOR("Matus Ujhelyi");
63 MODULE_LICENSE("GPL");
65 struct at803x_priv {
66 bool phy_reset:1;
69 struct at803x_context {
70 u16 bmcr;
71 u16 advertise;
72 u16 control1000;
73 u16 int_enable;
74 u16 smart_speed;
75 u16 led_control;
78 static int at803x_debug_reg_read(struct phy_device *phydev, u16 reg)
80 int ret;
82 ret = phy_write(phydev, AT803X_DEBUG_ADDR, reg);
83 if (ret < 0)
84 return ret;
86 return phy_read(phydev, AT803X_DEBUG_DATA);
89 static int at803x_debug_reg_mask(struct phy_device *phydev, u16 reg,
90 u16 clear, u16 set)
92 u16 val;
93 int ret;
95 ret = at803x_debug_reg_read(phydev, reg);
96 if (ret < 0)
97 return ret;
99 val = ret & 0xffff;
100 val &= ~clear;
101 val |= set;
103 return phy_write(phydev, AT803X_DEBUG_DATA, val);
106 static int at803x_enable_rx_delay(struct phy_device *phydev)
108 return at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_0, 0,
109 AT803X_DEBUG_RX_CLK_DLY_EN);
112 static int at803x_enable_tx_delay(struct phy_device *phydev)
114 return at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_5, 0,
115 AT803X_DEBUG_TX_CLK_DLY_EN);
118 static int at803x_disable_rx_delay(struct phy_device *phydev)
120 return at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_0,
121 AT803X_DEBUG_RX_CLK_DLY_EN, 0);
124 static int at803x_disable_tx_delay(struct phy_device *phydev)
126 return at803x_debug_reg_mask(phydev, AT803X_DEBUG_REG_5,
127 AT803X_DEBUG_TX_CLK_DLY_EN, 0);
130 /* save relevant PHY registers to private copy */
131 static void at803x_context_save(struct phy_device *phydev,
132 struct at803x_context *context)
134 context->bmcr = phy_read(phydev, MII_BMCR);
135 context->advertise = phy_read(phydev, MII_ADVERTISE);
136 context->control1000 = phy_read(phydev, MII_CTRL1000);
137 context->int_enable = phy_read(phydev, AT803X_INTR_ENABLE);
138 context->smart_speed = phy_read(phydev, AT803X_SMART_SPEED);
139 context->led_control = phy_read(phydev, AT803X_LED_CONTROL);
142 /* restore relevant PHY registers from private copy */
143 static void at803x_context_restore(struct phy_device *phydev,
144 const struct at803x_context *context)
146 phy_write(phydev, MII_BMCR, context->bmcr);
147 phy_write(phydev, MII_ADVERTISE, context->advertise);
148 phy_write(phydev, MII_CTRL1000, context->control1000);
149 phy_write(phydev, AT803X_INTR_ENABLE, context->int_enable);
150 phy_write(phydev, AT803X_SMART_SPEED, context->smart_speed);
151 phy_write(phydev, AT803X_LED_CONTROL, context->led_control);
154 static int at803x_set_wol(struct phy_device *phydev,
155 struct ethtool_wolinfo *wol)
157 struct net_device *ndev = phydev->attached_dev;
158 const u8 *mac;
159 int ret;
160 u32 value;
161 unsigned int i, offsets[] = {
162 AT803X_LOC_MAC_ADDR_32_47_OFFSET,
163 AT803X_LOC_MAC_ADDR_16_31_OFFSET,
164 AT803X_LOC_MAC_ADDR_0_15_OFFSET,
167 if (!ndev)
168 return -ENODEV;
170 if (wol->wolopts & WAKE_MAGIC) {
171 mac = (const u8 *) ndev->dev_addr;
173 if (!is_valid_ether_addr(mac))
174 return -EINVAL;
176 for (i = 0; i < 3; i++)
177 phy_write_mmd(phydev, AT803X_DEVICE_ADDR, offsets[i],
178 mac[(i * 2) + 1] | (mac[(i * 2)] << 8));
180 value = phy_read(phydev, AT803X_INTR_ENABLE);
181 value |= AT803X_INTR_ENABLE_WOL;
182 ret = phy_write(phydev, AT803X_INTR_ENABLE, value);
183 if (ret)
184 return ret;
185 value = phy_read(phydev, AT803X_INTR_STATUS);
186 } else {
187 value = phy_read(phydev, AT803X_INTR_ENABLE);
188 value &= (~AT803X_INTR_ENABLE_WOL);
189 ret = phy_write(phydev, AT803X_INTR_ENABLE, value);
190 if (ret)
191 return ret;
192 value = phy_read(phydev, AT803X_INTR_STATUS);
195 return ret;
198 static void at803x_get_wol(struct phy_device *phydev,
199 struct ethtool_wolinfo *wol)
201 u32 value;
203 wol->supported = WAKE_MAGIC;
204 wol->wolopts = 0;
206 value = phy_read(phydev, AT803X_INTR_ENABLE);
207 if (value & AT803X_INTR_ENABLE_WOL)
208 wol->wolopts |= WAKE_MAGIC;
211 static int at803x_suspend(struct phy_device *phydev)
213 int value;
214 int wol_enabled;
216 value = phy_read(phydev, AT803X_INTR_ENABLE);
217 wol_enabled = value & AT803X_INTR_ENABLE_WOL;
219 if (wol_enabled)
220 value = BMCR_ISOLATE;
221 else
222 value = BMCR_PDOWN;
224 phy_modify(phydev, MII_BMCR, 0, value);
226 return 0;
229 static int at803x_resume(struct phy_device *phydev)
231 return phy_modify(phydev, MII_BMCR, BMCR_PDOWN | BMCR_ISOLATE, 0);
234 static int at803x_probe(struct phy_device *phydev)
236 struct device *dev = &phydev->mdio.dev;
237 struct at803x_priv *priv;
239 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
240 if (!priv)
241 return -ENOMEM;
243 phydev->priv = priv;
245 return 0;
248 static int at803x_config_init(struct phy_device *phydev)
250 int ret;
252 ret = genphy_config_init(phydev);
253 if (ret < 0)
254 return ret;
256 /* The RX and TX delay default is:
257 * after HW reset: RX delay enabled and TX delay disabled
258 * after SW reset: RX delay enabled, while TX delay retains the
259 * value before reset.
261 * So let's first disable the RX and TX delays in PHY and enable
262 * them based on the mode selected (this also takes care of RGMII
263 * mode where we expect delays to be disabled)
266 ret = at803x_disable_rx_delay(phydev);
267 if (ret < 0)
268 return ret;
269 ret = at803x_disable_tx_delay(phydev);
270 if (ret < 0)
271 return ret;
273 if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID ||
274 phydev->interface == PHY_INTERFACE_MODE_RGMII_RXID) {
275 /* If RGMII_ID or RGMII_RXID are specified enable RX delay,
276 * otherwise keep it disabled
278 ret = at803x_enable_rx_delay(phydev);
279 if (ret < 0)
280 return ret;
283 if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID ||
284 phydev->interface == PHY_INTERFACE_MODE_RGMII_TXID) {
285 /* If RGMII_ID or RGMII_TXID are specified enable TX delay,
286 * otherwise keep it disabled
288 ret = at803x_enable_tx_delay(phydev);
291 return ret;
294 static int at803x_ack_interrupt(struct phy_device *phydev)
296 int err;
298 err = phy_read(phydev, AT803X_INTR_STATUS);
300 return (err < 0) ? err : 0;
303 static int at803x_config_intr(struct phy_device *phydev)
305 int err;
306 int value;
308 value = phy_read(phydev, AT803X_INTR_ENABLE);
310 if (phydev->interrupts == PHY_INTERRUPT_ENABLED) {
311 value |= AT803X_INTR_ENABLE_AUTONEG_ERR;
312 value |= AT803X_INTR_ENABLE_SPEED_CHANGED;
313 value |= AT803X_INTR_ENABLE_DUPLEX_CHANGED;
314 value |= AT803X_INTR_ENABLE_LINK_FAIL;
315 value |= AT803X_INTR_ENABLE_LINK_SUCCESS;
317 err = phy_write(phydev, AT803X_INTR_ENABLE, value);
319 else
320 err = phy_write(phydev, AT803X_INTR_ENABLE, 0);
322 return err;
325 static void at803x_link_change_notify(struct phy_device *phydev)
328 * Conduct a hardware reset for AT8030 every time a link loss is
329 * signalled. This is necessary to circumvent a hardware bug that
330 * occurs when the cable is unplugged while TX packets are pending
331 * in the FIFO. In such cases, the FIFO enters an error mode it
332 * cannot recover from by software.
334 if (phydev->state == PHY_NOLINK && phydev->mdio.reset_gpio) {
335 struct at803x_context context;
337 at803x_context_save(phydev, &context);
339 phy_device_reset(phydev, 1);
340 msleep(1);
341 phy_device_reset(phydev, 0);
342 msleep(1);
344 at803x_context_restore(phydev, &context);
346 phydev_dbg(phydev, "%s(): phy was reset\n", __func__);
350 static int at803x_aneg_done(struct phy_device *phydev)
352 int ccr;
354 int aneg_done = genphy_aneg_done(phydev);
355 if (aneg_done != BMSR_ANEGCOMPLETE)
356 return aneg_done;
359 * in SGMII mode, if copper side autoneg is successful,
360 * also check SGMII side autoneg result
362 ccr = phy_read(phydev, AT803X_REG_CHIP_CONFIG);
363 if ((ccr & AT803X_MODE_CFG_MASK) != AT803X_MODE_CFG_SGMII)
364 return aneg_done;
366 /* switch to SGMII/fiber page */
367 phy_write(phydev, AT803X_REG_CHIP_CONFIG, ccr & ~AT803X_BT_BX_REG_SEL);
369 /* check if the SGMII link is OK. */
370 if (!(phy_read(phydev, AT803X_PSSR) & AT803X_PSSR_MR_AN_COMPLETE)) {
371 phydev_warn(phydev, "803x_aneg_done: SGMII link is not ok\n");
372 aneg_done = 0;
374 /* switch back to copper page */
375 phy_write(phydev, AT803X_REG_CHIP_CONFIG, ccr | AT803X_BT_BX_REG_SEL);
377 return aneg_done;
380 static struct phy_driver at803x_driver[] = {
382 /* ATHEROS 8035 */
383 .phy_id = ATH8035_PHY_ID,
384 .name = "Atheros 8035 ethernet",
385 .phy_id_mask = AT803X_PHY_ID_MASK,
386 .probe = at803x_probe,
387 .config_init = at803x_config_init,
388 .set_wol = at803x_set_wol,
389 .get_wol = at803x_get_wol,
390 .suspend = at803x_suspend,
391 .resume = at803x_resume,
392 /* PHY_GBIT_FEATURES */
393 .ack_interrupt = at803x_ack_interrupt,
394 .config_intr = at803x_config_intr,
395 }, {
396 /* ATHEROS 8030 */
397 .phy_id = ATH8030_PHY_ID,
398 .name = "Atheros 8030 ethernet",
399 .phy_id_mask = AT803X_PHY_ID_MASK,
400 .probe = at803x_probe,
401 .config_init = at803x_config_init,
402 .link_change_notify = at803x_link_change_notify,
403 .set_wol = at803x_set_wol,
404 .get_wol = at803x_get_wol,
405 .suspend = at803x_suspend,
406 .resume = at803x_resume,
407 /* PHY_BASIC_FEATURES */
408 .ack_interrupt = at803x_ack_interrupt,
409 .config_intr = at803x_config_intr,
410 }, {
411 /* ATHEROS 8031 */
412 .phy_id = ATH8031_PHY_ID,
413 .name = "Atheros 8031 ethernet",
414 .phy_id_mask = AT803X_PHY_ID_MASK,
415 .probe = at803x_probe,
416 .config_init = at803x_config_init,
417 .set_wol = at803x_set_wol,
418 .get_wol = at803x_get_wol,
419 .suspend = at803x_suspend,
420 .resume = at803x_resume,
421 /* PHY_GBIT_FEATURES */
422 .aneg_done = at803x_aneg_done,
423 .ack_interrupt = &at803x_ack_interrupt,
424 .config_intr = &at803x_config_intr,
425 } };
427 module_phy_driver(at803x_driver);
429 static struct mdio_device_id __maybe_unused atheros_tbl[] = {
430 { ATH8030_PHY_ID, AT803X_PHY_ID_MASK },
431 { ATH8031_PHY_ID, AT803X_PHY_ID_MASK },
432 { ATH8035_PHY_ID, AT803X_PHY_ID_MASK },
436 MODULE_DEVICE_TABLE(mdio, atheros_tbl);