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
58 MODULE_DESCRIPTION("Marvell PHY driver");
59 MODULE_AUTHOR("Andy Fleming");
60 MODULE_LICENSE("GPL");
62 static int marvell_ack_interrupt(struct phy_device
*phydev
)
66 /* Clear the interrupts by reading the reg */
67 err
= phy_read(phydev
, MII_M1011_IEVENT
);
75 static int marvell_config_intr(struct phy_device
*phydev
)
79 if (phydev
->interrupts
== PHY_INTERRUPT_ENABLED
)
80 err
= phy_write(phydev
, MII_M1011_IMASK
, MII_M1011_IMASK_INIT
);
82 err
= phy_write(phydev
, MII_M1011_IMASK
, MII_M1011_IMASK_CLEAR
);
87 static int marvell_config_aneg(struct phy_device
*phydev
)
91 /* The Marvell PHY has an errata which requires
92 * that certain registers get written in order
93 * to restart autonegotiation */
94 err
= phy_write(phydev
, MII_BMCR
, BMCR_RESET
);
99 err
= phy_write(phydev
, 0x1d, 0x1f);
103 err
= phy_write(phydev
, 0x1e, 0x200c);
107 err
= phy_write(phydev
, 0x1d, 0x5);
111 err
= phy_write(phydev
, 0x1e, 0);
115 err
= phy_write(phydev
, 0x1e, 0x100);
119 err
= phy_write(phydev
, MII_M1011_PHY_SCR
,
120 MII_M1011_PHY_SCR_AUTO_CROSS
);
124 err
= phy_write(phydev
, MII_M1111_PHY_LED_CONTROL
,
125 MII_M1111_PHY_LED_DIRECT
);
129 err
= genphy_config_aneg(phydev
);
134 static int m88e1145_config_init(struct phy_device
*phydev
)
138 /* Take care of errata E0 & E1 */
139 err
= phy_write(phydev
, 0x1d, 0x001b);
143 err
= phy_write(phydev
, 0x1e, 0x418f);
147 err
= phy_write(phydev
, 0x1d, 0x0016);
151 err
= phy_write(phydev
, 0x1e, 0xa2da);
155 if (phydev
->interface
== PHY_INTERFACE_MODE_RGMII
) {
156 int temp
= phy_read(phydev
, MII_M1145_PHY_EXT_CR
);
160 temp
|= (MII_M1145_RGMII_RX_DELAY
| MII_M1145_RGMII_TX_DELAY
);
162 err
= phy_write(phydev
, MII_M1145_PHY_EXT_CR
, temp
);
166 if (phydev
->dev_flags
& M1145_DEV_FLAGS_RESISTANCE
) {
167 err
= phy_write(phydev
, 0x1d, 0x0012);
171 temp
= phy_read(phydev
, 0x1e);
176 temp
|= 2 << 9; /* 36 ohm */
177 temp
|= 2 << 6; /* 39 ohm */
179 err
= phy_write(phydev
, 0x1e, temp
);
183 err
= phy_write(phydev
, 0x1d, 0x3);
187 err
= phy_write(phydev
, 0x1e, 0x8000);
196 static struct phy_driver m88e1101_driver
= {
197 .phy_id
= 0x01410c60,
198 .phy_id_mask
= 0xfffffff0,
199 .name
= "Marvell 88E1101",
200 .features
= PHY_GBIT_FEATURES
,
201 .flags
= PHY_HAS_INTERRUPT
,
202 .config_aneg
= &marvell_config_aneg
,
203 .read_status
= &genphy_read_status
,
204 .ack_interrupt
= &marvell_ack_interrupt
,
205 .config_intr
= &marvell_config_intr
,
206 .driver
= {.owner
= THIS_MODULE
,},
209 static struct phy_driver m88e1111s_driver
= {
210 .phy_id
= 0x01410cc0,
211 .phy_id_mask
= 0xfffffff0,
212 .name
= "Marvell 88E1111",
213 .features
= PHY_GBIT_FEATURES
,
214 .flags
= PHY_HAS_INTERRUPT
,
215 .config_aneg
= &marvell_config_aneg
,
216 .read_status
= &genphy_read_status
,
217 .ack_interrupt
= &marvell_ack_interrupt
,
218 .config_intr
= &marvell_config_intr
,
219 .driver
= {.owner
= THIS_MODULE
,},
222 static struct phy_driver m88e1145_driver
= {
223 .phy_id
= 0x01410cd0,
224 .phy_id_mask
= 0xfffffff0,
225 .name
= "Marvell 88E1145",
226 .features
= PHY_GBIT_FEATURES
,
227 .flags
= PHY_HAS_INTERRUPT
,
228 .config_init
= &m88e1145_config_init
,
229 .config_aneg
= &marvell_config_aneg
,
230 .read_status
= &genphy_read_status
,
231 .ack_interrupt
= &marvell_ack_interrupt
,
232 .config_intr
= &marvell_config_intr
,
233 .driver
= {.owner
= THIS_MODULE
,},
236 static int __init
marvell_init(void)
240 ret
= phy_driver_register(&m88e1101_driver
);
244 ret
= phy_driver_register(&m88e1111s_driver
);
248 ret
= phy_driver_register(&m88e1145_driver
);
255 phy_driver_unregister(&m88e1111s_driver
);
257 phy_driver_unregister(&m88e1101_driver
);
261 static void __exit
marvell_exit(void)
263 phy_driver_unregister(&m88e1101_driver
);
264 phy_driver_unregister(&m88e1111s_driver
);
265 phy_driver_unregister(&m88e1145_driver
);
268 module_init(marvell_init
);
269 module_exit(marvell_exit
);