2 * drivers/net/phy/marvell.c
4 * Driver for Marvell PHYs
8 * Copyright (c) 2004 Freescale Semiconductor, Inc.
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
16 #include <linux/kernel.h>
17 #include <linux/string.h>
18 #include <linux/errno.h>
19 #include <linux/unistd.h>
20 #include <linux/slab.h>
21 #include <linux/interrupt.h>
22 #include <linux/init.h>
23 #include <linux/delay.h>
24 #include <linux/netdevice.h>
25 #include <linux/etherdevice.h>
26 #include <linux/skbuff.h>
27 #include <linux/spinlock.h>
29 #include <linux/module.h>
30 #include <linux/mii.h>
31 #include <linux/ethtool.h>
32 #include <linux/phy.h>
36 #include <asm/uaccess.h>
38 #define MII_M1011_IEVENT 0x13
39 #define MII_M1011_IEVENT_CLEAR 0x0000
41 #define MII_M1011_IMASK 0x12
42 #define MII_M1011_IMASK_INIT 0x6400
43 #define MII_M1011_IMASK_CLEAR 0x0000
45 #define MII_M1011_PHY_SCR 0x10
46 #define MII_M1011_PHY_SCR_AUTO_CROSS 0x0060
48 #define MII_M1145_PHY_EXT_CR 0x14
49 #define MII_M1145_RGMII_RX_DELAY 0x0080
50 #define MII_M1145_RGMII_TX_DELAY 0x0002
52 #define M1145_DEV_FLAGS_RESISTANCE 0x00000001
54 #define MII_M1111_PHY_LED_CONTROL 0x18
55 #define MII_M1111_PHY_LED_DIRECT 0x4100
56 #define MII_M1111_PHY_LED_COMBINE 0x411c
57 #define MII_M1111_PHY_EXT_CR 0x14
58 #define MII_M1111_RX_DELAY 0x80
59 #define MII_M1111_TX_DELAY 0x2
60 #define MII_M1111_PHY_EXT_SR 0x1b
62 #define MII_M1111_HWCFG_MODE_MASK 0xf
63 #define MII_M1111_HWCFG_MODE_COPPER_RGMII 0xb
64 #define MII_M1111_HWCFG_MODE_FIBER_RGMII 0x3
65 #define MII_M1111_HWCFG_MODE_SGMII_NO_CLK 0x4
66 #define MII_M1111_HWCFG_FIBER_COPPER_AUTO 0x8000
67 #define MII_M1111_HWCFG_FIBER_COPPER_RES 0x2000
69 #define MII_M1111_COPPER 0
70 #define MII_M1111_FIBER 1
72 #define MII_M1011_PHY_STATUS 0x11
73 #define MII_M1011_PHY_STATUS_1000 0x8000
74 #define MII_M1011_PHY_STATUS_100 0x4000
75 #define MII_M1011_PHY_STATUS_SPD_MASK 0xc000
76 #define MII_M1011_PHY_STATUS_FULLDUPLEX 0x2000
77 #define MII_M1011_PHY_STATUS_RESOLVED 0x0800
78 #define MII_M1011_PHY_STATUS_LINK 0x0400
81 MODULE_DESCRIPTION("Marvell PHY driver");
82 MODULE_AUTHOR("Andy Fleming");
83 MODULE_LICENSE("GPL");
85 static int marvell_ack_interrupt(struct phy_device *phydev)
89 /* Clear the interrupts by reading the reg */
90 err = phy_read(phydev, MII_M1011_IEVENT);
98 static int marvell_config_intr(struct phy_device *phydev)
102 if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
103 err = phy_write(phydev, MII_M1011_IMASK, MII_M1011_IMASK_INIT);
105 err = phy_write(phydev, MII_M1011_IMASK, MII_M1011_IMASK_CLEAR);
110 static int marvell_config_aneg(struct phy_device *phydev)
114 /* The Marvell PHY has an errata which requires
115 * that certain registers get written in order
116 * to restart autonegotiation */
117 err = phy_write(phydev, MII_BMCR, BMCR_RESET);
122 err = phy_write(phydev, 0x1d, 0x1f);
126 err = phy_write(phydev, 0x1e, 0x200c);
130 err = phy_write(phydev, 0x1d, 0x5);
134 err = phy_write(phydev, 0x1e, 0);
138 err = phy_write(phydev, 0x1e, 0x100);
142 err = phy_write(phydev, MII_M1011_PHY_SCR,
143 MII_M1011_PHY_SCR_AUTO_CROSS);
147 err = phy_write(phydev, MII_M1111_PHY_LED_CONTROL,
148 MII_M1111_PHY_LED_DIRECT);
152 err = genphy_config_aneg(phydev);
157 static int m88e1111_config_init(struct phy_device *phydev)
162 /* Enable Fiber/Copper auto selection */
163 temp = phy_read(phydev, MII_M1111_PHY_EXT_SR);
164 temp &= ~MII_M1111_HWCFG_FIBER_COPPER_AUTO;
165 phy_write(phydev, MII_M1111_PHY_EXT_SR, temp);
167 temp = phy_read(phydev, MII_BMCR);
169 phy_write(phydev, MII_BMCR, temp);
171 if ((phydev->interface == PHY_INTERFACE_MODE_RGMII) ||
172 (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID) ||
173 (phydev->interface == PHY_INTERFACE_MODE_RGMII_RXID) ||
174 (phydev->interface == PHY_INTERFACE_MODE_RGMII_TXID)) {
176 temp = phy_read(phydev, MII_M1111_PHY_EXT_CR);
180 if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID) {
181 temp |= (MII_M1111_RX_DELAY | MII_M1111_TX_DELAY);
182 } else if (phydev->interface == PHY_INTERFACE_MODE_RGMII_RXID) {
183 temp &= ~MII_M1111_TX_DELAY;
184 temp |= MII_M1111_RX_DELAY;
185 } else if (phydev->interface == PHY_INTERFACE_MODE_RGMII_TXID) {
186 temp &= ~MII_M1111_RX_DELAY;
187 temp |= MII_M1111_TX_DELAY;
190 err = phy_write(phydev, MII_M1111_PHY_EXT_CR, temp);
194 temp = phy_read(phydev, MII_M1111_PHY_EXT_SR);
198 temp &= ~(MII_M1111_HWCFG_MODE_MASK);
200 if (temp & MII_M1111_HWCFG_FIBER_COPPER_RES)
201 temp |= MII_M1111_HWCFG_MODE_FIBER_RGMII;
203 temp |= MII_M1111_HWCFG_MODE_COPPER_RGMII;
205 err = phy_write(phydev, MII_M1111_PHY_EXT_SR, temp);
210 if (phydev->interface == PHY_INTERFACE_MODE_SGMII) {
211 temp = phy_read(phydev, MII_M1111_PHY_EXT_SR);
215 temp &= ~(MII_M1111_HWCFG_MODE_MASK);
216 temp |= MII_M1111_HWCFG_MODE_SGMII_NO_CLK;
218 err = phy_write(phydev, MII_M1111_PHY_EXT_SR, temp);
223 err = phy_write(phydev, MII_BMCR, BMCR_RESET);
230 static int m88e1145_config_init(struct phy_device *phydev)
234 /* Take care of errata E0 & E1 */
235 err = phy_write(phydev, 0x1d, 0x001b);
239 err = phy_write(phydev, 0x1e, 0x418f);
243 err = phy_write(phydev, 0x1d, 0x0016);
247 err = phy_write(phydev, 0x1e, 0xa2da);
251 if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID) {
252 int temp = phy_read(phydev, MII_M1145_PHY_EXT_CR);
256 temp |= (MII_M1145_RGMII_RX_DELAY | MII_M1145_RGMII_TX_DELAY);
258 err = phy_write(phydev, MII_M1145_PHY_EXT_CR, temp);
262 if (phydev->dev_flags & M1145_DEV_FLAGS_RESISTANCE) {
263 err = phy_write(phydev, 0x1d, 0x0012);
267 temp = phy_read(phydev, 0x1e);
272 temp |= 2 << 9; /* 36 ohm */
273 temp |= 2 << 6; /* 39 ohm */
275 err = phy_write(phydev, 0x1e, temp);
279 err = phy_write(phydev, 0x1d, 0x3);
283 err = phy_write(phydev, 0x1e, 0x8000);
292 /* marvell_read_status
294 * Generic status code does not detect Fiber correctly!
296 * Check the link, then figure out the current state
297 * by comparing what we advertise with what the link partner
298 * advertises. Start by checking the gigabit possibilities,
299 * then move on to 10/100.
301 static int marvell_read_status(struct phy_device *phydev)
308 /* Update the link, but return if there
310 err = genphy_update_link(phydev);
314 if (AUTONEG_ENABLE == phydev->autoneg) {
315 status = phy_read(phydev, MII_M1011_PHY_STATUS);
319 lpa = phy_read(phydev, MII_LPA);
323 adv = phy_read(phydev, MII_ADVERTISE);
329 if (status & MII_M1011_PHY_STATUS_FULLDUPLEX)
330 phydev->duplex = DUPLEX_FULL;
332 phydev->duplex = DUPLEX_HALF;
334 status = status & MII_M1011_PHY_STATUS_SPD_MASK;
335 phydev->pause = phydev->asym_pause = 0;
338 case MII_M1011_PHY_STATUS_1000:
339 phydev->speed = SPEED_1000;
342 case MII_M1011_PHY_STATUS_100:
343 phydev->speed = SPEED_100;
347 phydev->speed = SPEED_10;
351 if (phydev->duplex == DUPLEX_FULL) {
352 phydev->pause = lpa & LPA_PAUSE_CAP ? 1 : 0;
353 phydev->asym_pause = lpa & LPA_PAUSE_ASYM ? 1 : 0;
356 int bmcr = phy_read(phydev, MII_BMCR);
361 if (bmcr & BMCR_FULLDPLX)
362 phydev->duplex = DUPLEX_FULL;
364 phydev->duplex = DUPLEX_HALF;
366 if (bmcr & BMCR_SPEED1000)
367 phydev->speed = SPEED_1000;
368 else if (bmcr & BMCR_SPEED100)
369 phydev->speed = SPEED_100;
371 phydev->speed = SPEED_10;
373 phydev->pause = phydev->asym_pause = 0;
379 static struct phy_driver marvell_drivers[] = {
381 .phy_id = 0x01410c60,
382 .phy_id_mask = 0xfffffff0,
383 .name = "Marvell 88E1101",
384 .features = PHY_GBIT_FEATURES,
385 .flags = PHY_HAS_INTERRUPT,
386 .config_aneg = &marvell_config_aneg,
387 .read_status = &genphy_read_status,
388 .ack_interrupt = &marvell_ack_interrupt,
389 .config_intr = &marvell_config_intr,
390 .driver = { .owner = THIS_MODULE },
393 .phy_id = 0x01410c90,
394 .phy_id_mask = 0xfffffff0,
395 .name = "Marvell 88E1112",
396 .features = PHY_GBIT_FEATURES,
397 .flags = PHY_HAS_INTERRUPT,
398 .config_init = &m88e1111_config_init,
399 .config_aneg = &marvell_config_aneg,
400 .read_status = &genphy_read_status,
401 .ack_interrupt = &marvell_ack_interrupt,
402 .config_intr = &marvell_config_intr,
403 .driver = { .owner = THIS_MODULE },
406 .phy_id = 0x01410cc0,
407 .phy_id_mask = 0xfffffff0,
408 .name = "Marvell 88E1111",
409 .features = PHY_GBIT_FEATURES,
410 .flags = PHY_HAS_INTERRUPT,
411 .config_init = &m88e1111_config_init,
412 .config_aneg = &marvell_config_aneg,
413 .read_status = &marvell_read_status,
414 .ack_interrupt = &marvell_ack_interrupt,
415 .config_intr = &marvell_config_intr,
416 .driver = { .owner = THIS_MODULE },
419 .phy_id = 0x01410cd0,
420 .phy_id_mask = 0xfffffff0,
421 .name = "Marvell 88E1145",
422 .features = PHY_GBIT_FEATURES,
423 .flags = PHY_HAS_INTERRUPT,
424 .config_init = &m88e1145_config_init,
425 .config_aneg = &marvell_config_aneg,
426 .read_status = &genphy_read_status,
427 .ack_interrupt = &marvell_ack_interrupt,
428 .config_intr = &marvell_config_intr,
429 .driver = { .owner = THIS_MODULE },
432 .phy_id = 0x01410e30,
433 .phy_id_mask = 0xfffffff0,
434 .name = "Marvell 88E1240",
435 .features = PHY_GBIT_FEATURES,
436 .flags = PHY_HAS_INTERRUPT,
437 .config_init = &m88e1111_config_init,
438 .config_aneg = &marvell_config_aneg,
439 .read_status = &genphy_read_status,
440 .ack_interrupt = &marvell_ack_interrupt,
441 .config_intr = &marvell_config_intr,
442 .driver = { .owner = THIS_MODULE },
446 static int __init marvell_init(void)
451 for (i = 0; i < ARRAY_SIZE(marvell_drivers); i++) {
452 ret = phy_driver_register(&marvell_drivers[i]);
456 phy_driver_unregister(&marvell_drivers[i]);
464 static void __exit marvell_exit(void)
468 for (i = 0; i < ARRAY_SIZE(marvell_drivers); i++)
469 phy_driver_unregister(&marvell_drivers[i]);
472 module_init(marvell_init);
473 module_exit(marvell_exit);