blob: 03833dbfca67d1ab53ca1af42398e7ea9dd04f01 [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
300 return 0;
Ben Dooks20d84352014-02-26 11:48:00 +0000301}
302
Sean Cross954c3962013-08-21 01:46:12 +0000303static int ksz9021_load_values_from_of(struct phy_device *phydev,
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500304 const struct device_node *of_node,
305 u16 reg,
306 const char *field1, const char *field2,
307 const char *field3, const char *field4)
Sean Cross954c3962013-08-21 01:46:12 +0000308{
309 int val1 = -1;
310 int val2 = -2;
311 int val3 = -3;
312 int val4 = -4;
313 int newval;
314 int matches = 0;
315
316 if (!of_property_read_u32(of_node, field1, &val1))
317 matches++;
318
319 if (!of_property_read_u32(of_node, field2, &val2))
320 matches++;
321
322 if (!of_property_read_u32(of_node, field3, &val3))
323 matches++;
324
325 if (!of_property_read_u32(of_node, field4, &val4))
326 matches++;
327
328 if (!matches)
329 return 0;
330
331 if (matches < 4)
332 newval = kszphy_extended_read(phydev, reg);
333 else
334 newval = 0;
335
336 if (val1 != -1)
337 newval = ((newval & 0xfff0) | ((val1 / PS_TO_REG) & 0xf) << 0);
338
Hubert Chaumette6a119742014-04-22 15:01:04 +0200339 if (val2 != -2)
Sean Cross954c3962013-08-21 01:46:12 +0000340 newval = ((newval & 0xff0f) | ((val2 / PS_TO_REG) & 0xf) << 4);
341
Hubert Chaumette6a119742014-04-22 15:01:04 +0200342 if (val3 != -3)
Sean Cross954c3962013-08-21 01:46:12 +0000343 newval = ((newval & 0xf0ff) | ((val3 / PS_TO_REG) & 0xf) << 8);
344
Hubert Chaumette6a119742014-04-22 15:01:04 +0200345 if (val4 != -4)
Sean Cross954c3962013-08-21 01:46:12 +0000346 newval = ((newval & 0x0fff) | ((val4 / PS_TO_REG) & 0xf) << 12);
347
348 return kszphy_extended_write(phydev, reg, newval);
349}
350
351static int ksz9021_config_init(struct phy_device *phydev)
352{
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100353 const struct device *dev = &phydev->mdio.dev;
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500354 const struct device_node *of_node = dev->of_node;
Andrew Lunn651df212015-12-09 19:56:31 +0100355 const struct device *dev_walker;
Sean Cross954c3962013-08-21 01:46:12 +0000356
Andrew Lunn651df212015-12-09 19:56:31 +0100357 /* The Micrel driver has a deprecated option to place phy OF
358 * properties in the MAC node. Walk up the tree of devices to
359 * find a device with an OF node.
360 */
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100361 dev_walker = &phydev->mdio.dev;
Andrew Lunn651df212015-12-09 19:56:31 +0100362 do {
363 of_node = dev_walker->of_node;
364 dev_walker = dev_walker->parent;
365
366 } while (!of_node && dev_walker);
Sean Cross954c3962013-08-21 01:46:12 +0000367
368 if (of_node) {
369 ksz9021_load_values_from_of(phydev, of_node,
370 MII_KSZPHY_CLK_CONTROL_PAD_SKEW,
371 "txen-skew-ps", "txc-skew-ps",
372 "rxdv-skew-ps", "rxc-skew-ps");
373 ksz9021_load_values_from_of(phydev, of_node,
374 MII_KSZPHY_RX_DATA_PAD_SKEW,
375 "rxd0-skew-ps", "rxd1-skew-ps",
376 "rxd2-skew-ps", "rxd3-skew-ps");
377 ksz9021_load_values_from_of(phydev, of_node,
378 MII_KSZPHY_TX_DATA_PAD_SKEW,
379 "txd0-skew-ps", "txd1-skew-ps",
380 "txd2-skew-ps", "txd3-skew-ps");
381 }
382 return 0;
383}
384
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200385#define MII_KSZ9031RN_MMD_CTRL_REG 0x0d
386#define MII_KSZ9031RN_MMD_REGDATA_REG 0x0e
387#define OP_DATA 1
388#define KSZ9031_PS_TO_REG 60
389
390/* Extended registers */
Jaeden Amero6270e1a2015-06-05 18:00:26 -0500391/* MMD Address 0x0 */
392#define MII_KSZ9031RN_FLP_BURST_TX_LO 3
393#define MII_KSZ9031RN_FLP_BURST_TX_HI 4
394
Jaeden Ameroae6c97b2015-06-05 18:00:25 -0500395/* MMD Address 0x2 */
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200396#define MII_KSZ9031RN_CONTROL_PAD_SKEW 4
397#define MII_KSZ9031RN_RX_DATA_PAD_SKEW 5
398#define MII_KSZ9031RN_TX_DATA_PAD_SKEW 6
399#define MII_KSZ9031RN_CLK_PAD_SKEW 8
400
401static int ksz9031_extended_write(struct phy_device *phydev,
402 u8 mode, u32 dev_addr, u32 regnum, u16 val)
403{
404 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, dev_addr);
405 phy_write(phydev, MII_KSZ9031RN_MMD_REGDATA_REG, regnum);
406 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, (mode << 14) | dev_addr);
407 return phy_write(phydev, MII_KSZ9031RN_MMD_REGDATA_REG, val);
408}
409
410static int ksz9031_extended_read(struct phy_device *phydev,
411 u8 mode, u32 dev_addr, u32 regnum)
412{
413 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, dev_addr);
414 phy_write(phydev, MII_KSZ9031RN_MMD_REGDATA_REG, regnum);
415 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, (mode << 14) | dev_addr);
416 return phy_read(phydev, MII_KSZ9031RN_MMD_REGDATA_REG);
417}
418
419static int ksz9031_of_load_skew_values(struct phy_device *phydev,
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500420 const struct device_node *of_node,
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200421 u16 reg, size_t field_sz,
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500422 const char *field[], u8 numfields)
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200423{
424 int val[4] = {-1, -2, -3, -4};
425 int matches = 0;
426 u16 mask;
427 u16 maxval;
428 u16 newval;
429 int i;
430
431 for (i = 0; i < numfields; i++)
432 if (!of_property_read_u32(of_node, field[i], val + i))
433 matches++;
434
435 if (!matches)
436 return 0;
437
438 if (matches < numfields)
439 newval = ksz9031_extended_read(phydev, OP_DATA, 2, reg);
440 else
441 newval = 0;
442
443 maxval = (field_sz == 4) ? 0xf : 0x1f;
444 for (i = 0; i < numfields; i++)
445 if (val[i] != -(i + 1)) {
446 mask = 0xffff;
447 mask ^= maxval << (field_sz * i);
448 newval = (newval & mask) |
449 (((val[i] / KSZ9031_PS_TO_REG) & maxval)
450 << (field_sz * i));
451 }
452
453 return ksz9031_extended_write(phydev, OP_DATA, 2, reg, newval);
454}
455
Jaeden Amero6270e1a2015-06-05 18:00:26 -0500456static int ksz9031_center_flp_timing(struct phy_device *phydev)
457{
458 int result;
459
460 /* Center KSZ9031RNX FLP timing at 16ms. */
461 result = ksz9031_extended_write(phydev, OP_DATA, 0,
462 MII_KSZ9031RN_FLP_BURST_TX_HI, 0x0006);
463 result = ksz9031_extended_write(phydev, OP_DATA, 0,
464 MII_KSZ9031RN_FLP_BURST_TX_LO, 0x1A80);
465
466 if (result)
467 return result;
468
469 return genphy_restart_aneg(phydev);
470}
471
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200472static int ksz9031_config_init(struct phy_device *phydev)
473{
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100474 const struct device *dev = &phydev->mdio.dev;
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500475 const struct device_node *of_node = dev->of_node;
476 static const char *clk_skews[2] = {"rxc-skew-ps", "txc-skew-ps"};
477 static const char *rx_data_skews[4] = {
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200478 "rxd0-skew-ps", "rxd1-skew-ps",
479 "rxd2-skew-ps", "rxd3-skew-ps"
480 };
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500481 static const char *tx_data_skews[4] = {
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200482 "txd0-skew-ps", "txd1-skew-ps",
483 "txd2-skew-ps", "txd3-skew-ps"
484 };
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500485 static const char *control_skews[2] = {"txen-skew-ps", "rxdv-skew-ps"};
Roosen Henrib4c19f72016-01-07 09:31:15 +0100486 const struct device *dev_walker;
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200487
Roosen Henrib4c19f72016-01-07 09:31:15 +0100488 /* The Micrel driver has a deprecated option to place phy OF
489 * properties in the MAC node. Walk up the tree of devices to
490 * find a device with an OF node.
491 */
David S. Miller9d367ed2016-01-11 23:55:43 -0500492 dev_walker = &phydev->mdio.dev;
Roosen Henrib4c19f72016-01-07 09:31:15 +0100493 do {
494 of_node = dev_walker->of_node;
495 dev_walker = dev_walker->parent;
496 } while (!of_node && dev_walker);
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200497
498 if (of_node) {
499 ksz9031_of_load_skew_values(phydev, of_node,
500 MII_KSZ9031RN_CLK_PAD_SKEW, 5,
501 clk_skews, 2);
502
503 ksz9031_of_load_skew_values(phydev, of_node,
504 MII_KSZ9031RN_CONTROL_PAD_SKEW, 4,
505 control_skews, 2);
506
507 ksz9031_of_load_skew_values(phydev, of_node,
508 MII_KSZ9031RN_RX_DATA_PAD_SKEW, 4,
509 rx_data_skews, 4);
510
511 ksz9031_of_load_skew_values(phydev, of_node,
512 MII_KSZ9031RN_TX_DATA_PAD_SKEW, 4,
513 tx_data_skews, 4);
514 }
Jaeden Amero6270e1a2015-06-05 18:00:26 -0500515
516 return ksz9031_center_flp_timing(phydev);
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200517}
518
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000519#define KSZ8873MLL_GLOBAL_CONTROL_4 0x06
Johan Hovold00aee092014-11-11 20:00:09 +0100520#define KSZ8873MLL_GLOBAL_CONTROL_4_DUPLEX BIT(6)
521#define KSZ8873MLL_GLOBAL_CONTROL_4_SPEED BIT(4)
Jingoo Han32d73b12013-08-06 17:29:35 +0900522static int ksz8873mll_read_status(struct phy_device *phydev)
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000523{
524 int regval;
525
526 /* dummy read */
527 regval = phy_read(phydev, KSZ8873MLL_GLOBAL_CONTROL_4);
528
529 regval = phy_read(phydev, KSZ8873MLL_GLOBAL_CONTROL_4);
530
531 if (regval & KSZ8873MLL_GLOBAL_CONTROL_4_DUPLEX)
532 phydev->duplex = DUPLEX_HALF;
533 else
534 phydev->duplex = DUPLEX_FULL;
535
536 if (regval & KSZ8873MLL_GLOBAL_CONTROL_4_SPEED)
537 phydev->speed = SPEED_10;
538 else
539 phydev->speed = SPEED_100;
540
541 phydev->link = 1;
542 phydev->pause = phydev->asym_pause = 0;
543
544 return 0;
545}
546
Nathan Sullivand2fd7192015-10-21 14:17:04 -0500547static int ksz9031_read_status(struct phy_device *phydev)
548{
549 int err;
550 int regval;
551
552 err = genphy_read_status(phydev);
553 if (err)
554 return err;
555
556 /* Make sure the PHY is not broken. Read idle error count,
557 * and reset the PHY if it is maxed out.
558 */
559 regval = phy_read(phydev, MII_STAT1000);
560 if ((regval & 0xFF) == 0xFF) {
561 phy_init_hw(phydev);
562 phydev->link = 0;
563 }
564
565 return 0;
566}
567
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000568static int ksz8873mll_config_aneg(struct phy_device *phydev)
569{
570 return 0;
571}
572
Vince Bridgers19936942014-07-29 15:19:58 -0500573/* This routine returns -1 as an indication to the caller that the
574 * Micrel ksz9021 10/100/1000 PHY does not support standard IEEE
575 * MMD extended PHY registers.
576 */
577static int
578ksz9021_rd_mmd_phyreg(struct phy_device *phydev, int ptrad, int devnum,
579 int regnum)
580{
581 return -1;
582}
583
584/* This routine does nothing since the Micrel ksz9021 does not support
585 * standard IEEE MMD extended PHY registers.
586 */
587static void
588ksz9021_wr_mmd_phyreg(struct phy_device *phydev, int ptrad, int devnum,
589 int regnum, u32 val)
590{
591}
592
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100593static int kszphy_get_sset_count(struct phy_device *phydev)
594{
595 return ARRAY_SIZE(kszphy_hw_stats);
596}
597
598static void kszphy_get_strings(struct phy_device *phydev, u8 *data)
599{
600 int i;
601
602 for (i = 0; i < ARRAY_SIZE(kszphy_hw_stats); i++) {
603 memcpy(data + i * ETH_GSTRING_LEN,
604 kszphy_hw_stats[i].string, ETH_GSTRING_LEN);
605 }
606}
607
608#ifndef UINT64_MAX
609#define UINT64_MAX (u64)(~((u64)0))
610#endif
611static u64 kszphy_get_stat(struct phy_device *phydev, int i)
612{
613 struct kszphy_hw_stat stat = kszphy_hw_stats[i];
614 struct kszphy_priv *priv = phydev->priv;
615 u64 val;
616
617 val = phy_read(phydev, stat.reg);
618 if (val < 0) {
619 val = UINT64_MAX;
620 } else {
621 val = val & ((1 << stat.bits) - 1);
622 priv->stats[i] += val;
623 val = priv->stats[i];
624 }
625
626 return val;
627}
628
629static void kszphy_get_stats(struct phy_device *phydev,
630 struct ethtool_stats *stats, u64 *data)
631{
632 int i;
633
634 for (i = 0; i < ARRAY_SIZE(kszphy_hw_stats); i++)
635 data[i] = kszphy_get_stat(phydev, i);
636}
637
Johan Hovolde6a423a2014-11-19 12:59:15 +0100638static int kszphy_probe(struct phy_device *phydev)
639{
640 const struct kszphy_type *type = phydev->drv->driver_data;
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100641 const struct device_node *np = phydev->mdio.dev.of_node;
Johan Hovolde6a423a2014-11-19 12:59:15 +0100642 struct kszphy_priv *priv;
Johan Hovold63f44b22014-11-19 12:59:18 +0100643 struct clk *clk;
Johan Hovolde7a792e2014-11-19 12:59:16 +0100644 int ret;
Johan Hovolde6a423a2014-11-19 12:59:15 +0100645
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100646 priv = devm_kzalloc(&phydev->mdio.dev, sizeof(*priv), GFP_KERNEL);
Johan Hovolde6a423a2014-11-19 12:59:15 +0100647 if (!priv)
648 return -ENOMEM;
649
650 phydev->priv = priv;
651
652 priv->type = type;
653
Johan Hovolde7a792e2014-11-19 12:59:16 +0100654 if (type->led_mode_reg) {
655 ret = of_property_read_u32(np, "micrel,led-mode",
656 &priv->led_mode);
657 if (ret)
658 priv->led_mode = -1;
659
660 if (priv->led_mode > 3) {
Andrew Lunn72ba48b2016-01-06 20:11:09 +0100661 phydev_err(phydev, "invalid led mode: 0x%02x\n",
662 priv->led_mode);
Johan Hovolde7a792e2014-11-19 12:59:16 +0100663 priv->led_mode = -1;
664 }
665 } else {
666 priv->led_mode = -1;
667 }
668
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100669 clk = devm_clk_get(&phydev->mdio.dev, "rmii-ref");
Niklas Casselbced8702015-05-12 09:43:14 +0200670 /* NOTE: clk may be NULL if building without CONFIG_HAVE_CLK */
671 if (!IS_ERR_OR_NULL(clk)) {
Sascha Hauer1fadee02014-10-10 09:48:05 +0200672 unsigned long rate = clk_get_rate(clk);
Johan Hovold86dc1342014-11-19 12:59:19 +0100673 bool rmii_ref_clk_sel_25_mhz;
Sascha Hauer1fadee02014-10-10 09:48:05 +0200674
Johan Hovold63f44b22014-11-19 12:59:18 +0100675 priv->rmii_ref_clk_sel = type->has_rmii_ref_clk_sel;
Johan Hovold86dc1342014-11-19 12:59:19 +0100676 rmii_ref_clk_sel_25_mhz = of_property_read_bool(np,
677 "micrel,rmii-reference-clock-select-25-mhz");
Johan Hovold63f44b22014-11-19 12:59:18 +0100678
Sascha Hauer1fadee02014-10-10 09:48:05 +0200679 if (rate > 24500000 && rate < 25500000) {
Johan Hovold86dc1342014-11-19 12:59:19 +0100680 priv->rmii_ref_clk_sel_val = rmii_ref_clk_sel_25_mhz;
Sascha Hauer1fadee02014-10-10 09:48:05 +0200681 } else if (rate > 49500000 && rate < 50500000) {
Johan Hovold86dc1342014-11-19 12:59:19 +0100682 priv->rmii_ref_clk_sel_val = !rmii_ref_clk_sel_25_mhz;
Sascha Hauer1fadee02014-10-10 09:48:05 +0200683 } else {
Andrew Lunn72ba48b2016-01-06 20:11:09 +0100684 phydev_err(phydev, "Clock rate out of range: %ld\n",
685 rate);
Sascha Hauer1fadee02014-10-10 09:48:05 +0200686 return -EINVAL;
687 }
688 }
689
Johan Hovold63f44b22014-11-19 12:59:18 +0100690 /* Support legacy board-file configuration */
691 if (phydev->dev_flags & MICREL_PHY_50MHZ_CLK) {
692 priv->rmii_ref_clk_sel = true;
693 priv->rmii_ref_clk_sel_val = true;
694 }
695
696 return 0;
Sascha Hauer1fadee02014-10-10 09:48:05 +0200697}
698
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000699static struct phy_driver ksphy_driver[] = {
700{
Choi, David51f932c2010-06-28 15:23:41 +0000701 .phy_id = PHY_ID_KS8737,
David J. Choid0507002010-04-29 06:12:41 +0000702 .phy_id_mask = 0x00fffff0,
Choi, David51f932c2010-06-28 15:23:41 +0000703 .name = "Micrel KS8737",
704 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
705 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100706 .driver_data = &ks8737_type,
David J. Choid0507002010-04-29 06:12:41 +0000707 .config_init = kszphy_config_init,
708 .config_aneg = genphy_config_aneg,
709 .read_status = genphy_read_status,
Choi, David51f932c2010-06-28 15:23:41 +0000710 .ack_interrupt = kszphy_ack_interrupt,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100711 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100712 .get_sset_count = kszphy_get_sset_count,
713 .get_strings = kszphy_get_strings,
714 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200715 .suspend = genphy_suspend,
716 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000717}, {
Marek Vasut212ea992012-09-23 16:58:49 +0000718 .phy_id = PHY_ID_KSZ8021,
719 .phy_id_mask = 0x00ffffff,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000720 .name = "Micrel KSZ8021 or KSZ8031",
Marek Vasut212ea992012-09-23 16:58:49 +0000721 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause |
722 SUPPORTED_Asym_Pause),
723 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100724 .driver_data = &ksz8021_type,
Johan Hovold63f44b22014-11-19 12:59:18 +0100725 .probe = kszphy_probe,
Johan Hovoldd0e1df92014-12-23 12:59:17 +0100726 .config_init = kszphy_config_init,
Marek Vasut212ea992012-09-23 16:58:49 +0000727 .config_aneg = genphy_config_aneg,
728 .read_status = genphy_read_status,
729 .ack_interrupt = kszphy_ack_interrupt,
730 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100731 .get_sset_count = kszphy_get_sset_count,
732 .get_strings = kszphy_get_strings,
733 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200734 .suspend = genphy_suspend,
735 .resume = genphy_resume,
Marek Vasut212ea992012-09-23 16:58:49 +0000736}, {
Hector Palaciosb818d1a2013-03-10 22:50:02 +0000737 .phy_id = PHY_ID_KSZ8031,
738 .phy_id_mask = 0x00ffffff,
739 .name = "Micrel KSZ8031",
740 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause |
741 SUPPORTED_Asym_Pause),
742 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100743 .driver_data = &ksz8021_type,
Johan Hovold63f44b22014-11-19 12:59:18 +0100744 .probe = kszphy_probe,
Johan Hovoldd0e1df92014-12-23 12:59:17 +0100745 .config_init = kszphy_config_init,
Hector Palaciosb818d1a2013-03-10 22:50:02 +0000746 .config_aneg = genphy_config_aneg,
747 .read_status = genphy_read_status,
748 .ack_interrupt = kszphy_ack_interrupt,
749 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100750 .get_sset_count = kszphy_get_sset_count,
751 .get_strings = kszphy_get_strings,
752 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200753 .suspend = genphy_suspend,
754 .resume = genphy_resume,
Hector Palaciosb818d1a2013-03-10 22:50:02 +0000755}, {
Marek Vasut510d5732012-09-23 16:58:50 +0000756 .phy_id = PHY_ID_KSZ8041,
David J. Choid0507002010-04-29 06:12:41 +0000757 .phy_id_mask = 0x00fffff0,
Marek Vasut510d5732012-09-23 16:58:50 +0000758 .name = "Micrel KSZ8041",
Choi, David51f932c2010-06-28 15:23:41 +0000759 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause
760 | SUPPORTED_Asym_Pause),
761 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100762 .driver_data = &ksz8041_type,
763 .probe = kszphy_probe,
764 .config_init = kszphy_config_init,
David J. Choid0507002010-04-29 06:12:41 +0000765 .config_aneg = genphy_config_aneg,
766 .read_status = genphy_read_status,
Choi, David51f932c2010-06-28 15:23:41 +0000767 .ack_interrupt = kszphy_ack_interrupt,
768 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100769 .get_sset_count = kszphy_get_sset_count,
770 .get_strings = kszphy_get_strings,
771 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200772 .suspend = genphy_suspend,
773 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000774}, {
Sergei Shtylyov4bd7b512013-12-10 02:20:41 +0300775 .phy_id = PHY_ID_KSZ8041RNLI,
776 .phy_id_mask = 0x00fffff0,
777 .name = "Micrel KSZ8041RNLI",
778 .features = PHY_BASIC_FEATURES |
779 SUPPORTED_Pause | SUPPORTED_Asym_Pause,
780 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100781 .driver_data = &ksz8041_type,
782 .probe = kszphy_probe,
783 .config_init = kszphy_config_init,
Sergei Shtylyov4bd7b512013-12-10 02:20:41 +0300784 .config_aneg = genphy_config_aneg,
785 .read_status = genphy_read_status,
786 .ack_interrupt = kszphy_ack_interrupt,
787 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100788 .get_sset_count = kszphy_get_sset_count,
789 .get_strings = kszphy_get_strings,
790 .get_stats = kszphy_get_stats,
Sergei Shtylyov4bd7b512013-12-10 02:20:41 +0300791 .suspend = genphy_suspend,
792 .resume = genphy_resume,
Sergei Shtylyov4bd7b512013-12-10 02:20:41 +0300793}, {
Marek Vasut510d5732012-09-23 16:58:50 +0000794 .phy_id = PHY_ID_KSZ8051,
Choi, David51f932c2010-06-28 15:23:41 +0000795 .phy_id_mask = 0x00fffff0,
Marek Vasut510d5732012-09-23 16:58:50 +0000796 .name = "Micrel KSZ8051",
Choi, David51f932c2010-06-28 15:23:41 +0000797 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause
798 | SUPPORTED_Asym_Pause),
799 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100800 .driver_data = &ksz8051_type,
801 .probe = kszphy_probe,
Johan Hovold63f44b22014-11-19 12:59:18 +0100802 .config_init = kszphy_config_init,
Choi, David51f932c2010-06-28 15:23:41 +0000803 .config_aneg = genphy_config_aneg,
804 .read_status = genphy_read_status,
805 .ack_interrupt = kszphy_ack_interrupt,
806 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100807 .get_sset_count = kszphy_get_sset_count,
808 .get_strings = kszphy_get_strings,
809 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200810 .suspend = genphy_suspend,
811 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000812}, {
Marek Vasut510d5732012-09-23 16:58:50 +0000813 .phy_id = PHY_ID_KSZ8001,
814 .name = "Micrel KSZ8001 or KS8721",
Jason Wang48d7d0a2012-06-17 22:52:09 +0000815 .phy_id_mask = 0x00ffffff,
Choi, David51f932c2010-06-28 15:23:41 +0000816 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
817 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100818 .driver_data = &ksz8041_type,
819 .probe = kszphy_probe,
820 .config_init = kszphy_config_init,
Choi, David51f932c2010-06-28 15:23:41 +0000821 .config_aneg = genphy_config_aneg,
822 .read_status = genphy_read_status,
823 .ack_interrupt = kszphy_ack_interrupt,
824 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100825 .get_sset_count = kszphy_get_sset_count,
826 .get_strings = kszphy_get_strings,
827 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200828 .suspend = genphy_suspend,
829 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000830}, {
David J. Choi7ab59dc2013-01-23 14:05:15 +0000831 .phy_id = PHY_ID_KSZ8081,
832 .name = "Micrel KSZ8081 or KSZ8091",
833 .phy_id_mask = 0x00fffff0,
834 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
835 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100836 .driver_data = &ksz8081_type,
837 .probe = kszphy_probe,
Johan Hovold0f959032014-11-19 12:59:17 +0100838 .config_init = kszphy_config_init,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000839 .config_aneg = genphy_config_aneg,
840 .read_status = genphy_read_status,
841 .ack_interrupt = kszphy_ack_interrupt,
842 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100843 .get_sset_count = kszphy_get_sset_count,
844 .get_strings = kszphy_get_strings,
845 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200846 .suspend = genphy_suspend,
847 .resume = genphy_resume,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000848}, {
849 .phy_id = PHY_ID_KSZ8061,
850 .name = "Micrel KSZ8061",
851 .phy_id_mask = 0x00fffff0,
852 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
853 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
854 .config_init = kszphy_config_init,
855 .config_aneg = genphy_config_aneg,
856 .read_status = genphy_read_status,
857 .ack_interrupt = kszphy_ack_interrupt,
858 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100859 .get_sset_count = kszphy_get_sset_count,
860 .get_strings = kszphy_get_strings,
861 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200862 .suspend = genphy_suspend,
863 .resume = genphy_resume,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000864}, {
David J. Choid0507002010-04-29 06:12:41 +0000865 .phy_id = PHY_ID_KSZ9021,
Jason Wang48d7d0a2012-06-17 22:52:09 +0000866 .phy_id_mask = 0x000ffffe,
David J. Choid0507002010-04-29 06:12:41 +0000867 .name = "Micrel KSZ9021 Gigabit PHY",
Vlastimil Kosar32fcafb2013-02-28 08:45:22 +0000868 .features = (PHY_GBIT_FEATURES | SUPPORTED_Pause),
Choi, David51f932c2010-06-28 15:23:41 +0000869 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100870 .driver_data = &ksz9021_type,
Sean Cross954c3962013-08-21 01:46:12 +0000871 .config_init = ksz9021_config_init,
David J. Choid0507002010-04-29 06:12:41 +0000872 .config_aneg = genphy_config_aneg,
873 .read_status = genphy_read_status,
Choi, David51f932c2010-06-28 15:23:41 +0000874 .ack_interrupt = kszphy_ack_interrupt,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100875 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100876 .get_sset_count = kszphy_get_sset_count,
877 .get_strings = kszphy_get_strings,
878 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200879 .suspend = genphy_suspend,
880 .resume = genphy_resume,
Vince Bridgers19936942014-07-29 15:19:58 -0500881 .read_mmd_indirect = ksz9021_rd_mmd_phyreg,
882 .write_mmd_indirect = ksz9021_wr_mmd_phyreg,
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000883}, {
David J. Choi7ab59dc2013-01-23 14:05:15 +0000884 .phy_id = PHY_ID_KSZ9031,
885 .phy_id_mask = 0x00fffff0,
886 .name = "Micrel KSZ9031 Gigabit PHY",
Mike Looijmans95e8b102014-09-15 12:06:33 +0200887 .features = (PHY_GBIT_FEATURES | SUPPORTED_Pause),
David J. Choi7ab59dc2013-01-23 14:05:15 +0000888 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100889 .driver_data = &ksz9021_type,
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200890 .config_init = ksz9031_config_init,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000891 .config_aneg = genphy_config_aneg,
Nathan Sullivand2fd7192015-10-21 14:17:04 -0500892 .read_status = ksz9031_read_status,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000893 .ack_interrupt = kszphy_ack_interrupt,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100894 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100895 .get_sset_count = kszphy_get_sset_count,
896 .get_strings = kszphy_get_strings,
897 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200898 .suspend = genphy_suspend,
899 .resume = genphy_resume,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000900}, {
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000901 .phy_id = PHY_ID_KSZ8873MLL,
902 .phy_id_mask = 0x00fffff0,
903 .name = "Micrel KSZ8873MLL Switch",
904 .features = (SUPPORTED_Pause | SUPPORTED_Asym_Pause),
905 .flags = PHY_HAS_MAGICANEG,
906 .config_init = kszphy_config_init,
907 .config_aneg = ksz8873mll_config_aneg,
908 .read_status = ksz8873mll_read_status,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100909 .get_sset_count = kszphy_get_sset_count,
910 .get_strings = kszphy_get_strings,
911 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200912 .suspend = genphy_suspend,
913 .resume = genphy_resume,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000914}, {
915 .phy_id = PHY_ID_KSZ886X,
916 .phy_id_mask = 0x00fffff0,
917 .name = "Micrel KSZ886X Switch",
918 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
919 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
920 .config_init = kszphy_config_init,
921 .config_aneg = genphy_config_aneg,
922 .read_status = genphy_read_status,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100923 .get_sset_count = kszphy_get_sset_count,
924 .get_strings = kszphy_get_strings,
925 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200926 .suspend = genphy_suspend,
927 .resume = genphy_resume,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000928} };
David J. Choid0507002010-04-29 06:12:41 +0000929
Johan Hovold50fd7152014-11-11 19:45:59 +0100930module_phy_driver(ksphy_driver);
David J. Choid0507002010-04-29 06:12:41 +0000931
932MODULE_DESCRIPTION("Micrel PHY driver");
933MODULE_AUTHOR("David J. Choi");
934MODULE_LICENSE("GPL");
David S. Miller52a60ed2010-05-03 15:48:29 -0700935
Uwe Kleine-Königcf93c942010-10-03 23:43:32 +0000936static struct mdio_device_id __maybe_unused micrel_tbl[] = {
Jason Wang48d7d0a2012-06-17 22:52:09 +0000937 { PHY_ID_KSZ9021, 0x000ffffe },
David J. Choi7ab59dc2013-01-23 14:05:15 +0000938 { PHY_ID_KSZ9031, 0x00fffff0 },
Marek Vasut510d5732012-09-23 16:58:50 +0000939 { PHY_ID_KSZ8001, 0x00ffffff },
Choi, David51f932c2010-06-28 15:23:41 +0000940 { PHY_ID_KS8737, 0x00fffff0 },
Marek Vasut212ea992012-09-23 16:58:49 +0000941 { PHY_ID_KSZ8021, 0x00ffffff },
Hector Palaciosb818d1a2013-03-10 22:50:02 +0000942 { PHY_ID_KSZ8031, 0x00ffffff },
Marek Vasut510d5732012-09-23 16:58:50 +0000943 { PHY_ID_KSZ8041, 0x00fffff0 },
944 { PHY_ID_KSZ8051, 0x00fffff0 },
David J. Choi7ab59dc2013-01-23 14:05:15 +0000945 { PHY_ID_KSZ8061, 0x00fffff0 },
946 { PHY_ID_KSZ8081, 0x00fffff0 },
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000947 { PHY_ID_KSZ8873MLL, 0x00fffff0 },
David J. Choi7ab59dc2013-01-23 14:05:15 +0000948 { PHY_ID_KSZ886X, 0x00fffff0 },
David S. Miller52a60ed2010-05-03 15:48:29 -0700949 { }
950};
951
952MODULE_DEVICE_TABLE(mdio, micrel_tbl);