Herbert Valerio Riedel | c9e055a | 2006-05-07 23:22:53 +0200 | [diff] [blame] | 1 | /* |
| 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 Glendinning | 90b24cf | 2012-04-16 12:13:29 +0100 | [diff] [blame] | 15 | * Support added for SMSC LAN8187 and LAN8700 by steve.glendinning@shawell.net |
Steve Glendinning | 4d9b1a0 | 2008-04-28 18:37:29 +0100 | [diff] [blame] | 16 | * |
Herbert Valerio Riedel | c9e055a | 2006-05-07 23:22:53 +0200 | [diff] [blame] | 17 | */ |
| 18 | |
Herbert Valerio Riedel | c9e055a | 2006-05-07 23:22:53 +0200 | [diff] [blame] | 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> |
Javier Martinez Canillas | 43c6759 | 2012-01-03 20:23:18 -0500 | [diff] [blame] | 25 | #include <linux/smscphy.h> |
Herbert Valerio Riedel | c9e055a | 2006-05-07 23:22:53 +0200 | [diff] [blame] | 26 | |
Steve Glendinning | 48c41b9 | 2008-04-28 18:36:46 +0100 | [diff] [blame] | 27 | static int smsc_phy_config_intr(struct phy_device *phydev) |
Herbert Valerio Riedel | c9e055a | 2006-05-07 23:22:53 +0200 | [diff] [blame] | 28 | { |
| 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 Glendinning | 48c41b9 | 2008-04-28 18:36:46 +0100 | [diff] [blame] | 37 | static int smsc_phy_ack_interrupt(struct phy_device *phydev) |
Herbert Valerio Riedel | c9e055a | 2006-05-07 23:22:53 +0200 | [diff] [blame] | 38 | { |
| 39 | int rc = phy_read (phydev, MII_LAN83C185_ISF); |
| 40 | |
| 41 | return rc < 0 ? rc : 0; |
| 42 | } |
| 43 | |
Steve Glendinning | 48c41b9 | 2008-04-28 18:36:46 +0100 | [diff] [blame] | 44 | static int smsc_phy_config_init(struct phy_device *phydev) |
Herbert Valerio Riedel | c9e055a | 2006-05-07 23:22:53 +0200 | [diff] [blame] | 45 | { |
Gwenhael Goavec-Merou | 2100968 | 2014-08-15 15:00:38 +0200 | [diff] [blame] | 46 | int rc = phy_read(phydev, MII_LAN83C185_CTRL_STATUS); |
| 47 | |
| 48 | if (rc < 0) |
| 49 | return rc; |
| 50 | |
| 51 | /* Enable energy detect mode for this SMSC Transceivers */ |
| 52 | rc = phy_write(phydev, MII_LAN83C185_CTRL_STATUS, |
| 53 | rc | MII_LAN83C185_EDPWRDOWN); |
| 54 | if (rc < 0) |
| 55 | return rc; |
| 56 | |
| 57 | return smsc_phy_ack_interrupt(phydev); |
| 58 | } |
| 59 | |
| 60 | static int smsc_phy_reset(struct phy_device *phydev) |
| 61 | { |
trem | 6ded7cd | 2012-12-04 08:52:10 +0000 | [diff] [blame] | 62 | int rc = phy_read(phydev, MII_LAN83C185_SPECIAL_MODES); |
| 63 | if (rc < 0) |
| 64 | return rc; |
| 65 | |
| 66 | /* If the SMSC PHY is in power down mode, then set it |
| 67 | * in all capable mode before using it. |
| 68 | */ |
| 69 | if ((rc & MII_LAN83C185_MODE_MASK) == MII_LAN83C185_MODE_POWERDOWN) { |
| 70 | int timeout = 50000; |
| 71 | |
| 72 | /* set "all capable" mode and reset the phy */ |
| 73 | rc |= MII_LAN83C185_MODE_ALL; |
| 74 | phy_write(phydev, MII_LAN83C185_SPECIAL_MODES, rc); |
| 75 | phy_write(phydev, MII_BMCR, BMCR_RESET); |
| 76 | |
| 77 | /* wait end of reset (max 500 ms) */ |
| 78 | do { |
| 79 | udelay(10); |
| 80 | if (timeout-- == 0) |
| 81 | return -1; |
| 82 | rc = phy_read(phydev, MII_BMCR); |
| 83 | } while (rc & BMCR_RESET); |
| 84 | } |
Gwenhael Goavec-Merou | 2100968 | 2014-08-15 15:00:38 +0200 | [diff] [blame] | 85 | return 0; |
Herbert Valerio Riedel | c9e055a | 2006-05-07 23:22:53 +0200 | [diff] [blame] | 86 | } |
| 87 | |
Giuseppe Cavallaro | 698244a | 2010-01-06 20:35:14 -0800 | [diff] [blame] | 88 | static int lan911x_config_init(struct phy_device *phydev) |
| 89 | { |
| 90 | return smsc_phy_ack_interrupt(phydev); |
| 91 | } |
Herbert Valerio Riedel | c9e055a | 2006-05-07 23:22:53 +0200 | [diff] [blame] | 92 | |
Patrick Trantham | 4223dbf | 2012-11-15 09:00:57 +0000 | [diff] [blame] | 93 | /* |
Igor Plyatov | 776829d | 2015-08-14 20:11:02 +0300 | [diff] [blame] | 94 | * The LAN87xx suffers from rare absence of the ENERGYON-bit when Ethernet cable |
| 95 | * plugs in while LAN87xx is in Energy Detect Power-Down mode. This leads to |
| 96 | * unstable detection of plugging in Ethernet cable. |
| 97 | * This workaround disables Energy Detect Power-Down mode and waiting for |
| 98 | * response on link pulses to detect presence of plugged Ethernet cable. |
| 99 | * The Energy Detect Power-Down mode is enabled again in the end of procedure to |
| 100 | * save approximately 220 mW of power if cable is unplugged. |
Patrick Trantham | 4223dbf | 2012-11-15 09:00:57 +0000 | [diff] [blame] | 101 | */ |
| 102 | static int lan87xx_read_status(struct phy_device *phydev) |
| 103 | { |
| 104 | int err = genphy_read_status(phydev); |
Igor Plyatov | 776829d | 2015-08-14 20:11:02 +0300 | [diff] [blame] | 105 | int i; |
Patrick Trantham | 4223dbf | 2012-11-15 09:00:57 +0000 | [diff] [blame] | 106 | |
| 107 | if (!phydev->link) { |
| 108 | /* Disable EDPD to wake up PHY */ |
| 109 | int rc = phy_read(phydev, MII_LAN83C185_CTRL_STATUS); |
| 110 | if (rc < 0) |
| 111 | return rc; |
| 112 | |
| 113 | rc = phy_write(phydev, MII_LAN83C185_CTRL_STATUS, |
| 114 | rc & ~MII_LAN83C185_EDPWRDOWN); |
| 115 | if (rc < 0) |
| 116 | return rc; |
| 117 | |
Igor Plyatov | 776829d | 2015-08-14 20:11:02 +0300 | [diff] [blame] | 118 | /* Wait max 640 ms to detect energy */ |
| 119 | for (i = 0; i < 64; i++) { |
| 120 | /* Sleep to allow link test pulses to be sent */ |
| 121 | msleep(10); |
| 122 | rc = phy_read(phydev, MII_LAN83C185_CTRL_STATUS); |
| 123 | if (rc < 0) |
| 124 | return rc; |
| 125 | if (rc & MII_LAN83C185_ENERGYON) |
| 126 | break; |
kbuild test robot | ff94c74 | 2015-08-18 06:31:42 +0800 | [diff] [blame^] | 127 | } |
Patrick Trantham | 4223dbf | 2012-11-15 09:00:57 +0000 | [diff] [blame] | 128 | |
| 129 | /* Re-enable EDPD */ |
| 130 | rc = phy_read(phydev, MII_LAN83C185_CTRL_STATUS); |
| 131 | if (rc < 0) |
| 132 | return rc; |
| 133 | |
| 134 | rc = phy_write(phydev, MII_LAN83C185_CTRL_STATUS, |
| 135 | rc | MII_LAN83C185_EDPWRDOWN); |
| 136 | if (rc < 0) |
| 137 | return rc; |
| 138 | } |
| 139 | |
| 140 | return err; |
| 141 | } |
| 142 | |
Christian Hohnstaedt | d5bf907 | 2012-07-04 05:44:34 +0000 | [diff] [blame] | 143 | static struct phy_driver smsc_phy_driver[] = { |
| 144 | { |
Herbert Valerio Riedel | c9e055a | 2006-05-07 23:22:53 +0200 | [diff] [blame] | 145 | .phy_id = 0x0007c0a0, /* OUI=0x00800f, Model#=0x0a */ |
| 146 | .phy_id_mask = 0xfffffff0, |
| 147 | .name = "SMSC LAN83C185", |
| 148 | |
| 149 | .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause |
| 150 | | SUPPORTED_Asym_Pause), |
| 151 | .flags = PHY_HAS_INTERRUPT | PHY_HAS_MAGICANEG, |
| 152 | |
| 153 | /* basic functions */ |
| 154 | .config_aneg = genphy_config_aneg, |
| 155 | .read_status = genphy_read_status, |
Steve Glendinning | 48c41b9 | 2008-04-28 18:36:46 +0100 | [diff] [blame] | 156 | .config_init = smsc_phy_config_init, |
Gwenhael Goavec-Merou | 2100968 | 2014-08-15 15:00:38 +0200 | [diff] [blame] | 157 | .soft_reset = smsc_phy_reset, |
Herbert Valerio Riedel | c9e055a | 2006-05-07 23:22:53 +0200 | [diff] [blame] | 158 | |
| 159 | /* IRQ related */ |
Steve Glendinning | 48c41b9 | 2008-04-28 18:36:46 +0100 | [diff] [blame] | 160 | .ack_interrupt = smsc_phy_ack_interrupt, |
| 161 | .config_intr = smsc_phy_config_intr, |
Herbert Valerio Riedel | c9e055a | 2006-05-07 23:22:53 +0200 | [diff] [blame] | 162 | |
Steve Glendinning | c64d2a9 | 2009-01-22 14:07:43 -0800 | [diff] [blame] | 163 | .suspend = genphy_suspend, |
| 164 | .resume = genphy_resume, |
| 165 | |
Herbert Valerio Riedel | c9e055a | 2006-05-07 23:22:53 +0200 | [diff] [blame] | 166 | .driver = { .owner = THIS_MODULE, } |
Christian Hohnstaedt | d5bf907 | 2012-07-04 05:44:34 +0000 | [diff] [blame] | 167 | }, { |
Steve Glendinning | 4d9b1a0 | 2008-04-28 18:37:29 +0100 | [diff] [blame] | 168 | .phy_id = 0x0007c0b0, /* OUI=0x00800f, Model#=0x0b */ |
| 169 | .phy_id_mask = 0xfffffff0, |
| 170 | .name = "SMSC LAN8187", |
| 171 | |
| 172 | .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause |
| 173 | | SUPPORTED_Asym_Pause), |
| 174 | .flags = PHY_HAS_INTERRUPT | PHY_HAS_MAGICANEG, |
| 175 | |
| 176 | /* basic functions */ |
| 177 | .config_aneg = genphy_config_aneg, |
| 178 | .read_status = genphy_read_status, |
| 179 | .config_init = smsc_phy_config_init, |
Gwenhael Goavec-Merou | 2100968 | 2014-08-15 15:00:38 +0200 | [diff] [blame] | 180 | .soft_reset = smsc_phy_reset, |
Steve Glendinning | 4d9b1a0 | 2008-04-28 18:37:29 +0100 | [diff] [blame] | 181 | |
| 182 | /* IRQ related */ |
| 183 | .ack_interrupt = smsc_phy_ack_interrupt, |
| 184 | .config_intr = smsc_phy_config_intr, |
| 185 | |
Steve Glendinning | c64d2a9 | 2009-01-22 14:07:43 -0800 | [diff] [blame] | 186 | .suspend = genphy_suspend, |
| 187 | .resume = genphy_resume, |
| 188 | |
Steve Glendinning | 4d9b1a0 | 2008-04-28 18:37:29 +0100 | [diff] [blame] | 189 | .driver = { .owner = THIS_MODULE, } |
Christian Hohnstaedt | d5bf907 | 2012-07-04 05:44:34 +0000 | [diff] [blame] | 190 | }, { |
Steve Glendinning | 4d9b1a0 | 2008-04-28 18:37:29 +0100 | [diff] [blame] | 191 | .phy_id = 0x0007c0c0, /* OUI=0x00800f, Model#=0x0c */ |
| 192 | .phy_id_mask = 0xfffffff0, |
| 193 | .name = "SMSC LAN8700", |
| 194 | |
| 195 | .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause |
| 196 | | SUPPORTED_Asym_Pause), |
| 197 | .flags = PHY_HAS_INTERRUPT | PHY_HAS_MAGICANEG, |
| 198 | |
| 199 | /* basic functions */ |
| 200 | .config_aneg = genphy_config_aneg, |
Igor Plyatov | 776829d | 2015-08-14 20:11:02 +0300 | [diff] [blame] | 201 | .read_status = lan87xx_read_status, |
Steve Glendinning | 4d9b1a0 | 2008-04-28 18:37:29 +0100 | [diff] [blame] | 202 | .config_init = smsc_phy_config_init, |
Gwenhael Goavec-Merou | 2100968 | 2014-08-15 15:00:38 +0200 | [diff] [blame] | 203 | .soft_reset = smsc_phy_reset, |
Steve Glendinning | 4d9b1a0 | 2008-04-28 18:37:29 +0100 | [diff] [blame] | 204 | |
| 205 | /* IRQ related */ |
| 206 | .ack_interrupt = smsc_phy_ack_interrupt, |
| 207 | .config_intr = smsc_phy_config_intr, |
| 208 | |
Steve Glendinning | c64d2a9 | 2009-01-22 14:07:43 -0800 | [diff] [blame] | 209 | .suspend = genphy_suspend, |
| 210 | .resume = genphy_resume, |
| 211 | |
Steve Glendinning | 4d9b1a0 | 2008-04-28 18:37:29 +0100 | [diff] [blame] | 212 | .driver = { .owner = THIS_MODULE, } |
Christian Hohnstaedt | d5bf907 | 2012-07-04 05:44:34 +0000 | [diff] [blame] | 213 | }, { |
Steve Glendinning | fd9abb3 | 2008-11-05 00:35:37 +0000 | [diff] [blame] | 214 | .phy_id = 0x0007c0d0, /* OUI=0x00800f, Model#=0x0d */ |
| 215 | .phy_id_mask = 0xfffffff0, |
| 216 | .name = "SMSC LAN911x Internal PHY", |
| 217 | |
| 218 | .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause |
| 219 | | SUPPORTED_Asym_Pause), |
| 220 | .flags = PHY_HAS_INTERRUPT | PHY_HAS_MAGICANEG, |
| 221 | |
| 222 | /* basic functions */ |
| 223 | .config_aneg = genphy_config_aneg, |
| 224 | .read_status = genphy_read_status, |
Giuseppe Cavallaro | 698244a | 2010-01-06 20:35:14 -0800 | [diff] [blame] | 225 | .config_init = lan911x_config_init, |
Steve Glendinning | fd9abb3 | 2008-11-05 00:35:37 +0000 | [diff] [blame] | 226 | |
| 227 | /* IRQ related */ |
| 228 | .ack_interrupt = smsc_phy_ack_interrupt, |
| 229 | .config_intr = smsc_phy_config_intr, |
| 230 | |
Steve Glendinning | c64d2a9 | 2009-01-22 14:07:43 -0800 | [diff] [blame] | 231 | .suspend = genphy_suspend, |
| 232 | .resume = genphy_resume, |
| 233 | |
Steve Glendinning | fd9abb3 | 2008-11-05 00:35:37 +0000 | [diff] [blame] | 234 | .driver = { .owner = THIS_MODULE, } |
Christian Hohnstaedt | d5bf907 | 2012-07-04 05:44:34 +0000 | [diff] [blame] | 235 | }, { |
Steve Glendinning | e072b63 | 2009-03-23 15:17:31 -0700 | [diff] [blame] | 236 | .phy_id = 0x0007c0f0, /* OUI=0x00800f, Model#=0x0f */ |
| 237 | .phy_id_mask = 0xfffffff0, |
| 238 | .name = "SMSC LAN8710/LAN8720", |
| 239 | |
| 240 | .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause |
| 241 | | SUPPORTED_Asym_Pause), |
| 242 | .flags = PHY_HAS_INTERRUPT | PHY_HAS_MAGICANEG, |
| 243 | |
| 244 | /* basic functions */ |
| 245 | .config_aneg = genphy_config_aneg, |
Patrick Trantham | 4223dbf | 2012-11-15 09:00:57 +0000 | [diff] [blame] | 246 | .read_status = lan87xx_read_status, |
Patrick Trantham | 4257d58 | 2012-12-06 15:16:02 +0000 | [diff] [blame] | 247 | .config_init = smsc_phy_config_init, |
Gwenhael Goavec-Merou | 2100968 | 2014-08-15 15:00:38 +0200 | [diff] [blame] | 248 | .soft_reset = smsc_phy_reset, |
Steve Glendinning | e072b63 | 2009-03-23 15:17:31 -0700 | [diff] [blame] | 249 | |
| 250 | /* IRQ related */ |
| 251 | .ack_interrupt = smsc_phy_ack_interrupt, |
| 252 | .config_intr = smsc_phy_config_intr, |
| 253 | |
| 254 | .suspend = genphy_suspend, |
| 255 | .resume = genphy_resume, |
| 256 | |
| 257 | .driver = { .owner = THIS_MODULE, } |
Christian Hohnstaedt | d5bf907 | 2012-07-04 05:44:34 +0000 | [diff] [blame] | 258 | } }; |
Steve Glendinning | e072b63 | 2009-03-23 15:17:31 -0700 | [diff] [blame] | 259 | |
Johan Hovold | 50fd715 | 2014-11-11 19:45:59 +0100 | [diff] [blame] | 260 | module_phy_driver(smsc_phy_driver); |
Herbert Valerio Riedel | c9e055a | 2006-05-07 23:22:53 +0200 | [diff] [blame] | 261 | |
| 262 | MODULE_DESCRIPTION("SMSC PHY driver"); |
| 263 | MODULE_AUTHOR("Herbert Valerio Riedel"); |
| 264 | MODULE_LICENSE("GPL"); |
| 265 | |
Uwe Kleine-König | cf93c94 | 2010-10-03 23:43:32 +0000 | [diff] [blame] | 266 | static struct mdio_device_id __maybe_unused smsc_tbl[] = { |
David Woodhouse | 4e4f10f | 2010-04-02 01:05:56 +0000 | [diff] [blame] | 267 | { 0x0007c0a0, 0xfffffff0 }, |
| 268 | { 0x0007c0b0, 0xfffffff0 }, |
| 269 | { 0x0007c0c0, 0xfffffff0 }, |
| 270 | { 0x0007c0d0, 0xfffffff0 }, |
| 271 | { 0x0007c0f0, 0xfffffff0 }, |
| 272 | { } |
| 273 | }; |
| 274 | |
| 275 | MODULE_DEVICE_TABLE(mdio, smsc_tbl); |