blob: ea92d524d5a814ff22727eefa1818c0b0fd47a32 [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;
Kirill Esipovffa54a22016-11-21 19:53:31 +0300321 phydev->supported &= SUPPORTED_100baseT_Full |
Philipp Zabel77501a72016-07-14 16:29:43 +0200322 SUPPORTED_100baseT_Half;
Kirill Esipovffa54a22016-11-21 19:53:31 +0300323 phydev->supported |= SUPPORTED_FIBRE;
324 phydev->advertising &= ADVERTISED_100baseT_Full |
Philipp Zabel77501a72016-07-14 16:29:43 +0200325 ADVERTISED_100baseT_Half;
Kirill Esipovffa54a22016-11-21 19:53:31 +0300326 phydev->advertising |= ADVERTISED_FIBRE;
Philipp Zabel77501a72016-07-14 16:29:43 +0200327 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
Mike Looijmansaf70c1f2016-10-04 07:52:04 +0200442/* MMD Address 0x1C */
443#define MII_KSZ9031RN_EDPD 0x23
444#define MII_KSZ9031RN_EDPD_ENABLE BIT(0)
445
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200446static int ksz9031_extended_write(struct phy_device *phydev,
447 u8 mode, u32 dev_addr, u32 regnum, u16 val)
448{
449 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, dev_addr);
450 phy_write(phydev, MII_KSZ9031RN_MMD_REGDATA_REG, regnum);
451 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, (mode << 14) | dev_addr);
452 return phy_write(phydev, MII_KSZ9031RN_MMD_REGDATA_REG, val);
453}
454
455static int ksz9031_extended_read(struct phy_device *phydev,
456 u8 mode, u32 dev_addr, u32 regnum)
457{
458 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, dev_addr);
459 phy_write(phydev, MII_KSZ9031RN_MMD_REGDATA_REG, regnum);
460 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, (mode << 14) | dev_addr);
461 return phy_read(phydev, MII_KSZ9031RN_MMD_REGDATA_REG);
462}
463
464static int ksz9031_of_load_skew_values(struct phy_device *phydev,
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500465 const struct device_node *of_node,
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200466 u16 reg, size_t field_sz,
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500467 const char *field[], u8 numfields)
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200468{
469 int val[4] = {-1, -2, -3, -4};
470 int matches = 0;
471 u16 mask;
472 u16 maxval;
473 u16 newval;
474 int i;
475
476 for (i = 0; i < numfields; i++)
477 if (!of_property_read_u32(of_node, field[i], val + i))
478 matches++;
479
480 if (!matches)
481 return 0;
482
483 if (matches < numfields)
484 newval = ksz9031_extended_read(phydev, OP_DATA, 2, reg);
485 else
486 newval = 0;
487
488 maxval = (field_sz == 4) ? 0xf : 0x1f;
489 for (i = 0; i < numfields; i++)
490 if (val[i] != -(i + 1)) {
491 mask = 0xffff;
492 mask ^= maxval << (field_sz * i);
493 newval = (newval & mask) |
494 (((val[i] / KSZ9031_PS_TO_REG) & maxval)
495 << (field_sz * i));
496 }
497
498 return ksz9031_extended_write(phydev, OP_DATA, 2, reg, newval);
499}
500
Jaeden Amero6270e1a2015-06-05 18:00:26 -0500501static int ksz9031_center_flp_timing(struct phy_device *phydev)
502{
503 int result;
504
505 /* Center KSZ9031RNX FLP timing at 16ms. */
506 result = ksz9031_extended_write(phydev, OP_DATA, 0,
507 MII_KSZ9031RN_FLP_BURST_TX_HI, 0x0006);
508 result = ksz9031_extended_write(phydev, OP_DATA, 0,
509 MII_KSZ9031RN_FLP_BURST_TX_LO, 0x1A80);
510
511 if (result)
512 return result;
513
514 return genphy_restart_aneg(phydev);
515}
516
Mike Looijmansaf70c1f2016-10-04 07:52:04 +0200517/* Enable energy-detect power-down mode */
518static int ksz9031_enable_edpd(struct phy_device *phydev)
519{
520 int reg;
521
522 reg = ksz9031_extended_read(phydev, OP_DATA, 0x1C, MII_KSZ9031RN_EDPD);
523 if (reg < 0)
524 return reg;
525 return ksz9031_extended_write(phydev, OP_DATA, 0x1C, MII_KSZ9031RN_EDPD,
526 reg | MII_KSZ9031RN_EDPD_ENABLE);
527}
528
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200529static int ksz9031_config_init(struct phy_device *phydev)
530{
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100531 const struct device *dev = &phydev->mdio.dev;
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500532 const struct device_node *of_node = dev->of_node;
533 static const char *clk_skews[2] = {"rxc-skew-ps", "txc-skew-ps"};
534 static const char *rx_data_skews[4] = {
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200535 "rxd0-skew-ps", "rxd1-skew-ps",
536 "rxd2-skew-ps", "rxd3-skew-ps"
537 };
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500538 static const char *tx_data_skews[4] = {
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200539 "txd0-skew-ps", "txd1-skew-ps",
540 "txd2-skew-ps", "txd3-skew-ps"
541 };
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500542 static const char *control_skews[2] = {"txen-skew-ps", "rxdv-skew-ps"};
Roosen Henrib4c19f72016-01-07 09:31:15 +0100543 const struct device *dev_walker;
Mike Looijmansaf70c1f2016-10-04 07:52:04 +0200544 int result;
545
546 result = ksz9031_enable_edpd(phydev);
547 if (result < 0)
548 return result;
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200549
Roosen Henrib4c19f72016-01-07 09:31:15 +0100550 /* The Micrel driver has a deprecated option to place phy OF
551 * properties in the MAC node. Walk up the tree of devices to
552 * find a device with an OF node.
553 */
David S. Miller9d367ed2016-01-11 23:55:43 -0500554 dev_walker = &phydev->mdio.dev;
Roosen Henrib4c19f72016-01-07 09:31:15 +0100555 do {
556 of_node = dev_walker->of_node;
557 dev_walker = dev_walker->parent;
558 } while (!of_node && dev_walker);
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200559
560 if (of_node) {
561 ksz9031_of_load_skew_values(phydev, of_node,
562 MII_KSZ9031RN_CLK_PAD_SKEW, 5,
563 clk_skews, 2);
564
565 ksz9031_of_load_skew_values(phydev, of_node,
566 MII_KSZ9031RN_CONTROL_PAD_SKEW, 4,
567 control_skews, 2);
568
569 ksz9031_of_load_skew_values(phydev, of_node,
570 MII_KSZ9031RN_RX_DATA_PAD_SKEW, 4,
571 rx_data_skews, 4);
572
573 ksz9031_of_load_skew_values(phydev, of_node,
574 MII_KSZ9031RN_TX_DATA_PAD_SKEW, 4,
575 tx_data_skews, 4);
576 }
Jaeden Amero6270e1a2015-06-05 18:00:26 -0500577
578 return ksz9031_center_flp_timing(phydev);
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200579}
580
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000581#define KSZ8873MLL_GLOBAL_CONTROL_4 0x06
Johan Hovold00aee092014-11-11 20:00:09 +0100582#define KSZ8873MLL_GLOBAL_CONTROL_4_DUPLEX BIT(6)
583#define KSZ8873MLL_GLOBAL_CONTROL_4_SPEED BIT(4)
Jingoo Han32d73b12013-08-06 17:29:35 +0900584static int ksz8873mll_read_status(struct phy_device *phydev)
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000585{
586 int regval;
587
588 /* dummy read */
589 regval = phy_read(phydev, KSZ8873MLL_GLOBAL_CONTROL_4);
590
591 regval = phy_read(phydev, KSZ8873MLL_GLOBAL_CONTROL_4);
592
593 if (regval & KSZ8873MLL_GLOBAL_CONTROL_4_DUPLEX)
594 phydev->duplex = DUPLEX_HALF;
595 else
596 phydev->duplex = DUPLEX_FULL;
597
598 if (regval & KSZ8873MLL_GLOBAL_CONTROL_4_SPEED)
599 phydev->speed = SPEED_10;
600 else
601 phydev->speed = SPEED_100;
602
603 phydev->link = 1;
604 phydev->pause = phydev->asym_pause = 0;
605
606 return 0;
607}
608
Nathan Sullivand2fd7192015-10-21 14:17:04 -0500609static int ksz9031_read_status(struct phy_device *phydev)
610{
611 int err;
612 int regval;
613
614 err = genphy_read_status(phydev);
615 if (err)
616 return err;
617
618 /* Make sure the PHY is not broken. Read idle error count,
619 * and reset the PHY if it is maxed out.
620 */
621 regval = phy_read(phydev, MII_STAT1000);
622 if ((regval & 0xFF) == 0xFF) {
623 phy_init_hw(phydev);
624 phydev->link = 0;
625 }
626
627 return 0;
628}
629
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000630static int ksz8873mll_config_aneg(struct phy_device *phydev)
631{
632 return 0;
633}
634
Vince Bridgers19936942014-07-29 15:19:58 -0500635/* This routine returns -1 as an indication to the caller that the
636 * Micrel ksz9021 10/100/1000 PHY does not support standard IEEE
637 * MMD extended PHY registers.
638 */
639static int
640ksz9021_rd_mmd_phyreg(struct phy_device *phydev, int ptrad, int devnum,
641 int regnum)
642{
643 return -1;
644}
645
646/* This routine does nothing since the Micrel ksz9021 does not support
647 * standard IEEE MMD extended PHY registers.
648 */
649static void
650ksz9021_wr_mmd_phyreg(struct phy_device *phydev, int ptrad, int devnum,
651 int regnum, u32 val)
652{
653}
654
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100655static int kszphy_get_sset_count(struct phy_device *phydev)
656{
657 return ARRAY_SIZE(kszphy_hw_stats);
658}
659
660static void kszphy_get_strings(struct phy_device *phydev, u8 *data)
661{
662 int i;
663
664 for (i = 0; i < ARRAY_SIZE(kszphy_hw_stats); i++) {
665 memcpy(data + i * ETH_GSTRING_LEN,
666 kszphy_hw_stats[i].string, ETH_GSTRING_LEN);
667 }
668}
669
670#ifndef UINT64_MAX
671#define UINT64_MAX (u64)(~((u64)0))
672#endif
673static u64 kszphy_get_stat(struct phy_device *phydev, int i)
674{
675 struct kszphy_hw_stat stat = kszphy_hw_stats[i];
676 struct kszphy_priv *priv = phydev->priv;
Andrew Lunn321b4d42016-02-20 00:35:29 +0100677 int val;
678 u64 ret;
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100679
680 val = phy_read(phydev, stat.reg);
681 if (val < 0) {
Andrew Lunn321b4d42016-02-20 00:35:29 +0100682 ret = UINT64_MAX;
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100683 } else {
684 val = val & ((1 << stat.bits) - 1);
685 priv->stats[i] += val;
Andrew Lunn321b4d42016-02-20 00:35:29 +0100686 ret = priv->stats[i];
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100687 }
688
Andrew Lunn321b4d42016-02-20 00:35:29 +0100689 return ret;
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100690}
691
692static void kszphy_get_stats(struct phy_device *phydev,
693 struct ethtool_stats *stats, u64 *data)
694{
695 int i;
696
697 for (i = 0; i < ARRAY_SIZE(kszphy_hw_stats); i++)
698 data[i] = kszphy_get_stat(phydev, i);
699}
700
Wenyou Yang836384d2016-08-05 14:35:41 +0800701static int kszphy_suspend(struct phy_device *phydev)
702{
703 /* Disable PHY Interrupts */
704 if (phy_interrupt_is_valid(phydev)) {
705 phydev->interrupts = PHY_INTERRUPT_DISABLED;
706 if (phydev->drv->config_intr)
707 phydev->drv->config_intr(phydev);
708 }
709
710 return genphy_suspend(phydev);
711}
712
Alexandre Bellonif5aba912016-02-26 19:18:22 +0100713static int kszphy_resume(struct phy_device *phydev)
714{
Wenyou Yang836384d2016-08-05 14:35:41 +0800715 genphy_resume(phydev);
Alexandre Bellonif5aba912016-02-26 19:18:22 +0100716
Wenyou Yang836384d2016-08-05 14:35:41 +0800717 /* Enable PHY Interrupts */
718 if (phy_interrupt_is_valid(phydev)) {
719 phydev->interrupts = PHY_INTERRUPT_ENABLED;
720 if (phydev->drv->config_intr)
721 phydev->drv->config_intr(phydev);
722 }
Alexandre Bellonif5aba912016-02-26 19:18:22 +0100723
724 return 0;
725}
726
Johan Hovolde6a423a2014-11-19 12:59:15 +0100727static int kszphy_probe(struct phy_device *phydev)
728{
729 const struct kszphy_type *type = phydev->drv->driver_data;
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100730 const struct device_node *np = phydev->mdio.dev.of_node;
Johan Hovolde6a423a2014-11-19 12:59:15 +0100731 struct kszphy_priv *priv;
Johan Hovold63f44b22014-11-19 12:59:18 +0100732 struct clk *clk;
Johan Hovolde7a792e2014-11-19 12:59:16 +0100733 int ret;
Johan Hovolde6a423a2014-11-19 12:59:15 +0100734
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100735 priv = devm_kzalloc(&phydev->mdio.dev, sizeof(*priv), GFP_KERNEL);
Johan Hovolde6a423a2014-11-19 12:59:15 +0100736 if (!priv)
737 return -ENOMEM;
738
739 phydev->priv = priv;
740
741 priv->type = type;
742
Johan Hovolde7a792e2014-11-19 12:59:16 +0100743 if (type->led_mode_reg) {
744 ret = of_property_read_u32(np, "micrel,led-mode",
745 &priv->led_mode);
746 if (ret)
747 priv->led_mode = -1;
748
749 if (priv->led_mode > 3) {
Andrew Lunn72ba48b2016-01-06 20:11:09 +0100750 phydev_err(phydev, "invalid led mode: 0x%02x\n",
751 priv->led_mode);
Johan Hovolde7a792e2014-11-19 12:59:16 +0100752 priv->led_mode = -1;
753 }
754 } else {
755 priv->led_mode = -1;
756 }
757
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100758 clk = devm_clk_get(&phydev->mdio.dev, "rmii-ref");
Niklas Casselbced8702015-05-12 09:43:14 +0200759 /* NOTE: clk may be NULL if building without CONFIG_HAVE_CLK */
760 if (!IS_ERR_OR_NULL(clk)) {
Sascha Hauer1fadee02014-10-10 09:48:05 +0200761 unsigned long rate = clk_get_rate(clk);
Johan Hovold86dc1342014-11-19 12:59:19 +0100762 bool rmii_ref_clk_sel_25_mhz;
Sascha Hauer1fadee02014-10-10 09:48:05 +0200763
Johan Hovold63f44b22014-11-19 12:59:18 +0100764 priv->rmii_ref_clk_sel = type->has_rmii_ref_clk_sel;
Johan Hovold86dc1342014-11-19 12:59:19 +0100765 rmii_ref_clk_sel_25_mhz = of_property_read_bool(np,
766 "micrel,rmii-reference-clock-select-25-mhz");
Johan Hovold63f44b22014-11-19 12:59:18 +0100767
Sascha Hauer1fadee02014-10-10 09:48:05 +0200768 if (rate > 24500000 && rate < 25500000) {
Johan Hovold86dc1342014-11-19 12:59:19 +0100769 priv->rmii_ref_clk_sel_val = rmii_ref_clk_sel_25_mhz;
Sascha Hauer1fadee02014-10-10 09:48:05 +0200770 } else if (rate > 49500000 && rate < 50500000) {
Johan Hovold86dc1342014-11-19 12:59:19 +0100771 priv->rmii_ref_clk_sel_val = !rmii_ref_clk_sel_25_mhz;
Sascha Hauer1fadee02014-10-10 09:48:05 +0200772 } else {
Andrew Lunn72ba48b2016-01-06 20:11:09 +0100773 phydev_err(phydev, "Clock rate out of range: %ld\n",
774 rate);
Sascha Hauer1fadee02014-10-10 09:48:05 +0200775 return -EINVAL;
776 }
777 }
778
Johan Hovold63f44b22014-11-19 12:59:18 +0100779 /* Support legacy board-file configuration */
780 if (phydev->dev_flags & MICREL_PHY_50MHZ_CLK) {
781 priv->rmii_ref_clk_sel = true;
782 priv->rmii_ref_clk_sel_val = true;
783 }
784
785 return 0;
Sascha Hauer1fadee02014-10-10 09:48:05 +0200786}
787
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000788static struct phy_driver ksphy_driver[] = {
789{
Choi, David51f932c2010-06-28 15:23:41 +0000790 .phy_id = PHY_ID_KS8737,
Fabio Estevamf893a992016-05-11 17:02:05 -0300791 .phy_id_mask = MICREL_PHY_ID_MASK,
Choi, David51f932c2010-06-28 15:23:41 +0000792 .name = "Micrel KS8737",
793 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
794 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100795 .driver_data = &ks8737_type,
David J. Choid0507002010-04-29 06:12:41 +0000796 .config_init = kszphy_config_init,
797 .config_aneg = genphy_config_aneg,
798 .read_status = genphy_read_status,
Choi, David51f932c2010-06-28 15:23:41 +0000799 .ack_interrupt = kszphy_ack_interrupt,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100800 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100801 .get_sset_count = kszphy_get_sset_count,
802 .get_strings = kszphy_get_strings,
803 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200804 .suspend = genphy_suspend,
805 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000806}, {
Marek Vasut212ea992012-09-23 16:58:49 +0000807 .phy_id = PHY_ID_KSZ8021,
808 .phy_id_mask = 0x00ffffff,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000809 .name = "Micrel KSZ8021 or KSZ8031",
Marek Vasut212ea992012-09-23 16:58:49 +0000810 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause |
811 SUPPORTED_Asym_Pause),
812 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100813 .driver_data = &ksz8021_type,
Johan Hovold63f44b22014-11-19 12:59:18 +0100814 .probe = kszphy_probe,
Johan Hovoldd0e1df92014-12-23 12:59:17 +0100815 .config_init = kszphy_config_init,
Marek Vasut212ea992012-09-23 16:58:49 +0000816 .config_aneg = genphy_config_aneg,
817 .read_status = genphy_read_status,
818 .ack_interrupt = kszphy_ack_interrupt,
819 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100820 .get_sset_count = kszphy_get_sset_count,
821 .get_strings = kszphy_get_strings,
822 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200823 .suspend = genphy_suspend,
824 .resume = genphy_resume,
Marek Vasut212ea992012-09-23 16:58:49 +0000825}, {
Hector Palaciosb818d1a2013-03-10 22:50:02 +0000826 .phy_id = PHY_ID_KSZ8031,
827 .phy_id_mask = 0x00ffffff,
828 .name = "Micrel KSZ8031",
829 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause |
830 SUPPORTED_Asym_Pause),
831 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100832 .driver_data = &ksz8021_type,
Johan Hovold63f44b22014-11-19 12:59:18 +0100833 .probe = kszphy_probe,
Johan Hovoldd0e1df92014-12-23 12:59:17 +0100834 .config_init = kszphy_config_init,
Hector Palaciosb818d1a2013-03-10 22:50:02 +0000835 .config_aneg = genphy_config_aneg,
836 .read_status = genphy_read_status,
837 .ack_interrupt = kszphy_ack_interrupt,
838 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100839 .get_sset_count = kszphy_get_sset_count,
840 .get_strings = kszphy_get_strings,
841 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200842 .suspend = genphy_suspend,
843 .resume = genphy_resume,
Hector Palaciosb818d1a2013-03-10 22:50:02 +0000844}, {
Marek Vasut510d5732012-09-23 16:58:50 +0000845 .phy_id = PHY_ID_KSZ8041,
Fabio Estevamf893a992016-05-11 17:02:05 -0300846 .phy_id_mask = MICREL_PHY_ID_MASK,
Marek Vasut510d5732012-09-23 16:58:50 +0000847 .name = "Micrel KSZ8041",
Choi, David51f932c2010-06-28 15:23:41 +0000848 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause
849 | SUPPORTED_Asym_Pause),
850 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100851 .driver_data = &ksz8041_type,
852 .probe = kszphy_probe,
Philipp Zabel77501a72016-07-14 16:29:43 +0200853 .config_init = ksz8041_config_init,
854 .config_aneg = ksz8041_config_aneg,
David J. Choid0507002010-04-29 06:12:41 +0000855 .read_status = genphy_read_status,
Choi, David51f932c2010-06-28 15:23:41 +0000856 .ack_interrupt = kszphy_ack_interrupt,
857 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100858 .get_sset_count = kszphy_get_sset_count,
859 .get_strings = kszphy_get_strings,
860 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200861 .suspend = genphy_suspend,
862 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000863}, {
Sergei Shtylyov4bd7b512013-12-10 02:20:41 +0300864 .phy_id = PHY_ID_KSZ8041RNLI,
Fabio Estevamf893a992016-05-11 17:02:05 -0300865 .phy_id_mask = MICREL_PHY_ID_MASK,
Sergei Shtylyov4bd7b512013-12-10 02:20:41 +0300866 .name = "Micrel KSZ8041RNLI",
867 .features = PHY_BASIC_FEATURES |
868 SUPPORTED_Pause | SUPPORTED_Asym_Pause,
869 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100870 .driver_data = &ksz8041_type,
871 .probe = kszphy_probe,
872 .config_init = kszphy_config_init,
Sergei Shtylyov4bd7b512013-12-10 02:20:41 +0300873 .config_aneg = genphy_config_aneg,
874 .read_status = genphy_read_status,
875 .ack_interrupt = kszphy_ack_interrupt,
876 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100877 .get_sset_count = kszphy_get_sset_count,
878 .get_strings = kszphy_get_strings,
879 .get_stats = kszphy_get_stats,
Sergei Shtylyov4bd7b512013-12-10 02:20:41 +0300880 .suspend = genphy_suspend,
881 .resume = genphy_resume,
Sergei Shtylyov4bd7b512013-12-10 02:20:41 +0300882}, {
Marek Vasut510d5732012-09-23 16:58:50 +0000883 .phy_id = PHY_ID_KSZ8051,
Fabio Estevamf893a992016-05-11 17:02:05 -0300884 .phy_id_mask = MICREL_PHY_ID_MASK,
Marek Vasut510d5732012-09-23 16:58:50 +0000885 .name = "Micrel KSZ8051",
Choi, David51f932c2010-06-28 15:23:41 +0000886 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause
887 | SUPPORTED_Asym_Pause),
888 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100889 .driver_data = &ksz8051_type,
890 .probe = kszphy_probe,
Johan Hovold63f44b22014-11-19 12:59:18 +0100891 .config_init = kszphy_config_init,
Choi, David51f932c2010-06-28 15:23:41 +0000892 .config_aneg = genphy_config_aneg,
893 .read_status = genphy_read_status,
894 .ack_interrupt = kszphy_ack_interrupt,
895 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100896 .get_sset_count = kszphy_get_sset_count,
897 .get_strings = kszphy_get_strings,
898 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200899 .suspend = genphy_suspend,
900 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000901}, {
Marek Vasut510d5732012-09-23 16:58:50 +0000902 .phy_id = PHY_ID_KSZ8001,
903 .name = "Micrel KSZ8001 or KS8721",
Alexander Steinecd5a322016-07-29 12:12:08 +0200904 .phy_id_mask = 0x00fffffc,
Choi, David51f932c2010-06-28 15:23:41 +0000905 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
906 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100907 .driver_data = &ksz8041_type,
908 .probe = kszphy_probe,
909 .config_init = kszphy_config_init,
Choi, David51f932c2010-06-28 15:23:41 +0000910 .config_aneg = genphy_config_aneg,
911 .read_status = genphy_read_status,
912 .ack_interrupt = kszphy_ack_interrupt,
913 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100914 .get_sset_count = kszphy_get_sset_count,
915 .get_strings = kszphy_get_strings,
916 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200917 .suspend = genphy_suspend,
918 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000919}, {
David J. Choi7ab59dc2013-01-23 14:05:15 +0000920 .phy_id = PHY_ID_KSZ8081,
921 .name = "Micrel KSZ8081 or KSZ8091",
Fabio Estevamf893a992016-05-11 17:02:05 -0300922 .phy_id_mask = MICREL_PHY_ID_MASK,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000923 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
924 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100925 .driver_data = &ksz8081_type,
926 .probe = kszphy_probe,
Johan Hovold0f959032014-11-19 12:59:17 +0100927 .config_init = kszphy_config_init,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000928 .config_aneg = genphy_config_aneg,
929 .read_status = genphy_read_status,
930 .ack_interrupt = kszphy_ack_interrupt,
931 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100932 .get_sset_count = kszphy_get_sset_count,
933 .get_strings = kszphy_get_strings,
934 .get_stats = kszphy_get_stats,
Wenyou Yang836384d2016-08-05 14:35:41 +0800935 .suspend = kszphy_suspend,
Alexandre Bellonif5aba912016-02-26 19:18:22 +0100936 .resume = kszphy_resume,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000937}, {
938 .phy_id = PHY_ID_KSZ8061,
939 .name = "Micrel KSZ8061",
Fabio Estevamf893a992016-05-11 17:02:05 -0300940 .phy_id_mask = MICREL_PHY_ID_MASK,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000941 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
942 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
943 .config_init = kszphy_config_init,
944 .config_aneg = genphy_config_aneg,
945 .read_status = genphy_read_status,
946 .ack_interrupt = kszphy_ack_interrupt,
947 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100948 .get_sset_count = kszphy_get_sset_count,
949 .get_strings = kszphy_get_strings,
950 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200951 .suspend = genphy_suspend,
952 .resume = genphy_resume,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000953}, {
David J. Choid0507002010-04-29 06:12:41 +0000954 .phy_id = PHY_ID_KSZ9021,
Jason Wang48d7d0a2012-06-17 22:52:09 +0000955 .phy_id_mask = 0x000ffffe,
David J. Choid0507002010-04-29 06:12:41 +0000956 .name = "Micrel KSZ9021 Gigabit PHY",
Vlastimil Kosar32fcafb2013-02-28 08:45:22 +0000957 .features = (PHY_GBIT_FEATURES | SUPPORTED_Pause),
Choi, David51f932c2010-06-28 15:23:41 +0000958 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100959 .driver_data = &ksz9021_type,
Sean Cross954c3962013-08-21 01:46:12 +0000960 .config_init = ksz9021_config_init,
David J. Choid0507002010-04-29 06:12:41 +0000961 .config_aneg = genphy_config_aneg,
962 .read_status = genphy_read_status,
Choi, David51f932c2010-06-28 15:23:41 +0000963 .ack_interrupt = kszphy_ack_interrupt,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100964 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100965 .get_sset_count = kszphy_get_sset_count,
966 .get_strings = kszphy_get_strings,
967 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200968 .suspend = genphy_suspend,
969 .resume = genphy_resume,
Vince Bridgers19936942014-07-29 15:19:58 -0500970 .read_mmd_indirect = ksz9021_rd_mmd_phyreg,
971 .write_mmd_indirect = ksz9021_wr_mmd_phyreg,
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000972}, {
David J. Choi7ab59dc2013-01-23 14:05:15 +0000973 .phy_id = PHY_ID_KSZ9031,
Fabio Estevamf893a992016-05-11 17:02:05 -0300974 .phy_id_mask = MICREL_PHY_ID_MASK,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000975 .name = "Micrel KSZ9031 Gigabit PHY",
Mike Looijmans95e8b102014-09-15 12:06:33 +0200976 .features = (PHY_GBIT_FEATURES | SUPPORTED_Pause),
David J. Choi7ab59dc2013-01-23 14:05:15 +0000977 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100978 .driver_data = &ksz9021_type,
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200979 .config_init = ksz9031_config_init,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000980 .config_aneg = genphy_config_aneg,
Nathan Sullivand2fd7192015-10-21 14:17:04 -0500981 .read_status = ksz9031_read_status,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000982 .ack_interrupt = kszphy_ack_interrupt,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100983 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100984 .get_sset_count = kszphy_get_sset_count,
985 .get_strings = kszphy_get_strings,
986 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200987 .suspend = genphy_suspend,
Xander Hufff64f1482016-08-22 15:57:16 -0500988 .resume = kszphy_resume,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000989}, {
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000990 .phy_id = PHY_ID_KSZ8873MLL,
Fabio Estevamf893a992016-05-11 17:02:05 -0300991 .phy_id_mask = MICREL_PHY_ID_MASK,
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000992 .name = "Micrel KSZ8873MLL Switch",
993 .features = (SUPPORTED_Pause | SUPPORTED_Asym_Pause),
994 .flags = PHY_HAS_MAGICANEG,
995 .config_init = kszphy_config_init,
996 .config_aneg = ksz8873mll_config_aneg,
997 .read_status = ksz8873mll_read_status,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100998 .get_sset_count = kszphy_get_sset_count,
999 .get_strings = kszphy_get_strings,
1000 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +02001001 .suspend = genphy_suspend,
1002 .resume = genphy_resume,
David J. Choi7ab59dc2013-01-23 14:05:15 +00001003}, {
1004 .phy_id = PHY_ID_KSZ886X,
Fabio Estevamf893a992016-05-11 17:02:05 -03001005 .phy_id_mask = MICREL_PHY_ID_MASK,
David J. Choi7ab59dc2013-01-23 14:05:15 +00001006 .name = "Micrel KSZ886X Switch",
1007 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
1008 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
1009 .config_init = kszphy_config_init,
1010 .config_aneg = genphy_config_aneg,
1011 .read_status = genphy_read_status,
Andrew Lunn2b2427d2015-12-30 16:28:27 +01001012 .get_sset_count = kszphy_get_sset_count,
1013 .get_strings = kszphy_get_strings,
1014 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +02001015 .suspend = genphy_suspend,
1016 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +00001017} };
David J. Choid0507002010-04-29 06:12:41 +00001018
Johan Hovold50fd7152014-11-11 19:45:59 +01001019module_phy_driver(ksphy_driver);
David J. Choid0507002010-04-29 06:12:41 +00001020
1021MODULE_DESCRIPTION("Micrel PHY driver");
1022MODULE_AUTHOR("David J. Choi");
1023MODULE_LICENSE("GPL");
David S. Miller52a60ed2010-05-03 15:48:29 -07001024
Uwe Kleine-Königcf93c942010-10-03 23:43:32 +00001025static struct mdio_device_id __maybe_unused micrel_tbl[] = {
Jason Wang48d7d0a2012-06-17 22:52:09 +00001026 { PHY_ID_KSZ9021, 0x000ffffe },
Fabio Estevamf893a992016-05-11 17:02:05 -03001027 { PHY_ID_KSZ9031, MICREL_PHY_ID_MASK },
Alexander Steinecd5a322016-07-29 12:12:08 +02001028 { PHY_ID_KSZ8001, 0x00fffffc },
Fabio Estevamf893a992016-05-11 17:02:05 -03001029 { PHY_ID_KS8737, MICREL_PHY_ID_MASK },
Marek Vasut212ea992012-09-23 16:58:49 +00001030 { PHY_ID_KSZ8021, 0x00ffffff },
Hector Palaciosb818d1a2013-03-10 22:50:02 +00001031 { PHY_ID_KSZ8031, 0x00ffffff },
Fabio Estevamf893a992016-05-11 17:02:05 -03001032 { PHY_ID_KSZ8041, MICREL_PHY_ID_MASK },
1033 { PHY_ID_KSZ8051, MICREL_PHY_ID_MASK },
1034 { PHY_ID_KSZ8061, MICREL_PHY_ID_MASK },
1035 { PHY_ID_KSZ8081, MICREL_PHY_ID_MASK },
1036 { PHY_ID_KSZ8873MLL, MICREL_PHY_ID_MASK },
1037 { PHY_ID_KSZ886X, MICREL_PHY_ID_MASK },
David S. Miller52a60ed2010-05-03 15:48:29 -07001038 { }
1039};
1040
1041MODULE_DEVICE_TABLE(mdio, micrel_tbl);