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_88E1121_PHY_LED_CTRL 16
73 #define MII_88E1121_PHY_LED_PAGE 3
74 #define MII_88E1121_PHY_LED_DEF 0x0030
75 #define MII_88E1121_PHY_PAGE 22
77 #define MII_M1011_PHY_STATUS 0x11
78 #define MII_M1011_PHY_STATUS_1000 0x8000
79 #define MII_M1011_PHY_STATUS_100 0x4000
80 #define MII_M1011_PHY_STATUS_SPD_MASK 0xc000
81 #define MII_M1011_PHY_STATUS_FULLDUPLEX 0x2000
82 #define MII_M1011_PHY_STATUS_RESOLVED 0x0800
83 #define MII_M1011_PHY_STATUS_LINK 0x0400
86 MODULE_DESCRIPTION("Marvell PHY driver");
87 MODULE_AUTHOR("Andy Fleming");
88 MODULE_LICENSE("GPL");
90 static int marvell_ack_interrupt(struct phy_device
*phydev
)
94 /* Clear the interrupts by reading the reg */
95 err
= phy_read(phydev
, MII_M1011_IEVENT
);
103 static int marvell_config_intr(struct phy_device
*phydev
)
107 if (phydev
->interrupts
== PHY_INTERRUPT_ENABLED
)
108 err
= phy_write(phydev
, MII_M1011_IMASK
, MII_M1011_IMASK_INIT
);
110 err
= phy_write(phydev
, MII_M1011_IMASK
, MII_M1011_IMASK_CLEAR
);
115 static int marvell_config_aneg(struct phy_device
*phydev
)
119 /* The Marvell PHY has an errata which requires
120 * that certain registers get written in order
121 * to restart autonegotiation */
122 err
= phy_write(phydev
, MII_BMCR
, BMCR_RESET
);
127 err
= phy_write(phydev
, 0x1d, 0x1f);
131 err
= phy_write(phydev
, 0x1e, 0x200c);
135 err
= phy_write(phydev
, 0x1d, 0x5);
139 err
= phy_write(phydev
, 0x1e, 0);
143 err
= phy_write(phydev
, 0x1e, 0x100);
147 err
= phy_write(phydev
, MII_M1011_PHY_SCR
,
148 MII_M1011_PHY_SCR_AUTO_CROSS
);
152 err
= phy_write(phydev
, MII_M1111_PHY_LED_CONTROL
,
153 MII_M1111_PHY_LED_DIRECT
);
157 err
= genphy_config_aneg(phydev
);
161 if (phydev
->autoneg
!= AUTONEG_ENABLE
) {
165 * A write to speed/duplex bits (that is performed by
166 * genphy_config_aneg() call above) must be followed by
167 * a software reset. Otherwise, the write has no effect.
169 bmcr
= phy_read(phydev
, MII_BMCR
);
173 err
= phy_write(phydev
, MII_BMCR
, bmcr
| BMCR_RESET
);
181 static int m88e1121_config_aneg(struct phy_device
*phydev
)
185 err
= phy_write(phydev
, MII_BMCR
, BMCR_RESET
);
189 err
= phy_write(phydev
, MII_M1011_PHY_SCR
,
190 MII_M1011_PHY_SCR_AUTO_CROSS
);
194 temp
= phy_read(phydev
, MII_88E1121_PHY_PAGE
);
196 phy_write(phydev
, MII_88E1121_PHY_PAGE
, MII_88E1121_PHY_LED_PAGE
);
197 phy_write(phydev
, MII_88E1121_PHY_LED_CTRL
, MII_88E1121_PHY_LED_DEF
);
198 phy_write(phydev
, MII_88E1121_PHY_PAGE
, temp
);
200 err
= genphy_config_aneg(phydev
);
205 static int m88e1111_config_init(struct phy_device
*phydev
)
210 /* Enable Fiber/Copper auto selection */
211 temp
= phy_read(phydev
, MII_M1111_PHY_EXT_SR
);
212 temp
&= ~MII_M1111_HWCFG_FIBER_COPPER_AUTO
;
213 phy_write(phydev
, MII_M1111_PHY_EXT_SR
, temp
);
215 temp
= phy_read(phydev
, MII_BMCR
);
217 phy_write(phydev
, MII_BMCR
, temp
);
219 if ((phydev
->interface
== PHY_INTERFACE_MODE_RGMII
) ||
220 (phydev
->interface
== PHY_INTERFACE_MODE_RGMII_ID
) ||
221 (phydev
->interface
== PHY_INTERFACE_MODE_RGMII_RXID
) ||
222 (phydev
->interface
== PHY_INTERFACE_MODE_RGMII_TXID
)) {
224 temp
= phy_read(phydev
, MII_M1111_PHY_EXT_CR
);
228 if (phydev
->interface
== PHY_INTERFACE_MODE_RGMII_ID
) {
229 temp
|= (MII_M1111_RX_DELAY
| MII_M1111_TX_DELAY
);
230 } else if (phydev
->interface
== PHY_INTERFACE_MODE_RGMII_RXID
) {
231 temp
&= ~MII_M1111_TX_DELAY
;
232 temp
|= MII_M1111_RX_DELAY
;
233 } else if (phydev
->interface
== PHY_INTERFACE_MODE_RGMII_TXID
) {
234 temp
&= ~MII_M1111_RX_DELAY
;
235 temp
|= MII_M1111_TX_DELAY
;
238 err
= phy_write(phydev
, MII_M1111_PHY_EXT_CR
, temp
);
242 temp
= phy_read(phydev
, MII_M1111_PHY_EXT_SR
);
246 temp
&= ~(MII_M1111_HWCFG_MODE_MASK
);
248 if (temp
& MII_M1111_HWCFG_FIBER_COPPER_RES
)
249 temp
|= MII_M1111_HWCFG_MODE_FIBER_RGMII
;
251 temp
|= MII_M1111_HWCFG_MODE_COPPER_RGMII
;
253 err
= phy_write(phydev
, MII_M1111_PHY_EXT_SR
, temp
);
258 if (phydev
->interface
== PHY_INTERFACE_MODE_SGMII
) {
259 temp
= phy_read(phydev
, MII_M1111_PHY_EXT_SR
);
263 temp
&= ~(MII_M1111_HWCFG_MODE_MASK
);
264 temp
|= MII_M1111_HWCFG_MODE_SGMII_NO_CLK
;
265 temp
|= MII_M1111_HWCFG_FIBER_COPPER_AUTO
;
267 err
= phy_write(phydev
, MII_M1111_PHY_EXT_SR
, temp
);
272 err
= phy_write(phydev
, MII_BMCR
, BMCR_RESET
);
279 static int m88e1118_config_aneg(struct phy_device
*phydev
)
283 err
= phy_write(phydev
, MII_BMCR
, BMCR_RESET
);
287 err
= phy_write(phydev
, MII_M1011_PHY_SCR
,
288 MII_M1011_PHY_SCR_AUTO_CROSS
);
292 err
= genphy_config_aneg(phydev
);
296 static int m88e1118_config_init(struct phy_device
*phydev
)
301 err
= phy_write(phydev
, 0x16, 0x0002);
305 /* Enable 1000 Mbit */
306 err
= phy_write(phydev
, 0x15, 0x1070);
311 err
= phy_write(phydev
, 0x16, 0x0003);
315 /* Adjust LED Control */
316 err
= phy_write(phydev
, 0x10, 0x021e);
321 err
= phy_write(phydev
, 0x16, 0x0);
325 err
= phy_write(phydev
, MII_BMCR
, BMCR_RESET
);
332 static int m88e1145_config_init(struct phy_device
*phydev
)
336 /* Take care of errata E0 & E1 */
337 err
= phy_write(phydev
, 0x1d, 0x001b);
341 err
= phy_write(phydev
, 0x1e, 0x418f);
345 err
= phy_write(phydev
, 0x1d, 0x0016);
349 err
= phy_write(phydev
, 0x1e, 0xa2da);
353 if (phydev
->interface
== PHY_INTERFACE_MODE_RGMII_ID
) {
354 int temp
= phy_read(phydev
, MII_M1145_PHY_EXT_CR
);
358 temp
|= (MII_M1145_RGMII_RX_DELAY
| MII_M1145_RGMII_TX_DELAY
);
360 err
= phy_write(phydev
, MII_M1145_PHY_EXT_CR
, temp
);
364 if (phydev
->dev_flags
& M1145_DEV_FLAGS_RESISTANCE
) {
365 err
= phy_write(phydev
, 0x1d, 0x0012);
369 temp
= phy_read(phydev
, 0x1e);
374 temp
|= 2 << 9; /* 36 ohm */
375 temp
|= 2 << 6; /* 39 ohm */
377 err
= phy_write(phydev
, 0x1e, temp
);
381 err
= phy_write(phydev
, 0x1d, 0x3);
385 err
= phy_write(phydev
, 0x1e, 0x8000);
394 /* marvell_read_status
396 * Generic status code does not detect Fiber correctly!
398 * Check the link, then figure out the current state
399 * by comparing what we advertise with what the link partner
400 * advertises. Start by checking the gigabit possibilities,
401 * then move on to 10/100.
403 static int marvell_read_status(struct phy_device
*phydev
)
410 /* Update the link, but return if there
412 err
= genphy_update_link(phydev
);
416 if (AUTONEG_ENABLE
== phydev
->autoneg
) {
417 status
= phy_read(phydev
, MII_M1011_PHY_STATUS
);
421 lpa
= phy_read(phydev
, MII_LPA
);
425 adv
= phy_read(phydev
, MII_ADVERTISE
);
431 if (status
& MII_M1011_PHY_STATUS_FULLDUPLEX
)
432 phydev
->duplex
= DUPLEX_FULL
;
434 phydev
->duplex
= DUPLEX_HALF
;
436 status
= status
& MII_M1011_PHY_STATUS_SPD_MASK
;
437 phydev
->pause
= phydev
->asym_pause
= 0;
440 case MII_M1011_PHY_STATUS_1000
:
441 phydev
->speed
= SPEED_1000
;
444 case MII_M1011_PHY_STATUS_100
:
445 phydev
->speed
= SPEED_100
;
449 phydev
->speed
= SPEED_10
;
453 if (phydev
->duplex
== DUPLEX_FULL
) {
454 phydev
->pause
= lpa
& LPA_PAUSE_CAP
? 1 : 0;
455 phydev
->asym_pause
= lpa
& LPA_PAUSE_ASYM
? 1 : 0;
458 int bmcr
= phy_read(phydev
, MII_BMCR
);
463 if (bmcr
& BMCR_FULLDPLX
)
464 phydev
->duplex
= DUPLEX_FULL
;
466 phydev
->duplex
= DUPLEX_HALF
;
468 if (bmcr
& BMCR_SPEED1000
)
469 phydev
->speed
= SPEED_1000
;
470 else if (bmcr
& BMCR_SPEED100
)
471 phydev
->speed
= SPEED_100
;
473 phydev
->speed
= SPEED_10
;
475 phydev
->pause
= phydev
->asym_pause
= 0;
481 static int m88e1121_did_interrupt(struct phy_device
*phydev
)
485 imask
= phy_read(phydev
, MII_M1011_IEVENT
);
487 if (imask
& MII_M1011_IMASK_INIT
)
493 static struct phy_driver marvell_drivers
[] = {
495 .phy_id
= 0x01410c60,
496 .phy_id_mask
= 0xfffffff0,
497 .name
= "Marvell 88E1101",
498 .features
= PHY_GBIT_FEATURES
,
499 .flags
= PHY_HAS_INTERRUPT
,
500 .config_aneg
= &marvell_config_aneg
,
501 .read_status
= &genphy_read_status
,
502 .ack_interrupt
= &marvell_ack_interrupt
,
503 .config_intr
= &marvell_config_intr
,
504 .driver
= { .owner
= THIS_MODULE
},
507 .phy_id
= 0x01410c90,
508 .phy_id_mask
= 0xfffffff0,
509 .name
= "Marvell 88E1112",
510 .features
= PHY_GBIT_FEATURES
,
511 .flags
= PHY_HAS_INTERRUPT
,
512 .config_init
= &m88e1111_config_init
,
513 .config_aneg
= &marvell_config_aneg
,
514 .read_status
= &genphy_read_status
,
515 .ack_interrupt
= &marvell_ack_interrupt
,
516 .config_intr
= &marvell_config_intr
,
517 .driver
= { .owner
= THIS_MODULE
},
520 .phy_id
= 0x01410cc0,
521 .phy_id_mask
= 0xfffffff0,
522 .name
= "Marvell 88E1111",
523 .features
= PHY_GBIT_FEATURES
,
524 .flags
= PHY_HAS_INTERRUPT
,
525 .config_init
= &m88e1111_config_init
,
526 .config_aneg
= &marvell_config_aneg
,
527 .read_status
= &marvell_read_status
,
528 .ack_interrupt
= &marvell_ack_interrupt
,
529 .config_intr
= &marvell_config_intr
,
530 .driver
= { .owner
= THIS_MODULE
},
533 .phy_id
= 0x01410e10,
534 .phy_id_mask
= 0xfffffff0,
535 .name
= "Marvell 88E1118",
536 .features
= PHY_GBIT_FEATURES
,
537 .flags
= PHY_HAS_INTERRUPT
,
538 .config_init
= &m88e1118_config_init
,
539 .config_aneg
= &m88e1118_config_aneg
,
540 .read_status
= &genphy_read_status
,
541 .ack_interrupt
= &marvell_ack_interrupt
,
542 .config_intr
= &marvell_config_intr
,
543 .driver
= {.owner
= THIS_MODULE
,},
546 .phy_id
= 0x01410cb0,
547 .phy_id_mask
= 0xfffffff0,
548 .name
= "Marvell 88E1121R",
549 .features
= PHY_GBIT_FEATURES
,
550 .flags
= PHY_HAS_INTERRUPT
,
551 .config_aneg
= &m88e1121_config_aneg
,
552 .read_status
= &marvell_read_status
,
553 .ack_interrupt
= &marvell_ack_interrupt
,
554 .config_intr
= &marvell_config_intr
,
555 .did_interrupt
= &m88e1121_did_interrupt
,
556 .driver
= { .owner
= THIS_MODULE
},
559 .phy_id
= 0x01410cd0,
560 .phy_id_mask
= 0xfffffff0,
561 .name
= "Marvell 88E1145",
562 .features
= PHY_GBIT_FEATURES
,
563 .flags
= PHY_HAS_INTERRUPT
,
564 .config_init
= &m88e1145_config_init
,
565 .config_aneg
= &marvell_config_aneg
,
566 .read_status
= &genphy_read_status
,
567 .ack_interrupt
= &marvell_ack_interrupt
,
568 .config_intr
= &marvell_config_intr
,
569 .driver
= { .owner
= THIS_MODULE
},
572 .phy_id
= 0x01410e30,
573 .phy_id_mask
= 0xfffffff0,
574 .name
= "Marvell 88E1240",
575 .features
= PHY_GBIT_FEATURES
,
576 .flags
= PHY_HAS_INTERRUPT
,
577 .config_init
= &m88e1111_config_init
,
578 .config_aneg
= &marvell_config_aneg
,
579 .read_status
= &genphy_read_status
,
580 .ack_interrupt
= &marvell_ack_interrupt
,
581 .config_intr
= &marvell_config_intr
,
582 .driver
= { .owner
= THIS_MODULE
},
586 static int __init
marvell_init(void)
591 for (i
= 0; i
< ARRAY_SIZE(marvell_drivers
); i
++) {
592 ret
= phy_driver_register(&marvell_drivers
[i
]);
596 phy_driver_unregister(&marvell_drivers
[i
]);
604 static void __exit
marvell_exit(void)
608 for (i
= 0; i
< ARRAY_SIZE(marvell_drivers
); i
++)
609 phy_driver_unregister(&marvell_drivers
[i
]);
612 module_init(marvell_init
);
613 module_exit(marvell_exit
);