1 // SPDX-License-Identifier: GPL-2.0+
3 * drivers/net/phy/micrel.c
5 * Driver for Micrel PHYs
7 * Author: David J. Choi
9 * Copyright (c) 2010-2013 Micrel, Inc.
10 * Copyright (c) 2014 Johan Hovold <johan@kernel.org>
12 * Support : Micrel Phys:
13 * Giga phys: ksz9021, ksz9031, ksz9131
14 * 100/10 Phys : ksz8001, ksz8721, ksz8737, ksz8041
15 * ksz8021, ksz8031, ksz8051,
18 * Switch : ksz8873, ksz886x
22 #include <linux/kernel.h>
23 #include <linux/module.h>
24 #include <linux/phy.h>
25 #include <linux/micrel_phy.h>
27 #include <linux/clk.h>
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)
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)
51 #define MII_KSZPHY_CTRL_1 0x1e
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)
60 /* Write/read to/from extended registers */
61 #define MII_KSZPHY_EXTREG 0x0b
62 #define KSZPHY_EXTREG_WRITE 0x8000
64 #define MII_KSZPHY_EXTREG_WRITE 0x0c
65 #define MII_KSZPHY_EXTREG_READ 0x0d
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
74 struct kszphy_hw_stat
{
80 static struct kszphy_hw_stat kszphy_hw_stats
[] = {
81 { "phy_receive_errors", 21, 16},
82 { "phy_idle_errors", 10, 8 },
87 u16 interrupt_level_mask
;
88 bool has_broadcast_disable
;
89 bool has_nand_tree_disable
;
90 bool has_rmii_ref_clk_sel
;
94 const struct kszphy_type
*type
;
96 bool rmii_ref_clk_sel
;
97 bool rmii_ref_clk_sel_val
;
98 u64 stats
[ARRAY_SIZE(kszphy_hw_stats
)];
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,
108 static const struct kszphy_type ksz8041_type
= {
109 .led_mode_reg
= MII_KSZPHY_CTRL_1
,
112 static const struct kszphy_type ksz8051_type
= {
113 .led_mode_reg
= MII_KSZPHY_CTRL_2
,
114 .has_nand_tree_disable
= true,
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,
124 static const struct kszphy_type ks8737_type
= {
125 .interrupt_level_mask
= BIT(14),
128 static const struct kszphy_type ksz9021_type
= {
129 .interrupt_level_mask
= BIT(14),
132 static int kszphy_extended_write(struct phy_device
*phydev
,
135 phy_write(phydev
, MII_KSZPHY_EXTREG
, KSZPHY_EXTREG_WRITE
| regnum
);
136 return phy_write(phydev
, MII_KSZPHY_EXTREG_WRITE
, val
);
139 static int kszphy_extended_read(struct phy_device
*phydev
,
142 phy_write(phydev
, MII_KSZPHY_EXTREG
, regnum
);
143 return phy_read(phydev
, MII_KSZPHY_EXTREG_READ
);
146 static int kszphy_ack_interrupt(struct phy_device
*phydev
)
148 /* bit[7..0] int status, which is a read and clear register. */
151 rc
= phy_read(phydev
, MII_KSZPHY_INTCS
);
153 return (rc
< 0) ? rc
: 0;
156 static int kszphy_config_intr(struct phy_device
*phydev
)
158 const struct kszphy_type
*type
= phydev
->drv
->driver_data
;
162 if (type
&& type
->interrupt_level_mask
)
163 mask
= type
->interrupt_level_mask
;
165 mask
= KSZPHY_CTRL_INT_ACTIVE_HIGH
;
167 /* set the interrupt pin active low */
168 temp
= phy_read(phydev
, MII_KSZPHY_CTRL
);
172 phy_write(phydev
, MII_KSZPHY_CTRL
, temp
);
174 /* enable / disable interrupts */
175 if (phydev
->interrupts
== PHY_INTERRUPT_ENABLED
)
176 temp
= KSZPHY_INTCS_ALL
;
180 return phy_write(phydev
, MII_KSZPHY_INTCS
, temp
);
183 static int kszphy_rmii_clk_sel(struct phy_device
*phydev
, bool val
)
187 ctrl
= phy_read(phydev
, MII_KSZPHY_CTRL
);
192 ctrl
|= KSZPHY_RMII_REF_CLK_SEL
;
194 ctrl
&= ~KSZPHY_RMII_REF_CLK_SEL
;
196 return phy_write(phydev
, MII_KSZPHY_CTRL
, ctrl
);
199 static int kszphy_setup_led(struct phy_device
*phydev
, u32 reg
, int val
)
204 case MII_KSZPHY_CTRL_1
:
207 case MII_KSZPHY_CTRL_2
:
214 temp
= phy_read(phydev
, reg
);
220 temp
&= ~(3 << shift
);
221 temp
|= val
<< shift
;
222 rc
= phy_write(phydev
, reg
, temp
);
225 phydev_err(phydev
, "failed to set led mode\n");
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.
233 static int kszphy_broadcast_disable(struct phy_device
*phydev
)
237 ret
= phy_read(phydev
, MII_KSZPHY_OMSO
);
241 ret
= phy_write(phydev
, MII_KSZPHY_OMSO
, ret
| KSZPHY_OMSO_B_CAST_OFF
);
244 phydev_err(phydev
, "failed to disable broadcast address\n");
249 static int kszphy_nand_tree_disable(struct phy_device
*phydev
)
253 ret
= phy_read(phydev
, MII_KSZPHY_OMSO
);
257 if (!(ret
& KSZPHY_OMSO_NAND_TREE_ON
))
260 ret
= phy_write(phydev
, MII_KSZPHY_OMSO
,
261 ret
& ~KSZPHY_OMSO_NAND_TREE_ON
);
264 phydev_err(phydev
, "failed to disable NAND tree mode\n");
269 /* Some config bits need to be set again on resume, handle them here. */
270 static int kszphy_config_reset(struct phy_device
*phydev
)
272 struct kszphy_priv
*priv
= phydev
->priv
;
275 if (priv
->rmii_ref_clk_sel
) {
276 ret
= kszphy_rmii_clk_sel(phydev
, priv
->rmii_ref_clk_sel_val
);
279 "failed to set rmii reference clock\n");
284 if (priv
->led_mode
>= 0)
285 kszphy_setup_led(phydev
, priv
->type
->led_mode_reg
, priv
->led_mode
);
290 static int kszphy_config_init(struct phy_device
*phydev
)
292 struct kszphy_priv
*priv
= phydev
->priv
;
293 const struct kszphy_type
*type
;
300 if (type
->has_broadcast_disable
)
301 kszphy_broadcast_disable(phydev
);
303 if (type
->has_nand_tree_disable
)
304 kszphy_nand_tree_disable(phydev
);
306 return kszphy_config_reset(phydev
);
309 static int ksz8041_config_init(struct phy_device
*phydev
)
311 __ETHTOOL_DECLARE_LINK_MODE_MASK(mask
) = { 0, };
313 struct device_node
*of_node
= phydev
->mdio
.dev
.of_node
;
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
);
321 linkmode_and(phydev
->supported
, phydev
->supported
, mask
);
322 linkmode_set_bit(ETHTOOL_LINK_MODE_FIBRE_BIT
,
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
;
330 return kszphy_config_init(phydev
);
333 static int ksz8041_config_aneg(struct phy_device
*phydev
)
335 /* Skip auto-negotiation in fiber mode */
336 if (phydev
->dev_flags
& MICREL_PHY_FXEN
) {
337 phydev
->speed
= SPEED_100
;
341 return genphy_config_aneg(phydev
);
344 static int ksz8051_ksz8795_match_phy_device(struct phy_device
*phydev
,
345 const u32 ksz_phy_id
)
349 if ((phydev
->phy_id
& MICREL_PHY_ID_MASK
) != ksz_phy_id
)
352 ret
= phy_read(phydev
, MII_BMSR
);
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.
362 if (ksz_phy_id
== PHY_ID_KSZ8051
)
368 static int ksz8051_match_phy_device(struct phy_device
*phydev
)
370 return ksz8051_ksz8795_match_phy_device(phydev
, PHY_ID_KSZ8051
);
373 static int ksz8081_config_init(struct phy_device
*phydev
)
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.
380 phy_clear_bits(phydev
, MII_KSZPHY_OMSO
, KSZPHY_OMSO_FACTORY_TEST
);
382 return kszphy_config_init(phydev
);
385 static int ksz8061_config_init(struct phy_device
*phydev
)
389 ret
= phy_write_mmd(phydev
, MDIO_MMD_PMAPMD
, MDIO_DEVID1
, 0xB61A);
393 return kszphy_config_init(phydev
);
396 static int ksz8795_match_phy_device(struct phy_device
*phydev
)
398 return ksz8051_ksz8795_match_phy_device(phydev
, PHY_ID_KSZ87XX
);
401 static int ksz9021_load_values_from_of(struct phy_device
*phydev
,
402 const struct device_node
*of_node
,
404 const char *field1
, const char *field2
,
405 const char *field3
, const char *field4
)
414 if (!of_property_read_u32(of_node
, field1
, &val1
))
417 if (!of_property_read_u32(of_node
, field2
, &val2
))
420 if (!of_property_read_u32(of_node
, field3
, &val3
))
423 if (!of_property_read_u32(of_node
, field4
, &val4
))
430 newval
= kszphy_extended_read(phydev
, reg
);
435 newval
= ((newval
& 0xfff0) | ((val1
/ PS_TO_REG
) & 0xf) << 0);
438 newval
= ((newval
& 0xff0f) | ((val2
/ PS_TO_REG
) & 0xf) << 4);
441 newval
= ((newval
& 0xf0ff) | ((val3
/ PS_TO_REG
) & 0xf) << 8);
444 newval
= ((newval
& 0x0fff) | ((val4
/ PS_TO_REG
) & 0xf) << 12);
446 return kszphy_extended_write(phydev
, reg
, newval
);
449 static int ksz9021_config_init(struct phy_device
*phydev
)
451 const struct device
*dev
= &phydev
->mdio
.dev
;
452 const struct device_node
*of_node
= dev
->of_node
;
453 const struct device
*dev_walker
;
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.
459 dev_walker
= &phydev
->mdio
.dev
;
461 of_node
= dev_walker
->of_node
;
462 dev_walker
= dev_walker
->parent
;
464 } while (!of_node
&& dev_walker
);
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");
483 #define KSZ9031_PS_TO_REG 60
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
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
496 /* MMD Address 0x1C */
497 #define MII_KSZ9031RN_EDPD 0x23
498 #define MII_KSZ9031RN_EDPD_ENABLE BIT(0)
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
)
505 int val
[4] = {-1, -2, -3, -4};
512 for (i
= 0; i
< numfields
; i
++)
513 if (!of_property_read_u32(of_node
, field
[i
], val
+ i
))
519 if (matches
< numfields
)
520 newval
= phy_read_mmd(phydev
, 2, reg
);
524 maxval
= (field_sz
== 4) ? 0xf : 0x1f;
525 for (i
= 0; i
< numfields
; i
++)
526 if (val
[i
] != -(i
+ 1)) {
528 mask
^= maxval
<< (field_sz
* i
);
529 newval
= (newval
& mask
) |
530 (((val
[i
] / KSZ9031_PS_TO_REG
) & maxval
)
534 return phy_write_mmd(phydev
, 2, reg
, newval
);
537 /* Center KSZ9031RNX FLP timing at 16ms. */
538 static int ksz9031_center_flp_timing(struct phy_device
*phydev
)
542 result
= phy_write_mmd(phydev
, 0, MII_KSZ9031RN_FLP_BURST_TX_HI
,
547 result
= phy_write_mmd(phydev
, 0, MII_KSZ9031RN_FLP_BURST_TX_LO
,
552 return genphy_restart_aneg(phydev
);
555 /* Enable energy-detect power-down mode */
556 static int ksz9031_enable_edpd(struct phy_device
*phydev
)
560 reg
= phy_read_mmd(phydev
, 0x1C, MII_KSZ9031RN_EDPD
);
563 return phy_write_mmd(phydev
, 0x1C, MII_KSZ9031RN_EDPD
,
564 reg
| MII_KSZ9031RN_EDPD_ENABLE
);
567 static int ksz9031_config_init(struct phy_device
*phydev
)
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"
576 static const char *tx_data_skews
[4] = {
577 "txd0-skew-ps", "txd1-skew-ps",
578 "txd2-skew-ps", "txd3-skew-ps"
580 static const char *control_skews
[2] = {"txen-skew-ps", "rxdv-skew-ps"};
581 const struct device
*dev_walker
;
584 result
= ksz9031_enable_edpd(phydev
);
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.
592 dev_walker
= &phydev
->mdio
.dev
;
594 of_node
= dev_walker
->of_node
;
595 dev_walker
= dev_walker
->parent
;
596 } while (!of_node
&& dev_walker
);
599 ksz9031_of_load_skew_values(phydev
, of_node
,
600 MII_KSZ9031RN_CLK_PAD_SKEW
, 5,
603 ksz9031_of_load_skew_values(phydev
, of_node
,
604 MII_KSZ9031RN_CONTROL_PAD_SKEW
, 4,
607 ksz9031_of_load_skew_values(phydev
, of_node
,
608 MII_KSZ9031RN_RX_DATA_PAD_SKEW
, 4,
611 ksz9031_of_load_skew_values(phydev
, of_node
,
612 MII_KSZ9031RN_TX_DATA_PAD_SKEW
, 4,
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.
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.
627 * Force the phy to be the master to receive a stable clock
628 * which meets the duty cycle requirement.
630 if (of_property_read_bool(of_node
, "micrel,force-master")) {
631 result
= phy_read(phydev
, MII_CTRL1000
);
633 goto err_force_master
;
635 /* enable master mode, config & prefer master */
636 result
|= CTL1000_ENABLE_MASTER
| CTL1000_AS_MASTER
;
637 result
= phy_write(phydev
, MII_CTRL1000
, result
);
639 goto err_force_master
;
643 return ksz9031_center_flp_timing(phydev
);
646 phydev_err(phydev
, "failed to force the phy to master mode\n");
650 #define KSZ9131_SKEW_5BIT_MAX 2400
651 #define KSZ9131_SKEW_4BIT_MAX 800
652 #define KSZ9131_OFFSET 700
653 #define KSZ9131_STEP 100
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
)
660 int val
[4] = {-(1 + KSZ9131_OFFSET
), -(2 + KSZ9131_OFFSET
),
661 -(3 + KSZ9131_OFFSET
), -(4 + KSZ9131_OFFSET
)};
662 int skewval
, skewmax
= 0;
669 /* psec properties in dts should mean x pico seconds */
671 skewmax
= KSZ9131_SKEW_5BIT_MAX
;
673 skewmax
= KSZ9131_SKEW_4BIT_MAX
;
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
)
682 val
[i
] = skewval
+ KSZ9131_OFFSET
;
689 if (matches
< numfields
)
690 newval
= phy_read_mmd(phydev
, 2, reg
);
694 maxval
= (field_sz
== 4) ? 0xf : 0x1f;
695 for (i
= 0; i
< numfields
; i
++)
696 if (val
[i
] != -(i
+ 1 + KSZ9131_OFFSET
)) {
698 mask
^= maxval
<< (field_sz
* i
);
699 newval
= (newval
& mask
) |
700 (((val
[i
] / KSZ9131_STEP
) & maxval
)
704 return phy_write_mmd(phydev
, 2, reg
, newval
);
707 static int ksz9131_config_init(struct phy_device
*phydev
)
709 const struct device
*dev
= &phydev
->mdio
.dev
;
710 struct device_node
*of_node
= dev
->of_node
;
711 char *clk_skews
[2] = {"rxc-skew-psec", "txc-skew-psec"};
712 char *rx_data_skews
[4] = {
713 "rxd0-skew-psec", "rxd1-skew-psec",
714 "rxd2-skew-psec", "rxd3-skew-psec"
716 char *tx_data_skews
[4] = {
717 "txd0-skew-psec", "txd1-skew-psec",
718 "txd2-skew-psec", "txd3-skew-psec"
720 char *control_skews
[2] = {"txen-skew-psec", "rxdv-skew-psec"};
721 const struct device
*dev_walker
;
724 dev_walker
= &phydev
->mdio
.dev
;
726 of_node
= dev_walker
->of_node
;
727 dev_walker
= dev_walker
->parent
;
728 } while (!of_node
&& dev_walker
);
733 ret
= ksz9131_of_load_skew_values(phydev
, of_node
,
734 MII_KSZ9031RN_CLK_PAD_SKEW
, 5,
739 ret
= ksz9131_of_load_skew_values(phydev
, of_node
,
740 MII_KSZ9031RN_CONTROL_PAD_SKEW
, 4,
745 ret
= ksz9131_of_load_skew_values(phydev
, of_node
,
746 MII_KSZ9031RN_RX_DATA_PAD_SKEW
, 4,
751 ret
= ksz9131_of_load_skew_values(phydev
, of_node
,
752 MII_KSZ9031RN_TX_DATA_PAD_SKEW
, 4,
760 #define KSZ8873MLL_GLOBAL_CONTROL_4 0x06
761 #define KSZ8873MLL_GLOBAL_CONTROL_4_DUPLEX BIT(6)
762 #define KSZ8873MLL_GLOBAL_CONTROL_4_SPEED BIT(4)
763 static int ksz8873mll_read_status(struct phy_device
*phydev
)
768 regval
= phy_read(phydev
, KSZ8873MLL_GLOBAL_CONTROL_4
);
770 regval
= phy_read(phydev
, KSZ8873MLL_GLOBAL_CONTROL_4
);
772 if (regval
& KSZ8873MLL_GLOBAL_CONTROL_4_DUPLEX
)
773 phydev
->duplex
= DUPLEX_HALF
;
775 phydev
->duplex
= DUPLEX_FULL
;
777 if (regval
& KSZ8873MLL_GLOBAL_CONTROL_4_SPEED
)
778 phydev
->speed
= SPEED_10
;
780 phydev
->speed
= SPEED_100
;
783 phydev
->pause
= phydev
->asym_pause
= 0;
788 static int ksz9031_get_features(struct phy_device
*phydev
)
792 ret
= genphy_read_abilities(phydev
);
796 /* Silicon Errata Sheet (DS80000691D or DS80000692D):
797 * Whenever the device's Asymmetric Pause capability is set to 1,
798 * link-up may fail after a link-up to link-down transition.
800 * The Errata Sheet is for ksz9031, but ksz9021 has the same issue
803 * Do not enable the Asymmetric Pause capability bit.
805 linkmode_clear_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT
, phydev
->supported
);
807 /* We force setting the Pause capability as the core will force the
808 * Asymmetric Pause capability to 1 otherwise.
810 linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT
, phydev
->supported
);
815 static int ksz9031_read_status(struct phy_device
*phydev
)
820 err
= genphy_read_status(phydev
);
824 /* Make sure the PHY is not broken. Read idle error count,
825 * and reset the PHY if it is maxed out.
827 regval
= phy_read(phydev
, MII_STAT1000
);
828 if ((regval
& 0xFF) == 0xFF) {
831 if (phydev
->drv
->config_intr
&& phy_interrupt_is_valid(phydev
))
832 phydev
->drv
->config_intr(phydev
);
833 return genphy_config_aneg(phydev
);
839 static int ksz8873mll_config_aneg(struct phy_device
*phydev
)
844 static int kszphy_get_sset_count(struct phy_device
*phydev
)
846 return ARRAY_SIZE(kszphy_hw_stats
);
849 static void kszphy_get_strings(struct phy_device
*phydev
, u8
*data
)
853 for (i
= 0; i
< ARRAY_SIZE(kszphy_hw_stats
); i
++) {
854 strlcpy(data
+ i
* ETH_GSTRING_LEN
,
855 kszphy_hw_stats
[i
].string
, ETH_GSTRING_LEN
);
859 static u64
kszphy_get_stat(struct phy_device
*phydev
, int i
)
861 struct kszphy_hw_stat stat
= kszphy_hw_stats
[i
];
862 struct kszphy_priv
*priv
= phydev
->priv
;
866 val
= phy_read(phydev
, stat
.reg
);
870 val
= val
& ((1 << stat
.bits
) - 1);
871 priv
->stats
[i
] += val
;
872 ret
= priv
->stats
[i
];
878 static void kszphy_get_stats(struct phy_device
*phydev
,
879 struct ethtool_stats
*stats
, u64
*data
)
883 for (i
= 0; i
< ARRAY_SIZE(kszphy_hw_stats
); i
++)
884 data
[i
] = kszphy_get_stat(phydev
, i
);
887 static int kszphy_suspend(struct phy_device
*phydev
)
889 /* Disable PHY Interrupts */
890 if (phy_interrupt_is_valid(phydev
)) {
891 phydev
->interrupts
= PHY_INTERRUPT_DISABLED
;
892 if (phydev
->drv
->config_intr
)
893 phydev
->drv
->config_intr(phydev
);
896 return genphy_suspend(phydev
);
899 static int kszphy_resume(struct phy_device
*phydev
)
903 genphy_resume(phydev
);
905 ret
= kszphy_config_reset(phydev
);
909 /* Enable PHY Interrupts */
910 if (phy_interrupt_is_valid(phydev
)) {
911 phydev
->interrupts
= PHY_INTERRUPT_ENABLED
;
912 if (phydev
->drv
->config_intr
)
913 phydev
->drv
->config_intr(phydev
);
919 static int kszphy_probe(struct phy_device
*phydev
)
921 const struct kszphy_type
*type
= phydev
->drv
->driver_data
;
922 const struct device_node
*np
= phydev
->mdio
.dev
.of_node
;
923 struct kszphy_priv
*priv
;
927 priv
= devm_kzalloc(&phydev
->mdio
.dev
, sizeof(*priv
), GFP_KERNEL
);
935 if (type
->led_mode_reg
) {
936 ret
= of_property_read_u32(np
, "micrel,led-mode",
941 if (priv
->led_mode
> 3) {
942 phydev_err(phydev
, "invalid led mode: 0x%02x\n",
950 clk
= devm_clk_get(&phydev
->mdio
.dev
, "rmii-ref");
951 /* NOTE: clk may be NULL if building without CONFIG_HAVE_CLK */
952 if (!IS_ERR_OR_NULL(clk
)) {
953 unsigned long rate
= clk_get_rate(clk
);
954 bool rmii_ref_clk_sel_25_mhz
;
956 priv
->rmii_ref_clk_sel
= type
->has_rmii_ref_clk_sel
;
957 rmii_ref_clk_sel_25_mhz
= of_property_read_bool(np
,
958 "micrel,rmii-reference-clock-select-25-mhz");
960 if (rate
> 24500000 && rate
< 25500000) {
961 priv
->rmii_ref_clk_sel_val
= rmii_ref_clk_sel_25_mhz
;
962 } else if (rate
> 49500000 && rate
< 50500000) {
963 priv
->rmii_ref_clk_sel_val
= !rmii_ref_clk_sel_25_mhz
;
965 phydev_err(phydev
, "Clock rate out of range: %ld\n",
971 /* Support legacy board-file configuration */
972 if (phydev
->dev_flags
& MICREL_PHY_50MHZ_CLK
) {
973 priv
->rmii_ref_clk_sel
= true;
974 priv
->rmii_ref_clk_sel_val
= true;
980 static struct phy_driver ksphy_driver
[] = {
982 .phy_id
= PHY_ID_KS8737
,
983 .phy_id_mask
= MICREL_PHY_ID_MASK
,
984 .name
= "Micrel KS8737",
985 /* PHY_BASIC_FEATURES */
986 .driver_data
= &ks8737_type
,
987 .config_init
= kszphy_config_init
,
988 .ack_interrupt
= kszphy_ack_interrupt
,
989 .config_intr
= kszphy_config_intr
,
990 .suspend
= genphy_suspend
,
991 .resume
= genphy_resume
,
993 .phy_id
= PHY_ID_KSZ8021
,
994 .phy_id_mask
= 0x00ffffff,
995 .name
= "Micrel KSZ8021 or KSZ8031",
996 /* PHY_BASIC_FEATURES */
997 .driver_data
= &ksz8021_type
,
998 .probe
= kszphy_probe
,
999 .config_init
= kszphy_config_init
,
1000 .ack_interrupt
= kszphy_ack_interrupt
,
1001 .config_intr
= kszphy_config_intr
,
1002 .get_sset_count
= kszphy_get_sset_count
,
1003 .get_strings
= kszphy_get_strings
,
1004 .get_stats
= kszphy_get_stats
,
1005 .suspend
= genphy_suspend
,
1006 .resume
= genphy_resume
,
1008 .phy_id
= PHY_ID_KSZ8031
,
1009 .phy_id_mask
= 0x00ffffff,
1010 .name
= "Micrel KSZ8031",
1011 /* PHY_BASIC_FEATURES */
1012 .driver_data
= &ksz8021_type
,
1013 .probe
= kszphy_probe
,
1014 .config_init
= kszphy_config_init
,
1015 .ack_interrupt
= kszphy_ack_interrupt
,
1016 .config_intr
= kszphy_config_intr
,
1017 .get_sset_count
= kszphy_get_sset_count
,
1018 .get_strings
= kszphy_get_strings
,
1019 .get_stats
= kszphy_get_stats
,
1020 .suspend
= genphy_suspend
,
1021 .resume
= genphy_resume
,
1023 .phy_id
= PHY_ID_KSZ8041
,
1024 .phy_id_mask
= MICREL_PHY_ID_MASK
,
1025 .name
= "Micrel KSZ8041",
1026 /* PHY_BASIC_FEATURES */
1027 .driver_data
= &ksz8041_type
,
1028 .probe
= kszphy_probe
,
1029 .config_init
= ksz8041_config_init
,
1030 .config_aneg
= ksz8041_config_aneg
,
1031 .ack_interrupt
= kszphy_ack_interrupt
,
1032 .config_intr
= kszphy_config_intr
,
1033 .get_sset_count
= kszphy_get_sset_count
,
1034 .get_strings
= kszphy_get_strings
,
1035 .get_stats
= kszphy_get_stats
,
1036 .suspend
= genphy_suspend
,
1037 .resume
= genphy_resume
,
1039 .phy_id
= PHY_ID_KSZ8041RNLI
,
1040 .phy_id_mask
= MICREL_PHY_ID_MASK
,
1041 .name
= "Micrel KSZ8041RNLI",
1042 /* PHY_BASIC_FEATURES */
1043 .driver_data
= &ksz8041_type
,
1044 .probe
= kszphy_probe
,
1045 .config_init
= kszphy_config_init
,
1046 .ack_interrupt
= kszphy_ack_interrupt
,
1047 .config_intr
= kszphy_config_intr
,
1048 .get_sset_count
= kszphy_get_sset_count
,
1049 .get_strings
= kszphy_get_strings
,
1050 .get_stats
= kszphy_get_stats
,
1051 .suspend
= genphy_suspend
,
1052 .resume
= genphy_resume
,
1054 .name
= "Micrel KSZ8051",
1055 /* PHY_BASIC_FEATURES */
1056 .driver_data
= &ksz8051_type
,
1057 .probe
= kszphy_probe
,
1058 .config_init
= kszphy_config_init
,
1059 .ack_interrupt
= kszphy_ack_interrupt
,
1060 .config_intr
= kszphy_config_intr
,
1061 .get_sset_count
= kszphy_get_sset_count
,
1062 .get_strings
= kszphy_get_strings
,
1063 .get_stats
= kszphy_get_stats
,
1064 .match_phy_device
= ksz8051_match_phy_device
,
1065 .suspend
= genphy_suspend
,
1066 .resume
= genphy_resume
,
1068 .phy_id
= PHY_ID_KSZ8001
,
1069 .name
= "Micrel KSZ8001 or KS8721",
1070 .phy_id_mask
= 0x00fffffc,
1071 /* PHY_BASIC_FEATURES */
1072 .driver_data
= &ksz8041_type
,
1073 .probe
= kszphy_probe
,
1074 .config_init
= kszphy_config_init
,
1075 .ack_interrupt
= kszphy_ack_interrupt
,
1076 .config_intr
= kszphy_config_intr
,
1077 .get_sset_count
= kszphy_get_sset_count
,
1078 .get_strings
= kszphy_get_strings
,
1079 .get_stats
= kszphy_get_stats
,
1080 .suspend
= genphy_suspend
,
1081 .resume
= genphy_resume
,
1083 .phy_id
= PHY_ID_KSZ8081
,
1084 .name
= "Micrel KSZ8081 or KSZ8091",
1085 .phy_id_mask
= MICREL_PHY_ID_MASK
,
1086 /* PHY_BASIC_FEATURES */
1087 .driver_data
= &ksz8081_type
,
1088 .probe
= kszphy_probe
,
1089 .config_init
= ksz8081_config_init
,
1090 .ack_interrupt
= kszphy_ack_interrupt
,
1091 .config_intr
= kszphy_config_intr
,
1092 .get_sset_count
= kszphy_get_sset_count
,
1093 .get_strings
= kszphy_get_strings
,
1094 .get_stats
= kszphy_get_stats
,
1095 .suspend
= kszphy_suspend
,
1096 .resume
= kszphy_resume
,
1098 .phy_id
= PHY_ID_KSZ8061
,
1099 .name
= "Micrel KSZ8061",
1100 .phy_id_mask
= MICREL_PHY_ID_MASK
,
1101 /* PHY_BASIC_FEATURES */
1102 .config_init
= ksz8061_config_init
,
1103 .ack_interrupt
= kszphy_ack_interrupt
,
1104 .config_intr
= kszphy_config_intr
,
1105 .suspend
= genphy_suspend
,
1106 .resume
= genphy_resume
,
1108 .phy_id
= PHY_ID_KSZ9021
,
1109 .phy_id_mask
= 0x000ffffe,
1110 .name
= "Micrel KSZ9021 Gigabit PHY",
1111 /* PHY_GBIT_FEATURES */
1112 .driver_data
= &ksz9021_type
,
1113 .probe
= kszphy_probe
,
1114 .get_features
= ksz9031_get_features
,
1115 .config_init
= ksz9021_config_init
,
1116 .ack_interrupt
= kszphy_ack_interrupt
,
1117 .config_intr
= kszphy_config_intr
,
1118 .get_sset_count
= kszphy_get_sset_count
,
1119 .get_strings
= kszphy_get_strings
,
1120 .get_stats
= kszphy_get_stats
,
1121 .suspend
= genphy_suspend
,
1122 .resume
= genphy_resume
,
1123 .read_mmd
= genphy_read_mmd_unsupported
,
1124 .write_mmd
= genphy_write_mmd_unsupported
,
1126 .phy_id
= PHY_ID_KSZ9031
,
1127 .phy_id_mask
= MICREL_PHY_ID_MASK
,
1128 .name
= "Micrel KSZ9031 Gigabit PHY",
1129 .driver_data
= &ksz9021_type
,
1130 .probe
= kszphy_probe
,
1131 .get_features
= ksz9031_get_features
,
1132 .config_init
= ksz9031_config_init
,
1133 .soft_reset
= genphy_soft_reset
,
1134 .read_status
= ksz9031_read_status
,
1135 .ack_interrupt
= kszphy_ack_interrupt
,
1136 .config_intr
= kszphy_config_intr
,
1137 .get_sset_count
= kszphy_get_sset_count
,
1138 .get_strings
= kszphy_get_strings
,
1139 .get_stats
= kszphy_get_stats
,
1140 .suspend
= genphy_suspend
,
1141 .resume
= kszphy_resume
,
1143 .phy_id
= PHY_ID_KSZ9131
,
1144 .phy_id_mask
= MICREL_PHY_ID_MASK
,
1145 .name
= "Microchip KSZ9131 Gigabit PHY",
1146 /* PHY_GBIT_FEATURES */
1147 .driver_data
= &ksz9021_type
,
1148 .probe
= kszphy_probe
,
1149 .config_init
= ksz9131_config_init
,
1150 .read_status
= ksz9031_read_status
,
1151 .ack_interrupt
= kszphy_ack_interrupt
,
1152 .config_intr
= kszphy_config_intr
,
1153 .get_sset_count
= kszphy_get_sset_count
,
1154 .get_strings
= kszphy_get_strings
,
1155 .get_stats
= kszphy_get_stats
,
1156 .suspend
= genphy_suspend
,
1157 .resume
= kszphy_resume
,
1159 .phy_id
= PHY_ID_KSZ8873MLL
,
1160 .phy_id_mask
= MICREL_PHY_ID_MASK
,
1161 .name
= "Micrel KSZ8873MLL Switch",
1162 /* PHY_BASIC_FEATURES */
1163 .config_init
= kszphy_config_init
,
1164 .config_aneg
= ksz8873mll_config_aneg
,
1165 .read_status
= ksz8873mll_read_status
,
1166 .suspend
= genphy_suspend
,
1167 .resume
= genphy_resume
,
1169 .phy_id
= PHY_ID_KSZ886X
,
1170 .phy_id_mask
= MICREL_PHY_ID_MASK
,
1171 .name
= "Micrel KSZ886X Switch",
1172 /* PHY_BASIC_FEATURES */
1173 .config_init
= kszphy_config_init
,
1174 .suspend
= genphy_suspend
,
1175 .resume
= genphy_resume
,
1177 .name
= "Micrel KSZ87XX Switch",
1178 /* PHY_BASIC_FEATURES */
1179 .config_init
= kszphy_config_init
,
1180 .config_aneg
= ksz8873mll_config_aneg
,
1181 .read_status
= ksz8873mll_read_status
,
1182 .match_phy_device
= ksz8795_match_phy_device
,
1183 .suspend
= genphy_suspend
,
1184 .resume
= genphy_resume
,
1186 .phy_id
= PHY_ID_KSZ9477
,
1187 .phy_id_mask
= MICREL_PHY_ID_MASK
,
1188 .name
= "Microchip KSZ9477",
1189 /* PHY_GBIT_FEATURES */
1190 .config_init
= kszphy_config_init
,
1191 .suspend
= genphy_suspend
,
1192 .resume
= genphy_resume
,
1195 module_phy_driver(ksphy_driver
);
1197 MODULE_DESCRIPTION("Micrel PHY driver");
1198 MODULE_AUTHOR("David J. Choi");
1199 MODULE_LICENSE("GPL");
1201 static struct mdio_device_id __maybe_unused micrel_tbl
[] = {
1202 { PHY_ID_KSZ9021
, 0x000ffffe },
1203 { PHY_ID_KSZ9031
, MICREL_PHY_ID_MASK
},
1204 { PHY_ID_KSZ9131
, MICREL_PHY_ID_MASK
},
1205 { PHY_ID_KSZ8001
, 0x00fffffc },
1206 { PHY_ID_KS8737
, MICREL_PHY_ID_MASK
},
1207 { PHY_ID_KSZ8021
, 0x00ffffff },
1208 { PHY_ID_KSZ8031
, 0x00ffffff },
1209 { PHY_ID_KSZ8041
, MICREL_PHY_ID_MASK
},
1210 { PHY_ID_KSZ8051
, MICREL_PHY_ID_MASK
},
1211 { PHY_ID_KSZ8061
, MICREL_PHY_ID_MASK
},
1212 { PHY_ID_KSZ8081
, MICREL_PHY_ID_MASK
},
1213 { PHY_ID_KSZ8873MLL
, MICREL_PHY_ID_MASK
},
1214 { PHY_ID_KSZ886X
, MICREL_PHY_ID_MASK
},
1218 MODULE_DEVICE_TABLE(mdio
, micrel_tbl
);