Merge branch 'ethtool-perqueue-params'
[deliverable/linux.git] / drivers / net / phy / micrel.c
CommitLineData
d0507009
DC
1/*
2 * drivers/net/phy/micrel.c
3 *
4 * Driver for Micrel PHYs
5 *
6 * Author: David J. Choi
7 *
7ab59dc1 8 * Copyright (c) 2010-2013 Micrel, Inc.
ee0dc2fb 9 * Copyright (c) 2014 Johan Hovold <johan@kernel.org>
d0507009
DC
10 *
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
15 *
7ab59dc1
DC
16 * Support : Micrel Phys:
17 * Giga phys: ksz9021, ksz9031
18 * 100/10 Phys : ksz8001, ksz8721, ksz8737, ksz8041
19 * ksz8021, ksz8031, ksz8051,
20 * ksz8081, ksz8091,
21 * ksz8061,
22 * Switch : ksz8873, ksz886x
d0507009
DC
23 */
24
25#include <linux/kernel.h>
26#include <linux/module.h>
27#include <linux/phy.h>
d606ef3f 28#include <linux/micrel_phy.h>
954c3967 29#include <linux/of.h>
1fadee0c 30#include <linux/clk.h>
d0507009 31
212ea99a
MV
32/* Operation Mode Strap Override */
33#define MII_KSZPHY_OMSO 0x16
00aee095 34#define KSZPHY_OMSO_B_CAST_OFF BIT(9)
2b0ba96c 35#define KSZPHY_OMSO_NAND_TREE_ON BIT(5)
00aee095
JH
36#define KSZPHY_OMSO_RMII_OVERRIDE BIT(1)
37#define KSZPHY_OMSO_MII_OVERRIDE BIT(0)
212ea99a 38
51f932c4
CD
39/* general Interrupt control/status reg in vendor specific block. */
40#define MII_KSZPHY_INTCS 0x1B
00aee095
JH
41#define KSZPHY_INTCS_JABBER BIT(15)
42#define KSZPHY_INTCS_RECEIVE_ERR BIT(14)
43#define KSZPHY_INTCS_PAGE_RECEIVE BIT(13)
44#define KSZPHY_INTCS_PARELLEL BIT(12)
45#define KSZPHY_INTCS_LINK_PARTNER_ACK BIT(11)
46#define KSZPHY_INTCS_LINK_DOWN BIT(10)
47#define KSZPHY_INTCS_REMOTE_FAULT BIT(9)
48#define KSZPHY_INTCS_LINK_UP BIT(8)
51f932c4
CD
49#define KSZPHY_INTCS_ALL (KSZPHY_INTCS_LINK_UP |\
50 KSZPHY_INTCS_LINK_DOWN)
51
5a16778e
JH
52/* PHY Control 1 */
53#define MII_KSZPHY_CTRL_1 0x1e
54
55/* PHY Control 2 / PHY Control (if no PHY Control 1) */
56#define MII_KSZPHY_CTRL_2 0x1f
57#define MII_KSZPHY_CTRL MII_KSZPHY_CTRL_2
51f932c4 58/* bitmap of PHY register to set interrupt mode */
00aee095 59#define KSZPHY_CTRL_INT_ACTIVE_HIGH BIT(9)
63f44b2b 60#define KSZPHY_RMII_REF_CLK_SEL BIT(7)
51f932c4 61
954c3967
SC
62/* Write/read to/from extended registers */
63#define MII_KSZPHY_EXTREG 0x0b
64#define KSZPHY_EXTREG_WRITE 0x8000
65
66#define MII_KSZPHY_EXTREG_WRITE 0x0c
67#define MII_KSZPHY_EXTREG_READ 0x0d
68
69/* Extended registers */
70#define MII_KSZPHY_CLK_CONTROL_PAD_SKEW 0x104
71#define MII_KSZPHY_RX_DATA_PAD_SKEW 0x105
72#define MII_KSZPHY_TX_DATA_PAD_SKEW 0x106
73
74#define PS_TO_REG 200
75
2b2427d0
AL
76struct kszphy_hw_stat {
77 const char *string;
78 u8 reg;
79 u8 bits;
80};
81
82static struct kszphy_hw_stat kszphy_hw_stats[] = {
83 { "phy_receive_errors", 21, 16},
84 { "phy_idle_errors", 10, 8 },
85};
86
e6a423a8
JH
87struct kszphy_type {
88 u32 led_mode_reg;
c6f9575c 89 u16 interrupt_level_mask;
0f95903e 90 bool has_broadcast_disable;
2b0ba96c 91 bool has_nand_tree_disable;
63f44b2b 92 bool has_rmii_ref_clk_sel;
e6a423a8
JH
93};
94
95struct kszphy_priv {
96 const struct kszphy_type *type;
e7a792e9 97 int led_mode;
63f44b2b
JH
98 bool rmii_ref_clk_sel;
99 bool rmii_ref_clk_sel_val;
2b2427d0 100 u64 stats[ARRAY_SIZE(kszphy_hw_stats)];
e6a423a8
JH
101};
102
103static const struct kszphy_type ksz8021_type = {
104 .led_mode_reg = MII_KSZPHY_CTRL_2,
d0e1df9c 105 .has_broadcast_disable = true,
2b0ba96c 106 .has_nand_tree_disable = true,
63f44b2b 107 .has_rmii_ref_clk_sel = true,
e6a423a8
JH
108};
109
110static const struct kszphy_type ksz8041_type = {
111 .led_mode_reg = MII_KSZPHY_CTRL_1,
112};
113
114static const struct kszphy_type ksz8051_type = {
115 .led_mode_reg = MII_KSZPHY_CTRL_2,
2b0ba96c 116 .has_nand_tree_disable = true,
e6a423a8
JH
117};
118
119static const struct kszphy_type ksz8081_type = {
120 .led_mode_reg = MII_KSZPHY_CTRL_2,
0f95903e 121 .has_broadcast_disable = true,
2b0ba96c 122 .has_nand_tree_disable = true,
86dc1342 123 .has_rmii_ref_clk_sel = true,
e6a423a8
JH
124};
125
c6f9575c
JH
126static const struct kszphy_type ks8737_type = {
127 .interrupt_level_mask = BIT(14),
128};
129
130static const struct kszphy_type ksz9021_type = {
131 .interrupt_level_mask = BIT(14),
132};
133
954c3967 134static int kszphy_extended_write(struct phy_device *phydev,
756b5089 135 u32 regnum, u16 val)
954c3967
SC
136{
137 phy_write(phydev, MII_KSZPHY_EXTREG, KSZPHY_EXTREG_WRITE | regnum);
138 return phy_write(phydev, MII_KSZPHY_EXTREG_WRITE, val);
139}
140
141static int kszphy_extended_read(struct phy_device *phydev,
756b5089 142 u32 regnum)
954c3967
SC
143{
144 phy_write(phydev, MII_KSZPHY_EXTREG, regnum);
145 return phy_read(phydev, MII_KSZPHY_EXTREG_READ);
146}
147
51f932c4
CD
148static int kszphy_ack_interrupt(struct phy_device *phydev)
149{
150 /* bit[7..0] int status, which is a read and clear register. */
151 int rc;
152
153 rc = phy_read(phydev, MII_KSZPHY_INTCS);
154
155 return (rc < 0) ? rc : 0;
156}
157
51f932c4
CD
158static int kszphy_config_intr(struct phy_device *phydev)
159{
c6f9575c
JH
160 const struct kszphy_type *type = phydev->drv->driver_data;
161 int temp;
162 u16 mask;
51f932c4 163
c6f9575c
JH
164 if (type && type->interrupt_level_mask)
165 mask = type->interrupt_level_mask;
166 else
167 mask = KSZPHY_CTRL_INT_ACTIVE_HIGH;
51f932c4
CD
168
169 /* set the interrupt pin active low */
170 temp = phy_read(phydev, MII_KSZPHY_CTRL);
5bb8fc0d
JH
171 if (temp < 0)
172 return temp;
c6f9575c 173 temp &= ~mask;
51f932c4 174 phy_write(phydev, MII_KSZPHY_CTRL, temp);
51f932c4 175
c6f9575c
JH
176 /* enable / disable interrupts */
177 if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
178 temp = KSZPHY_INTCS_ALL;
179 else
180 temp = 0;
51f932c4 181
c6f9575c 182 return phy_write(phydev, MII_KSZPHY_INTCS, temp);
51f932c4 183}
d0507009 184
63f44b2b
JH
185static int kszphy_rmii_clk_sel(struct phy_device *phydev, bool val)
186{
187 int ctrl;
188
189 ctrl = phy_read(phydev, MII_KSZPHY_CTRL);
190 if (ctrl < 0)
191 return ctrl;
192
193 if (val)
194 ctrl |= KSZPHY_RMII_REF_CLK_SEL;
195 else
196 ctrl &= ~KSZPHY_RMII_REF_CLK_SEL;
197
198 return phy_write(phydev, MII_KSZPHY_CTRL, ctrl);
199}
200
e7a792e9 201static int kszphy_setup_led(struct phy_device *phydev, u32 reg, int val)
20d8435a 202{
5a16778e 203 int rc, temp, shift;
8620546c 204
5a16778e
JH
205 switch (reg) {
206 case MII_KSZPHY_CTRL_1:
207 shift = 14;
208 break;
209 case MII_KSZPHY_CTRL_2:
210 shift = 4;
211 break;
212 default:
213 return -EINVAL;
214 }
215
20d8435a 216 temp = phy_read(phydev, reg);
b7035860
JH
217 if (temp < 0) {
218 rc = temp;
219 goto out;
220 }
20d8435a 221
28bdc499 222 temp &= ~(3 << shift);
20d8435a
BD
223 temp |= val << shift;
224 rc = phy_write(phydev, reg, temp);
b7035860
JH
225out:
226 if (rc < 0)
72ba48be 227 phydev_err(phydev, "failed to set led mode\n");
20d8435a 228
b7035860 229 return rc;
20d8435a
BD
230}
231
bde15129
JH
232/* Disable PHY address 0 as the broadcast address, so that it can be used as a
233 * unique (non-broadcast) address on a shared bus.
234 */
235static int kszphy_broadcast_disable(struct phy_device *phydev)
236{
237 int ret;
238
239 ret = phy_read(phydev, MII_KSZPHY_OMSO);
240 if (ret < 0)
241 goto out;
242
243 ret = phy_write(phydev, MII_KSZPHY_OMSO, ret | KSZPHY_OMSO_B_CAST_OFF);
244out:
245 if (ret)
72ba48be 246 phydev_err(phydev, "failed to disable broadcast address\n");
bde15129
JH
247
248 return ret;
249}
250
2b0ba96c
SR
251static int kszphy_nand_tree_disable(struct phy_device *phydev)
252{
253 int ret;
254
255 ret = phy_read(phydev, MII_KSZPHY_OMSO);
256 if (ret < 0)
257 goto out;
258
259 if (!(ret & KSZPHY_OMSO_NAND_TREE_ON))
260 return 0;
261
262 ret = phy_write(phydev, MII_KSZPHY_OMSO,
263 ret & ~KSZPHY_OMSO_NAND_TREE_ON);
264out:
265 if (ret)
72ba48be 266 phydev_err(phydev, "failed to disable NAND tree mode\n");
2b0ba96c
SR
267
268 return ret;
269}
270
d0507009
DC
271static int kszphy_config_init(struct phy_device *phydev)
272{
e6a423a8
JH
273 struct kszphy_priv *priv = phydev->priv;
274 const struct kszphy_type *type;
63f44b2b 275 int ret;
d0507009 276
e6a423a8
JH
277 if (!priv)
278 return 0;
279
280 type = priv->type;
281
0f95903e
JH
282 if (type->has_broadcast_disable)
283 kszphy_broadcast_disable(phydev);
284
2b0ba96c
SR
285 if (type->has_nand_tree_disable)
286 kszphy_nand_tree_disable(phydev);
287
63f44b2b
JH
288 if (priv->rmii_ref_clk_sel) {
289 ret = kszphy_rmii_clk_sel(phydev, priv->rmii_ref_clk_sel_val);
290 if (ret) {
72ba48be
AL
291 phydev_err(phydev,
292 "failed to set rmii reference clock\n");
63f44b2b
JH
293 return ret;
294 }
295 }
296
e7a792e9
JH
297 if (priv->led_mode >= 0)
298 kszphy_setup_led(phydev, type->led_mode_reg, priv->led_mode);
e6a423a8
JH
299
300 return 0;
20d8435a
BD
301}
302
954c3967 303static int ksz9021_load_values_from_of(struct phy_device *phydev,
3c9a9f7f
JA
304 const struct device_node *of_node,
305 u16 reg,
306 const char *field1, const char *field2,
307 const char *field3, const char *field4)
954c3967
SC
308{
309 int val1 = -1;
310 int val2 = -2;
311 int val3 = -3;
312 int val4 = -4;
313 int newval;
314 int matches = 0;
315
316 if (!of_property_read_u32(of_node, field1, &val1))
317 matches++;
318
319 if (!of_property_read_u32(of_node, field2, &val2))
320 matches++;
321
322 if (!of_property_read_u32(of_node, field3, &val3))
323 matches++;
324
325 if (!of_property_read_u32(of_node, field4, &val4))
326 matches++;
327
328 if (!matches)
329 return 0;
330
331 if (matches < 4)
332 newval = kszphy_extended_read(phydev, reg);
333 else
334 newval = 0;
335
336 if (val1 != -1)
337 newval = ((newval & 0xfff0) | ((val1 / PS_TO_REG) & 0xf) << 0);
338
6a119745 339 if (val2 != -2)
954c3967
SC
340 newval = ((newval & 0xff0f) | ((val2 / PS_TO_REG) & 0xf) << 4);
341
6a119745 342 if (val3 != -3)
954c3967
SC
343 newval = ((newval & 0xf0ff) | ((val3 / PS_TO_REG) & 0xf) << 8);
344
6a119745 345 if (val4 != -4)
954c3967
SC
346 newval = ((newval & 0x0fff) | ((val4 / PS_TO_REG) & 0xf) << 12);
347
348 return kszphy_extended_write(phydev, reg, newval);
349}
350
351static int ksz9021_config_init(struct phy_device *phydev)
352{
e5a03bfd 353 const struct device *dev = &phydev->mdio.dev;
3c9a9f7f 354 const struct device_node *of_node = dev->of_node;
651df218
AL
355 const struct device *dev_walker;
356
357 /* The Micrel driver has a deprecated option to place phy OF
358 * properties in the MAC node. Walk up the tree of devices to
359 * find a device with an OF node.
360 */
e5a03bfd 361 dev_walker = &phydev->mdio.dev;
651df218
AL
362 do {
363 of_node = dev_walker->of_node;
364 dev_walker = dev_walker->parent;
365
366 } while (!of_node && dev_walker);
954c3967
SC
367
368 if (of_node) {
369 ksz9021_load_values_from_of(phydev, of_node,
370 MII_KSZPHY_CLK_CONTROL_PAD_SKEW,
371 "txen-skew-ps", "txc-skew-ps",
372 "rxdv-skew-ps", "rxc-skew-ps");
373 ksz9021_load_values_from_of(phydev, of_node,
374 MII_KSZPHY_RX_DATA_PAD_SKEW,
375 "rxd0-skew-ps", "rxd1-skew-ps",
376 "rxd2-skew-ps", "rxd3-skew-ps");
377 ksz9021_load_values_from_of(phydev, of_node,
378 MII_KSZPHY_TX_DATA_PAD_SKEW,
379 "txd0-skew-ps", "txd1-skew-ps",
380 "txd2-skew-ps", "txd3-skew-ps");
381 }
382 return 0;
383}
384
6e4b8273
HC
385#define MII_KSZ9031RN_MMD_CTRL_REG 0x0d
386#define MII_KSZ9031RN_MMD_REGDATA_REG 0x0e
387#define OP_DATA 1
388#define KSZ9031_PS_TO_REG 60
389
390/* Extended registers */
6270e1ae
JA
391/* MMD Address 0x0 */
392#define MII_KSZ9031RN_FLP_BURST_TX_LO 3
393#define MII_KSZ9031RN_FLP_BURST_TX_HI 4
394
ae6c97bb 395/* MMD Address 0x2 */
6e4b8273
HC
396#define MII_KSZ9031RN_CONTROL_PAD_SKEW 4
397#define MII_KSZ9031RN_RX_DATA_PAD_SKEW 5
398#define MII_KSZ9031RN_TX_DATA_PAD_SKEW 6
399#define MII_KSZ9031RN_CLK_PAD_SKEW 8
400
401static int ksz9031_extended_write(struct phy_device *phydev,
402 u8 mode, u32 dev_addr, u32 regnum, u16 val)
403{
404 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, dev_addr);
405 phy_write(phydev, MII_KSZ9031RN_MMD_REGDATA_REG, regnum);
406 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, (mode << 14) | dev_addr);
407 return phy_write(phydev, MII_KSZ9031RN_MMD_REGDATA_REG, val);
408}
409
410static int ksz9031_extended_read(struct phy_device *phydev,
411 u8 mode, u32 dev_addr, u32 regnum)
412{
413 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, dev_addr);
414 phy_write(phydev, MII_KSZ9031RN_MMD_REGDATA_REG, regnum);
415 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, (mode << 14) | dev_addr);
416 return phy_read(phydev, MII_KSZ9031RN_MMD_REGDATA_REG);
417}
418
419static int ksz9031_of_load_skew_values(struct phy_device *phydev,
3c9a9f7f 420 const struct device_node *of_node,
6e4b8273 421 u16 reg, size_t field_sz,
3c9a9f7f 422 const char *field[], u8 numfields)
6e4b8273
HC
423{
424 int val[4] = {-1, -2, -3, -4};
425 int matches = 0;
426 u16 mask;
427 u16 maxval;
428 u16 newval;
429 int i;
430
431 for (i = 0; i < numfields; i++)
432 if (!of_property_read_u32(of_node, field[i], val + i))
433 matches++;
434
435 if (!matches)
436 return 0;
437
438 if (matches < numfields)
439 newval = ksz9031_extended_read(phydev, OP_DATA, 2, reg);
440 else
441 newval = 0;
442
443 maxval = (field_sz == 4) ? 0xf : 0x1f;
444 for (i = 0; i < numfields; i++)
445 if (val[i] != -(i + 1)) {
446 mask = 0xffff;
447 mask ^= maxval << (field_sz * i);
448 newval = (newval & mask) |
449 (((val[i] / KSZ9031_PS_TO_REG) & maxval)
450 << (field_sz * i));
451 }
452
453 return ksz9031_extended_write(phydev, OP_DATA, 2, reg, newval);
454}
455
6270e1ae
JA
456static int ksz9031_center_flp_timing(struct phy_device *phydev)
457{
458 int result;
459
460 /* Center KSZ9031RNX FLP timing at 16ms. */
461 result = ksz9031_extended_write(phydev, OP_DATA, 0,
462 MII_KSZ9031RN_FLP_BURST_TX_HI, 0x0006);
463 result = ksz9031_extended_write(phydev, OP_DATA, 0,
464 MII_KSZ9031RN_FLP_BURST_TX_LO, 0x1A80);
465
466 if (result)
467 return result;
468
469 return genphy_restart_aneg(phydev);
470}
471
6e4b8273
HC
472static int ksz9031_config_init(struct phy_device *phydev)
473{
e5a03bfd 474 const struct device *dev = &phydev->mdio.dev;
3c9a9f7f
JA
475 const struct device_node *of_node = dev->of_node;
476 static const char *clk_skews[2] = {"rxc-skew-ps", "txc-skew-ps"};
477 static const char *rx_data_skews[4] = {
6e4b8273
HC
478 "rxd0-skew-ps", "rxd1-skew-ps",
479 "rxd2-skew-ps", "rxd3-skew-ps"
480 };
3c9a9f7f 481 static const char *tx_data_skews[4] = {
6e4b8273
HC
482 "txd0-skew-ps", "txd1-skew-ps",
483 "txd2-skew-ps", "txd3-skew-ps"
484 };
3c9a9f7f 485 static const char *control_skews[2] = {"txen-skew-ps", "rxdv-skew-ps"};
b4c19f71 486 const struct device *dev_walker;
6e4b8273 487
b4c19f71
RH
488 /* The Micrel driver has a deprecated option to place phy OF
489 * properties in the MAC node. Walk up the tree of devices to
490 * find a device with an OF node.
491 */
9d367edd 492 dev_walker = &phydev->mdio.dev;
b4c19f71
RH
493 do {
494 of_node = dev_walker->of_node;
495 dev_walker = dev_walker->parent;
496 } while (!of_node && dev_walker);
6e4b8273
HC
497
498 if (of_node) {
499 ksz9031_of_load_skew_values(phydev, of_node,
500 MII_KSZ9031RN_CLK_PAD_SKEW, 5,
501 clk_skews, 2);
502
503 ksz9031_of_load_skew_values(phydev, of_node,
504 MII_KSZ9031RN_CONTROL_PAD_SKEW, 4,
505 control_skews, 2);
506
507 ksz9031_of_load_skew_values(phydev, of_node,
508 MII_KSZ9031RN_RX_DATA_PAD_SKEW, 4,
509 rx_data_skews, 4);
510
511 ksz9031_of_load_skew_values(phydev, of_node,
512 MII_KSZ9031RN_TX_DATA_PAD_SKEW, 4,
513 tx_data_skews, 4);
514 }
6270e1ae
JA
515
516 return ksz9031_center_flp_timing(phydev);
6e4b8273
HC
517}
518
93272e07 519#define KSZ8873MLL_GLOBAL_CONTROL_4 0x06
00aee095
JH
520#define KSZ8873MLL_GLOBAL_CONTROL_4_DUPLEX BIT(6)
521#define KSZ8873MLL_GLOBAL_CONTROL_4_SPEED BIT(4)
32d73b14 522static int ksz8873mll_read_status(struct phy_device *phydev)
93272e07
JCPV
523{
524 int regval;
525
526 /* dummy read */
527 regval = phy_read(phydev, KSZ8873MLL_GLOBAL_CONTROL_4);
528
529 regval = phy_read(phydev, KSZ8873MLL_GLOBAL_CONTROL_4);
530
531 if (regval & KSZ8873MLL_GLOBAL_CONTROL_4_DUPLEX)
532 phydev->duplex = DUPLEX_HALF;
533 else
534 phydev->duplex = DUPLEX_FULL;
535
536 if (regval & KSZ8873MLL_GLOBAL_CONTROL_4_SPEED)
537 phydev->speed = SPEED_10;
538 else
539 phydev->speed = SPEED_100;
540
541 phydev->link = 1;
542 phydev->pause = phydev->asym_pause = 0;
543
544 return 0;
545}
546
d2fd719b
NS
547static int ksz9031_read_status(struct phy_device *phydev)
548{
549 int err;
550 int regval;
551
552 err = genphy_read_status(phydev);
553 if (err)
554 return err;
555
556 /* Make sure the PHY is not broken. Read idle error count,
557 * and reset the PHY if it is maxed out.
558 */
559 regval = phy_read(phydev, MII_STAT1000);
560 if ((regval & 0xFF) == 0xFF) {
561 phy_init_hw(phydev);
562 phydev->link = 0;
563 }
564
565 return 0;
566}
567
93272e07
JCPV
568static int ksz8873mll_config_aneg(struct phy_device *phydev)
569{
570 return 0;
571}
572
19936942
VB
573/* This routine returns -1 as an indication to the caller that the
574 * Micrel ksz9021 10/100/1000 PHY does not support standard IEEE
575 * MMD extended PHY registers.
576 */
577static int
578ksz9021_rd_mmd_phyreg(struct phy_device *phydev, int ptrad, int devnum,
579 int regnum)
580{
581 return -1;
582}
583
584/* This routine does nothing since the Micrel ksz9021 does not support
585 * standard IEEE MMD extended PHY registers.
586 */
587static void
588ksz9021_wr_mmd_phyreg(struct phy_device *phydev, int ptrad, int devnum,
589 int regnum, u32 val)
590{
591}
592
2b2427d0
AL
593static int kszphy_get_sset_count(struct phy_device *phydev)
594{
595 return ARRAY_SIZE(kszphy_hw_stats);
596}
597
598static void kszphy_get_strings(struct phy_device *phydev, u8 *data)
599{
600 int i;
601
602 for (i = 0; i < ARRAY_SIZE(kszphy_hw_stats); i++) {
603 memcpy(data + i * ETH_GSTRING_LEN,
604 kszphy_hw_stats[i].string, ETH_GSTRING_LEN);
605 }
606}
607
608#ifndef UINT64_MAX
609#define UINT64_MAX (u64)(~((u64)0))
610#endif
611static u64 kszphy_get_stat(struct phy_device *phydev, int i)
612{
613 struct kszphy_hw_stat stat = kszphy_hw_stats[i];
614 struct kszphy_priv *priv = phydev->priv;
615 u64 val;
616
617 val = phy_read(phydev, stat.reg);
618 if (val < 0) {
619 val = UINT64_MAX;
620 } else {
621 val = val & ((1 << stat.bits) - 1);
622 priv->stats[i] += val;
623 val = priv->stats[i];
624 }
625
626 return val;
627}
628
629static void kszphy_get_stats(struct phy_device *phydev,
630 struct ethtool_stats *stats, u64 *data)
631{
632 int i;
633
634 for (i = 0; i < ARRAY_SIZE(kszphy_hw_stats); i++)
635 data[i] = kszphy_get_stat(phydev, i);
636}
637
e6a423a8
JH
638static int kszphy_probe(struct phy_device *phydev)
639{
640 const struct kszphy_type *type = phydev->drv->driver_data;
e5a03bfd 641 const struct device_node *np = phydev->mdio.dev.of_node;
e6a423a8 642 struct kszphy_priv *priv;
63f44b2b 643 struct clk *clk;
e7a792e9 644 int ret;
e6a423a8 645
e5a03bfd 646 priv = devm_kzalloc(&phydev->mdio.dev, sizeof(*priv), GFP_KERNEL);
e6a423a8
JH
647 if (!priv)
648 return -ENOMEM;
649
650 phydev->priv = priv;
651
652 priv->type = type;
653
e7a792e9
JH
654 if (type->led_mode_reg) {
655 ret = of_property_read_u32(np, "micrel,led-mode",
656 &priv->led_mode);
657 if (ret)
658 priv->led_mode = -1;
659
660 if (priv->led_mode > 3) {
72ba48be
AL
661 phydev_err(phydev, "invalid led mode: 0x%02x\n",
662 priv->led_mode);
e7a792e9
JH
663 priv->led_mode = -1;
664 }
665 } else {
666 priv->led_mode = -1;
667 }
668
e5a03bfd 669 clk = devm_clk_get(&phydev->mdio.dev, "rmii-ref");
bced8701
NC
670 /* NOTE: clk may be NULL if building without CONFIG_HAVE_CLK */
671 if (!IS_ERR_OR_NULL(clk)) {
1fadee0c 672 unsigned long rate = clk_get_rate(clk);
86dc1342 673 bool rmii_ref_clk_sel_25_mhz;
1fadee0c 674
63f44b2b 675 priv->rmii_ref_clk_sel = type->has_rmii_ref_clk_sel;
86dc1342
JH
676 rmii_ref_clk_sel_25_mhz = of_property_read_bool(np,
677 "micrel,rmii-reference-clock-select-25-mhz");
63f44b2b 678
1fadee0c 679 if (rate > 24500000 && rate < 25500000) {
86dc1342 680 priv->rmii_ref_clk_sel_val = rmii_ref_clk_sel_25_mhz;
1fadee0c 681 } else if (rate > 49500000 && rate < 50500000) {
86dc1342 682 priv->rmii_ref_clk_sel_val = !rmii_ref_clk_sel_25_mhz;
1fadee0c 683 } else {
72ba48be
AL
684 phydev_err(phydev, "Clock rate out of range: %ld\n",
685 rate);
1fadee0c
SH
686 return -EINVAL;
687 }
688 }
689
63f44b2b
JH
690 /* Support legacy board-file configuration */
691 if (phydev->dev_flags & MICREL_PHY_50MHZ_CLK) {
692 priv->rmii_ref_clk_sel = true;
693 priv->rmii_ref_clk_sel_val = true;
694 }
695
696 return 0;
1fadee0c
SH
697}
698
d5bf9071
CH
699static struct phy_driver ksphy_driver[] = {
700{
51f932c4
CD
701 .phy_id = PHY_ID_KS8737,
702 .phy_id_mask = 0x00fffff0,
703 .name = "Micrel KS8737",
704 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
705 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
c6f9575c 706 .driver_data = &ks8737_type,
51f932c4
CD
707 .config_init = kszphy_config_init,
708 .config_aneg = genphy_config_aneg,
709 .read_status = genphy_read_status,
710 .ack_interrupt = kszphy_ack_interrupt,
c6f9575c 711 .config_intr = kszphy_config_intr,
2b2427d0
AL
712 .get_sset_count = kszphy_get_sset_count,
713 .get_strings = kszphy_get_strings,
714 .get_stats = kszphy_get_stats,
1a5465f5
PV
715 .suspend = genphy_suspend,
716 .resume = genphy_resume,
212ea99a
MV
717}, {
718 .phy_id = PHY_ID_KSZ8021,
719 .phy_id_mask = 0x00ffffff,
7ab59dc1 720 .name = "Micrel KSZ8021 or KSZ8031",
212ea99a
MV
721 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause |
722 SUPPORTED_Asym_Pause),
723 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
e6a423a8 724 .driver_data = &ksz8021_type,
63f44b2b 725 .probe = kszphy_probe,
d0e1df9c 726 .config_init = kszphy_config_init,
212ea99a
MV
727 .config_aneg = genphy_config_aneg,
728 .read_status = genphy_read_status,
729 .ack_interrupt = kszphy_ack_interrupt,
730 .config_intr = kszphy_config_intr,
2b2427d0
AL
731 .get_sset_count = kszphy_get_sset_count,
732 .get_strings = kszphy_get_strings,
733 .get_stats = kszphy_get_stats,
1a5465f5
PV
734 .suspend = genphy_suspend,
735 .resume = genphy_resume,
b818d1a7
HP
736}, {
737 .phy_id = PHY_ID_KSZ8031,
738 .phy_id_mask = 0x00ffffff,
739 .name = "Micrel KSZ8031",
740 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause |
741 SUPPORTED_Asym_Pause),
742 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
e6a423a8 743 .driver_data = &ksz8021_type,
63f44b2b 744 .probe = kszphy_probe,
d0e1df9c 745 .config_init = kszphy_config_init,
b818d1a7
HP
746 .config_aneg = genphy_config_aneg,
747 .read_status = genphy_read_status,
748 .ack_interrupt = kszphy_ack_interrupt,
749 .config_intr = kszphy_config_intr,
2b2427d0
AL
750 .get_sset_count = kszphy_get_sset_count,
751 .get_strings = kszphy_get_strings,
752 .get_stats = kszphy_get_stats,
1a5465f5
PV
753 .suspend = genphy_suspend,
754 .resume = genphy_resume,
d5bf9071 755}, {
510d573f 756 .phy_id = PHY_ID_KSZ8041,
51f932c4 757 .phy_id_mask = 0x00fffff0,
510d573f 758 .name = "Micrel KSZ8041",
51f932c4
CD
759 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause
760 | SUPPORTED_Asym_Pause),
761 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
e6a423a8
JH
762 .driver_data = &ksz8041_type,
763 .probe = kszphy_probe,
764 .config_init = kszphy_config_init,
51f932c4
CD
765 .config_aneg = genphy_config_aneg,
766 .read_status = genphy_read_status,
767 .ack_interrupt = kszphy_ack_interrupt,
768 .config_intr = kszphy_config_intr,
2b2427d0
AL
769 .get_sset_count = kszphy_get_sset_count,
770 .get_strings = kszphy_get_strings,
771 .get_stats = kszphy_get_stats,
1a5465f5
PV
772 .suspend = genphy_suspend,
773 .resume = genphy_resume,
4bd7b512
SS
774}, {
775 .phy_id = PHY_ID_KSZ8041RNLI,
776 .phy_id_mask = 0x00fffff0,
777 .name = "Micrel KSZ8041RNLI",
778 .features = PHY_BASIC_FEATURES |
779 SUPPORTED_Pause | SUPPORTED_Asym_Pause,
780 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
e6a423a8
JH
781 .driver_data = &ksz8041_type,
782 .probe = kszphy_probe,
783 .config_init = kszphy_config_init,
4bd7b512
SS
784 .config_aneg = genphy_config_aneg,
785 .read_status = genphy_read_status,
786 .ack_interrupt = kszphy_ack_interrupt,
787 .config_intr = kszphy_config_intr,
2b2427d0
AL
788 .get_sset_count = kszphy_get_sset_count,
789 .get_strings = kszphy_get_strings,
790 .get_stats = kszphy_get_stats,
4bd7b512
SS
791 .suspend = genphy_suspend,
792 .resume = genphy_resume,
d5bf9071 793}, {
510d573f 794 .phy_id = PHY_ID_KSZ8051,
d0507009 795 .phy_id_mask = 0x00fffff0,
510d573f 796 .name = "Micrel KSZ8051",
51f932c4
CD
797 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause
798 | SUPPORTED_Asym_Pause),
799 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
e6a423a8
JH
800 .driver_data = &ksz8051_type,
801 .probe = kszphy_probe,
63f44b2b 802 .config_init = kszphy_config_init,
d0507009
DC
803 .config_aneg = genphy_config_aneg,
804 .read_status = genphy_read_status,
51f932c4
CD
805 .ack_interrupt = kszphy_ack_interrupt,
806 .config_intr = kszphy_config_intr,
2b2427d0
AL
807 .get_sset_count = kszphy_get_sset_count,
808 .get_strings = kszphy_get_strings,
809 .get_stats = kszphy_get_stats,
1a5465f5
PV
810 .suspend = genphy_suspend,
811 .resume = genphy_resume,
d5bf9071 812}, {
510d573f
MV
813 .phy_id = PHY_ID_KSZ8001,
814 .name = "Micrel KSZ8001 or KS8721",
48d7d0ad 815 .phy_id_mask = 0x00ffffff,
51f932c4
CD
816 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
817 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
e6a423a8
JH
818 .driver_data = &ksz8041_type,
819 .probe = kszphy_probe,
820 .config_init = kszphy_config_init,
d0507009
DC
821 .config_aneg = genphy_config_aneg,
822 .read_status = genphy_read_status,
51f932c4
CD
823 .ack_interrupt = kszphy_ack_interrupt,
824 .config_intr = kszphy_config_intr,
2b2427d0
AL
825 .get_sset_count = kszphy_get_sset_count,
826 .get_strings = kszphy_get_strings,
827 .get_stats = kszphy_get_stats,
1a5465f5
PV
828 .suspend = genphy_suspend,
829 .resume = genphy_resume,
7ab59dc1
DC
830}, {
831 .phy_id = PHY_ID_KSZ8081,
832 .name = "Micrel KSZ8081 or KSZ8091",
833 .phy_id_mask = 0x00fffff0,
834 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
835 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
e6a423a8
JH
836 .driver_data = &ksz8081_type,
837 .probe = kszphy_probe,
0f95903e 838 .config_init = kszphy_config_init,
7ab59dc1
DC
839 .config_aneg = genphy_config_aneg,
840 .read_status = genphy_read_status,
841 .ack_interrupt = kszphy_ack_interrupt,
842 .config_intr = kszphy_config_intr,
2b2427d0
AL
843 .get_sset_count = kszphy_get_sset_count,
844 .get_strings = kszphy_get_strings,
845 .get_stats = kszphy_get_stats,
1a5465f5
PV
846 .suspend = genphy_suspend,
847 .resume = genphy_resume,
7ab59dc1
DC
848}, {
849 .phy_id = PHY_ID_KSZ8061,
850 .name = "Micrel KSZ8061",
851 .phy_id_mask = 0x00fffff0,
852 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
853 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
854 .config_init = kszphy_config_init,
855 .config_aneg = genphy_config_aneg,
856 .read_status = genphy_read_status,
857 .ack_interrupt = kszphy_ack_interrupt,
858 .config_intr = kszphy_config_intr,
2b2427d0
AL
859 .get_sset_count = kszphy_get_sset_count,
860 .get_strings = kszphy_get_strings,
861 .get_stats = kszphy_get_stats,
1a5465f5
PV
862 .suspend = genphy_suspend,
863 .resume = genphy_resume,
d5bf9071 864}, {
d0507009 865 .phy_id = PHY_ID_KSZ9021,
48d7d0ad 866 .phy_id_mask = 0x000ffffe,
d0507009 867 .name = "Micrel KSZ9021 Gigabit PHY",
32fcafbc 868 .features = (PHY_GBIT_FEATURES | SUPPORTED_Pause),
51f932c4 869 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
c6f9575c 870 .driver_data = &ksz9021_type,
954c3967 871 .config_init = ksz9021_config_init,
d0507009
DC
872 .config_aneg = genphy_config_aneg,
873 .read_status = genphy_read_status,
51f932c4 874 .ack_interrupt = kszphy_ack_interrupt,
c6f9575c 875 .config_intr = kszphy_config_intr,
2b2427d0
AL
876 .get_sset_count = kszphy_get_sset_count,
877 .get_strings = kszphy_get_strings,
878 .get_stats = kszphy_get_stats,
1a5465f5
PV
879 .suspend = genphy_suspend,
880 .resume = genphy_resume,
19936942
VB
881 .read_mmd_indirect = ksz9021_rd_mmd_phyreg,
882 .write_mmd_indirect = ksz9021_wr_mmd_phyreg,
7ab59dc1
DC
883}, {
884 .phy_id = PHY_ID_KSZ9031,
885 .phy_id_mask = 0x00fffff0,
886 .name = "Micrel KSZ9031 Gigabit PHY",
95e8b103 887 .features = (PHY_GBIT_FEATURES | SUPPORTED_Pause),
7ab59dc1 888 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
c6f9575c 889 .driver_data = &ksz9021_type,
6e4b8273 890 .config_init = ksz9031_config_init,
7ab59dc1 891 .config_aneg = genphy_config_aneg,
d2fd719b 892 .read_status = ksz9031_read_status,
7ab59dc1 893 .ack_interrupt = kszphy_ack_interrupt,
c6f9575c 894 .config_intr = kszphy_config_intr,
2b2427d0
AL
895 .get_sset_count = kszphy_get_sset_count,
896 .get_strings = kszphy_get_strings,
897 .get_stats = kszphy_get_stats,
1a5465f5
PV
898 .suspend = genphy_suspend,
899 .resume = genphy_resume,
93272e07
JCPV
900}, {
901 .phy_id = PHY_ID_KSZ8873MLL,
902 .phy_id_mask = 0x00fffff0,
903 .name = "Micrel KSZ8873MLL Switch",
904 .features = (SUPPORTED_Pause | SUPPORTED_Asym_Pause),
905 .flags = PHY_HAS_MAGICANEG,
906 .config_init = kszphy_config_init,
907 .config_aneg = ksz8873mll_config_aneg,
908 .read_status = ksz8873mll_read_status,
2b2427d0
AL
909 .get_sset_count = kszphy_get_sset_count,
910 .get_strings = kszphy_get_strings,
911 .get_stats = kszphy_get_stats,
1a5465f5
PV
912 .suspend = genphy_suspend,
913 .resume = genphy_resume,
7ab59dc1
DC
914}, {
915 .phy_id = PHY_ID_KSZ886X,
916 .phy_id_mask = 0x00fffff0,
917 .name = "Micrel KSZ886X Switch",
918 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
919 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
920 .config_init = kszphy_config_init,
921 .config_aneg = genphy_config_aneg,
922 .read_status = genphy_read_status,
2b2427d0
AL
923 .get_sset_count = kszphy_get_sset_count,
924 .get_strings = kszphy_get_strings,
925 .get_stats = kszphy_get_stats,
1a5465f5
PV
926 .suspend = genphy_suspend,
927 .resume = genphy_resume,
d5bf9071 928} };
d0507009 929
50fd7150 930module_phy_driver(ksphy_driver);
d0507009
DC
931
932MODULE_DESCRIPTION("Micrel PHY driver");
933MODULE_AUTHOR("David J. Choi");
934MODULE_LICENSE("GPL");
52a60ed2 935
cf93c945 936static struct mdio_device_id __maybe_unused micrel_tbl[] = {
48d7d0ad 937 { PHY_ID_KSZ9021, 0x000ffffe },
7ab59dc1 938 { PHY_ID_KSZ9031, 0x00fffff0 },
510d573f 939 { PHY_ID_KSZ8001, 0x00ffffff },
51f932c4 940 { PHY_ID_KS8737, 0x00fffff0 },
212ea99a 941 { PHY_ID_KSZ8021, 0x00ffffff },
b818d1a7 942 { PHY_ID_KSZ8031, 0x00ffffff },
510d573f
MV
943 { PHY_ID_KSZ8041, 0x00fffff0 },
944 { PHY_ID_KSZ8051, 0x00fffff0 },
7ab59dc1
DC
945 { PHY_ID_KSZ8061, 0x00fffff0 },
946 { PHY_ID_KSZ8081, 0x00fffff0 },
93272e07 947 { PHY_ID_KSZ8873MLL, 0x00fffff0 },
7ab59dc1 948 { PHY_ID_KSZ886X, 0x00fffff0 },
52a60ed2
DM
949 { }
950};
951
952MODULE_DEVICE_TABLE(mdio, micrel_tbl);
This page took 0.50539 seconds and 5 git commands to generate.