marvell.c 60.9 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0+
2 3 4 5 6 7 8 9 10
/*
 * drivers/net/phy/marvell.c
 *
 * Driver for Marvell PHYs
 *
 * Author: Andy Fleming
 *
 * Copyright (c) 2004 Freescale Semiconductor, Inc.
 *
11
 * Copyright (c) 2013 Michael Stapelberg <michael@stapelberg.de>
12 13 14
 */
#include <linux/kernel.h>
#include <linux/string.h>
15
#include <linux/ctype.h>
16 17
#include <linux/errno.h>
#include <linux/unistd.h>
18
#include <linux/hwmon.h>
19 20 21 22 23 24 25 26 27 28 29 30
#include <linux/interrupt.h>
#include <linux/init.h>
#include <linux/delay.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/skbuff.h>
#include <linux/spinlock.h>
#include <linux/mm.h>
#include <linux/module.h>
#include <linux/mii.h>
#include <linux/ethtool.h>
#include <linux/phy.h>
31
#include <linux/marvell_phy.h>
32
#include <linux/bitfield.h>
33
#include <linux/of.h>
34

35
#include <linux/io.h>
36
#include <asm/irq.h>
37
#include <linux/uaccess.h>
38

39
#define MII_MARVELL_PHY_PAGE		22
40 41 42 43 44 45
#define MII_MARVELL_COPPER_PAGE		0x00
#define MII_MARVELL_FIBER_PAGE		0x01
#define MII_MARVELL_MSCR_PAGE		0x02
#define MII_MARVELL_LED_PAGE		0x03
#define MII_MARVELL_MISC_TEST_PAGE	0x06
#define MII_MARVELL_WOL_PAGE		0x11
46

47 48 49 50 51 52 53
#define MII_M1011_IEVENT		0x13
#define MII_M1011_IEVENT_CLEAR		0x0000

#define MII_M1011_IMASK			0x12
#define MII_M1011_IMASK_INIT		0x6400
#define MII_M1011_IMASK_CLEAR		0x0000

54 55
#define MII_M1011_PHY_SCR			0x10
#define MII_M1011_PHY_SCR_DOWNSHIFT_EN		BIT(11)
56
#define MII_M1011_PHY_SCR_DOWNSHIFT_MASK	GENMASK(14, 12)
57
#define MII_M1011_PHY_SCR_DOWNSHIFT_MAX		8
58 59 60
#define MII_M1011_PHY_SCR_MDI			(0x0 << 5)
#define MII_M1011_PHY_SCR_MDI_X			(0x1 << 5)
#define MII_M1011_PHY_SCR_AUTO_CROSS		(0x3 << 5)
61

62 63 64
#define MII_M1011_PHY_SSR			0x11
#define MII_M1011_PHY_SSR_DOWNSHIFT		BIT(5)

65 66 67
#define MII_M1111_PHY_LED_CONTROL	0x18
#define MII_M1111_PHY_LED_DIRECT	0x4100
#define MII_M1111_PHY_LED_COMBINE	0x411c
68
#define MII_M1111_PHY_EXT_CR		0x14
69 70 71
#define MII_M1111_PHY_EXT_CR_DOWNSHIFT_MASK	GENMASK(11, 9)
#define MII_M1111_PHY_EXT_CR_DOWNSHIFT_MAX	8
#define MII_M1111_PHY_EXT_CR_DOWNSHIFT_EN	BIT(8)
72 73
#define MII_M1111_RGMII_RX_DELAY	BIT(7)
#define MII_M1111_RGMII_TX_DELAY	BIT(1)
74
#define MII_M1111_PHY_EXT_SR		0x1b
75 76 77

#define MII_M1111_HWCFG_MODE_MASK		0xf
#define MII_M1111_HWCFG_MODE_FIBER_RGMII	0x3
78
#define MII_M1111_HWCFG_MODE_SGMII_NO_CLK	0x4
79
#define MII_M1111_HWCFG_MODE_RTBI		0x7
L
Liu Yu-B13201 已提交
80
#define MII_M1111_HWCFG_MODE_COPPER_RTBI	0x9
81 82 83
#define MII_M1111_HWCFG_MODE_COPPER_RGMII	0xb
#define MII_M1111_HWCFG_FIBER_COPPER_RES	BIT(13)
#define MII_M1111_HWCFG_FIBER_COPPER_AUTO	BIT(15)
84

85 86 87
#define MII_88E1121_PHY_MSCR_REG	21
#define MII_88E1121_PHY_MSCR_RX_DELAY	BIT(5)
#define MII_88E1121_PHY_MSCR_TX_DELAY	BIT(4)
88
#define MII_88E1121_PHY_MSCR_DELAY_MASK	(BIT(5) | BIT(4))
89

90 91 92 93 94 95 96 97 98 99 100
#define MII_88E1121_MISC_TEST				0x1a
#define MII_88E1510_MISC_TEST_TEMP_THRESHOLD_MASK	0x1f00
#define MII_88E1510_MISC_TEST_TEMP_THRESHOLD_SHIFT	8
#define MII_88E1510_MISC_TEST_TEMP_IRQ_EN		BIT(7)
#define MII_88E1510_MISC_TEST_TEMP_IRQ			BIT(6)
#define MII_88E1121_MISC_TEST_TEMP_SENSOR_EN		BIT(5)
#define MII_88E1121_MISC_TEST_TEMP_MASK			0x1f

#define MII_88E1510_TEMP_SENSOR		0x1b
#define MII_88E1510_TEMP_SENSOR_MASK	0xff

101 102 103 104 105 106 107 108
#define MII_88E1540_COPPER_CTRL3	0x1a
#define MII_88E1540_COPPER_CTRL3_LINK_DOWN_DELAY_MASK	GENMASK(11, 10)
#define MII_88E1540_COPPER_CTRL3_LINK_DOWN_DELAY_00MS	0
#define MII_88E1540_COPPER_CTRL3_LINK_DOWN_DELAY_10MS	1
#define MII_88E1540_COPPER_CTRL3_LINK_DOWN_DELAY_20MS	2
#define MII_88E1540_COPPER_CTRL3_LINK_DOWN_DELAY_40MS	3
#define MII_88E1540_COPPER_CTRL3_FAST_LINK_DOWN		BIT(9)

109 110 111 112 113 114 115 116 117 118 119
#define MII_88E6390_MISC_TEST		0x1b
#define MII_88E6390_MISC_TEST_SAMPLE_1S		0
#define MII_88E6390_MISC_TEST_SAMPLE_10MS	BIT(14)
#define MII_88E6390_MISC_TEST_SAMPLE_DISABLE	BIT(15)
#define MII_88E6390_MISC_TEST_SAMPLE_ENABLE	0
#define MII_88E6390_MISC_TEST_SAMPLE_MASK	(0x3 << 14)

#define MII_88E6390_TEMP_SENSOR		0x1c
#define MII_88E6390_TEMP_SENSOR_MASK	0xff
#define MII_88E6390_TEMP_SENSOR_SAMPLES 10

120 121
#define MII_88E1318S_PHY_MSCR1_REG	16
#define MII_88E1318S_PHY_MSCR1_PAD_ODD	BIT(6)
122

123
/* Copper Specific Interrupt Enable Register */
A
Andrew Lunn 已提交
124
#define MII_88E1318S_PHY_CSIER				0x12
125
/* WOL Event Interrupt Enable */
A
Andrew Lunn 已提交
126
#define MII_88E1318S_PHY_CSIER_WOL_EIE			BIT(7)
127 128

/* LED Timer Control Register */
A
Andrew Lunn 已提交
129 130 131 132
#define MII_88E1318S_PHY_LED_TCR			0x12
#define MII_88E1318S_PHY_LED_TCR_FORCE_INT		BIT(15)
#define MII_88E1318S_PHY_LED_TCR_INTn_ENABLE		BIT(7)
#define MII_88E1318S_PHY_LED_TCR_INT_ACTIVE_LOW		BIT(11)
133 134

/* Magic Packet MAC address registers */
A
Andrew Lunn 已提交
135 136 137
#define MII_88E1318S_PHY_MAGIC_PACKET_WORD2		0x17
#define MII_88E1318S_PHY_MAGIC_PACKET_WORD1		0x18
#define MII_88E1318S_PHY_MAGIC_PACKET_WORD0		0x19
138

A
Andrew Lunn 已提交
139 140 141
#define MII_88E1318S_PHY_WOL_CTRL				0x10
#define MII_88E1318S_PHY_WOL_CTRL_CLEAR_WOL_STATUS		BIT(12)
#define MII_88E1318S_PHY_WOL_CTRL_MAGIC_PACKET_MATCH_ENABLE	BIT(14)
142

143
#define MII_PHY_LED_CTRL	        16
144
#define MII_88E1121_PHY_LED_DEF		0x0030
145
#define MII_88E1510_PHY_LED_DEF		0x1177
146
#define MII_88E1510_PHY_LED0_LINK_LED1_ACTIVE	0x1040
147

148 149 150 151 152 153 154 155
#define MII_M1011_PHY_STATUS		0x11
#define MII_M1011_PHY_STATUS_1000	0x8000
#define MII_M1011_PHY_STATUS_100	0x4000
#define MII_M1011_PHY_STATUS_SPD_MASK	0xc000
#define MII_M1011_PHY_STATUS_FULLDUPLEX	0x2000
#define MII_M1011_PHY_STATUS_RESOLVED	0x0800
#define MII_M1011_PHY_STATUS_LINK	0x0400

156 157 158
#define MII_88E3016_PHY_SPEC_CTRL	0x10
#define MII_88E3016_DISABLE_SCRAMBLER	0x0200
#define MII_88E3016_AUTO_MDIX_CROSSOVER	0x0030
159

160 161 162 163 164
#define MII_88E1510_GEN_CTRL_REG_1		0x14
#define MII_88E1510_GEN_CTRL_REG_1_MODE_MASK	0x7
#define MII_88E1510_GEN_CTRL_REG_1_MODE_SGMII	0x1	/* SGMII to copper */
#define MII_88E1510_GEN_CTRL_REG_1_RESET	0x8000	/* Soft reset */

A
Andrew Lunn 已提交
165
#define LPA_PAUSE_FIBER		0x180
166 167
#define LPA_PAUSE_ASYM_FIBER	0x100

168
#define NB_FIBER_STATS	1
169

170 171 172 173
MODULE_DESCRIPTION("Marvell PHY driver");
MODULE_AUTHOR("Andy Fleming");
MODULE_LICENSE("GPL");

174 175 176 177 178 179 180 181
struct marvell_hw_stat {
	const char *string;
	u8 page;
	u8 reg;
	u8 bits;
};

static struct marvell_hw_stat marvell_hw_stats[] = {
182
	{ "phy_receive_errors_copper", 0, 21, 16},
183
	{ "phy_idle_errors", 0, 10, 8 },
184
	{ "phy_receive_errors_fiber", 1, 21, 16},
185 186 187 188
};

struct marvell_priv {
	u64 stats[ARRAY_SIZE(marvell_hw_stats)];
189 190
	char *hwmon_name;
	struct device *hwmon_dev;
191 192
};

193
static int marvell_read_page(struct phy_device *phydev)
194
{
195
	return __phy_read(phydev, MII_MARVELL_PHY_PAGE);
196 197
}

198
static int marvell_write_page(struct phy_device *phydev, int page)
199
{
200
	return __phy_write(phydev, MII_MARVELL_PHY_PAGE, page);
201 202
}

203
static int marvell_set_page(struct phy_device *phydev, int page)
204
{
205
	return phy_write(phydev, MII_MARVELL_PHY_PAGE, page);
206 207
}

208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
static int marvell_ack_interrupt(struct phy_device *phydev)
{
	int err;

	/* Clear the interrupts by reading the reg */
	err = phy_read(phydev, MII_M1011_IEVENT);

	if (err < 0)
		return err;

	return 0;
}

static int marvell_config_intr(struct phy_device *phydev)
{
	int err;

225
	if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
226 227
		err = phy_write(phydev, MII_M1011_IMASK,
				MII_M1011_IMASK_INIT);
228
	else
229 230
		err = phy_write(phydev, MII_M1011_IMASK,
				MII_M1011_IMASK_CLEAR);
231 232 233 234

	return err;
}

235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
static int marvell_set_polarity(struct phy_device *phydev, int polarity)
{
	int reg;
	int err;
	int val;

	/* get the current settings */
	reg = phy_read(phydev, MII_M1011_PHY_SCR);
	if (reg < 0)
		return reg;

	val = reg;
	val &= ~MII_M1011_PHY_SCR_AUTO_CROSS;
	switch (polarity) {
	case ETH_TP_MDI:
		val |= MII_M1011_PHY_SCR_MDI;
		break;
	case ETH_TP_MDI_X:
		val |= MII_M1011_PHY_SCR_MDI_X;
		break;
	case ETH_TP_MDI_AUTO:
	case ETH_TP_MDI_INVALID:
	default:
		val |= MII_M1011_PHY_SCR_AUTO_CROSS;
		break;
	}

	if (val != reg) {
		/* Set the new polarity value in the register */
		err = phy_write(phydev, MII_M1011_PHY_SCR, val);
		if (err)
			return err;
	}

269
	return val != reg;
270 271
}

272 273
static int marvell_config_aneg(struct phy_device *phydev)
{
274
	int changed = 0;
275 276
	int err;

277
	err = marvell_set_polarity(phydev, phydev->mdix_ctrl);
278 279 280
	if (err < 0)
		return err;

281 282
	changed = err;

283 284 285 286
	err = phy_write(phydev, MII_M1111_PHY_LED_CONTROL,
			MII_M1111_PHY_LED_DIRECT);
	if (err < 0)
		return err;
287 288

	err = genphy_config_aneg(phydev);
289 290
	if (err < 0)
		return err;
291

292
	if (phydev->autoneg != AUTONEG_ENABLE || changed) {
293
		/* A write to speed/duplex bits (that is performed by
294 295 296
		 * genphy_config_aneg() call above) must be followed by
		 * a software reset. Otherwise, the write has no effect.
		 */
297
		err = genphy_soft_reset(phydev);
298 299 300 301 302
		if (err < 0)
			return err;
	}

	return 0;
303 304
}

305 306 307 308 309 310 311 312
static int m88e1101_config_aneg(struct phy_device *phydev)
{
	int err;

	/* This Marvell PHY has an errata which requires
	 * that certain registers get written in order
	 * to restart autonegotiation
	 */
313
	err = genphy_soft_reset(phydev);
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
	if (err < 0)
		return err;

	err = phy_write(phydev, 0x1d, 0x1f);
	if (err < 0)
		return err;

	err = phy_write(phydev, 0x1e, 0x200c);
	if (err < 0)
		return err;

	err = phy_write(phydev, 0x1d, 0x5);
	if (err < 0)
		return err;

	err = phy_write(phydev, 0x1e, 0);
	if (err < 0)
		return err;

	err = phy_write(phydev, 0x1e, 0x100);
	if (err < 0)
		return err;

	return marvell_config_aneg(phydev);
}

340
#ifdef CONFIG_OF_MDIO
341
/* Set and/or override some configuration registers based on the
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
 * marvell,reg-init property stored in the of_node for the phydev.
 *
 * marvell,reg-init = <reg-page reg mask value>,...;
 *
 * There may be one or more sets of <reg-page reg mask value>:
 *
 * reg-page: which register bank to use.
 * reg: the register.
 * mask: if non-zero, ANDed with existing register value.
 * value: ORed with the masked value and written to the regiser.
 *
 */
static int marvell_of_reg_init(struct phy_device *phydev)
{
	const __be32 *paddr;
357
	int len, i, saved_page, current_page, ret = 0;
358

A
Andrew Lunn 已提交
359
	if (!phydev->mdio.dev.of_node)
360 361
		return 0;

A
Andrew Lunn 已提交
362 363
	paddr = of_get_property(phydev->mdio.dev.of_node,
				"marvell,reg-init", &len);
364 365 366
	if (!paddr || len < (4 * sizeof(*paddr)))
		return 0;

367
	saved_page = phy_save_page(phydev);
368
	if (saved_page < 0)
369
		goto err;
370 371 372 373
	current_page = saved_page;

	len /= sizeof(*paddr);
	for (i = 0; i < len - 3; i += 4) {
374
		u16 page = be32_to_cpup(paddr + i);
375 376 377 378 379
		u16 reg = be32_to_cpup(paddr + i + 1);
		u16 mask = be32_to_cpup(paddr + i + 2);
		u16 val_bits = be32_to_cpup(paddr + i + 3);
		int val;

380 381
		if (page != current_page) {
			current_page = page;
382
			ret = marvell_write_page(phydev, page);
383 384 385 386 387 388
			if (ret < 0)
				goto err;
		}

		val = 0;
		if (mask) {
389
			val = __phy_read(phydev, reg);
390 391 392 393 394 395 396 397
			if (val < 0) {
				ret = val;
				goto err;
			}
			val &= mask;
		}
		val |= val_bits;

398
		ret = __phy_write(phydev, reg, val);
399 400 401 402
		if (ret < 0)
			goto err;
	}
err:
403
	return phy_restore_page(phydev, saved_page, ret);
404 405 406 407 408 409 410 411
}
#else
static int marvell_of_reg_init(struct phy_device *phydev)
{
	return 0;
}
#endif /* CONFIG_OF_MDIO */

412
static int m88e1121_config_aneg_rgmii_delays(struct phy_device *phydev)
413
{
414
	int mscr;
415 416

	if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID)
417 418
		mscr = MII_88E1121_PHY_MSCR_RX_DELAY |
		       MII_88E1121_PHY_MSCR_TX_DELAY;
419
	else if (phydev->interface == PHY_INTERFACE_MODE_RGMII_RXID)
420
		mscr = MII_88E1121_PHY_MSCR_RX_DELAY;
421
	else if (phydev->interface == PHY_INTERFACE_MODE_RGMII_TXID)
422 423 424
		mscr = MII_88E1121_PHY_MSCR_TX_DELAY;
	else
		mscr = 0;
425

426 427 428
	return phy_modify_paged(phydev, MII_MARVELL_MSCR_PAGE,
				MII_88E1121_PHY_MSCR_REG,
				MII_88E1121_PHY_MSCR_DELAY_MASK, mscr);
429 430 431 432
}

static int m88e1121_config_aneg(struct phy_device *phydev)
{
433
	int changed = 0;
434 435 436 437
	int err = 0;

	if (phy_interface_is_rgmii(phydev)) {
		err = m88e1121_config_aneg_rgmii_delays(phydev);
438
		if (err < 0)
439 440 441
			return err;
	}

442
	err = marvell_set_polarity(phydev, phydev->mdix_ctrl);
443 444 445
	if (err < 0)
		return err;

446 447 448
	changed = err;

	err = genphy_config_aneg(phydev);
449 450 451
	if (err < 0)
		return err;

D
David S. Miller 已提交
452
	if (phydev->autoneg != AUTONEG_ENABLE || changed) {
453 454 455 456 457 458 459 460 461
		/* A software reset is used to ensure a "commit" of the
		 * changes is done.
		 */
		err = genphy_soft_reset(phydev);
		if (err < 0)
			return err;
	}

	return 0;
462 463
}

464
static int m88e1318_config_aneg(struct phy_device *phydev)
465
{
466
	int err;
467

468 469 470
	err = phy_modify_paged(phydev, MII_MARVELL_MSCR_PAGE,
			       MII_88E1318S_PHY_MSCR1_REG,
			       0, MII_88E1318S_PHY_MSCR1_PAD_ODD);
471 472 473 474 475 476
	if (err < 0)
		return err;

	return m88e1121_config_aneg(phydev);
}

477
/**
478 479
 * linkmode_adv_to_fiber_adv_t
 * @advertise: the linkmode advertisement settings
480
 *
481 482 483
 * A small helper function that translates linkmode advertisement
 * settings to phy autonegotiation advertisements for the MII_ADV
 * register for fiber link.
484
 */
485
static inline u32 linkmode_adv_to_fiber_adv_t(unsigned long *advertise)
486 487 488
{
	u32 result = 0;

489
	if (linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT, advertise))
490
		result |= ADVERTISE_1000XHALF;
491
	if (linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT, advertise))
492
		result |= ADVERTISE_1000XFULL;
493

494 495
	if (linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, advertise) &&
	    linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT, advertise))
496
		result |= ADVERTISE_1000XPSE_ASYM;
497
	else if (linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT, advertise))
498
		result |= ADVERTISE_1000XPAUSE;
499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515

	return result;
}

/**
 * marvell_config_aneg_fiber - restart auto-negotiation or write BMCR
 * @phydev: target phy_device struct
 *
 * Description: If auto-negotiation is enabled, we configure the
 *   advertising, and then restart auto-negotiation.  If it is not
 *   enabled, then we write the BMCR. Adapted for fiber link in
 *   some Marvell's devices.
 */
static int marvell_config_aneg_fiber(struct phy_device *phydev)
{
	int changed = 0;
	int err;
516
	u16 adv;
517 518 519 520 521

	if (phydev->autoneg != AUTONEG_ENABLE)
		return genphy_setup_forced(phydev);

	/* Only allow advertising what this PHY supports */
522 523
	linkmode_and(phydev->advertising, phydev->advertising,
		     phydev->supported);
524

525
	adv = linkmode_adv_to_fiber_adv_t(phydev->advertising);
526

527 528 529 530 531 532 533 534
	/* Setup fiber advertisement */
	err = phy_modify_changed(phydev, MII_ADVERTISE,
				 ADVERTISE_1000XHALF | ADVERTISE_1000XFULL |
				 ADVERTISE_1000XPAUSE | ADVERTISE_1000XPSE_ASYM,
				 adv);
	if (err < 0)
		return err;
	if (err > 0)
535 536 537 538
		changed = 1;

	if (changed == 0) {
		/* Advertisement hasn't changed, but maybe aneg was never on to
A
Andrew Lunn 已提交
539
		 * begin with?	Or maybe phy was isolated?
540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558
		 */
		int ctl = phy_read(phydev, MII_BMCR);

		if (ctl < 0)
			return ctl;

		if (!(ctl & BMCR_ANENABLE) || (ctl & BMCR_ISOLATE))
			changed = 1; /* do restart aneg */
	}

	/* Only restart aneg if we are advertising something different
	 * than we were before.
	 */
	if (changed > 0)
		changed = genphy_restart_aneg(phydev);

	return changed;
}

M
Michal Simek 已提交
559 560 561 562
static int m88e1510_config_aneg(struct phy_device *phydev)
{
	int err;

563
	err = marvell_set_page(phydev, MII_MARVELL_COPPER_PAGE);
564 565 566 567
	if (err < 0)
		goto error;

	/* Configure the copper link first */
M
Michal Simek 已提交
568 569
	err = m88e1318_config_aneg(phydev);
	if (err < 0)
570
		goto error;
M
Michal Simek 已提交
571

572 573 574 575
	/* Do not touch the fiber page if we're in copper->sgmii mode */
	if (phydev->interface == PHY_INTERFACE_MODE_SGMII)
		return 0;

576
	/* Then the fiber link */
577
	err = marvell_set_page(phydev, MII_MARVELL_FIBER_PAGE);
578 579 580 581 582 583 584
	if (err < 0)
		goto error;

	err = marvell_config_aneg_fiber(phydev);
	if (err < 0)
		goto error;

585
	return marvell_set_page(phydev, MII_MARVELL_COPPER_PAGE);
586 587

error:
588
	marvell_set_page(phydev, MII_MARVELL_COPPER_PAGE);
589
	return err;
590 591
}

592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608
static void marvell_config_led(struct phy_device *phydev)
{
	u16 def_config;
	int err;

	switch (MARVELL_PHY_FAMILY_ID(phydev->phy_id)) {
	/* Default PHY LED config: LED[0] .. Link, LED[1] .. Activity */
	case MARVELL_PHY_FAMILY_ID(MARVELL_PHY_ID_88E1121R):
	case MARVELL_PHY_FAMILY_ID(MARVELL_PHY_ID_88E1318S):
		def_config = MII_88E1121_PHY_LED_DEF;
		break;
	/* Default PHY LED config:
	 * LED[0] .. 1000Mbps Link
	 * LED[1] .. 100Mbps Link
	 * LED[2] .. Blink, Activity
	 */
	case MARVELL_PHY_FAMILY_ID(MARVELL_PHY_ID_88E1510):
609 610 611 612
		if (phydev->dev_flags & MARVELL_PHY_LED0_LINK_LED1_ACTIVE)
			def_config = MII_88E1510_PHY_LED0_LINK_LED1_ACTIVE;
		else
			def_config = MII_88E1510_PHY_LED_DEF;
613 614 615 616 617 618 619 620
		break;
	default:
		return;
	}

	err = phy_write_paged(phydev, MII_MARVELL_LED_PAGE, MII_PHY_LED_CTRL,
			      def_config);
	if (err < 0)
A
Andrew Lunn 已提交
621
		phydev_warn(phydev, "Fail to config marvell phy LED.\n");
622 623
}

624 625
static int marvell_config_init(struct phy_device *phydev)
{
626 627 628
	/* Set defalut LED */
	marvell_config_led(phydev);

629
	/* Set registers from marvell,reg-init DT property */
M
Michal Simek 已提交
630 631 632
	return marvell_of_reg_init(phydev);
}

633 634
static int m88e3016_config_init(struct phy_device *phydev)
{
635
	int ret;
636 637

	/* Enable Scrambler and Auto-Crossover */
638
	ret = phy_modify(phydev, MII_88E3016_PHY_SPEC_CTRL,
639
			 MII_88E3016_DISABLE_SCRAMBLER,
640 641 642
			 MII_88E3016_AUTO_MDIX_CROSSOVER);
	if (ret < 0)
		return ret;
643

644
	return marvell_config_init(phydev);
645 646
}

647 648 649 650 651
static int m88e1111_config_init_hwcfg_mode(struct phy_device *phydev,
					   u16 mode,
					   int fibre_copper_auto)
{
	if (fibre_copper_auto)
652
		mode |= MII_M1111_HWCFG_FIBER_COPPER_AUTO;
653

654
	return phy_modify(phydev, MII_M1111_PHY_EXT_SR,
655 656 657
			  MII_M1111_HWCFG_MODE_MASK |
			  MII_M1111_HWCFG_FIBER_COPPER_AUTO |
			  MII_M1111_HWCFG_FIBER_COPPER_RES,
658
			  mode);
659 660
}

661
static int m88e1111_config_init_rgmii_delays(struct phy_device *phydev)
662
{
663
	int delay;
664

665
	if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID) {
666
		delay = MII_M1111_RGMII_RX_DELAY | MII_M1111_RGMII_TX_DELAY;
667
	} else if (phydev->interface == PHY_INTERFACE_MODE_RGMII_RXID) {
668
		delay = MII_M1111_RGMII_RX_DELAY;
669
	} else if (phydev->interface == PHY_INTERFACE_MODE_RGMII_TXID) {
670 671 672
		delay = MII_M1111_RGMII_TX_DELAY;
	} else {
		delay = 0;
673
	}
674

675
	return phy_modify(phydev, MII_M1111_PHY_EXT_CR,
676
			  MII_M1111_RGMII_RX_DELAY | MII_M1111_RGMII_TX_DELAY,
677
			  delay);
678 679 680 681 682 683 684 685
}

static int m88e1111_config_init_rgmii(struct phy_device *phydev)
{
	int temp;
	int err;

	err = m88e1111_config_init_rgmii_delays(phydev);
686 687
	if (err < 0)
		return err;
688

689 690 691
	temp = phy_read(phydev, MII_M1111_PHY_EXT_SR);
	if (temp < 0)
		return temp;
692

693
	temp &= ~(MII_M1111_HWCFG_MODE_MASK);
694

695 696 697 698
	if (temp & MII_M1111_HWCFG_FIBER_COPPER_RES)
		temp |= MII_M1111_HWCFG_MODE_FIBER_RGMII;
	else
		temp |= MII_M1111_HWCFG_MODE_COPPER_RGMII;
699

700 701
	return phy_write(phydev, MII_M1111_PHY_EXT_SR, temp);
}
702

703 704 705
static int m88e1111_config_init_sgmii(struct phy_device *phydev)
{
	int err;
706

707 708 709 710
	err = m88e1111_config_init_hwcfg_mode(
		phydev,
		MII_M1111_HWCFG_MODE_SGMII_NO_CLK,
		MII_M1111_HWCFG_FIBER_COPPER_AUTO);
711 712
	if (err < 0)
		return err;
713

714
	/* make sure copper is selected */
715
	return marvell_set_page(phydev, MII_MARVELL_COPPER_PAGE);
716
}
L
Liu Yu-B13201 已提交
717

718 719
static int m88e1111_config_init_rtbi(struct phy_device *phydev)
{
720
	int err;
721

722
	err = m88e1111_config_init_rgmii_delays(phydev);
723
	if (err < 0)
724 725
		return err;

726 727 728 729
	err = m88e1111_config_init_hwcfg_mode(
		phydev,
		MII_M1111_HWCFG_MODE_RTBI,
		MII_M1111_HWCFG_FIBER_COPPER_AUTO);
730 731 732 733
	if (err < 0)
		return err;

	/* soft reset */
734
	err = genphy_soft_reset(phydev);
735 736 737
	if (err < 0)
		return err;

738 739 740 741
	return m88e1111_config_init_hwcfg_mode(
		phydev,
		MII_M1111_HWCFG_MODE_RTBI,
		MII_M1111_HWCFG_FIBER_COPPER_AUTO);
742 743 744 745 746 747 748 749
}

static int m88e1111_config_init(struct phy_device *phydev)
{
	int err;

	if (phy_interface_is_rgmii(phydev)) {
		err = m88e1111_config_init_rgmii(phydev);
750
		if (err < 0)
L
Liu Yu-B13201 已提交
751
			return err;
752
	}
L
Liu Yu-B13201 已提交
753

754 755
	if (phydev->interface == PHY_INTERFACE_MODE_SGMII) {
		err = m88e1111_config_init_sgmii(phydev);
L
Liu Yu-B13201 已提交
756 757
		if (err < 0)
			return err;
758
	}
L
Liu Yu-B13201 已提交
759

760 761
	if (phydev->interface == PHY_INTERFACE_MODE_RTBI) {
		err = m88e1111_config_init_rtbi(phydev);
L
Liu Yu-B13201 已提交
762 763 764 765
		if (err < 0)
			return err;
	}

766 767 768
	err = marvell_of_reg_init(phydev);
	if (err < 0)
		return err;
L
Liu Yu-B13201 已提交
769

770
	return genphy_soft_reset(phydev);
771 772
}

773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830
static int m88e1111_get_downshift(struct phy_device *phydev, u8 *data)
{
	int val, cnt, enable;

	val = phy_read(phydev, MII_M1111_PHY_EXT_CR);
	if (val < 0)
		return val;

	enable = FIELD_GET(MII_M1111_PHY_EXT_CR_DOWNSHIFT_EN, val);
	cnt = FIELD_GET(MII_M1111_PHY_EXT_CR_DOWNSHIFT_MASK, val) + 1;

	*data = enable ? cnt : DOWNSHIFT_DEV_DISABLE;

	return 0;
}

static int m88e1111_set_downshift(struct phy_device *phydev, u8 cnt)
{
	int val;

	if (cnt > MII_M1111_PHY_EXT_CR_DOWNSHIFT_MAX)
		return -E2BIG;

	if (!cnt)
		return phy_clear_bits(phydev, MII_M1111_PHY_EXT_CR,
				      MII_M1111_PHY_EXT_CR_DOWNSHIFT_EN);

	val = MII_M1111_PHY_EXT_CR_DOWNSHIFT_EN;
	val |= FIELD_PREP(MII_M1111_PHY_EXT_CR_DOWNSHIFT_MASK, cnt - 1);

	return phy_modify(phydev, MII_M1111_PHY_EXT_CR,
			  MII_M1111_PHY_EXT_CR_DOWNSHIFT_EN |
			  MII_M1111_PHY_EXT_CR_DOWNSHIFT_MASK,
			  val);
}

static int m88e1111_get_tunable(struct phy_device *phydev,
				struct ethtool_tunable *tuna, void *data)
{
	switch (tuna->id) {
	case ETHTOOL_PHY_DOWNSHIFT:
		return m88e1111_get_downshift(phydev, data);
	default:
		return -EOPNOTSUPP;
	}
}

static int m88e1111_set_tunable(struct phy_device *phydev,
				struct ethtool_tunable *tuna, const void *data)
{
	switch (tuna->id) {
	case ETHTOOL_PHY_DOWNSHIFT:
		return m88e1111_set_downshift(phydev, *(const u8 *)data);
	default:
		return -EOPNOTSUPP;
	}
}

831
static int m88e1011_get_downshift(struct phy_device *phydev, u8 *data)
832 833 834 835 836 837 838 839
{
	int val, cnt, enable;

	val = phy_read(phydev, MII_M1011_PHY_SCR);
	if (val < 0)
		return val;

	enable = FIELD_GET(MII_M1011_PHY_SCR_DOWNSHIFT_EN, val);
840
	cnt = FIELD_GET(MII_M1011_PHY_SCR_DOWNSHIFT_MASK, val) + 1;
841 842 843 844 845 846

	*data = enable ? cnt : DOWNSHIFT_DEV_DISABLE;

	return 0;
}

847
static int m88e1011_set_downshift(struct phy_device *phydev, u8 cnt)
848 849 850 851 852 853 854 855 856 857 858
{
	int val;

	if (cnt > MII_M1011_PHY_SCR_DOWNSHIFT_MAX)
		return -E2BIG;

	if (!cnt)
		return phy_clear_bits(phydev, MII_M1011_PHY_SCR,
				      MII_M1011_PHY_SCR_DOWNSHIFT_EN);

	val = MII_M1011_PHY_SCR_DOWNSHIFT_EN;
859
	val |= FIELD_PREP(MII_M1011_PHY_SCR_DOWNSHIFT_MASK, cnt - 1);
860 861 862

	return phy_modify(phydev, MII_M1011_PHY_SCR,
			  MII_M1011_PHY_SCR_DOWNSHIFT_EN |
863
			  MII_M1011_PHY_SCR_DOWNSHIFT_MASK,
864 865 866
			  val);
}

867
static int m88e1011_get_tunable(struct phy_device *phydev,
868 869 870 871
				struct ethtool_tunable *tuna, void *data)
{
	switch (tuna->id) {
	case ETHTOOL_PHY_DOWNSHIFT:
872
		return m88e1011_get_downshift(phydev, data);
873 874 875 876 877
	default:
		return -EOPNOTSUPP;
	}
}

878
static int m88e1011_set_tunable(struct phy_device *phydev,
879 880 881 882
				struct ethtool_tunable *tuna, const void *data)
{
	switch (tuna->id) {
	case ETHTOOL_PHY_DOWNSHIFT:
883
		return m88e1011_set_downshift(phydev, *(const u8 *)data);
884 885 886 887 888
	default:
		return -EOPNOTSUPP;
	}
}

889
static void m88e1011_link_change_notify(struct phy_device *phydev)
890 891 892 893 894 895 896 897 898 899 900 901 902 903
{
	int status;

	if (phydev->state != PHY_RUNNING)
		return;

	/* we may be on fiber page currently */
	status = phy_read_paged(phydev, MII_MARVELL_COPPER_PAGE,
				MII_M1011_PHY_SSR);

	if (status > 0 && status & MII_M1011_PHY_SSR_DOWNSHIFT)
		phydev_warn(phydev, "Downshift occurred! Cabling may be defective.\n");
}

904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921
static int m88e1116r_config_init(struct phy_device *phydev)
{
	int err;

	err = genphy_soft_reset(phydev);
	if (err < 0)
		return err;

	msleep(500);

	err = marvell_set_page(phydev, MII_MARVELL_COPPER_PAGE);
	if (err < 0)
		return err;

	err = marvell_set_polarity(phydev, phydev->mdix_ctrl);
	if (err < 0)
		return err;

922
	err = m88e1011_set_downshift(phydev, 8);
923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938
	if (err < 0)
		return err;

	if (phy_interface_is_rgmii(phydev)) {
		err = m88e1121_config_aneg_rgmii_delays(phydev);
		if (err < 0)
			return err;
	}

	err = genphy_soft_reset(phydev);
	if (err < 0)
		return err;

	return marvell_config_init(phydev);
}

939 940 941 942 943 944 945 946 947 948 949 950 951
static int m88e1318_config_init(struct phy_device *phydev)
{
	if (phy_interrupt_is_valid(phydev)) {
		int err = phy_modify_paged(
			phydev, MII_MARVELL_LED_PAGE,
			MII_88E1318S_PHY_LED_TCR,
			MII_88E1318S_PHY_LED_TCR_FORCE_INT,
			MII_88E1318S_PHY_LED_TCR_INTn_ENABLE |
			MII_88E1318S_PHY_LED_TCR_INT_ACTIVE_LOW);
		if (err < 0)
			return err;
	}

952
	return marvell_config_init(phydev);
953 954
}

955 956 957 958 959 960 961
static int m88e1510_config_init(struct phy_device *phydev)
{
	int err;

	/* SGMII-to-Copper mode initialization */
	if (phydev->interface == PHY_INTERFACE_MODE_SGMII) {
		/* Select page 18 */
962
		err = marvell_set_page(phydev, 18);
963 964 965 966
		if (err < 0)
			return err;

		/* In reg 20, write MODE[2:0] = 0x1 (SGMII to Copper) */
967
		err = phy_modify(phydev, MII_88E1510_GEN_CTRL_REG_1,
968
				 MII_88E1510_GEN_CTRL_REG_1_MODE_MASK,
969
				 MII_88E1510_GEN_CTRL_REG_1_MODE_SGMII);
970 971 972 973
		if (err < 0)
			return err;

		/* PHY reset is necessary after changing MODE[2:0] */
974 975
		err = phy_modify(phydev, MII_88E1510_GEN_CTRL_REG_1, 0,
				 MII_88E1510_GEN_CTRL_REG_1_RESET);
976 977 978 979
		if (err < 0)
			return err;

		/* Reset page selection */
980
		err = marvell_set_page(phydev, MII_MARVELL_COPPER_PAGE);
981 982 983 984
		if (err < 0)
			return err;
	}

985
	return m88e1318_config_init(phydev);
986 987
}

988 989 990 991
static int m88e1118_config_aneg(struct phy_device *phydev)
{
	int err;

992
	err = genphy_soft_reset(phydev);
993 994 995
	if (err < 0)
		return err;

996
	err = marvell_set_polarity(phydev, phydev->mdix_ctrl);
997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008
	if (err < 0)
		return err;

	err = genphy_config_aneg(phydev);
	return 0;
}

static int m88e1118_config_init(struct phy_device *phydev)
{
	int err;

	/* Change address */
1009
	err = marvell_set_page(phydev, MII_MARVELL_MSCR_PAGE);
1010 1011 1012 1013 1014 1015 1016 1017 1018
	if (err < 0)
		return err;

	/* Enable 1000 Mbit */
	err = phy_write(phydev, 0x15, 0x1070);
	if (err < 0)
		return err;

	/* Change address */
1019
	err = marvell_set_page(phydev, MII_MARVELL_LED_PAGE);
1020 1021 1022 1023
	if (err < 0)
		return err;

	/* Adjust LED Control */
1024 1025 1026 1027
	if (phydev->dev_flags & MARVELL_PHY_M1118_DNS323_LEDS)
		err = phy_write(phydev, 0x10, 0x1100);
	else
		err = phy_write(phydev, 0x10, 0x021e);
1028 1029 1030
	if (err < 0)
		return err;

1031 1032 1033 1034
	err = marvell_of_reg_init(phydev);
	if (err < 0)
		return err;

1035
	/* Reset address */
1036
	err = marvell_set_page(phydev, MII_MARVELL_COPPER_PAGE);
1037 1038 1039
	if (err < 0)
		return err;

1040
	return genphy_soft_reset(phydev);
1041 1042
}

1043 1044 1045 1046 1047
static int m88e1149_config_init(struct phy_device *phydev)
{
	int err;

	/* Change address */
1048
	err = marvell_set_page(phydev, MII_MARVELL_MSCR_PAGE);
1049 1050 1051 1052 1053 1054 1055 1056
	if (err < 0)
		return err;

	/* Enable 1000 Mbit */
	err = phy_write(phydev, 0x15, 0x1048);
	if (err < 0)
		return err;

1057 1058 1059 1060
	err = marvell_of_reg_init(phydev);
	if (err < 0)
		return err;

1061
	/* Reset address */
1062
	err = marvell_set_page(phydev, MII_MARVELL_COPPER_PAGE);
1063 1064 1065
	if (err < 0)
		return err;

1066
	return genphy_soft_reset(phydev);
1067 1068
}

1069 1070 1071 1072
static int m88e1145_config_init_rgmii(struct phy_device *phydev)
{
	int err;

1073
	err = m88e1111_config_init_rgmii_delays(phydev);
1074 1075 1076 1077 1078 1079 1080 1081
	if (err < 0)
		return err;

	if (phydev->dev_flags & MARVELL_PHY_M1145_FLAGS_RESISTANCE) {
		err = phy_write(phydev, 0x1d, 0x0012);
		if (err < 0)
			return err;

1082
		err = phy_modify(phydev, 0x1e, 0x0fc0,
1083 1084
				 2 << 9 | /* 36 ohm */
				 2 << 6); /* 39 ohm */
1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098
		if (err < 0)
			return err;

		err = phy_write(phydev, 0x1d, 0x3);
		if (err < 0)
			return err;

		err = phy_write(phydev, 0x1e, 0x8000);
	}
	return err;
}

static int m88e1145_config_init_sgmii(struct phy_device *phydev)
{
1099 1100 1101
	return m88e1111_config_init_hwcfg_mode(
		phydev, MII_M1111_HWCFG_MODE_SGMII_NO_CLK,
		MII_M1111_HWCFG_FIBER_COPPER_AUTO);
1102 1103
}

1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124
static int m88e1145_config_init(struct phy_device *phydev)
{
	int err;

	/* Take care of errata E0 & E1 */
	err = phy_write(phydev, 0x1d, 0x001b);
	if (err < 0)
		return err;

	err = phy_write(phydev, 0x1e, 0x418f);
	if (err < 0)
		return err;

	err = phy_write(phydev, 0x1d, 0x0016);
	if (err < 0)
		return err;

	err = phy_write(phydev, 0x1e, 0xa2da);
	if (err < 0)
		return err;

1125
	if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID) {
1126
		err = m88e1145_config_init_rgmii(phydev);
1127 1128 1129 1130
		if (err < 0)
			return err;
	}

1131
	if (phydev->interface == PHY_INTERFACE_MODE_SGMII) {
1132
		err = m88e1145_config_init_sgmii(phydev);
1133 1134 1135 1136
		if (err < 0)
			return err;
	}

1137 1138 1139 1140
	err = marvell_of_reg_init(phydev);
	if (err < 0)
		return err;

1141 1142
	return 0;
}
1143

1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222
static int m88e1540_get_fld(struct phy_device *phydev, u8 *msecs)
{
	int val;

	val = phy_read(phydev, MII_88E1540_COPPER_CTRL3);
	if (val < 0)
		return val;

	if (!(val & MII_88E1540_COPPER_CTRL3_FAST_LINK_DOWN)) {
		*msecs = ETHTOOL_PHY_FAST_LINK_DOWN_OFF;
		return 0;
	}

	val = FIELD_GET(MII_88E1540_COPPER_CTRL3_LINK_DOWN_DELAY_MASK, val);

	switch (val) {
	case MII_88E1540_COPPER_CTRL3_LINK_DOWN_DELAY_00MS:
		*msecs = 0;
		break;
	case MII_88E1540_COPPER_CTRL3_LINK_DOWN_DELAY_10MS:
		*msecs = 10;
		break;
	case MII_88E1540_COPPER_CTRL3_LINK_DOWN_DELAY_20MS:
		*msecs = 20;
		break;
	case MII_88E1540_COPPER_CTRL3_LINK_DOWN_DELAY_40MS:
		*msecs = 40;
		break;
	default:
		return -EINVAL;
	}

	return 0;
}

static int m88e1540_set_fld(struct phy_device *phydev, const u8 *msecs)
{
	struct ethtool_eee eee;
	int val, ret;

	if (*msecs == ETHTOOL_PHY_FAST_LINK_DOWN_OFF)
		return phy_clear_bits(phydev, MII_88E1540_COPPER_CTRL3,
				      MII_88E1540_COPPER_CTRL3_FAST_LINK_DOWN);

	/* According to the Marvell data sheet EEE must be disabled for
	 * Fast Link Down detection to work properly
	 */
	ret = phy_ethtool_get_eee(phydev, &eee);
	if (!ret && eee.eee_enabled) {
		phydev_warn(phydev, "Fast Link Down detection requires EEE to be disabled!\n");
		return -EBUSY;
	}

	if (*msecs <= 5)
		val = MII_88E1540_COPPER_CTRL3_LINK_DOWN_DELAY_00MS;
	else if (*msecs <= 15)
		val = MII_88E1540_COPPER_CTRL3_LINK_DOWN_DELAY_10MS;
	else if (*msecs <= 30)
		val = MII_88E1540_COPPER_CTRL3_LINK_DOWN_DELAY_20MS;
	else
		val = MII_88E1540_COPPER_CTRL3_LINK_DOWN_DELAY_40MS;

	val = FIELD_PREP(MII_88E1540_COPPER_CTRL3_LINK_DOWN_DELAY_MASK, val);

	ret = phy_modify(phydev, MII_88E1540_COPPER_CTRL3,
			 MII_88E1540_COPPER_CTRL3_LINK_DOWN_DELAY_MASK, val);
	if (ret)
		return ret;

	return phy_set_bits(phydev, MII_88E1540_COPPER_CTRL3,
			    MII_88E1540_COPPER_CTRL3_FAST_LINK_DOWN);
}

static int m88e1540_get_tunable(struct phy_device *phydev,
				struct ethtool_tunable *tuna, void *data)
{
	switch (tuna->id) {
	case ETHTOOL_PHY_FAST_LINK_DOWN:
		return m88e1540_get_fld(phydev, data);
1223
	case ETHTOOL_PHY_DOWNSHIFT:
1224
		return m88e1011_get_downshift(phydev, data);
1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235
	default:
		return -EOPNOTSUPP;
	}
}

static int m88e1540_set_tunable(struct phy_device *phydev,
				struct ethtool_tunable *tuna, const void *data)
{
	switch (tuna->id) {
	case ETHTOOL_PHY_FAST_LINK_DOWN:
		return m88e1540_set_fld(phydev, data);
1236
	case ETHTOOL_PHY_DOWNSHIFT:
1237
		return m88e1011_set_downshift(phydev, *(const u8 *)data);
1238 1239 1240 1241 1242
	default:
		return -EOPNOTSUPP;
	}
}

1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275
/* The VOD can be out of specification on link up. Poke an
 * undocumented register, in an undocumented page, with a magic value
 * to fix this.
 */
static int m88e6390_errata(struct phy_device *phydev)
{
	int err;

	err = phy_write(phydev, MII_BMCR,
			BMCR_ANENABLE | BMCR_SPEED1000 | BMCR_FULLDPLX);
	if (err)
		return err;

	usleep_range(300, 400);

	err = phy_write_paged(phydev, 0xf8, 0x08, 0x36);
	if (err)
		return err;

	return genphy_soft_reset(phydev);
}

static int m88e6390_config_aneg(struct phy_device *phydev)
{
	int err;

	err = m88e6390_errata(phydev);
	if (err)
		return err;

	return m88e1510_config_aneg(phydev);
}

1276
/**
1277
 * fiber_lpa_mod_linkmode_lpa_t
1278
 * @advertising: the linkmode advertisement settings
1279 1280
 * @lpa: value of the MII_LPA register for fiber link
 *
1281 1282 1283
 * A small helper function that translates MII_LPA bits to linkmode LP
 * advertisement settings. Other bits in advertising are left
 * unchanged.
1284
 */
1285
static void fiber_lpa_mod_linkmode_lpa_t(unsigned long *advertising, u32 lpa)
1286
{
1287
	linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
1288
			 advertising, lpa & LPA_1000XHALF);
1289 1290

	linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
1291
			 advertising, lpa & LPA_1000XFULL);
1292 1293
}

1294
static int marvell_read_status_page_an(struct phy_device *phydev,
1295
				       int fiber, int status)
1296 1297
{
	int lpa;
1298
	int err;
1299 1300

	if (!fiber) {
1301 1302 1303
		err = genphy_read_lpa(phydev);
		if (err < 0)
			return err;
1304

1305
		phy_resolve_aneg_pause(phydev);
1306
	} else {
1307 1308 1309 1310
		lpa = phy_read(phydev, MII_LPA);
		if (lpa < 0)
			return lpa;

1311
		/* The fiber link is only 1000M capable */
1312
		fiber_lpa_mod_linkmode_lpa_t(phydev->lp_advertising, lpa);
1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326

		if (phydev->duplex == DUPLEX_FULL) {
			if (!(lpa & LPA_PAUSE_FIBER)) {
				phydev->pause = 0;
				phydev->asym_pause = 0;
			} else if ((lpa & LPA_PAUSE_ASYM_FIBER)) {
				phydev->pause = 1;
				phydev->asym_pause = 1;
			} else {
				phydev->pause = 1;
				phydev->asym_pause = 0;
			}
		}
	}
1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346

	if (status & MII_M1011_PHY_STATUS_FULLDUPLEX)
		phydev->duplex = DUPLEX_FULL;
	else
		phydev->duplex = DUPLEX_HALF;

	switch (status & MII_M1011_PHY_STATUS_SPD_MASK) {
	case MII_M1011_PHY_STATUS_1000:
		phydev->speed = SPEED_1000;
		break;

	case MII_M1011_PHY_STATUS_100:
		phydev->speed = SPEED_100;
		break;

	default:
		phydev->speed = SPEED_10;
		break;
	}

1347 1348 1349
	return 0;
}

1350
/* marvell_read_status_page
1351
 *
1352
 * Description:
1353 1354 1355 1356 1357
 *   Check the link, then figure out the current state
 *   by comparing what we advertise with what the link partner
 *   advertises.  Start by checking the gigabit possibilities,
 *   then move on to 10/100.
 */
1358
static int marvell_read_status_page(struct phy_device *phydev, int page)
1359
{
1360
	int status;
1361
	int fiber;
1362
	int err;
1363

1364 1365 1366 1367 1368 1369
	status = phy_read(phydev, MII_M1011_PHY_STATUS);
	if (status < 0)
		return status;

	/* Use the generic register for copper link status,
	 * and the PHY status register for fiber link status.
1370
	 */
1371 1372 1373 1374 1375 1376 1377 1378
	if (page == MII_MARVELL_FIBER_PAGE) {
		phydev->link = !!(status & MII_M1011_PHY_STATUS_LINK);
	} else {
		err = genphy_update_link(phydev);
		if (err)
			return err;
	}

1379
	if (page == MII_MARVELL_FIBER_PAGE)
1380 1381 1382 1383
		fiber = 1;
	else
		fiber = 0;

1384 1385 1386 1387
	linkmode_zero(phydev->lp_advertising);
	phydev->pause = 0;
	phydev->asym_pause = 0;

1388
	if (phydev->autoneg == AUTONEG_ENABLE)
1389
		err = marvell_read_status_page_an(phydev, fiber, status);
1390
	else
1391
		err = genphy_read_status_fixed(phydev);
1392

1393
	return err;
1394 1395
}

1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409
/* marvell_read_status
 *
 * Some Marvell's phys have two modes: fiber and copper.
 * Both need status checked.
 * Description:
 *   First, check the fiber link and status.
 *   If the fiber link is down, check the copper link and status which
 *   will be the default value if both link are down.
 */
static int marvell_read_status(struct phy_device *phydev)
{
	int err;

	/* Check the fiber mode first */
1410 1411
	if (linkmode_test_bit(ETHTOOL_LINK_MODE_FIBRE_BIT,
			      phydev->supported) &&
1412
	    phydev->interface != PHY_INTERFACE_MODE_SGMII) {
1413
		err = marvell_set_page(phydev, MII_MARVELL_FIBER_PAGE);
1414 1415 1416
		if (err < 0)
			goto error;

1417
		err = marvell_read_status_page(phydev, MII_MARVELL_FIBER_PAGE);
1418 1419 1420
		if (err < 0)
			goto error;

1421 1422 1423 1424 1425 1426 1427
		/* If the fiber link is up, it is the selected and
		 * used link. In this case, we need to stay in the
		 * fiber page. Please to be careful about that, avoid
		 * to restore Copper page in other functions which
		 * could break the behaviour for some fiber phy like
		 * 88E1512.
		 */
1428 1429 1430 1431
		if (phydev->link)
			return 0;

		/* If fiber link is down, check and save copper mode state */
1432
		err = marvell_set_page(phydev, MII_MARVELL_COPPER_PAGE);
1433 1434 1435 1436
		if (err < 0)
			goto error;
	}

1437
	return marvell_read_status_page(phydev, MII_MARVELL_COPPER_PAGE);
1438 1439

error:
1440
	marvell_set_page(phydev, MII_MARVELL_COPPER_PAGE);
1441 1442
	return err;
}
1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453

/* marvell_suspend
 *
 * Some Marvell's phys have two modes: fiber and copper.
 * Both need to be suspended
 */
static int marvell_suspend(struct phy_device *phydev)
{
	int err;

	/* Suspend the fiber mode first */
1454 1455
	if (!linkmode_test_bit(ETHTOOL_LINK_MODE_FIBRE_BIT,
			       phydev->supported)) {
1456
		err = marvell_set_page(phydev, MII_MARVELL_FIBER_PAGE);
1457 1458 1459 1460 1461 1462 1463 1464 1465
		if (err < 0)
			goto error;

		/* With the page set, use the generic suspend */
		err = genphy_suspend(phydev);
		if (err < 0)
			goto error;

		/* Then, the copper link */
1466
		err = marvell_set_page(phydev, MII_MARVELL_COPPER_PAGE);
1467 1468 1469 1470 1471 1472 1473 1474
		if (err < 0)
			goto error;
	}

	/* With the page set, use the generic suspend */
	return genphy_suspend(phydev);

error:
1475
	marvell_set_page(phydev, MII_MARVELL_COPPER_PAGE);
1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488
	return err;
}

/* marvell_resume
 *
 * Some Marvell's phys have two modes: fiber and copper.
 * Both need to be resumed
 */
static int marvell_resume(struct phy_device *phydev)
{
	int err;

	/* Resume the fiber mode first */
1489 1490
	if (!linkmode_test_bit(ETHTOOL_LINK_MODE_FIBRE_BIT,
			       phydev->supported)) {
1491
		err = marvell_set_page(phydev, MII_MARVELL_FIBER_PAGE);
1492 1493 1494 1495 1496 1497 1498 1499 1500
		if (err < 0)
			goto error;

		/* With the page set, use the generic resume */
		err = genphy_resume(phydev);
		if (err < 0)
			goto error;

		/* Then, the copper link */
1501
		err = marvell_set_page(phydev, MII_MARVELL_COPPER_PAGE);
1502 1503 1504 1505 1506 1507 1508 1509
		if (err < 0)
			goto error;
	}

	/* With the page set, use the generic resume */
	return genphy_resume(phydev);

error:
1510
	marvell_set_page(phydev, MII_MARVELL_COPPER_PAGE);
1511 1512 1513
	return err;
}

1514 1515 1516
static int marvell_aneg_done(struct phy_device *phydev)
{
	int retval = phy_read(phydev, MII_M1011_PHY_STATUS);
1517

1518 1519 1520
	return (retval < 0) ? retval : (retval & MII_M1011_PHY_STATUS_RESOLVED);
}

1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532
static int m88e1121_did_interrupt(struct phy_device *phydev)
{
	int imask;

	imask = phy_read(phydev, MII_M1011_IEVENT);

	if (imask & MII_M1011_IMASK_INIT)
		return 1;

	return 0;
}

1533 1534
static void m88e1318_get_wol(struct phy_device *phydev,
			     struct ethtool_wolinfo *wol)
1535
{
1536 1537
	int oldpage, ret = 0;

1538 1539 1540
	wol->supported = WAKE_MAGIC;
	wol->wolopts = 0;

1541 1542 1543
	oldpage = phy_select_page(phydev, MII_MARVELL_WOL_PAGE);
	if (oldpage < 0)
		goto error;
1544

1545 1546
	ret = __phy_read(phydev, MII_88E1318S_PHY_WOL_CTRL);
	if (ret & MII_88E1318S_PHY_WOL_CTRL_MAGIC_PACKET_MATCH_ENABLE)
1547 1548
		wol->wolopts |= WAKE_MAGIC;

1549 1550
error:
	phy_restore_page(phydev, oldpage, ret);
1551 1552
}

1553 1554
static int m88e1318_set_wol(struct phy_device *phydev,
			    struct ethtool_wolinfo *wol)
1555
{
1556
	int err = 0, oldpage;
1557

1558 1559 1560
	oldpage = phy_save_page(phydev);
	if (oldpage < 0)
		goto error;
1561 1562 1563

	if (wol->wolopts & WAKE_MAGIC) {
		/* Explicitly switch to page 0x00, just to be sure */
1564
		err = marvell_write_page(phydev, MII_MARVELL_COPPER_PAGE);
1565
		if (err < 0)
1566
			goto error;
1567

1568 1569 1570 1571 1572 1573 1574
		/* If WOL event happened once, the LED[2] interrupt pin
		 * will not be cleared unless we reading the interrupt status
		 * register. If interrupts are in use, the normal interrupt
		 * handling will clear the WOL event. Clear the WOL event
		 * before enabling it if !phy_interrupt_is_valid()
		 */
		if (!phy_interrupt_is_valid(phydev))
1575
			__phy_read(phydev, MII_M1011_IEVENT);
1576

1577
		/* Enable the WOL interrupt */
1578 1579
		err = __phy_modify(phydev, MII_88E1318S_PHY_CSIER, 0,
				   MII_88E1318S_PHY_CSIER_WOL_EIE);
1580
		if (err < 0)
1581
			goto error;
1582

1583
		err = marvell_write_page(phydev, MII_MARVELL_LED_PAGE);
1584
		if (err < 0)
1585
			goto error;
1586 1587

		/* Setup LED[2] as interrupt pin (active low) */
1588
		err = __phy_modify(phydev, MII_88E1318S_PHY_LED_TCR,
1589
				   MII_88E1318S_PHY_LED_TCR_FORCE_INT,
1590 1591
				   MII_88E1318S_PHY_LED_TCR_INTn_ENABLE |
				   MII_88E1318S_PHY_LED_TCR_INT_ACTIVE_LOW);
1592
		if (err < 0)
1593
			goto error;
1594

1595
		err = marvell_write_page(phydev, MII_MARVELL_WOL_PAGE);
1596
		if (err < 0)
1597
			goto error;
1598 1599

		/* Store the device address for the magic packet */
1600
		err = __phy_write(phydev, MII_88E1318S_PHY_MAGIC_PACKET_WORD2,
1601 1602 1603
				((phydev->attached_dev->dev_addr[5] << 8) |
				 phydev->attached_dev->dev_addr[4]));
		if (err < 0)
1604 1605
			goto error;
		err = __phy_write(phydev, MII_88E1318S_PHY_MAGIC_PACKET_WORD1,
1606 1607 1608
				((phydev->attached_dev->dev_addr[3] << 8) |
				 phydev->attached_dev->dev_addr[2]));
		if (err < 0)
1609 1610
			goto error;
		err = __phy_write(phydev, MII_88E1318S_PHY_MAGIC_PACKET_WORD0,
1611 1612 1613
				((phydev->attached_dev->dev_addr[1] << 8) |
				 phydev->attached_dev->dev_addr[0]));
		if (err < 0)
1614
			goto error;
1615 1616

		/* Clear WOL status and enable magic packet matching */
1617 1618 1619
		err = __phy_modify(phydev, MII_88E1318S_PHY_WOL_CTRL, 0,
				   MII_88E1318S_PHY_WOL_CTRL_CLEAR_WOL_STATUS |
				   MII_88E1318S_PHY_WOL_CTRL_MAGIC_PACKET_MATCH_ENABLE);
1620
		if (err < 0)
1621
			goto error;
1622
	} else {
1623
		err = marvell_write_page(phydev, MII_MARVELL_WOL_PAGE);
1624
		if (err < 0)
1625
			goto error;
1626 1627

		/* Clear WOL status and disable magic packet matching */
1628
		err = __phy_modify(phydev, MII_88E1318S_PHY_WOL_CTRL,
1629
				   MII_88E1318S_PHY_WOL_CTRL_MAGIC_PACKET_MATCH_ENABLE,
1630
				   MII_88E1318S_PHY_WOL_CTRL_CLEAR_WOL_STATUS);
1631
		if (err < 0)
1632
			goto error;
1633 1634
	}

1635 1636
error:
	return phy_restore_page(phydev, oldpage, err);
1637 1638
}

1639 1640
static int marvell_get_sset_count(struct phy_device *phydev)
{
1641 1642
	if (linkmode_test_bit(ETHTOOL_LINK_MODE_FIBRE_BIT,
			      phydev->supported))
1643 1644 1645
		return ARRAY_SIZE(marvell_hw_stats);
	else
		return ARRAY_SIZE(marvell_hw_stats) - NB_FIBER_STATS;
1646 1647 1648 1649
}

static void marvell_get_strings(struct phy_device *phydev, u8 *data)
{
1650
	int count = marvell_get_sset_count(phydev);
1651 1652
	int i;

1653
	for (i = 0; i < count; i++) {
1654 1655
		strlcpy(data + i * ETH_GSTRING_LEN,
			marvell_hw_stats[i].string, ETH_GSTRING_LEN);
1656 1657 1658 1659 1660 1661 1662
	}
}

static u64 marvell_get_stat(struct phy_device *phydev, int i)
{
	struct marvell_hw_stat stat = marvell_hw_stats[i];
	struct marvell_priv *priv = phydev->priv;
1663
	int val;
1664
	u64 ret;
1665

1666
	val = phy_read_paged(phydev, stat.page, stat.reg);
1667
	if (val < 0) {
1668
		ret = U64_MAX;
1669 1670 1671
	} else {
		val = val & ((1 << stat.bits) - 1);
		priv->stats[i] += val;
1672
		ret = priv->stats[i];
1673 1674
	}

1675
	return ret;
1676 1677 1678 1679 1680
}

static void marvell_get_stats(struct phy_device *phydev,
			      struct ethtool_stats *stats, u64 *data)
{
1681
	int count = marvell_get_sset_count(phydev);
1682 1683
	int i;

1684
	for (i = 0; i < count; i++)
1685 1686 1687
		data[i] = marvell_get_stat(phydev, i);
}

1688 1689 1690
#ifdef CONFIG_HWMON
static int m88e1121_get_temp(struct phy_device *phydev, long *temp)
{
1691
	int oldpage;
1692
	int ret = 0;
1693 1694 1695 1696
	int val;

	*temp = 0;

1697 1698 1699
	oldpage = phy_select_page(phydev, MII_MARVELL_MISC_TEST_PAGE);
	if (oldpage < 0)
		goto error;
1700

1701
	/* Enable temperature sensor */
1702
	ret = __phy_read(phydev, MII_88E1121_MISC_TEST);
1703 1704 1705
	if (ret < 0)
		goto error;

1706 1707
	ret = __phy_write(phydev, MII_88E1121_MISC_TEST,
			  ret | MII_88E1121_MISC_TEST_TEMP_SENSOR_EN);
1708 1709 1710 1711 1712 1713
	if (ret < 0)
		goto error;

	/* Wait for temperature to stabilize */
	usleep_range(10000, 12000);

1714
	val = __phy_read(phydev, MII_88E1121_MISC_TEST);
1715 1716 1717 1718 1719 1720
	if (val < 0) {
		ret = val;
		goto error;
	}

	/* Disable temperature sensor */
1721 1722
	ret = __phy_write(phydev, MII_88E1121_MISC_TEST,
			  ret & ~MII_88E1121_MISC_TEST_TEMP_SENSOR_EN);
1723 1724 1725 1726 1727 1728
	if (ret < 0)
		goto error;

	*temp = ((val & MII_88E1121_MISC_TEST_TEMP_MASK) - 5) * 5000;

error:
1729
	return phy_restore_page(phydev, oldpage, ret);
1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806
}

static int m88e1121_hwmon_read(struct device *dev,
			       enum hwmon_sensor_types type,
			       u32 attr, int channel, long *temp)
{
	struct phy_device *phydev = dev_get_drvdata(dev);
	int err;

	switch (attr) {
	case hwmon_temp_input:
		err = m88e1121_get_temp(phydev, temp);
		break;
	default:
		return -EOPNOTSUPP;
	}

	return err;
}

static umode_t m88e1121_hwmon_is_visible(const void *data,
					 enum hwmon_sensor_types type,
					 u32 attr, int channel)
{
	if (type != hwmon_temp)
		return 0;

	switch (attr) {
	case hwmon_temp_input:
		return 0444;
	default:
		return 0;
	}
}

static u32 m88e1121_hwmon_chip_config[] = {
	HWMON_C_REGISTER_TZ,
	0
};

static const struct hwmon_channel_info m88e1121_hwmon_chip = {
	.type = hwmon_chip,
	.config = m88e1121_hwmon_chip_config,
};

static u32 m88e1121_hwmon_temp_config[] = {
	HWMON_T_INPUT,
	0
};

static const struct hwmon_channel_info m88e1121_hwmon_temp = {
	.type = hwmon_temp,
	.config = m88e1121_hwmon_temp_config,
};

static const struct hwmon_channel_info *m88e1121_hwmon_info[] = {
	&m88e1121_hwmon_chip,
	&m88e1121_hwmon_temp,
	NULL
};

static const struct hwmon_ops m88e1121_hwmon_hwmon_ops = {
	.is_visible = m88e1121_hwmon_is_visible,
	.read = m88e1121_hwmon_read,
};

static const struct hwmon_chip_info m88e1121_hwmon_chip_info = {
	.ops = &m88e1121_hwmon_hwmon_ops,
	.info = m88e1121_hwmon_info,
};

static int m88e1510_get_temp(struct phy_device *phydev, long *temp)
{
	int ret;

	*temp = 0;

1807 1808
	ret = phy_read_paged(phydev, MII_MARVELL_MISC_TEST_PAGE,
			     MII_88E1510_TEMP_SENSOR);
1809
	if (ret < 0)
1810
		return ret;
1811 1812 1813

	*temp = ((ret & MII_88E1510_TEMP_SENSOR_MASK) - 25) * 1000;

1814
	return 0;
1815 1816
}

1817
static int m88e1510_get_temp_critical(struct phy_device *phydev, long *temp)
1818 1819 1820 1821 1822
{
	int ret;

	*temp = 0;

1823 1824
	ret = phy_read_paged(phydev, MII_MARVELL_MISC_TEST_PAGE,
			     MII_88E1121_MISC_TEST);
1825
	if (ret < 0)
1826
		return ret;
1827 1828 1829 1830 1831 1832

	*temp = (((ret & MII_88E1510_MISC_TEST_TEMP_THRESHOLD_MASK) >>
		  MII_88E1510_MISC_TEST_TEMP_THRESHOLD_SHIFT) * 5) - 25;
	/* convert to mC */
	*temp *= 1000;

1833
	return 0;
1834 1835
}

1836
static int m88e1510_set_temp_critical(struct phy_device *phydev, long temp)
1837 1838 1839 1840
{
	temp = temp / 1000;
	temp = clamp_val(DIV_ROUND_CLOSEST(temp, 5) + 5, 0, 0x1f);

1841 1842 1843 1844
	return phy_modify_paged(phydev, MII_MARVELL_MISC_TEST_PAGE,
				MII_88E1121_MISC_TEST,
				MII_88E1510_MISC_TEST_TEMP_THRESHOLD_MASK,
				temp << MII_88E1510_MISC_TEST_TEMP_THRESHOLD_SHIFT);
1845 1846
}

1847
static int m88e1510_get_temp_alarm(struct phy_device *phydev, long *alarm)
1848 1849 1850 1851 1852
{
	int ret;

	*alarm = false;

1853 1854
	ret = phy_read_paged(phydev, MII_MARVELL_MISC_TEST_PAGE,
			     MII_88E1121_MISC_TEST);
1855
	if (ret < 0)
1856
		return ret;
1857

1858
	*alarm = !!(ret & MII_88E1510_MISC_TEST_TEMP_IRQ);
1859

1860
	return 0;
1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948
}

static int m88e1510_hwmon_read(struct device *dev,
			       enum hwmon_sensor_types type,
			       u32 attr, int channel, long *temp)
{
	struct phy_device *phydev = dev_get_drvdata(dev);
	int err;

	switch (attr) {
	case hwmon_temp_input:
		err = m88e1510_get_temp(phydev, temp);
		break;
	case hwmon_temp_crit:
		err = m88e1510_get_temp_critical(phydev, temp);
		break;
	case hwmon_temp_max_alarm:
		err = m88e1510_get_temp_alarm(phydev, temp);
		break;
	default:
		return -EOPNOTSUPP;
	}

	return err;
}

static int m88e1510_hwmon_write(struct device *dev,
				enum hwmon_sensor_types type,
				u32 attr, int channel, long temp)
{
	struct phy_device *phydev = dev_get_drvdata(dev);
	int err;

	switch (attr) {
	case hwmon_temp_crit:
		err = m88e1510_set_temp_critical(phydev, temp);
		break;
	default:
		return -EOPNOTSUPP;
	}
	return err;
}

static umode_t m88e1510_hwmon_is_visible(const void *data,
					 enum hwmon_sensor_types type,
					 u32 attr, int channel)
{
	if (type != hwmon_temp)
		return 0;

	switch (attr) {
	case hwmon_temp_input:
	case hwmon_temp_max_alarm:
		return 0444;
	case hwmon_temp_crit:
		return 0644;
	default:
		return 0;
	}
}

static u32 m88e1510_hwmon_temp_config[] = {
	HWMON_T_INPUT | HWMON_T_CRIT | HWMON_T_MAX_ALARM,
	0
};

static const struct hwmon_channel_info m88e1510_hwmon_temp = {
	.type = hwmon_temp,
	.config = m88e1510_hwmon_temp_config,
};

static const struct hwmon_channel_info *m88e1510_hwmon_info[] = {
	&m88e1121_hwmon_chip,
	&m88e1510_hwmon_temp,
	NULL
};

static const struct hwmon_ops m88e1510_hwmon_hwmon_ops = {
	.is_visible = m88e1510_hwmon_is_visible,
	.read = m88e1510_hwmon_read,
	.write = m88e1510_hwmon_write,
};

static const struct hwmon_chip_info m88e1510_hwmon_chip_info = {
	.ops = &m88e1510_hwmon_hwmon_ops,
	.info = m88e1510_hwmon_info,
};

1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065
static int m88e6390_get_temp(struct phy_device *phydev, long *temp)
{
	int sum = 0;
	int oldpage;
	int ret = 0;
	int i;

	*temp = 0;

	oldpage = phy_select_page(phydev, MII_MARVELL_MISC_TEST_PAGE);
	if (oldpage < 0)
		goto error;

	/* Enable temperature sensor */
	ret = __phy_read(phydev, MII_88E6390_MISC_TEST);
	if (ret < 0)
		goto error;

	ret = ret & ~MII_88E6390_MISC_TEST_SAMPLE_MASK;
	ret |= MII_88E6390_MISC_TEST_SAMPLE_ENABLE |
		MII_88E6390_MISC_TEST_SAMPLE_1S;

	ret = __phy_write(phydev, MII_88E6390_MISC_TEST, ret);
	if (ret < 0)
		goto error;

	/* Wait for temperature to stabilize */
	usleep_range(10000, 12000);

	/* Reading the temperature sense has an errata. You need to read
	 * a number of times and take an average.
	 */
	for (i = 0; i < MII_88E6390_TEMP_SENSOR_SAMPLES; i++) {
		ret = __phy_read(phydev, MII_88E6390_TEMP_SENSOR);
		if (ret < 0)
			goto error;
		sum += ret & MII_88E6390_TEMP_SENSOR_MASK;
	}

	sum /= MII_88E6390_TEMP_SENSOR_SAMPLES;
	*temp = (sum  - 75) * 1000;

	/* Disable temperature sensor */
	ret = __phy_read(phydev, MII_88E6390_MISC_TEST);
	if (ret < 0)
		goto error;

	ret = ret & ~MII_88E6390_MISC_TEST_SAMPLE_MASK;
	ret |= MII_88E6390_MISC_TEST_SAMPLE_DISABLE;

	ret = __phy_write(phydev, MII_88E6390_MISC_TEST, ret);

error:
	phy_restore_page(phydev, oldpage, ret);

	return ret;
}

static int m88e6390_hwmon_read(struct device *dev,
			       enum hwmon_sensor_types type,
			       u32 attr, int channel, long *temp)
{
	struct phy_device *phydev = dev_get_drvdata(dev);
	int err;

	switch (attr) {
	case hwmon_temp_input:
		err = m88e6390_get_temp(phydev, temp);
		break;
	default:
		return -EOPNOTSUPP;
	}

	return err;
}

static umode_t m88e6390_hwmon_is_visible(const void *data,
					 enum hwmon_sensor_types type,
					 u32 attr, int channel)
{
	if (type != hwmon_temp)
		return 0;

	switch (attr) {
	case hwmon_temp_input:
		return 0444;
	default:
		return 0;
	}
}

static u32 m88e6390_hwmon_temp_config[] = {
	HWMON_T_INPUT,
	0
};

static const struct hwmon_channel_info m88e6390_hwmon_temp = {
	.type = hwmon_temp,
	.config = m88e6390_hwmon_temp_config,
};

static const struct hwmon_channel_info *m88e6390_hwmon_info[] = {
	&m88e1121_hwmon_chip,
	&m88e6390_hwmon_temp,
	NULL
};

static const struct hwmon_ops m88e6390_hwmon_hwmon_ops = {
	.is_visible = m88e6390_hwmon_is_visible,
	.read = m88e6390_hwmon_read,
};

static const struct hwmon_chip_info m88e6390_hwmon_chip_info = {
	.ops = &m88e6390_hwmon_hwmon_ops,
	.info = m88e6390_hwmon_info,
};

2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111
static int marvell_hwmon_name(struct phy_device *phydev)
{
	struct marvell_priv *priv = phydev->priv;
	struct device *dev = &phydev->mdio.dev;
	const char *devname = dev_name(dev);
	size_t len = strlen(devname);
	int i, j;

	priv->hwmon_name = devm_kzalloc(dev, len, GFP_KERNEL);
	if (!priv->hwmon_name)
		return -ENOMEM;

	for (i = j = 0; i < len && devname[i]; i++) {
		if (isalnum(devname[i]))
			priv->hwmon_name[j++] = devname[i];
	}

	return 0;
}

static int marvell_hwmon_probe(struct phy_device *phydev,
			       const struct hwmon_chip_info *chip)
{
	struct marvell_priv *priv = phydev->priv;
	struct device *dev = &phydev->mdio.dev;
	int err;

	err = marvell_hwmon_name(phydev);
	if (err)
		return err;

	priv->hwmon_dev = devm_hwmon_device_register_with_info(
		dev, priv->hwmon_name, phydev, chip, NULL);

	return PTR_ERR_OR_ZERO(priv->hwmon_dev);
}

static int m88e1121_hwmon_probe(struct phy_device *phydev)
{
	return marvell_hwmon_probe(phydev, &m88e1121_hwmon_chip_info);
}

static int m88e1510_hwmon_probe(struct phy_device *phydev)
{
	return marvell_hwmon_probe(phydev, &m88e1510_hwmon_chip_info);
}
2112 2113 2114 2115 2116

static int m88e6390_hwmon_probe(struct phy_device *phydev)
{
	return marvell_hwmon_probe(phydev, &m88e6390_hwmon_chip_info);
}
2117 2118 2119 2120 2121 2122 2123 2124 2125 2126
#else
static int m88e1121_hwmon_probe(struct phy_device *phydev)
{
	return 0;
}

static int m88e1510_hwmon_probe(struct phy_device *phydev)
{
	return 0;
}
2127 2128 2129 2130 2131

static int m88e6390_hwmon_probe(struct phy_device *phydev)
{
	return 0;
}
2132 2133
#endif

2134 2135 2136 2137
static int marvell_probe(struct phy_device *phydev)
{
	struct marvell_priv *priv;

A
Andrew Lunn 已提交
2138
	priv = devm_kzalloc(&phydev->mdio.dev, sizeof(*priv), GFP_KERNEL);
2139 2140 2141 2142 2143 2144 2145 2146
	if (!priv)
		return -ENOMEM;

	phydev->priv = priv;

	return 0;
}

2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168
static int m88e1121_probe(struct phy_device *phydev)
{
	int err;

	err = marvell_probe(phydev);
	if (err)
		return err;

	return m88e1121_hwmon_probe(phydev);
}

static int m88e1510_probe(struct phy_device *phydev)
{
	int err;

	err = marvell_probe(phydev);
	if (err)
		return err;

	return m88e1510_hwmon_probe(phydev);
}

2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179
static int m88e6390_probe(struct phy_device *phydev)
{
	int err;

	err = marvell_probe(phydev);
	if (err)
		return err;

	return m88e6390_hwmon_probe(phydev);
}

O
Olof Johansson 已提交
2180 2181
static struct phy_driver marvell_drivers[] = {
	{
2182 2183
		.phy_id = MARVELL_PHY_ID_88E1101,
		.phy_id_mask = MARVELL_PHY_ID_MASK,
O
Olof Johansson 已提交
2184
		.name = "Marvell 88E1101",
2185
		/* PHY_GBIT_FEATURES */
2186
		.probe = marvell_probe,
2187
		.config_init = &marvell_config_init,
2188
		.config_aneg = &m88e1101_config_aneg,
O
Olof Johansson 已提交
2189 2190
		.ack_interrupt = &marvell_ack_interrupt,
		.config_intr = &marvell_config_intr,
2191 2192
		.resume = &genphy_resume,
		.suspend = &genphy_suspend,
2193 2194
		.read_page = marvell_read_page,
		.write_page = marvell_write_page,
2195 2196 2197
		.get_sset_count = marvell_get_sset_count,
		.get_strings = marvell_get_strings,
		.get_stats = marvell_get_stats,
O
Olof Johansson 已提交
2198
	},
2199
	{
2200 2201
		.phy_id = MARVELL_PHY_ID_88E1112,
		.phy_id_mask = MARVELL_PHY_ID_MASK,
2202
		.name = "Marvell 88E1112",
2203
		/* PHY_GBIT_FEATURES */
2204
		.probe = marvell_probe,
2205 2206 2207 2208
		.config_init = &m88e1111_config_init,
		.config_aneg = &marvell_config_aneg,
		.ack_interrupt = &marvell_ack_interrupt,
		.config_intr = &marvell_config_intr,
2209 2210
		.resume = &genphy_resume,
		.suspend = &genphy_suspend,
2211 2212
		.read_page = marvell_read_page,
		.write_page = marvell_write_page,
2213 2214 2215
		.get_sset_count = marvell_get_sset_count,
		.get_strings = marvell_get_strings,
		.get_stats = marvell_get_stats,
2216 2217 2218
		.get_tunable = m88e1011_get_tunable,
		.set_tunable = m88e1011_set_tunable,
		.link_change_notify = m88e1011_link_change_notify,
2219
	},
O
Olof Johansson 已提交
2220
	{
2221 2222
		.phy_id = MARVELL_PHY_ID_88E1111,
		.phy_id_mask = MARVELL_PHY_ID_MASK,
O
Olof Johansson 已提交
2223
		.name = "Marvell 88E1111",
2224
		/* PHY_GBIT_FEATURES */
2225
		.probe = marvell_probe,
O
Olof Johansson 已提交
2226
		.config_init = &m88e1111_config_init,
2227
		.config_aneg = &marvell_config_aneg,
2228
		.read_status = &marvell_read_status,
O
Olof Johansson 已提交
2229 2230
		.ack_interrupt = &marvell_ack_interrupt,
		.config_intr = &marvell_config_intr,
2231 2232
		.resume = &genphy_resume,
		.suspend = &genphy_suspend,
2233 2234
		.read_page = marvell_read_page,
		.write_page = marvell_write_page,
2235 2236 2237
		.get_sset_count = marvell_get_sset_count,
		.get_strings = marvell_get_strings,
		.get_stats = marvell_get_stats,
2238 2239 2240
		.get_tunable = m88e1111_get_tunable,
		.set_tunable = m88e1111_set_tunable,
		.link_change_notify = m88e1011_link_change_notify,
O
Olof Johansson 已提交
2241
	},
2242
	{
2243 2244
		.phy_id = MARVELL_PHY_ID_88E1118,
		.phy_id_mask = MARVELL_PHY_ID_MASK,
2245
		.name = "Marvell 88E1118",
2246
		/* PHY_GBIT_FEATURES */
2247
		.probe = marvell_probe,
2248 2249 2250 2251
		.config_init = &m88e1118_config_init,
		.config_aneg = &m88e1118_config_aneg,
		.ack_interrupt = &marvell_ack_interrupt,
		.config_intr = &marvell_config_intr,
2252 2253
		.resume = &genphy_resume,
		.suspend = &genphy_suspend,
2254 2255
		.read_page = marvell_read_page,
		.write_page = marvell_write_page,
2256 2257 2258
		.get_sset_count = marvell_get_sset_count,
		.get_strings = marvell_get_strings,
		.get_stats = marvell_get_stats,
2259
	},
2260
	{
2261 2262
		.phy_id = MARVELL_PHY_ID_88E1121R,
		.phy_id_mask = MARVELL_PHY_ID_MASK,
2263
		.name = "Marvell 88E1121R",
2264
		/* PHY_GBIT_FEATURES */
2265
		.probe = &m88e1121_probe,
2266
		.config_init = &marvell_config_init,
2267 2268 2269 2270
		.config_aneg = &m88e1121_config_aneg,
		.read_status = &marvell_read_status,
		.ack_interrupt = &marvell_ack_interrupt,
		.config_intr = &marvell_config_intr,
2271
		.did_interrupt = &m88e1121_did_interrupt,
2272 2273
		.resume = &genphy_resume,
		.suspend = &genphy_suspend,
2274 2275
		.read_page = marvell_read_page,
		.write_page = marvell_write_page,
2276 2277 2278
		.get_sset_count = marvell_get_sset_count,
		.get_strings = marvell_get_strings,
		.get_stats = marvell_get_stats,
2279 2280 2281
		.get_tunable = m88e1011_get_tunable,
		.set_tunable = m88e1011_set_tunable,
		.link_change_notify = m88e1011_link_change_notify,
2282
	},
2283
	{
2284
		.phy_id = MARVELL_PHY_ID_88E1318S,
2285
		.phy_id_mask = MARVELL_PHY_ID_MASK,
2286
		.name = "Marvell 88E1318S",
2287
		/* PHY_GBIT_FEATURES */
2288
		.probe = marvell_probe,
2289
		.config_init = &m88e1318_config_init,
2290
		.config_aneg = &m88e1318_config_aneg,
2291 2292 2293 2294
		.read_status = &marvell_read_status,
		.ack_interrupt = &marvell_ack_interrupt,
		.config_intr = &marvell_config_intr,
		.did_interrupt = &m88e1121_did_interrupt,
2295 2296
		.get_wol = &m88e1318_get_wol,
		.set_wol = &m88e1318_set_wol,
2297 2298
		.resume = &genphy_resume,
		.suspend = &genphy_suspend,
2299 2300
		.read_page = marvell_read_page,
		.write_page = marvell_write_page,
2301 2302 2303
		.get_sset_count = marvell_get_sset_count,
		.get_strings = marvell_get_strings,
		.get_stats = marvell_get_stats,
2304
	},
O
Olof Johansson 已提交
2305
	{
2306 2307
		.phy_id = MARVELL_PHY_ID_88E1145,
		.phy_id_mask = MARVELL_PHY_ID_MASK,
O
Olof Johansson 已提交
2308
		.name = "Marvell 88E1145",
2309
		/* PHY_GBIT_FEATURES */
2310
		.probe = marvell_probe,
O
Olof Johansson 已提交
2311
		.config_init = &m88e1145_config_init,
2312
		.config_aneg = &m88e1101_config_aneg,
O
Olof Johansson 已提交
2313 2314 2315
		.read_status = &genphy_read_status,
		.ack_interrupt = &marvell_ack_interrupt,
		.config_intr = &marvell_config_intr,
2316 2317
		.resume = &genphy_resume,
		.suspend = &genphy_suspend,
2318 2319
		.read_page = marvell_read_page,
		.write_page = marvell_write_page,
2320 2321 2322
		.get_sset_count = marvell_get_sset_count,
		.get_strings = marvell_get_strings,
		.get_stats = marvell_get_stats,
2323 2324 2325
		.get_tunable = m88e1111_get_tunable,
		.set_tunable = m88e1111_set_tunable,
		.link_change_notify = m88e1011_link_change_notify,
2326
	},
2327 2328 2329 2330
	{
		.phy_id = MARVELL_PHY_ID_88E1149R,
		.phy_id_mask = MARVELL_PHY_ID_MASK,
		.name = "Marvell 88E1149R",
2331
		/* PHY_GBIT_FEATURES */
2332
		.probe = marvell_probe,
2333 2334 2335 2336
		.config_init = &m88e1149_config_init,
		.config_aneg = &m88e1118_config_aneg,
		.ack_interrupt = &marvell_ack_interrupt,
		.config_intr = &marvell_config_intr,
2337 2338
		.resume = &genphy_resume,
		.suspend = &genphy_suspend,
2339 2340
		.read_page = marvell_read_page,
		.write_page = marvell_write_page,
2341 2342 2343
		.get_sset_count = marvell_get_sset_count,
		.get_strings = marvell_get_strings,
		.get_stats = marvell_get_stats,
2344
	},
2345
	{
2346 2347
		.phy_id = MARVELL_PHY_ID_88E1240,
		.phy_id_mask = MARVELL_PHY_ID_MASK,
2348
		.name = "Marvell 88E1240",
2349
		/* PHY_GBIT_FEATURES */
2350
		.probe = marvell_probe,
2351 2352 2353 2354
		.config_init = &m88e1111_config_init,
		.config_aneg = &marvell_config_aneg,
		.ack_interrupt = &marvell_ack_interrupt,
		.config_intr = &marvell_config_intr,
2355 2356
		.resume = &genphy_resume,
		.suspend = &genphy_suspend,
2357 2358
		.read_page = marvell_read_page,
		.write_page = marvell_write_page,
2359 2360 2361
		.get_sset_count = marvell_get_sset_count,
		.get_strings = marvell_get_strings,
		.get_stats = marvell_get_stats,
2362
	},
M
Michal Simek 已提交
2363 2364 2365 2366
	{
		.phy_id = MARVELL_PHY_ID_88E1116R,
		.phy_id_mask = MARVELL_PHY_ID_MASK,
		.name = "Marvell 88E1116R",
2367
		/* PHY_GBIT_FEATURES */
2368
		.probe = marvell_probe,
M
Michal Simek 已提交
2369 2370 2371
		.config_init = &m88e1116r_config_init,
		.ack_interrupt = &marvell_ack_interrupt,
		.config_intr = &marvell_config_intr,
2372 2373
		.resume = &genphy_resume,
		.suspend = &genphy_suspend,
2374 2375
		.read_page = marvell_read_page,
		.write_page = marvell_write_page,
2376 2377 2378
		.get_sset_count = marvell_get_sset_count,
		.get_strings = marvell_get_strings,
		.get_stats = marvell_get_stats,
2379 2380 2381
		.get_tunable = m88e1011_get_tunable,
		.set_tunable = m88e1011_set_tunable,
		.link_change_notify = m88e1011_link_change_notify,
M
Michal Simek 已提交
2382
	},
M
Michal Simek 已提交
2383 2384 2385 2386
	{
		.phy_id = MARVELL_PHY_ID_88E1510,
		.phy_id_mask = MARVELL_PHY_ID_MASK,
		.name = "Marvell 88E1510",
2387
		.features = PHY_GBIT_FIBRE_FEATURES,
2388
		.probe = &m88e1510_probe,
2389
		.config_init = &m88e1510_config_init,
M
Michal Simek 已提交
2390 2391 2392 2393 2394
		.config_aneg = &m88e1510_config_aneg,
		.read_status = &marvell_read_status,
		.ack_interrupt = &marvell_ack_interrupt,
		.config_intr = &marvell_config_intr,
		.did_interrupt = &m88e1121_did_interrupt,
2395 2396
		.get_wol = &m88e1318_get_wol,
		.set_wol = &m88e1318_set_wol,
2397 2398
		.resume = &marvell_resume,
		.suspend = &marvell_suspend,
2399 2400
		.read_page = marvell_read_page,
		.write_page = marvell_write_page,
2401 2402 2403
		.get_sset_count = marvell_get_sset_count,
		.get_strings = marvell_get_strings,
		.get_stats = marvell_get_stats,
2404
		.set_loopback = genphy_loopback,
2405 2406 2407
		.get_tunable = m88e1011_get_tunable,
		.set_tunable = m88e1011_set_tunable,
		.link_change_notify = m88e1011_link_change_notify,
M
Michal Simek 已提交
2408
	},
2409 2410 2411 2412
	{
		.phy_id = MARVELL_PHY_ID_88E1540,
		.phy_id_mask = MARVELL_PHY_ID_MASK,
		.name = "Marvell 88E1540",
2413
		/* PHY_GBIT_FEATURES */
2414
		.probe = m88e1510_probe,
2415
		.config_init = &marvell_config_init,
2416 2417 2418 2419 2420 2421 2422
		.config_aneg = &m88e1510_config_aneg,
		.read_status = &marvell_read_status,
		.ack_interrupt = &marvell_ack_interrupt,
		.config_intr = &marvell_config_intr,
		.did_interrupt = &m88e1121_did_interrupt,
		.resume = &genphy_resume,
		.suspend = &genphy_suspend,
2423 2424
		.read_page = marvell_read_page,
		.write_page = marvell_write_page,
2425 2426 2427
		.get_sset_count = marvell_get_sset_count,
		.get_strings = marvell_get_strings,
		.get_stats = marvell_get_stats,
2428 2429
		.get_tunable = m88e1540_get_tunable,
		.set_tunable = m88e1540_set_tunable,
2430
		.link_change_notify = m88e1011_link_change_notify,
2431
	},
2432 2433 2434 2435 2436
	{
		.phy_id = MARVELL_PHY_ID_88E1545,
		.phy_id_mask = MARVELL_PHY_ID_MASK,
		.name = "Marvell 88E1545",
		.probe = m88e1510_probe,
2437
		/* PHY_GBIT_FEATURES */
2438 2439 2440 2441 2442 2443 2444 2445
		.config_init = &marvell_config_init,
		.config_aneg = &m88e1510_config_aneg,
		.read_status = &marvell_read_status,
		.ack_interrupt = &marvell_ack_interrupt,
		.config_intr = &marvell_config_intr,
		.did_interrupt = &m88e1121_did_interrupt,
		.resume = &genphy_resume,
		.suspend = &genphy_suspend,
2446 2447
		.read_page = marvell_read_page,
		.write_page = marvell_write_page,
2448 2449 2450
		.get_sset_count = marvell_get_sset_count,
		.get_strings = marvell_get_strings,
		.get_stats = marvell_get_stats,
2451 2452 2453
		.get_tunable = m88e1540_get_tunable,
		.set_tunable = m88e1540_set_tunable,
		.link_change_notify = m88e1011_link_change_notify,
2454
	},
2455 2456 2457 2458
	{
		.phy_id = MARVELL_PHY_ID_88E3016,
		.phy_id_mask = MARVELL_PHY_ID_MASK,
		.name = "Marvell 88E3016",
2459
		/* PHY_BASIC_FEATURES */
2460
		.probe = marvell_probe,
2461 2462 2463 2464 2465 2466 2467 2468
		.config_init = &m88e3016_config_init,
		.aneg_done = &marvell_aneg_done,
		.read_status = &marvell_read_status,
		.ack_interrupt = &marvell_ack_interrupt,
		.config_intr = &marvell_config_intr,
		.did_interrupt = &m88e1121_did_interrupt,
		.resume = &genphy_resume,
		.suspend = &genphy_suspend,
2469 2470
		.read_page = marvell_read_page,
		.write_page = marvell_write_page,
2471 2472 2473
		.get_sset_count = marvell_get_sset_count,
		.get_strings = marvell_get_strings,
		.get_stats = marvell_get_stats,
2474
	},
2475 2476 2477 2478
	{
		.phy_id = MARVELL_PHY_ID_88E6390,
		.phy_id_mask = MARVELL_PHY_ID_MASK,
		.name = "Marvell 88E6390",
2479
		/* PHY_GBIT_FEATURES */
2480
		.probe = m88e6390_probe,
2481
		.config_init = &marvell_config_init,
2482
		.config_aneg = &m88e6390_config_aneg,
2483 2484 2485 2486 2487 2488
		.read_status = &marvell_read_status,
		.ack_interrupt = &marvell_ack_interrupt,
		.config_intr = &marvell_config_intr,
		.did_interrupt = &m88e1121_did_interrupt,
		.resume = &genphy_resume,
		.suspend = &genphy_suspend,
2489 2490
		.read_page = marvell_read_page,
		.write_page = marvell_write_page,
2491 2492 2493
		.get_sset_count = marvell_get_sset_count,
		.get_strings = marvell_get_strings,
		.get_stats = marvell_get_stats,
2494 2495
		.get_tunable = m88e1540_get_tunable,
		.set_tunable = m88e1540_set_tunable,
2496
		.link_change_notify = m88e1011_link_change_notify,
2497
	},
2498 2499
};

2500
module_phy_driver(marvell_drivers);
2501

2502
static struct mdio_device_id __maybe_unused marvell_tbl[] = {
2503 2504 2505 2506 2507 2508 2509 2510 2511
	{ MARVELL_PHY_ID_88E1101, MARVELL_PHY_ID_MASK },
	{ MARVELL_PHY_ID_88E1112, MARVELL_PHY_ID_MASK },
	{ MARVELL_PHY_ID_88E1111, MARVELL_PHY_ID_MASK },
	{ MARVELL_PHY_ID_88E1118, MARVELL_PHY_ID_MASK },
	{ MARVELL_PHY_ID_88E1121R, MARVELL_PHY_ID_MASK },
	{ MARVELL_PHY_ID_88E1145, MARVELL_PHY_ID_MASK },
	{ MARVELL_PHY_ID_88E1149R, MARVELL_PHY_ID_MASK },
	{ MARVELL_PHY_ID_88E1240, MARVELL_PHY_ID_MASK },
	{ MARVELL_PHY_ID_88E1318S, MARVELL_PHY_ID_MASK },
M
Michal Simek 已提交
2512
	{ MARVELL_PHY_ID_88E1116R, MARVELL_PHY_ID_MASK },
M
Michal Simek 已提交
2513
	{ MARVELL_PHY_ID_88E1510, MARVELL_PHY_ID_MASK },
2514
	{ MARVELL_PHY_ID_88E1540, MARVELL_PHY_ID_MASK },
2515
	{ MARVELL_PHY_ID_88E1545, MARVELL_PHY_ID_MASK },
2516
	{ MARVELL_PHY_ID_88E3016, MARVELL_PHY_ID_MASK },
2517
	{ MARVELL_PHY_ID_88E6390, MARVELL_PHY_ID_MASK },
2518 2519 2520 2521
	{ }
};

MODULE_DEVICE_TABLE(mdio, marvell_tbl);