2 * drivers/net/phy/smsc.c
6 * Author: Herbert Valerio Riedel
8 * Copyright (c) 2006 Herbert Valerio Riedel <hvr@gnu.org>
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.
15 * Support added for SMSC LAN8187 and LAN8700 by steve.glendinning@shawell.net
19 #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>
25 #include <linux/smscphy.h>
27 static int smsc_phy_config_intr(struct phy_device
*phydev
)
29 int rc
= phy_write (phydev
, MII_LAN83C185_IM
,
30 ((PHY_INTERRUPT_ENABLED
== phydev
->interrupts
)
31 ? MII_LAN83C185_ISF_INT_PHYLIB_EVENTS
34 return rc
< 0 ? rc
: 0;
37 static int smsc_phy_ack_interrupt(struct phy_device
*phydev
)
39 int rc
= phy_read (phydev
, MII_LAN83C185_ISF
);
41 return rc
< 0 ? rc
: 0;
44 static int smsc_phy_config_init(struct phy_device
*phydev
)
46 int __maybe_unused len
;
47 struct device
*dev __maybe_unused
= &phydev
->dev
;
48 struct device_node
*of_node __maybe_unused
= dev
->of_node
;
49 int rc
= phy_read(phydev
, MII_LAN83C185_CTRL_STATUS
);
50 int enable_energy
= 1;
55 if (of_find_property(of_node
, "smsc,disable-energy-detect", &len
))
59 /* Enable energy detect mode for this SMSC Transceivers */
60 rc
= phy_write(phydev
, MII_LAN83C185_CTRL_STATUS
,
61 rc
| MII_LAN83C185_EDPWRDOWN
);
66 return smsc_phy_ack_interrupt(phydev
);
69 static int smsc_phy_reset(struct phy_device
*phydev
)
71 int rc
= phy_read(phydev
, MII_LAN83C185_SPECIAL_MODES
);
75 /* If the SMSC PHY is in power down mode, then set it
76 * in all capable mode before using it.
78 if ((rc
& MII_LAN83C185_MODE_MASK
) == MII_LAN83C185_MODE_POWERDOWN
) {
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
);
86 /* wait end of reset (max 500 ms) */
91 rc
= phy_read(phydev
, MII_BMCR
);
92 } while (rc
& BMCR_RESET
);
97 static int lan911x_config_init(struct phy_device
*phydev
)
99 return smsc_phy_ack_interrupt(phydev
);
103 * 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.
111 static int lan87xx_read_status(struct phy_device
*phydev
)
113 int err
= genphy_read_status(phydev
);
117 /* Disable EDPD to wake up PHY */
118 int rc
= phy_read(phydev
, MII_LAN83C185_CTRL_STATUS
);
122 rc
= phy_write(phydev
, MII_LAN83C185_CTRL_STATUS
,
123 rc
& ~MII_LAN83C185_EDPWRDOWN
);
127 /* Wait max 640 ms to detect energy */
128 for (i
= 0; i
< 64; i
++) {
129 /* Sleep to allow link test pulses to be sent */
131 rc
= phy_read(phydev
, MII_LAN83C185_CTRL_STATUS
);
134 if (rc
& MII_LAN83C185_ENERGYON
)
139 rc
= phy_read(phydev
, MII_LAN83C185_CTRL_STATUS
);
143 rc
= phy_write(phydev
, MII_LAN83C185_CTRL_STATUS
,
144 rc
| MII_LAN83C185_EDPWRDOWN
);
152 static struct phy_driver smsc_phy_driver
[] = {
154 .phy_id
= 0x0007c0a0, /* OUI=0x00800f, Model#=0x0a */
155 .phy_id_mask
= 0xfffffff0,
156 .name
= "SMSC LAN83C185",
158 .features
= (PHY_BASIC_FEATURES
| SUPPORTED_Pause
159 | SUPPORTED_Asym_Pause
),
160 .flags
= PHY_HAS_INTERRUPT
| PHY_HAS_MAGICANEG
,
162 /* basic functions */
163 .config_aneg
= genphy_config_aneg
,
164 .read_status
= genphy_read_status
,
165 .config_init
= smsc_phy_config_init
,
166 .soft_reset
= smsc_phy_reset
,
169 .ack_interrupt
= smsc_phy_ack_interrupt
,
170 .config_intr
= smsc_phy_config_intr
,
172 .suspend
= genphy_suspend
,
173 .resume
= genphy_resume
,
175 .driver
= { .owner
= THIS_MODULE
, }
177 .phy_id
= 0x0007c0b0, /* OUI=0x00800f, Model#=0x0b */
178 .phy_id_mask
= 0xfffffff0,
179 .name
= "SMSC LAN8187",
181 .features
= (PHY_BASIC_FEATURES
| SUPPORTED_Pause
182 | SUPPORTED_Asym_Pause
),
183 .flags
= PHY_HAS_INTERRUPT
| PHY_HAS_MAGICANEG
,
185 /* basic functions */
186 .config_aneg
= genphy_config_aneg
,
187 .read_status
= genphy_read_status
,
188 .config_init
= smsc_phy_config_init
,
189 .soft_reset
= smsc_phy_reset
,
192 .ack_interrupt
= smsc_phy_ack_interrupt
,
193 .config_intr
= smsc_phy_config_intr
,
195 .suspend
= genphy_suspend
,
196 .resume
= genphy_resume
,
198 .driver
= { .owner
= THIS_MODULE
, }
200 .phy_id
= 0x0007c0c0, /* OUI=0x00800f, Model#=0x0c */
201 .phy_id_mask
= 0xfffffff0,
202 .name
= "SMSC LAN8700",
204 .features
= (PHY_BASIC_FEATURES
| SUPPORTED_Pause
205 | SUPPORTED_Asym_Pause
),
206 .flags
= PHY_HAS_INTERRUPT
| PHY_HAS_MAGICANEG
,
208 /* basic functions */
209 .config_aneg
= genphy_config_aneg
,
210 .read_status
= lan87xx_read_status
,
211 .config_init
= smsc_phy_config_init
,
212 .soft_reset
= smsc_phy_reset
,
215 .ack_interrupt
= smsc_phy_ack_interrupt
,
216 .config_intr
= smsc_phy_config_intr
,
218 .suspend
= genphy_suspend
,
219 .resume
= genphy_resume
,
221 .driver
= { .owner
= THIS_MODULE
, }
223 .phy_id
= 0x0007c0d0, /* OUI=0x00800f, Model#=0x0d */
224 .phy_id_mask
= 0xfffffff0,
225 .name
= "SMSC LAN911x Internal PHY",
227 .features
= (PHY_BASIC_FEATURES
| SUPPORTED_Pause
228 | SUPPORTED_Asym_Pause
),
229 .flags
= PHY_HAS_INTERRUPT
| PHY_HAS_MAGICANEG
,
231 /* basic functions */
232 .config_aneg
= genphy_config_aneg
,
233 .read_status
= genphy_read_status
,
234 .config_init
= lan911x_config_init
,
237 .ack_interrupt
= smsc_phy_ack_interrupt
,
238 .config_intr
= smsc_phy_config_intr
,
240 .suspend
= genphy_suspend
,
241 .resume
= genphy_resume
,
243 .driver
= { .owner
= THIS_MODULE
, }
245 .phy_id
= 0x0007c0f0, /* OUI=0x00800f, Model#=0x0f */
246 .phy_id_mask
= 0xfffffff0,
247 .name
= "SMSC LAN8710/LAN8720",
249 .features
= (PHY_BASIC_FEATURES
| SUPPORTED_Pause
250 | SUPPORTED_Asym_Pause
),
251 .flags
= PHY_HAS_INTERRUPT
| PHY_HAS_MAGICANEG
,
253 /* basic functions */
254 .config_aneg
= genphy_config_aneg
,
255 .read_status
= lan87xx_read_status
,
256 .config_init
= smsc_phy_config_init
,
257 .soft_reset
= smsc_phy_reset
,
260 .ack_interrupt
= smsc_phy_ack_interrupt
,
261 .config_intr
= smsc_phy_config_intr
,
263 .suspend
= genphy_suspend
,
264 .resume
= genphy_resume
,
266 .driver
= { .owner
= THIS_MODULE
, }
269 module_phy_driver(smsc_phy_driver
);
271 MODULE_DESCRIPTION("SMSC PHY driver");
272 MODULE_AUTHOR("Herbert Valerio Riedel");
273 MODULE_LICENSE("GPL");
275 static struct mdio_device_id __maybe_unused smsc_tbl
[] = {
276 { 0x0007c0a0, 0xfffffff0 },
277 { 0x0007c0b0, 0xfffffff0 },
278 { 0x0007c0c0, 0xfffffff0 },
279 { 0x0007c0d0, 0xfffffff0 },
280 { 0x0007c0f0, 0xfffffff0 },
284 MODULE_DEVICE_TABLE(mdio
, smsc_tbl
);