blob: 053e87905b944e51f43c33355f235d42d6bcec54 [file] [log] [blame]
David J. Choid0507002010-04-29 06:12:41 +00001/*
2 * drivers/net/phy/micrel.c
3 *
4 * Driver for Micrel PHYs
5 *
6 * Author: David J. Choi
7 *
David J. Choi7ab59dc2013-01-23 14:05:15 +00008 * Copyright (c) 2010-2013 Micrel, Inc.
Johan Hovoldee0dc2f2014-11-19 12:59:23 +01009 * Copyright (c) 2014 Johan Hovold <johan@kernel.org>
David J. Choid0507002010-04-29 06:12:41 +000010 *
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 *
David J. Choi7ab59dc2013-01-23 14:05:15 +000016 * 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
David J. Choid0507002010-04-29 06:12:41 +000023 */
24
25#include <linux/kernel.h>
26#include <linux/module.h>
27#include <linux/phy.h>
Baruch Siachd606ef32011-02-14 02:05:33 +000028#include <linux/micrel_phy.h>
Sean Cross954c3962013-08-21 01:46:12 +000029#include <linux/of.h>
Sascha Hauer1fadee02014-10-10 09:48:05 +020030#include <linux/clk.h>
David J. Choid0507002010-04-29 06:12:41 +000031
Marek Vasut212ea992012-09-23 16:58:49 +000032/* Operation Mode Strap Override */
33#define MII_KSZPHY_OMSO 0x16
Johan Hovold00aee092014-11-11 20:00:09 +010034#define KSZPHY_OMSO_B_CAST_OFF BIT(9)
Sylvain Rochet2b0ba962015-02-13 21:35:33 +010035#define KSZPHY_OMSO_NAND_TREE_ON BIT(5)
Johan Hovold00aee092014-11-11 20:00:09 +010036#define KSZPHY_OMSO_RMII_OVERRIDE BIT(1)
37#define KSZPHY_OMSO_MII_OVERRIDE BIT(0)
Marek Vasut212ea992012-09-23 16:58:49 +000038
Choi, David51f932c2010-06-28 15:23:41 +000039/* general Interrupt control/status reg in vendor specific block. */
40#define MII_KSZPHY_INTCS 0x1B
Johan Hovold00aee092014-11-11 20:00:09 +010041#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)
Choi, David51f932c2010-06-28 15:23:41 +000049#define KSZPHY_INTCS_ALL (KSZPHY_INTCS_LINK_UP |\
50 KSZPHY_INTCS_LINK_DOWN)
51
Johan Hovold5a167782014-11-11 20:00:14 +010052/* 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
Choi, David51f932c2010-06-28 15:23:41 +000058/* bitmap of PHY register to set interrupt mode */
Johan Hovold00aee092014-11-11 20:00:09 +010059#define KSZPHY_CTRL_INT_ACTIVE_HIGH BIT(9)
Johan Hovold63f44b22014-11-19 12:59:18 +010060#define KSZPHY_RMII_REF_CLK_SEL BIT(7)
Choi, David51f932c2010-06-28 15:23:41 +000061
Sean Cross954c3962013-08-21 01:46:12 +000062/* 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
Andrew Lunn2b2427d2015-12-30 16:28:27 +010076struct 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
Johan Hovolde6a423a2014-11-19 12:59:15 +010087struct kszphy_type {
88 u32 led_mode_reg;
Johan Hovoldc6f95752014-11-19 12:59:22 +010089 u16 interrupt_level_mask;
Johan Hovold0f959032014-11-19 12:59:17 +010090 bool has_broadcast_disable;
Sylvain Rochet2b0ba962015-02-13 21:35:33 +010091 bool has_nand_tree_disable;
Johan Hovold63f44b22014-11-19 12:59:18 +010092 bool has_rmii_ref_clk_sel;
Johan Hovolde6a423a2014-11-19 12:59:15 +010093};
94
95struct kszphy_priv {
96 const struct kszphy_type *type;
Johan Hovolde7a792e2014-11-19 12:59:16 +010097 int led_mode;
Johan Hovold63f44b22014-11-19 12:59:18 +010098 bool rmii_ref_clk_sel;
99 bool rmii_ref_clk_sel_val;
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100100 u64 stats[ARRAY_SIZE(kszphy_hw_stats)];
Johan Hovolde6a423a2014-11-19 12:59:15 +0100101};
102
103static const struct kszphy_type ksz8021_type = {
104 .led_mode_reg = MII_KSZPHY_CTRL_2,
Johan Hovoldd0e1df92014-12-23 12:59:17 +0100105 .has_broadcast_disable = true,
Sylvain Rochet2b0ba962015-02-13 21:35:33 +0100106 .has_nand_tree_disable = true,
Johan Hovold63f44b22014-11-19 12:59:18 +0100107 .has_rmii_ref_clk_sel = true,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100108};
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,
Sylvain Rochet2b0ba962015-02-13 21:35:33 +0100116 .has_nand_tree_disable = true,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100117};
118
119static const struct kszphy_type ksz8081_type = {
120 .led_mode_reg = MII_KSZPHY_CTRL_2,
Johan Hovold0f959032014-11-19 12:59:17 +0100121 .has_broadcast_disable = true,
Sylvain Rochet2b0ba962015-02-13 21:35:33 +0100122 .has_nand_tree_disable = true,
Johan Hovold86dc1342014-11-19 12:59:19 +0100123 .has_rmii_ref_clk_sel = true,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100124};
125
Johan Hovoldc6f95752014-11-19 12:59:22 +0100126static 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
Sean Cross954c3962013-08-21 01:46:12 +0000134static int kszphy_extended_write(struct phy_device *phydev,
Florian Fainelli756b5082013-12-17 21:38:11 -0800135 u32 regnum, u16 val)
Sean Cross954c3962013-08-21 01:46:12 +0000136{
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,
Florian Fainelli756b5082013-12-17 21:38:11 -0800142 u32 regnum)
Sean Cross954c3962013-08-21 01:46:12 +0000143{
144 phy_write(phydev, MII_KSZPHY_EXTREG, regnum);
145 return phy_read(phydev, MII_KSZPHY_EXTREG_READ);
146}
147
Choi, David51f932c2010-06-28 15:23:41 +0000148static 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
Choi, David51f932c2010-06-28 15:23:41 +0000158static int kszphy_config_intr(struct phy_device *phydev)
159{
Johan Hovoldc6f95752014-11-19 12:59:22 +0100160 const struct kszphy_type *type = phydev->drv->driver_data;
161 int temp;
162 u16 mask;
163
164 if (type && type->interrupt_level_mask)
165 mask = type->interrupt_level_mask;
166 else
167 mask = KSZPHY_CTRL_INT_ACTIVE_HIGH;
Choi, David51f932c2010-06-28 15:23:41 +0000168
169 /* set the interrupt pin active low */
170 temp = phy_read(phydev, MII_KSZPHY_CTRL);
Johan Hovold5bb8fc02014-11-11 20:00:08 +0100171 if (temp < 0)
172 return temp;
Johan Hovoldc6f95752014-11-19 12:59:22 +0100173 temp &= ~mask;
Choi, David51f932c2010-06-28 15:23:41 +0000174 phy_write(phydev, MII_KSZPHY_CTRL, temp);
Choi, David51f932c2010-06-28 15:23:41 +0000175
Johan Hovoldc6f95752014-11-19 12:59:22 +0100176 /* enable / disable interrupts */
177 if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
178 temp = KSZPHY_INTCS_ALL;
179 else
180 temp = 0;
Choi, David51f932c2010-06-28 15:23:41 +0000181
Johan Hovoldc6f95752014-11-19 12:59:22 +0100182 return phy_write(phydev, MII_KSZPHY_INTCS, temp);
Choi, David51f932c2010-06-28 15:23:41 +0000183}
David J. Choid0507002010-04-29 06:12:41 +0000184
Johan Hovold63f44b22014-11-19 12:59:18 +0100185static 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
Johan Hovolde7a792e2014-11-19 12:59:16 +0100201static int kszphy_setup_led(struct phy_device *phydev, u32 reg, int val)
Ben Dooks20d84352014-02-26 11:48:00 +0000202{
Johan Hovold5a167782014-11-11 20:00:14 +0100203 int rc, temp, shift;
Johan Hovold86205462014-11-11 20:00:12 +0100204
Johan Hovold5a167782014-11-11 20:00:14 +0100205 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
Ben Dooks20d84352014-02-26 11:48:00 +0000216 temp = phy_read(phydev, reg);
Johan Hovoldb7035862014-11-11 20:00:13 +0100217 if (temp < 0) {
218 rc = temp;
219 goto out;
220 }
Ben Dooks20d84352014-02-26 11:48:00 +0000221
Sergei Shtylyov28bdc492014-03-19 02:58:16 +0300222 temp &= ~(3 << shift);
Ben Dooks20d84352014-02-26 11:48:00 +0000223 temp |= val << shift;
224 rc = phy_write(phydev, reg, temp);
Johan Hovoldb7035862014-11-11 20:00:13 +0100225out:
226 if (rc < 0)
Andrew Lunn72ba48b2016-01-06 20:11:09 +0100227 phydev_err(phydev, "failed to set led mode\n");
Ben Dooks20d84352014-02-26 11:48:00 +0000228
Johan Hovoldb7035862014-11-11 20:00:13 +0100229 return rc;
Ben Dooks20d84352014-02-26 11:48:00 +0000230}
231
Johan Hovoldbde15122014-11-11 20:00:10 +0100232/* 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)
Andrew Lunn72ba48b2016-01-06 20:11:09 +0100246 phydev_err(phydev, "failed to disable broadcast address\n");
Johan Hovoldbde15122014-11-11 20:00:10 +0100247
248 return ret;
249}
250
Sylvain Rochet2b0ba962015-02-13 21:35:33 +0100251static 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)
Andrew Lunn72ba48b2016-01-06 20:11:09 +0100266 phydev_err(phydev, "failed to disable NAND tree mode\n");
Sylvain Rochet2b0ba962015-02-13 21:35:33 +0100267
268 return ret;
269}
270
David J. Choid0507002010-04-29 06:12:41 +0000271static int kszphy_config_init(struct phy_device *phydev)
272{
Johan Hovolde6a423a2014-11-19 12:59:15 +0100273 struct kszphy_priv *priv = phydev->priv;
274 const struct kszphy_type *type;
Johan Hovold63f44b22014-11-19 12:59:18 +0100275 int ret;
David J. Choid0507002010-04-29 06:12:41 +0000276
Johan Hovolde6a423a2014-11-19 12:59:15 +0100277 if (!priv)
278 return 0;
279
280 type = priv->type;
281
Johan Hovold0f959032014-11-19 12:59:17 +0100282 if (type->has_broadcast_disable)
283 kszphy_broadcast_disable(phydev);
284
Sylvain Rochet2b0ba962015-02-13 21:35:33 +0100285 if (type->has_nand_tree_disable)
286 kszphy_nand_tree_disable(phydev);
287
Johan Hovold63f44b22014-11-19 12:59:18 +0100288 if (priv->rmii_ref_clk_sel) {
289 ret = kszphy_rmii_clk_sel(phydev, priv->rmii_ref_clk_sel_val);
290 if (ret) {
Andrew Lunn72ba48b2016-01-06 20:11:09 +0100291 phydev_err(phydev,
292 "failed to set rmii reference clock\n");
Johan Hovold63f44b22014-11-19 12:59:18 +0100293 return ret;
294 }
295 }
296
Johan Hovolde7a792e2014-11-19 12:59:16 +0100297 if (priv->led_mode >= 0)
298 kszphy_setup_led(phydev, type->led_mode_reg, priv->led_mode);
Johan Hovolde6a423a2014-11-19 12:59:15 +0100299
Alexandre Belloni99f81af2016-02-26 19:18:23 +0100300 if (phy_interrupt_is_valid(phydev)) {
301 int ctl = phy_read(phydev, MII_BMCR);
302
303 if (ctl < 0)
304 return ctl;
305
306 ret = phy_write(phydev, MII_BMCR, ctl & ~BMCR_ANENABLE);
307 if (ret < 0)
308 return ret;
309 }
310
Johan Hovolde6a423a2014-11-19 12:59:15 +0100311 return 0;
Ben Dooks20d84352014-02-26 11:48:00 +0000312}
313
Philipp Zabel77501a72016-07-14 16:29:43 +0200314static int ksz8041_config_init(struct phy_device *phydev)
315{
316 struct device_node *of_node = phydev->mdio.dev.of_node;
317
318 /* Limit supported and advertised modes in fiber mode */
319 if (of_property_read_bool(of_node, "micrel,fiber-mode")) {
320 phydev->dev_flags |= MICREL_PHY_FXEN;
321 phydev->supported &= SUPPORTED_FIBRE |
322 SUPPORTED_100baseT_Full |
323 SUPPORTED_100baseT_Half;
324 phydev->advertising &= ADVERTISED_FIBRE |
325 ADVERTISED_100baseT_Full |
326 ADVERTISED_100baseT_Half;
327 phydev->autoneg = AUTONEG_DISABLE;
328 }
329
330 return kszphy_config_init(phydev);
331}
332
333static int ksz8041_config_aneg(struct phy_device *phydev)
334{
335 /* Skip auto-negotiation in fiber mode */
336 if (phydev->dev_flags & MICREL_PHY_FXEN) {
337 phydev->speed = SPEED_100;
338 return 0;
339 }
340
341 return genphy_config_aneg(phydev);
342}
343
Sean Cross954c3962013-08-21 01:46:12 +0000344static int ksz9021_load_values_from_of(struct phy_device *phydev,
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500345 const struct device_node *of_node,
346 u16 reg,
347 const char *field1, const char *field2,
348 const char *field3, const char *field4)
Sean Cross954c3962013-08-21 01:46:12 +0000349{
350 int val1 = -1;
351 int val2 = -2;
352 int val3 = -3;
353 int val4 = -4;
354 int newval;
355 int matches = 0;
356
357 if (!of_property_read_u32(of_node, field1, &val1))
358 matches++;
359
360 if (!of_property_read_u32(of_node, field2, &val2))
361 matches++;
362
363 if (!of_property_read_u32(of_node, field3, &val3))
364 matches++;
365
366 if (!of_property_read_u32(of_node, field4, &val4))
367 matches++;
368
369 if (!matches)
370 return 0;
371
372 if (matches < 4)
373 newval = kszphy_extended_read(phydev, reg);
374 else
375 newval = 0;
376
377 if (val1 != -1)
378 newval = ((newval & 0xfff0) | ((val1 / PS_TO_REG) & 0xf) << 0);
379
Hubert Chaumette6a119742014-04-22 15:01:04 +0200380 if (val2 != -2)
Sean Cross954c3962013-08-21 01:46:12 +0000381 newval = ((newval & 0xff0f) | ((val2 / PS_TO_REG) & 0xf) << 4);
382
Hubert Chaumette6a119742014-04-22 15:01:04 +0200383 if (val3 != -3)
Sean Cross954c3962013-08-21 01:46:12 +0000384 newval = ((newval & 0xf0ff) | ((val3 / PS_TO_REG) & 0xf) << 8);
385
Hubert Chaumette6a119742014-04-22 15:01:04 +0200386 if (val4 != -4)
Sean Cross954c3962013-08-21 01:46:12 +0000387 newval = ((newval & 0x0fff) | ((val4 / PS_TO_REG) & 0xf) << 12);
388
389 return kszphy_extended_write(phydev, reg, newval);
390}
391
392static int ksz9021_config_init(struct phy_device *phydev)
393{
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100394 const struct device *dev = &phydev->mdio.dev;
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500395 const struct device_node *of_node = dev->of_node;
Andrew Lunn651df212015-12-09 19:56:31 +0100396 const struct device *dev_walker;
Sean Cross954c3962013-08-21 01:46:12 +0000397
Andrew Lunn651df212015-12-09 19:56:31 +0100398 /* The Micrel driver has a deprecated option to place phy OF
399 * properties in the MAC node. Walk up the tree of devices to
400 * find a device with an OF node.
401 */
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100402 dev_walker = &phydev->mdio.dev;
Andrew Lunn651df212015-12-09 19:56:31 +0100403 do {
404 of_node = dev_walker->of_node;
405 dev_walker = dev_walker->parent;
406
407 } while (!of_node && dev_walker);
Sean Cross954c3962013-08-21 01:46:12 +0000408
409 if (of_node) {
410 ksz9021_load_values_from_of(phydev, of_node,
411 MII_KSZPHY_CLK_CONTROL_PAD_SKEW,
412 "txen-skew-ps", "txc-skew-ps",
413 "rxdv-skew-ps", "rxc-skew-ps");
414 ksz9021_load_values_from_of(phydev, of_node,
415 MII_KSZPHY_RX_DATA_PAD_SKEW,
416 "rxd0-skew-ps", "rxd1-skew-ps",
417 "rxd2-skew-ps", "rxd3-skew-ps");
418 ksz9021_load_values_from_of(phydev, of_node,
419 MII_KSZPHY_TX_DATA_PAD_SKEW,
420 "txd0-skew-ps", "txd1-skew-ps",
421 "txd2-skew-ps", "txd3-skew-ps");
422 }
423 return 0;
424}
425
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200426#define MII_KSZ9031RN_MMD_CTRL_REG 0x0d
427#define MII_KSZ9031RN_MMD_REGDATA_REG 0x0e
428#define OP_DATA 1
429#define KSZ9031_PS_TO_REG 60
430
431/* Extended registers */
Jaeden Amero6270e1a2015-06-05 18:00:26 -0500432/* MMD Address 0x0 */
433#define MII_KSZ9031RN_FLP_BURST_TX_LO 3
434#define MII_KSZ9031RN_FLP_BURST_TX_HI 4
435
Jaeden Ameroae6c97b2015-06-05 18:00:25 -0500436/* MMD Address 0x2 */
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200437#define MII_KSZ9031RN_CONTROL_PAD_SKEW 4
438#define MII_KSZ9031RN_RX_DATA_PAD_SKEW 5
439#define MII_KSZ9031RN_TX_DATA_PAD_SKEW 6
440#define MII_KSZ9031RN_CLK_PAD_SKEW 8
441
442static int ksz9031_extended_write(struct phy_device *phydev,
443 u8 mode, u32 dev_addr, u32 regnum, u16 val)
444{
445 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, dev_addr);
446 phy_write(phydev, MII_KSZ9031RN_MMD_REGDATA_REG, regnum);
447 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, (mode << 14) | dev_addr);
448 return phy_write(phydev, MII_KSZ9031RN_MMD_REGDATA_REG, val);
449}
450
451static int ksz9031_extended_read(struct phy_device *phydev,
452 u8 mode, u32 dev_addr, u32 regnum)
453{
454 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, dev_addr);
455 phy_write(phydev, MII_KSZ9031RN_MMD_REGDATA_REG, regnum);
456 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, (mode << 14) | dev_addr);
457 return phy_read(phydev, MII_KSZ9031RN_MMD_REGDATA_REG);
458}
459
460static int ksz9031_of_load_skew_values(struct phy_device *phydev,
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500461 const struct device_node *of_node,
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200462 u16 reg, size_t field_sz,
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500463 const char *field[], u8 numfields)
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200464{
465 int val[4] = {-1, -2, -3, -4};
466 int matches = 0;
467 u16 mask;
468 u16 maxval;
469 u16 newval;
470 int i;
471
472 for (i = 0; i < numfields; i++)
473 if (!of_property_read_u32(of_node, field[i], val + i))
474 matches++;
475
476 if (!matches)
477 return 0;
478
479 if (matches < numfields)
480 newval = ksz9031_extended_read(phydev, OP_DATA, 2, reg);
481 else
482 newval = 0;
483
484 maxval = (field_sz == 4) ? 0xf : 0x1f;
485 for (i = 0; i < numfields; i++)
486 if (val[i] != -(i + 1)) {
487 mask = 0xffff;
488 mask ^= maxval << (field_sz * i);
489 newval = (newval & mask) |
490 (((val[i] / KSZ9031_PS_TO_REG) & maxval)
491 << (field_sz * i));
492 }
493
494 return ksz9031_extended_write(phydev, OP_DATA, 2, reg, newval);
495}
496
Jaeden Amero6270e1a2015-06-05 18:00:26 -0500497static int ksz9031_center_flp_timing(struct phy_device *phydev)
498{
499 int result;
500
501 /* Center KSZ9031RNX FLP timing at 16ms. */
502 result = ksz9031_extended_write(phydev, OP_DATA, 0,
503 MII_KSZ9031RN_FLP_BURST_TX_HI, 0x0006);
504 result = ksz9031_extended_write(phydev, OP_DATA, 0,
505 MII_KSZ9031RN_FLP_BURST_TX_LO, 0x1A80);
506
507 if (result)
508 return result;
509
510 return genphy_restart_aneg(phydev);
511}
512
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200513static int ksz9031_config_init(struct phy_device *phydev)
514{
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100515 const struct device *dev = &phydev->mdio.dev;
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500516 const struct device_node *of_node = dev->of_node;
517 static const char *clk_skews[2] = {"rxc-skew-ps", "txc-skew-ps"};
518 static const char *rx_data_skews[4] = {
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200519 "rxd0-skew-ps", "rxd1-skew-ps",
520 "rxd2-skew-ps", "rxd3-skew-ps"
521 };
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500522 static const char *tx_data_skews[4] = {
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200523 "txd0-skew-ps", "txd1-skew-ps",
524 "txd2-skew-ps", "txd3-skew-ps"
525 };
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500526 static const char *control_skews[2] = {"txen-skew-ps", "rxdv-skew-ps"};
Roosen Henrib4c19f72016-01-07 09:31:15 +0100527 const struct device *dev_walker;
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200528
Roosen Henrib4c19f72016-01-07 09:31:15 +0100529 /* The Micrel driver has a deprecated option to place phy OF
530 * properties in the MAC node. Walk up the tree of devices to
531 * find a device with an OF node.
532 */
David S. Miller9d367ed2016-01-11 23:55:43 -0500533 dev_walker = &phydev->mdio.dev;
Roosen Henrib4c19f72016-01-07 09:31:15 +0100534 do {
535 of_node = dev_walker->of_node;
536 dev_walker = dev_walker->parent;
537 } while (!of_node && dev_walker);
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200538
539 if (of_node) {
540 ksz9031_of_load_skew_values(phydev, of_node,
541 MII_KSZ9031RN_CLK_PAD_SKEW, 5,
542 clk_skews, 2);
543
544 ksz9031_of_load_skew_values(phydev, of_node,
545 MII_KSZ9031RN_CONTROL_PAD_SKEW, 4,
546 control_skews, 2);
547
548 ksz9031_of_load_skew_values(phydev, of_node,
549 MII_KSZ9031RN_RX_DATA_PAD_SKEW, 4,
550 rx_data_skews, 4);
551
552 ksz9031_of_load_skew_values(phydev, of_node,
553 MII_KSZ9031RN_TX_DATA_PAD_SKEW, 4,
554 tx_data_skews, 4);
555 }
Jaeden Amero6270e1a2015-06-05 18:00:26 -0500556
557 return ksz9031_center_flp_timing(phydev);
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200558}
559
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000560#define KSZ8873MLL_GLOBAL_CONTROL_4 0x06
Johan Hovold00aee092014-11-11 20:00:09 +0100561#define KSZ8873MLL_GLOBAL_CONTROL_4_DUPLEX BIT(6)
562#define KSZ8873MLL_GLOBAL_CONTROL_4_SPEED BIT(4)
Jingoo Han32d73b12013-08-06 17:29:35 +0900563static int ksz8873mll_read_status(struct phy_device *phydev)
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000564{
565 int regval;
566
567 /* dummy read */
568 regval = phy_read(phydev, KSZ8873MLL_GLOBAL_CONTROL_4);
569
570 regval = phy_read(phydev, KSZ8873MLL_GLOBAL_CONTROL_4);
571
572 if (regval & KSZ8873MLL_GLOBAL_CONTROL_4_DUPLEX)
573 phydev->duplex = DUPLEX_HALF;
574 else
575 phydev->duplex = DUPLEX_FULL;
576
577 if (regval & KSZ8873MLL_GLOBAL_CONTROL_4_SPEED)
578 phydev->speed = SPEED_10;
579 else
580 phydev->speed = SPEED_100;
581
582 phydev->link = 1;
583 phydev->pause = phydev->asym_pause = 0;
584
585 return 0;
586}
587
Nathan Sullivand2fd7192015-10-21 14:17:04 -0500588static int ksz9031_read_status(struct phy_device *phydev)
589{
590 int err;
591 int regval;
592
593 err = genphy_read_status(phydev);
594 if (err)
595 return err;
596
597 /* Make sure the PHY is not broken. Read idle error count,
598 * and reset the PHY if it is maxed out.
599 */
600 regval = phy_read(phydev, MII_STAT1000);
601 if ((regval & 0xFF) == 0xFF) {
602 phy_init_hw(phydev);
603 phydev->link = 0;
604 }
605
606 return 0;
607}
608
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000609static int ksz8873mll_config_aneg(struct phy_device *phydev)
610{
611 return 0;
612}
613
Vince Bridgers19936942014-07-29 15:19:58 -0500614/* This routine returns -1 as an indication to the caller that the
615 * Micrel ksz9021 10/100/1000 PHY does not support standard IEEE
616 * MMD extended PHY registers.
617 */
618static int
619ksz9021_rd_mmd_phyreg(struct phy_device *phydev, int ptrad, int devnum,
620 int regnum)
621{
622 return -1;
623}
624
625/* This routine does nothing since the Micrel ksz9021 does not support
626 * standard IEEE MMD extended PHY registers.
627 */
628static void
629ksz9021_wr_mmd_phyreg(struct phy_device *phydev, int ptrad, int devnum,
630 int regnum, u32 val)
631{
632}
633
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100634static int kszphy_get_sset_count(struct phy_device *phydev)
635{
636 return ARRAY_SIZE(kszphy_hw_stats);
637}
638
639static void kszphy_get_strings(struct phy_device *phydev, u8 *data)
640{
641 int i;
642
643 for (i = 0; i < ARRAY_SIZE(kszphy_hw_stats); i++) {
644 memcpy(data + i * ETH_GSTRING_LEN,
645 kszphy_hw_stats[i].string, ETH_GSTRING_LEN);
646 }
647}
648
649#ifndef UINT64_MAX
650#define UINT64_MAX (u64)(~((u64)0))
651#endif
652static u64 kszphy_get_stat(struct phy_device *phydev, int i)
653{
654 struct kszphy_hw_stat stat = kszphy_hw_stats[i];
655 struct kszphy_priv *priv = phydev->priv;
Andrew Lunn321b4d42016-02-20 00:35:29 +0100656 int val;
657 u64 ret;
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100658
659 val = phy_read(phydev, stat.reg);
660 if (val < 0) {
Andrew Lunn321b4d42016-02-20 00:35:29 +0100661 ret = UINT64_MAX;
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100662 } else {
663 val = val & ((1 << stat.bits) - 1);
664 priv->stats[i] += val;
Andrew Lunn321b4d42016-02-20 00:35:29 +0100665 ret = priv->stats[i];
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100666 }
667
Andrew Lunn321b4d42016-02-20 00:35:29 +0100668 return ret;
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100669}
670
671static void kszphy_get_stats(struct phy_device *phydev,
672 struct ethtool_stats *stats, u64 *data)
673{
674 int i;
675
676 for (i = 0; i < ARRAY_SIZE(kszphy_hw_stats); i++)
677 data[i] = kszphy_get_stat(phydev, i);
678}
679
Wenyou Yang836384d2016-08-05 14:35:41 +0800680static int kszphy_suspend(struct phy_device *phydev)
681{
682 /* Disable PHY Interrupts */
683 if (phy_interrupt_is_valid(phydev)) {
684 phydev->interrupts = PHY_INTERRUPT_DISABLED;
685 if (phydev->drv->config_intr)
686 phydev->drv->config_intr(phydev);
687 }
688
689 return genphy_suspend(phydev);
690}
691
Alexandre Bellonif5aba912016-02-26 19:18:22 +0100692static int kszphy_resume(struct phy_device *phydev)
693{
Wenyou Yang836384d2016-08-05 14:35:41 +0800694 genphy_resume(phydev);
Alexandre Bellonif5aba912016-02-26 19:18:22 +0100695
Wenyou Yang836384d2016-08-05 14:35:41 +0800696 /* Enable PHY Interrupts */
697 if (phy_interrupt_is_valid(phydev)) {
698 phydev->interrupts = PHY_INTERRUPT_ENABLED;
699 if (phydev->drv->config_intr)
700 phydev->drv->config_intr(phydev);
701 }
Alexandre Bellonif5aba912016-02-26 19:18:22 +0100702
703 return 0;
704}
705
Johan Hovolde6a423a2014-11-19 12:59:15 +0100706static int kszphy_probe(struct phy_device *phydev)
707{
708 const struct kszphy_type *type = phydev->drv->driver_data;
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100709 const struct device_node *np = phydev->mdio.dev.of_node;
Johan Hovolde6a423a2014-11-19 12:59:15 +0100710 struct kszphy_priv *priv;
Johan Hovold63f44b22014-11-19 12:59:18 +0100711 struct clk *clk;
Johan Hovolde7a792e2014-11-19 12:59:16 +0100712 int ret;
Johan Hovolde6a423a2014-11-19 12:59:15 +0100713
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100714 priv = devm_kzalloc(&phydev->mdio.dev, sizeof(*priv), GFP_KERNEL);
Johan Hovolde6a423a2014-11-19 12:59:15 +0100715 if (!priv)
716 return -ENOMEM;
717
718 phydev->priv = priv;
719
720 priv->type = type;
721
Johan Hovolde7a792e2014-11-19 12:59:16 +0100722 if (type->led_mode_reg) {
723 ret = of_property_read_u32(np, "micrel,led-mode",
724 &priv->led_mode);
725 if (ret)
726 priv->led_mode = -1;
727
728 if (priv->led_mode > 3) {
Andrew Lunn72ba48b2016-01-06 20:11:09 +0100729 phydev_err(phydev, "invalid led mode: 0x%02x\n",
730 priv->led_mode);
Johan Hovolde7a792e2014-11-19 12:59:16 +0100731 priv->led_mode = -1;
732 }
733 } else {
734 priv->led_mode = -1;
735 }
736
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100737 clk = devm_clk_get(&phydev->mdio.dev, "rmii-ref");
Niklas Casselbced8702015-05-12 09:43:14 +0200738 /* NOTE: clk may be NULL if building without CONFIG_HAVE_CLK */
739 if (!IS_ERR_OR_NULL(clk)) {
Sascha Hauer1fadee02014-10-10 09:48:05 +0200740 unsigned long rate = clk_get_rate(clk);
Johan Hovold86dc1342014-11-19 12:59:19 +0100741 bool rmii_ref_clk_sel_25_mhz;
Sascha Hauer1fadee02014-10-10 09:48:05 +0200742
Johan Hovold63f44b22014-11-19 12:59:18 +0100743 priv->rmii_ref_clk_sel = type->has_rmii_ref_clk_sel;
Johan Hovold86dc1342014-11-19 12:59:19 +0100744 rmii_ref_clk_sel_25_mhz = of_property_read_bool(np,
745 "micrel,rmii-reference-clock-select-25-mhz");
Johan Hovold63f44b22014-11-19 12:59:18 +0100746
Sascha Hauer1fadee02014-10-10 09:48:05 +0200747 if (rate > 24500000 && rate < 25500000) {
Johan Hovold86dc1342014-11-19 12:59:19 +0100748 priv->rmii_ref_clk_sel_val = rmii_ref_clk_sel_25_mhz;
Sascha Hauer1fadee02014-10-10 09:48:05 +0200749 } else if (rate > 49500000 && rate < 50500000) {
Johan Hovold86dc1342014-11-19 12:59:19 +0100750 priv->rmii_ref_clk_sel_val = !rmii_ref_clk_sel_25_mhz;
Sascha Hauer1fadee02014-10-10 09:48:05 +0200751 } else {
Andrew Lunn72ba48b2016-01-06 20:11:09 +0100752 phydev_err(phydev, "Clock rate out of range: %ld\n",
753 rate);
Sascha Hauer1fadee02014-10-10 09:48:05 +0200754 return -EINVAL;
755 }
756 }
757
Johan Hovold63f44b22014-11-19 12:59:18 +0100758 /* Support legacy board-file configuration */
759 if (phydev->dev_flags & MICREL_PHY_50MHZ_CLK) {
760 priv->rmii_ref_clk_sel = true;
761 priv->rmii_ref_clk_sel_val = true;
762 }
763
764 return 0;
Sascha Hauer1fadee02014-10-10 09:48:05 +0200765}
766
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000767static struct phy_driver ksphy_driver[] = {
768{
Choi, David51f932c2010-06-28 15:23:41 +0000769 .phy_id = PHY_ID_KS8737,
Fabio Estevamf893a992016-05-11 17:02:05 -0300770 .phy_id_mask = MICREL_PHY_ID_MASK,
Choi, David51f932c2010-06-28 15:23:41 +0000771 .name = "Micrel KS8737",
772 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
773 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100774 .driver_data = &ks8737_type,
David J. Choid0507002010-04-29 06:12:41 +0000775 .config_init = kszphy_config_init,
776 .config_aneg = genphy_config_aneg,
777 .read_status = genphy_read_status,
Choi, David51f932c2010-06-28 15:23:41 +0000778 .ack_interrupt = kszphy_ack_interrupt,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100779 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100780 .get_sset_count = kszphy_get_sset_count,
781 .get_strings = kszphy_get_strings,
782 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200783 .suspend = genphy_suspend,
784 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000785}, {
Marek Vasut212ea992012-09-23 16:58:49 +0000786 .phy_id = PHY_ID_KSZ8021,
787 .phy_id_mask = 0x00ffffff,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000788 .name = "Micrel KSZ8021 or KSZ8031",
Marek Vasut212ea992012-09-23 16:58:49 +0000789 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause |
790 SUPPORTED_Asym_Pause),
791 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100792 .driver_data = &ksz8021_type,
Johan Hovold63f44b22014-11-19 12:59:18 +0100793 .probe = kszphy_probe,
Johan Hovoldd0e1df92014-12-23 12:59:17 +0100794 .config_init = kszphy_config_init,
Marek Vasut212ea992012-09-23 16:58:49 +0000795 .config_aneg = genphy_config_aneg,
796 .read_status = genphy_read_status,
797 .ack_interrupt = kszphy_ack_interrupt,
798 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100799 .get_sset_count = kszphy_get_sset_count,
800 .get_strings = kszphy_get_strings,
801 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200802 .suspend = genphy_suspend,
803 .resume = genphy_resume,
Marek Vasut212ea992012-09-23 16:58:49 +0000804}, {
Hector Palaciosb818d1a2013-03-10 22:50:02 +0000805 .phy_id = PHY_ID_KSZ8031,
806 .phy_id_mask = 0x00ffffff,
807 .name = "Micrel KSZ8031",
808 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause |
809 SUPPORTED_Asym_Pause),
810 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100811 .driver_data = &ksz8021_type,
Johan Hovold63f44b22014-11-19 12:59:18 +0100812 .probe = kszphy_probe,
Johan Hovoldd0e1df92014-12-23 12:59:17 +0100813 .config_init = kszphy_config_init,
Hector Palaciosb818d1a2013-03-10 22:50:02 +0000814 .config_aneg = genphy_config_aneg,
815 .read_status = genphy_read_status,
816 .ack_interrupt = kszphy_ack_interrupt,
817 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100818 .get_sset_count = kszphy_get_sset_count,
819 .get_strings = kszphy_get_strings,
820 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200821 .suspend = genphy_suspend,
822 .resume = genphy_resume,
Hector Palaciosb818d1a2013-03-10 22:50:02 +0000823}, {
Marek Vasut510d5732012-09-23 16:58:50 +0000824 .phy_id = PHY_ID_KSZ8041,
Fabio Estevamf893a992016-05-11 17:02:05 -0300825 .phy_id_mask = MICREL_PHY_ID_MASK,
Marek Vasut510d5732012-09-23 16:58:50 +0000826 .name = "Micrel KSZ8041",
Choi, David51f932c2010-06-28 15:23:41 +0000827 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause
828 | SUPPORTED_Asym_Pause),
829 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100830 .driver_data = &ksz8041_type,
831 .probe = kszphy_probe,
Philipp Zabel77501a72016-07-14 16:29:43 +0200832 .config_init = ksz8041_config_init,
833 .config_aneg = ksz8041_config_aneg,
David J. Choid0507002010-04-29 06:12:41 +0000834 .read_status = genphy_read_status,
Choi, David51f932c2010-06-28 15:23:41 +0000835 .ack_interrupt = kszphy_ack_interrupt,
836 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100837 .get_sset_count = kszphy_get_sset_count,
838 .get_strings = kszphy_get_strings,
839 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200840 .suspend = genphy_suspend,
841 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000842}, {
Sergei Shtylyov4bd7b512013-12-10 02:20:41 +0300843 .phy_id = PHY_ID_KSZ8041RNLI,
Fabio Estevamf893a992016-05-11 17:02:05 -0300844 .phy_id_mask = MICREL_PHY_ID_MASK,
Sergei Shtylyov4bd7b512013-12-10 02:20:41 +0300845 .name = "Micrel KSZ8041RNLI",
846 .features = PHY_BASIC_FEATURES |
847 SUPPORTED_Pause | SUPPORTED_Asym_Pause,
848 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100849 .driver_data = &ksz8041_type,
850 .probe = kszphy_probe,
851 .config_init = kszphy_config_init,
Sergei Shtylyov4bd7b512013-12-10 02:20:41 +0300852 .config_aneg = genphy_config_aneg,
853 .read_status = genphy_read_status,
854 .ack_interrupt = kszphy_ack_interrupt,
855 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100856 .get_sset_count = kszphy_get_sset_count,
857 .get_strings = kszphy_get_strings,
858 .get_stats = kszphy_get_stats,
Sergei Shtylyov4bd7b512013-12-10 02:20:41 +0300859 .suspend = genphy_suspend,
860 .resume = genphy_resume,
Sergei Shtylyov4bd7b512013-12-10 02:20:41 +0300861}, {
Marek Vasut510d5732012-09-23 16:58:50 +0000862 .phy_id = PHY_ID_KSZ8051,
Fabio Estevamf893a992016-05-11 17:02:05 -0300863 .phy_id_mask = MICREL_PHY_ID_MASK,
Marek Vasut510d5732012-09-23 16:58:50 +0000864 .name = "Micrel KSZ8051",
Choi, David51f932c2010-06-28 15:23:41 +0000865 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause
866 | SUPPORTED_Asym_Pause),
867 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100868 .driver_data = &ksz8051_type,
869 .probe = kszphy_probe,
Johan Hovold63f44b22014-11-19 12:59:18 +0100870 .config_init = kszphy_config_init,
Choi, David51f932c2010-06-28 15:23:41 +0000871 .config_aneg = genphy_config_aneg,
872 .read_status = genphy_read_status,
873 .ack_interrupt = kszphy_ack_interrupt,
874 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100875 .get_sset_count = kszphy_get_sset_count,
876 .get_strings = kszphy_get_strings,
877 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200878 .suspend = genphy_suspend,
879 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000880}, {
Marek Vasut510d5732012-09-23 16:58:50 +0000881 .phy_id = PHY_ID_KSZ8001,
882 .name = "Micrel KSZ8001 or KS8721",
Alexander Steinecd5a322016-07-29 12:12:08 +0200883 .phy_id_mask = 0x00fffffc,
Choi, David51f932c2010-06-28 15:23:41 +0000884 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
885 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100886 .driver_data = &ksz8041_type,
887 .probe = kszphy_probe,
888 .config_init = kszphy_config_init,
Choi, David51f932c2010-06-28 15:23:41 +0000889 .config_aneg = genphy_config_aneg,
890 .read_status = genphy_read_status,
891 .ack_interrupt = kszphy_ack_interrupt,
892 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100893 .get_sset_count = kszphy_get_sset_count,
894 .get_strings = kszphy_get_strings,
895 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200896 .suspend = genphy_suspend,
897 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000898}, {
David J. Choi7ab59dc2013-01-23 14:05:15 +0000899 .phy_id = PHY_ID_KSZ8081,
900 .name = "Micrel KSZ8081 or KSZ8091",
Fabio Estevamf893a992016-05-11 17:02:05 -0300901 .phy_id_mask = MICREL_PHY_ID_MASK,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000902 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
903 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100904 .driver_data = &ksz8081_type,
905 .probe = kszphy_probe,
Johan Hovold0f959032014-11-19 12:59:17 +0100906 .config_init = kszphy_config_init,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000907 .config_aneg = genphy_config_aneg,
908 .read_status = genphy_read_status,
909 .ack_interrupt = kszphy_ack_interrupt,
910 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100911 .get_sset_count = kszphy_get_sset_count,
912 .get_strings = kszphy_get_strings,
913 .get_stats = kszphy_get_stats,
Wenyou Yang836384d2016-08-05 14:35:41 +0800914 .suspend = kszphy_suspend,
Alexandre Bellonif5aba912016-02-26 19:18:22 +0100915 .resume = kszphy_resume,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000916}, {
917 .phy_id = PHY_ID_KSZ8061,
918 .name = "Micrel KSZ8061",
Fabio Estevamf893a992016-05-11 17:02:05 -0300919 .phy_id_mask = MICREL_PHY_ID_MASK,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000920 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
921 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
922 .config_init = kszphy_config_init,
923 .config_aneg = genphy_config_aneg,
924 .read_status = genphy_read_status,
925 .ack_interrupt = kszphy_ack_interrupt,
926 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100927 .get_sset_count = kszphy_get_sset_count,
928 .get_strings = kszphy_get_strings,
929 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200930 .suspend = genphy_suspend,
931 .resume = genphy_resume,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000932}, {
David J. Choid0507002010-04-29 06:12:41 +0000933 .phy_id = PHY_ID_KSZ9021,
Jason Wang48d7d0a2012-06-17 22:52:09 +0000934 .phy_id_mask = 0x000ffffe,
David J. Choid0507002010-04-29 06:12:41 +0000935 .name = "Micrel KSZ9021 Gigabit PHY",
Vlastimil Kosar32fcafb2013-02-28 08:45:22 +0000936 .features = (PHY_GBIT_FEATURES | SUPPORTED_Pause),
Choi, David51f932c2010-06-28 15:23:41 +0000937 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100938 .driver_data = &ksz9021_type,
Sean Cross954c3962013-08-21 01:46:12 +0000939 .config_init = ksz9021_config_init,
David J. Choid0507002010-04-29 06:12:41 +0000940 .config_aneg = genphy_config_aneg,
941 .read_status = genphy_read_status,
Choi, David51f932c2010-06-28 15:23:41 +0000942 .ack_interrupt = kszphy_ack_interrupt,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100943 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100944 .get_sset_count = kszphy_get_sset_count,
945 .get_strings = kszphy_get_strings,
946 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200947 .suspend = genphy_suspend,
948 .resume = genphy_resume,
Vince Bridgers19936942014-07-29 15:19:58 -0500949 .read_mmd_indirect = ksz9021_rd_mmd_phyreg,
950 .write_mmd_indirect = ksz9021_wr_mmd_phyreg,
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000951}, {
David J. Choi7ab59dc2013-01-23 14:05:15 +0000952 .phy_id = PHY_ID_KSZ9031,
Fabio Estevamf893a992016-05-11 17:02:05 -0300953 .phy_id_mask = MICREL_PHY_ID_MASK,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000954 .name = "Micrel KSZ9031 Gigabit PHY",
Mike Looijmans95e8b102014-09-15 12:06:33 +0200955 .features = (PHY_GBIT_FEATURES | SUPPORTED_Pause),
David J. Choi7ab59dc2013-01-23 14:05:15 +0000956 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100957 .driver_data = &ksz9021_type,
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200958 .config_init = ksz9031_config_init,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000959 .config_aneg = genphy_config_aneg,
Nathan Sullivand2fd7192015-10-21 14:17:04 -0500960 .read_status = ksz9031_read_status,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000961 .ack_interrupt = kszphy_ack_interrupt,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100962 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100963 .get_sset_count = kszphy_get_sset_count,
964 .get_strings = kszphy_get_strings,
965 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200966 .suspend = genphy_suspend,
967 .resume = genphy_resume,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000968}, {
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000969 .phy_id = PHY_ID_KSZ8873MLL,
Fabio Estevamf893a992016-05-11 17:02:05 -0300970 .phy_id_mask = MICREL_PHY_ID_MASK,
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000971 .name = "Micrel KSZ8873MLL Switch",
972 .features = (SUPPORTED_Pause | SUPPORTED_Asym_Pause),
973 .flags = PHY_HAS_MAGICANEG,
974 .config_init = kszphy_config_init,
975 .config_aneg = ksz8873mll_config_aneg,
976 .read_status = ksz8873mll_read_status,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100977 .get_sset_count = kszphy_get_sset_count,
978 .get_strings = kszphy_get_strings,
979 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200980 .suspend = genphy_suspend,
981 .resume = genphy_resume,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000982}, {
983 .phy_id = PHY_ID_KSZ886X,
Fabio Estevamf893a992016-05-11 17:02:05 -0300984 .phy_id_mask = MICREL_PHY_ID_MASK,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000985 .name = "Micrel KSZ886X Switch",
986 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
987 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
988 .config_init = kszphy_config_init,
989 .config_aneg = genphy_config_aneg,
990 .read_status = genphy_read_status,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100991 .get_sset_count = kszphy_get_sset_count,
992 .get_strings = kszphy_get_strings,
993 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200994 .suspend = genphy_suspend,
995 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000996} };
David J. Choid0507002010-04-29 06:12:41 +0000997
Johan Hovold50fd7152014-11-11 19:45:59 +0100998module_phy_driver(ksphy_driver);
David J. Choid0507002010-04-29 06:12:41 +0000999
1000MODULE_DESCRIPTION("Micrel PHY driver");
1001MODULE_AUTHOR("David J. Choi");
1002MODULE_LICENSE("GPL");
David S. Miller52a60ed2010-05-03 15:48:29 -07001003
Uwe Kleine-Königcf93c942010-10-03 23:43:32 +00001004static struct mdio_device_id __maybe_unused micrel_tbl[] = {
Jason Wang48d7d0a2012-06-17 22:52:09 +00001005 { PHY_ID_KSZ9021, 0x000ffffe },
Fabio Estevamf893a992016-05-11 17:02:05 -03001006 { PHY_ID_KSZ9031, MICREL_PHY_ID_MASK },
Alexander Steinecd5a322016-07-29 12:12:08 +02001007 { PHY_ID_KSZ8001, 0x00fffffc },
Fabio Estevamf893a992016-05-11 17:02:05 -03001008 { PHY_ID_KS8737, MICREL_PHY_ID_MASK },
Marek Vasut212ea992012-09-23 16:58:49 +00001009 { PHY_ID_KSZ8021, 0x00ffffff },
Hector Palaciosb818d1a2013-03-10 22:50:02 +00001010 { PHY_ID_KSZ8031, 0x00ffffff },
Fabio Estevamf893a992016-05-11 17:02:05 -03001011 { PHY_ID_KSZ8041, MICREL_PHY_ID_MASK },
1012 { PHY_ID_KSZ8051, MICREL_PHY_ID_MASK },
1013 { PHY_ID_KSZ8061, MICREL_PHY_ID_MASK },
1014 { PHY_ID_KSZ8081, MICREL_PHY_ID_MASK },
1015 { PHY_ID_KSZ8873MLL, MICREL_PHY_ID_MASK },
1016 { PHY_ID_KSZ886X, MICREL_PHY_ID_MASK },
David S. Miller52a60ed2010-05-03 15:48:29 -07001017 { }
1018};
1019
1020MODULE_DEVICE_TABLE(mdio, micrel_tbl);