blob: a8ca03ff4f1e2d3667cbd91363b22e2439893992 [file] [log] [blame]
Florian Fainellib560a582014-02-13 16:08:45 -08001/*
2 * Broadcom BCM7xxx internal transceivers support.
3 *
4 * Copyright (C) 2014, Broadcom Corporation
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12#include <linux/module.h>
13#include <linux/phy.h>
14#include <linux/delay.h>
15#include <linux/bitops.h>
16#include <linux/brcmphy.h>
17
18/* Broadcom BCM7xxx internal PHY registers */
19#define MII_BCM7XXX_CHANNEL_WIDTH 0x2000
20
21/* 40nm only register definitions */
22#define MII_BCM7XXX_100TX_AUX_CTL 0x10
23#define MII_BCM7XXX_100TX_FALSE_CAR 0x13
24#define MII_BCM7XXX_100TX_DISC 0x14
25#define MII_BCM7XXX_AUX_MODE 0x1d
26#define MII_BCM7XX_64CLK_MDIO BIT(12)
27#define MII_BCM7XXX_CORE_BASE1E 0x1e
28#define MII_BCM7XXX_TEST 0x1f
29#define MII_BCM7XXX_SHD_MODE_2 BIT(2)
30
Florian Fainellia3622f22014-03-24 16:36:47 -070031/* 28nm only register definitions */
32#define MISC_ADDR(base, channel) base, channel
33
34#define DSP_TAP10 MISC_ADDR(0x0a, 0)
35#define PLL_PLLCTRL_1 MISC_ADDR(0x32, 1)
36#define PLL_PLLCTRL_2 MISC_ADDR(0x32, 2)
37#define PLL_PLLCTRL_4 MISC_ADDR(0x33, 0)
38
39#define AFE_RXCONFIG_0 MISC_ADDR(0x38, 0)
40#define AFE_RXCONFIG_1 MISC_ADDR(0x38, 1)
41#define AFE_RX_LP_COUNTER MISC_ADDR(0x38, 3)
42#define AFE_TX_CONFIG MISC_ADDR(0x39, 0)
43#define AFE_HPF_TRIM_OTHERS MISC_ADDR(0x3a, 0)
44
45#define CORE_EXPB0 0xb0
46
Florian Fainellib560a582014-02-13 16:08:45 -080047static int bcm7445_config_init(struct phy_device *phydev)
48{
49 int ret;
50 const struct bcm7445_regs {
51 int reg;
52 u16 value;
53 } bcm7445_regs_cfg[] = {
54 /* increases ADC latency by 24ns */
55 { MII_BCM54XX_EXP_SEL, 0x0038 },
56 { MII_BCM54XX_EXP_DATA, 0xAB95 },
57 /* increases internal 1V LDO voltage by 5% */
58 { MII_BCM54XX_EXP_SEL, 0x2038 },
59 { MII_BCM54XX_EXP_DATA, 0xBB22 },
60 /* reduce RX low pass filter corner frequency */
61 { MII_BCM54XX_EXP_SEL, 0x6038 },
62 { MII_BCM54XX_EXP_DATA, 0xFFC5 },
63 /* reduce RX high pass filter corner frequency */
64 { MII_BCM54XX_EXP_SEL, 0x003a },
65 { MII_BCM54XX_EXP_DATA, 0x2002 },
66 };
67 unsigned int i;
68
69 for (i = 0; i < ARRAY_SIZE(bcm7445_regs_cfg); i++) {
70 ret = phy_write(phydev,
71 bcm7445_regs_cfg[i].reg,
72 bcm7445_regs_cfg[i].value);
73 if (ret)
74 return ret;
75 }
76
77 return 0;
78}
79
80static void phy_write_exp(struct phy_device *phydev,
81 u16 reg, u16 value)
82{
83 phy_write(phydev, MII_BCM54XX_EXP_SEL, MII_BCM54XX_EXP_SEL_ER | reg);
84 phy_write(phydev, MII_BCM54XX_EXP_DATA, value);
85}
86
87static void phy_write_misc(struct phy_device *phydev,
88 u16 reg, u16 chl, u16 value)
89{
90 int tmp;
91
92 phy_write(phydev, MII_BCM54XX_AUX_CTL, MII_BCM54XX_AUXCTL_SHDWSEL_MISC);
93
94 tmp = phy_read(phydev, MII_BCM54XX_AUX_CTL);
95 tmp |= MII_BCM54XX_AUXCTL_ACTL_SMDSP_ENA;
96 phy_write(phydev, MII_BCM54XX_AUX_CTL, tmp);
97
98 tmp = (chl * MII_BCM7XXX_CHANNEL_WIDTH) | reg;
99 phy_write(phydev, MII_BCM54XX_EXP_SEL, tmp);
100
101 phy_write(phydev, MII_BCM54XX_EXP_DATA, value);
102}
103
104static int bcm7xxx_28nm_afe_config_init(struct phy_device *phydev)
105{
Florian Fainellib560a582014-02-13 16:08:45 -0800106 /* Increase VCO range to prevent unlocking problem of PLL at low
107 * temp
108 */
Florian Fainellia3622f22014-03-24 16:36:47 -0700109 phy_write_misc(phydev, PLL_PLLCTRL_1, 0x0048);
Florian Fainellib560a582014-02-13 16:08:45 -0800110
111 /* Change Ki to 011 */
Florian Fainellia3622f22014-03-24 16:36:47 -0700112 phy_write_misc(phydev, PLL_PLLCTRL_2, 0x021b);
Florian Fainellib560a582014-02-13 16:08:45 -0800113
114 /* Disable loading of TVCO buffer to bandgap, set bandgap trim
115 * to 111
116 */
Florian Fainellia3622f22014-03-24 16:36:47 -0700117 phy_write_misc(phydev, PLL_PLLCTRL_4, 0x0e20);
Florian Fainellib560a582014-02-13 16:08:45 -0800118
119 /* Adjust bias current trim by -3 */
Florian Fainellia3622f22014-03-24 16:36:47 -0700120 phy_write_misc(phydev, DSP_TAP10, 0x690b);
Florian Fainellib560a582014-02-13 16:08:45 -0800121
122 /* Switch to CORE_BASE1E */
123 phy_write(phydev, MII_BCM7XXX_CORE_BASE1E, 0xd);
124
125 /* Reset R_CAL/RC_CAL Engine */
Florian Fainellia3622f22014-03-24 16:36:47 -0700126 phy_write_exp(phydev, CORE_EXPB0, 0x0010);
Florian Fainellib560a582014-02-13 16:08:45 -0800127
128 /* Disable Reset R_CAL/RC_CAL Engine */
Florian Fainellia3622f22014-03-24 16:36:47 -0700129 phy_write_exp(phydev, CORE_EXPB0, 0x0000);
Florian Fainellib560a582014-02-13 16:08:45 -0800130
Florian Fainelli99185422014-03-24 16:36:48 -0700131 /* write AFE_RXCONFIG_0 */
132 phy_write_misc(phydev, AFE_RXCONFIG_0, 0xeb19);
133
134 /* write AFE_RXCONFIG_1 */
135 phy_write_misc(phydev, AFE_RXCONFIG_1, 0x9a3f);
136
137 /* write AFE_RX_LP_COUNTER */
Florian Fainellia62ea5a2014-03-24 16:36:49 -0700138 phy_write_misc(phydev, AFE_RX_LP_COUNTER, 0x7fc0);
Florian Fainelli99185422014-03-24 16:36:48 -0700139
140 /* write AFE_HPF_TRIM_OTHERS */
141 phy_write_misc(phydev, AFE_HPF_TRIM_OTHERS, 0x000b);
142
143 /* write AFTE_TX_CONFIG */
144 phy_write_misc(phydev, AFE_TX_CONFIG, 0x0800);
145
Florian Fainellib560a582014-02-13 16:08:45 -0800146 return 0;
147}
148
149static int bcm7xxx_28nm_config_init(struct phy_device *phydev)
150{
151 int ret;
152
153 ret = bcm7445_config_init(phydev);
154 if (ret)
155 return ret;
156
157 return bcm7xxx_28nm_afe_config_init(phydev);
158}
159
Florian Fainelli4fd14e02014-08-14 16:52:52 -0700160static int bcm7xxx_28nm_resume(struct phy_device *phydev)
161{
162 int ret;
163
164 /* Re-apply workarounds coming out suspend/resume */
165 ret = bcm7xxx_28nm_config_init(phydev);
166 if (ret)
167 return ret;
168
169 /* 28nm Gigabit PHYs come out of reset without any half-duplex
170 * or "hub" compliant advertised mode, fix that. This does not
171 * cause any problems with the PHY library since genphy_config_aneg()
172 * gracefully handles auto-negotiated and forced modes.
173 */
174 return genphy_config_aneg(phydev);
175}
176
Florian Fainellib560a582014-02-13 16:08:45 -0800177static int phy_set_clr_bits(struct phy_device *dev, int location,
178 int set_mask, int clr_mask)
179{
180 int v, ret;
181
182 v = phy_read(dev, location);
183 if (v < 0)
184 return v;
185
186 v &= ~clr_mask;
187 v |= set_mask;
188
189 ret = phy_write(dev, location, v);
190 if (ret < 0)
191 return ret;
192
193 return v;
194}
195
196static int bcm7xxx_config_init(struct phy_device *phydev)
197{
198 int ret;
199
200 /* Enable 64 clock MDIO */
201 phy_write(phydev, MII_BCM7XXX_AUX_MODE, MII_BCM7XX_64CLK_MDIO);
202 phy_read(phydev, MII_BCM7XXX_AUX_MODE);
203
204 /* Workaround only required for 100Mbits/sec */
205 if (!(phydev->dev_flags & PHY_BRCM_100MBPS_WAR))
206 return 0;
207
208 /* set shadow mode 2 */
209 ret = phy_set_clr_bits(phydev, MII_BCM7XXX_TEST,
210 MII_BCM7XXX_SHD_MODE_2, MII_BCM7XXX_SHD_MODE_2);
211 if (ret < 0)
212 return ret;
213
214 /* set iddq_clkbias */
215 phy_write(phydev, MII_BCM7XXX_100TX_DISC, 0x0F00);
216 udelay(10);
217
218 /* reset iddq_clkbias */
219 phy_write(phydev, MII_BCM7XXX_100TX_DISC, 0x0C00);
220
221 phy_write(phydev, MII_BCM7XXX_100TX_FALSE_CAR, 0x7555);
222
223 /* reset shadow mode 2 */
224 ret = phy_set_clr_bits(phydev, MII_BCM7XXX_TEST, MII_BCM7XXX_SHD_MODE_2, 0);
225 if (ret < 0)
226 return ret;
227
228 return 0;
229}
230
231/* Workaround for putting the PHY in IDDQ mode, required
232 * for all BCM7XXX PHYs
233 */
234static int bcm7xxx_suspend(struct phy_device *phydev)
235{
236 int ret;
237 const struct bcm7xxx_regs {
238 int reg;
239 u16 value;
240 } bcm7xxx_suspend_cfg[] = {
241 { MII_BCM7XXX_TEST, 0x008b },
242 { MII_BCM7XXX_100TX_AUX_CTL, 0x01c0 },
243 { MII_BCM7XXX_100TX_DISC, 0x7000 },
244 { MII_BCM7XXX_TEST, 0x000f },
245 { MII_BCM7XXX_100TX_AUX_CTL, 0x20d0 },
246 { MII_BCM7XXX_TEST, 0x000b },
247 };
248 unsigned int i;
249
250 for (i = 0; i < ARRAY_SIZE(bcm7xxx_suspend_cfg); i++) {
251 ret = phy_write(phydev,
252 bcm7xxx_suspend_cfg[i].reg,
253 bcm7xxx_suspend_cfg[i].value);
254 if (ret)
255 return ret;
256 }
257
258 return 0;
259}
260
261static int bcm7xxx_dummy_config_init(struct phy_device *phydev)
262{
263 return 0;
264}
265
266static struct phy_driver bcm7xxx_driver[] = {
267{
268 .phy_id = PHY_ID_BCM7366,
269 .phy_id_mask = 0xfffffff0,
270 .name = "Broadcom BCM7366",
271 .features = PHY_GBIT_FEATURES |
272 SUPPORTED_Pause | SUPPORTED_Asym_Pause,
273 .flags = PHY_IS_INTERNAL,
274 .config_init = bcm7xxx_28nm_afe_config_init,
275 .config_aneg = genphy_config_aneg,
276 .read_status = genphy_read_status,
277 .suspend = bcm7xxx_suspend,
Florian Fainelli4fd14e02014-08-14 16:52:52 -0700278 .resume = bcm7xxx_28nm_resume,
Florian Fainellib560a582014-02-13 16:08:45 -0800279 .driver = { .owner = THIS_MODULE },
280}, {
281 .phy_id = PHY_ID_BCM7439,
282 .phy_id_mask = 0xfffffff0,
283 .name = "Broadcom BCM7439",
284 .features = PHY_GBIT_FEATURES |
285 SUPPORTED_Pause | SUPPORTED_Asym_Pause,
286 .flags = PHY_IS_INTERNAL,
287 .config_init = bcm7xxx_28nm_afe_config_init,
288 .config_aneg = genphy_config_aneg,
289 .read_status = genphy_read_status,
290 .suspend = bcm7xxx_suspend,
Florian Fainelli4fd14e02014-08-14 16:52:52 -0700291 .resume = bcm7xxx_28nm_resume,
Florian Fainellib560a582014-02-13 16:08:45 -0800292 .driver = { .owner = THIS_MODULE },
293}, {
294 .phy_id = PHY_ID_BCM7445,
295 .phy_id_mask = 0xfffffff0,
296 .name = "Broadcom BCM7445",
297 .features = PHY_GBIT_FEATURES |
298 SUPPORTED_Pause | SUPPORTED_Asym_Pause,
299 .flags = PHY_IS_INTERNAL,
300 .config_init = bcm7xxx_28nm_config_init,
301 .config_aneg = genphy_config_aneg,
302 .read_status = genphy_read_status,
303 .suspend = bcm7xxx_suspend,
Florian Fainelli4fd14e02014-08-14 16:52:52 -0700304 .resume = bcm7xxx_28nm_afe_config_init,
Florian Fainellib560a582014-02-13 16:08:45 -0800305 .driver = { .owner = THIS_MODULE },
306}, {
Florian Fainellib560a582014-02-13 16:08:45 -0800307 .phy_id = PHY_BCM_OUI_4,
308 .phy_id_mask = 0xffff0000,
309 .name = "Broadcom BCM7XXX 40nm",
310 .features = PHY_GBIT_FEATURES |
311 SUPPORTED_Pause | SUPPORTED_Asym_Pause,
312 .flags = PHY_IS_INTERNAL,
313 .config_init = bcm7xxx_config_init,
314 .config_aneg = genphy_config_aneg,
315 .read_status = genphy_read_status,
316 .suspend = bcm7xxx_suspend,
317 .resume = bcm7xxx_config_init,
318 .driver = { .owner = THIS_MODULE },
319}, {
320 .phy_id = PHY_BCM_OUI_5,
321 .phy_id_mask = 0xffffff00,
322 .name = "Broadcom BCM7XXX 65nm",
323 .features = PHY_BASIC_FEATURES |
324 SUPPORTED_Pause | SUPPORTED_Asym_Pause,
325 .flags = PHY_IS_INTERNAL,
326 .config_init = bcm7xxx_dummy_config_init,
327 .config_aneg = genphy_config_aneg,
328 .read_status = genphy_read_status,
329 .suspend = bcm7xxx_suspend,
330 .resume = bcm7xxx_config_init,
331 .driver = { .owner = THIS_MODULE },
332} };
333
334static struct mdio_device_id __maybe_unused bcm7xxx_tbl[] = {
335 { PHY_ID_BCM7366, 0xfffffff0, },
336 { PHY_ID_BCM7439, 0xfffffff0, },
337 { PHY_ID_BCM7445, 0xfffffff0, },
Florian Fainellib560a582014-02-13 16:08:45 -0800338 { PHY_BCM_OUI_4, 0xffff0000 },
339 { PHY_BCM_OUI_5, 0xffffff00 },
340 { }
341};
342
343static int __init bcm7xxx_phy_init(void)
344{
345 return phy_drivers_register(bcm7xxx_driver,
346 ARRAY_SIZE(bcm7xxx_driver));
347}
348
349static void __exit bcm7xxx_phy_exit(void)
350{
351 phy_drivers_unregister(bcm7xxx_driver,
352 ARRAY_SIZE(bcm7xxx_driver));
353}
354
355module_init(bcm7xxx_phy_init);
356module_exit(bcm7xxx_phy_exit);
357
358MODULE_DEVICE_TABLE(mdio, bcm7xxx_tbl);
359
360MODULE_DESCRIPTION("Broadcom BCM7xxx internal PHY driver");
361MODULE_LICENSE("GPL");
362MODULE_AUTHOR("Broadcom Corporation");