xref: /linux/drivers/net/phy/micrel.c (revision 86287543715ac2a6d92d561cc105d79306511457)
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * drivers/net/phy/micrel.c
4  *
5  * Driver for Micrel PHYs
6  *
7  * Author: David J. Choi
8  *
9  * Copyright (c) 2010-2013 Micrel, Inc.
10  * Copyright (c) 2014 Johan Hovold <johan@kernel.org>
11  *
12  * Support : Micrel Phys:
13  *		Giga phys: ksz9021, ksz9031, ksz9131
14  *		100/10 Phys : ksz8001, ksz8721, ksz8737, ksz8041
15  *			   ksz8021, ksz8031, ksz8051,
16  *			   ksz8081, ksz8091,
17  *			   ksz8061,
18  *		Switch : ksz8873, ksz886x
19  *			 ksz9477
20  */
21 
22 #include <linux/kernel.h>
23 #include <linux/module.h>
24 #include <linux/phy.h>
25 #include <linux/micrel_phy.h>
26 #include <linux/of.h>
27 #include <linux/clk.h>
28 
29 /* Operation Mode Strap Override */
30 #define MII_KSZPHY_OMSO				0x16
31 #define KSZPHY_OMSO_FACTORY_TEST		BIT(15)
32 #define KSZPHY_OMSO_B_CAST_OFF			BIT(9)
33 #define KSZPHY_OMSO_NAND_TREE_ON		BIT(5)
34 #define KSZPHY_OMSO_RMII_OVERRIDE		BIT(1)
35 #define KSZPHY_OMSO_MII_OVERRIDE		BIT(0)
36 
37 /* general Interrupt control/status reg in vendor specific block. */
38 #define MII_KSZPHY_INTCS			0x1B
39 #define	KSZPHY_INTCS_JABBER			BIT(15)
40 #define	KSZPHY_INTCS_RECEIVE_ERR		BIT(14)
41 #define	KSZPHY_INTCS_PAGE_RECEIVE		BIT(13)
42 #define	KSZPHY_INTCS_PARELLEL			BIT(12)
43 #define	KSZPHY_INTCS_LINK_PARTNER_ACK		BIT(11)
44 #define	KSZPHY_INTCS_LINK_DOWN			BIT(10)
45 #define	KSZPHY_INTCS_REMOTE_FAULT		BIT(9)
46 #define	KSZPHY_INTCS_LINK_UP			BIT(8)
47 #define	KSZPHY_INTCS_ALL			(KSZPHY_INTCS_LINK_UP |\
48 						KSZPHY_INTCS_LINK_DOWN)
49 
50 /* PHY Control 1 */
51 #define	MII_KSZPHY_CTRL_1			0x1e
52 
53 /* PHY Control 2 / PHY Control (if no PHY Control 1) */
54 #define	MII_KSZPHY_CTRL_2			0x1f
55 #define	MII_KSZPHY_CTRL				MII_KSZPHY_CTRL_2
56 /* bitmap of PHY register to set interrupt mode */
57 #define KSZPHY_CTRL_INT_ACTIVE_HIGH		BIT(9)
58 #define KSZPHY_RMII_REF_CLK_SEL			BIT(7)
59 
60 /* Write/read to/from extended registers */
61 #define MII_KSZPHY_EXTREG                       0x0b
62 #define KSZPHY_EXTREG_WRITE                     0x8000
63 
64 #define MII_KSZPHY_EXTREG_WRITE                 0x0c
65 #define MII_KSZPHY_EXTREG_READ                  0x0d
66 
67 /* Extended registers */
68 #define MII_KSZPHY_CLK_CONTROL_PAD_SKEW         0x104
69 #define MII_KSZPHY_RX_DATA_PAD_SKEW             0x105
70 #define MII_KSZPHY_TX_DATA_PAD_SKEW             0x106
71 
72 #define PS_TO_REG				200
73 
74 struct kszphy_hw_stat {
75 	const char *string;
76 	u8 reg;
77 	u8 bits;
78 };
79 
80 static struct kszphy_hw_stat kszphy_hw_stats[] = {
81 	{ "phy_receive_errors", 21, 16},
82 	{ "phy_idle_errors", 10, 8 },
83 };
84 
85 struct kszphy_type {
86 	u32 led_mode_reg;
87 	u16 interrupt_level_mask;
88 	bool has_broadcast_disable;
89 	bool has_nand_tree_disable;
90 	bool has_rmii_ref_clk_sel;
91 };
92 
93 struct kszphy_priv {
94 	const struct kszphy_type *type;
95 	int led_mode;
96 	bool rmii_ref_clk_sel;
97 	bool rmii_ref_clk_sel_val;
98 	u64 stats[ARRAY_SIZE(kszphy_hw_stats)];
99 };
100 
101 static const struct kszphy_type ksz8021_type = {
102 	.led_mode_reg		= MII_KSZPHY_CTRL_2,
103 	.has_broadcast_disable	= true,
104 	.has_nand_tree_disable	= true,
105 	.has_rmii_ref_clk_sel	= true,
106 };
107 
108 static const struct kszphy_type ksz8041_type = {
109 	.led_mode_reg		= MII_KSZPHY_CTRL_1,
110 };
111 
112 static const struct kszphy_type ksz8051_type = {
113 	.led_mode_reg		= MII_KSZPHY_CTRL_2,
114 	.has_nand_tree_disable	= true,
115 };
116 
117 static const struct kszphy_type ksz8081_type = {
118 	.led_mode_reg		= MII_KSZPHY_CTRL_2,
119 	.has_broadcast_disable	= true,
120 	.has_nand_tree_disable	= true,
121 	.has_rmii_ref_clk_sel	= true,
122 };
123 
124 static const struct kszphy_type ks8737_type = {
125 	.interrupt_level_mask	= BIT(14),
126 };
127 
128 static const struct kszphy_type ksz9021_type = {
129 	.interrupt_level_mask	= BIT(14),
130 };
131 
132 static int kszphy_extended_write(struct phy_device *phydev,
133 				u32 regnum, u16 val)
134 {
135 	phy_write(phydev, MII_KSZPHY_EXTREG, KSZPHY_EXTREG_WRITE | regnum);
136 	return phy_write(phydev, MII_KSZPHY_EXTREG_WRITE, val);
137 }
138 
139 static int kszphy_extended_read(struct phy_device *phydev,
140 				u32 regnum)
141 {
142 	phy_write(phydev, MII_KSZPHY_EXTREG, regnum);
143 	return phy_read(phydev, MII_KSZPHY_EXTREG_READ);
144 }
145 
146 static int kszphy_ack_interrupt(struct phy_device *phydev)
147 {
148 	/* bit[7..0] int status, which is a read and clear register. */
149 	int rc;
150 
151 	rc = phy_read(phydev, MII_KSZPHY_INTCS);
152 
153 	return (rc < 0) ? rc : 0;
154 }
155 
156 static int kszphy_config_intr(struct phy_device *phydev)
157 {
158 	const struct kszphy_type *type = phydev->drv->driver_data;
159 	int temp;
160 	u16 mask;
161 
162 	if (type && type->interrupt_level_mask)
163 		mask = type->interrupt_level_mask;
164 	else
165 		mask = KSZPHY_CTRL_INT_ACTIVE_HIGH;
166 
167 	/* set the interrupt pin active low */
168 	temp = phy_read(phydev, MII_KSZPHY_CTRL);
169 	if (temp < 0)
170 		return temp;
171 	temp &= ~mask;
172 	phy_write(phydev, MII_KSZPHY_CTRL, temp);
173 
174 	/* enable / disable interrupts */
175 	if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
176 		temp = KSZPHY_INTCS_ALL;
177 	else
178 		temp = 0;
179 
180 	return phy_write(phydev, MII_KSZPHY_INTCS, temp);
181 }
182 
183 static int kszphy_rmii_clk_sel(struct phy_device *phydev, bool val)
184 {
185 	int ctrl;
186 
187 	ctrl = phy_read(phydev, MII_KSZPHY_CTRL);
188 	if (ctrl < 0)
189 		return ctrl;
190 
191 	if (val)
192 		ctrl |= KSZPHY_RMII_REF_CLK_SEL;
193 	else
194 		ctrl &= ~KSZPHY_RMII_REF_CLK_SEL;
195 
196 	return phy_write(phydev, MII_KSZPHY_CTRL, ctrl);
197 }
198 
199 static int kszphy_setup_led(struct phy_device *phydev, u32 reg, int val)
200 {
201 	int rc, temp, shift;
202 
203 	switch (reg) {
204 	case MII_KSZPHY_CTRL_1:
205 		shift = 14;
206 		break;
207 	case MII_KSZPHY_CTRL_2:
208 		shift = 4;
209 		break;
210 	default:
211 		return -EINVAL;
212 	}
213 
214 	temp = phy_read(phydev, reg);
215 	if (temp < 0) {
216 		rc = temp;
217 		goto out;
218 	}
219 
220 	temp &= ~(3 << shift);
221 	temp |= val << shift;
222 	rc = phy_write(phydev, reg, temp);
223 out:
224 	if (rc < 0)
225 		phydev_err(phydev, "failed to set led mode\n");
226 
227 	return rc;
228 }
229 
230 /* Disable PHY address 0 as the broadcast address, so that it can be used as a
231  * unique (non-broadcast) address on a shared bus.
232  */
233 static int kszphy_broadcast_disable(struct phy_device *phydev)
234 {
235 	int ret;
236 
237 	ret = phy_read(phydev, MII_KSZPHY_OMSO);
238 	if (ret < 0)
239 		goto out;
240 
241 	ret = phy_write(phydev, MII_KSZPHY_OMSO, ret | KSZPHY_OMSO_B_CAST_OFF);
242 out:
243 	if (ret)
244 		phydev_err(phydev, "failed to disable broadcast address\n");
245 
246 	return ret;
247 }
248 
249 static int kszphy_nand_tree_disable(struct phy_device *phydev)
250 {
251 	int ret;
252 
253 	ret = phy_read(phydev, MII_KSZPHY_OMSO);
254 	if (ret < 0)
255 		goto out;
256 
257 	if (!(ret & KSZPHY_OMSO_NAND_TREE_ON))
258 		return 0;
259 
260 	ret = phy_write(phydev, MII_KSZPHY_OMSO,
261 			ret & ~KSZPHY_OMSO_NAND_TREE_ON);
262 out:
263 	if (ret)
264 		phydev_err(phydev, "failed to disable NAND tree mode\n");
265 
266 	return ret;
267 }
268 
269 /* Some config bits need to be set again on resume, handle them here. */
270 static int kszphy_config_reset(struct phy_device *phydev)
271 {
272 	struct kszphy_priv *priv = phydev->priv;
273 	int ret;
274 
275 	if (priv->rmii_ref_clk_sel) {
276 		ret = kszphy_rmii_clk_sel(phydev, priv->rmii_ref_clk_sel_val);
277 		if (ret) {
278 			phydev_err(phydev,
279 				   "failed to set rmii reference clock\n");
280 			return ret;
281 		}
282 	}
283 
284 	if (priv->led_mode >= 0)
285 		kszphy_setup_led(phydev, priv->type->led_mode_reg, priv->led_mode);
286 
287 	return 0;
288 }
289 
290 static int kszphy_config_init(struct phy_device *phydev)
291 {
292 	struct kszphy_priv *priv = phydev->priv;
293 	const struct kszphy_type *type;
294 
295 	if (!priv)
296 		return 0;
297 
298 	type = priv->type;
299 
300 	if (type->has_broadcast_disable)
301 		kszphy_broadcast_disable(phydev);
302 
303 	if (type->has_nand_tree_disable)
304 		kszphy_nand_tree_disable(phydev);
305 
306 	return kszphy_config_reset(phydev);
307 }
308 
309 static int ksz8041_config_init(struct phy_device *phydev)
310 {
311 	__ETHTOOL_DECLARE_LINK_MODE_MASK(mask) = { 0, };
312 
313 	struct device_node *of_node = phydev->mdio.dev.of_node;
314 
315 	/* Limit supported and advertised modes in fiber mode */
316 	if (of_property_read_bool(of_node, "micrel,fiber-mode")) {
317 		phydev->dev_flags |= MICREL_PHY_FXEN;
318 		linkmode_set_bit(ETHTOOL_LINK_MODE_100baseT_Full_BIT, mask);
319 		linkmode_set_bit(ETHTOOL_LINK_MODE_100baseT_Half_BIT, mask);
320 
321 		linkmode_and(phydev->supported, phydev->supported, mask);
322 		linkmode_set_bit(ETHTOOL_LINK_MODE_FIBRE_BIT,
323 				 phydev->supported);
324 		linkmode_and(phydev->advertising, phydev->advertising, mask);
325 		linkmode_set_bit(ETHTOOL_LINK_MODE_FIBRE_BIT,
326 				 phydev->advertising);
327 		phydev->autoneg = AUTONEG_DISABLE;
328 	}
329 
330 	return kszphy_config_init(phydev);
331 }
332 
333 static int ksz8041_config_aneg(struct phy_device *phydev)
334 {
335 	/* Skip auto-negotiation in fiber mode */
336 	if (phydev->dev_flags & MICREL_PHY_FXEN) {
337 		phydev->speed = SPEED_100;
338 		return 0;
339 	}
340 
341 	return genphy_config_aneg(phydev);
342 }
343 
344 static int ksz8051_ksz8795_match_phy_device(struct phy_device *phydev,
345 					    const u32 ksz_phy_id)
346 {
347 	int ret;
348 
349 	if ((phydev->phy_id & MICREL_PHY_ID_MASK) != ksz_phy_id)
350 		return 0;
351 
352 	ret = phy_read(phydev, MII_BMSR);
353 	if (ret < 0)
354 		return ret;
355 
356 	/* KSZ8051 PHY and KSZ8794/KSZ8795/KSZ8765 switch share the same
357 	 * exact PHY ID. However, they can be told apart by the extended
358 	 * capability registers presence. The KSZ8051 PHY has them while
359 	 * the switch does not.
360 	 */
361 	ret &= BMSR_ERCAP;
362 	if (ksz_phy_id == PHY_ID_KSZ8051)
363 		return ret;
364 	else
365 		return !ret;
366 }
367 
368 static int ksz8051_match_phy_device(struct phy_device *phydev)
369 {
370 	return ksz8051_ksz8795_match_phy_device(phydev, PHY_ID_KSZ8051);
371 }
372 
373 static int ksz8081_config_init(struct phy_device *phydev)
374 {
375 	/* KSZPHY_OMSO_FACTORY_TEST is set at de-assertion of the reset line
376 	 * based on the RXER (KSZ8081RNA/RND) or TXC (KSZ8081MNX/RNB) pin. If a
377 	 * pull-down is missing, the factory test mode should be cleared by
378 	 * manually writing a 0.
379 	 */
380 	phy_clear_bits(phydev, MII_KSZPHY_OMSO, KSZPHY_OMSO_FACTORY_TEST);
381 
382 	return kszphy_config_init(phydev);
383 }
384 
385 static int ksz8061_config_init(struct phy_device *phydev)
386 {
387 	int ret;
388 
389 	ret = phy_write_mmd(phydev, MDIO_MMD_PMAPMD, MDIO_DEVID1, 0xB61A);
390 	if (ret)
391 		return ret;
392 
393 	return kszphy_config_init(phydev);
394 }
395 
396 static int ksz8795_match_phy_device(struct phy_device *phydev)
397 {
398 	return ksz8051_ksz8795_match_phy_device(phydev, PHY_ID_KSZ87XX);
399 }
400 
401 static int ksz9021_load_values_from_of(struct phy_device *phydev,
402 				       const struct device_node *of_node,
403 				       u16 reg,
404 				       const char *field1, const char *field2,
405 				       const char *field3, const char *field4)
406 {
407 	int val1 = -1;
408 	int val2 = -2;
409 	int val3 = -3;
410 	int val4 = -4;
411 	int newval;
412 	int matches = 0;
413 
414 	if (!of_property_read_u32(of_node, field1, &val1))
415 		matches++;
416 
417 	if (!of_property_read_u32(of_node, field2, &val2))
418 		matches++;
419 
420 	if (!of_property_read_u32(of_node, field3, &val3))
421 		matches++;
422 
423 	if (!of_property_read_u32(of_node, field4, &val4))
424 		matches++;
425 
426 	if (!matches)
427 		return 0;
428 
429 	if (matches < 4)
430 		newval = kszphy_extended_read(phydev, reg);
431 	else
432 		newval = 0;
433 
434 	if (val1 != -1)
435 		newval = ((newval & 0xfff0) | ((val1 / PS_TO_REG) & 0xf) << 0);
436 
437 	if (val2 != -2)
438 		newval = ((newval & 0xff0f) | ((val2 / PS_TO_REG) & 0xf) << 4);
439 
440 	if (val3 != -3)
441 		newval = ((newval & 0xf0ff) | ((val3 / PS_TO_REG) & 0xf) << 8);
442 
443 	if (val4 != -4)
444 		newval = ((newval & 0x0fff) | ((val4 / PS_TO_REG) & 0xf) << 12);
445 
446 	return kszphy_extended_write(phydev, reg, newval);
447 }
448 
449 static int ksz9021_config_init(struct phy_device *phydev)
450 {
451 	const struct device *dev = &phydev->mdio.dev;
452 	const struct device_node *of_node = dev->of_node;
453 	const struct device *dev_walker;
454 
455 	/* The Micrel driver has a deprecated option to place phy OF
456 	 * properties in the MAC node. Walk up the tree of devices to
457 	 * find a device with an OF node.
458 	 */
459 	dev_walker = &phydev->mdio.dev;
460 	do {
461 		of_node = dev_walker->of_node;
462 		dev_walker = dev_walker->parent;
463 
464 	} while (!of_node && dev_walker);
465 
466 	if (of_node) {
467 		ksz9021_load_values_from_of(phydev, of_node,
468 				    MII_KSZPHY_CLK_CONTROL_PAD_SKEW,
469 				    "txen-skew-ps", "txc-skew-ps",
470 				    "rxdv-skew-ps", "rxc-skew-ps");
471 		ksz9021_load_values_from_of(phydev, of_node,
472 				    MII_KSZPHY_RX_DATA_PAD_SKEW,
473 				    "rxd0-skew-ps", "rxd1-skew-ps",
474 				    "rxd2-skew-ps", "rxd3-skew-ps");
475 		ksz9021_load_values_from_of(phydev, of_node,
476 				    MII_KSZPHY_TX_DATA_PAD_SKEW,
477 				    "txd0-skew-ps", "txd1-skew-ps",
478 				    "txd2-skew-ps", "txd3-skew-ps");
479 	}
480 	return 0;
481 }
482 
483 #define KSZ9031_PS_TO_REG		60
484 
485 /* Extended registers */
486 /* MMD Address 0x0 */
487 #define MII_KSZ9031RN_FLP_BURST_TX_LO	3
488 #define MII_KSZ9031RN_FLP_BURST_TX_HI	4
489 
490 /* MMD Address 0x2 */
491 #define MII_KSZ9031RN_CONTROL_PAD_SKEW	4
492 #define MII_KSZ9031RN_RX_DATA_PAD_SKEW	5
493 #define MII_KSZ9031RN_TX_DATA_PAD_SKEW	6
494 #define MII_KSZ9031RN_CLK_PAD_SKEW	8
495 
496 /* MMD Address 0x1C */
497 #define MII_KSZ9031RN_EDPD		0x23
498 #define MII_KSZ9031RN_EDPD_ENABLE	BIT(0)
499 
500 static int ksz9031_of_load_skew_values(struct phy_device *phydev,
501 				       const struct device_node *of_node,
502 				       u16 reg, size_t field_sz,
503 				       const char *field[], u8 numfields)
504 {
505 	int val[4] = {-1, -2, -3, -4};
506 	int matches = 0;
507 	u16 mask;
508 	u16 maxval;
509 	u16 newval;
510 	int i;
511 
512 	for (i = 0; i < numfields; i++)
513 		if (!of_property_read_u32(of_node, field[i], val + i))
514 			matches++;
515 
516 	if (!matches)
517 		return 0;
518 
519 	if (matches < numfields)
520 		newval = phy_read_mmd(phydev, 2, reg);
521 	else
522 		newval = 0;
523 
524 	maxval = (field_sz == 4) ? 0xf : 0x1f;
525 	for (i = 0; i < numfields; i++)
526 		if (val[i] != -(i + 1)) {
527 			mask = 0xffff;
528 			mask ^= maxval << (field_sz * i);
529 			newval = (newval & mask) |
530 				(((val[i] / KSZ9031_PS_TO_REG) & maxval)
531 					<< (field_sz * i));
532 		}
533 
534 	return phy_write_mmd(phydev, 2, reg, newval);
535 }
536 
537 /* Center KSZ9031RNX FLP timing at 16ms. */
538 static int ksz9031_center_flp_timing(struct phy_device *phydev)
539 {
540 	int result;
541 
542 	result = phy_write_mmd(phydev, 0, MII_KSZ9031RN_FLP_BURST_TX_HI,
543 			       0x0006);
544 	if (result)
545 		return result;
546 
547 	result = phy_write_mmd(phydev, 0, MII_KSZ9031RN_FLP_BURST_TX_LO,
548 			       0x1A80);
549 	if (result)
550 		return result;
551 
552 	return genphy_restart_aneg(phydev);
553 }
554 
555 /* Enable energy-detect power-down mode */
556 static int ksz9031_enable_edpd(struct phy_device *phydev)
557 {
558 	int reg;
559 
560 	reg = phy_read_mmd(phydev, 0x1C, MII_KSZ9031RN_EDPD);
561 	if (reg < 0)
562 		return reg;
563 	return phy_write_mmd(phydev, 0x1C, MII_KSZ9031RN_EDPD,
564 			     reg | MII_KSZ9031RN_EDPD_ENABLE);
565 }
566 
567 static int ksz9031_config_init(struct phy_device *phydev)
568 {
569 	const struct device *dev = &phydev->mdio.dev;
570 	const struct device_node *of_node = dev->of_node;
571 	static const char *clk_skews[2] = {"rxc-skew-ps", "txc-skew-ps"};
572 	static const char *rx_data_skews[4] = {
573 		"rxd0-skew-ps", "rxd1-skew-ps",
574 		"rxd2-skew-ps", "rxd3-skew-ps"
575 	};
576 	static const char *tx_data_skews[4] = {
577 		"txd0-skew-ps", "txd1-skew-ps",
578 		"txd2-skew-ps", "txd3-skew-ps"
579 	};
580 	static const char *control_skews[2] = {"txen-skew-ps", "rxdv-skew-ps"};
581 	const struct device *dev_walker;
582 	int result;
583 
584 	result = ksz9031_enable_edpd(phydev);
585 	if (result < 0)
586 		return result;
587 
588 	/* The Micrel driver has a deprecated option to place phy OF
589 	 * properties in the MAC node. Walk up the tree of devices to
590 	 * find a device with an OF node.
591 	 */
592 	dev_walker = &phydev->mdio.dev;
593 	do {
594 		of_node = dev_walker->of_node;
595 		dev_walker = dev_walker->parent;
596 	} while (!of_node && dev_walker);
597 
598 	if (of_node) {
599 		ksz9031_of_load_skew_values(phydev, of_node,
600 				MII_KSZ9031RN_CLK_PAD_SKEW, 5,
601 				clk_skews, 2);
602 
603 		ksz9031_of_load_skew_values(phydev, of_node,
604 				MII_KSZ9031RN_CONTROL_PAD_SKEW, 4,
605 				control_skews, 2);
606 
607 		ksz9031_of_load_skew_values(phydev, of_node,
608 				MII_KSZ9031RN_RX_DATA_PAD_SKEW, 4,
609 				rx_data_skews, 4);
610 
611 		ksz9031_of_load_skew_values(phydev, of_node,
612 				MII_KSZ9031RN_TX_DATA_PAD_SKEW, 4,
613 				tx_data_skews, 4);
614 
615 		/* Silicon Errata Sheet (DS80000691D or DS80000692D):
616 		 * When the device links in the 1000BASE-T slave mode only,
617 		 * the optional 125MHz reference output clock (CLK125_NDO)
618 		 * has wide duty cycle variation.
619 		 *
620 		 * The optional CLK125_NDO clock does not meet the RGMII
621 		 * 45/55 percent (min/max) duty cycle requirement and therefore
622 		 * cannot be used directly by the MAC side for clocking
623 		 * applications that have setup/hold time requirements on
624 		 * rising and falling clock edges.
625 		 *
626 		 * Workaround:
627 		 * Force the phy to be the master to receive a stable clock
628 		 * which meets the duty cycle requirement.
629 		 */
630 		if (of_property_read_bool(of_node, "micrel,force-master")) {
631 			result = phy_read(phydev, MII_CTRL1000);
632 			if (result < 0)
633 				goto err_force_master;
634 
635 			/* enable master mode, config & prefer master */
636 			result |= CTL1000_ENABLE_MASTER | CTL1000_AS_MASTER;
637 			result = phy_write(phydev, MII_CTRL1000, result);
638 			if (result < 0)
639 				goto err_force_master;
640 		}
641 	}
642 
643 	return ksz9031_center_flp_timing(phydev);
644 
645 err_force_master:
646 	phydev_err(phydev, "failed to force the phy to master mode\n");
647 	return result;
648 }
649 
650 #define KSZ9131_SKEW_5BIT_MAX	2400
651 #define KSZ9131_SKEW_4BIT_MAX	800
652 #define KSZ9131_OFFSET		700
653 #define KSZ9131_STEP		100
654 
655 static int ksz9131_of_load_skew_values(struct phy_device *phydev,
656 				       struct device_node *of_node,
657 				       u16 reg, size_t field_sz,
658 				       char *field[], u8 numfields)
659 {
660 	int val[4] = {-(1 + KSZ9131_OFFSET), -(2 + KSZ9131_OFFSET),
661 		      -(3 + KSZ9131_OFFSET), -(4 + KSZ9131_OFFSET)};
662 	int skewval, skewmax = 0;
663 	int matches = 0;
664 	u16 maxval;
665 	u16 newval;
666 	u16 mask;
667 	int i;
668 
669 	/* psec properties in dts should mean x pico seconds */
670 	if (field_sz == 5)
671 		skewmax = KSZ9131_SKEW_5BIT_MAX;
672 	else
673 		skewmax = KSZ9131_SKEW_4BIT_MAX;
674 
675 	for (i = 0; i < numfields; i++)
676 		if (!of_property_read_s32(of_node, field[i], &skewval)) {
677 			if (skewval < -KSZ9131_OFFSET)
678 				skewval = -KSZ9131_OFFSET;
679 			else if (skewval > skewmax)
680 				skewval = skewmax;
681 
682 			val[i] = skewval + KSZ9131_OFFSET;
683 			matches++;
684 		}
685 
686 	if (!matches)
687 		return 0;
688 
689 	if (matches < numfields)
690 		newval = phy_read_mmd(phydev, 2, reg);
691 	else
692 		newval = 0;
693 
694 	maxval = (field_sz == 4) ? 0xf : 0x1f;
695 	for (i = 0; i < numfields; i++)
696 		if (val[i] != -(i + 1 + KSZ9131_OFFSET)) {
697 			mask = 0xffff;
698 			mask ^= maxval << (field_sz * i);
699 			newval = (newval & mask) |
700 				(((val[i] / KSZ9131_STEP) & maxval)
701 					<< (field_sz * i));
702 		}
703 
704 	return phy_write_mmd(phydev, 2, reg, newval);
705 }
706 
707 #define KSZ9131RN_MMD_COMMON_CTRL_REG	2
708 #define KSZ9131RN_RXC_DLL_CTRL		76
709 #define KSZ9131RN_TXC_DLL_CTRL		77
710 #define KSZ9131RN_DLL_CTRL_BYPASS	BIT_MASK(12)
711 #define KSZ9131RN_DLL_ENABLE_DELAY	0
712 #define KSZ9131RN_DLL_DISABLE_DELAY	BIT(12)
713 
714 static int ksz9131_config_rgmii_delay(struct phy_device *phydev)
715 {
716 	u16 rxcdll_val, txcdll_val;
717 	int ret;
718 
719 	switch (phydev->interface) {
720 	case PHY_INTERFACE_MODE_RGMII:
721 		rxcdll_val = KSZ9131RN_DLL_DISABLE_DELAY;
722 		txcdll_val = KSZ9131RN_DLL_DISABLE_DELAY;
723 		break;
724 	case PHY_INTERFACE_MODE_RGMII_ID:
725 		rxcdll_val = KSZ9131RN_DLL_ENABLE_DELAY;
726 		txcdll_val = KSZ9131RN_DLL_ENABLE_DELAY;
727 		break;
728 	case PHY_INTERFACE_MODE_RGMII_RXID:
729 		rxcdll_val = KSZ9131RN_DLL_ENABLE_DELAY;
730 		txcdll_val = KSZ9131RN_DLL_DISABLE_DELAY;
731 		break;
732 	case PHY_INTERFACE_MODE_RGMII_TXID:
733 		rxcdll_val = KSZ9131RN_DLL_DISABLE_DELAY;
734 		txcdll_val = KSZ9131RN_DLL_ENABLE_DELAY;
735 		break;
736 	default:
737 		return 0;
738 	}
739 
740 	ret = phy_modify_mmd(phydev, KSZ9131RN_MMD_COMMON_CTRL_REG,
741 			     KSZ9131RN_RXC_DLL_CTRL, KSZ9131RN_DLL_CTRL_BYPASS,
742 			     rxcdll_val);
743 	if (ret < 0)
744 		return ret;
745 
746 	return phy_modify_mmd(phydev, KSZ9131RN_MMD_COMMON_CTRL_REG,
747 			      KSZ9131RN_TXC_DLL_CTRL, KSZ9131RN_DLL_CTRL_BYPASS,
748 			      txcdll_val);
749 }
750 
751 static int ksz9131_config_init(struct phy_device *phydev)
752 {
753 	const struct device *dev = &phydev->mdio.dev;
754 	struct device_node *of_node = dev->of_node;
755 	char *clk_skews[2] = {"rxc-skew-psec", "txc-skew-psec"};
756 	char *rx_data_skews[4] = {
757 		"rxd0-skew-psec", "rxd1-skew-psec",
758 		"rxd2-skew-psec", "rxd3-skew-psec"
759 	};
760 	char *tx_data_skews[4] = {
761 		"txd0-skew-psec", "txd1-skew-psec",
762 		"txd2-skew-psec", "txd3-skew-psec"
763 	};
764 	char *control_skews[2] = {"txen-skew-psec", "rxdv-skew-psec"};
765 	const struct device *dev_walker;
766 	int ret;
767 
768 	dev_walker = &phydev->mdio.dev;
769 	do {
770 		of_node = dev_walker->of_node;
771 		dev_walker = dev_walker->parent;
772 	} while (!of_node && dev_walker);
773 
774 	if (!of_node)
775 		return 0;
776 
777 	if (phy_interface_is_rgmii(phydev)) {
778 		ret = ksz9131_config_rgmii_delay(phydev);
779 		if (ret < 0)
780 			return ret;
781 	}
782 
783 	ret = ksz9131_of_load_skew_values(phydev, of_node,
784 					  MII_KSZ9031RN_CLK_PAD_SKEW, 5,
785 					  clk_skews, 2);
786 	if (ret < 0)
787 		return ret;
788 
789 	ret = ksz9131_of_load_skew_values(phydev, of_node,
790 					  MII_KSZ9031RN_CONTROL_PAD_SKEW, 4,
791 					  control_skews, 2);
792 	if (ret < 0)
793 		return ret;
794 
795 	ret = ksz9131_of_load_skew_values(phydev, of_node,
796 					  MII_KSZ9031RN_RX_DATA_PAD_SKEW, 4,
797 					  rx_data_skews, 4);
798 	if (ret < 0)
799 		return ret;
800 
801 	ret = ksz9131_of_load_skew_values(phydev, of_node,
802 					  MII_KSZ9031RN_TX_DATA_PAD_SKEW, 4,
803 					  tx_data_skews, 4);
804 	if (ret < 0)
805 		return ret;
806 
807 	return 0;
808 }
809 
810 #define KSZ8873MLL_GLOBAL_CONTROL_4	0x06
811 #define KSZ8873MLL_GLOBAL_CONTROL_4_DUPLEX	BIT(6)
812 #define KSZ8873MLL_GLOBAL_CONTROL_4_SPEED	BIT(4)
813 static int ksz8873mll_read_status(struct phy_device *phydev)
814 {
815 	int regval;
816 
817 	/* dummy read */
818 	regval = phy_read(phydev, KSZ8873MLL_GLOBAL_CONTROL_4);
819 
820 	regval = phy_read(phydev, KSZ8873MLL_GLOBAL_CONTROL_4);
821 
822 	if (regval & KSZ8873MLL_GLOBAL_CONTROL_4_DUPLEX)
823 		phydev->duplex = DUPLEX_HALF;
824 	else
825 		phydev->duplex = DUPLEX_FULL;
826 
827 	if (regval & KSZ8873MLL_GLOBAL_CONTROL_4_SPEED)
828 		phydev->speed = SPEED_10;
829 	else
830 		phydev->speed = SPEED_100;
831 
832 	phydev->link = 1;
833 	phydev->pause = phydev->asym_pause = 0;
834 
835 	return 0;
836 }
837 
838 static int ksz9031_get_features(struct phy_device *phydev)
839 {
840 	int ret;
841 
842 	ret = genphy_read_abilities(phydev);
843 	if (ret < 0)
844 		return ret;
845 
846 	/* Silicon Errata Sheet (DS80000691D or DS80000692D):
847 	 * Whenever the device's Asymmetric Pause capability is set to 1,
848 	 * link-up may fail after a link-up to link-down transition.
849 	 *
850 	 * The Errata Sheet is for ksz9031, but ksz9021 has the same issue
851 	 *
852 	 * Workaround:
853 	 * Do not enable the Asymmetric Pause capability bit.
854 	 */
855 	linkmode_clear_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, phydev->supported);
856 
857 	/* We force setting the Pause capability as the core will force the
858 	 * Asymmetric Pause capability to 1 otherwise.
859 	 */
860 	linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT, phydev->supported);
861 
862 	return 0;
863 }
864 
865 static int ksz9031_read_status(struct phy_device *phydev)
866 {
867 	int err;
868 	int regval;
869 
870 	err = genphy_read_status(phydev);
871 	if (err)
872 		return err;
873 
874 	/* Make sure the PHY is not broken. Read idle error count,
875 	 * and reset the PHY if it is maxed out.
876 	 */
877 	regval = phy_read(phydev, MII_STAT1000);
878 	if ((regval & 0xFF) == 0xFF) {
879 		phy_init_hw(phydev);
880 		phydev->link = 0;
881 		if (phydev->drv->config_intr && phy_interrupt_is_valid(phydev))
882 			phydev->drv->config_intr(phydev);
883 		return genphy_config_aneg(phydev);
884 	}
885 
886 	return 0;
887 }
888 
889 static int ksz8873mll_config_aneg(struct phy_device *phydev)
890 {
891 	return 0;
892 }
893 
894 static int kszphy_get_sset_count(struct phy_device *phydev)
895 {
896 	return ARRAY_SIZE(kszphy_hw_stats);
897 }
898 
899 static void kszphy_get_strings(struct phy_device *phydev, u8 *data)
900 {
901 	int i;
902 
903 	for (i = 0; i < ARRAY_SIZE(kszphy_hw_stats); i++) {
904 		strlcpy(data + i * ETH_GSTRING_LEN,
905 			kszphy_hw_stats[i].string, ETH_GSTRING_LEN);
906 	}
907 }
908 
909 static u64 kszphy_get_stat(struct phy_device *phydev, int i)
910 {
911 	struct kszphy_hw_stat stat = kszphy_hw_stats[i];
912 	struct kszphy_priv *priv = phydev->priv;
913 	int val;
914 	u64 ret;
915 
916 	val = phy_read(phydev, stat.reg);
917 	if (val < 0) {
918 		ret = U64_MAX;
919 	} else {
920 		val = val & ((1 << stat.bits) - 1);
921 		priv->stats[i] += val;
922 		ret = priv->stats[i];
923 	}
924 
925 	return ret;
926 }
927 
928 static void kszphy_get_stats(struct phy_device *phydev,
929 			     struct ethtool_stats *stats, u64 *data)
930 {
931 	int i;
932 
933 	for (i = 0; i < ARRAY_SIZE(kszphy_hw_stats); i++)
934 		data[i] = kszphy_get_stat(phydev, i);
935 }
936 
937 static int kszphy_suspend(struct phy_device *phydev)
938 {
939 	/* Disable PHY Interrupts */
940 	if (phy_interrupt_is_valid(phydev)) {
941 		phydev->interrupts = PHY_INTERRUPT_DISABLED;
942 		if (phydev->drv->config_intr)
943 			phydev->drv->config_intr(phydev);
944 	}
945 
946 	return genphy_suspend(phydev);
947 }
948 
949 static int kszphy_resume(struct phy_device *phydev)
950 {
951 	int ret;
952 
953 	genphy_resume(phydev);
954 
955 	ret = kszphy_config_reset(phydev);
956 	if (ret)
957 		return ret;
958 
959 	/* Enable PHY Interrupts */
960 	if (phy_interrupt_is_valid(phydev)) {
961 		phydev->interrupts = PHY_INTERRUPT_ENABLED;
962 		if (phydev->drv->config_intr)
963 			phydev->drv->config_intr(phydev);
964 	}
965 
966 	return 0;
967 }
968 
969 static int kszphy_probe(struct phy_device *phydev)
970 {
971 	const struct kszphy_type *type = phydev->drv->driver_data;
972 	const struct device_node *np = phydev->mdio.dev.of_node;
973 	struct kszphy_priv *priv;
974 	struct clk *clk;
975 	int ret;
976 
977 	priv = devm_kzalloc(&phydev->mdio.dev, sizeof(*priv), GFP_KERNEL);
978 	if (!priv)
979 		return -ENOMEM;
980 
981 	phydev->priv = priv;
982 
983 	priv->type = type;
984 
985 	if (type->led_mode_reg) {
986 		ret = of_property_read_u32(np, "micrel,led-mode",
987 				&priv->led_mode);
988 		if (ret)
989 			priv->led_mode = -1;
990 
991 		if (priv->led_mode > 3) {
992 			phydev_err(phydev, "invalid led mode: 0x%02x\n",
993 				   priv->led_mode);
994 			priv->led_mode = -1;
995 		}
996 	} else {
997 		priv->led_mode = -1;
998 	}
999 
1000 	clk = devm_clk_get(&phydev->mdio.dev, "rmii-ref");
1001 	/* NOTE: clk may be NULL if building without CONFIG_HAVE_CLK */
1002 	if (!IS_ERR_OR_NULL(clk)) {
1003 		unsigned long rate = clk_get_rate(clk);
1004 		bool rmii_ref_clk_sel_25_mhz;
1005 
1006 		priv->rmii_ref_clk_sel = type->has_rmii_ref_clk_sel;
1007 		rmii_ref_clk_sel_25_mhz = of_property_read_bool(np,
1008 				"micrel,rmii-reference-clock-select-25-mhz");
1009 
1010 		if (rate > 24500000 && rate < 25500000) {
1011 			priv->rmii_ref_clk_sel_val = rmii_ref_clk_sel_25_mhz;
1012 		} else if (rate > 49500000 && rate < 50500000) {
1013 			priv->rmii_ref_clk_sel_val = !rmii_ref_clk_sel_25_mhz;
1014 		} else {
1015 			phydev_err(phydev, "Clock rate out of range: %ld\n",
1016 				   rate);
1017 			return -EINVAL;
1018 		}
1019 	}
1020 
1021 	/* Support legacy board-file configuration */
1022 	if (phydev->dev_flags & MICREL_PHY_50MHZ_CLK) {
1023 		priv->rmii_ref_clk_sel = true;
1024 		priv->rmii_ref_clk_sel_val = true;
1025 	}
1026 
1027 	return 0;
1028 }
1029 
1030 static struct phy_driver ksphy_driver[] = {
1031 {
1032 	.phy_id		= PHY_ID_KS8737,
1033 	.phy_id_mask	= MICREL_PHY_ID_MASK,
1034 	.name		= "Micrel KS8737",
1035 	/* PHY_BASIC_FEATURES */
1036 	.driver_data	= &ks8737_type,
1037 	.config_init	= kszphy_config_init,
1038 	.ack_interrupt	= kszphy_ack_interrupt,
1039 	.config_intr	= kszphy_config_intr,
1040 	.suspend	= genphy_suspend,
1041 	.resume		= genphy_resume,
1042 }, {
1043 	.phy_id		= PHY_ID_KSZ8021,
1044 	.phy_id_mask	= 0x00ffffff,
1045 	.name		= "Micrel KSZ8021 or KSZ8031",
1046 	/* PHY_BASIC_FEATURES */
1047 	.driver_data	= &ksz8021_type,
1048 	.probe		= kszphy_probe,
1049 	.config_init	= kszphy_config_init,
1050 	.ack_interrupt	= kszphy_ack_interrupt,
1051 	.config_intr	= kszphy_config_intr,
1052 	.get_sset_count = kszphy_get_sset_count,
1053 	.get_strings	= kszphy_get_strings,
1054 	.get_stats	= kszphy_get_stats,
1055 	.suspend	= genphy_suspend,
1056 	.resume		= genphy_resume,
1057 }, {
1058 	.phy_id		= PHY_ID_KSZ8031,
1059 	.phy_id_mask	= 0x00ffffff,
1060 	.name		= "Micrel KSZ8031",
1061 	/* PHY_BASIC_FEATURES */
1062 	.driver_data	= &ksz8021_type,
1063 	.probe		= kszphy_probe,
1064 	.config_init	= kszphy_config_init,
1065 	.ack_interrupt	= kszphy_ack_interrupt,
1066 	.config_intr	= kszphy_config_intr,
1067 	.get_sset_count = kszphy_get_sset_count,
1068 	.get_strings	= kszphy_get_strings,
1069 	.get_stats	= kszphy_get_stats,
1070 	.suspend	= genphy_suspend,
1071 	.resume		= genphy_resume,
1072 }, {
1073 	.phy_id		= PHY_ID_KSZ8041,
1074 	.phy_id_mask	= MICREL_PHY_ID_MASK,
1075 	.name		= "Micrel KSZ8041",
1076 	/* PHY_BASIC_FEATURES */
1077 	.driver_data	= &ksz8041_type,
1078 	.probe		= kszphy_probe,
1079 	.config_init	= ksz8041_config_init,
1080 	.config_aneg	= ksz8041_config_aneg,
1081 	.ack_interrupt	= kszphy_ack_interrupt,
1082 	.config_intr	= kszphy_config_intr,
1083 	.get_sset_count = kszphy_get_sset_count,
1084 	.get_strings	= kszphy_get_strings,
1085 	.get_stats	= kszphy_get_stats,
1086 	.suspend	= genphy_suspend,
1087 	.resume		= genphy_resume,
1088 }, {
1089 	.phy_id		= PHY_ID_KSZ8041RNLI,
1090 	.phy_id_mask	= MICREL_PHY_ID_MASK,
1091 	.name		= "Micrel KSZ8041RNLI",
1092 	/* PHY_BASIC_FEATURES */
1093 	.driver_data	= &ksz8041_type,
1094 	.probe		= kszphy_probe,
1095 	.config_init	= kszphy_config_init,
1096 	.ack_interrupt	= kszphy_ack_interrupt,
1097 	.config_intr	= kszphy_config_intr,
1098 	.get_sset_count = kszphy_get_sset_count,
1099 	.get_strings	= kszphy_get_strings,
1100 	.get_stats	= kszphy_get_stats,
1101 	.suspend	= genphy_suspend,
1102 	.resume		= genphy_resume,
1103 }, {
1104 	.name		= "Micrel KSZ8051",
1105 	/* PHY_BASIC_FEATURES */
1106 	.driver_data	= &ksz8051_type,
1107 	.probe		= kszphy_probe,
1108 	.config_init	= kszphy_config_init,
1109 	.ack_interrupt	= kszphy_ack_interrupt,
1110 	.config_intr	= kszphy_config_intr,
1111 	.get_sset_count = kszphy_get_sset_count,
1112 	.get_strings	= kszphy_get_strings,
1113 	.get_stats	= kszphy_get_stats,
1114 	.match_phy_device = ksz8051_match_phy_device,
1115 	.suspend	= genphy_suspend,
1116 	.resume		= genphy_resume,
1117 }, {
1118 	.phy_id		= PHY_ID_KSZ8001,
1119 	.name		= "Micrel KSZ8001 or KS8721",
1120 	.phy_id_mask	= 0x00fffffc,
1121 	/* PHY_BASIC_FEATURES */
1122 	.driver_data	= &ksz8041_type,
1123 	.probe		= kszphy_probe,
1124 	.config_init	= kszphy_config_init,
1125 	.ack_interrupt	= kszphy_ack_interrupt,
1126 	.config_intr	= kszphy_config_intr,
1127 	.get_sset_count = kszphy_get_sset_count,
1128 	.get_strings	= kszphy_get_strings,
1129 	.get_stats	= kszphy_get_stats,
1130 	.suspend	= genphy_suspend,
1131 	.resume		= genphy_resume,
1132 }, {
1133 	.phy_id		= PHY_ID_KSZ8081,
1134 	.name		= "Micrel KSZ8081 or KSZ8091",
1135 	.phy_id_mask	= MICREL_PHY_ID_MASK,
1136 	/* PHY_BASIC_FEATURES */
1137 	.driver_data	= &ksz8081_type,
1138 	.probe		= kszphy_probe,
1139 	.config_init	= ksz8081_config_init,
1140 	.ack_interrupt	= kszphy_ack_interrupt,
1141 	.config_intr	= kszphy_config_intr,
1142 	.get_sset_count = kszphy_get_sset_count,
1143 	.get_strings	= kszphy_get_strings,
1144 	.get_stats	= kszphy_get_stats,
1145 	.suspend	= kszphy_suspend,
1146 	.resume		= kszphy_resume,
1147 }, {
1148 	.phy_id		= PHY_ID_KSZ8061,
1149 	.name		= "Micrel KSZ8061",
1150 	.phy_id_mask	= MICREL_PHY_ID_MASK,
1151 	/* PHY_BASIC_FEATURES */
1152 	.config_init	= ksz8061_config_init,
1153 	.ack_interrupt	= kszphy_ack_interrupt,
1154 	.config_intr	= kszphy_config_intr,
1155 	.suspend	= genphy_suspend,
1156 	.resume		= genphy_resume,
1157 }, {
1158 	.phy_id		= PHY_ID_KSZ9021,
1159 	.phy_id_mask	= 0x000ffffe,
1160 	.name		= "Micrel KSZ9021 Gigabit PHY",
1161 	/* PHY_GBIT_FEATURES */
1162 	.driver_data	= &ksz9021_type,
1163 	.probe		= kszphy_probe,
1164 	.get_features	= ksz9031_get_features,
1165 	.config_init	= ksz9021_config_init,
1166 	.ack_interrupt	= kszphy_ack_interrupt,
1167 	.config_intr	= kszphy_config_intr,
1168 	.get_sset_count = kszphy_get_sset_count,
1169 	.get_strings	= kszphy_get_strings,
1170 	.get_stats	= kszphy_get_stats,
1171 	.suspend	= genphy_suspend,
1172 	.resume		= genphy_resume,
1173 	.read_mmd	= genphy_read_mmd_unsupported,
1174 	.write_mmd	= genphy_write_mmd_unsupported,
1175 }, {
1176 	.phy_id		= PHY_ID_KSZ9031,
1177 	.phy_id_mask	= MICREL_PHY_ID_MASK,
1178 	.name		= "Micrel KSZ9031 Gigabit PHY",
1179 	.driver_data	= &ksz9021_type,
1180 	.probe		= kszphy_probe,
1181 	.get_features	= ksz9031_get_features,
1182 	.config_init	= ksz9031_config_init,
1183 	.soft_reset	= genphy_soft_reset,
1184 	.read_status	= ksz9031_read_status,
1185 	.ack_interrupt	= kszphy_ack_interrupt,
1186 	.config_intr	= kszphy_config_intr,
1187 	.get_sset_count = kszphy_get_sset_count,
1188 	.get_strings	= kszphy_get_strings,
1189 	.get_stats	= kszphy_get_stats,
1190 	.suspend	= genphy_suspend,
1191 	.resume		= kszphy_resume,
1192 }, {
1193 	.phy_id		= PHY_ID_KSZ9131,
1194 	.phy_id_mask	= MICREL_PHY_ID_MASK,
1195 	.name		= "Microchip KSZ9131 Gigabit PHY",
1196 	/* PHY_GBIT_FEATURES */
1197 	.driver_data	= &ksz9021_type,
1198 	.probe		= kszphy_probe,
1199 	.config_init	= ksz9131_config_init,
1200 	.read_status	= ksz9031_read_status,
1201 	.ack_interrupt	= kszphy_ack_interrupt,
1202 	.config_intr	= kszphy_config_intr,
1203 	.get_sset_count = kszphy_get_sset_count,
1204 	.get_strings	= kszphy_get_strings,
1205 	.get_stats	= kszphy_get_stats,
1206 	.suspend	= genphy_suspend,
1207 	.resume		= kszphy_resume,
1208 }, {
1209 	.phy_id		= PHY_ID_KSZ8873MLL,
1210 	.phy_id_mask	= MICREL_PHY_ID_MASK,
1211 	.name		= "Micrel KSZ8873MLL Switch",
1212 	/* PHY_BASIC_FEATURES */
1213 	.config_init	= kszphy_config_init,
1214 	.config_aneg	= ksz8873mll_config_aneg,
1215 	.read_status	= ksz8873mll_read_status,
1216 	.suspend	= genphy_suspend,
1217 	.resume		= genphy_resume,
1218 }, {
1219 	.phy_id		= PHY_ID_KSZ886X,
1220 	.phy_id_mask	= MICREL_PHY_ID_MASK,
1221 	.name		= "Micrel KSZ886X Switch",
1222 	/* PHY_BASIC_FEATURES */
1223 	.config_init	= kszphy_config_init,
1224 	.suspend	= genphy_suspend,
1225 	.resume		= genphy_resume,
1226 }, {
1227 	.name		= "Micrel KSZ87XX Switch",
1228 	/* PHY_BASIC_FEATURES */
1229 	.config_init	= kszphy_config_init,
1230 	.config_aneg	= ksz8873mll_config_aneg,
1231 	.read_status	= ksz8873mll_read_status,
1232 	.match_phy_device = ksz8795_match_phy_device,
1233 	.suspend	= genphy_suspend,
1234 	.resume		= genphy_resume,
1235 }, {
1236 	.phy_id		= PHY_ID_KSZ9477,
1237 	.phy_id_mask	= MICREL_PHY_ID_MASK,
1238 	.name		= "Microchip KSZ9477",
1239 	/* PHY_GBIT_FEATURES */
1240 	.config_init	= kszphy_config_init,
1241 	.suspend	= genphy_suspend,
1242 	.resume		= genphy_resume,
1243 } };
1244 
1245 module_phy_driver(ksphy_driver);
1246 
1247 MODULE_DESCRIPTION("Micrel PHY driver");
1248 MODULE_AUTHOR("David J. Choi");
1249 MODULE_LICENSE("GPL");
1250 
1251 static struct mdio_device_id __maybe_unused micrel_tbl[] = {
1252 	{ PHY_ID_KSZ9021, 0x000ffffe },
1253 	{ PHY_ID_KSZ9031, MICREL_PHY_ID_MASK },
1254 	{ PHY_ID_KSZ9131, MICREL_PHY_ID_MASK },
1255 	{ PHY_ID_KSZ8001, 0x00fffffc },
1256 	{ PHY_ID_KS8737, MICREL_PHY_ID_MASK },
1257 	{ PHY_ID_KSZ8021, 0x00ffffff },
1258 	{ PHY_ID_KSZ8031, 0x00ffffff },
1259 	{ PHY_ID_KSZ8041, MICREL_PHY_ID_MASK },
1260 	{ PHY_ID_KSZ8051, MICREL_PHY_ID_MASK },
1261 	{ PHY_ID_KSZ8061, MICREL_PHY_ID_MASK },
1262 	{ PHY_ID_KSZ8081, MICREL_PHY_ID_MASK },
1263 	{ PHY_ID_KSZ8873MLL, MICREL_PHY_ID_MASK },
1264 	{ PHY_ID_KSZ886X, MICREL_PHY_ID_MASK },
1265 	{ }
1266 };
1267 
1268 MODULE_DEVICE_TABLE(mdio, micrel_tbl);
1269