bcm7xxx.c 12.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * Broadcom BCM7xxx internal transceivers support.
 *
 * Copyright (C) 2014, Broadcom Corporation
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
 */

#include <linux/module.h>
#include <linux/phy.h>
#include <linux/delay.h>
15
#include "bcm-phy-lib.h"
16 17
#include <linux/bitops.h>
#include <linux/brcmphy.h>
18
#include <linux/mdio.h>
19 20 21 22 23 24 25 26

/* Broadcom BCM7xxx internal PHY registers */

/* 40nm only register definitions */
#define MII_BCM7XXX_100TX_AUX_CTL	0x10
#define MII_BCM7XXX_100TX_FALSE_CAR	0x13
#define MII_BCM7XXX_100TX_DISC		0x14
#define MII_BCM7XXX_AUX_MODE		0x1d
27
#define  MII_BCM7XXX_64CLK_MDIO		BIT(12)
28 29 30
#define MII_BCM7XXX_TEST		0x1f
#define  MII_BCM7XXX_SHD_MODE_2		BIT(2)

31 32 33 34 35 36 37 38 39 40
/* 28nm only register definitions */
#define MISC_ADDR(base, channel)	base, channel

#define DSP_TAP10			MISC_ADDR(0x0a, 0)
#define PLL_PLLCTRL_1			MISC_ADDR(0x32, 1)
#define PLL_PLLCTRL_2			MISC_ADDR(0x32, 2)
#define PLL_PLLCTRL_4			MISC_ADDR(0x33, 0)

#define AFE_RXCONFIG_0			MISC_ADDR(0x38, 0)
#define AFE_RXCONFIG_1			MISC_ADDR(0x38, 1)
41
#define AFE_RXCONFIG_2			MISC_ADDR(0x38, 2)
42 43
#define AFE_RX_LP_COUNTER		MISC_ADDR(0x38, 3)
#define AFE_TX_CONFIG			MISC_ADDR(0x39, 0)
44 45
#define AFE_VDCA_ICTRL_0		MISC_ADDR(0x39, 1)
#define AFE_VDAC_OTHERS_0		MISC_ADDR(0x39, 3)
46 47
#define AFE_HPF_TRIM_OTHERS		MISC_ADDR(0x3a, 0)

48 49 50 51
struct bcm7xxx_phy_priv {
	u64	*stats;
};

52 53 54
static void r_rc_cal_reset(struct phy_device *phydev)
{
	/* Reset R_CAL/RC_CAL Engine */
55
	bcm_phy_write_exp(phydev, 0x00b0, 0x0010);
56 57

	/* Disable Reset R_AL/RC_CAL Engine */
58
	bcm_phy_write_exp(phydev, 0x00b0, 0x0000);
59 60
}

61
static int bcm7xxx_28nm_b0_afe_config_init(struct phy_device *phydev)
62 63 64 65
{
	/* Increase VCO range to prevent unlocking problem of PLL at low
	 * temp
	 */
66
	bcm_phy_write_misc(phydev, PLL_PLLCTRL_1, 0x0048);
67 68

	/* Change Ki to 011 */
69
	bcm_phy_write_misc(phydev, PLL_PLLCTRL_2, 0x021b);
70 71 72 73

	/* Disable loading of TVCO buffer to bandgap, set bandgap trim
	 * to 111
	 */
74
	bcm_phy_write_misc(phydev, PLL_PLLCTRL_4, 0x0e20);
75 76

	/* Adjust bias current trim by -3 */
77
	bcm_phy_write_misc(phydev, DSP_TAP10, 0x690b);
78 79

	/* Switch to CORE_BASE1E */
80
	phy_write(phydev, MII_BRCM_CORE_BASE1E, 0xd);
81

82
	r_rc_cal_reset(phydev);
83

84
	/* write AFE_RXCONFIG_0 */
85
	bcm_phy_write_misc(phydev, AFE_RXCONFIG_0, 0xeb19);
86 87

	/* write AFE_RXCONFIG_1 */
88
	bcm_phy_write_misc(phydev, AFE_RXCONFIG_1, 0x9a3f);
89 90

	/* write AFE_RX_LP_COUNTER */
91
	bcm_phy_write_misc(phydev, AFE_RX_LP_COUNTER, 0x7fc0);
92 93

	/* write AFE_HPF_TRIM_OTHERS */
94
	bcm_phy_write_misc(phydev, AFE_HPF_TRIM_OTHERS, 0x000b);
95 96

	/* write AFTE_TX_CONFIG */
97
	bcm_phy_write_misc(phydev, AFE_TX_CONFIG, 0x0800);
98

99 100 101
	return 0;
}

102 103 104
static int bcm7xxx_28nm_d0_afe_config_init(struct phy_device *phydev)
{
	/* AFE_RXCONFIG_0 */
105
	bcm_phy_write_misc(phydev, AFE_RXCONFIG_0, 0xeb15);
106 107

	/* AFE_RXCONFIG_1 */
108
	bcm_phy_write_misc(phydev, AFE_RXCONFIG_1, 0x9b2f);
109 110

	/* AFE_RXCONFIG_2, set rCal offset for HT=0 code and LT=-2 code */
111
	bcm_phy_write_misc(phydev, AFE_RXCONFIG_2, 0x2003);
112 113

	/* AFE_RX_LP_COUNTER, set RX bandwidth to maximum */
114
	bcm_phy_write_misc(phydev, AFE_RX_LP_COUNTER, 0x7fc0);
115

116
	/* AFE_TX_CONFIG, set 100BT Cfeed=011 to improve rise/fall time */
117
	bcm_phy_write_misc(phydev, AFE_TX_CONFIG, 0x431);
118 119

	/* AFE_VDCA_ICTRL_0, set Iq=1101 instead of 0111 for AB symmetry */
120
	bcm_phy_write_misc(phydev, AFE_VDCA_ICTRL_0, 0xa7da);
121 122

	/* AFE_VDAC_OTHERS_0, set 1000BT Cidac=010 for all ports */
123
	bcm_phy_write_misc(phydev, AFE_VDAC_OTHERS_0, 0xa020);
124 125 126 127

	/* AFE_HPF_TRIM_OTHERS, set 100Tx/10BT to -4.5% swing and set rCal
	 * offset for HT=0 code
	 */
128
	bcm_phy_write_misc(phydev, AFE_HPF_TRIM_OTHERS, 0x00e3);
129 130

	/* CORE_BASE1E, force trim to overwrite and set I_ext trim to 0000 */
131
	phy_write(phydev, MII_BRCM_CORE_BASE1E, 0x0010);
132 133

	/* DSP_TAP10, adjust bias current trim (+0% swing, +0 tick) */
134
	bcm_phy_write_misc(phydev, DSP_TAP10, 0x011b);
135 136 137 138 139 140 141

	/* Reset R_CAL/RC_CAL engine */
	r_rc_cal_reset(phydev);

	return 0;
}

142 143 144
static int bcm7xxx_28nm_e0_plus_afe_config_init(struct phy_device *phydev)
{
	/* AFE_RXCONFIG_1, provide more margin for INL/DNL measurement */
145
	bcm_phy_write_misc(phydev, AFE_RXCONFIG_1, 0x9b2f);
146

147
	/* AFE_TX_CONFIG, set 100BT Cfeed=011 to improve rise/fall time */
148
	bcm_phy_write_misc(phydev, AFE_TX_CONFIG, 0x431);
149

150
	/* AFE_VDCA_ICTRL_0, set Iq=1101 instead of 0111 for AB symmetry */
151
	bcm_phy_write_misc(phydev, AFE_VDCA_ICTRL_0, 0xa7da);
152 153 154 155

	/* AFE_HPF_TRIM_OTHERS, set 100Tx/10BT to -4.5% swing and set rCal
	 * offset for HT=0 code
	 */
156
	bcm_phy_write_misc(phydev, AFE_HPF_TRIM_OTHERS, 0x00e3);
157 158

	/* CORE_BASE1E, force trim to overwrite and set I_ext trim to 0000 */
159
	phy_write(phydev, MII_BRCM_CORE_BASE1E, 0x0010);
160 161

	/* DSP_TAP10, adjust bias current trim (+0% swing, +0 tick) */
162
	bcm_phy_write_misc(phydev, DSP_TAP10, 0x011b);
163 164 165 166 167 168 169

	/* Reset R_CAL/RC_CAL engine */
	r_rc_cal_reset(phydev);

	return 0;
}

170 171
static int bcm7xxx_28nm_config_init(struct phy_device *phydev)
{
172 173
	u8 rev = PHY_BRCM_7XXX_REV(phydev->dev_flags);
	u8 patch = PHY_BRCM_7XXX_PATCH(phydev->dev_flags);
174
	u8 count;
175 176
	int ret = 0;

177
	pr_info_once("%s: %s PHY revision: 0x%02x, patch: %d\n",
A
Andrew Lunn 已提交
178
		     phydev_name(phydev), phydev->drv->name, rev, patch);
179

180 181 182 183 184 185 186
	/* Dummy read to a register to workaround an issue upon reset where the
	 * internal inverter may not allow the first MDIO transaction to pass
	 * the MDIO management controller and make us return 0xffff for such
	 * reads.
	 */
	phy_read(phydev, MII_BMSR);

187 188
	switch (rev) {
	case 0xb0:
189
		ret = bcm7xxx_28nm_b0_afe_config_init(phydev);
190
		break;
191 192 193
	case 0xd0:
		ret = bcm7xxx_28nm_d0_afe_config_init(phydev);
		break;
194 195
	case 0xe0:
	case 0xf0:
196 197
	/* Rev G0 introduces a roll over */
	case 0x10:
198 199
		ret = bcm7xxx_28nm_e0_plus_afe_config_init(phydev);
		break;
200 201 202
	default:
		break;
	}
203

204 205 206
	if (ret)
		return ret;

207 208 209 210 211 212
	ret = bcm_phy_downshift_get(phydev, &count);
	if (ret)
		return ret;

	/* Only enable EEE if Wirespeed/downshift is disabled */
	ret = bcm_phy_set_eee(phydev, count == DOWNSHIFT_DEV_DISABLE);
213 214 215
	if (ret)
		return ret;

216
	return bcm_phy_enable_apd(phydev, true);
217 218
}

219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
static int bcm7xxx_28nm_resume(struct phy_device *phydev)
{
	int ret;

	/* Re-apply workarounds coming out suspend/resume */
	ret = bcm7xxx_28nm_config_init(phydev);
	if (ret)
		return ret;

	/* 28nm Gigabit PHYs come out of reset without any half-duplex
	 * or "hub" compliant advertised mode, fix that. This does not
	 * cause any problems with the PHY library since genphy_config_aneg()
	 * gracefully handles auto-negotiated and forced modes.
	 */
	return genphy_config_aneg(phydev);
}

236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
static int phy_set_clr_bits(struct phy_device *dev, int location,
					int set_mask, int clr_mask)
{
	int v, ret;

	v = phy_read(dev, location);
	if (v < 0)
		return v;

	v &= ~clr_mask;
	v |= set_mask;

	ret = phy_write(dev, location, v);
	if (ret < 0)
		return ret;

	return v;
}

static int bcm7xxx_config_init(struct phy_device *phydev)
{
	int ret;

	/* Enable 64 clock MDIO */
260
	phy_write(phydev, MII_BCM7XXX_AUX_MODE, MII_BCM7XXX_64CLK_MDIO);
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
	phy_read(phydev, MII_BCM7XXX_AUX_MODE);

	/* set shadow mode 2 */
	ret = phy_set_clr_bits(phydev, MII_BCM7XXX_TEST,
			MII_BCM7XXX_SHD_MODE_2, MII_BCM7XXX_SHD_MODE_2);
	if (ret < 0)
		return ret;

	/* set iddq_clkbias */
	phy_write(phydev, MII_BCM7XXX_100TX_DISC, 0x0F00);
	udelay(10);

	/* reset iddq_clkbias */
	phy_write(phydev, MII_BCM7XXX_100TX_DISC, 0x0C00);

	phy_write(phydev, MII_BCM7XXX_100TX_FALSE_CAR, 0x7555);

	/* reset shadow mode 2 */
279
	ret = phy_set_clr_bits(phydev, MII_BCM7XXX_TEST, 0, MII_BCM7XXX_SHD_MODE_2);
280 281 282 283 284 285 286
	if (ret < 0)
		return ret;

	return 0;
}

/* Workaround for putting the PHY in IDDQ mode, required
287
 * for all BCM7XXX 40nm and 65nm PHYs
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
 */
static int bcm7xxx_suspend(struct phy_device *phydev)
{
	int ret;
	const struct bcm7xxx_regs {
		int reg;
		u16 value;
	} bcm7xxx_suspend_cfg[] = {
		{ MII_BCM7XXX_TEST, 0x008b },
		{ MII_BCM7XXX_100TX_AUX_CTL, 0x01c0 },
		{ MII_BCM7XXX_100TX_DISC, 0x7000 },
		{ MII_BCM7XXX_TEST, 0x000f },
		{ MII_BCM7XXX_100TX_AUX_CTL, 0x20d0 },
		{ MII_BCM7XXX_TEST, 0x000b },
	};
	unsigned int i;

	for (i = 0; i < ARRAY_SIZE(bcm7xxx_suspend_cfg); i++) {
		ret = phy_write(phydev,
				bcm7xxx_suspend_cfg[i].reg,
				bcm7xxx_suspend_cfg[i].value);
		if (ret)
			return ret;
	}

	return 0;
}

316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
static int bcm7xxx_28nm_get_tunable(struct phy_device *phydev,
				    struct ethtool_tunable *tuna,
				    void *data)
{
	switch (tuna->id) {
	case ETHTOOL_PHY_DOWNSHIFT:
		return bcm_phy_downshift_get(phydev, (u8 *)data);
	default:
		return -EOPNOTSUPP;
	}
}

static int bcm7xxx_28nm_set_tunable(struct phy_device *phydev,
				    struct ethtool_tunable *tuna,
				    const void *data)
{
	u8 count = *(u8 *)data;
	int ret;

	switch (tuna->id) {
	case ETHTOOL_PHY_DOWNSHIFT:
		ret = bcm_phy_downshift_set(phydev, count);
		break;
	default:
		return -EOPNOTSUPP;
	}

	if (ret)
		return ret;

	/* Disable EEE advertisment since this prevents the PHY
	 * from successfully linking up, trigger auto-negotiation restart
	 * to let the MAC decide what to do.
	 */
	ret = bcm_phy_set_eee(phydev, count == DOWNSHIFT_DEV_DISABLE);
	if (ret)
		return ret;

	return genphy_restart_aneg(phydev);
}

357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
static void bcm7xxx_28nm_get_phy_stats(struct phy_device *phydev,
				       struct ethtool_stats *stats, u64 *data)
{
	struct bcm7xxx_phy_priv *priv = phydev->priv;

	bcm_phy_get_stats(phydev, priv->stats, stats, data);
}

static int bcm7xxx_28nm_probe(struct phy_device *phydev)
{
	struct bcm7xxx_phy_priv *priv;

	priv = devm_kzalloc(&phydev->mdio.dev, sizeof(*priv), GFP_KERNEL);
	if (!priv)
		return -ENOMEM;

	phydev->priv = priv;

	priv->stats = devm_kcalloc(&phydev->mdio.dev,
				   bcm_phy_get_sset_count(phydev), sizeof(u64),
				   GFP_KERNEL);
	if (!priv->stats)
		return -ENOMEM;

	return 0;
}

384 385 386 387 388
#define BCM7XXX_28NM_GPHY(_oui, _name)					\
{									\
	.phy_id		= (_oui),					\
	.phy_id_mask	= 0xfffffff0,					\
	.name		= _name,					\
389
	.features	= PHY_GBIT_FEATURES,				\
390
	.flags		= PHY_IS_INTERNAL,				\
391
	.config_init	= bcm7xxx_28nm_config_init,			\
392 393 394
	.config_aneg	= genphy_config_aneg,				\
	.read_status	= genphy_read_status,				\
	.resume		= bcm7xxx_28nm_resume,				\
395 396
	.get_tunable	= bcm7xxx_28nm_get_tunable,			\
	.set_tunable	= bcm7xxx_28nm_set_tunable,			\
397 398 399 400
	.get_sset_count	= bcm_phy_get_sset_count,			\
	.get_strings	= bcm_phy_get_strings,				\
	.get_stats	= bcm7xxx_28nm_get_phy_stats,			\
	.probe		= bcm7xxx_28nm_probe,				\
401 402
}

403 404 405 406 407
#define BCM7XXX_40NM_EPHY(_oui, _name)					\
{									\
	.phy_id         = (_oui),					\
	.phy_id_mask    = 0xfffffff0,					\
	.name           = _name,					\
408
	.features       = PHY_BASIC_FEATURES,				\
409 410 411 412 413 414 415 416
	.flags          = PHY_IS_INTERNAL,				\
	.config_init    = bcm7xxx_config_init,				\
	.config_aneg    = genphy_config_aneg,				\
	.read_status    = genphy_read_status,				\
	.suspend        = bcm7xxx_suspend,				\
	.resume         = bcm7xxx_config_init,				\
}

417
static struct phy_driver bcm7xxx_driver[] = {
418 419
	BCM7XXX_28NM_GPHY(PHY_ID_BCM7250, "Broadcom BCM7250"),
	BCM7XXX_28NM_GPHY(PHY_ID_BCM7364, "Broadcom BCM7364"),
420 421
	BCM7XXX_28NM_GPHY(PHY_ID_BCM7366, "Broadcom BCM7366"),
	BCM7XXX_28NM_GPHY(PHY_ID_BCM7439, "Broadcom BCM7439"),
422
	BCM7XXX_28NM_GPHY(PHY_ID_BCM7439_2, "Broadcom BCM7439 (2)"),
423
	BCM7XXX_28NM_GPHY(PHY_ID_BCM7445, "Broadcom BCM7445"),
424 425
	BCM7XXX_40NM_EPHY(PHY_ID_BCM7346, "Broadcom BCM7346"),
	BCM7XXX_40NM_EPHY(PHY_ID_BCM7362, "Broadcom BCM7362"),
426 427 428
	BCM7XXX_40NM_EPHY(PHY_ID_BCM7425, "Broadcom BCM7425"),
	BCM7XXX_40NM_EPHY(PHY_ID_BCM7429, "Broadcom BCM7429"),
	BCM7XXX_40NM_EPHY(PHY_ID_BCM7435, "Broadcom BCM7435"),
429
};
430 431

static struct mdio_device_id __maybe_unused bcm7xxx_tbl[] = {
432 433
	{ PHY_ID_BCM7250, 0xfffffff0, },
	{ PHY_ID_BCM7364, 0xfffffff0, },
434
	{ PHY_ID_BCM7366, 0xfffffff0, },
435 436
	{ PHY_ID_BCM7346, 0xfffffff0, },
	{ PHY_ID_BCM7362, 0xfffffff0, },
437 438
	{ PHY_ID_BCM7425, 0xfffffff0, },
	{ PHY_ID_BCM7429, 0xfffffff0, },
439
	{ PHY_ID_BCM7439, 0xfffffff0, },
440
	{ PHY_ID_BCM7435, 0xfffffff0, },
441 442 443 444
	{ PHY_ID_BCM7445, 0xfffffff0, },
	{ }
};

445
module_phy_driver(bcm7xxx_driver);
446 447 448 449 450 451

MODULE_DEVICE_TABLE(mdio, bcm7xxx_tbl);

MODULE_DESCRIPTION("Broadcom BCM7xxx internal PHY driver");
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Broadcom Corporation");