blob: 870327efccf78ef0db0361212caf0aa899974625 [file] [log] [blame]
Maciej W. Rozyckic4b41c92006-10-03 16:18:13 +01001/*
2 * drivers/net/phy/broadcom.c
3 *
4 * Broadcom BCM5411, BCM5421 and BCM5461 Gigabit Ethernet
5 * transceivers.
6 *
7 * Copyright (c) 2006 Maciej W. Rozycki
8 *
9 * Inspired by code written by Amy Fong.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
15 */
16
Arun Parameswarana1cba562015-10-06 12:25:48 -070017#include "bcm-phy-lib.h"
Maciej W. Rozyckic4b41c92006-10-03 16:18:13 +010018#include <linux/module.h>
19#include <linux/phy.h>
Matt Carlson8649f132009-11-02 14:30:00 +000020#include <linux/brcmphy.h>
Maciej W. Rozyckic4b41c92006-10-03 16:18:13 +010021
Matt Carlsond9221e62009-08-25 10:11:26 +000022
23#define BRCM_PHY_MODEL(phydev) \
24 ((phydev)->drv->phy_id & (phydev)->drv->phy_id_mask)
25
Matt Carlson32e5a8d2009-11-02 14:31:39 +000026#define BRCM_PHY_REV(phydev) \
27 ((phydev)->drv->phy_id & ~((phydev)->drv->phy_id_mask))
28
Maciej W. Rozyckic4b41c92006-10-03 16:18:13 +010029MODULE_DESCRIPTION("Broadcom PHY driver");
30MODULE_AUTHOR("Maciej W. Rozycki");
31MODULE_LICENSE("GPL");
32
Matt Carlson772638b2008-11-03 16:56:51 -080033static int bcm54xx_auxctl_write(struct phy_device *phydev, u16 regnum, u16 val)
34{
35 return phy_write(phydev, MII_BCM54XX_AUX_CTL, regnum | val);
36}
37
Matt Carlson47b1b532009-11-02 14:28:04 +000038/* Needs SMDSP clock enabled via bcm54xx_phydsp_config() */
Matt Carlson772638b2008-11-03 16:56:51 -080039static int bcm50610_a0_workaround(struct phy_device *phydev)
40{
41 int err;
42
Arun Parameswarana1cba562015-10-06 12:25:48 -070043 err = bcm_phy_write_exp(phydev, MII_BCM54XX_EXP_AADJ1CH0,
Matt Carlson47b1b532009-11-02 14:28:04 +000044 MII_BCM54XX_EXP_AADJ1CH0_SWP_ABCD_OEN |
45 MII_BCM54XX_EXP_AADJ1CH0_SWSEL_THPF);
46 if (err < 0)
47 return err;
48
Arun Parameswarana1cba562015-10-06 12:25:48 -070049 err = bcm_phy_write_exp(phydev, MII_BCM54XX_EXP_AADJ1CH3,
50 MII_BCM54XX_EXP_AADJ1CH3_ADCCKADJ);
Matt Carlson47b1b532009-11-02 14:28:04 +000051 if (err < 0)
52 return err;
53
Arun Parameswarana1cba562015-10-06 12:25:48 -070054 err = bcm_phy_write_exp(phydev, MII_BCM54XX_EXP_EXP75,
Matt Carlson47b1b532009-11-02 14:28:04 +000055 MII_BCM54XX_EXP_EXP75_VDACCTRL);
56 if (err < 0)
57 return err;
58
Arun Parameswarana1cba562015-10-06 12:25:48 -070059 err = bcm_phy_write_exp(phydev, MII_BCM54XX_EXP_EXP96,
Matt Carlson47b1b532009-11-02 14:28:04 +000060 MII_BCM54XX_EXP_EXP96_MYST);
61 if (err < 0)
62 return err;
63
Arun Parameswarana1cba562015-10-06 12:25:48 -070064 err = bcm_phy_write_exp(phydev, MII_BCM54XX_EXP_EXP97,
Matt Carlson47b1b532009-11-02 14:28:04 +000065 MII_BCM54XX_EXP_EXP97_MYST);
66
67 return err;
68}
69
70static int bcm54xx_phydsp_config(struct phy_device *phydev)
71{
72 int err, err2;
73
74 /* Enable the SMDSP clock */
Matt Carlson772638b2008-11-03 16:56:51 -080075 err = bcm54xx_auxctl_write(phydev,
76 MII_BCM54XX_AUXCTL_SHDWSEL_AUXCTL,
77 MII_BCM54XX_AUXCTL_ACTL_SMDSP_ENA |
78 MII_BCM54XX_AUXCTL_ACTL_TX_6DB);
79 if (err < 0)
80 return err;
81
Matt Carlson219c6ef2009-11-02 14:28:33 +000082 if (BRCM_PHY_MODEL(phydev) == PHY_ID_BCM50610 ||
83 BRCM_PHY_MODEL(phydev) == PHY_ID_BCM50610M) {
84 /* Clear bit 9 to fix a phy interop issue. */
Arun Parameswarana1cba562015-10-06 12:25:48 -070085 err = bcm_phy_write_exp(phydev, MII_BCM54XX_EXP_EXP08,
Matt Carlson219c6ef2009-11-02 14:28:33 +000086 MII_BCM54XX_EXP_EXP08_RJCT_2MHZ);
87 if (err < 0)
88 goto error;
89
90 if (phydev->drv->phy_id == PHY_ID_BCM50610) {
91 err = bcm50610_a0_workaround(phydev);
92 if (err < 0)
93 goto error;
94 }
95 }
Matt Carlson772638b2008-11-03 16:56:51 -080096
Matt Carlson47b1b532009-11-02 14:28:04 +000097 if (BRCM_PHY_MODEL(phydev) == PHY_ID_BCM57780) {
98 int val;
Matt Carlson772638b2008-11-03 16:56:51 -080099
Arun Parameswarana1cba562015-10-06 12:25:48 -0700100 val = bcm_phy_read_exp(phydev, MII_BCM54XX_EXP_EXP75);
Matt Carlson47b1b532009-11-02 14:28:04 +0000101 if (val < 0)
102 goto error;
Matt Carlson772638b2008-11-03 16:56:51 -0800103
Matt Carlson47b1b532009-11-02 14:28:04 +0000104 val |= MII_BCM54XX_EXP_EXP75_CM_OSC;
Arun Parameswarana1cba562015-10-06 12:25:48 -0700105 err = bcm_phy_write_exp(phydev, MII_BCM54XX_EXP_EXP75, val);
Matt Carlson47b1b532009-11-02 14:28:04 +0000106 }
Matt Carlson772638b2008-11-03 16:56:51 -0800107
108error:
Matt Carlson47b1b532009-11-02 14:28:04 +0000109 /* Disable the SMDSP clock */
110 err2 = bcm54xx_auxctl_write(phydev,
111 MII_BCM54XX_AUXCTL_SHDWSEL_AUXCTL,
112 MII_BCM54XX_AUXCTL_ACTL_TX_6DB);
Matt Carlson772638b2008-11-03 16:56:51 -0800113
Matt Carlson47b1b532009-11-02 14:28:04 +0000114 /* Return the first error reported. */
115 return err ? err : err2;
Matt Carlson772638b2008-11-03 16:56:51 -0800116}
117
Matt Carlson32e5a8d2009-11-02 14:31:39 +0000118static void bcm54xx_adjust_rxrefclk(struct phy_device *phydev)
119{
Roel Kluin5ee6f6a2009-12-18 20:16:10 -0800120 u32 orig;
121 int val;
Matt Carlsonc704dc22009-11-02 14:32:12 +0000122 bool clk125en = true;
Matt Carlson32e5a8d2009-11-02 14:31:39 +0000123
124 /* Abort if we are using an untested phy. */
roel kluin7ec4e7d2009-12-30 06:43:06 +0000125 if (BRCM_PHY_MODEL(phydev) != PHY_ID_BCM57780 &&
126 BRCM_PHY_MODEL(phydev) != PHY_ID_BCM50610 &&
Matt Carlson32e5a8d2009-11-02 14:31:39 +0000127 BRCM_PHY_MODEL(phydev) != PHY_ID_BCM50610M)
128 return;
129
Arun Parameswarana1cba562015-10-06 12:25:48 -0700130 val = bcm_phy_read_shadow(phydev, BCM54XX_SHD_SCR3);
Matt Carlson32e5a8d2009-11-02 14:31:39 +0000131 if (val < 0)
132 return;
133
134 orig = val;
135
Matt Carlsonc704dc22009-11-02 14:32:12 +0000136 if ((BRCM_PHY_MODEL(phydev) == PHY_ID_BCM50610 ||
137 BRCM_PHY_MODEL(phydev) == PHY_ID_BCM50610M) &&
138 BRCM_PHY_REV(phydev) >= 0x3) {
139 /*
140 * Here, bit 0 _disables_ CLK125 when set.
141 * This bit is set by default.
142 */
143 clk125en = false;
144 } else {
145 if (phydev->dev_flags & PHY_BRCM_RX_REFCLK_UNUSED) {
Matt Carlson32e5a8d2009-11-02 14:31:39 +0000146 /* Here, bit 0 _enables_ CLK125 when set */
147 val &= ~BCM54XX_SHD_SCR3_DEF_CLK125;
Matt Carlsonc704dc22009-11-02 14:32:12 +0000148 clk125en = false;
Matt Carlson32e5a8d2009-11-02 14:31:39 +0000149 }
150 }
151
Joe Perches23677ce2012-02-09 11:17:23 +0000152 if (!clk125en || (phydev->dev_flags & PHY_BRCM_AUTO_PWRDWN_ENABLE))
Matt Carlsonc704dc22009-11-02 14:32:12 +0000153 val &= ~BCM54XX_SHD_SCR3_DLLAPD_DIS;
154 else
155 val |= BCM54XX_SHD_SCR3_DLLAPD_DIS;
156
Matt Carlson52fae082009-11-02 14:32:38 +0000157 if (phydev->dev_flags & PHY_BRCM_DIS_TXCRXC_NOENRGY)
158 val |= BCM54XX_SHD_SCR3_TRDDAPD;
159
Matt Carlson32e5a8d2009-11-02 14:31:39 +0000160 if (orig != val)
Arun Parameswarana1cba562015-10-06 12:25:48 -0700161 bcm_phy_write_shadow(phydev, BCM54XX_SHD_SCR3, val);
Matt Carlsonc704dc22009-11-02 14:32:12 +0000162
Arun Parameswarana1cba562015-10-06 12:25:48 -0700163 val = bcm_phy_read_shadow(phydev, BCM54XX_SHD_APD);
Matt Carlsonc704dc22009-11-02 14:32:12 +0000164 if (val < 0)
165 return;
166
167 orig = val;
168
Joe Perches23677ce2012-02-09 11:17:23 +0000169 if (!clk125en || (phydev->dev_flags & PHY_BRCM_AUTO_PWRDWN_ENABLE))
Matt Carlsonc704dc22009-11-02 14:32:12 +0000170 val |= BCM54XX_SHD_APD_EN;
171 else
172 val &= ~BCM54XX_SHD_APD_EN;
173
174 if (orig != val)
Arun Parameswarana1cba562015-10-06 12:25:48 -0700175 bcm_phy_write_shadow(phydev, BCM54XX_SHD_APD, val);
Matt Carlson32e5a8d2009-11-02 14:31:39 +0000176}
177
Maciej W. Rozyckic4b41c92006-10-03 16:18:13 +0100178static int bcm54xx_config_init(struct phy_device *phydev)
179{
180 int reg, err;
181
182 reg = phy_read(phydev, MII_BCM54XX_ECR);
183 if (reg < 0)
184 return reg;
185
186 /* Mask interrupts globally. */
187 reg |= MII_BCM54XX_ECR_IM;
188 err = phy_write(phydev, MII_BCM54XX_ECR, reg);
189 if (err < 0)
190 return err;
191
192 /* Unmask events we are interested in. */
193 reg = ~(MII_BCM54XX_INT_DUPLEX |
194 MII_BCM54XX_INT_SPEED |
195 MII_BCM54XX_INT_LINK);
196 err = phy_write(phydev, MII_BCM54XX_IMR, reg);
197 if (err < 0)
198 return err;
Matt Carlson772638b2008-11-03 16:56:51 -0800199
Matt Carlson63a14ce2009-11-02 14:30:40 +0000200 if ((BRCM_PHY_MODEL(phydev) == PHY_ID_BCM50610 ||
201 BRCM_PHY_MODEL(phydev) == PHY_ID_BCM50610M) &&
202 (phydev->dev_flags & PHY_BRCM_CLEAR_RGMII_MODE))
Arun Parameswarana1cba562015-10-06 12:25:48 -0700203 bcm_phy_write_shadow(phydev, BCM54XX_SHD_RGMII_MODE, 0);
Matt Carlson63a14ce2009-11-02 14:30:40 +0000204
Matt Carlsonc704dc22009-11-02 14:32:12 +0000205 if ((phydev->dev_flags & PHY_BRCM_RX_REFCLK_UNUSED) ||
Matt Carlson52fae082009-11-02 14:32:38 +0000206 (phydev->dev_flags & PHY_BRCM_DIS_TXCRXC_NOENRGY) ||
Matt Carlsonc704dc22009-11-02 14:32:12 +0000207 (phydev->dev_flags & PHY_BRCM_AUTO_PWRDWN_ENABLE))
Matt Carlson32e5a8d2009-11-02 14:31:39 +0000208 bcm54xx_adjust_rxrefclk(phydev);
209
Matt Carlson47b1b532009-11-02 14:28:04 +0000210 bcm54xx_phydsp_config(phydev);
Matt Carlsond9221e62009-08-25 10:11:26 +0000211
Maciej W. Rozyckic4b41c92006-10-03 16:18:13 +0100212 return 0;
213}
214
Nate Casecd9af3d2008-05-17 06:40:39 +0100215static int bcm5482_config_init(struct phy_device *phydev)
216{
217 int err, reg;
218
219 err = bcm54xx_config_init(phydev);
220
221 if (phydev->dev_flags & PHY_BCM_FLAGS_MODE_1000BX) {
222 /*
223 * Enable secondary SerDes and its use as an LED source
224 */
Arun Parameswarana1cba562015-10-06 12:25:48 -0700225 reg = bcm_phy_read_shadow(phydev, BCM5482_SHD_SSD);
226 bcm_phy_write_shadow(phydev, BCM5482_SHD_SSD,
Nate Casecd9af3d2008-05-17 06:40:39 +0100227 reg |
228 BCM5482_SHD_SSD_LEDM |
229 BCM5482_SHD_SSD_EN);
230
231 /*
232 * Enable SGMII slave mode and auto-detection
233 */
Matt Carlson042a75b2008-11-03 16:56:29 -0800234 reg = BCM5482_SSD_SGMII_SLAVE | MII_BCM54XX_EXP_SEL_SSD;
Arun Parameswarana1cba562015-10-06 12:25:48 -0700235 err = bcm_phy_read_exp(phydev, reg);
Matt Carlson042a75b2008-11-03 16:56:29 -0800236 if (err < 0)
237 return err;
Arun Parameswarana1cba562015-10-06 12:25:48 -0700238 err = bcm_phy_write_exp(phydev, reg, err |
Matt Carlson042a75b2008-11-03 16:56:29 -0800239 BCM5482_SSD_SGMII_SLAVE_EN |
240 BCM5482_SSD_SGMII_SLAVE_AD);
241 if (err < 0)
242 return err;
Nate Casecd9af3d2008-05-17 06:40:39 +0100243
244 /*
245 * Disable secondary SerDes powerdown
246 */
Matt Carlson042a75b2008-11-03 16:56:29 -0800247 reg = BCM5482_SSD_1000BX_CTL | MII_BCM54XX_EXP_SEL_SSD;
Arun Parameswarana1cba562015-10-06 12:25:48 -0700248 err = bcm_phy_read_exp(phydev, reg);
Matt Carlson042a75b2008-11-03 16:56:29 -0800249 if (err < 0)
250 return err;
Arun Parameswarana1cba562015-10-06 12:25:48 -0700251 err = bcm_phy_write_exp(phydev, reg,
Matt Carlson042a75b2008-11-03 16:56:29 -0800252 err & ~BCM5482_SSD_1000BX_CTL_PWRDOWN);
253 if (err < 0)
254 return err;
Nate Casecd9af3d2008-05-17 06:40:39 +0100255
256 /*
257 * Select 1000BASE-X register set (primary SerDes)
258 */
Arun Parameswarana1cba562015-10-06 12:25:48 -0700259 reg = bcm_phy_read_shadow(phydev, BCM5482_SHD_MODE);
260 bcm_phy_write_shadow(phydev, BCM5482_SHD_MODE,
Nate Casecd9af3d2008-05-17 06:40:39 +0100261 reg | BCM5482_SHD_MODE_1000BX);
262
263 /*
264 * LED1=ACTIVITYLED, LED3=LINKSPD[2]
265 * (Use LED1 as secondary SerDes ACTIVITY LED)
266 */
Arun Parameswarana1cba562015-10-06 12:25:48 -0700267 bcm_phy_write_shadow(phydev, BCM5482_SHD_LEDS1,
Nate Casecd9af3d2008-05-17 06:40:39 +0100268 BCM5482_SHD_LEDS1_LED1(BCM_LED_SRC_ACTIVITYLED) |
269 BCM5482_SHD_LEDS1_LED3(BCM_LED_SRC_LINKSPD2));
270
271 /*
272 * Auto-negotiation doesn't seem to work quite right
273 * in this mode, so we disable it and force it to the
274 * right speed/duplex setting. Only 'link status'
275 * is important.
276 */
277 phydev->autoneg = AUTONEG_DISABLE;
278 phydev->speed = SPEED_1000;
279 phydev->duplex = DUPLEX_FULL;
280 }
281
282 return err;
283}
284
285static int bcm5482_read_status(struct phy_device *phydev)
286{
287 int err;
288
289 err = genphy_read_status(phydev);
290
291 if (phydev->dev_flags & PHY_BCM_FLAGS_MODE_1000BX) {
292 /*
293 * Only link status matters for 1000Base-X mode, so force
294 * 1000 Mbit/s full-duplex status
295 */
296 if (phydev->link) {
297 phydev->speed = SPEED_1000;
298 phydev->duplex = DUPLEX_FULL;
299 }
300 }
301
302 return err;
303}
304
Anton Vorontsov57bb7e22008-03-04 19:41:32 +0300305static int bcm5481_config_aneg(struct phy_device *phydev)
306{
307 int ret;
308
309 /* Aneg firsly. */
310 ret = genphy_config_aneg(phydev);
311
312 /* Then we can set up the delay. */
313 if (phydev->interface == PHY_INTERFACE_MODE_RGMII_RXID) {
314 u16 reg;
315
316 /*
317 * There is no BCM5481 specification available, so down
318 * here is everything we know about "register 0x18". This
Joe Perchesbfb90352011-08-17 06:58:04 -0700319 * at least helps BCM5481 to successfully receive packets
Anton Vorontsov57bb7e22008-03-04 19:41:32 +0300320 * on MPC8360E-RDK board. Peter Barada <peterb@logicpd.com>
321 * says: "This sets delay between the RXD and RXC signals
322 * instead of using trace lengths to achieve timing".
323 */
324
325 /* Set RDX clk delay. */
326 reg = 0x7 | (0x7 << 12);
327 phy_write(phydev, 0x18, reg);
328
329 reg = phy_read(phydev, 0x18);
330 /* Set RDX-RXC skew. */
331 reg |= (1 << 8);
332 /* Write bits 14:0. */
333 reg |= (1 << 15);
334 phy_write(phydev, 0x18, reg);
335 }
336
337 return ret;
338}
339
Matt Carlsond7a2ed92009-08-25 10:10:58 +0000340static int brcm_phy_setbits(struct phy_device *phydev, int reg, int set)
341{
342 int val;
343
344 val = phy_read(phydev, reg);
345 if (val < 0)
346 return val;
347
348 return phy_write(phydev, reg, val | set);
349}
350
351static int brcm_fet_config_init(struct phy_device *phydev)
352{
353 int reg, err, err2, brcmtest;
354
355 /* Reset the PHY to bring it to a known state. */
356 err = phy_write(phydev, MII_BMCR, BMCR_RESET);
357 if (err < 0)
358 return err;
359
360 reg = phy_read(phydev, MII_BRCM_FET_INTREG);
361 if (reg < 0)
362 return reg;
363
364 /* Unmask events we are interested in and mask interrupts globally. */
365 reg = MII_BRCM_FET_IR_DUPLEX_EN |
366 MII_BRCM_FET_IR_SPEED_EN |
367 MII_BRCM_FET_IR_LINK_EN |
368 MII_BRCM_FET_IR_ENABLE |
369 MII_BRCM_FET_IR_MASK;
370
371 err = phy_write(phydev, MII_BRCM_FET_INTREG, reg);
372 if (err < 0)
373 return err;
374
375 /* Enable shadow register access */
376 brcmtest = phy_read(phydev, MII_BRCM_FET_BRCMTEST);
377 if (brcmtest < 0)
378 return brcmtest;
379
380 reg = brcmtest | MII_BRCM_FET_BT_SRE;
381
382 err = phy_write(phydev, MII_BRCM_FET_BRCMTEST, reg);
383 if (err < 0)
384 return err;
385
386 /* Set the LED mode */
387 reg = phy_read(phydev, MII_BRCM_FET_SHDW_AUXMODE4);
388 if (reg < 0) {
389 err = reg;
390 goto done;
391 }
392
393 reg &= ~MII_BRCM_FET_SHDW_AM4_LED_MASK;
394 reg |= MII_BRCM_FET_SHDW_AM4_LED_MODE1;
395
396 err = phy_write(phydev, MII_BRCM_FET_SHDW_AUXMODE4, reg);
397 if (err < 0)
398 goto done;
399
400 /* Enable auto MDIX */
401 err = brcm_phy_setbits(phydev, MII_BRCM_FET_SHDW_MISCCTRL,
402 MII_BRCM_FET_SHDW_MC_FAME);
403 if (err < 0)
404 goto done;
405
Matt Carlsoncdd4e09d2009-11-02 14:31:11 +0000406 if (phydev->dev_flags & PHY_BRCM_AUTO_PWRDWN_ENABLE) {
407 /* Enable auto power down */
408 err = brcm_phy_setbits(phydev, MII_BRCM_FET_SHDW_AUXSTAT2,
409 MII_BRCM_FET_SHDW_AS2_APDE);
410 }
Matt Carlsond7a2ed92009-08-25 10:10:58 +0000411
412done:
413 /* Disable shadow register access */
414 err2 = phy_write(phydev, MII_BRCM_FET_BRCMTEST, brcmtest);
415 if (!err)
416 err = err2;
417
418 return err;
419}
420
421static int brcm_fet_ack_interrupt(struct phy_device *phydev)
422{
423 int reg;
424
425 /* Clear pending interrupts. */
426 reg = phy_read(phydev, MII_BRCM_FET_INTREG);
427 if (reg < 0)
428 return reg;
429
430 return 0;
431}
432
433static int brcm_fet_config_intr(struct phy_device *phydev)
434{
435 int reg, err;
436
437 reg = phy_read(phydev, MII_BRCM_FET_INTREG);
438 if (reg < 0)
439 return reg;
440
441 if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
442 reg &= ~MII_BRCM_FET_IR_MASK;
443 else
444 reg |= MII_BRCM_FET_IR_MASK;
445
446 err = phy_write(phydev, MII_BRCM_FET_INTREG, reg);
447 return err;
448}
449
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000450static struct phy_driver broadcom_drivers[] = {
451{
Dmitry Baryshkovfcb26ec2010-06-16 23:02:23 +0000452 .phy_id = PHY_ID_BCM5411,
Maciej W. Rozyckic4b41c92006-10-03 16:18:13 +0100453 .phy_id_mask = 0xfffffff0,
454 .name = "Broadcom BCM5411",
Matt Carlson5e0c6762008-11-03 16:56:07 -0800455 .features = PHY_GBIT_FEATURES |
456 SUPPORTED_Pause | SUPPORTED_Asym_Pause,
Maciej W. Rozyckic4b41c92006-10-03 16:18:13 +0100457 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
458 .config_init = bcm54xx_config_init,
459 .config_aneg = genphy_config_aneg,
460 .read_status = genphy_read_status,
Arun Parameswarana1cba562015-10-06 12:25:48 -0700461 .ack_interrupt = bcm_phy_ack_intr,
462 .config_intr = bcm_phy_config_intr,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000463}, {
Dmitry Baryshkovfcb26ec2010-06-16 23:02:23 +0000464 .phy_id = PHY_ID_BCM5421,
Maciej W. Rozyckic4b41c92006-10-03 16:18:13 +0100465 .phy_id_mask = 0xfffffff0,
466 .name = "Broadcom BCM5421",
Matt Carlson5e0c6762008-11-03 16:56:07 -0800467 .features = PHY_GBIT_FEATURES |
468 SUPPORTED_Pause | SUPPORTED_Asym_Pause,
Maciej W. Rozyckic4b41c92006-10-03 16:18:13 +0100469 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
470 .config_init = bcm54xx_config_init,
471 .config_aneg = genphy_config_aneg,
472 .read_status = genphy_read_status,
Arun Parameswarana1cba562015-10-06 12:25:48 -0700473 .ack_interrupt = bcm_phy_ack_intr,
474 .config_intr = bcm_phy_config_intr,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000475}, {
Dmitry Baryshkovfcb26ec2010-06-16 23:02:23 +0000476 .phy_id = PHY_ID_BCM5461,
Maciej W. Rozyckic4b41c92006-10-03 16:18:13 +0100477 .phy_id_mask = 0xfffffff0,
478 .name = "Broadcom BCM5461",
Matt Carlson5e0c6762008-11-03 16:56:07 -0800479 .features = PHY_GBIT_FEATURES |
480 SUPPORTED_Pause | SUPPORTED_Asym_Pause,
Maciej W. Rozyckic4b41c92006-10-03 16:18:13 +0100481 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
482 .config_init = bcm54xx_config_init,
483 .config_aneg = genphy_config_aneg,
484 .read_status = genphy_read_status,
Arun Parameswarana1cba562015-10-06 12:25:48 -0700485 .ack_interrupt = bcm_phy_ack_intr,
486 .config_intr = bcm_phy_config_intr,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000487}, {
Alessio Igor Bogani3bca4cf62015-04-08 12:15:18 +0200488 .phy_id = PHY_ID_BCM54616S,
489 .phy_id_mask = 0xfffffff0,
490 .name = "Broadcom BCM54616S",
491 .features = PHY_GBIT_FEATURES |
492 SUPPORTED_Pause | SUPPORTED_Asym_Pause,
493 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
494 .config_init = bcm54xx_config_init,
495 .config_aneg = genphy_config_aneg,
496 .read_status = genphy_read_status,
Arun Parameswarana1cba562015-10-06 12:25:48 -0700497 .ack_interrupt = bcm_phy_ack_intr,
498 .config_intr = bcm_phy_config_intr,
Alessio Igor Bogani3bca4cf62015-04-08 12:15:18 +0200499}, {
Dmitry Baryshkovfcb26ec2010-06-16 23:02:23 +0000500 .phy_id = PHY_ID_BCM5464,
Paul Gortmakerb1394f92008-04-14 23:35:41 -0400501 .phy_id_mask = 0xfffffff0,
502 .name = "Broadcom BCM5464",
Matt Carlson5e0c6762008-11-03 16:56:07 -0800503 .features = PHY_GBIT_FEATURES |
504 SUPPORTED_Pause | SUPPORTED_Asym_Pause,
Paul Gortmakerb1394f92008-04-14 23:35:41 -0400505 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
506 .config_init = bcm54xx_config_init,
507 .config_aneg = genphy_config_aneg,
508 .read_status = genphy_read_status,
Arun Parameswarana1cba562015-10-06 12:25:48 -0700509 .ack_interrupt = bcm_phy_ack_intr,
510 .config_intr = bcm_phy_config_intr,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000511}, {
Dmitry Baryshkovfcb26ec2010-06-16 23:02:23 +0000512 .phy_id = PHY_ID_BCM5481,
Anton Vorontsov57bb7e22008-03-04 19:41:32 +0300513 .phy_id_mask = 0xfffffff0,
514 .name = "Broadcom BCM5481",
Matt Carlson5e0c6762008-11-03 16:56:07 -0800515 .features = PHY_GBIT_FEATURES |
516 SUPPORTED_Pause | SUPPORTED_Asym_Pause,
Anton Vorontsov57bb7e22008-03-04 19:41:32 +0300517 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
518 .config_init = bcm54xx_config_init,
519 .config_aneg = bcm5481_config_aneg,
520 .read_status = genphy_read_status,
Arun Parameswarana1cba562015-10-06 12:25:48 -0700521 .ack_interrupt = bcm_phy_ack_intr,
522 .config_intr = bcm_phy_config_intr,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000523}, {
Dmitry Baryshkovfcb26ec2010-06-16 23:02:23 +0000524 .phy_id = PHY_ID_BCM5482,
Nate Case03157ac2008-01-29 10:19:00 -0600525 .phy_id_mask = 0xfffffff0,
526 .name = "Broadcom BCM5482",
Matt Carlson5e0c6762008-11-03 16:56:07 -0800527 .features = PHY_GBIT_FEATURES |
528 SUPPORTED_Pause | SUPPORTED_Asym_Pause,
Nate Case03157ac2008-01-29 10:19:00 -0600529 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
Nate Casecd9af3d2008-05-17 06:40:39 +0100530 .config_init = bcm5482_config_init,
Nate Case03157ac2008-01-29 10:19:00 -0600531 .config_aneg = genphy_config_aneg,
Nate Casecd9af3d2008-05-17 06:40:39 +0100532 .read_status = bcm5482_read_status,
Arun Parameswarana1cba562015-10-06 12:25:48 -0700533 .ack_interrupt = bcm_phy_ack_intr,
534 .config_intr = bcm_phy_config_intr,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000535}, {
Matt Carlson772638b2008-11-03 16:56:51 -0800536 .phy_id = PHY_ID_BCM50610,
537 .phy_id_mask = 0xfffffff0,
538 .name = "Broadcom BCM50610",
539 .features = PHY_GBIT_FEATURES |
540 SUPPORTED_Pause | SUPPORTED_Asym_Pause,
541 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
542 .config_init = bcm54xx_config_init,
543 .config_aneg = genphy_config_aneg,
544 .read_status = genphy_read_status,
Arun Parameswarana1cba562015-10-06 12:25:48 -0700545 .ack_interrupt = bcm_phy_ack_intr,
546 .config_intr = bcm_phy_config_intr,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000547}, {
Matt Carlson4f4598f2009-08-25 10:10:30 +0000548 .phy_id = PHY_ID_BCM50610M,
549 .phy_id_mask = 0xfffffff0,
550 .name = "Broadcom BCM50610M",
551 .features = PHY_GBIT_FEATURES |
552 SUPPORTED_Pause | SUPPORTED_Asym_Pause,
553 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
554 .config_init = bcm54xx_config_init,
555 .config_aneg = genphy_config_aneg,
556 .read_status = genphy_read_status,
Arun Parameswarana1cba562015-10-06 12:25:48 -0700557 .ack_interrupt = bcm_phy_ack_intr,
558 .config_intr = bcm_phy_config_intr,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000559}, {
Matt Carlsond9221e62009-08-25 10:11:26 +0000560 .phy_id = PHY_ID_BCM57780,
Matt Carlson2fbb69a2008-11-21 17:22:53 -0800561 .phy_id_mask = 0xfffffff0,
562 .name = "Broadcom BCM57780",
563 .features = PHY_GBIT_FEATURES |
564 SUPPORTED_Pause | SUPPORTED_Asym_Pause,
565 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
566 .config_init = bcm54xx_config_init,
567 .config_aneg = genphy_config_aneg,
568 .read_status = genphy_read_status,
Arun Parameswarana1cba562015-10-06 12:25:48 -0700569 .ack_interrupt = bcm_phy_ack_intr,
570 .config_intr = bcm_phy_config_intr,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000571}, {
Matt Carlson6a443a02010-02-17 15:17:04 +0000572 .phy_id = PHY_ID_BCMAC131,
Matt Carlsond7a2ed92009-08-25 10:10:58 +0000573 .phy_id_mask = 0xfffffff0,
574 .name = "Broadcom BCMAC131",
575 .features = PHY_BASIC_FEATURES |
576 SUPPORTED_Pause | SUPPORTED_Asym_Pause,
577 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
578 .config_init = brcm_fet_config_init,
579 .config_aneg = genphy_config_aneg,
580 .read_status = genphy_read_status,
581 .ack_interrupt = brcm_fet_ack_interrupt,
582 .config_intr = brcm_fet_config_intr,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000583}, {
Dmitry Baryshkov7a938f82010-06-16 23:02:24 +0000584 .phy_id = PHY_ID_BCM5241,
585 .phy_id_mask = 0xfffffff0,
586 .name = "Broadcom BCM5241",
587 .features = PHY_BASIC_FEATURES |
588 SUPPORTED_Pause | SUPPORTED_Asym_Pause,
589 .flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
590 .config_init = brcm_fet_config_init,
591 .config_aneg = genphy_config_aneg,
592 .read_status = genphy_read_status,
593 .ack_interrupt = brcm_fet_ack_interrupt,
594 .config_intr = brcm_fet_config_intr,
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +0000595} };
Dmitry Baryshkov7a938f82010-06-16 23:02:24 +0000596
Johan Hovold50fd7152014-11-11 19:45:59 +0100597module_phy_driver(broadcom_drivers);
David Woodhouse4e4f10f2010-04-02 01:05:56 +0000598
Uwe Kleine-Königcf93c942010-10-03 23:43:32 +0000599static struct mdio_device_id __maybe_unused broadcom_tbl[] = {
Dmitry Baryshkovfcb26ec2010-06-16 23:02:23 +0000600 { PHY_ID_BCM5411, 0xfffffff0 },
601 { PHY_ID_BCM5421, 0xfffffff0 },
602 { PHY_ID_BCM5461, 0xfffffff0 },
Alessio Igor Bogani3bca4cf62015-04-08 12:15:18 +0200603 { PHY_ID_BCM54616S, 0xfffffff0 },
Dmitry Baryshkovfcb26ec2010-06-16 23:02:23 +0000604 { PHY_ID_BCM5464, 0xfffffff0 },
Aaro Koskinen3c25a862015-11-22 01:08:54 +0200605 { PHY_ID_BCM5481, 0xfffffff0 },
Dmitry Baryshkovfcb26ec2010-06-16 23:02:23 +0000606 { PHY_ID_BCM5482, 0xfffffff0 },
David Woodhouse4e4f10f2010-04-02 01:05:56 +0000607 { PHY_ID_BCM50610, 0xfffffff0 },
608 { PHY_ID_BCM50610M, 0xfffffff0 },
609 { PHY_ID_BCM57780, 0xfffffff0 },
610 { PHY_ID_BCMAC131, 0xfffffff0 },
Dmitry Baryshkov7a938f82010-06-16 23:02:24 +0000611 { PHY_ID_BCM5241, 0xfffffff0 },
David Woodhouse4e4f10f2010-04-02 01:05:56 +0000612 { }
613};
614
615MODULE_DEVICE_TABLE(mdio, broadcom_tbl);