Loading...
1/*
2 * Driver for Vitesse PHYs
3 *
4 * Author: Kriston Carson
5 *
6 * Copyright (c) 2005, 2009, 2011 Freescale Semiconductor, Inc.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 *
13 */
14
15#include <linux/kernel.h>
16#include <linux/module.h>
17#include <linux/mii.h>
18#include <linux/ethtool.h>
19#include <linux/phy.h>
20
21/* Vitesse Extended Page Magic Register(s) */
22#define MII_VSC82X4_EXT_PAGE_16E 0x10
23#define MII_VSC82X4_EXT_PAGE_17E 0x11
24#define MII_VSC82X4_EXT_PAGE_18E 0x12
25
26/* Vitesse Extended Control Register 1 */
27#define MII_VSC8244_EXT_CON1 0x17
28#define MII_VSC8244_EXTCON1_INIT 0x0000
29#define MII_VSC8244_EXTCON1_TX_SKEW_MASK 0x0c00
30#define MII_VSC8244_EXTCON1_RX_SKEW_MASK 0x0300
31#define MII_VSC8244_EXTCON1_TX_SKEW 0x0800
32#define MII_VSC8244_EXTCON1_RX_SKEW 0x0200
33
34/* Vitesse Interrupt Mask Register */
35#define MII_VSC8244_IMASK 0x19
36#define MII_VSC8244_IMASK_IEN 0x8000
37#define MII_VSC8244_IMASK_SPEED 0x4000
38#define MII_VSC8244_IMASK_LINK 0x2000
39#define MII_VSC8244_IMASK_DUPLEX 0x1000
40#define MII_VSC8244_IMASK_MASK 0xf000
41
42#define MII_VSC8221_IMASK_MASK 0xa000
43
44/* Vitesse Interrupt Status Register */
45#define MII_VSC8244_ISTAT 0x1a
46#define MII_VSC8244_ISTAT_STATUS 0x8000
47#define MII_VSC8244_ISTAT_SPEED 0x4000
48#define MII_VSC8244_ISTAT_LINK 0x2000
49#define MII_VSC8244_ISTAT_DUPLEX 0x1000
50
51/* Vitesse Auxiliary Control/Status Register */
52#define MII_VSC8244_AUX_CONSTAT 0x1c
53#define MII_VSC8244_AUXCONSTAT_INIT 0x0000
54#define MII_VSC8244_AUXCONSTAT_DUPLEX 0x0020
55#define MII_VSC8244_AUXCONSTAT_SPEED 0x0018
56#define MII_VSC8244_AUXCONSTAT_GBIT 0x0010
57#define MII_VSC8244_AUXCONSTAT_100 0x0008
58
59#define MII_VSC8221_AUXCONSTAT_INIT 0x0004 /* need to set this bit? */
60#define MII_VSC8221_AUXCONSTAT_RESERVED 0x0004
61
62/* Vitesse Extended Page Access Register */
63#define MII_VSC82X4_EXT_PAGE_ACCESS 0x1f
64
65#define PHY_ID_VSC8234 0x000fc620
66#define PHY_ID_VSC8244 0x000fc6c0
67#define PHY_ID_VSC8514 0x00070670
68#define PHY_ID_VSC8574 0x000704a0
69#define PHY_ID_VSC8662 0x00070660
70#define PHY_ID_VSC8221 0x000fc550
71#define PHY_ID_VSC8211 0x000fc4b0
72
73MODULE_DESCRIPTION("Vitesse PHY driver");
74MODULE_AUTHOR("Kriston Carson");
75MODULE_LICENSE("GPL");
76
77static int vsc824x_add_skew(struct phy_device *phydev)
78{
79 int err;
80 int extcon;
81
82 extcon = phy_read(phydev, MII_VSC8244_EXT_CON1);
83
84 if (extcon < 0)
85 return extcon;
86
87 extcon &= ~(MII_VSC8244_EXTCON1_TX_SKEW_MASK |
88 MII_VSC8244_EXTCON1_RX_SKEW_MASK);
89
90 extcon |= (MII_VSC8244_EXTCON1_TX_SKEW |
91 MII_VSC8244_EXTCON1_RX_SKEW);
92
93 err = phy_write(phydev, MII_VSC8244_EXT_CON1, extcon);
94
95 return err;
96}
97
98static int vsc824x_config_init(struct phy_device *phydev)
99{
100 int err;
101
102 err = phy_write(phydev, MII_VSC8244_AUX_CONSTAT,
103 MII_VSC8244_AUXCONSTAT_INIT);
104 if (err < 0)
105 return err;
106
107 if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID)
108 err = vsc824x_add_skew(phydev);
109
110 return err;
111}
112
113static int vsc824x_ack_interrupt(struct phy_device *phydev)
114{
115 int err = 0;
116
117 /* Don't bother to ACK the interrupts if interrupts
118 * are disabled. The 824x cannot clear the interrupts
119 * if they are disabled.
120 */
121 if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
122 err = phy_read(phydev, MII_VSC8244_ISTAT);
123
124 return (err < 0) ? err : 0;
125}
126
127static int vsc82xx_config_intr(struct phy_device *phydev)
128{
129 int err;
130
131 if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
132 err = phy_write(phydev, MII_VSC8244_IMASK,
133 (phydev->drv->phy_id == PHY_ID_VSC8234 ||
134 phydev->drv->phy_id == PHY_ID_VSC8244 ||
135 phydev->drv->phy_id == PHY_ID_VSC8514 ||
136 phydev->drv->phy_id == PHY_ID_VSC8574) ?
137 MII_VSC8244_IMASK_MASK :
138 MII_VSC8221_IMASK_MASK);
139 else {
140 /* The Vitesse PHY cannot clear the interrupt
141 * once it has disabled them, so we clear them first
142 */
143 err = phy_read(phydev, MII_VSC8244_ISTAT);
144
145 if (err < 0)
146 return err;
147
148 err = phy_write(phydev, MII_VSC8244_IMASK, 0);
149 }
150
151 return err;
152}
153
154static int vsc8221_config_init(struct phy_device *phydev)
155{
156 int err;
157
158 err = phy_write(phydev, MII_VSC8244_AUX_CONSTAT,
159 MII_VSC8221_AUXCONSTAT_INIT);
160 return err;
161
162 /* Perhaps we should set EXT_CON1 based on the interface?
163 * Options are 802.3Z SerDes or SGMII
164 */
165}
166
167/* vsc82x4_config_autocross_enable - Enable auto MDI/MDI-X for forced links
168 * @phydev: target phy_device struct
169 *
170 * Enable auto MDI/MDI-X when in 10/100 forced link speeds by writing
171 * special values in the VSC8234/VSC8244 extended reserved registers
172 */
173static int vsc82x4_config_autocross_enable(struct phy_device *phydev)
174{
175 int ret;
176
177 if (phydev->autoneg == AUTONEG_ENABLE || phydev->speed > SPEED_100)
178 return 0;
179
180 /* map extended registers set 0x10 - 0x1e */
181 ret = phy_write(phydev, MII_VSC82X4_EXT_PAGE_ACCESS, 0x52b5);
182 if (ret >= 0)
183 ret = phy_write(phydev, MII_VSC82X4_EXT_PAGE_18E, 0x0012);
184 if (ret >= 0)
185 ret = phy_write(phydev, MII_VSC82X4_EXT_PAGE_17E, 0x2803);
186 if (ret >= 0)
187 ret = phy_write(phydev, MII_VSC82X4_EXT_PAGE_16E, 0x87fa);
188 /* map standard registers set 0x10 - 0x1e */
189 if (ret >= 0)
190 ret = phy_write(phydev, MII_VSC82X4_EXT_PAGE_ACCESS, 0x0000);
191 else
192 phy_write(phydev, MII_VSC82X4_EXT_PAGE_ACCESS, 0x0000);
193
194 return ret;
195}
196
197/* vsc82x4_config_aneg - restart auto-negotiation or write BMCR
198 * @phydev: target phy_device struct
199 *
200 * Description: If auto-negotiation is enabled, we configure the
201 * advertising, and then restart auto-negotiation. If it is not
202 * enabled, then we write the BMCR and also start the auto
203 * MDI/MDI-X feature
204 */
205static int vsc82x4_config_aneg(struct phy_device *phydev)
206{
207 int ret;
208
209 /* Enable auto MDI/MDI-X when in 10/100 forced link speeds by
210 * writing special values in the VSC8234 extended reserved registers
211 */
212 if (phydev->autoneg != AUTONEG_ENABLE && phydev->speed <= SPEED_100) {
213 ret = genphy_setup_forced(phydev);
214
215 if (ret < 0) /* error */
216 return ret;
217
218 return vsc82x4_config_autocross_enable(phydev);
219 }
220
221 return genphy_config_aneg(phydev);
222}
223
224/* Vitesse 82xx */
225static struct phy_driver vsc82xx_driver[] = {
226{
227 .phy_id = PHY_ID_VSC8234,
228 .name = "Vitesse VSC8234",
229 .phy_id_mask = 0x000ffff0,
230 .features = PHY_GBIT_FEATURES,
231 .flags = PHY_HAS_INTERRUPT,
232 .config_init = &vsc824x_config_init,
233 .config_aneg = &vsc82x4_config_aneg,
234 .read_status = &genphy_read_status,
235 .ack_interrupt = &vsc824x_ack_interrupt,
236 .config_intr = &vsc82xx_config_intr,
237 .driver = { .owner = THIS_MODULE,},
238}, {
239 .phy_id = PHY_ID_VSC8244,
240 .name = "Vitesse VSC8244",
241 .phy_id_mask = 0x000fffc0,
242 .features = PHY_GBIT_FEATURES,
243 .flags = PHY_HAS_INTERRUPT,
244 .config_init = &vsc824x_config_init,
245 .config_aneg = &vsc82x4_config_aneg,
246 .read_status = &genphy_read_status,
247 .ack_interrupt = &vsc824x_ack_interrupt,
248 .config_intr = &vsc82xx_config_intr,
249 .driver = { .owner = THIS_MODULE,},
250}, {
251 .phy_id = PHY_ID_VSC8514,
252 .name = "Vitesse VSC8514",
253 .phy_id_mask = 0x000ffff0,
254 .features = PHY_GBIT_FEATURES,
255 .flags = PHY_HAS_INTERRUPT,
256 .config_init = &vsc824x_config_init,
257 .config_aneg = &vsc82x4_config_aneg,
258 .read_status = &genphy_read_status,
259 .ack_interrupt = &vsc824x_ack_interrupt,
260 .config_intr = &vsc82xx_config_intr,
261 .driver = { .owner = THIS_MODULE,},
262}, {
263 .phy_id = PHY_ID_VSC8574,
264 .name = "Vitesse VSC8574",
265 .phy_id_mask = 0x000ffff0,
266 .features = PHY_GBIT_FEATURES,
267 .flags = PHY_HAS_INTERRUPT,
268 .config_init = &vsc824x_config_init,
269 .config_aneg = &vsc82x4_config_aneg,
270 .read_status = &genphy_read_status,
271 .ack_interrupt = &vsc824x_ack_interrupt,
272 .config_intr = &vsc82xx_config_intr,
273 .driver = { .owner = THIS_MODULE,},
274}, {
275 .phy_id = PHY_ID_VSC8662,
276 .name = "Vitesse VSC8662",
277 .phy_id_mask = 0x000ffff0,
278 .features = PHY_GBIT_FEATURES,
279 .flags = PHY_HAS_INTERRUPT,
280 .config_init = &vsc824x_config_init,
281 .config_aneg = &vsc82x4_config_aneg,
282 .read_status = &genphy_read_status,
283 .ack_interrupt = &vsc824x_ack_interrupt,
284 .config_intr = &vsc82xx_config_intr,
285 .driver = { .owner = THIS_MODULE,},
286}, {
287 /* Vitesse 8221 */
288 .phy_id = PHY_ID_VSC8221,
289 .phy_id_mask = 0x000ffff0,
290 .name = "Vitesse VSC8221",
291 .features = PHY_GBIT_FEATURES,
292 .flags = PHY_HAS_INTERRUPT,
293 .config_init = &vsc8221_config_init,
294 .config_aneg = &genphy_config_aneg,
295 .read_status = &genphy_read_status,
296 .ack_interrupt = &vsc824x_ack_interrupt,
297 .config_intr = &vsc82xx_config_intr,
298 .driver = { .owner = THIS_MODULE,},
299}, {
300 /* Vitesse 8211 */
301 .phy_id = PHY_ID_VSC8211,
302 .phy_id_mask = 0x000ffff0,
303 .name = "Vitesse VSC8211",
304 .features = PHY_GBIT_FEATURES,
305 .flags = PHY_HAS_INTERRUPT,
306 .config_init = &vsc8221_config_init,
307 .config_aneg = &genphy_config_aneg,
308 .read_status = &genphy_read_status,
309 .ack_interrupt = &vsc824x_ack_interrupt,
310 .config_intr = &vsc82xx_config_intr,
311 .driver = { .owner = THIS_MODULE,},
312} };
313
314static int __init vsc82xx_init(void)
315{
316 return phy_drivers_register(vsc82xx_driver,
317 ARRAY_SIZE(vsc82xx_driver));
318}
319
320static void __exit vsc82xx_exit(void)
321{
322 return phy_drivers_unregister(vsc82xx_driver,
323 ARRAY_SIZE(vsc82xx_driver));
324}
325
326module_init(vsc82xx_init);
327module_exit(vsc82xx_exit);
328
329static struct mdio_device_id __maybe_unused vitesse_tbl[] = {
330 { PHY_ID_VSC8234, 0x000ffff0 },
331 { PHY_ID_VSC8244, 0x000fffc0 },
332 { PHY_ID_VSC8514, 0x000ffff0 },
333 { PHY_ID_VSC8574, 0x000ffff0 },
334 { PHY_ID_VSC8662, 0x000ffff0 },
335 { PHY_ID_VSC8221, 0x000ffff0 },
336 { PHY_ID_VSC8211, 0x000ffff0 },
337 { }
338};
339
340MODULE_DEVICE_TABLE(mdio, vitesse_tbl);
1/*
2 * Driver for Vitesse PHYs
3 *
4 * Author: Kriston Carson
5 *
6 * Copyright (c) 2005, 2009 Freescale Semiconductor, Inc.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 *
13 */
14
15#include <linux/kernel.h>
16#include <linux/module.h>
17#include <linux/mii.h>
18#include <linux/ethtool.h>
19#include <linux/phy.h>
20
21/* Vitesse Extended Control Register 1 */
22#define MII_VSC8244_EXT_CON1 0x17
23#define MII_VSC8244_EXTCON1_INIT 0x0000
24#define MII_VSC8244_EXTCON1_TX_SKEW_MASK 0x0c00
25#define MII_VSC8244_EXTCON1_RX_SKEW_MASK 0x0300
26#define MII_VSC8244_EXTCON1_TX_SKEW 0x0800
27#define MII_VSC8244_EXTCON1_RX_SKEW 0x0200
28
29/* Vitesse Interrupt Mask Register */
30#define MII_VSC8244_IMASK 0x19
31#define MII_VSC8244_IMASK_IEN 0x8000
32#define MII_VSC8244_IMASK_SPEED 0x4000
33#define MII_VSC8244_IMASK_LINK 0x2000
34#define MII_VSC8244_IMASK_DUPLEX 0x1000
35#define MII_VSC8244_IMASK_MASK 0xf000
36
37#define MII_VSC8221_IMASK_MASK 0xa000
38
39/* Vitesse Interrupt Status Register */
40#define MII_VSC8244_ISTAT 0x1a
41#define MII_VSC8244_ISTAT_STATUS 0x8000
42#define MII_VSC8244_ISTAT_SPEED 0x4000
43#define MII_VSC8244_ISTAT_LINK 0x2000
44#define MII_VSC8244_ISTAT_DUPLEX 0x1000
45
46/* Vitesse Auxiliary Control/Status Register */
47#define MII_VSC8244_AUX_CONSTAT 0x1c
48#define MII_VSC8244_AUXCONSTAT_INIT 0x0000
49#define MII_VSC8244_AUXCONSTAT_DUPLEX 0x0020
50#define MII_VSC8244_AUXCONSTAT_SPEED 0x0018
51#define MII_VSC8244_AUXCONSTAT_GBIT 0x0010
52#define MII_VSC8244_AUXCONSTAT_100 0x0008
53
54#define MII_VSC8221_AUXCONSTAT_INIT 0x0004 /* need to set this bit? */
55#define MII_VSC8221_AUXCONSTAT_RESERVED 0x0004
56
57#define PHY_ID_VSC8244 0x000fc6c0
58#define PHY_ID_VSC8221 0x000fc550
59
60MODULE_DESCRIPTION("Vitesse PHY driver");
61MODULE_AUTHOR("Kriston Carson");
62MODULE_LICENSE("GPL");
63
64int vsc824x_add_skew(struct phy_device *phydev)
65{
66 int err;
67 int extcon;
68
69 extcon = phy_read(phydev, MII_VSC8244_EXT_CON1);
70
71 if (extcon < 0)
72 return extcon;
73
74 extcon &= ~(MII_VSC8244_EXTCON1_TX_SKEW_MASK |
75 MII_VSC8244_EXTCON1_RX_SKEW_MASK);
76
77 extcon |= (MII_VSC8244_EXTCON1_TX_SKEW |
78 MII_VSC8244_EXTCON1_RX_SKEW);
79
80 err = phy_write(phydev, MII_VSC8244_EXT_CON1, extcon);
81
82 return err;
83}
84EXPORT_SYMBOL(vsc824x_add_skew);
85
86static int vsc824x_config_init(struct phy_device *phydev)
87{
88 int err;
89
90 err = phy_write(phydev, MII_VSC8244_AUX_CONSTAT,
91 MII_VSC8244_AUXCONSTAT_INIT);
92 if (err < 0)
93 return err;
94
95 if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID)
96 err = vsc824x_add_skew(phydev);
97
98 return err;
99}
100
101static int vsc824x_ack_interrupt(struct phy_device *phydev)
102{
103 int err = 0;
104
105 /*
106 * Don't bother to ACK the interrupts if interrupts
107 * are disabled. The 824x cannot clear the interrupts
108 * if they are disabled.
109 */
110 if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
111 err = phy_read(phydev, MII_VSC8244_ISTAT);
112
113 return (err < 0) ? err : 0;
114}
115
116static int vsc82xx_config_intr(struct phy_device *phydev)
117{
118 int err;
119
120 if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
121 err = phy_write(phydev, MII_VSC8244_IMASK,
122 phydev->drv->phy_id == PHY_ID_VSC8244 ?
123 MII_VSC8244_IMASK_MASK :
124 MII_VSC8221_IMASK_MASK);
125 else {
126 /*
127 * The Vitesse PHY cannot clear the interrupt
128 * once it has disabled them, so we clear them first
129 */
130 err = phy_read(phydev, MII_VSC8244_ISTAT);
131
132 if (err < 0)
133 return err;
134
135 err = phy_write(phydev, MII_VSC8244_IMASK, 0);
136 }
137
138 return err;
139}
140
141/* Vitesse 824x */
142static struct phy_driver vsc8244_driver = {
143 .phy_id = PHY_ID_VSC8244,
144 .name = "Vitesse VSC8244",
145 .phy_id_mask = 0x000fffc0,
146 .features = PHY_GBIT_FEATURES,
147 .flags = PHY_HAS_INTERRUPT,
148 .config_init = &vsc824x_config_init,
149 .config_aneg = &genphy_config_aneg,
150 .read_status = &genphy_read_status,
151 .ack_interrupt = &vsc824x_ack_interrupt,
152 .config_intr = &vsc82xx_config_intr,
153 .driver = { .owner = THIS_MODULE,},
154};
155
156static int vsc8221_config_init(struct phy_device *phydev)
157{
158 int err;
159
160 err = phy_write(phydev, MII_VSC8244_AUX_CONSTAT,
161 MII_VSC8221_AUXCONSTAT_INIT);
162 return err;
163
164 /* Perhaps we should set EXT_CON1 based on the interface?
165 Options are 802.3Z SerDes or SGMII */
166}
167
168/* Vitesse 8221 */
169static struct phy_driver vsc8221_driver = {
170 .phy_id = PHY_ID_VSC8221,
171 .phy_id_mask = 0x000ffff0,
172 .name = "Vitesse VSC8221",
173 .features = PHY_GBIT_FEATURES,
174 .flags = PHY_HAS_INTERRUPT,
175 .config_init = &vsc8221_config_init,
176 .config_aneg = &genphy_config_aneg,
177 .read_status = &genphy_read_status,
178 .ack_interrupt = &vsc824x_ack_interrupt,
179 .config_intr = &vsc82xx_config_intr,
180 .driver = { .owner = THIS_MODULE,},
181};
182
183static int __init vsc82xx_init(void)
184{
185 int err;
186
187 err = phy_driver_register(&vsc8244_driver);
188 if (err < 0)
189 return err;
190 err = phy_driver_register(&vsc8221_driver);
191 if (err < 0)
192 phy_driver_unregister(&vsc8244_driver);
193 return err;
194}
195
196static void __exit vsc82xx_exit(void)
197{
198 phy_driver_unregister(&vsc8244_driver);
199 phy_driver_unregister(&vsc8221_driver);
200}
201
202module_init(vsc82xx_init);
203module_exit(vsc82xx_exit);
204
205static struct mdio_device_id __maybe_unused vitesse_tbl[] = {
206 { PHY_ID_VSC8244, 0x000fffc0 },
207 { PHY_ID_VSC8221, 0x000ffff0 },
208 { }
209};
210
211MODULE_DEVICE_TABLE(mdio, vitesse_tbl);