blob: 3db06b40580d319a34d94ae54baf6ee61bce3ef5 [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
Woojung Huhfc3973a2017-05-31 20:19:13 +000023 * ksz9477
David J. Choid0507002010-04-29 06:12:41 +000024 */
25
26#include <linux/kernel.h>
27#include <linux/module.h>
28#include <linux/phy.h>
Baruch Siachd606ef32011-02-14 02:05:33 +000029#include <linux/micrel_phy.h>
Sean Cross954c3962013-08-21 01:46:12 +000030#include <linux/of.h>
Sascha Hauer1fadee02014-10-10 09:48:05 +020031#include <linux/clk.h>
David J. Choid0507002010-04-29 06:12:41 +000032
Marek Vasut212ea992012-09-23 16:58:49 +000033/* Operation Mode Strap Override */
34#define MII_KSZPHY_OMSO 0x16
Johan Hovold00aee092014-11-11 20:00:09 +010035#define KSZPHY_OMSO_B_CAST_OFF BIT(9)
Sylvain Rochet2b0ba962015-02-13 21:35:33 +010036#define KSZPHY_OMSO_NAND_TREE_ON BIT(5)
Johan Hovold00aee092014-11-11 20:00:09 +010037#define KSZPHY_OMSO_RMII_OVERRIDE BIT(1)
38#define KSZPHY_OMSO_MII_OVERRIDE BIT(0)
Marek Vasut212ea992012-09-23 16:58:49 +000039
Choi, David51f932c2010-06-28 15:23:41 +000040/* general Interrupt control/status reg in vendor specific block. */
41#define MII_KSZPHY_INTCS 0x1B
Johan Hovold00aee092014-11-11 20:00:09 +010042#define KSZPHY_INTCS_JABBER BIT(15)
43#define KSZPHY_INTCS_RECEIVE_ERR BIT(14)
44#define KSZPHY_INTCS_PAGE_RECEIVE BIT(13)
45#define KSZPHY_INTCS_PARELLEL BIT(12)
46#define KSZPHY_INTCS_LINK_PARTNER_ACK BIT(11)
47#define KSZPHY_INTCS_LINK_DOWN BIT(10)
48#define KSZPHY_INTCS_REMOTE_FAULT BIT(9)
49#define KSZPHY_INTCS_LINK_UP BIT(8)
Choi, David51f932c2010-06-28 15:23:41 +000050#define KSZPHY_INTCS_ALL (KSZPHY_INTCS_LINK_UP |\
51 KSZPHY_INTCS_LINK_DOWN)
52
Johan Hovold5a167782014-11-11 20:00:14 +010053/* PHY Control 1 */
54#define MII_KSZPHY_CTRL_1 0x1e
55
56/* PHY Control 2 / PHY Control (if no PHY Control 1) */
57#define MII_KSZPHY_CTRL_2 0x1f
58#define MII_KSZPHY_CTRL MII_KSZPHY_CTRL_2
Choi, David51f932c2010-06-28 15:23:41 +000059/* bitmap of PHY register to set interrupt mode */
Johan Hovold00aee092014-11-11 20:00:09 +010060#define KSZPHY_CTRL_INT_ACTIVE_HIGH BIT(9)
Johan Hovold63f44b22014-11-19 12:59:18 +010061#define KSZPHY_RMII_REF_CLK_SEL BIT(7)
Choi, David51f932c2010-06-28 15:23:41 +000062
Sean Cross954c3962013-08-21 01:46:12 +000063/* Write/read to/from extended registers */
64#define MII_KSZPHY_EXTREG 0x0b
65#define KSZPHY_EXTREG_WRITE 0x8000
66
67#define MII_KSZPHY_EXTREG_WRITE 0x0c
68#define MII_KSZPHY_EXTREG_READ 0x0d
69
70/* Extended registers */
71#define MII_KSZPHY_CLK_CONTROL_PAD_SKEW 0x104
72#define MII_KSZPHY_RX_DATA_PAD_SKEW 0x105
73#define MII_KSZPHY_TX_DATA_PAD_SKEW 0x106
74
75#define PS_TO_REG 200
76
Andrew Lunn2b2427d2015-12-30 16:28:27 +010077struct kszphy_hw_stat {
78 const char *string;
79 u8 reg;
80 u8 bits;
81};
82
83static struct kszphy_hw_stat kszphy_hw_stats[] = {
84 { "phy_receive_errors", 21, 16},
85 { "phy_idle_errors", 10, 8 },
86};
87
Johan Hovolde6a423a2014-11-19 12:59:15 +010088struct kszphy_type {
89 u32 led_mode_reg;
Johan Hovoldc6f95752014-11-19 12:59:22 +010090 u16 interrupt_level_mask;
Johan Hovold0f959032014-11-19 12:59:17 +010091 bool has_broadcast_disable;
Sylvain Rochet2b0ba962015-02-13 21:35:33 +010092 bool has_nand_tree_disable;
Johan Hovold63f44b22014-11-19 12:59:18 +010093 bool has_rmii_ref_clk_sel;
Johan Hovolde6a423a2014-11-19 12:59:15 +010094};
95
96struct kszphy_priv {
97 const struct kszphy_type *type;
Johan Hovolde7a792e2014-11-19 12:59:16 +010098 int led_mode;
Johan Hovold63f44b22014-11-19 12:59:18 +010099 bool rmii_ref_clk_sel;
100 bool rmii_ref_clk_sel_val;
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100101 u64 stats[ARRAY_SIZE(kszphy_hw_stats)];
Johan Hovolde6a423a2014-11-19 12:59:15 +0100102};
103
104static const struct kszphy_type ksz8021_type = {
105 .led_mode_reg = MII_KSZPHY_CTRL_2,
Johan Hovoldd0e1df92014-12-23 12:59:17 +0100106 .has_broadcast_disable = true,
Sylvain Rochet2b0ba962015-02-13 21:35:33 +0100107 .has_nand_tree_disable = true,
Johan Hovold63f44b22014-11-19 12:59:18 +0100108 .has_rmii_ref_clk_sel = true,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100109};
110
111static const struct kszphy_type ksz8041_type = {
112 .led_mode_reg = MII_KSZPHY_CTRL_1,
113};
114
115static const struct kszphy_type ksz8051_type = {
116 .led_mode_reg = MII_KSZPHY_CTRL_2,
Sylvain Rochet2b0ba962015-02-13 21:35:33 +0100117 .has_nand_tree_disable = true,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100118};
119
120static const struct kszphy_type ksz8081_type = {
121 .led_mode_reg = MII_KSZPHY_CTRL_2,
Johan Hovold0f959032014-11-19 12:59:17 +0100122 .has_broadcast_disable = true,
Sylvain Rochet2b0ba962015-02-13 21:35:33 +0100123 .has_nand_tree_disable = true,
Johan Hovold86dc1342014-11-19 12:59:19 +0100124 .has_rmii_ref_clk_sel = true,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100125};
126
Johan Hovoldc6f95752014-11-19 12:59:22 +0100127static const struct kszphy_type ks8737_type = {
128 .interrupt_level_mask = BIT(14),
129};
130
131static const struct kszphy_type ksz9021_type = {
132 .interrupt_level_mask = BIT(14),
133};
134
Sean Cross954c3962013-08-21 01:46:12 +0000135static int kszphy_extended_write(struct phy_device *phydev,
Florian Fainelli756b5082013-12-17 21:38:11 -0800136 u32 regnum, u16 val)
Sean Cross954c3962013-08-21 01:46:12 +0000137{
138 phy_write(phydev, MII_KSZPHY_EXTREG, KSZPHY_EXTREG_WRITE | regnum);
139 return phy_write(phydev, MII_KSZPHY_EXTREG_WRITE, val);
140}
141
142static int kszphy_extended_read(struct phy_device *phydev,
Florian Fainelli756b5082013-12-17 21:38:11 -0800143 u32 regnum)
Sean Cross954c3962013-08-21 01:46:12 +0000144{
145 phy_write(phydev, MII_KSZPHY_EXTREG, regnum);
146 return phy_read(phydev, MII_KSZPHY_EXTREG_READ);
147}
148
Choi, David51f932c2010-06-28 15:23:41 +0000149static int kszphy_ack_interrupt(struct phy_device *phydev)
150{
151 /* bit[7..0] int status, which is a read and clear register. */
152 int rc;
153
154 rc = phy_read(phydev, MII_KSZPHY_INTCS);
155
156 return (rc < 0) ? rc : 0;
157}
158
Choi, David51f932c2010-06-28 15:23:41 +0000159static int kszphy_config_intr(struct phy_device *phydev)
160{
Johan Hovoldc6f95752014-11-19 12:59:22 +0100161 const struct kszphy_type *type = phydev->drv->driver_data;
162 int temp;
163 u16 mask;
164
165 if (type && type->interrupt_level_mask)
166 mask = type->interrupt_level_mask;
167 else
168 mask = KSZPHY_CTRL_INT_ACTIVE_HIGH;
Choi, David51f932c2010-06-28 15:23:41 +0000169
170 /* set the interrupt pin active low */
171 temp = phy_read(phydev, MII_KSZPHY_CTRL);
Johan Hovold5bb8fc02014-11-11 20:00:08 +0100172 if (temp < 0)
173 return temp;
Johan Hovoldc6f95752014-11-19 12:59:22 +0100174 temp &= ~mask;
Choi, David51f932c2010-06-28 15:23:41 +0000175 phy_write(phydev, MII_KSZPHY_CTRL, temp);
Choi, David51f932c2010-06-28 15:23:41 +0000176
Johan Hovoldc6f95752014-11-19 12:59:22 +0100177 /* enable / disable interrupts */
178 if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
179 temp = KSZPHY_INTCS_ALL;
180 else
181 temp = 0;
Choi, David51f932c2010-06-28 15:23:41 +0000182
Johan Hovoldc6f95752014-11-19 12:59:22 +0100183 return phy_write(phydev, MII_KSZPHY_INTCS, temp);
Choi, David51f932c2010-06-28 15:23:41 +0000184}
David J. Choid0507002010-04-29 06:12:41 +0000185
Johan Hovold63f44b22014-11-19 12:59:18 +0100186static int kszphy_rmii_clk_sel(struct phy_device *phydev, bool val)
187{
188 int ctrl;
189
190 ctrl = phy_read(phydev, MII_KSZPHY_CTRL);
191 if (ctrl < 0)
192 return ctrl;
193
194 if (val)
195 ctrl |= KSZPHY_RMII_REF_CLK_SEL;
196 else
197 ctrl &= ~KSZPHY_RMII_REF_CLK_SEL;
198
199 return phy_write(phydev, MII_KSZPHY_CTRL, ctrl);
200}
201
Johan Hovolde7a792e2014-11-19 12:59:16 +0100202static int kszphy_setup_led(struct phy_device *phydev, u32 reg, int val)
Ben Dooks20d84352014-02-26 11:48:00 +0000203{
Johan Hovold5a167782014-11-11 20:00:14 +0100204 int rc, temp, shift;
Johan Hovold86205462014-11-11 20:00:12 +0100205
Johan Hovold5a167782014-11-11 20:00:14 +0100206 switch (reg) {
207 case MII_KSZPHY_CTRL_1:
208 shift = 14;
209 break;
210 case MII_KSZPHY_CTRL_2:
211 shift = 4;
212 break;
213 default:
214 return -EINVAL;
215 }
216
Ben Dooks20d84352014-02-26 11:48:00 +0000217 temp = phy_read(phydev, reg);
Johan Hovoldb7035862014-11-11 20:00:13 +0100218 if (temp < 0) {
219 rc = temp;
220 goto out;
221 }
Ben Dooks20d84352014-02-26 11:48:00 +0000222
Sergei Shtylyov28bdc492014-03-19 02:58:16 +0300223 temp &= ~(3 << shift);
Ben Dooks20d84352014-02-26 11:48:00 +0000224 temp |= val << shift;
225 rc = phy_write(phydev, reg, temp);
Johan Hovoldb7035862014-11-11 20:00:13 +0100226out:
227 if (rc < 0)
Andrew Lunn72ba48b2016-01-06 20:11:09 +0100228 phydev_err(phydev, "failed to set led mode\n");
Ben Dooks20d84352014-02-26 11:48:00 +0000229
Johan Hovoldb7035862014-11-11 20:00:13 +0100230 return rc;
Ben Dooks20d84352014-02-26 11:48:00 +0000231}
232
Johan Hovoldbde15122014-11-11 20:00:10 +0100233/* Disable PHY address 0 as the broadcast address, so that it can be used as a
234 * unique (non-broadcast) address on a shared bus.
235 */
236static int kszphy_broadcast_disable(struct phy_device *phydev)
237{
238 int ret;
239
240 ret = phy_read(phydev, MII_KSZPHY_OMSO);
241 if (ret < 0)
242 goto out;
243
244 ret = phy_write(phydev, MII_KSZPHY_OMSO, ret | KSZPHY_OMSO_B_CAST_OFF);
245out:
246 if (ret)
Andrew Lunn72ba48b2016-01-06 20:11:09 +0100247 phydev_err(phydev, "failed to disable broadcast address\n");
Johan Hovoldbde15122014-11-11 20:00:10 +0100248
249 return ret;
250}
251
Sylvain Rochet2b0ba962015-02-13 21:35:33 +0100252static int kszphy_nand_tree_disable(struct phy_device *phydev)
253{
254 int ret;
255
256 ret = phy_read(phydev, MII_KSZPHY_OMSO);
257 if (ret < 0)
258 goto out;
259
260 if (!(ret & KSZPHY_OMSO_NAND_TREE_ON))
261 return 0;
262
263 ret = phy_write(phydev, MII_KSZPHY_OMSO,
264 ret & ~KSZPHY_OMSO_NAND_TREE_ON);
265out:
266 if (ret)
Andrew Lunn72ba48b2016-01-06 20:11:09 +0100267 phydev_err(phydev, "failed to disable NAND tree mode\n");
Sylvain Rochet2b0ba962015-02-13 21:35:33 +0100268
269 return ret;
270}
271
Leonard Crestez79e498a2017-05-31 13:29:30 +0300272/* Some config bits need to be set again on resume, handle them here. */
273static int kszphy_config_reset(struct phy_device *phydev)
274{
275 struct kszphy_priv *priv = phydev->priv;
276 int ret;
277
278 if (priv->rmii_ref_clk_sel) {
279 ret = kszphy_rmii_clk_sel(phydev, priv->rmii_ref_clk_sel_val);
280 if (ret) {
281 phydev_err(phydev,
282 "failed to set rmii reference clock\n");
283 return ret;
284 }
285 }
286
287 if (priv->led_mode >= 0)
288 kszphy_setup_led(phydev, priv->type->led_mode_reg, priv->led_mode);
289
290 return 0;
291}
292
David J. Choid0507002010-04-29 06:12:41 +0000293static int kszphy_config_init(struct phy_device *phydev)
294{
Johan Hovolde6a423a2014-11-19 12:59:15 +0100295 struct kszphy_priv *priv = phydev->priv;
296 const struct kszphy_type *type;
David J. Choid0507002010-04-29 06:12:41 +0000297
Johan Hovolde6a423a2014-11-19 12:59:15 +0100298 if (!priv)
299 return 0;
300
301 type = priv->type;
302
Johan Hovold0f959032014-11-19 12:59:17 +0100303 if (type->has_broadcast_disable)
304 kszphy_broadcast_disable(phydev);
305
Sylvain Rochet2b0ba962015-02-13 21:35:33 +0100306 if (type->has_nand_tree_disable)
307 kszphy_nand_tree_disable(phydev);
308
Leonard Crestez79e498a2017-05-31 13:29:30 +0300309 return kszphy_config_reset(phydev);
Ben Dooks20d84352014-02-26 11:48:00 +0000310}
311
Philipp Zabel77501a72016-07-14 16:29:43 +0200312static int ksz8041_config_init(struct phy_device *phydev)
313{
314 struct device_node *of_node = phydev->mdio.dev.of_node;
315
316 /* Limit supported and advertised modes in fiber mode */
317 if (of_property_read_bool(of_node, "micrel,fiber-mode")) {
318 phydev->dev_flags |= MICREL_PHY_FXEN;
Kirill Esipovffa54a22016-11-21 19:53:31 +0300319 phydev->supported &= SUPPORTED_100baseT_Full |
Philipp Zabel77501a72016-07-14 16:29:43 +0200320 SUPPORTED_100baseT_Half;
Kirill Esipovffa54a22016-11-21 19:53:31 +0300321 phydev->supported |= SUPPORTED_FIBRE;
322 phydev->advertising &= ADVERTISED_100baseT_Full |
Philipp Zabel77501a72016-07-14 16:29:43 +0200323 ADVERTISED_100baseT_Half;
Kirill Esipovffa54a22016-11-21 19:53:31 +0300324 phydev->advertising |= ADVERTISED_FIBRE;
Philipp Zabel77501a72016-07-14 16:29:43 +0200325 phydev->autoneg = AUTONEG_DISABLE;
326 }
327
328 return kszphy_config_init(phydev);
329}
330
331static int ksz8041_config_aneg(struct phy_device *phydev)
332{
333 /* Skip auto-negotiation in fiber mode */
334 if (phydev->dev_flags & MICREL_PHY_FXEN) {
335 phydev->speed = SPEED_100;
336 return 0;
337 }
338
339 return genphy_config_aneg(phydev);
340}
341
Sean Cross954c3962013-08-21 01:46:12 +0000342static int ksz9021_load_values_from_of(struct phy_device *phydev,
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500343 const struct device_node *of_node,
344 u16 reg,
345 const char *field1, const char *field2,
346 const char *field3, const char *field4)
Sean Cross954c3962013-08-21 01:46:12 +0000347{
348 int val1 = -1;
349 int val2 = -2;
350 int val3 = -3;
351 int val4 = -4;
352 int newval;
353 int matches = 0;
354
355 if (!of_property_read_u32(of_node, field1, &val1))
356 matches++;
357
358 if (!of_property_read_u32(of_node, field2, &val2))
359 matches++;
360
361 if (!of_property_read_u32(of_node, field3, &val3))
362 matches++;
363
364 if (!of_property_read_u32(of_node, field4, &val4))
365 matches++;
366
367 if (!matches)
368 return 0;
369
370 if (matches < 4)
371 newval = kszphy_extended_read(phydev, reg);
372 else
373 newval = 0;
374
375 if (val1 != -1)
376 newval = ((newval & 0xfff0) | ((val1 / PS_TO_REG) & 0xf) << 0);
377
Hubert Chaumette6a119742014-04-22 15:01:04 +0200378 if (val2 != -2)
Sean Cross954c3962013-08-21 01:46:12 +0000379 newval = ((newval & 0xff0f) | ((val2 / PS_TO_REG) & 0xf) << 4);
380
Hubert Chaumette6a119742014-04-22 15:01:04 +0200381 if (val3 != -3)
Sean Cross954c3962013-08-21 01:46:12 +0000382 newval = ((newval & 0xf0ff) | ((val3 / PS_TO_REG) & 0xf) << 8);
383
Hubert Chaumette6a119742014-04-22 15:01:04 +0200384 if (val4 != -4)
Sean Cross954c3962013-08-21 01:46:12 +0000385 newval = ((newval & 0x0fff) | ((val4 / PS_TO_REG) & 0xf) << 12);
386
387 return kszphy_extended_write(phydev, reg, newval);
388}
389
390static int ksz9021_config_init(struct phy_device *phydev)
391{
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100392 const struct device *dev = &phydev->mdio.dev;
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500393 const struct device_node *of_node = dev->of_node;
Andrew Lunn651df212015-12-09 19:56:31 +0100394 const struct device *dev_walker;
Sean Cross954c3962013-08-21 01:46:12 +0000395
Andrew Lunn651df212015-12-09 19:56:31 +0100396 /* The Micrel driver has a deprecated option to place phy OF
397 * properties in the MAC node. Walk up the tree of devices to
398 * find a device with an OF node.
399 */
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100400 dev_walker = &phydev->mdio.dev;
Andrew Lunn651df212015-12-09 19:56:31 +0100401 do {
402 of_node = dev_walker->of_node;
403 dev_walker = dev_walker->parent;
404
405 } while (!of_node && dev_walker);
Sean Cross954c3962013-08-21 01:46:12 +0000406
407 if (of_node) {
408 ksz9021_load_values_from_of(phydev, of_node,
409 MII_KSZPHY_CLK_CONTROL_PAD_SKEW,
410 "txen-skew-ps", "txc-skew-ps",
411 "rxdv-skew-ps", "rxc-skew-ps");
412 ksz9021_load_values_from_of(phydev, of_node,
413 MII_KSZPHY_RX_DATA_PAD_SKEW,
414 "rxd0-skew-ps", "rxd1-skew-ps",
415 "rxd2-skew-ps", "rxd3-skew-ps");
416 ksz9021_load_values_from_of(phydev, of_node,
417 MII_KSZPHY_TX_DATA_PAD_SKEW,
418 "txd0-skew-ps", "txd1-skew-ps",
419 "txd2-skew-ps", "txd3-skew-ps");
420 }
421 return 0;
422}
423
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200424#define MII_KSZ9031RN_MMD_CTRL_REG 0x0d
425#define MII_KSZ9031RN_MMD_REGDATA_REG 0x0e
426#define OP_DATA 1
427#define KSZ9031_PS_TO_REG 60
428
429/* Extended registers */
Jaeden Amero6270e1a2015-06-05 18:00:26 -0500430/* MMD Address 0x0 */
431#define MII_KSZ9031RN_FLP_BURST_TX_LO 3
432#define MII_KSZ9031RN_FLP_BURST_TX_HI 4
433
Jaeden Ameroae6c97b2015-06-05 18:00:25 -0500434/* MMD Address 0x2 */
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200435#define MII_KSZ9031RN_CONTROL_PAD_SKEW 4
436#define MII_KSZ9031RN_RX_DATA_PAD_SKEW 5
437#define MII_KSZ9031RN_TX_DATA_PAD_SKEW 6
438#define MII_KSZ9031RN_CLK_PAD_SKEW 8
439
Mike Looijmansaf70c1f2016-10-04 07:52:04 +0200440/* MMD Address 0x1C */
441#define MII_KSZ9031RN_EDPD 0x23
442#define MII_KSZ9031RN_EDPD_ENABLE BIT(0)
443
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200444static int ksz9031_extended_write(struct phy_device *phydev,
445 u8 mode, u32 dev_addr, u32 regnum, u16 val)
446{
447 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, dev_addr);
448 phy_write(phydev, MII_KSZ9031RN_MMD_REGDATA_REG, regnum);
449 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, (mode << 14) | dev_addr);
450 return phy_write(phydev, MII_KSZ9031RN_MMD_REGDATA_REG, val);
451}
452
453static int ksz9031_extended_read(struct phy_device *phydev,
454 u8 mode, u32 dev_addr, u32 regnum)
455{
456 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, dev_addr);
457 phy_write(phydev, MII_KSZ9031RN_MMD_REGDATA_REG, regnum);
458 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, (mode << 14) | dev_addr);
459 return phy_read(phydev, MII_KSZ9031RN_MMD_REGDATA_REG);
460}
461
462static int ksz9031_of_load_skew_values(struct phy_device *phydev,
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500463 const struct device_node *of_node,
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200464 u16 reg, size_t field_sz,
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500465 const char *field[], u8 numfields)
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200466{
467 int val[4] = {-1, -2, -3, -4};
468 int matches = 0;
469 u16 mask;
470 u16 maxval;
471 u16 newval;
472 int i;
473
474 for (i = 0; i < numfields; i++)
475 if (!of_property_read_u32(of_node, field[i], val + i))
476 matches++;
477
478 if (!matches)
479 return 0;
480
481 if (matches < numfields)
482 newval = ksz9031_extended_read(phydev, OP_DATA, 2, reg);
483 else
484 newval = 0;
485
486 maxval = (field_sz == 4) ? 0xf : 0x1f;
487 for (i = 0; i < numfields; i++)
488 if (val[i] != -(i + 1)) {
489 mask = 0xffff;
490 mask ^= maxval << (field_sz * i);
491 newval = (newval & mask) |
492 (((val[i] / KSZ9031_PS_TO_REG) & maxval)
493 << (field_sz * i));
494 }
495
496 return ksz9031_extended_write(phydev, OP_DATA, 2, reg, newval);
497}
498
Max Uvarova0da4562017-11-30 13:08:29 +0300499/* Center KSZ9031RNX FLP timing at 16ms. */
Jaeden Amero6270e1a2015-06-05 18:00:26 -0500500static int ksz9031_center_flp_timing(struct phy_device *phydev)
501{
502 int result;
503
Jaeden Amero6270e1a2015-06-05 18:00:26 -0500504 result = ksz9031_extended_write(phydev, OP_DATA, 0,
505 MII_KSZ9031RN_FLP_BURST_TX_HI, 0x0006);
Max Uvarova0da4562017-11-30 13:08:29 +0300506 if (result)
507 return result;
508
Jaeden Amero6270e1a2015-06-05 18:00:26 -0500509 result = ksz9031_extended_write(phydev, OP_DATA, 0,
510 MII_KSZ9031RN_FLP_BURST_TX_LO, 0x1A80);
Jaeden Amero6270e1a2015-06-05 18:00:26 -0500511 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);
Markus Niebele1b505a2018-05-15 10:18:56 +0200576
577 /* Silicon Errata Sheet (DS80000691D or DS80000692D):
578 * When the device links in the 1000BASE-T slave mode only,
579 * the optional 125MHz reference output clock (CLK125_NDO)
580 * has wide duty cycle variation.
581 *
582 * The optional CLK125_NDO clock does not meet the RGMII
583 * 45/55 percent (min/max) duty cycle requirement and therefore
584 * cannot be used directly by the MAC side for clocking
585 * applications that have setup/hold time requirements on
586 * rising and falling clock edges.
587 *
588 * Workaround:
589 * Force the phy to be the master to receive a stable clock
590 * which meets the duty cycle requirement.
591 */
592 if (of_property_read_bool(of_node, "micrel,force-master")) {
593 result = phy_read(phydev, MII_CTRL1000);
594 if (result < 0)
595 goto err_force_master;
596
597 /* enable master mode, config & prefer master */
598 result |= CTL1000_ENABLE_MASTER | CTL1000_AS_MASTER;
599 result = phy_write(phydev, MII_CTRL1000, result);
600 if (result < 0)
601 goto err_force_master;
602 }
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200603 }
Jaeden Amero6270e1a2015-06-05 18:00:26 -0500604
605 return ksz9031_center_flp_timing(phydev);
Markus Niebele1b505a2018-05-15 10:18:56 +0200606
607err_force_master:
608 phydev_err(phydev, "failed to force the phy to master mode\n");
609 return result;
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200610}
611
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000612#define KSZ8873MLL_GLOBAL_CONTROL_4 0x06
Johan Hovold00aee092014-11-11 20:00:09 +0100613#define KSZ8873MLL_GLOBAL_CONTROL_4_DUPLEX BIT(6)
614#define KSZ8873MLL_GLOBAL_CONTROL_4_SPEED BIT(4)
Jingoo Han32d73b12013-08-06 17:29:35 +0900615static int ksz8873mll_read_status(struct phy_device *phydev)
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000616{
617 int regval;
618
619 /* dummy read */
620 regval = phy_read(phydev, KSZ8873MLL_GLOBAL_CONTROL_4);
621
622 regval = phy_read(phydev, KSZ8873MLL_GLOBAL_CONTROL_4);
623
624 if (regval & KSZ8873MLL_GLOBAL_CONTROL_4_DUPLEX)
625 phydev->duplex = DUPLEX_HALF;
626 else
627 phydev->duplex = DUPLEX_FULL;
628
629 if (regval & KSZ8873MLL_GLOBAL_CONTROL_4_SPEED)
630 phydev->speed = SPEED_10;
631 else
632 phydev->speed = SPEED_100;
633
634 phydev->link = 1;
635 phydev->pause = phydev->asym_pause = 0;
636
637 return 0;
638}
639
Nathan Sullivand2fd7192015-10-21 14:17:04 -0500640static int ksz9031_read_status(struct phy_device *phydev)
641{
642 int err;
643 int regval;
644
645 err = genphy_read_status(phydev);
646 if (err)
647 return err;
648
649 /* Make sure the PHY is not broken. Read idle error count,
650 * and reset the PHY if it is maxed out.
651 */
652 regval = phy_read(phydev, MII_STAT1000);
653 if ((regval & 0xFF) == 0xFF) {
654 phy_init_hw(phydev);
655 phydev->link = 0;
Zach Brownb8662032017-06-20 12:48:11 -0500656 if (phydev->drv->config_intr && phy_interrupt_is_valid(phydev))
657 phydev->drv->config_intr(phydev);
Grygorii Strashkoc1a8d0a2017-12-20 18:45:10 -0600658 return genphy_config_aneg(phydev);
Nathan Sullivand2fd7192015-10-21 14:17:04 -0500659 }
660
661 return 0;
662}
663
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000664static int ksz8873mll_config_aneg(struct phy_device *phydev)
665{
666 return 0;
667}
668
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100669static int kszphy_get_sset_count(struct phy_device *phydev)
670{
671 return ARRAY_SIZE(kszphy_hw_stats);
672}
673
674static void kszphy_get_strings(struct phy_device *phydev, u8 *data)
675{
676 int i;
677
678 for (i = 0; i < ARRAY_SIZE(kszphy_hw_stats); i++) {
Florian Fainelli55f53562018-03-02 15:08:38 -0800679 strlcpy(data + i * ETH_GSTRING_LEN,
680 kszphy_hw_stats[i].string, ETH_GSTRING_LEN);
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100681 }
682}
683
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100684static u64 kszphy_get_stat(struct phy_device *phydev, int i)
685{
686 struct kszphy_hw_stat stat = kszphy_hw_stats[i];
687 struct kszphy_priv *priv = phydev->priv;
Andrew Lunn321b4d42016-02-20 00:35:29 +0100688 int val;
689 u64 ret;
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100690
691 val = phy_read(phydev, stat.reg);
692 if (val < 0) {
Jisheng Zhang6c3442f2018-04-27 16:18:58 +0800693 ret = U64_MAX;
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100694 } else {
695 val = val & ((1 << stat.bits) - 1);
696 priv->stats[i] += val;
Andrew Lunn321b4d42016-02-20 00:35:29 +0100697 ret = priv->stats[i];
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100698 }
699
Andrew Lunn321b4d42016-02-20 00:35:29 +0100700 return ret;
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100701}
702
703static void kszphy_get_stats(struct phy_device *phydev,
704 struct ethtool_stats *stats, u64 *data)
705{
706 int i;
707
708 for (i = 0; i < ARRAY_SIZE(kszphy_hw_stats); i++)
709 data[i] = kszphy_get_stat(phydev, i);
710}
711
Wenyou Yang836384d2016-08-05 14:35:41 +0800712static int kszphy_suspend(struct phy_device *phydev)
713{
714 /* Disable PHY Interrupts */
715 if (phy_interrupt_is_valid(phydev)) {
716 phydev->interrupts = PHY_INTERRUPT_DISABLED;
717 if (phydev->drv->config_intr)
718 phydev->drv->config_intr(phydev);
719 }
720
721 return genphy_suspend(phydev);
722}
723
Alexandre Bellonif5aba912016-02-26 19:18:22 +0100724static int kszphy_resume(struct phy_device *phydev)
725{
Leonard Crestez79e498a2017-05-31 13:29:30 +0300726 int ret;
727
Wenyou Yang836384d2016-08-05 14:35:41 +0800728 genphy_resume(phydev);
Alexandre Bellonif5aba912016-02-26 19:18:22 +0100729
Leonard Crestez79e498a2017-05-31 13:29:30 +0300730 ret = kszphy_config_reset(phydev);
731 if (ret)
732 return ret;
733
Wenyou Yang836384d2016-08-05 14:35:41 +0800734 /* Enable PHY Interrupts */
735 if (phy_interrupt_is_valid(phydev)) {
736 phydev->interrupts = PHY_INTERRUPT_ENABLED;
737 if (phydev->drv->config_intr)
738 phydev->drv->config_intr(phydev);
739 }
Alexandre Bellonif5aba912016-02-26 19:18:22 +0100740
741 return 0;
742}
743
Johan Hovolde6a423a2014-11-19 12:59:15 +0100744static int kszphy_probe(struct phy_device *phydev)
745{
746 const struct kszphy_type *type = phydev->drv->driver_data;
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100747 const struct device_node *np = phydev->mdio.dev.of_node;
Johan Hovolde6a423a2014-11-19 12:59:15 +0100748 struct kszphy_priv *priv;
Johan Hovold63f44b22014-11-19 12:59:18 +0100749 struct clk *clk;
Johan Hovolde7a792e2014-11-19 12:59:16 +0100750 int ret;
Johan Hovolde6a423a2014-11-19 12:59:15 +0100751
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100752 priv = devm_kzalloc(&phydev->mdio.dev, sizeof(*priv), GFP_KERNEL);
Johan Hovolde6a423a2014-11-19 12:59:15 +0100753 if (!priv)
754 return -ENOMEM;
755
756 phydev->priv = priv;
757
758 priv->type = type;
759
Johan Hovolde7a792e2014-11-19 12:59:16 +0100760 if (type->led_mode_reg) {
761 ret = of_property_read_u32(np, "micrel,led-mode",
762 &priv->led_mode);
763 if (ret)
764 priv->led_mode = -1;
765
766 if (priv->led_mode > 3) {
Andrew Lunn72ba48b2016-01-06 20:11:09 +0100767 phydev_err(phydev, "invalid led mode: 0x%02x\n",
768 priv->led_mode);
Johan Hovolde7a792e2014-11-19 12:59:16 +0100769 priv->led_mode = -1;
770 }
771 } else {
772 priv->led_mode = -1;
773 }
774
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100775 clk = devm_clk_get(&phydev->mdio.dev, "rmii-ref");
Niklas Casselbced8702015-05-12 09:43:14 +0200776 /* NOTE: clk may be NULL if building without CONFIG_HAVE_CLK */
777 if (!IS_ERR_OR_NULL(clk)) {
Sascha Hauer1fadee02014-10-10 09:48:05 +0200778 unsigned long rate = clk_get_rate(clk);
Johan Hovold86dc1342014-11-19 12:59:19 +0100779 bool rmii_ref_clk_sel_25_mhz;
Sascha Hauer1fadee02014-10-10 09:48:05 +0200780
Johan Hovold63f44b22014-11-19 12:59:18 +0100781 priv->rmii_ref_clk_sel = type->has_rmii_ref_clk_sel;
Johan Hovold86dc1342014-11-19 12:59:19 +0100782 rmii_ref_clk_sel_25_mhz = of_property_read_bool(np,
783 "micrel,rmii-reference-clock-select-25-mhz");
Johan Hovold63f44b22014-11-19 12:59:18 +0100784
Sascha Hauer1fadee02014-10-10 09:48:05 +0200785 if (rate > 24500000 && rate < 25500000) {
Johan Hovold86dc1342014-11-19 12:59:19 +0100786 priv->rmii_ref_clk_sel_val = rmii_ref_clk_sel_25_mhz;
Sascha Hauer1fadee02014-10-10 09:48:05 +0200787 } else if (rate > 49500000 && rate < 50500000) {
Johan Hovold86dc1342014-11-19 12:59:19 +0100788 priv->rmii_ref_clk_sel_val = !rmii_ref_clk_sel_25_mhz;
Sascha Hauer1fadee02014-10-10 09:48:05 +0200789 } else {
Andrew Lunn72ba48b2016-01-06 20:11:09 +0100790 phydev_err(phydev, "Clock rate out of range: %ld\n",
791 rate);
Sascha Hauer1fadee02014-10-10 09:48:05 +0200792 return -EINVAL;
793 }
794 }
795
Johan Hovold63f44b22014-11-19 12:59:18 +0100796 /* Support legacy board-file configuration */
797 if (phydev->dev_flags & MICREL_PHY_50MHZ_CLK) {
798 priv->rmii_ref_clk_sel = true;
799 priv->rmii_ref_clk_sel_val = true;
800 }
801
802 return 0;
Sascha Hauer1fadee02014-10-10 09:48:05 +0200803}
804
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000805static struct phy_driver ksphy_driver[] = {
806{
Choi, David51f932c2010-06-28 15:23:41 +0000807 .phy_id = PHY_ID_KS8737,
Fabio Estevamf893a992016-05-11 17:02:05 -0300808 .phy_id_mask = MICREL_PHY_ID_MASK,
Choi, David51f932c2010-06-28 15:23:41 +0000809 .name = "Micrel KS8737",
Timur Tabi529ed122016-12-07 13:20:51 -0600810 .features = PHY_BASIC_FEATURES,
Andrew Lunn1b86f702017-05-16 18:29:11 +0200811 .flags = PHY_HAS_INTERRUPT,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100812 .driver_data = &ks8737_type,
David J. Choid0507002010-04-29 06:12:41 +0000813 .config_init = kszphy_config_init,
Choi, David51f932c2010-06-28 15:23:41 +0000814 .ack_interrupt = kszphy_ack_interrupt,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100815 .config_intr = kszphy_config_intr,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200816 .suspend = genphy_suspend,
817 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000818}, {
Marek Vasut212ea992012-09-23 16:58:49 +0000819 .phy_id = PHY_ID_KSZ8021,
820 .phy_id_mask = 0x00ffffff,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000821 .name = "Micrel KSZ8021 or KSZ8031",
Timur Tabi529ed122016-12-07 13:20:51 -0600822 .features = PHY_BASIC_FEATURES,
Andrew Lunn1b86f702017-05-16 18:29:11 +0200823 .flags = PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100824 .driver_data = &ksz8021_type,
Johan Hovold63f44b22014-11-19 12:59:18 +0100825 .probe = kszphy_probe,
Johan Hovoldd0e1df92014-12-23 12:59:17 +0100826 .config_init = kszphy_config_init,
Marek Vasut212ea992012-09-23 16:58:49 +0000827 .ack_interrupt = kszphy_ack_interrupt,
828 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100829 .get_sset_count = kszphy_get_sset_count,
830 .get_strings = kszphy_get_strings,
831 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200832 .suspend = genphy_suspend,
833 .resume = genphy_resume,
Marek Vasut212ea992012-09-23 16:58:49 +0000834}, {
Hector Palaciosb818d1a2013-03-10 22:50:02 +0000835 .phy_id = PHY_ID_KSZ8031,
836 .phy_id_mask = 0x00ffffff,
837 .name = "Micrel KSZ8031",
Timur Tabi529ed122016-12-07 13:20:51 -0600838 .features = PHY_BASIC_FEATURES,
Andrew Lunn1b86f702017-05-16 18:29:11 +0200839 .flags = PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100840 .driver_data = &ksz8021_type,
Johan Hovold63f44b22014-11-19 12:59:18 +0100841 .probe = kszphy_probe,
Johan Hovoldd0e1df92014-12-23 12:59:17 +0100842 .config_init = kszphy_config_init,
Hector Palaciosb818d1a2013-03-10 22:50:02 +0000843 .ack_interrupt = kszphy_ack_interrupt,
844 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100845 .get_sset_count = kszphy_get_sset_count,
846 .get_strings = kszphy_get_strings,
847 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200848 .suspend = genphy_suspend,
849 .resume = genphy_resume,
Hector Palaciosb818d1a2013-03-10 22:50:02 +0000850}, {
Marek Vasut510d5732012-09-23 16:58:50 +0000851 .phy_id = PHY_ID_KSZ8041,
Fabio Estevamf893a992016-05-11 17:02:05 -0300852 .phy_id_mask = MICREL_PHY_ID_MASK,
Marek Vasut510d5732012-09-23 16:58:50 +0000853 .name = "Micrel KSZ8041",
Timur Tabi529ed122016-12-07 13:20:51 -0600854 .features = PHY_BASIC_FEATURES,
Andrew Lunn1b86f702017-05-16 18:29:11 +0200855 .flags = PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100856 .driver_data = &ksz8041_type,
857 .probe = kszphy_probe,
Philipp Zabel77501a72016-07-14 16:29:43 +0200858 .config_init = ksz8041_config_init,
859 .config_aneg = ksz8041_config_aneg,
Choi, David51f932c2010-06-28 15:23:41 +0000860 .ack_interrupt = kszphy_ack_interrupt,
861 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100862 .get_sset_count = kszphy_get_sset_count,
863 .get_strings = kszphy_get_strings,
864 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200865 .suspend = genphy_suspend,
866 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000867}, {
Sergei Shtylyov4bd7b512013-12-10 02:20:41 +0300868 .phy_id = PHY_ID_KSZ8041RNLI,
Fabio Estevamf893a992016-05-11 17:02:05 -0300869 .phy_id_mask = MICREL_PHY_ID_MASK,
Sergei Shtylyov4bd7b512013-12-10 02:20:41 +0300870 .name = "Micrel KSZ8041RNLI",
Timur Tabi529ed122016-12-07 13:20:51 -0600871 .features = PHY_BASIC_FEATURES,
Andrew Lunn1b86f702017-05-16 18:29:11 +0200872 .flags = PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100873 .driver_data = &ksz8041_type,
874 .probe = kszphy_probe,
875 .config_init = kszphy_config_init,
Sergei Shtylyov4bd7b512013-12-10 02:20:41 +0300876 .ack_interrupt = kszphy_ack_interrupt,
877 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100878 .get_sset_count = kszphy_get_sset_count,
879 .get_strings = kszphy_get_strings,
880 .get_stats = kszphy_get_stats,
Sergei Shtylyov4bd7b512013-12-10 02:20:41 +0300881 .suspend = genphy_suspend,
882 .resume = genphy_resume,
Sergei Shtylyov4bd7b512013-12-10 02:20:41 +0300883}, {
Marek Vasut510d5732012-09-23 16:58:50 +0000884 .phy_id = PHY_ID_KSZ8051,
Fabio Estevamf893a992016-05-11 17:02:05 -0300885 .phy_id_mask = MICREL_PHY_ID_MASK,
Marek Vasut510d5732012-09-23 16:58:50 +0000886 .name = "Micrel KSZ8051",
Timur Tabi529ed122016-12-07 13:20:51 -0600887 .features = PHY_BASIC_FEATURES,
Andrew Lunn1b86f702017-05-16 18:29:11 +0200888 .flags = 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 .ack_interrupt = kszphy_ack_interrupt,
893 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100894 .get_sset_count = kszphy_get_sset_count,
895 .get_strings = kszphy_get_strings,
896 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200897 .suspend = genphy_suspend,
898 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000899}, {
Marek Vasut510d5732012-09-23 16:58:50 +0000900 .phy_id = PHY_ID_KSZ8001,
901 .name = "Micrel KSZ8001 or KS8721",
Alexander Steinecd5a322016-07-29 12:12:08 +0200902 .phy_id_mask = 0x00fffffc,
Timur Tabi529ed122016-12-07 13:20:51 -0600903 .features = PHY_BASIC_FEATURES,
Andrew Lunn1b86f702017-05-16 18:29:11 +0200904 .flags = PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100905 .driver_data = &ksz8041_type,
906 .probe = kszphy_probe,
907 .config_init = kszphy_config_init,
Choi, David51f932c2010-06-28 15:23:41 +0000908 .ack_interrupt = kszphy_ack_interrupt,
909 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100910 .get_sset_count = kszphy_get_sset_count,
911 .get_strings = kszphy_get_strings,
912 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200913 .suspend = genphy_suspend,
914 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000915}, {
David J. Choi7ab59dc2013-01-23 14:05:15 +0000916 .phy_id = PHY_ID_KSZ8081,
917 .name = "Micrel KSZ8081 or KSZ8091",
Fabio Estevamf893a992016-05-11 17:02:05 -0300918 .phy_id_mask = MICREL_PHY_ID_MASK,
Timur Tabi529ed122016-12-07 13:20:51 -0600919 .features = PHY_BASIC_FEATURES,
Andrew Lunn1b86f702017-05-16 18:29:11 +0200920 .flags = PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100921 .driver_data = &ksz8081_type,
922 .probe = kszphy_probe,
Johan Hovold0f959032014-11-19 12:59:17 +0100923 .config_init = kszphy_config_init,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000924 .ack_interrupt = kszphy_ack_interrupt,
925 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100926 .get_sset_count = kszphy_get_sset_count,
927 .get_strings = kszphy_get_strings,
928 .get_stats = kszphy_get_stats,
Wenyou Yang836384d2016-08-05 14:35:41 +0800929 .suspend = kszphy_suspend,
Alexandre Bellonif5aba912016-02-26 19:18:22 +0100930 .resume = kszphy_resume,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000931}, {
932 .phy_id = PHY_ID_KSZ8061,
933 .name = "Micrel KSZ8061",
Fabio Estevamf893a992016-05-11 17:02:05 -0300934 .phy_id_mask = MICREL_PHY_ID_MASK,
Timur Tabi529ed122016-12-07 13:20:51 -0600935 .features = PHY_BASIC_FEATURES,
Andrew Lunn1b86f702017-05-16 18:29:11 +0200936 .flags = PHY_HAS_INTERRUPT,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000937 .config_init = kszphy_config_init,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000938 .ack_interrupt = kszphy_ack_interrupt,
939 .config_intr = kszphy_config_intr,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200940 .suspend = genphy_suspend,
941 .resume = genphy_resume,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000942}, {
David J. Choid0507002010-04-29 06:12:41 +0000943 .phy_id = PHY_ID_KSZ9021,
Jason Wang48d7d0a2012-06-17 22:52:09 +0000944 .phy_id_mask = 0x000ffffe,
David J. Choid0507002010-04-29 06:12:41 +0000945 .name = "Micrel KSZ9021 Gigabit PHY",
Timur Tabi529ed122016-12-07 13:20:51 -0600946 .features = PHY_GBIT_FEATURES,
Andrew Lunn1b86f702017-05-16 18:29:11 +0200947 .flags = PHY_HAS_INTERRUPT,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100948 .driver_data = &ksz9021_type,
Grygorii Strashkobfe72442017-04-13 14:11:27 -0500949 .probe = kszphy_probe,
Sean Cross954c3962013-08-21 01:46:12 +0000950 .config_init = ksz9021_config_init,
Choi, David51f932c2010-06-28 15:23:41 +0000951 .ack_interrupt = kszphy_ack_interrupt,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100952 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100953 .get_sset_count = kszphy_get_sset_count,
954 .get_strings = kszphy_get_strings,
955 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200956 .suspend = genphy_suspend,
957 .resume = genphy_resume,
Kevin Haoc846a2b2018-03-20 09:44:54 +0800958 .read_mmd = genphy_read_mmd_unsupported,
959 .write_mmd = genphy_write_mmd_unsupported,
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000960}, {
David J. Choi7ab59dc2013-01-23 14:05:15 +0000961 .phy_id = PHY_ID_KSZ9031,
Fabio Estevamf893a992016-05-11 17:02:05 -0300962 .phy_id_mask = MICREL_PHY_ID_MASK,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000963 .name = "Micrel KSZ9031 Gigabit PHY",
Timur Tabi529ed122016-12-07 13:20:51 -0600964 .features = PHY_GBIT_FEATURES,
Andrew Lunn1b86f702017-05-16 18:29:11 +0200965 .flags = PHY_HAS_INTERRUPT,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100966 .driver_data = &ksz9021_type,
Grygorii Strashkobfe72442017-04-13 14:11:27 -0500967 .probe = kszphy_probe,
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200968 .config_init = ksz9031_config_init,
Nathan Sullivand2fd7192015-10-21 14:17:04 -0500969 .read_status = ksz9031_read_status,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000970 .ack_interrupt = kszphy_ack_interrupt,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100971 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100972 .get_sset_count = kszphy_get_sset_count,
973 .get_strings = kszphy_get_strings,
974 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200975 .suspend = genphy_suspend,
Xander Hufff64f1482016-08-22 15:57:16 -0500976 .resume = kszphy_resume,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000977}, {
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000978 .phy_id = PHY_ID_KSZ8873MLL,
Fabio Estevamf893a992016-05-11 17:02:05 -0300979 .phy_id_mask = MICREL_PHY_ID_MASK,
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000980 .name = "Micrel KSZ8873MLL Switch",
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000981 .config_init = kszphy_config_init,
982 .config_aneg = ksz8873mll_config_aneg,
983 .read_status = ksz8873mll_read_status,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200984 .suspend = genphy_suspend,
985 .resume = genphy_resume,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000986}, {
987 .phy_id = PHY_ID_KSZ886X,
Fabio Estevamf893a992016-05-11 17:02:05 -0300988 .phy_id_mask = MICREL_PHY_ID_MASK,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000989 .name = "Micrel KSZ886X Switch",
Timur Tabi529ed122016-12-07 13:20:51 -0600990 .features = PHY_BASIC_FEATURES,
Andrew Lunn1b86f702017-05-16 18:29:11 +0200991 .flags = PHY_HAS_INTERRUPT,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000992 .config_init = kszphy_config_init,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200993 .suspend = genphy_suspend,
994 .resume = genphy_resume,
Sean Nyekjaer9d162ed2017-01-27 08:46:23 +0100995}, {
996 .phy_id = PHY_ID_KSZ8795,
997 .phy_id_mask = MICREL_PHY_ID_MASK,
998 .name = "Micrel KSZ8795",
Sean Nyekjaercf626c32017-01-27 21:39:03 +0100999 .features = PHY_BASIC_FEATURES,
Andrew Lunn1b86f702017-05-16 18:29:11 +02001000 .flags = PHY_HAS_INTERRUPT,
Sean Nyekjaer9d162ed2017-01-27 08:46:23 +01001001 .config_init = kszphy_config_init,
1002 .config_aneg = ksz8873mll_config_aneg,
1003 .read_status = ksz8873mll_read_status,
Sean Nyekjaer9d162ed2017-01-27 08:46:23 +01001004 .suspend = genphy_suspend,
1005 .resume = genphy_resume,
Woojung Huhfc3973a2017-05-31 20:19:13 +00001006}, {
1007 .phy_id = PHY_ID_KSZ9477,
1008 .phy_id_mask = MICREL_PHY_ID_MASK,
1009 .name = "Microchip KSZ9477",
1010 .features = PHY_GBIT_FEATURES,
1011 .config_init = kszphy_config_init,
Woojung Huhfc3973a2017-05-31 20:19:13 +00001012 .suspend = genphy_suspend,
1013 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +00001014} };
David J. Choid0507002010-04-29 06:12:41 +00001015
Johan Hovold50fd7152014-11-11 19:45:59 +01001016module_phy_driver(ksphy_driver);
David J. Choid0507002010-04-29 06:12:41 +00001017
1018MODULE_DESCRIPTION("Micrel PHY driver");
1019MODULE_AUTHOR("David J. Choi");
1020MODULE_LICENSE("GPL");
David S. Miller52a60ed2010-05-03 15:48:29 -07001021
Uwe Kleine-Königcf93c942010-10-03 23:43:32 +00001022static struct mdio_device_id __maybe_unused micrel_tbl[] = {
Jason Wang48d7d0a2012-06-17 22:52:09 +00001023 { PHY_ID_KSZ9021, 0x000ffffe },
Fabio Estevamf893a992016-05-11 17:02:05 -03001024 { PHY_ID_KSZ9031, MICREL_PHY_ID_MASK },
Alexander Steinecd5a322016-07-29 12:12:08 +02001025 { PHY_ID_KSZ8001, 0x00fffffc },
Fabio Estevamf893a992016-05-11 17:02:05 -03001026 { PHY_ID_KS8737, MICREL_PHY_ID_MASK },
Marek Vasut212ea992012-09-23 16:58:49 +00001027 { PHY_ID_KSZ8021, 0x00ffffff },
Hector Palaciosb818d1a2013-03-10 22:50:02 +00001028 { PHY_ID_KSZ8031, 0x00ffffff },
Fabio Estevamf893a992016-05-11 17:02:05 -03001029 { PHY_ID_KSZ8041, MICREL_PHY_ID_MASK },
1030 { PHY_ID_KSZ8051, MICREL_PHY_ID_MASK },
1031 { PHY_ID_KSZ8061, MICREL_PHY_ID_MASK },
1032 { PHY_ID_KSZ8081, MICREL_PHY_ID_MASK },
1033 { PHY_ID_KSZ8873MLL, MICREL_PHY_ID_MASK },
1034 { PHY_ID_KSZ886X, MICREL_PHY_ID_MASK },
David S. Miller52a60ed2010-05-03 15:48:29 -07001035 { }
1036};
1037
1038MODULE_DEVICE_TABLE(mdio, micrel_tbl);