blob: e485f2653c8208578d7994284dd12faabcc6c096 [file] [log] [blame]
Herbert Valerio Riedelc9e055a2006-05-07 23:22:53 +02001/*
2 * drivers/net/phy/smsc.c
3 *
4 * Driver for SMSC PHYs
5 *
6 * Author: Herbert Valerio Riedel
7 *
8 * Copyright (c) 2006 Herbert Valerio Riedel <hvr@gnu.org>
9 *
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.
14 *
Steve Glendinning90b24cf2012-04-16 12:13:29 +010015 * Support added for SMSC LAN8187 and LAN8700 by steve.glendinning@shawell.net
Steve Glendinning4d9b1a02008-04-28 18:37:29 +010016 *
Herbert Valerio Riedelc9e055a2006-05-07 23:22:53 +020017 */
18
Herbert Valerio Riedelc9e055a2006-05-07 23:22:53 +020019#include <linux/kernel.h>
20#include <linux/module.h>
21#include <linux/mii.h>
22#include <linux/ethtool.h>
23#include <linux/phy.h>
24#include <linux/netdevice.h>
Javier Martinez Canillas43c67592012-01-03 20:23:18 -050025#include <linux/smscphy.h>
Herbert Valerio Riedelc9e055a2006-05-07 23:22:53 +020026
Steve Glendinning48c41b92008-04-28 18:36:46 +010027static int smsc_phy_config_intr(struct phy_device *phydev)
Herbert Valerio Riedelc9e055a2006-05-07 23:22:53 +020028{
29 int rc = phy_write (phydev, MII_LAN83C185_IM,
30 ((PHY_INTERRUPT_ENABLED == phydev->interrupts)
31 ? MII_LAN83C185_ISF_INT_PHYLIB_EVENTS
32 : 0));
33
34 return rc < 0 ? rc : 0;
35}
36
Steve Glendinning48c41b92008-04-28 18:36:46 +010037static int smsc_phy_ack_interrupt(struct phy_device *phydev)
Herbert Valerio Riedelc9e055a2006-05-07 23:22:53 +020038{
39 int rc = phy_read (phydev, MII_LAN83C185_ISF);
40
41 return rc < 0 ? rc : 0;
42}
43
Steve Glendinning48c41b92008-04-28 18:36:46 +010044static int smsc_phy_config_init(struct phy_device *phydev)
Herbert Valerio Riedelc9e055a2006-05-07 23:22:53 +020045{
Heiko Schocherd88ecb32015-10-17 06:04:36 +020046 int __maybe_unused len;
Andrew Lunne5a03bf2016-01-06 20:11:16 +010047 struct device *dev __maybe_unused = &phydev->mdio.dev;
Heiko Schocherd88ecb32015-10-17 06:04:36 +020048 struct device_node *of_node __maybe_unused = dev->of_node;
Gwenhael Goavec-Merou21009682014-08-15 15:00:38 +020049 int rc = phy_read(phydev, MII_LAN83C185_CTRL_STATUS);
Heiko Schocherd88ecb32015-10-17 06:04:36 +020050 int enable_energy = 1;
Gwenhael Goavec-Merou21009682014-08-15 15:00:38 +020051
52 if (rc < 0)
53 return rc;
54
Heiko Schocherd88ecb32015-10-17 06:04:36 +020055 if (of_find_property(of_node, "smsc,disable-energy-detect", &len))
56 enable_energy = 0;
57
58 if (enable_energy) {
59 /* Enable energy detect mode for this SMSC Transceivers */
60 rc = phy_write(phydev, MII_LAN83C185_CTRL_STATUS,
61 rc | MII_LAN83C185_EDPWRDOWN);
62 if (rc < 0)
63 return rc;
64 }
Gwenhael Goavec-Merou21009682014-08-15 15:00:38 +020065
66 return smsc_phy_ack_interrupt(phydev);
67}
68
69static int smsc_phy_reset(struct phy_device *phydev)
70{
trem6ded7cd2012-12-04 08:52:10 +000071 int rc = phy_read(phydev, MII_LAN83C185_SPECIAL_MODES);
72 if (rc < 0)
73 return rc;
74
75 /* If the SMSC PHY is in power down mode, then set it
76 * in all capable mode before using it.
77 */
78 if ((rc & MII_LAN83C185_MODE_MASK) == MII_LAN83C185_MODE_POWERDOWN) {
79 int timeout = 50000;
80
81 /* set "all capable" mode and reset the phy */
82 rc |= MII_LAN83C185_MODE_ALL;
83 phy_write(phydev, MII_LAN83C185_SPECIAL_MODES, rc);
84 phy_write(phydev, MII_BMCR, BMCR_RESET);
85
86 /* wait end of reset (max 500 ms) */
87 do {
88 udelay(10);
89 if (timeout-- == 0)
90 return -1;
91 rc = phy_read(phydev, MII_BMCR);
92 } while (rc & BMCR_RESET);
93 }
Gwenhael Goavec-Merou21009682014-08-15 15:00:38 +020094 return 0;
Herbert Valerio Riedelc9e055a2006-05-07 23:22:53 +020095}
96
Giuseppe Cavallaro698244a2010-01-06 20:35:14 -080097static int lan911x_config_init(struct phy_device *phydev)
98{
99 return smsc_phy_ack_interrupt(phydev);
100}
Herbert Valerio Riedelc9e055a2006-05-07 23:22:53 +0200101
Patrick Trantham4223dbf2012-11-15 09:00:57 +0000102/*
Igor Plyatov776829d2015-08-14 20:11:02 +0300103 * The LAN87xx suffers from rare absence of the ENERGYON-bit when Ethernet cable
104 * plugs in while LAN87xx is in Energy Detect Power-Down mode. This leads to
105 * unstable detection of plugging in Ethernet cable.
106 * This workaround disables Energy Detect Power-Down mode and waiting for
107 * response on link pulses to detect presence of plugged Ethernet cable.
108 * The Energy Detect Power-Down mode is enabled again in the end of procedure to
109 * save approximately 220 mW of power if cable is unplugged.
Patrick Trantham4223dbf2012-11-15 09:00:57 +0000110 */
111static int lan87xx_read_status(struct phy_device *phydev)
112{
113 int err = genphy_read_status(phydev);
Igor Plyatov776829d2015-08-14 20:11:02 +0300114 int i;
Patrick Trantham4223dbf2012-11-15 09:00:57 +0000115
116 if (!phydev->link) {
117 /* Disable EDPD to wake up PHY */
118 int rc = phy_read(phydev, MII_LAN83C185_CTRL_STATUS);
119 if (rc < 0)
120 return rc;
121
122 rc = phy_write(phydev, MII_LAN83C185_CTRL_STATUS,
123 rc & ~MII_LAN83C185_EDPWRDOWN);
124 if (rc < 0)
125 return rc;
126
Igor Plyatov776829d2015-08-14 20:11:02 +0300127 /* Wait max 640 ms to detect energy */
128 for (i = 0; i < 64; i++) {
129 /* Sleep to allow link test pulses to be sent */
130 msleep(10);
131 rc = phy_read(phydev, MII_LAN83C185_CTRL_STATUS);
132 if (rc < 0)
133 return rc;
134 if (rc & MII_LAN83C185_ENERGYON)
135 break;
kbuild test robotff94c742015-08-18 06:31:42 +0800136 }
Patrick Trantham4223dbf2012-11-15 09:00:57 +0000137
138 /* Re-enable EDPD */
139 rc = phy_read(phydev, MII_LAN83C185_CTRL_STATUS);
140 if (rc < 0)
141 return rc;
142
143 rc = phy_write(phydev, MII_LAN83C185_CTRL_STATUS,
144 rc | MII_LAN83C185_EDPWRDOWN);
145 if (rc < 0)
146 return rc;
147 }
148
149 return err;
150}
151
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000152static struct phy_driver smsc_phy_driver[] = {
153{
Herbert Valerio Riedelc9e055a2006-05-07 23:22:53 +0200154 .phy_id = 0x0007c0a0, /* OUI=0x00800f, Model#=0x0a */
155 .phy_id_mask = 0xfffffff0,
156 .name = "SMSC LAN83C185",
157
158 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause
159 | SUPPORTED_Asym_Pause),
160 .flags = PHY_HAS_INTERRUPT | PHY_HAS_MAGICANEG,
161
162 /* basic functions */
163 .config_aneg = genphy_config_aneg,
164 .read_status = genphy_read_status,
Steve Glendinning48c41b92008-04-28 18:36:46 +0100165 .config_init = smsc_phy_config_init,
Gwenhael Goavec-Merou21009682014-08-15 15:00:38 +0200166 .soft_reset = smsc_phy_reset,
Herbert Valerio Riedelc9e055a2006-05-07 23:22:53 +0200167
168 /* IRQ related */
Steve Glendinning48c41b92008-04-28 18:36:46 +0100169 .ack_interrupt = smsc_phy_ack_interrupt,
170 .config_intr = smsc_phy_config_intr,
Herbert Valerio Riedelc9e055a2006-05-07 23:22:53 +0200171
Steve Glendinningc64d2a92009-01-22 14:07:43 -0800172 .suspend = genphy_suspend,
173 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000174}, {
Steve Glendinning4d9b1a02008-04-28 18:37:29 +0100175 .phy_id = 0x0007c0b0, /* OUI=0x00800f, Model#=0x0b */
176 .phy_id_mask = 0xfffffff0,
177 .name = "SMSC LAN8187",
178
179 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause
180 | SUPPORTED_Asym_Pause),
181 .flags = PHY_HAS_INTERRUPT | PHY_HAS_MAGICANEG,
182
183 /* basic functions */
184 .config_aneg = genphy_config_aneg,
185 .read_status = genphy_read_status,
186 .config_init = smsc_phy_config_init,
Gwenhael Goavec-Merou21009682014-08-15 15:00:38 +0200187 .soft_reset = smsc_phy_reset,
Steve Glendinning4d9b1a02008-04-28 18:37:29 +0100188
189 /* IRQ related */
190 .ack_interrupt = smsc_phy_ack_interrupt,
191 .config_intr = smsc_phy_config_intr,
192
Steve Glendinningc64d2a92009-01-22 14:07:43 -0800193 .suspend = genphy_suspend,
194 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000195}, {
Steve Glendinning4d9b1a02008-04-28 18:37:29 +0100196 .phy_id = 0x0007c0c0, /* OUI=0x00800f, Model#=0x0c */
197 .phy_id_mask = 0xfffffff0,
198 .name = "SMSC LAN8700",
199
200 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause
201 | SUPPORTED_Asym_Pause),
202 .flags = PHY_HAS_INTERRUPT | PHY_HAS_MAGICANEG,
203
204 /* basic functions */
205 .config_aneg = genphy_config_aneg,
Igor Plyatov776829d2015-08-14 20:11:02 +0300206 .read_status = lan87xx_read_status,
Steve Glendinning4d9b1a02008-04-28 18:37:29 +0100207 .config_init = smsc_phy_config_init,
Gwenhael Goavec-Merou21009682014-08-15 15:00:38 +0200208 .soft_reset = smsc_phy_reset,
Steve Glendinning4d9b1a02008-04-28 18:37:29 +0100209
210 /* IRQ related */
211 .ack_interrupt = smsc_phy_ack_interrupt,
212 .config_intr = smsc_phy_config_intr,
213
Steve Glendinningc64d2a92009-01-22 14:07:43 -0800214 .suspend = genphy_suspend,
215 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000216}, {
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000217 .phy_id = 0x0007c0d0, /* OUI=0x00800f, Model#=0x0d */
218 .phy_id_mask = 0xfffffff0,
219 .name = "SMSC LAN911x Internal PHY",
220
221 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause
222 | SUPPORTED_Asym_Pause),
223 .flags = PHY_HAS_INTERRUPT | PHY_HAS_MAGICANEG,
224
225 /* basic functions */
226 .config_aneg = genphy_config_aneg,
227 .read_status = genphy_read_status,
Giuseppe Cavallaro698244a2010-01-06 20:35:14 -0800228 .config_init = lan911x_config_init,
Steve Glendinningfd9abb32008-11-05 00:35:37 +0000229
230 /* IRQ related */
231 .ack_interrupt = smsc_phy_ack_interrupt,
232 .config_intr = smsc_phy_config_intr,
233
Steve Glendinningc64d2a92009-01-22 14:07:43 -0800234 .suspend = genphy_suspend,
235 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000236}, {
Steve Glendinninge072b632009-03-23 15:17:31 -0700237 .phy_id = 0x0007c0f0, /* OUI=0x00800f, Model#=0x0f */
238 .phy_id_mask = 0xfffffff0,
239 .name = "SMSC LAN8710/LAN8720",
240
241 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause
242 | SUPPORTED_Asym_Pause),
243 .flags = PHY_HAS_INTERRUPT | PHY_HAS_MAGICANEG,
244
245 /* basic functions */
246 .config_aneg = genphy_config_aneg,
Patrick Trantham4223dbf2012-11-15 09:00:57 +0000247 .read_status = lan87xx_read_status,
Patrick Trantham4257d582012-12-06 15:16:02 +0000248 .config_init = smsc_phy_config_init,
Gwenhael Goavec-Merou21009682014-08-15 15:00:38 +0200249 .soft_reset = smsc_phy_reset,
Steve Glendinninge072b632009-03-23 15:17:31 -0700250
251 /* IRQ related */
252 .ack_interrupt = smsc_phy_ack_interrupt,
253 .config_intr = smsc_phy_config_intr,
254
255 .suspend = genphy_suspend,
256 .resume = genphy_resume,
Joshua Henderson26706d42016-01-09 04:54:21 -0700257}, {
258 .phy_id = 0x0007c110,
259 .phy_id_mask = 0xfffffff0,
260 .name = "SMSC LAN8740",
261
262 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause
263 | SUPPORTED_Asym_Pause),
264 .flags = PHY_HAS_INTERRUPT | PHY_HAS_MAGICANEG,
265
266 /* basic functions */
267 .config_aneg = genphy_config_aneg,
268 .read_status = lan87xx_read_status,
269 .config_init = smsc_phy_config_init,
270 .soft_reset = smsc_phy_reset,
271
272 /* IRQ related */
273 .ack_interrupt = smsc_phy_ack_interrupt,
274 .config_intr = smsc_phy_config_intr,
275
276 .suspend = genphy_suspend,
277 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000278} };
Steve Glendinninge072b632009-03-23 15:17:31 -0700279
Johan Hovold50fd7152014-11-11 19:45:59 +0100280module_phy_driver(smsc_phy_driver);
Herbert Valerio Riedelc9e055a2006-05-07 23:22:53 +0200281
282MODULE_DESCRIPTION("SMSC PHY driver");
283MODULE_AUTHOR("Herbert Valerio Riedel");
284MODULE_LICENSE("GPL");
285
Uwe Kleine-Königcf93c942010-10-03 23:43:32 +0000286static struct mdio_device_id __maybe_unused smsc_tbl[] = {
David Woodhouse4e4f10f2010-04-02 01:05:56 +0000287 { 0x0007c0a0, 0xfffffff0 },
288 { 0x0007c0b0, 0xfffffff0 },
289 { 0x0007c0c0, 0xfffffff0 },
290 { 0x0007c0d0, 0xfffffff0 },
291 { 0x0007c0f0, 0xfffffff0 },
Joshua Henderson26706d42016-01-09 04:54:21 -0700292 { 0x0007c110, 0xfffffff0 },
David Woodhouse4e4f10f2010-04-02 01:05:56 +0000293 { }
294};
295
296MODULE_DEVICE_TABLE(mdio, smsc_tbl);