1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2011 - 2012 Cavium, Inc.
6 #include <linux/module.h>
10 #define PHY_ID_BCM8706 0x0143bdc1
11 #define PHY_ID_BCM8727 0x0143bff0
13 #define BCM87XX_PMD_RX_SIGNAL_DETECT (MII_ADDR_C45 | 0x1000a)
14 #define BCM87XX_10GBASER_PCS_STATUS (MII_ADDR_C45 | 0x30020)
15 #define BCM87XX_XGXS_LANE_STATUS (MII_ADDR_C45 | 0x40018)
17 #define BCM87XX_LASI_CONTROL (MII_ADDR_C45 | 0x39002)
18 #define BCM87XX_LASI_STATUS (MII_ADDR_C45 | 0x39005)
20 #if IS_ENABLED(CONFIG_OF_MDIO)
21 /* Set and/or override some configuration registers based on the
22 * broadcom,c45-reg-init property stored in the of_node for the phydev.
24 * broadcom,c45-reg-init = <devid reg mask value>,...;
26 * There may be one or more sets of <devid reg mask value>:
28 * devid: which sub-device to use.
30 * mask: if non-zero, ANDed with existing register value.
31 * value: ORed with the masked value and written to the regiser.
34 static int bcm87xx_of_reg_init(struct phy_device
*phydev
)
37 const __be32
*paddr_end
;
40 if (!phydev
->mdio
.dev
.of_node
)
43 paddr
= of_get_property(phydev
->mdio
.dev
.of_node
,
44 "broadcom,c45-reg-init", &len
);
48 paddr_end
= paddr
+ (len
/= sizeof(*paddr
));
52 while (paddr
+ 3 < paddr_end
) {
53 u16 devid
= be32_to_cpup(paddr
++);
54 u16 reg
= be32_to_cpup(paddr
++);
55 u16 mask
= be32_to_cpup(paddr
++);
56 u16 val_bits
= be32_to_cpup(paddr
++);
58 u32 regnum
= MII_ADDR_C45
| (devid
<< 16) | reg
;
61 val
= phy_read(phydev
, regnum
);
70 ret
= phy_write(phydev
, regnum
, val
);
78 static int bcm87xx_of_reg_init(struct phy_device
*phydev
)
82 #endif /* CONFIG_OF_MDIO */
84 static int bcm87xx_config_init(struct phy_device
*phydev
)
86 linkmode_zero(phydev
->supported
);
87 linkmode_set_bit(ETHTOOL_LINK_MODE_10000baseR_FEC_BIT
,
89 linkmode_zero(phydev
->advertising
);
90 linkmode_set_bit(ETHTOOL_LINK_MODE_10000baseR_FEC_BIT
,
92 phydev
->state
= PHY_NOLINK
;
93 phydev
->autoneg
= AUTONEG_DISABLE
;
95 bcm87xx_of_reg_init(phydev
);
100 static int bcm87xx_config_aneg(struct phy_device
*phydev
)
105 static int bcm87xx_read_status(struct phy_device
*phydev
)
107 int rx_signal_detect
;
109 int xgxs_lane_status
;
111 rx_signal_detect
= phy_read(phydev
, BCM87XX_PMD_RX_SIGNAL_DETECT
);
112 if (rx_signal_detect
< 0)
113 return rx_signal_detect
;
115 if ((rx_signal_detect
& 1) == 0)
118 pcs_status
= phy_read(phydev
, BCM87XX_10GBASER_PCS_STATUS
);
122 if ((pcs_status
& 1) == 0)
125 xgxs_lane_status
= phy_read(phydev
, BCM87XX_XGXS_LANE_STATUS
);
126 if (xgxs_lane_status
< 0)
127 return xgxs_lane_status
;
129 if ((xgxs_lane_status
& 0x1000) == 0)
132 phydev
->speed
= 10000;
142 static int bcm87xx_config_intr(struct phy_device
*phydev
)
146 reg
= phy_read(phydev
, BCM87XX_LASI_CONTROL
);
151 if (phydev
->interrupts
== PHY_INTERRUPT_ENABLED
)
156 err
= phy_write(phydev
, BCM87XX_LASI_CONTROL
, reg
);
160 static int bcm87xx_did_interrupt(struct phy_device
*phydev
)
164 reg
= phy_read(phydev
, BCM87XX_LASI_STATUS
);
168 "Error: Read of BCM87XX_LASI_STATUS failed: %d\n",
172 return (reg
& 1) != 0;
175 static int bcm87xx_ack_interrupt(struct phy_device
*phydev
)
177 /* Reading the LASI status clears it. */
178 bcm87xx_did_interrupt(phydev
);
182 static int bcm8706_match_phy_device(struct phy_device
*phydev
)
184 return phydev
->c45_ids
.device_ids
[4] == PHY_ID_BCM8706
;
187 static int bcm8727_match_phy_device(struct phy_device
*phydev
)
189 return phydev
->c45_ids
.device_ids
[4] == PHY_ID_BCM8727
;
192 static struct phy_driver bcm87xx_driver
[] = {
194 .phy_id
= PHY_ID_BCM8706
,
195 .phy_id_mask
= 0xffffffff,
196 .name
= "Broadcom BCM8706",
197 .features
= PHY_10GBIT_FEC_FEATURES
,
198 .config_init
= bcm87xx_config_init
,
199 .config_aneg
= bcm87xx_config_aneg
,
200 .read_status
= bcm87xx_read_status
,
201 .ack_interrupt
= bcm87xx_ack_interrupt
,
202 .config_intr
= bcm87xx_config_intr
,
203 .did_interrupt
= bcm87xx_did_interrupt
,
204 .match_phy_device
= bcm8706_match_phy_device
,
206 .phy_id
= PHY_ID_BCM8727
,
207 .phy_id_mask
= 0xffffffff,
208 .name
= "Broadcom BCM8727",
209 .features
= PHY_10GBIT_FEC_FEATURES
,
210 .config_init
= bcm87xx_config_init
,
211 .config_aneg
= bcm87xx_config_aneg
,
212 .read_status
= bcm87xx_read_status
,
213 .ack_interrupt
= bcm87xx_ack_interrupt
,
214 .config_intr
= bcm87xx_config_intr
,
215 .did_interrupt
= bcm87xx_did_interrupt
,
216 .match_phy_device
= bcm8727_match_phy_device
,
219 module_phy_driver(bcm87xx_driver
);
221 MODULE_LICENSE("GPL v2");