blob: 1a6048a8c29d398ed25221972be5be43c1770b5f [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)
227 dev_err(&phydev->dev, "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)
246 dev_err(&phydev->dev, "failed to disable broadcast address\n");
247
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)
266 dev_err(&phydev->dev, "failed to disable NAND tree mode\n");
267
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) {
291 dev_err(&phydev->dev, "failed to set rmii reference clock\n");
292 return ret;
293 }
294 }
295
Johan Hovolde7a792e2014-11-19 12:59:16 +0100296 if (priv->led_mode >= 0)
297 kszphy_setup_led(phydev, type->led_mode_reg, priv->led_mode);
Johan Hovolde6a423a2014-11-19 12:59:15 +0100298
299 return 0;
Ben Dooks20d84352014-02-26 11:48:00 +0000300}
301
Sean Cross954c3962013-08-21 01:46:12 +0000302static int ksz9021_load_values_from_of(struct phy_device *phydev,
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500303 const struct device_node *of_node,
304 u16 reg,
305 const char *field1, const char *field2,
306 const char *field3, const char *field4)
Sean Cross954c3962013-08-21 01:46:12 +0000307{
308 int val1 = -1;
309 int val2 = -2;
310 int val3 = -3;
311 int val4 = -4;
312 int newval;
313 int matches = 0;
314
315 if (!of_property_read_u32(of_node, field1, &val1))
316 matches++;
317
318 if (!of_property_read_u32(of_node, field2, &val2))
319 matches++;
320
321 if (!of_property_read_u32(of_node, field3, &val3))
322 matches++;
323
324 if (!of_property_read_u32(of_node, field4, &val4))
325 matches++;
326
327 if (!matches)
328 return 0;
329
330 if (matches < 4)
331 newval = kszphy_extended_read(phydev, reg);
332 else
333 newval = 0;
334
335 if (val1 != -1)
336 newval = ((newval & 0xfff0) | ((val1 / PS_TO_REG) & 0xf) << 0);
337
Hubert Chaumette6a119742014-04-22 15:01:04 +0200338 if (val2 != -2)
Sean Cross954c3962013-08-21 01:46:12 +0000339 newval = ((newval & 0xff0f) | ((val2 / PS_TO_REG) & 0xf) << 4);
340
Hubert Chaumette6a119742014-04-22 15:01:04 +0200341 if (val3 != -3)
Sean Cross954c3962013-08-21 01:46:12 +0000342 newval = ((newval & 0xf0ff) | ((val3 / PS_TO_REG) & 0xf) << 8);
343
Hubert Chaumette6a119742014-04-22 15:01:04 +0200344 if (val4 != -4)
Sean Cross954c3962013-08-21 01:46:12 +0000345 newval = ((newval & 0x0fff) | ((val4 / PS_TO_REG) & 0xf) << 12);
346
347 return kszphy_extended_write(phydev, reg, newval);
348}
349
350static int ksz9021_config_init(struct phy_device *phydev)
351{
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500352 const struct device *dev = &phydev->dev;
353 const struct device_node *of_node = dev->of_node;
Andrew Lunn651df212015-12-09 19:56:31 +0100354 const struct device *dev_walker;
Sean Cross954c3962013-08-21 01:46:12 +0000355
Andrew Lunn651df212015-12-09 19:56:31 +0100356 /* The Micrel driver has a deprecated option to place phy OF
357 * properties in the MAC node. Walk up the tree of devices to
358 * find a device with an OF node.
359 */
360 dev_walker = &phydev->dev;
361 do {
362 of_node = dev_walker->of_node;
363 dev_walker = dev_walker->parent;
364
365 } while (!of_node && dev_walker);
Sean Cross954c3962013-08-21 01:46:12 +0000366
367 if (of_node) {
368 ksz9021_load_values_from_of(phydev, of_node,
369 MII_KSZPHY_CLK_CONTROL_PAD_SKEW,
370 "txen-skew-ps", "txc-skew-ps",
371 "rxdv-skew-ps", "rxc-skew-ps");
372 ksz9021_load_values_from_of(phydev, of_node,
373 MII_KSZPHY_RX_DATA_PAD_SKEW,
374 "rxd0-skew-ps", "rxd1-skew-ps",
375 "rxd2-skew-ps", "rxd3-skew-ps");
376 ksz9021_load_values_from_of(phydev, of_node,
377 MII_KSZPHY_TX_DATA_PAD_SKEW,
378 "txd0-skew-ps", "txd1-skew-ps",
379 "txd2-skew-ps", "txd3-skew-ps");
380 }
381 return 0;
382}
383
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200384#define MII_KSZ9031RN_MMD_CTRL_REG 0x0d
385#define MII_KSZ9031RN_MMD_REGDATA_REG 0x0e
386#define OP_DATA 1
387#define KSZ9031_PS_TO_REG 60
388
389/* Extended registers */
Jaeden Amero6270e1a2015-06-05 18:00:26 -0500390/* MMD Address 0x0 */
391#define MII_KSZ9031RN_FLP_BURST_TX_LO 3
392#define MII_KSZ9031RN_FLP_BURST_TX_HI 4
393
Jaeden Ameroae6c97b2015-06-05 18:00:25 -0500394/* MMD Address 0x2 */
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200395#define MII_KSZ9031RN_CONTROL_PAD_SKEW 4
396#define MII_KSZ9031RN_RX_DATA_PAD_SKEW 5
397#define MII_KSZ9031RN_TX_DATA_PAD_SKEW 6
398#define MII_KSZ9031RN_CLK_PAD_SKEW 8
399
400static int ksz9031_extended_write(struct phy_device *phydev,
401 u8 mode, u32 dev_addr, u32 regnum, u16 val)
402{
403 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, dev_addr);
404 phy_write(phydev, MII_KSZ9031RN_MMD_REGDATA_REG, regnum);
405 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, (mode << 14) | dev_addr);
406 return phy_write(phydev, MII_KSZ9031RN_MMD_REGDATA_REG, val);
407}
408
409static int ksz9031_extended_read(struct phy_device *phydev,
410 u8 mode, u32 dev_addr, u32 regnum)
411{
412 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, dev_addr);
413 phy_write(phydev, MII_KSZ9031RN_MMD_REGDATA_REG, regnum);
414 phy_write(phydev, MII_KSZ9031RN_MMD_CTRL_REG, (mode << 14) | dev_addr);
415 return phy_read(phydev, MII_KSZ9031RN_MMD_REGDATA_REG);
416}
417
418static int ksz9031_of_load_skew_values(struct phy_device *phydev,
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500419 const struct device_node *of_node,
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200420 u16 reg, size_t field_sz,
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500421 const char *field[], u8 numfields)
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200422{
423 int val[4] = {-1, -2, -3, -4};
424 int matches = 0;
425 u16 mask;
426 u16 maxval;
427 u16 newval;
428 int i;
429
430 for (i = 0; i < numfields; i++)
431 if (!of_property_read_u32(of_node, field[i], val + i))
432 matches++;
433
434 if (!matches)
435 return 0;
436
437 if (matches < numfields)
438 newval = ksz9031_extended_read(phydev, OP_DATA, 2, reg);
439 else
440 newval = 0;
441
442 maxval = (field_sz == 4) ? 0xf : 0x1f;
443 for (i = 0; i < numfields; i++)
444 if (val[i] != -(i + 1)) {
445 mask = 0xffff;
446 mask ^= maxval << (field_sz * i);
447 newval = (newval & mask) |
448 (((val[i] / KSZ9031_PS_TO_REG) & maxval)
449 << (field_sz * i));
450 }
451
452 return ksz9031_extended_write(phydev, OP_DATA, 2, reg, newval);
453}
454
Jaeden Amero6270e1a2015-06-05 18:00:26 -0500455static int ksz9031_center_flp_timing(struct phy_device *phydev)
456{
457 int result;
458
459 /* Center KSZ9031RNX FLP timing at 16ms. */
460 result = ksz9031_extended_write(phydev, OP_DATA, 0,
461 MII_KSZ9031RN_FLP_BURST_TX_HI, 0x0006);
462 result = ksz9031_extended_write(phydev, OP_DATA, 0,
463 MII_KSZ9031RN_FLP_BURST_TX_LO, 0x1A80);
464
465 if (result)
466 return result;
467
468 return genphy_restart_aneg(phydev);
469}
470
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200471static int ksz9031_config_init(struct phy_device *phydev)
472{
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500473 const struct device *dev = &phydev->dev;
474 const struct device_node *of_node = dev->of_node;
475 static const char *clk_skews[2] = {"rxc-skew-ps", "txc-skew-ps"};
476 static const char *rx_data_skews[4] = {
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200477 "rxd0-skew-ps", "rxd1-skew-ps",
478 "rxd2-skew-ps", "rxd3-skew-ps"
479 };
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500480 static const char *tx_data_skews[4] = {
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200481 "txd0-skew-ps", "txd1-skew-ps",
482 "txd2-skew-ps", "txd3-skew-ps"
483 };
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500484 static const char *control_skews[2] = {"txen-skew-ps", "rxdv-skew-ps"};
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200485
486 if (!of_node && dev->parent->of_node)
487 of_node = dev->parent->of_node;
488
489 if (of_node) {
490 ksz9031_of_load_skew_values(phydev, of_node,
491 MII_KSZ9031RN_CLK_PAD_SKEW, 5,
492 clk_skews, 2);
493
494 ksz9031_of_load_skew_values(phydev, of_node,
495 MII_KSZ9031RN_CONTROL_PAD_SKEW, 4,
496 control_skews, 2);
497
498 ksz9031_of_load_skew_values(phydev, of_node,
499 MII_KSZ9031RN_RX_DATA_PAD_SKEW, 4,
500 rx_data_skews, 4);
501
502 ksz9031_of_load_skew_values(phydev, of_node,
503 MII_KSZ9031RN_TX_DATA_PAD_SKEW, 4,
504 tx_data_skews, 4);
505 }
Jaeden Amero6270e1a2015-06-05 18:00:26 -0500506
507 return ksz9031_center_flp_timing(phydev);
Hubert Chaumette6e4b8272014-05-06 09:40:17 +0200508}
509
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000510#define KSZ8873MLL_GLOBAL_CONTROL_4 0x06
Johan Hovold00aee092014-11-11 20:00:09 +0100511#define KSZ8873MLL_GLOBAL_CONTROL_4_DUPLEX BIT(6)
512#define KSZ8873MLL_GLOBAL_CONTROL_4_SPEED BIT(4)
Jingoo Han32d73b12013-08-06 17:29:35 +0900513static int ksz8873mll_read_status(struct phy_device *phydev)
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000514{
515 int regval;
516
517 /* dummy read */
518 regval = phy_read(phydev, KSZ8873MLL_GLOBAL_CONTROL_4);
519
520 regval = phy_read(phydev, KSZ8873MLL_GLOBAL_CONTROL_4);
521
522 if (regval & KSZ8873MLL_GLOBAL_CONTROL_4_DUPLEX)
523 phydev->duplex = DUPLEX_HALF;
524 else
525 phydev->duplex = DUPLEX_FULL;
526
527 if (regval & KSZ8873MLL_GLOBAL_CONTROL_4_SPEED)
528 phydev->speed = SPEED_10;
529 else
530 phydev->speed = SPEED_100;
531
532 phydev->link = 1;
533 phydev->pause = phydev->asym_pause = 0;
534
535 return 0;
536}
537
Nathan Sullivand2fd7192015-10-21 14:17:04 -0500538static int ksz9031_read_status(struct phy_device *phydev)
539{
540 int err;
541 int regval;
542
543 err = genphy_read_status(phydev);
544 if (err)
545 return err;
546
547 /* Make sure the PHY is not broken. Read idle error count,
548 * and reset the PHY if it is maxed out.
549 */
550 regval = phy_read(phydev, MII_STAT1000);
551 if ((regval & 0xFF) == 0xFF) {
552 phy_init_hw(phydev);
553 phydev->link = 0;
554 }
555
556 return 0;
557}
558
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000559static int ksz8873mll_config_aneg(struct phy_device *phydev)
560{
561 return 0;
562}
563
Vince Bridgers19936942014-07-29 15:19:58 -0500564/* This routine returns -1 as an indication to the caller that the
565 * Micrel ksz9021 10/100/1000 PHY does not support standard IEEE
566 * MMD extended PHY registers.
567 */
568static int
569ksz9021_rd_mmd_phyreg(struct phy_device *phydev, int ptrad, int devnum,
570 int regnum)
571{
572 return -1;
573}
574
575/* This routine does nothing since the Micrel ksz9021 does not support
576 * standard IEEE MMD extended PHY registers.
577 */
578static void
579ksz9021_wr_mmd_phyreg(struct phy_device *phydev, int ptrad, int devnum,
580 int regnum, u32 val)
581{
582}
583
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100584static int kszphy_get_sset_count(struct phy_device *phydev)
585{
586 return ARRAY_SIZE(kszphy_hw_stats);
587}
588
589static void kszphy_get_strings(struct phy_device *phydev, u8 *data)
590{
591 int i;
592
593 for (i = 0; i < ARRAY_SIZE(kszphy_hw_stats); i++) {
594 memcpy(data + i * ETH_GSTRING_LEN,
595 kszphy_hw_stats[i].string, ETH_GSTRING_LEN);
596 }
597}
598
599#ifndef UINT64_MAX
600#define UINT64_MAX (u64)(~((u64)0))
601#endif
602static u64 kszphy_get_stat(struct phy_device *phydev, int i)
603{
604 struct kszphy_hw_stat stat = kszphy_hw_stats[i];
605 struct kszphy_priv *priv = phydev->priv;
606 u64 val;
607
608 val = phy_read(phydev, stat.reg);
609 if (val < 0) {
610 val = UINT64_MAX;
611 } else {
612 val = val & ((1 << stat.bits) - 1);
613 priv->stats[i] += val;
614 val = priv->stats[i];
615 }
616
617 return val;
618}
619
620static void kszphy_get_stats(struct phy_device *phydev,
621 struct ethtool_stats *stats, u64 *data)
622{
623 int i;
624
625 for (i = 0; i < ARRAY_SIZE(kszphy_hw_stats); i++)
626 data[i] = kszphy_get_stat(phydev, i);
627}
628
Johan Hovolde6a423a2014-11-19 12:59:15 +0100629static int kszphy_probe(struct phy_device *phydev)
630{
631 const struct kszphy_type *type = phydev->drv->driver_data;
Jaeden Amero3c9a9f72015-06-05 18:00:24 -0500632 const struct device_node *np = phydev->dev.of_node;
Johan Hovolde6a423a2014-11-19 12:59:15 +0100633 struct kszphy_priv *priv;
Johan Hovold63f44b22014-11-19 12:59:18 +0100634 struct clk *clk;
Johan Hovolde7a792e2014-11-19 12:59:16 +0100635 int ret;
Johan Hovolde6a423a2014-11-19 12:59:15 +0100636
637 priv = devm_kzalloc(&phydev->dev, sizeof(*priv), GFP_KERNEL);
638 if (!priv)
639 return -ENOMEM;
640
641 phydev->priv = priv;
642
643 priv->type = type;
644
Johan Hovolde7a792e2014-11-19 12:59:16 +0100645 if (type->led_mode_reg) {
646 ret = of_property_read_u32(np, "micrel,led-mode",
647 &priv->led_mode);
648 if (ret)
649 priv->led_mode = -1;
650
651 if (priv->led_mode > 3) {
652 dev_err(&phydev->dev, "invalid led mode: 0x%02x\n",
653 priv->led_mode);
654 priv->led_mode = -1;
655 }
656 } else {
657 priv->led_mode = -1;
658 }
659
Sascha Hauer1fadee02014-10-10 09:48:05 +0200660 clk = devm_clk_get(&phydev->dev, "rmii-ref");
Niklas Casselbced8702015-05-12 09:43:14 +0200661 /* NOTE: clk may be NULL if building without CONFIG_HAVE_CLK */
662 if (!IS_ERR_OR_NULL(clk)) {
Sascha Hauer1fadee02014-10-10 09:48:05 +0200663 unsigned long rate = clk_get_rate(clk);
Johan Hovold86dc1342014-11-19 12:59:19 +0100664 bool rmii_ref_clk_sel_25_mhz;
Sascha Hauer1fadee02014-10-10 09:48:05 +0200665
Johan Hovold63f44b22014-11-19 12:59:18 +0100666 priv->rmii_ref_clk_sel = type->has_rmii_ref_clk_sel;
Johan Hovold86dc1342014-11-19 12:59:19 +0100667 rmii_ref_clk_sel_25_mhz = of_property_read_bool(np,
668 "micrel,rmii-reference-clock-select-25-mhz");
Johan Hovold63f44b22014-11-19 12:59:18 +0100669
Sascha Hauer1fadee02014-10-10 09:48:05 +0200670 if (rate > 24500000 && rate < 25500000) {
Johan Hovold86dc1342014-11-19 12:59:19 +0100671 priv->rmii_ref_clk_sel_val = rmii_ref_clk_sel_25_mhz;
Sascha Hauer1fadee02014-10-10 09:48:05 +0200672 } else if (rate > 49500000 && rate < 50500000) {
Johan Hovold86dc1342014-11-19 12:59:19 +0100673 priv->rmii_ref_clk_sel_val = !rmii_ref_clk_sel_25_mhz;
Sascha Hauer1fadee02014-10-10 09:48:05 +0200674 } else {
675 dev_err(&phydev->dev, "Clock rate out of range: %ld\n", rate);
676 return -EINVAL;
677 }
678 }
679
Johan Hovold63f44b22014-11-19 12:59:18 +0100680 /* Support legacy board-file configuration */
681 if (phydev->dev_flags & MICREL_PHY_50MHZ_CLK) {
682 priv->rmii_ref_clk_sel = true;
683 priv->rmii_ref_clk_sel_val = true;
684 }
685
686 return 0;
Sascha Hauer1fadee02014-10-10 09:48:05 +0200687}
688
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000689static struct phy_driver ksphy_driver[] = {
690{
Choi, David51f932c2010-06-28 15:23:41 +0000691 .phy_id = PHY_ID_KS8737,
David J. Choid0507002010-04-29 06:12:41 +0000692 .phy_id_mask = 0x00fffff0,
Choi, David51f932c2010-06-28 15:23:41 +0000693 .name = "Micrel KS8737",
694 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
695 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100696 .driver_data = &ks8737_type,
David J. Choid0507002010-04-29 06:12:41 +0000697 .config_init = kszphy_config_init,
698 .config_aneg = genphy_config_aneg,
699 .read_status = genphy_read_status,
Choi, David51f932c2010-06-28 15:23:41 +0000700 .ack_interrupt = kszphy_ack_interrupt,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100701 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100702 .get_sset_count = kszphy_get_sset_count,
703 .get_strings = kszphy_get_strings,
704 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200705 .suspend = genphy_suspend,
706 .resume = genphy_resume,
David J. Choid0507002010-04-29 06:12:41 +0000707 .driver = { .owner = THIS_MODULE,},
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000708}, {
Marek Vasut212ea992012-09-23 16:58:49 +0000709 .phy_id = PHY_ID_KSZ8021,
710 .phy_id_mask = 0x00ffffff,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000711 .name = "Micrel KSZ8021 or KSZ8031",
Marek Vasut212ea992012-09-23 16:58:49 +0000712 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause |
713 SUPPORTED_Asym_Pause),
714 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100715 .driver_data = &ksz8021_type,
Johan Hovold63f44b22014-11-19 12:59:18 +0100716 .probe = kszphy_probe,
Johan Hovoldd0e1df92014-12-23 12:59:17 +0100717 .config_init = kszphy_config_init,
Marek Vasut212ea992012-09-23 16:58:49 +0000718 .config_aneg = genphy_config_aneg,
719 .read_status = genphy_read_status,
720 .ack_interrupt = kszphy_ack_interrupt,
721 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100722 .get_sset_count = kszphy_get_sset_count,
723 .get_strings = kszphy_get_strings,
724 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200725 .suspend = genphy_suspend,
726 .resume = genphy_resume,
Marek Vasut212ea992012-09-23 16:58:49 +0000727 .driver = { .owner = THIS_MODULE,},
728}, {
Hector Palaciosb818d1a2013-03-10 22:50:02 +0000729 .phy_id = PHY_ID_KSZ8031,
730 .phy_id_mask = 0x00ffffff,
731 .name = "Micrel KSZ8031",
732 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause |
733 SUPPORTED_Asym_Pause),
734 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100735 .driver_data = &ksz8021_type,
Johan Hovold63f44b22014-11-19 12:59:18 +0100736 .probe = kszphy_probe,
Johan Hovoldd0e1df92014-12-23 12:59:17 +0100737 .config_init = kszphy_config_init,
Hector Palaciosb818d1a2013-03-10 22:50:02 +0000738 .config_aneg = genphy_config_aneg,
739 .read_status = genphy_read_status,
740 .ack_interrupt = kszphy_ack_interrupt,
741 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100742 .get_sset_count = kszphy_get_sset_count,
743 .get_strings = kszphy_get_strings,
744 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200745 .suspend = genphy_suspend,
746 .resume = genphy_resume,
Hector Palaciosb818d1a2013-03-10 22:50:02 +0000747 .driver = { .owner = THIS_MODULE,},
748}, {
Marek Vasut510d5732012-09-23 16:58:50 +0000749 .phy_id = PHY_ID_KSZ8041,
David J. Choid0507002010-04-29 06:12:41 +0000750 .phy_id_mask = 0x00fffff0,
Marek Vasut510d5732012-09-23 16:58:50 +0000751 .name = "Micrel KSZ8041",
Choi, David51f932c2010-06-28 15:23:41 +0000752 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause
753 | SUPPORTED_Asym_Pause),
754 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100755 .driver_data = &ksz8041_type,
756 .probe = kszphy_probe,
757 .config_init = kszphy_config_init,
David J. Choid0507002010-04-29 06:12:41 +0000758 .config_aneg = genphy_config_aneg,
759 .read_status = genphy_read_status,
Choi, David51f932c2010-06-28 15:23:41 +0000760 .ack_interrupt = kszphy_ack_interrupt,
761 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100762 .get_sset_count = kszphy_get_sset_count,
763 .get_strings = kszphy_get_strings,
764 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200765 .suspend = genphy_suspend,
766 .resume = genphy_resume,
Choi, David51f932c2010-06-28 15:23:41 +0000767 .driver = { .owner = THIS_MODULE,},
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000768}, {
Sergei Shtylyov4bd7b512013-12-10 02:20:41 +0300769 .phy_id = PHY_ID_KSZ8041RNLI,
770 .phy_id_mask = 0x00fffff0,
771 .name = "Micrel KSZ8041RNLI",
772 .features = PHY_BASIC_FEATURES |
773 SUPPORTED_Pause | SUPPORTED_Asym_Pause,
774 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100775 .driver_data = &ksz8041_type,
776 .probe = kszphy_probe,
777 .config_init = kszphy_config_init,
Sergei Shtylyov4bd7b512013-12-10 02:20:41 +0300778 .config_aneg = genphy_config_aneg,
779 .read_status = genphy_read_status,
780 .ack_interrupt = kszphy_ack_interrupt,
781 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100782 .get_sset_count = kszphy_get_sset_count,
783 .get_strings = kszphy_get_strings,
784 .get_stats = kszphy_get_stats,
Sergei Shtylyov4bd7b512013-12-10 02:20:41 +0300785 .suspend = genphy_suspend,
786 .resume = genphy_resume,
787 .driver = { .owner = THIS_MODULE,},
788}, {
Marek Vasut510d5732012-09-23 16:58:50 +0000789 .phy_id = PHY_ID_KSZ8051,
Choi, David51f932c2010-06-28 15:23:41 +0000790 .phy_id_mask = 0x00fffff0,
Marek Vasut510d5732012-09-23 16:58:50 +0000791 .name = "Micrel KSZ8051",
Choi, David51f932c2010-06-28 15:23:41 +0000792 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause
793 | SUPPORTED_Asym_Pause),
794 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100795 .driver_data = &ksz8051_type,
796 .probe = kszphy_probe,
Johan Hovold63f44b22014-11-19 12:59:18 +0100797 .config_init = kszphy_config_init,
Choi, David51f932c2010-06-28 15:23:41 +0000798 .config_aneg = genphy_config_aneg,
799 .read_status = genphy_read_status,
800 .ack_interrupt = kszphy_ack_interrupt,
801 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100802 .get_sset_count = kszphy_get_sset_count,
803 .get_strings = kszphy_get_strings,
804 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200805 .suspend = genphy_suspend,
806 .resume = genphy_resume,
Choi, David51f932c2010-06-28 15:23:41 +0000807 .driver = { .owner = THIS_MODULE,},
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000808}, {
Marek Vasut510d5732012-09-23 16:58:50 +0000809 .phy_id = PHY_ID_KSZ8001,
810 .name = "Micrel KSZ8001 or KS8721",
Jason Wang48d7d0a2012-06-17 22:52:09 +0000811 .phy_id_mask = 0x00ffffff,
Choi, David51f932c2010-06-28 15:23:41 +0000812 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
813 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100814 .driver_data = &ksz8041_type,
815 .probe = kszphy_probe,
816 .config_init = kszphy_config_init,
Choi, David51f932c2010-06-28 15:23:41 +0000817 .config_aneg = genphy_config_aneg,
818 .read_status = genphy_read_status,
819 .ack_interrupt = kszphy_ack_interrupt,
820 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100821 .get_sset_count = kszphy_get_sset_count,
822 .get_strings = kszphy_get_strings,
823 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200824 .suspend = genphy_suspend,
825 .resume = genphy_resume,
David J. Choid0507002010-04-29 06:12:41 +0000826 .driver = { .owner = THIS_MODULE,},
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000827}, {
David J. Choi7ab59dc2013-01-23 14:05:15 +0000828 .phy_id = PHY_ID_KSZ8081,
829 .name = "Micrel KSZ8081 or KSZ8091",
830 .phy_id_mask = 0x00fffff0,
831 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
832 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovolde6a423a2014-11-19 12:59:15 +0100833 .driver_data = &ksz8081_type,
834 .probe = kszphy_probe,
Johan Hovold0f959032014-11-19 12:59:17 +0100835 .config_init = kszphy_config_init,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000836 .config_aneg = genphy_config_aneg,
837 .read_status = genphy_read_status,
838 .ack_interrupt = kszphy_ack_interrupt,
839 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100840 .get_sset_count = kszphy_get_sset_count,
841 .get_strings = kszphy_get_strings,
842 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200843 .suspend = genphy_suspend,
844 .resume = genphy_resume,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000845 .driver = { .owner = THIS_MODULE,},
846}, {
847 .phy_id = PHY_ID_KSZ8061,
848 .name = "Micrel KSZ8061",
849 .phy_id_mask = 0x00fffff0,
850 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
851 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
852 .config_init = kszphy_config_init,
853 .config_aneg = genphy_config_aneg,
854 .read_status = genphy_read_status,
855 .ack_interrupt = kszphy_ack_interrupt,
856 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100857 .get_sset_count = kszphy_get_sset_count,
858 .get_strings = kszphy_get_strings,
859 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200860 .suspend = genphy_suspend,
861 .resume = genphy_resume,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000862 .driver = { .owner = THIS_MODULE,},
863}, {
David J. Choid0507002010-04-29 06:12:41 +0000864 .phy_id = PHY_ID_KSZ9021,
Jason Wang48d7d0a2012-06-17 22:52:09 +0000865 .phy_id_mask = 0x000ffffe,
David J. Choid0507002010-04-29 06:12:41 +0000866 .name = "Micrel KSZ9021 Gigabit PHY",
Vlastimil Kosar32fcafb2013-02-28 08:45:22 +0000867 .features = (PHY_GBIT_FEATURES | SUPPORTED_Pause),
Choi, David51f932c2010-06-28 15:23:41 +0000868 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100869 .driver_data = &ksz9021_type,
Sean Cross954c3962013-08-21 01:46:12 +0000870 .config_init = ksz9021_config_init,
David J. Choid0507002010-04-29 06:12:41 +0000871 .config_aneg = genphy_config_aneg,
872 .read_status = genphy_read_status,
Choi, David51f932c2010-06-28 15:23:41 +0000873 .ack_interrupt = kszphy_ack_interrupt,
Johan Hovoldc6f95752014-11-19 12:59:22 +0100874 .config_intr = kszphy_config_intr,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100875 .get_sset_count = kszphy_get_sset_count,
876 .get_strings = kszphy_get_strings,
877 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200878 .suspend = genphy_suspend,
879 .resume = genphy_resume,
Vince Bridgers19936942014-07-29 15:19:58 -0500880 .read_mmd_indirect = ksz9021_rd_mmd_phyreg,
881 .write_mmd_indirect = ksz9021_wr_mmd_phyreg,
David J. Choid0507002010-04-29 06:12:41 +0000882 .driver = { .owner = THIS_MODULE, },
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 .driver = { .owner = THIS_MODULE, },
901}, {
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000902 .phy_id = PHY_ID_KSZ8873MLL,
903 .phy_id_mask = 0x00fffff0,
904 .name = "Micrel KSZ8873MLL Switch",
905 .features = (SUPPORTED_Pause | SUPPORTED_Asym_Pause),
906 .flags = PHY_HAS_MAGICANEG,
907 .config_init = kszphy_config_init,
908 .config_aneg = ksz8873mll_config_aneg,
909 .read_status = ksz8873mll_read_status,
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,
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000915 .driver = { .owner = THIS_MODULE, },
David J. Choi7ab59dc2013-01-23 14:05:15 +0000916}, {
917 .phy_id = PHY_ID_KSZ886X,
918 .phy_id_mask = 0x00fffff0,
919 .name = "Micrel KSZ886X Switch",
920 .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause),
921 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
922 .config_init = kszphy_config_init,
923 .config_aneg = genphy_config_aneg,
924 .read_status = genphy_read_status,
Andrew Lunn2b2427d2015-12-30 16:28:27 +0100925 .get_sset_count = kszphy_get_sset_count,
926 .get_strings = kszphy_get_strings,
927 .get_stats = kszphy_get_stats,
Patrice Vilchez1a5465f2013-09-19 19:40:48 +0200928 .suspend = genphy_suspend,
929 .resume = genphy_resume,
David J. Choi7ab59dc2013-01-23 14:05:15 +0000930 .driver = { .owner = THIS_MODULE, },
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000931} };
David J. Choid0507002010-04-29 06:12:41 +0000932
Johan Hovold50fd7152014-11-11 19:45:59 +0100933module_phy_driver(ksphy_driver);
David J. Choid0507002010-04-29 06:12:41 +0000934
935MODULE_DESCRIPTION("Micrel PHY driver");
936MODULE_AUTHOR("David J. Choi");
937MODULE_LICENSE("GPL");
David S. Miller52a60ed2010-05-03 15:48:29 -0700938
Uwe Kleine-Königcf93c942010-10-03 23:43:32 +0000939static struct mdio_device_id __maybe_unused micrel_tbl[] = {
Jason Wang48d7d0a2012-06-17 22:52:09 +0000940 { PHY_ID_KSZ9021, 0x000ffffe },
David J. Choi7ab59dc2013-01-23 14:05:15 +0000941 { PHY_ID_KSZ9031, 0x00fffff0 },
Marek Vasut510d5732012-09-23 16:58:50 +0000942 { PHY_ID_KSZ8001, 0x00ffffff },
Choi, David51f932c2010-06-28 15:23:41 +0000943 { PHY_ID_KS8737, 0x00fffff0 },
Marek Vasut212ea992012-09-23 16:58:49 +0000944 { PHY_ID_KSZ8021, 0x00ffffff },
Hector Palaciosb818d1a2013-03-10 22:50:02 +0000945 { PHY_ID_KSZ8031, 0x00ffffff },
Marek Vasut510d5732012-09-23 16:58:50 +0000946 { PHY_ID_KSZ8041, 0x00fffff0 },
947 { PHY_ID_KSZ8051, 0x00fffff0 },
David J. Choi7ab59dc2013-01-23 14:05:15 +0000948 { PHY_ID_KSZ8061, 0x00fffff0 },
949 { PHY_ID_KSZ8081, 0x00fffff0 },
Jean-Christophe PLAGNIOL-VILLARD93272e02012-11-21 05:38:07 +0000950 { PHY_ID_KSZ8873MLL, 0x00fffff0 },
David J. Choi7ab59dc2013-01-23 14:05:15 +0000951 { PHY_ID_KSZ886X, 0x00fffff0 },
David S. Miller52a60ed2010-05-03 15:48:29 -0700952 { }
953};
954
955MODULE_DEVICE_TABLE(mdio, micrel_tbl);