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@smsc.com
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>
26 #define MII_LAN83C185_ISF 29 /* Interrupt Source Flags */
27 #define MII_LAN83C185_IM 30 /* Interrupt Mask */
28 #define MII_LAN83C185_CTRL_STATUS 17 /* Mode/Status Register */
30 #define MII_LAN83C185_ISF_INT1 (1<<1) /* Auto-Negotiation Page Received */
31 #define MII_LAN83C185_ISF_INT2 (1<<2) /* Parallel Detection Fault */
32 #define MII_LAN83C185_ISF_INT3 (1<<3) /* Auto-Negotiation LP Ack */
33 #define MII_LAN83C185_ISF_INT4 (1<<4) /* Link Down */
34 #define MII_LAN83C185_ISF_INT5 (1<<5) /* Remote Fault Detected */
35 #define MII_LAN83C185_ISF_INT6 (1<<6) /* Auto-Negotiation complete */
36 #define MII_LAN83C185_ISF_INT7 (1<<7) /* ENERGYON */
38 #define MII_LAN83C185_ISF_INT_ALL (0x0e)
40 #define MII_LAN83C185_ISF_INT_PHYLIB_EVENTS \
41 (MII_LAN83C185_ISF_INT6 | MII_LAN83C185_ISF_INT4 | \
42 MII_LAN83C185_ISF_INT7)
44 #define MII_LAN83C185_EDPWRDOWN (1 << 13) /* EDPWRDOWN */
46 static int smsc_phy_config_intr(struct phy_device
*phydev
)
48 int rc
= phy_write (phydev
, MII_LAN83C185_IM
,
49 ((PHY_INTERRUPT_ENABLED
== phydev
->interrupts
)
50 ? MII_LAN83C185_ISF_INT_PHYLIB_EVENTS
53 return rc
< 0 ? rc
: 0;
56 static int smsc_phy_ack_interrupt(struct phy_device
*phydev
)
58 int rc
= phy_read (phydev
, MII_LAN83C185_ISF
);
60 return rc
< 0 ? rc
: 0;
63 static int smsc_phy_config_init(struct phy_device
*phydev
)
65 int rc
= phy_read(phydev
, MII_LAN83C185_CTRL_STATUS
);
69 /* Enable energy detect mode for this SMSC Transceivers */
70 rc
= phy_write(phydev
, MII_LAN83C185_CTRL_STATUS
,
71 rc
| MII_LAN83C185_EDPWRDOWN
);
75 return smsc_phy_ack_interrupt (phydev
);
78 static int lan911x_config_init(struct phy_device
*phydev
)
80 return smsc_phy_ack_interrupt(phydev
);
83 static struct phy_driver lan83c185_driver
= {
84 .phy_id
= 0x0007c0a0, /* OUI=0x00800f, Model#=0x0a */
85 .phy_id_mask
= 0xfffffff0,
86 .name
= "SMSC LAN83C185",
88 .features
= (PHY_BASIC_FEATURES
| SUPPORTED_Pause
89 | SUPPORTED_Asym_Pause
),
90 .flags
= PHY_HAS_INTERRUPT
| PHY_HAS_MAGICANEG
,
93 .config_aneg
= genphy_config_aneg
,
94 .read_status
= genphy_read_status
,
95 .config_init
= smsc_phy_config_init
,
98 .ack_interrupt
= smsc_phy_ack_interrupt
,
99 .config_intr
= smsc_phy_config_intr
,
101 .suspend
= genphy_suspend
,
102 .resume
= genphy_resume
,
104 .driver
= { .owner
= THIS_MODULE
, }
107 static struct phy_driver lan8187_driver
= {
108 .phy_id
= 0x0007c0b0, /* OUI=0x00800f, Model#=0x0b */
109 .phy_id_mask
= 0xfffffff0,
110 .name
= "SMSC LAN8187",
112 .features
= (PHY_BASIC_FEATURES
| SUPPORTED_Pause
113 | SUPPORTED_Asym_Pause
),
114 .flags
= PHY_HAS_INTERRUPT
| PHY_HAS_MAGICANEG
,
116 /* basic functions */
117 .config_aneg
= genphy_config_aneg
,
118 .read_status
= genphy_read_status
,
119 .config_init
= smsc_phy_config_init
,
122 .ack_interrupt
= smsc_phy_ack_interrupt
,
123 .config_intr
= smsc_phy_config_intr
,
125 .suspend
= genphy_suspend
,
126 .resume
= genphy_resume
,
128 .driver
= { .owner
= THIS_MODULE
, }
131 static struct phy_driver lan8700_driver
= {
132 .phy_id
= 0x0007c0c0, /* OUI=0x00800f, Model#=0x0c */
133 .phy_id_mask
= 0xfffffff0,
134 .name
= "SMSC LAN8700",
136 .features
= (PHY_BASIC_FEATURES
| SUPPORTED_Pause
137 | SUPPORTED_Asym_Pause
),
138 .flags
= PHY_HAS_INTERRUPT
| PHY_HAS_MAGICANEG
,
140 /* basic functions */
141 .config_aneg
= genphy_config_aneg
,
142 .read_status
= genphy_read_status
,
143 .config_init
= smsc_phy_config_init
,
146 .ack_interrupt
= smsc_phy_ack_interrupt
,
147 .config_intr
= smsc_phy_config_intr
,
149 .suspend
= genphy_suspend
,
150 .resume
= genphy_resume
,
152 .driver
= { .owner
= THIS_MODULE
, }
155 static struct phy_driver lan911x_int_driver
= {
156 .phy_id
= 0x0007c0d0, /* OUI=0x00800f, Model#=0x0d */
157 .phy_id_mask
= 0xfffffff0,
158 .name
= "SMSC LAN911x Internal PHY",
160 .features
= (PHY_BASIC_FEATURES
| SUPPORTED_Pause
161 | SUPPORTED_Asym_Pause
),
162 .flags
= PHY_HAS_INTERRUPT
| PHY_HAS_MAGICANEG
,
164 /* basic functions */
165 .config_aneg
= genphy_config_aneg
,
166 .read_status
= genphy_read_status
,
167 .config_init
= lan911x_config_init
,
170 .ack_interrupt
= smsc_phy_ack_interrupt
,
171 .config_intr
= smsc_phy_config_intr
,
173 .suspend
= genphy_suspend
,
174 .resume
= genphy_resume
,
176 .driver
= { .owner
= THIS_MODULE
, }
179 static struct phy_driver lan8710_driver
= {
180 .phy_id
= 0x0007c0f0, /* OUI=0x00800f, Model#=0x0f */
181 .phy_id_mask
= 0xfffffff0,
182 .name
= "SMSC LAN8710/LAN8720",
184 .features
= (PHY_BASIC_FEATURES
| SUPPORTED_Pause
185 | SUPPORTED_Asym_Pause
),
186 .flags
= PHY_HAS_INTERRUPT
| PHY_HAS_MAGICANEG
,
188 /* basic functions */
189 .config_aneg
= genphy_config_aneg
,
190 .read_status
= genphy_read_status
,
191 .config_init
= smsc_phy_config_init
,
194 .ack_interrupt
= smsc_phy_ack_interrupt
,
195 .config_intr
= smsc_phy_config_intr
,
197 .suspend
= genphy_suspend
,
198 .resume
= genphy_resume
,
200 .driver
= { .owner
= THIS_MODULE
, }
203 static int __init
smsc_init(void)
207 ret
= phy_driver_register (&lan83c185_driver
);
211 ret
= phy_driver_register (&lan8187_driver
);
215 ret
= phy_driver_register (&lan8700_driver
);
219 ret
= phy_driver_register (&lan911x_int_driver
);
223 ret
= phy_driver_register (&lan8710_driver
);
230 phy_driver_unregister (&lan911x_int_driver
);
232 phy_driver_unregister (&lan8700_driver
);
234 phy_driver_unregister (&lan8187_driver
);
236 phy_driver_unregister (&lan83c185_driver
);
241 static void __exit
smsc_exit(void)
243 phy_driver_unregister (&lan8710_driver
);
244 phy_driver_unregister (&lan911x_int_driver
);
245 phy_driver_unregister (&lan8700_driver
);
246 phy_driver_unregister (&lan8187_driver
);
247 phy_driver_unregister (&lan83c185_driver
);
250 MODULE_DESCRIPTION("SMSC PHY driver");
251 MODULE_AUTHOR("Herbert Valerio Riedel");
252 MODULE_LICENSE("GPL");
254 module_init(smsc_init
);
255 module_exit(smsc_exit
);
257 static struct mdio_device_id __maybe_unused smsc_tbl
[] = {
258 { 0x0007c0a0, 0xfffffff0 },
259 { 0x0007c0b0, 0xfffffff0 },
260 { 0x0007c0c0, 0xfffffff0 },
261 { 0x0007c0d0, 0xfffffff0 },
262 { 0x0007c0f0, 0xfffffff0 },
266 MODULE_DEVICE_TABLE(mdio
, smsc_tbl
);