chip.c 107.8 KB
Newer Older
1
/*
2 3
 * Marvell 88e6xxx Ethernet switch single-chip support
 *
4 5
 * Copyright (c) 2008 Marvell Semiconductor
 *
6 7 8
 * Copyright (c) 2015 CMC Electronics, Inc.
 *	Added support for VLAN Table Unit operations
 *
9 10
 * Copyright (c) 2016 Andrew Lunn <andrew@lunn.ch>
 *
11 12 13 14 15 16
 * 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.
 */

17
#include <linux/delay.h>
18
#include <linux/etherdevice.h>
19
#include <linux/ethtool.h>
20
#include <linux/if_bridge.h>
21 22 23
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/irqdomain.h>
24
#include <linux/jiffies.h>
25
#include <linux/list.h>
26
#include <linux/mdio.h>
27
#include <linux/module.h>
28
#include <linux/of_device.h>
29
#include <linux/of_irq.h>
30
#include <linux/of_mdio.h>
31
#include <linux/netdevice.h>
32
#include <linux/gpio/consumer.h>
33
#include <linux/phy.h>
34
#include <net/dsa.h>
35
#include <net/switchdev.h>
36

37
#include "mv88e6xxx.h"
38
#include "global1.h"
39
#include "global2.h"
40
#include "port.h"
41

42
static void assert_reg_lock(struct mv88e6xxx_chip *chip)
43
{
44 45
	if (unlikely(!mutex_is_locked(&chip->reg_lock))) {
		dev_err(chip->dev, "Switch registers lock not held!\n");
46 47 48 49
		dump_stack();
	}
}

50 51 52 53 54 55 56 57 58 59
/* The switch ADDR[4:1] configuration pins define the chip SMI device address
 * (ADDR[0] is always zero, thus only even SMI addresses can be strapped).
 *
 * When ADDR is all zero, the chip uses Single-chip Addressing Mode, assuming it
 * is the only device connected to the SMI master. In this mode it responds to
 * all 32 possible SMI addresses, and thus maps directly the internal devices.
 *
 * When ADDR is non-zero, the chip uses Multi-chip Addressing Mode, allowing
 * multiple devices to share the SMI interface. In this mode it responds to only
 * 2 registers, used to indirectly access the internal SMI devices.
60
 */
61

62
static int mv88e6xxx_smi_read(struct mv88e6xxx_chip *chip,
63 64
			      int addr, int reg, u16 *val)
{
65
	if (!chip->smi_ops)
66 67
		return -EOPNOTSUPP;

68
	return chip->smi_ops->read(chip, addr, reg, val);
69 70
}

71
static int mv88e6xxx_smi_write(struct mv88e6xxx_chip *chip,
72 73
			       int addr, int reg, u16 val)
{
74
	if (!chip->smi_ops)
75 76
		return -EOPNOTSUPP;

77
	return chip->smi_ops->write(chip, addr, reg, val);
78 79
}

80
static int mv88e6xxx_smi_single_chip_read(struct mv88e6xxx_chip *chip,
81 82 83 84
					  int addr, int reg, u16 *val)
{
	int ret;

85
	ret = mdiobus_read_nested(chip->bus, addr, reg);
86 87 88 89 90 91 92 93
	if (ret < 0)
		return ret;

	*val = ret & 0xffff;

	return 0;
}

94
static int mv88e6xxx_smi_single_chip_write(struct mv88e6xxx_chip *chip,
95 96 97 98
					   int addr, int reg, u16 val)
{
	int ret;

99
	ret = mdiobus_write_nested(chip->bus, addr, reg, val);
100 101 102 103 104 105
	if (ret < 0)
		return ret;

	return 0;
}

106
static const struct mv88e6xxx_bus_ops mv88e6xxx_smi_single_chip_ops = {
107 108 109 110
	.read = mv88e6xxx_smi_single_chip_read,
	.write = mv88e6xxx_smi_single_chip_write,
};

111
static int mv88e6xxx_smi_multi_chip_wait(struct mv88e6xxx_chip *chip)
112 113 114 115 116
{
	int ret;
	int i;

	for (i = 0; i < 16; i++) {
117
		ret = mdiobus_read_nested(chip->bus, chip->sw_addr, SMI_CMD);
118 119 120
		if (ret < 0)
			return ret;

121
		if ((ret & SMI_CMD_BUSY) == 0)
122 123 124 125 126 127
			return 0;
	}

	return -ETIMEDOUT;
}

128
static int mv88e6xxx_smi_multi_chip_read(struct mv88e6xxx_chip *chip,
129
					 int addr, int reg, u16 *val)
130 131 132
{
	int ret;

133
	/* Wait for the bus to become free. */
134
	ret = mv88e6xxx_smi_multi_chip_wait(chip);
135 136 137
	if (ret < 0)
		return ret;

138
	/* Transmit the read command. */
139
	ret = mdiobus_write_nested(chip->bus, chip->sw_addr, SMI_CMD,
140
				   SMI_CMD_OP_22_READ | (addr << 5) | reg);
141 142 143
	if (ret < 0)
		return ret;

144
	/* Wait for the read command to complete. */
145
	ret = mv88e6xxx_smi_multi_chip_wait(chip);
146 147 148
	if (ret < 0)
		return ret;

149
	/* Read the data. */
150
	ret = mdiobus_read_nested(chip->bus, chip->sw_addr, SMI_DATA);
151 152 153
	if (ret < 0)
		return ret;

154
	*val = ret & 0xffff;
155

156
	return 0;
157 158
}

159
static int mv88e6xxx_smi_multi_chip_write(struct mv88e6xxx_chip *chip,
160
					  int addr, int reg, u16 val)
161 162 163
{
	int ret;

164
	/* Wait for the bus to become free. */
165
	ret = mv88e6xxx_smi_multi_chip_wait(chip);
166 167 168
	if (ret < 0)
		return ret;

169
	/* Transmit the data to write. */
170
	ret = mdiobus_write_nested(chip->bus, chip->sw_addr, SMI_DATA, val);
171 172 173
	if (ret < 0)
		return ret;

174
	/* Transmit the write command. */
175
	ret = mdiobus_write_nested(chip->bus, chip->sw_addr, SMI_CMD,
176
				   SMI_CMD_OP_22_WRITE | (addr << 5) | reg);
177 178 179
	if (ret < 0)
		return ret;

180
	/* Wait for the write command to complete. */
181
	ret = mv88e6xxx_smi_multi_chip_wait(chip);
182 183 184 185 186 187
	if (ret < 0)
		return ret;

	return 0;
}

188
static const struct mv88e6xxx_bus_ops mv88e6xxx_smi_multi_chip_ops = {
189 190 191 192
	.read = mv88e6xxx_smi_multi_chip_read,
	.write = mv88e6xxx_smi_multi_chip_write,
};

193
int mv88e6xxx_read(struct mv88e6xxx_chip *chip, int addr, int reg, u16 *val)
194 195 196
{
	int err;

197
	assert_reg_lock(chip);
198

199
	err = mv88e6xxx_smi_read(chip, addr, reg, val);
200 201 202
	if (err)
		return err;

203
	dev_dbg(chip->dev, "<- addr: 0x%.2x reg: 0x%.2x val: 0x%.4x\n",
204 205 206 207 208
		addr, reg, *val);

	return 0;
}

209
int mv88e6xxx_write(struct mv88e6xxx_chip *chip, int addr, int reg, u16 val)
210
{
211 212
	int err;

213
	assert_reg_lock(chip);
214

215
	err = mv88e6xxx_smi_write(chip, addr, reg, val);
216 217 218
	if (err)
		return err;

219
	dev_dbg(chip->dev, "-> addr: 0x%.2x reg: 0x%.2x val: 0x%.4x\n",
220 221
		addr, reg, val);

222 223 224
	return 0;
}

225 226 227 228 229
static int mv88e6xxx_phy_read(struct mv88e6xxx_chip *chip, int phy,
			      int reg, u16 *val)
{
	int addr = phy; /* PHY devices addresses start at 0x0 */

230
	if (!chip->info->ops->phy_read)
231 232
		return -EOPNOTSUPP;

233
	return chip->info->ops->phy_read(chip, addr, reg, val);
234 235 236 237 238 239 240
}

static int mv88e6xxx_phy_write(struct mv88e6xxx_chip *chip, int phy,
			       int reg, u16 val)
{
	int addr = phy; /* PHY devices addresses start at 0x0 */

241
	if (!chip->info->ops->phy_write)
242 243
		return -EOPNOTSUPP;

244
	return chip->info->ops->phy_write(chip, addr, reg, val);
245 246
}

247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 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
static int mv88e6xxx_phy_page_get(struct mv88e6xxx_chip *chip, int phy, u8 page)
{
	if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_PHY_PAGE))
		return -EOPNOTSUPP;

	return mv88e6xxx_phy_write(chip, phy, PHY_PAGE, page);
}

static void mv88e6xxx_phy_page_put(struct mv88e6xxx_chip *chip, int phy)
{
	int err;

	/* Restore PHY page Copper 0x0 for access via the registered MDIO bus */
	err = mv88e6xxx_phy_write(chip, phy, PHY_PAGE, PHY_PAGE_COPPER);
	if (unlikely(err)) {
		dev_err(chip->dev, "failed to restore PHY %d page Copper (%d)\n",
			phy, err);
	}
}

static int mv88e6xxx_phy_page_read(struct mv88e6xxx_chip *chip, int phy,
				   u8 page, int reg, u16 *val)
{
	int err;

	/* There is no paging for registers 22 */
	if (reg == PHY_PAGE)
		return -EINVAL;

	err = mv88e6xxx_phy_page_get(chip, phy, page);
	if (!err) {
		err = mv88e6xxx_phy_read(chip, phy, reg, val);
		mv88e6xxx_phy_page_put(chip, phy);
	}

	return err;
}

static int mv88e6xxx_phy_page_write(struct mv88e6xxx_chip *chip, int phy,
				    u8 page, int reg, u16 val)
{
	int err;

	/* There is no paging for registers 22 */
	if (reg == PHY_PAGE)
		return -EINVAL;

	err = mv88e6xxx_phy_page_get(chip, phy, page);
	if (!err) {
		err = mv88e6xxx_phy_write(chip, phy, PHY_PAGE, page);
		mv88e6xxx_phy_page_put(chip, phy);
	}

	return err;
}

static int mv88e6xxx_serdes_read(struct mv88e6xxx_chip *chip, int reg, u16 *val)
{
	return mv88e6xxx_phy_page_read(chip, ADDR_SERDES, SERDES_PAGE_FIBER,
				       reg, val);
}

static int mv88e6xxx_serdes_write(struct mv88e6xxx_chip *chip, int reg, u16 val)
{
	return mv88e6xxx_phy_page_write(chip, ADDR_SERDES, SERDES_PAGE_FIBER,
					reg, val);
}

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 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 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 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
static void mv88e6xxx_g1_irq_mask(struct irq_data *d)
{
	struct mv88e6xxx_chip *chip = irq_data_get_irq_chip_data(d);
	unsigned int n = d->hwirq;

	chip->g1_irq.masked |= (1 << n);
}

static void mv88e6xxx_g1_irq_unmask(struct irq_data *d)
{
	struct mv88e6xxx_chip *chip = irq_data_get_irq_chip_data(d);
	unsigned int n = d->hwirq;

	chip->g1_irq.masked &= ~(1 << n);
}

static irqreturn_t mv88e6xxx_g1_irq_thread_fn(int irq, void *dev_id)
{
	struct mv88e6xxx_chip *chip = dev_id;
	unsigned int nhandled = 0;
	unsigned int sub_irq;
	unsigned int n;
	u16 reg;
	int err;

	mutex_lock(&chip->reg_lock);
	err = mv88e6xxx_g1_read(chip, GLOBAL_STATUS, &reg);
	mutex_unlock(&chip->reg_lock);

	if (err)
		goto out;

	for (n = 0; n < chip->g1_irq.nirqs; ++n) {
		if (reg & (1 << n)) {
			sub_irq = irq_find_mapping(chip->g1_irq.domain, n);
			handle_nested_irq(sub_irq);
			++nhandled;
		}
	}
out:
	return (nhandled > 0 ? IRQ_HANDLED : IRQ_NONE);
}

static void mv88e6xxx_g1_irq_bus_lock(struct irq_data *d)
{
	struct mv88e6xxx_chip *chip = irq_data_get_irq_chip_data(d);

	mutex_lock(&chip->reg_lock);
}

static void mv88e6xxx_g1_irq_bus_sync_unlock(struct irq_data *d)
{
	struct mv88e6xxx_chip *chip = irq_data_get_irq_chip_data(d);
	u16 mask = GENMASK(chip->g1_irq.nirqs, 0);
	u16 reg;
	int err;

	err = mv88e6xxx_g1_read(chip, GLOBAL_CONTROL, &reg);
	if (err)
		goto out;

	reg &= ~mask;
	reg |= (~chip->g1_irq.masked & mask);

	err = mv88e6xxx_g1_write(chip, GLOBAL_CONTROL, reg);
	if (err)
		goto out;

out:
	mutex_unlock(&chip->reg_lock);
}

static struct irq_chip mv88e6xxx_g1_irq_chip = {
	.name			= "mv88e6xxx-g1",
	.irq_mask		= mv88e6xxx_g1_irq_mask,
	.irq_unmask		= mv88e6xxx_g1_irq_unmask,
	.irq_bus_lock		= mv88e6xxx_g1_irq_bus_lock,
	.irq_bus_sync_unlock	= mv88e6xxx_g1_irq_bus_sync_unlock,
};

static int mv88e6xxx_g1_irq_domain_map(struct irq_domain *d,
				       unsigned int irq,
				       irq_hw_number_t hwirq)
{
	struct mv88e6xxx_chip *chip = d->host_data;

	irq_set_chip_data(irq, d->host_data);
	irq_set_chip_and_handler(irq, &chip->g1_irq.chip, handle_level_irq);
	irq_set_noprobe(irq);

	return 0;
}

static const struct irq_domain_ops mv88e6xxx_g1_irq_domain_ops = {
	.map	= mv88e6xxx_g1_irq_domain_map,
	.xlate	= irq_domain_xlate_twocell,
};

static void mv88e6xxx_g1_irq_free(struct mv88e6xxx_chip *chip)
{
	int irq, virq;
416 417 418 419 420 421 422
	u16 mask;

	mv88e6xxx_g1_read(chip, GLOBAL_CONTROL, &mask);
	mask |= GENMASK(chip->g1_irq.nirqs, 0);
	mv88e6xxx_g1_write(chip, GLOBAL_CONTROL, mask);

	free_irq(chip->irq, chip);
423 424

	for (irq = 0; irq < 16; irq++) {
425
		virq = irq_find_mapping(chip->g1_irq.domain, irq);
426 427 428
		irq_dispose_mapping(virq);
	}

429
	irq_domain_remove(chip->g1_irq.domain);
430 431 432 433
}

static int mv88e6xxx_g1_irq_setup(struct mv88e6xxx_chip *chip)
{
434 435
	int err, irq, virq;
	u16 reg, mask;
436 437 438 439 440 441 442 443 444 445 446 447 448 449

	chip->g1_irq.nirqs = chip->info->g1_irqs;
	chip->g1_irq.domain = irq_domain_add_simple(
		NULL, chip->g1_irq.nirqs, 0,
		&mv88e6xxx_g1_irq_domain_ops, chip);
	if (!chip->g1_irq.domain)
		return -ENOMEM;

	for (irq = 0; irq < chip->g1_irq.nirqs; irq++)
		irq_create_mapping(chip->g1_irq.domain, irq);

	chip->g1_irq.chip = mv88e6xxx_g1_irq_chip;
	chip->g1_irq.masked = ~0;

450
	err = mv88e6xxx_g1_read(chip, GLOBAL_CONTROL, &mask);
451
	if (err)
452
		goto out_mapping;
453

454
	mask &= ~GENMASK(chip->g1_irq.nirqs, 0);
455

456
	err = mv88e6xxx_g1_write(chip, GLOBAL_CONTROL, mask);
457
	if (err)
458
		goto out_disable;
459 460 461 462

	/* Reading the interrupt status clears (most of) them */
	err = mv88e6xxx_g1_read(chip, GLOBAL_STATUS, &reg);
	if (err)
463
		goto out_disable;
464 465 466 467 468 469

	err = request_threaded_irq(chip->irq, NULL,
				   mv88e6xxx_g1_irq_thread_fn,
				   IRQF_ONESHOT | IRQF_TRIGGER_FALLING,
				   dev_name(chip->dev), chip);
	if (err)
470
		goto out_disable;
471 472 473

	return 0;

474 475 476 477 478 479 480 481 482 483 484
out_disable:
	mask |= GENMASK(chip->g1_irq.nirqs, 0);
	mv88e6xxx_g1_write(chip, GLOBAL_CONTROL, mask);

out_mapping:
	for (irq = 0; irq < 16; irq++) {
		virq = irq_find_mapping(chip->g1_irq.domain, irq);
		irq_dispose_mapping(virq);
	}

	irq_domain_remove(chip->g1_irq.domain);
485 486 487 488

	return err;
}

489
int mv88e6xxx_wait(struct mv88e6xxx_chip *chip, int addr, int reg, u16 mask)
490
{
491
	int i;
492

493
	for (i = 0; i < 16; i++) {
494 495 496 497 498 499 500 501 502 503 504 505 506
		u16 val;
		int err;

		err = mv88e6xxx_read(chip, addr, reg, &val);
		if (err)
			return err;

		if (!(val & mask))
			return 0;

		usleep_range(1000, 2000);
	}

507
	dev_err(chip->dev, "Timeout while waiting for switch\n");
508 509 510
	return -ETIMEDOUT;
}

511
/* Indirect write to single pointer-data register with an Update bit */
512
int mv88e6xxx_update(struct mv88e6xxx_chip *chip, int addr, int reg, u16 update)
513 514
{
	u16 val;
515
	int err;
516 517

	/* Wait until the previous operation is completed */
518 519 520
	err = mv88e6xxx_wait(chip, addr, reg, BIT(15));
	if (err)
		return err;
521 522 523 524 525 526 527

	/* Set the Update bit to trigger a write operation */
	val = BIT(15) | update;

	return mv88e6xxx_write(chip, addr, reg, val);
}

528
static int mv88e6xxx_ppu_disable(struct mv88e6xxx_chip *chip)
529 530
{
	u16 val;
531
	int i, err;
532

533
	err = mv88e6xxx_g1_read(chip, GLOBAL_CONTROL, &val);
534 535 536
	if (err)
		return err;

537 538 539 540
	err = mv88e6xxx_g1_write(chip, GLOBAL_CONTROL,
				 val & ~GLOBAL_CONTROL_PPU_ENABLE);
	if (err)
		return err;
541

542
	for (i = 0; i < 16; i++) {
543 544 545
		err = mv88e6xxx_g1_read(chip, GLOBAL_STATUS, &val);
		if (err)
			return err;
546

547
		usleep_range(1000, 2000);
548
		if ((val & GLOBAL_STATUS_PPU_MASK) != GLOBAL_STATUS_PPU_POLLING)
549
			return 0;
550 551 552 553 554
	}

	return -ETIMEDOUT;
}

555
static int mv88e6xxx_ppu_enable(struct mv88e6xxx_chip *chip)
556
{
557 558
	u16 val;
	int i, err;
559

560 561 562
	err = mv88e6xxx_g1_read(chip, GLOBAL_CONTROL, &val);
	if (err)
		return err;
563

564 565
	err = mv88e6xxx_g1_write(chip, GLOBAL_CONTROL,
				 val | GLOBAL_CONTROL_PPU_ENABLE);
566 567
	if (err)
		return err;
568

569
	for (i = 0; i < 16; i++) {
570 571 572
		err = mv88e6xxx_g1_read(chip, GLOBAL_STATUS, &val);
		if (err)
			return err;
573

574
		usleep_range(1000, 2000);
575
		if ((val & GLOBAL_STATUS_PPU_MASK) == GLOBAL_STATUS_PPU_POLLING)
576
			return 0;
577 578 579 580 581 582 583
	}

	return -ETIMEDOUT;
}

static void mv88e6xxx_ppu_reenable_work(struct work_struct *ugly)
{
584
	struct mv88e6xxx_chip *chip;
585

586
	chip = container_of(ugly, struct mv88e6xxx_chip, ppu_work);
587

588
	mutex_lock(&chip->reg_lock);
589

590 591 592 593
	if (mutex_trylock(&chip->ppu_mutex)) {
		if (mv88e6xxx_ppu_enable(chip) == 0)
			chip->ppu_disabled = 0;
		mutex_unlock(&chip->ppu_mutex);
594
	}
595

596
	mutex_unlock(&chip->reg_lock);
597 598 599 600
}

static void mv88e6xxx_ppu_reenable_timer(unsigned long _ps)
{
601
	struct mv88e6xxx_chip *chip = (void *)_ps;
602

603
	schedule_work(&chip->ppu_work);
604 605
}

606
static int mv88e6xxx_ppu_access_get(struct mv88e6xxx_chip *chip)
607 608 609
{
	int ret;

610
	mutex_lock(&chip->ppu_mutex);
611

612
	/* If the PHY polling unit is enabled, disable it so that
613 614 615 616
	 * we can access the PHY registers.  If it was already
	 * disabled, cancel the timer that is going to re-enable
	 * it.
	 */
617 618
	if (!chip->ppu_disabled) {
		ret = mv88e6xxx_ppu_disable(chip);
619
		if (ret < 0) {
620
			mutex_unlock(&chip->ppu_mutex);
621 622
			return ret;
		}
623
		chip->ppu_disabled = 1;
624
	} else {
625
		del_timer(&chip->ppu_timer);
626
		ret = 0;
627 628 629 630 631
	}

	return ret;
}

632
static void mv88e6xxx_ppu_access_put(struct mv88e6xxx_chip *chip)
633
{
634
	/* Schedule a timer to re-enable the PHY polling unit. */
635 636
	mod_timer(&chip->ppu_timer, jiffies + msecs_to_jiffies(10));
	mutex_unlock(&chip->ppu_mutex);
637 638
}

639
static void mv88e6xxx_ppu_state_init(struct mv88e6xxx_chip *chip)
640
{
641 642
	mutex_init(&chip->ppu_mutex);
	INIT_WORK(&chip->ppu_work, mv88e6xxx_ppu_reenable_work);
643 644
	setup_timer(&chip->ppu_timer, mv88e6xxx_ppu_reenable_timer,
		    (unsigned long)chip);
645 646
}

647 648 649 650 651
static void mv88e6xxx_ppu_state_destroy(struct mv88e6xxx_chip *chip)
{
	del_timer_sync(&chip->ppu_timer);
}

652 653
static int mv88e6xxx_phy_ppu_read(struct mv88e6xxx_chip *chip, int addr,
				  int reg, u16 *val)
654
{
655
	int err;
656

657 658 659
	err = mv88e6xxx_ppu_access_get(chip);
	if (!err) {
		err = mv88e6xxx_read(chip, addr, reg, val);
660
		mv88e6xxx_ppu_access_put(chip);
661 662
	}

663
	return err;
664 665
}

666 667
static int mv88e6xxx_phy_ppu_write(struct mv88e6xxx_chip *chip, int addr,
				   int reg, u16 val)
668
{
669
	int err;
670

671 672 673
	err = mv88e6xxx_ppu_access_get(chip);
	if (!err) {
		err = mv88e6xxx_write(chip, addr, reg, val);
674
		mv88e6xxx_ppu_access_put(chip);
675 676
	}

677
	return err;
678 679
}

680
static bool mv88e6xxx_6065_family(struct mv88e6xxx_chip *chip)
681
{
682
	return chip->info->family == MV88E6XXX_FAMILY_6065;
683 684
}

685
static bool mv88e6xxx_6095_family(struct mv88e6xxx_chip *chip)
686
{
687
	return chip->info->family == MV88E6XXX_FAMILY_6095;
688 689
}

690
static bool mv88e6xxx_6097_family(struct mv88e6xxx_chip *chip)
691
{
692
	return chip->info->family == MV88E6XXX_FAMILY_6097;
693 694
}

695
static bool mv88e6xxx_6165_family(struct mv88e6xxx_chip *chip)
696
{
697
	return chip->info->family == MV88E6XXX_FAMILY_6165;
698 699
}

700
static bool mv88e6xxx_6185_family(struct mv88e6xxx_chip *chip)
701
{
702
	return chip->info->family == MV88E6XXX_FAMILY_6185;
703 704
}

705
static bool mv88e6xxx_6320_family(struct mv88e6xxx_chip *chip)
706
{
707
	return chip->info->family == MV88E6XXX_FAMILY_6320;
708 709
}

710
static bool mv88e6xxx_6351_family(struct mv88e6xxx_chip *chip)
711
{
712
	return chip->info->family == MV88E6XXX_FAMILY_6351;
713 714
}

715
static bool mv88e6xxx_6352_family(struct mv88e6xxx_chip *chip)
716
{
717
	return chip->info->family == MV88E6XXX_FAMILY_6352;
718 719
}

720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760
static int mv88e6xxx_port_setup_mac(struct mv88e6xxx_chip *chip, int port,
				    int link, int speed, int duplex,
				    phy_interface_t mode)
{
	int err;

	if (!chip->info->ops->port_set_link)
		return 0;

	/* Port's MAC control must not be changed unless the link is down */
	err = chip->info->ops->port_set_link(chip, port, 0);
	if (err)
		return err;

	if (chip->info->ops->port_set_speed) {
		err = chip->info->ops->port_set_speed(chip, port, speed);
		if (err && err != -EOPNOTSUPP)
			goto restore_link;
	}

	if (chip->info->ops->port_set_duplex) {
		err = chip->info->ops->port_set_duplex(chip, port, duplex);
		if (err && err != -EOPNOTSUPP)
			goto restore_link;
	}

	if (chip->info->ops->port_set_rgmii_delay) {
		err = chip->info->ops->port_set_rgmii_delay(chip, port, mode);
		if (err && err != -EOPNOTSUPP)
			goto restore_link;
	}

	err = 0;
restore_link:
	if (chip->info->ops->port_set_link(chip, port, link))
		netdev_err(chip->ds->ports[port].netdev,
			   "failed to restore MAC's link\n");

	return err;
}

761 762 763 764
/* We expect the switch to perform auto negotiation if there is a real
 * phy. However, in the case of a fixed link phy, we force the port
 * settings from the fixed link settings.
 */
765 766
static void mv88e6xxx_adjust_link(struct dsa_switch *ds, int port,
				  struct phy_device *phydev)
767
{
V
Vivien Didelot 已提交
768
	struct mv88e6xxx_chip *chip = ds->priv;
769
	int err;
770 771 772 773

	if (!phy_is_pseudo_fixed_link(phydev))
		return;

774
	mutex_lock(&chip->reg_lock);
775 776
	err = mv88e6xxx_port_setup_mac(chip, port, phydev->link, phydev->speed,
				       phydev->duplex, phydev->interface);
777
	mutex_unlock(&chip->reg_lock);
778 779 780

	if (err && err != -EOPNOTSUPP)
		netdev_err(ds->ports[port].netdev, "failed to configure MAC\n");
781 782
}

783
static int _mv88e6xxx_stats_wait(struct mv88e6xxx_chip *chip)
784
{
785 786
	u16 val;
	int i, err;
787 788

	for (i = 0; i < 10; i++) {
789
		err = mv88e6xxx_g1_read(chip, GLOBAL_STATS_OP, &val);
790 791 792
		if (err)
			return err;

793
		if ((val & GLOBAL_STATS_OP_BUSY) == 0)
794 795 796 797 798 799
			return 0;
	}

	return -ETIMEDOUT;
}

800
static int mv88e6xxx_stats_snapshot(struct mv88e6xxx_chip *chip, int port)
801
{
802 803
	if (!chip->info->ops->stats_snapshot)
		return -EOPNOTSUPP;
804

805
	return chip->info->ops->stats_snapshot(chip, port);
806 807
}

808
static void _mv88e6xxx_stats_read(struct mv88e6xxx_chip *chip,
809
				  int stat, u32 *val)
810
{
811 812 813
	u32 value;
	u16 reg;
	int err;
814 815 816

	*val = 0;

817
	err = mv88e6xxx_g1_write(chip, GLOBAL_STATS_OP,
818
				 GLOBAL_STATS_OP_READ_CAPTURED | stat);
819
	if (err)
820 821
		return;

822 823
	err = _mv88e6xxx_stats_wait(chip);
	if (err)
824 825
		return;

826 827
	err = mv88e6xxx_g1_read(chip, GLOBAL_STATS_COUNTER_32, &reg);
	if (err)
828 829
		return;

830
	value = reg << 16;
831

832 833
	err = mv88e6xxx_g1_read(chip, GLOBAL_STATS_COUNTER_01, &reg);
	if (err)
834 835
		return;

836
	*val = value | reg;
837 838
}

839
static struct mv88e6xxx_hw_stat mv88e6xxx_hw_stats[] = {
840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898
	{ "in_good_octets",		8, 0x00, STATS_TYPE_BANK0, },
	{ "in_bad_octets",		4, 0x02, STATS_TYPE_BANK0, },
	{ "in_unicast",			4, 0x04, STATS_TYPE_BANK0, },
	{ "in_broadcasts",		4, 0x06, STATS_TYPE_BANK0, },
	{ "in_multicasts",		4, 0x07, STATS_TYPE_BANK0, },
	{ "in_pause",			4, 0x16, STATS_TYPE_BANK0, },
	{ "in_undersize",		4, 0x18, STATS_TYPE_BANK0, },
	{ "in_fragments",		4, 0x19, STATS_TYPE_BANK0, },
	{ "in_oversize",		4, 0x1a, STATS_TYPE_BANK0, },
	{ "in_jabber",			4, 0x1b, STATS_TYPE_BANK0, },
	{ "in_rx_error",		4, 0x1c, STATS_TYPE_BANK0, },
	{ "in_fcs_error",		4, 0x1d, STATS_TYPE_BANK0, },
	{ "out_octets",			8, 0x0e, STATS_TYPE_BANK0, },
	{ "out_unicast",		4, 0x10, STATS_TYPE_BANK0, },
	{ "out_broadcasts",		4, 0x13, STATS_TYPE_BANK0, },
	{ "out_multicasts",		4, 0x12, STATS_TYPE_BANK0, },
	{ "out_pause",			4, 0x15, STATS_TYPE_BANK0, },
	{ "excessive",			4, 0x11, STATS_TYPE_BANK0, },
	{ "collisions",			4, 0x1e, STATS_TYPE_BANK0, },
	{ "deferred",			4, 0x05, STATS_TYPE_BANK0, },
	{ "single",			4, 0x14, STATS_TYPE_BANK0, },
	{ "multiple",			4, 0x17, STATS_TYPE_BANK0, },
	{ "out_fcs_error",		4, 0x03, STATS_TYPE_BANK0, },
	{ "late",			4, 0x1f, STATS_TYPE_BANK0, },
	{ "hist_64bytes",		4, 0x08, STATS_TYPE_BANK0, },
	{ "hist_65_127bytes",		4, 0x09, STATS_TYPE_BANK0, },
	{ "hist_128_255bytes",		4, 0x0a, STATS_TYPE_BANK0, },
	{ "hist_256_511bytes",		4, 0x0b, STATS_TYPE_BANK0, },
	{ "hist_512_1023bytes",		4, 0x0c, STATS_TYPE_BANK0, },
	{ "hist_1024_max_bytes",	4, 0x0d, STATS_TYPE_BANK0, },
	{ "sw_in_discards",		4, 0x10, STATS_TYPE_PORT, },
	{ "sw_in_filtered",		2, 0x12, STATS_TYPE_PORT, },
	{ "sw_out_filtered",		2, 0x13, STATS_TYPE_PORT, },
	{ "in_discards",		4, 0x00, STATS_TYPE_BANK1, },
	{ "in_filtered",		4, 0x01, STATS_TYPE_BANK1, },
	{ "in_accepted",		4, 0x02, STATS_TYPE_BANK1, },
	{ "in_bad_accepted",		4, 0x03, STATS_TYPE_BANK1, },
	{ "in_good_avb_class_a",	4, 0x04, STATS_TYPE_BANK1, },
	{ "in_good_avb_class_b",	4, 0x05, STATS_TYPE_BANK1, },
	{ "in_bad_avb_class_a",		4, 0x06, STATS_TYPE_BANK1, },
	{ "in_bad_avb_class_b",		4, 0x07, STATS_TYPE_BANK1, },
	{ "tcam_counter_0",		4, 0x08, STATS_TYPE_BANK1, },
	{ "tcam_counter_1",		4, 0x09, STATS_TYPE_BANK1, },
	{ "tcam_counter_2",		4, 0x0a, STATS_TYPE_BANK1, },
	{ "tcam_counter_3",		4, 0x0b, STATS_TYPE_BANK1, },
	{ "in_da_unknown",		4, 0x0e, STATS_TYPE_BANK1, },
	{ "in_management",		4, 0x0f, STATS_TYPE_BANK1, },
	{ "out_queue_0",		4, 0x10, STATS_TYPE_BANK1, },
	{ "out_queue_1",		4, 0x11, STATS_TYPE_BANK1, },
	{ "out_queue_2",		4, 0x12, STATS_TYPE_BANK1, },
	{ "out_queue_3",		4, 0x13, STATS_TYPE_BANK1, },
	{ "out_queue_4",		4, 0x14, STATS_TYPE_BANK1, },
	{ "out_queue_5",		4, 0x15, STATS_TYPE_BANK1, },
	{ "out_queue_6",		4, 0x16, STATS_TYPE_BANK1, },
	{ "out_queue_7",		4, 0x17, STATS_TYPE_BANK1, },
	{ "out_cut_through",		4, 0x18, STATS_TYPE_BANK1, },
	{ "out_octets_a",		4, 0x1a, STATS_TYPE_BANK1, },
	{ "out_octets_b",		4, 0x1b, STATS_TYPE_BANK1, },
	{ "out_management",		4, 0x1f, STATS_TYPE_BANK1, },
899 900
};

901
static uint64_t _mv88e6xxx_get_ethtool_stat(struct mv88e6xxx_chip *chip,
902
					    struct mv88e6xxx_hw_stat *s,
903 904
					    int port, u16 bank1_select,
					    u16 histogram)
905 906 907
{
	u32 low;
	u32 high = 0;
908
	u16 reg = 0;
909
	int err;
910 911
	u64 value;

912
	switch (s->type) {
913
	case STATS_TYPE_PORT:
914 915
		err = mv88e6xxx_port_read(chip, port, s->reg, &reg);
		if (err)
916 917
			return UINT64_MAX;

918
		low = reg;
919
		if (s->sizeof_stat == 4) {
920 921
			err = mv88e6xxx_port_read(chip, port, s->reg + 1, &reg);
			if (err)
922
				return UINT64_MAX;
923
			high = reg;
924
		}
925
		break;
926
	case STATS_TYPE_BANK1:
927
		reg = bank1_select;
928 929
		/* fall through */
	case STATS_TYPE_BANK0:
930
		reg |= s->reg | histogram;
931
		_mv88e6xxx_stats_read(chip, reg, &low);
932
		if (s->sizeof_stat == 8)
933
			_mv88e6xxx_stats_read(chip, reg + 1, &high);
934 935 936 937 938
	}
	value = (((u64)high) << 16) | low;
	return value;
}

939 940
static void mv88e6xxx_stats_get_strings(struct mv88e6xxx_chip *chip,
					uint8_t *data, int types)
941
{
942 943
	struct mv88e6xxx_hw_stat *stat;
	int i, j;
944

945 946
	for (i = 0, j = 0; i < ARRAY_SIZE(mv88e6xxx_hw_stats); i++) {
		stat = &mv88e6xxx_hw_stats[i];
947
		if (stat->type & types) {
948 949 950 951
			memcpy(data + j * ETH_GSTRING_LEN, stat->string,
			       ETH_GSTRING_LEN);
			j++;
		}
952
	}
953 954
}

955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970
static void mv88e6095_stats_get_strings(struct mv88e6xxx_chip *chip,
					uint8_t *data)
{
	mv88e6xxx_stats_get_strings(chip, data,
				    STATS_TYPE_BANK0 | STATS_TYPE_PORT);
}

static void mv88e6320_stats_get_strings(struct mv88e6xxx_chip *chip,
					uint8_t *data)
{
	mv88e6xxx_stats_get_strings(chip, data,
				    STATS_TYPE_BANK0 | STATS_TYPE_BANK1);
}

static void mv88e6xxx_get_strings(struct dsa_switch *ds, int port,
				  uint8_t *data)
971
{
V
Vivien Didelot 已提交
972
	struct mv88e6xxx_chip *chip = ds->priv;
973 974 975 976 977 978 979 980

	if (chip->info->ops->stats_get_strings)
		chip->info->ops->stats_get_strings(chip, data);
}

static int mv88e6xxx_stats_get_sset_count(struct mv88e6xxx_chip *chip,
					  int types)
{
981 982 983 984 985
	struct mv88e6xxx_hw_stat *stat;
	int i, j;

	for (i = 0, j = 0; i < ARRAY_SIZE(mv88e6xxx_hw_stats); i++) {
		stat = &mv88e6xxx_hw_stats[i];
986
		if (stat->type & types)
987 988 989
			j++;
	}
	return j;
990 991
}

992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013
static int mv88e6095_stats_get_sset_count(struct mv88e6xxx_chip *chip)
{
	return mv88e6xxx_stats_get_sset_count(chip, STATS_TYPE_BANK0 |
					      STATS_TYPE_PORT);
}

static int mv88e6320_stats_get_sset_count(struct mv88e6xxx_chip *chip)
{
	return mv88e6xxx_stats_get_sset_count(chip, STATS_TYPE_BANK0 |
					      STATS_TYPE_BANK1);
}

static int mv88e6xxx_get_sset_count(struct dsa_switch *ds)
{
	struct mv88e6xxx_chip *chip = ds->priv;

	if (chip->info->ops->stats_get_sset_count)
		return chip->info->ops->stats_get_sset_count(chip);

	return 0;
}

1014
static void mv88e6xxx_stats_get_stats(struct mv88e6xxx_chip *chip, int port,
1015 1016
				      uint64_t *data, int types,
				      u16 bank1_select, u16 histogram)
1017 1018 1019 1020 1021 1022 1023
{
	struct mv88e6xxx_hw_stat *stat;
	int i, j;

	for (i = 0, j = 0; i < ARRAY_SIZE(mv88e6xxx_hw_stats); i++) {
		stat = &mv88e6xxx_hw_stats[i];
		if (stat->type & types) {
1024 1025 1026
			data[j] = _mv88e6xxx_get_ethtool_stat(chip, stat, port,
							      bank1_select,
							      histogram);
1027 1028 1029 1030 1031 1032 1033 1034 1035
			j++;
		}
	}
}

static void mv88e6095_stats_get_stats(struct mv88e6xxx_chip *chip, int port,
				      uint64_t *data)
{
	return mv88e6xxx_stats_get_stats(chip, port, data,
1036 1037
					 STATS_TYPE_BANK0 | STATS_TYPE_PORT,
					 0, GLOBAL_STATS_OP_HIST_RX_TX);
1038 1039 1040 1041 1042 1043
}

static void mv88e6320_stats_get_stats(struct mv88e6xxx_chip *chip, int port,
				      uint64_t *data)
{
	return mv88e6xxx_stats_get_stats(chip, port, data,
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054
					 STATS_TYPE_BANK0 | STATS_TYPE_BANK1,
					 GLOBAL_STATS_OP_BANK_1_BIT_9,
					 GLOBAL_STATS_OP_HIST_RX_TX);
}

static void mv88e6390_stats_get_stats(struct mv88e6xxx_chip *chip, int port,
				      uint64_t *data)
{
	return mv88e6xxx_stats_get_stats(chip, port, data,
					 STATS_TYPE_BANK0 | STATS_TYPE_BANK1,
					 GLOBAL_STATS_OP_BANK_1_BIT_10, 0);
1055 1056 1057 1058 1059 1060 1061 1062 1063
}

static void mv88e6xxx_get_stats(struct mv88e6xxx_chip *chip, int port,
				uint64_t *data)
{
	if (chip->info->ops->stats_get_stats)
		chip->info->ops->stats_get_stats(chip, port, data);
}

1064 1065
static void mv88e6xxx_get_ethtool_stats(struct dsa_switch *ds, int port,
					uint64_t *data)
1066
{
V
Vivien Didelot 已提交
1067
	struct mv88e6xxx_chip *chip = ds->priv;
1068 1069
	int ret;

1070
	mutex_lock(&chip->reg_lock);
1071

1072
	ret = mv88e6xxx_stats_snapshot(chip, port);
1073
	if (ret < 0) {
1074
		mutex_unlock(&chip->reg_lock);
1075 1076
		return;
	}
1077 1078

	mv88e6xxx_get_stats(chip, port, data);
1079

1080
	mutex_unlock(&chip->reg_lock);
1081 1082
}

1083 1084 1085 1086 1087 1088 1089 1090
static int mv88e6xxx_stats_set_histogram(struct mv88e6xxx_chip *chip)
{
	if (chip->info->ops->stats_set_histogram)
		return chip->info->ops->stats_set_histogram(chip);

	return 0;
}

1091
static int mv88e6xxx_get_regs_len(struct dsa_switch *ds, int port)
1092 1093 1094 1095
{
	return 32 * sizeof(u16);
}

1096 1097
static void mv88e6xxx_get_regs(struct dsa_switch *ds, int port,
			       struct ethtool_regs *regs, void *_p)
1098
{
V
Vivien Didelot 已提交
1099
	struct mv88e6xxx_chip *chip = ds->priv;
1100 1101
	int err;
	u16 reg;
1102 1103 1104 1105 1106 1107 1108
	u16 *p = _p;
	int i;

	regs->version = 0;

	memset(p, 0xff, 32 * sizeof(u16));

1109
	mutex_lock(&chip->reg_lock);
1110

1111 1112
	for (i = 0; i < 32; i++) {

1113 1114 1115
		err = mv88e6xxx_port_read(chip, port, i, &reg);
		if (!err)
			p[i] = reg;
1116
	}
1117

1118
	mutex_unlock(&chip->reg_lock);
1119 1120
}

1121
static int _mv88e6xxx_atu_wait(struct mv88e6xxx_chip *chip)
1122
{
1123
	return mv88e6xxx_g1_wait(chip, GLOBAL_ATU_OP, GLOBAL_ATU_OP_BUSY);
1124 1125
}

1126 1127
static int mv88e6xxx_get_eee(struct dsa_switch *ds, int port,
			     struct ethtool_eee *e)
1128
{
V
Vivien Didelot 已提交
1129
	struct mv88e6xxx_chip *chip = ds->priv;
1130 1131
	u16 reg;
	int err;
1132

1133
	if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_EEE))
1134 1135
		return -EOPNOTSUPP;

1136
	mutex_lock(&chip->reg_lock);
1137

1138 1139
	err = mv88e6xxx_phy_read(chip, port, 16, &reg);
	if (err)
1140
		goto out;
1141 1142 1143 1144

	e->eee_enabled = !!(reg & 0x0200);
	e->tx_lpi_enabled = !!(reg & 0x0100);

1145
	err = mv88e6xxx_port_read(chip, port, PORT_STATUS, &reg);
1146
	if (err)
1147
		goto out;
1148

1149
	e->eee_active = !!(reg & PORT_STATUS_EEE);
1150
out:
1151
	mutex_unlock(&chip->reg_lock);
1152 1153

	return err;
1154 1155
}

1156 1157
static int mv88e6xxx_set_eee(struct dsa_switch *ds, int port,
			     struct phy_device *phydev, struct ethtool_eee *e)
1158
{
V
Vivien Didelot 已提交
1159
	struct mv88e6xxx_chip *chip = ds->priv;
1160 1161
	u16 reg;
	int err;
1162

1163
	if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_EEE))
1164 1165
		return -EOPNOTSUPP;

1166
	mutex_lock(&chip->reg_lock);
1167

1168 1169
	err = mv88e6xxx_phy_read(chip, port, 16, &reg);
	if (err)
1170 1171
		goto out;

1172
	reg &= ~0x0300;
1173 1174 1175 1176 1177
	if (e->eee_enabled)
		reg |= 0x0200;
	if (e->tx_lpi_enabled)
		reg |= 0x0100;

1178
	err = mv88e6xxx_phy_write(chip, port, 16, reg);
1179
out:
1180
	mutex_unlock(&chip->reg_lock);
1181

1182
	return err;
1183 1184
}

1185
static int _mv88e6xxx_atu_cmd(struct mv88e6xxx_chip *chip, u16 fid, u16 cmd)
1186
{
1187 1188
	u16 val;
	int err;
1189

1190
	if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_G1_ATU_FID)) {
1191 1192 1193
		err = mv88e6xxx_g1_write(chip, GLOBAL_ATU_FID, fid);
		if (err)
			return err;
1194
	} else if (mv88e6xxx_num_databases(chip) == 256) {
1195
		/* ATU DBNum[7:4] are located in ATU Control 15:12 */
1196 1197 1198
		err = mv88e6xxx_g1_read(chip, GLOBAL_ATU_CONTROL, &val);
		if (err)
			return err;
1199

1200 1201 1202 1203
		err = mv88e6xxx_g1_write(chip, GLOBAL_ATU_CONTROL,
					 (val & 0xfff) | ((fid << 8) & 0xf000));
		if (err)
			return err;
1204 1205 1206

		/* ATU DBNum[3:0] are located in ATU Operation 3:0 */
		cmd |= fid & 0xf;
1207 1208
	}

1209 1210 1211
	err = mv88e6xxx_g1_write(chip, GLOBAL_ATU_OP, cmd);
	if (err)
		return err;
1212

1213
	return _mv88e6xxx_atu_wait(chip);
1214 1215
}

1216
static int _mv88e6xxx_atu_data_write(struct mv88e6xxx_chip *chip,
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235
				     struct mv88e6xxx_atu_entry *entry)
{
	u16 data = entry->state & GLOBAL_ATU_DATA_STATE_MASK;

	if (entry->state != GLOBAL_ATU_DATA_STATE_UNUSED) {
		unsigned int mask, shift;

		if (entry->trunk) {
			data |= GLOBAL_ATU_DATA_TRUNK;
			mask = GLOBAL_ATU_DATA_TRUNK_ID_MASK;
			shift = GLOBAL_ATU_DATA_TRUNK_ID_SHIFT;
		} else {
			mask = GLOBAL_ATU_DATA_PORT_VECTOR_MASK;
			shift = GLOBAL_ATU_DATA_PORT_VECTOR_SHIFT;
		}

		data |= (entry->portv_trunkid << shift) & mask;
	}

1236
	return mv88e6xxx_g1_write(chip, GLOBAL_ATU_DATA, data);
1237 1238
}

1239
static int _mv88e6xxx_atu_flush_move(struct mv88e6xxx_chip *chip,
1240 1241
				     struct mv88e6xxx_atu_entry *entry,
				     bool static_too)
1242
{
1243 1244
	int op;
	int err;
1245

1246
	err = _mv88e6xxx_atu_wait(chip);
1247 1248
	if (err)
		return err;
1249

1250
	err = _mv88e6xxx_atu_data_write(chip, entry);
1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261
	if (err)
		return err;

	if (entry->fid) {
		op = static_too ? GLOBAL_ATU_OP_FLUSH_MOVE_ALL_DB :
			GLOBAL_ATU_OP_FLUSH_MOVE_NON_STATIC_DB;
	} else {
		op = static_too ? GLOBAL_ATU_OP_FLUSH_MOVE_ALL :
			GLOBAL_ATU_OP_FLUSH_MOVE_NON_STATIC;
	}

1262
	return _mv88e6xxx_atu_cmd(chip, entry->fid, op);
1263 1264
}

1265
static int _mv88e6xxx_atu_flush(struct mv88e6xxx_chip *chip,
1266
				u16 fid, bool static_too)
1267 1268 1269 1270 1271
{
	struct mv88e6xxx_atu_entry entry = {
		.fid = fid,
		.state = 0, /* EntryState bits must be 0 */
	};
1272

1273
	return _mv88e6xxx_atu_flush_move(chip, &entry, static_too);
1274 1275
}

1276
static int _mv88e6xxx_atu_move(struct mv88e6xxx_chip *chip, u16 fid,
1277
			       int from_port, int to_port, bool static_too)
1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290
{
	struct mv88e6xxx_atu_entry entry = {
		.trunk = false,
		.fid = fid,
	};

	/* EntryState bits must be 0xF */
	entry.state = GLOBAL_ATU_DATA_STATE_MASK;

	/* ToPort and FromPort are respectively in PortVec bits 7:4 and 3:0 */
	entry.portv_trunkid = (to_port & 0x0f) << 4;
	entry.portv_trunkid |= from_port & 0x0f;

1291
	return _mv88e6xxx_atu_flush_move(chip, &entry, static_too);
1292 1293
}

1294
static int _mv88e6xxx_atu_remove(struct mv88e6xxx_chip *chip, u16 fid,
1295
				 int port, bool static_too)
1296 1297
{
	/* Destination port 0xF means remove the entries */
1298
	return _mv88e6xxx_atu_move(chip, fid, port, 0x0f, static_too);
1299 1300
}

1301
static int _mv88e6xxx_port_based_vlan_map(struct mv88e6xxx_chip *chip, int port)
1302
{
1303 1304
	struct net_device *bridge = chip->ports[port].bridge_dev;
	struct dsa_switch *ds = chip->ds;
1305 1306 1307 1308 1309
	u16 output_ports = 0;
	int i;

	/* allow CPU port or DSA link(s) to send frames to every port */
	if (dsa_is_cpu_port(ds, port) || dsa_is_dsa_port(ds, port)) {
1310
		output_ports = ~0;
1311
	} else {
1312
		for (i = 0; i < mv88e6xxx_num_ports(chip); ++i) {
1313
			/* allow sending frames to every group member */
1314
			if (bridge && chip->ports[i].bridge_dev == bridge)
1315 1316 1317 1318 1319 1320 1321 1322 1323 1324
				output_ports |= BIT(i);

			/* allow sending frames to CPU port and DSA link(s) */
			if (dsa_is_cpu_port(ds, i) || dsa_is_dsa_port(ds, i))
				output_ports |= BIT(i);
		}
	}

	/* prevent frames from going back out of the port they came in on */
	output_ports &= ~BIT(port);
1325

1326
	return mv88e6xxx_port_set_vlan_map(chip, port, output_ports);
1327 1328
}

1329 1330
static void mv88e6xxx_port_stp_state_set(struct dsa_switch *ds, int port,
					 u8 state)
1331
{
V
Vivien Didelot 已提交
1332
	struct mv88e6xxx_chip *chip = ds->priv;
1333
	int stp_state;
1334
	int err;
1335 1336 1337

	switch (state) {
	case BR_STATE_DISABLED:
1338
		stp_state = PORT_CONTROL_STATE_DISABLED;
1339 1340 1341
		break;
	case BR_STATE_BLOCKING:
	case BR_STATE_LISTENING:
1342
		stp_state = PORT_CONTROL_STATE_BLOCKING;
1343 1344
		break;
	case BR_STATE_LEARNING:
1345
		stp_state = PORT_CONTROL_STATE_LEARNING;
1346 1347 1348
		break;
	case BR_STATE_FORWARDING:
	default:
1349
		stp_state = PORT_CONTROL_STATE_FORWARDING;
1350 1351 1352
		break;
	}

1353
	mutex_lock(&chip->reg_lock);
1354
	err = mv88e6xxx_port_set_state(chip, port, stp_state);
1355
	mutex_unlock(&chip->reg_lock);
1356 1357

	if (err)
1358
		netdev_err(ds->ports[port].netdev, "failed to update state\n");
1359 1360
}

1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373
static void mv88e6xxx_port_fast_age(struct dsa_switch *ds, int port)
{
	struct mv88e6xxx_chip *chip = ds->priv;
	int err;

	mutex_lock(&chip->reg_lock);
	err = _mv88e6xxx_atu_remove(chip, 0, port, false);
	mutex_unlock(&chip->reg_lock);

	if (err)
		netdev_err(ds->ports[port].netdev, "failed to flush ATU\n");
}

1374
static int _mv88e6xxx_vtu_wait(struct mv88e6xxx_chip *chip)
1375
{
1376
	return mv88e6xxx_g1_wait(chip, GLOBAL_VTU_OP, GLOBAL_VTU_OP_BUSY);
1377 1378
}

1379
static int _mv88e6xxx_vtu_cmd(struct mv88e6xxx_chip *chip, u16 op)
1380
{
1381
	int err;
1382

1383 1384 1385
	err = mv88e6xxx_g1_write(chip, GLOBAL_VTU_OP, op);
	if (err)
		return err;
1386

1387
	return _mv88e6xxx_vtu_wait(chip);
1388 1389
}

1390
static int _mv88e6xxx_vtu_stu_flush(struct mv88e6xxx_chip *chip)
1391 1392 1393
{
	int ret;

1394
	ret = _mv88e6xxx_vtu_wait(chip);
1395 1396 1397
	if (ret < 0)
		return ret;

1398
	return _mv88e6xxx_vtu_cmd(chip, GLOBAL_VTU_OP_FLUSH_ALL);
1399 1400
}

1401
static int _mv88e6xxx_vtu_stu_data_read(struct mv88e6xxx_chip *chip,
1402
					struct mv88e6xxx_vtu_entry *entry,
1403 1404 1405
					unsigned int nibble_offset)
{
	u16 regs[3];
1406
	int i, err;
1407 1408

	for (i = 0; i < 3; ++i) {
1409
		u16 *reg = &regs[i];
1410

1411 1412 1413
		err = mv88e6xxx_g1_read(chip, GLOBAL_VTU_DATA_0_3 + i, reg);
		if (err)
			return err;
1414 1415
	}

1416
	for (i = 0; i < mv88e6xxx_num_ports(chip); ++i) {
1417 1418 1419 1420 1421 1422 1423 1424 1425
		unsigned int shift = (i % 4) * 4 + nibble_offset;
		u16 reg = regs[i / 4];

		entry->data[i] = (reg >> shift) & GLOBAL_VTU_STU_DATA_MASK;
	}

	return 0;
}

1426
static int mv88e6xxx_vtu_data_read(struct mv88e6xxx_chip *chip,
1427
				   struct mv88e6xxx_vtu_entry *entry)
1428
{
1429
	return _mv88e6xxx_vtu_stu_data_read(chip, entry, 0);
1430 1431
}

1432
static int mv88e6xxx_stu_data_read(struct mv88e6xxx_chip *chip,
1433
				   struct mv88e6xxx_vtu_entry *entry)
1434
{
1435
	return _mv88e6xxx_vtu_stu_data_read(chip, entry, 2);
1436 1437
}

1438
static int _mv88e6xxx_vtu_stu_data_write(struct mv88e6xxx_chip *chip,
1439
					 struct mv88e6xxx_vtu_entry *entry,
1440 1441 1442
					 unsigned int nibble_offset)
{
	u16 regs[3] = { 0 };
1443
	int i, err;
1444

1445
	for (i = 0; i < mv88e6xxx_num_ports(chip); ++i) {
1446 1447 1448 1449 1450 1451 1452
		unsigned int shift = (i % 4) * 4 + nibble_offset;
		u8 data = entry->data[i];

		regs[i / 4] |= (data & GLOBAL_VTU_STU_DATA_MASK) << shift;
	}

	for (i = 0; i < 3; ++i) {
1453 1454 1455 1456 1457
		u16 reg = regs[i];

		err = mv88e6xxx_g1_write(chip, GLOBAL_VTU_DATA_0_3 + i, reg);
		if (err)
			return err;
1458 1459 1460 1461 1462
	}

	return 0;
}

1463
static int mv88e6xxx_vtu_data_write(struct mv88e6xxx_chip *chip,
1464
				    struct mv88e6xxx_vtu_entry *entry)
1465
{
1466
	return _mv88e6xxx_vtu_stu_data_write(chip, entry, 0);
1467 1468
}

1469
static int mv88e6xxx_stu_data_write(struct mv88e6xxx_chip *chip,
1470
				    struct mv88e6xxx_vtu_entry *entry)
1471
{
1472
	return _mv88e6xxx_vtu_stu_data_write(chip, entry, 2);
1473 1474
}

1475
static int _mv88e6xxx_vtu_vid_write(struct mv88e6xxx_chip *chip, u16 vid)
1476
{
1477 1478
	return mv88e6xxx_g1_write(chip, GLOBAL_VTU_VID,
				  vid & GLOBAL_VTU_VID_MASK);
1479 1480
}

1481
static int _mv88e6xxx_vtu_getnext(struct mv88e6xxx_chip *chip,
1482
				  struct mv88e6xxx_vtu_entry *entry)
1483
{
1484
	struct mv88e6xxx_vtu_entry next = { 0 };
1485 1486
	u16 val;
	int err;
1487

1488 1489 1490
	err = _mv88e6xxx_vtu_wait(chip);
	if (err)
		return err;
1491

1492 1493 1494
	err = _mv88e6xxx_vtu_cmd(chip, GLOBAL_VTU_OP_VTU_GET_NEXT);
	if (err)
		return err;
1495

1496 1497 1498
	err = mv88e6xxx_g1_read(chip, GLOBAL_VTU_VID, &val);
	if (err)
		return err;
1499

1500 1501
	next.vid = val & GLOBAL_VTU_VID_MASK;
	next.valid = !!(val & GLOBAL_VTU_VID_VALID);
1502 1503

	if (next.valid) {
1504 1505 1506
		err = mv88e6xxx_vtu_data_read(chip, &next);
		if (err)
			return err;
1507

1508
		if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_G1_VTU_FID)) {
1509 1510 1511
			err = mv88e6xxx_g1_read(chip, GLOBAL_VTU_FID, &val);
			if (err)
				return err;
1512

1513
			next.fid = val & GLOBAL_VTU_FID_MASK;
1514
		} else if (mv88e6xxx_num_databases(chip) == 256) {
1515 1516 1517
			/* VTU DBNum[7:4] are located in VTU Operation 11:8, and
			 * VTU DBNum[3:0] are located in VTU Operation 3:0
			 */
1518 1519 1520
			err = mv88e6xxx_g1_read(chip, GLOBAL_VTU_OP, &val);
			if (err)
				return err;
1521

1522 1523
			next.fid = (val & 0xf00) >> 4;
			next.fid |= val & 0xf;
1524
		}
1525

1526
		if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_STU)) {
1527 1528 1529
			err = mv88e6xxx_g1_read(chip, GLOBAL_VTU_SID, &val);
			if (err)
				return err;
1530

1531
			next.sid = val & GLOBAL_VTU_SID_MASK;
1532 1533 1534 1535 1536 1537 1538
		}
	}

	*entry = next;
	return 0;
}

1539 1540 1541
static int mv88e6xxx_port_vlan_dump(struct dsa_switch *ds, int port,
				    struct switchdev_obj_port_vlan *vlan,
				    int (*cb)(struct switchdev_obj *obj))
1542
{
V
Vivien Didelot 已提交
1543
	struct mv88e6xxx_chip *chip = ds->priv;
1544
	struct mv88e6xxx_vtu_entry next;
1545 1546 1547
	u16 pvid;
	int err;

1548
	if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_VTU))
1549 1550
		return -EOPNOTSUPP;

1551
	mutex_lock(&chip->reg_lock);
1552

1553
	err = mv88e6xxx_port_get_pvid(chip, port, &pvid);
1554 1555 1556
	if (err)
		goto unlock;

1557
	err = _mv88e6xxx_vtu_vid_write(chip, GLOBAL_VTU_VID_MASK);
1558 1559 1560 1561
	if (err)
		goto unlock;

	do {
1562
		err = _mv88e6xxx_vtu_getnext(chip, &next);
1563 1564 1565 1566 1567 1568 1569 1570 1571 1572
		if (err)
			break;

		if (!next.valid)
			break;

		if (next.data[port] == GLOBAL_VTU_DATA_MEMBER_TAG_NON_MEMBER)
			continue;

		/* reinit and dump this VLAN obj */
1573 1574
		vlan->vid_begin = next.vid;
		vlan->vid_end = next.vid;
1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588
		vlan->flags = 0;

		if (next.data[port] == GLOBAL_VTU_DATA_MEMBER_TAG_UNTAGGED)
			vlan->flags |= BRIDGE_VLAN_INFO_UNTAGGED;

		if (next.vid == pvid)
			vlan->flags |= BRIDGE_VLAN_INFO_PVID;

		err = cb(&vlan->obj);
		if (err)
			break;
	} while (next.vid < GLOBAL_VTU_VID_MASK);

unlock:
1589
	mutex_unlock(&chip->reg_lock);
1590 1591 1592 1593

	return err;
}

1594
static int _mv88e6xxx_vtu_loadpurge(struct mv88e6xxx_chip *chip,
1595
				    struct mv88e6xxx_vtu_entry *entry)
1596
{
1597
	u16 op = GLOBAL_VTU_OP_VTU_LOAD_PURGE;
1598
	u16 reg = 0;
1599
	int err;
1600

1601 1602 1603
	err = _mv88e6xxx_vtu_wait(chip);
	if (err)
		return err;
1604 1605 1606 1607 1608

	if (!entry->valid)
		goto loadpurge;

	/* Write port member tags */
1609 1610 1611
	err = mv88e6xxx_vtu_data_write(chip, entry);
	if (err)
		return err;
1612

1613
	if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_STU)) {
1614
		reg = entry->sid & GLOBAL_VTU_SID_MASK;
1615 1616 1617
		err = mv88e6xxx_g1_write(chip, GLOBAL_VTU_SID, reg);
		if (err)
			return err;
1618
	}
1619

1620
	if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_G1_VTU_FID)) {
1621
		reg = entry->fid & GLOBAL_VTU_FID_MASK;
1622 1623 1624
		err = mv88e6xxx_g1_write(chip, GLOBAL_VTU_FID, reg);
		if (err)
			return err;
1625
	} else if (mv88e6xxx_num_databases(chip) == 256) {
1626 1627 1628 1629 1630
		/* VTU DBNum[7:4] are located in VTU Operation 11:8, and
		 * VTU DBNum[3:0] are located in VTU Operation 3:0
		 */
		op |= (entry->fid & 0xf0) << 8;
		op |= entry->fid & 0xf;
1631 1632 1633 1634 1635
	}

	reg = GLOBAL_VTU_VID_VALID;
loadpurge:
	reg |= entry->vid & GLOBAL_VTU_VID_MASK;
1636 1637 1638
	err = mv88e6xxx_g1_write(chip, GLOBAL_VTU_VID, reg);
	if (err)
		return err;
1639

1640
	return _mv88e6xxx_vtu_cmd(chip, op);
1641 1642
}

1643
static int _mv88e6xxx_stu_getnext(struct mv88e6xxx_chip *chip, u8 sid,
1644
				  struct mv88e6xxx_vtu_entry *entry)
1645
{
1646
	struct mv88e6xxx_vtu_entry next = { 0 };
1647 1648
	u16 val;
	int err;
1649

1650 1651 1652
	err = _mv88e6xxx_vtu_wait(chip);
	if (err)
		return err;
1653

1654 1655 1656 1657
	err = mv88e6xxx_g1_write(chip, GLOBAL_VTU_SID,
				 sid & GLOBAL_VTU_SID_MASK);
	if (err)
		return err;
1658

1659 1660 1661
	err = _mv88e6xxx_vtu_cmd(chip, GLOBAL_VTU_OP_STU_GET_NEXT);
	if (err)
		return err;
1662

1663 1664 1665
	err = mv88e6xxx_g1_read(chip, GLOBAL_VTU_SID, &val);
	if (err)
		return err;
1666

1667
	next.sid = val & GLOBAL_VTU_SID_MASK;
1668

1669 1670 1671
	err = mv88e6xxx_g1_read(chip, GLOBAL_VTU_VID, &val);
	if (err)
		return err;
1672

1673
	next.valid = !!(val & GLOBAL_VTU_VID_VALID);
1674 1675

	if (next.valid) {
1676 1677 1678
		err = mv88e6xxx_stu_data_read(chip, &next);
		if (err)
			return err;
1679 1680 1681 1682 1683 1684
	}

	*entry = next;
	return 0;
}

1685
static int _mv88e6xxx_stu_loadpurge(struct mv88e6xxx_chip *chip,
1686
				    struct mv88e6xxx_vtu_entry *entry)
1687 1688
{
	u16 reg = 0;
1689
	int err;
1690

1691 1692 1693
	err = _mv88e6xxx_vtu_wait(chip);
	if (err)
		return err;
1694 1695 1696 1697 1698

	if (!entry->valid)
		goto loadpurge;

	/* Write port states */
1699 1700 1701
	err = mv88e6xxx_stu_data_write(chip, entry);
	if (err)
		return err;
1702 1703 1704

	reg = GLOBAL_VTU_VID_VALID;
loadpurge:
1705 1706 1707
	err = mv88e6xxx_g1_write(chip, GLOBAL_VTU_VID, reg);
	if (err)
		return err;
1708 1709

	reg = entry->sid & GLOBAL_VTU_SID_MASK;
1710 1711 1712
	err = mv88e6xxx_g1_write(chip, GLOBAL_VTU_SID, reg);
	if (err)
		return err;
1713

1714
	return _mv88e6xxx_vtu_cmd(chip, GLOBAL_VTU_OP_STU_LOAD_PURGE);
1715 1716
}

1717
static int _mv88e6xxx_fid_new(struct mv88e6xxx_chip *chip, u16 *fid)
1718 1719
{
	DECLARE_BITMAP(fid_bitmap, MV88E6XXX_N_FID);
1720
	struct mv88e6xxx_vtu_entry vlan;
1721
	int i, err;
1722 1723 1724

	bitmap_zero(fid_bitmap, MV88E6XXX_N_FID);

1725
	/* Set every FID bit used by the (un)bridged ports */
1726
	for (i = 0; i < mv88e6xxx_num_ports(chip); ++i) {
1727
		err = mv88e6xxx_port_get_fid(chip, i, fid);
1728 1729 1730 1731 1732 1733
		if (err)
			return err;

		set_bit(*fid, fid_bitmap);
	}

1734
	/* Set every FID bit used by the VLAN entries */
1735
	err = _mv88e6xxx_vtu_vid_write(chip, GLOBAL_VTU_VID_MASK);
1736 1737 1738 1739
	if (err)
		return err;

	do {
1740
		err = _mv88e6xxx_vtu_getnext(chip, &vlan);
1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753
		if (err)
			return err;

		if (!vlan.valid)
			break;

		set_bit(vlan.fid, fid_bitmap);
	} while (vlan.vid < GLOBAL_VTU_VID_MASK);

	/* The reset value 0x000 is used to indicate that multiple address
	 * databases are not needed. Return the next positive available.
	 */
	*fid = find_next_zero_bit(fid_bitmap, MV88E6XXX_N_FID, 1);
1754
	if (unlikely(*fid >= mv88e6xxx_num_databases(chip)))
1755 1756 1757
		return -ENOSPC;

	/* Clear the database */
1758
	return _mv88e6xxx_atu_flush(chip, *fid, true);
1759 1760
}

1761
static int _mv88e6xxx_vtu_new(struct mv88e6xxx_chip *chip, u16 vid,
1762
			      struct mv88e6xxx_vtu_entry *entry)
1763
{
1764
	struct dsa_switch *ds = chip->ds;
1765
	struct mv88e6xxx_vtu_entry vlan = {
1766 1767 1768
		.valid = true,
		.vid = vid,
	};
1769 1770
	int i, err;

1771
	err = _mv88e6xxx_fid_new(chip, &vlan.fid);
1772 1773
	if (err)
		return err;
1774

1775
	/* exclude all ports except the CPU and DSA ports */
1776
	for (i = 0; i < mv88e6xxx_num_ports(chip); ++i)
1777 1778 1779
		vlan.data[i] = dsa_is_cpu_port(ds, i) || dsa_is_dsa_port(ds, i)
			? GLOBAL_VTU_DATA_MEMBER_TAG_UNMODIFIED
			: GLOBAL_VTU_DATA_MEMBER_TAG_NON_MEMBER;
1780

1781 1782
	if (mv88e6xxx_6097_family(chip) || mv88e6xxx_6165_family(chip) ||
	    mv88e6xxx_6351_family(chip) || mv88e6xxx_6352_family(chip)) {
1783
		struct mv88e6xxx_vtu_entry vstp;
1784 1785 1786 1787 1788 1789

		/* Adding a VTU entry requires a valid STU entry. As VSTP is not
		 * implemented, only one STU entry is needed to cover all VTU
		 * entries. Thus, validate the SID 0.
		 */
		vlan.sid = 0;
1790
		err = _mv88e6xxx_stu_getnext(chip, GLOBAL_VTU_SID_MASK, &vstp);
1791 1792 1793 1794 1795 1796 1797 1798
		if (err)
			return err;

		if (vstp.sid != vlan.sid || !vstp.valid) {
			memset(&vstp, 0, sizeof(vstp));
			vstp.valid = true;
			vstp.sid = vlan.sid;

1799
			err = _mv88e6xxx_stu_loadpurge(chip, &vstp);
1800 1801 1802 1803 1804 1805 1806 1807 1808
			if (err)
				return err;
		}
	}

	*entry = vlan;
	return 0;
}

1809
static int _mv88e6xxx_vtu_get(struct mv88e6xxx_chip *chip, u16 vid,
1810
			      struct mv88e6xxx_vtu_entry *entry, bool creat)
1811 1812 1813 1814 1815 1816
{
	int err;

	if (!vid)
		return -EINVAL;

1817
	err = _mv88e6xxx_vtu_vid_write(chip, vid - 1);
1818 1819 1820
	if (err)
		return err;

1821
	err = _mv88e6xxx_vtu_getnext(chip, entry);
1822 1823 1824 1825 1826 1827 1828 1829 1830 1831
	if (err)
		return err;

	if (entry->vid != vid || !entry->valid) {
		if (!creat)
			return -EOPNOTSUPP;
		/* -ENOENT would've been more appropriate, but switchdev expects
		 * -EOPNOTSUPP to inform bridge about an eventual software VLAN.
		 */

1832
		err = _mv88e6xxx_vtu_new(chip, vid, entry);
1833 1834 1835 1836 1837
	}

	return err;
}

1838 1839 1840
static int mv88e6xxx_port_check_hw_vlan(struct dsa_switch *ds, int port,
					u16 vid_begin, u16 vid_end)
{
V
Vivien Didelot 已提交
1841
	struct mv88e6xxx_chip *chip = ds->priv;
1842
	struct mv88e6xxx_vtu_entry vlan;
1843 1844 1845 1846 1847
	int i, err;

	if (!vid_begin)
		return -EOPNOTSUPP;

1848
	mutex_lock(&chip->reg_lock);
1849

1850
	err = _mv88e6xxx_vtu_vid_write(chip, vid_begin - 1);
1851 1852 1853 1854
	if (err)
		goto unlock;

	do {
1855
		err = _mv88e6xxx_vtu_getnext(chip, &vlan);
1856 1857 1858 1859 1860 1861 1862 1863 1864
		if (err)
			goto unlock;

		if (!vlan.valid)
			break;

		if (vlan.vid > vid_end)
			break;

1865
		for (i = 0; i < mv88e6xxx_num_ports(chip); ++i) {
1866 1867 1868 1869 1870 1871 1872
			if (dsa_is_dsa_port(ds, i) || dsa_is_cpu_port(ds, i))
				continue;

			if (vlan.data[i] ==
			    GLOBAL_VTU_DATA_MEMBER_TAG_NON_MEMBER)
				continue;

1873 1874
			if (chip->ports[i].bridge_dev ==
			    chip->ports[port].bridge_dev)
1875 1876
				break; /* same bridge, check next VLAN */

1877
			netdev_warn(ds->ports[port].netdev,
1878 1879
				    "hardware VLAN %d already used by %s\n",
				    vlan.vid,
1880
				    netdev_name(chip->ports[i].bridge_dev));
1881 1882 1883 1884 1885 1886
			err = -EOPNOTSUPP;
			goto unlock;
		}
	} while (vlan.vid < vid_end);

unlock:
1887
	mutex_unlock(&chip->reg_lock);
1888 1889 1890 1891

	return err;
}

1892 1893
static int mv88e6xxx_port_vlan_filtering(struct dsa_switch *ds, int port,
					 bool vlan_filtering)
1894
{
V
Vivien Didelot 已提交
1895
	struct mv88e6xxx_chip *chip = ds->priv;
1896
	u16 mode = vlan_filtering ? PORT_CONTROL_2_8021Q_SECURE :
1897
		PORT_CONTROL_2_8021Q_DISABLED;
1898
	int err;
1899

1900
	if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_VTU))
1901 1902
		return -EOPNOTSUPP;

1903
	mutex_lock(&chip->reg_lock);
1904
	err = mv88e6xxx_port_set_8021q_mode(chip, port, mode);
1905
	mutex_unlock(&chip->reg_lock);
1906

1907
	return err;
1908 1909
}

1910 1911 1912 1913
static int
mv88e6xxx_port_vlan_prepare(struct dsa_switch *ds, int port,
			    const struct switchdev_obj_port_vlan *vlan,
			    struct switchdev_trans *trans)
1914
{
V
Vivien Didelot 已提交
1915
	struct mv88e6xxx_chip *chip = ds->priv;
1916 1917
	int err;

1918
	if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_VTU))
1919 1920
		return -EOPNOTSUPP;

1921 1922 1923 1924 1925 1926 1927 1928
	/* If the requested port doesn't belong to the same bridge as the VLAN
	 * members, do not support it (yet) and fallback to software VLAN.
	 */
	err = mv88e6xxx_port_check_hw_vlan(ds, port, vlan->vid_begin,
					   vlan->vid_end);
	if (err)
		return err;

1929 1930 1931 1932 1933 1934
	/* We don't need any dynamic resource from the kernel (yet),
	 * so skip the prepare phase.
	 */
	return 0;
}

1935
static int _mv88e6xxx_port_vlan_add(struct mv88e6xxx_chip *chip, int port,
1936
				    u16 vid, bool untagged)
1937
{
1938
	struct mv88e6xxx_vtu_entry vlan;
1939 1940
	int err;

1941
	err = _mv88e6xxx_vtu_get(chip, vid, &vlan, true);
1942
	if (err)
1943
		return err;
1944 1945 1946 1947 1948

	vlan.data[port] = untagged ?
		GLOBAL_VTU_DATA_MEMBER_TAG_UNTAGGED :
		GLOBAL_VTU_DATA_MEMBER_TAG_TAGGED;

1949
	return _mv88e6xxx_vtu_loadpurge(chip, &vlan);
1950 1951
}

1952 1953 1954
static void mv88e6xxx_port_vlan_add(struct dsa_switch *ds, int port,
				    const struct switchdev_obj_port_vlan *vlan,
				    struct switchdev_trans *trans)
1955
{
V
Vivien Didelot 已提交
1956
	struct mv88e6xxx_chip *chip = ds->priv;
1957 1958 1959 1960
	bool untagged = vlan->flags & BRIDGE_VLAN_INFO_UNTAGGED;
	bool pvid = vlan->flags & BRIDGE_VLAN_INFO_PVID;
	u16 vid;

1961
	if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_VTU))
1962 1963
		return;

1964
	mutex_lock(&chip->reg_lock);
1965

1966
	for (vid = vlan->vid_begin; vid <= vlan->vid_end; ++vid)
1967
		if (_mv88e6xxx_port_vlan_add(chip, port, vid, untagged))
1968 1969
			netdev_err(ds->ports[port].netdev,
				   "failed to add VLAN %d%c\n",
1970
				   vid, untagged ? 'u' : 't');
1971

1972
	if (pvid && mv88e6xxx_port_set_pvid(chip, port, vlan->vid_end))
1973
		netdev_err(ds->ports[port].netdev, "failed to set PVID %d\n",
1974
			   vlan->vid_end);
1975

1976
	mutex_unlock(&chip->reg_lock);
1977 1978
}

1979
static int _mv88e6xxx_port_vlan_del(struct mv88e6xxx_chip *chip,
1980
				    int port, u16 vid)
1981
{
1982
	struct dsa_switch *ds = chip->ds;
1983
	struct mv88e6xxx_vtu_entry vlan;
1984 1985
	int i, err;

1986
	err = _mv88e6xxx_vtu_get(chip, vid, &vlan, false);
1987
	if (err)
1988
		return err;
1989

1990 1991
	/* Tell switchdev if this VLAN is handled in software */
	if (vlan.data[port] == GLOBAL_VTU_DATA_MEMBER_TAG_NON_MEMBER)
1992
		return -EOPNOTSUPP;
1993 1994 1995 1996

	vlan.data[port] = GLOBAL_VTU_DATA_MEMBER_TAG_NON_MEMBER;

	/* keep the VLAN unless all ports are excluded */
1997
	vlan.valid = false;
1998
	for (i = 0; i < mv88e6xxx_num_ports(chip); ++i) {
1999
		if (dsa_is_cpu_port(ds, i) || dsa_is_dsa_port(ds, i))
2000 2001 2002
			continue;

		if (vlan.data[i] != GLOBAL_VTU_DATA_MEMBER_TAG_NON_MEMBER) {
2003
			vlan.valid = true;
2004 2005 2006 2007
			break;
		}
	}

2008
	err = _mv88e6xxx_vtu_loadpurge(chip, &vlan);
2009 2010 2011
	if (err)
		return err;

2012
	return _mv88e6xxx_atu_remove(chip, vlan.fid, port, false);
2013 2014
}

2015 2016
static int mv88e6xxx_port_vlan_del(struct dsa_switch *ds, int port,
				   const struct switchdev_obj_port_vlan *vlan)
2017
{
V
Vivien Didelot 已提交
2018
	struct mv88e6xxx_chip *chip = ds->priv;
2019 2020 2021
	u16 pvid, vid;
	int err = 0;

2022
	if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_VTU))
2023 2024
		return -EOPNOTSUPP;

2025
	mutex_lock(&chip->reg_lock);
2026

2027
	err = mv88e6xxx_port_get_pvid(chip, port, &pvid);
2028 2029 2030
	if (err)
		goto unlock;

2031
	for (vid = vlan->vid_begin; vid <= vlan->vid_end; ++vid) {
2032
		err = _mv88e6xxx_port_vlan_del(chip, port, vid);
2033 2034 2035 2036
		if (err)
			goto unlock;

		if (vid == pvid) {
2037
			err = mv88e6xxx_port_set_pvid(chip, port, 0);
2038 2039 2040 2041 2042
			if (err)
				goto unlock;
		}
	}

2043
unlock:
2044
	mutex_unlock(&chip->reg_lock);
2045 2046 2047 2048

	return err;
}

2049
static int _mv88e6xxx_atu_mac_write(struct mv88e6xxx_chip *chip,
2050
				    const unsigned char *addr)
2051
{
2052
	int i, err;
2053 2054

	for (i = 0; i < 3; i++) {
2055 2056 2057 2058
		err = mv88e6xxx_g1_write(chip, GLOBAL_ATU_MAC_01 + i,
					 (addr[i * 2] << 8) | addr[i * 2 + 1]);
		if (err)
			return err;
2059 2060 2061 2062 2063
	}

	return 0;
}

2064
static int _mv88e6xxx_atu_mac_read(struct mv88e6xxx_chip *chip,
2065
				   unsigned char *addr)
2066
{
2067 2068
	u16 val;
	int i, err;
2069 2070

	for (i = 0; i < 3; i++) {
2071 2072 2073 2074 2075 2076
		err = mv88e6xxx_g1_read(chip, GLOBAL_ATU_MAC_01 + i, &val);
		if (err)
			return err;

		addr[i * 2] = val >> 8;
		addr[i * 2 + 1] = val & 0xff;
2077 2078 2079 2080 2081
	}

	return 0;
}

2082
static int _mv88e6xxx_atu_load(struct mv88e6xxx_chip *chip,
2083
			       struct mv88e6xxx_atu_entry *entry)
2084
{
2085 2086
	int ret;

2087
	ret = _mv88e6xxx_atu_wait(chip);
2088 2089 2090
	if (ret < 0)
		return ret;

2091
	ret = _mv88e6xxx_atu_mac_write(chip, entry->mac);
2092 2093 2094
	if (ret < 0)
		return ret;

2095
	ret = _mv88e6xxx_atu_data_write(chip, entry);
2096
	if (ret < 0)
2097 2098
		return ret;

2099
	return _mv88e6xxx_atu_cmd(chip, entry->fid, GLOBAL_ATU_OP_LOAD_DB);
2100
}
2101

2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137
static int _mv88e6xxx_atu_getnext(struct mv88e6xxx_chip *chip, u16 fid,
				  struct mv88e6xxx_atu_entry *entry);

static int mv88e6xxx_atu_get(struct mv88e6xxx_chip *chip, int fid,
			     const u8 *addr, struct mv88e6xxx_atu_entry *entry)
{
	struct mv88e6xxx_atu_entry next;
	int err;

	eth_broadcast_addr(next.mac);

	err = _mv88e6xxx_atu_mac_write(chip, next.mac);
	if (err)
		return err;

	do {
		err = _mv88e6xxx_atu_getnext(chip, fid, &next);
		if (err)
			return err;

		if (next.state == GLOBAL_ATU_DATA_STATE_UNUSED)
			break;

		if (ether_addr_equal(next.mac, addr)) {
			*entry = next;
			return 0;
		}
	} while (!is_broadcast_ether_addr(next.mac));

	memset(entry, 0, sizeof(*entry));
	entry->fid = fid;
	ether_addr_copy(entry->mac, addr);

	return 0;
}

2138 2139 2140
static int mv88e6xxx_port_db_load_purge(struct mv88e6xxx_chip *chip, int port,
					const unsigned char *addr, u16 vid,
					u8 state)
2141
{
2142
	struct mv88e6xxx_vtu_entry vlan;
2143
	struct mv88e6xxx_atu_entry entry;
2144 2145
	int err;

2146 2147
	/* Null VLAN ID corresponds to the port private database */
	if (vid == 0)
2148
		err = mv88e6xxx_port_get_fid(chip, port, &vlan.fid);
2149
	else
2150
		err = _mv88e6xxx_vtu_get(chip, vid, &vlan, false);
2151 2152
	if (err)
		return err;
2153

2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165
	err = mv88e6xxx_atu_get(chip, vlan.fid, addr, &entry);
	if (err)
		return err;

	/* Purge the ATU entry only if no port is using it anymore */
	if (state == GLOBAL_ATU_DATA_STATE_UNUSED) {
		entry.portv_trunkid &= ~BIT(port);
		if (!entry.portv_trunkid)
			entry.state = GLOBAL_ATU_DATA_STATE_UNUSED;
	} else {
		entry.portv_trunkid |= BIT(port);
		entry.state = state;
2166 2167
	}

2168
	return _mv88e6xxx_atu_load(chip, &entry);
2169 2170
}

2171 2172 2173
static int mv88e6xxx_port_fdb_prepare(struct dsa_switch *ds, int port,
				      const struct switchdev_obj_port_fdb *fdb,
				      struct switchdev_trans *trans)
V
Vivien Didelot 已提交
2174 2175 2176 2177 2178 2179 2180
{
	/* We don't need any dynamic resource from the kernel (yet),
	 * so skip the prepare phase.
	 */
	return 0;
}

2181 2182 2183
static void mv88e6xxx_port_fdb_add(struct dsa_switch *ds, int port,
				   const struct switchdev_obj_port_fdb *fdb,
				   struct switchdev_trans *trans)
2184
{
V
Vivien Didelot 已提交
2185
	struct mv88e6xxx_chip *chip = ds->priv;
2186

2187
	mutex_lock(&chip->reg_lock);
2188 2189 2190
	if (mv88e6xxx_port_db_load_purge(chip, port, fdb->addr, fdb->vid,
					 GLOBAL_ATU_DATA_STATE_UC_STATIC))
		netdev_err(ds->ports[port].netdev, "failed to load unicast MAC address\n");
2191
	mutex_unlock(&chip->reg_lock);
2192 2193
}

2194 2195
static int mv88e6xxx_port_fdb_del(struct dsa_switch *ds, int port,
				  const struct switchdev_obj_port_fdb *fdb)
2196
{
V
Vivien Didelot 已提交
2197
	struct mv88e6xxx_chip *chip = ds->priv;
2198
	int err;
2199

2200
	mutex_lock(&chip->reg_lock);
2201 2202
	err = mv88e6xxx_port_db_load_purge(chip, port, fdb->addr, fdb->vid,
					   GLOBAL_ATU_DATA_STATE_UNUSED);
2203
	mutex_unlock(&chip->reg_lock);
2204

2205
	return err;
2206 2207
}

2208
static int _mv88e6xxx_atu_getnext(struct mv88e6xxx_chip *chip, u16 fid,
2209
				  struct mv88e6xxx_atu_entry *entry)
2210
{
2211
	struct mv88e6xxx_atu_entry next = { 0 };
2212 2213
	u16 val;
	int err;
2214 2215

	next.fid = fid;
2216

2217 2218 2219
	err = _mv88e6xxx_atu_wait(chip);
	if (err)
		return err;
2220

2221 2222 2223
	err = _mv88e6xxx_atu_cmd(chip, fid, GLOBAL_ATU_OP_GET_NEXT_DB);
	if (err)
		return err;
2224

2225 2226 2227
	err = _mv88e6xxx_atu_mac_read(chip, next.mac);
	if (err)
		return err;
2228

2229 2230 2231
	err = mv88e6xxx_g1_read(chip, GLOBAL_ATU_DATA, &val);
	if (err)
		return err;
2232

2233
	next.state = val & GLOBAL_ATU_DATA_STATE_MASK;
2234 2235 2236
	if (next.state != GLOBAL_ATU_DATA_STATE_UNUSED) {
		unsigned int mask, shift;

2237
		if (val & GLOBAL_ATU_DATA_TRUNK) {
2238 2239 2240 2241 2242 2243 2244 2245 2246
			next.trunk = true;
			mask = GLOBAL_ATU_DATA_TRUNK_ID_MASK;
			shift = GLOBAL_ATU_DATA_TRUNK_ID_SHIFT;
		} else {
			next.trunk = false;
			mask = GLOBAL_ATU_DATA_PORT_VECTOR_MASK;
			shift = GLOBAL_ATU_DATA_PORT_VECTOR_SHIFT;
		}

2247
		next.portv_trunkid = (val & mask) >> shift;
2248
	}
2249

2250
	*entry = next;
2251 2252 2253
	return 0;
}

2254 2255 2256 2257
static int mv88e6xxx_port_db_dump_fid(struct mv88e6xxx_chip *chip,
				      u16 fid, u16 vid, int port,
				      struct switchdev_obj *obj,
				      int (*cb)(struct switchdev_obj *obj))
2258 2259 2260 2261 2262 2263
{
	struct mv88e6xxx_atu_entry addr = {
		.mac = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
	};
	int err;

2264
	err = _mv88e6xxx_atu_mac_write(chip, addr.mac);
2265 2266 2267 2268
	if (err)
		return err;

	do {
2269
		err = _mv88e6xxx_atu_getnext(chip, fid, &addr);
2270
		if (err)
2271
			return err;
2272 2273 2274 2275

		if (addr.state == GLOBAL_ATU_DATA_STATE_UNUSED)
			break;

2276 2277 2278 2279 2280
		if (addr.trunk || (addr.portv_trunkid & BIT(port)) == 0)
			continue;

		if (obj->id == SWITCHDEV_OBJ_ID_PORT_FDB) {
			struct switchdev_obj_port_fdb *fdb;
2281

2282 2283 2284 2285
			if (!is_unicast_ether_addr(addr.mac))
				continue;

			fdb = SWITCHDEV_OBJ_PORT_FDB(obj);
2286 2287
			fdb->vid = vid;
			ether_addr_copy(fdb->addr, addr.mac);
2288 2289 2290 2291
			if (addr.state == GLOBAL_ATU_DATA_STATE_UC_STATIC)
				fdb->ndm_state = NUD_NOARP;
			else
				fdb->ndm_state = NUD_REACHABLE;
2292 2293 2294 2295 2296 2297 2298 2299 2300
		} else if (obj->id == SWITCHDEV_OBJ_ID_PORT_MDB) {
			struct switchdev_obj_port_mdb *mdb;

			if (!is_multicast_ether_addr(addr.mac))
				continue;

			mdb = SWITCHDEV_OBJ_PORT_MDB(obj);
			mdb->vid = vid;
			ether_addr_copy(mdb->addr, addr.mac);
2301 2302
		} else {
			return -EOPNOTSUPP;
2303
		}
2304 2305 2306 2307

		err = cb(obj);
		if (err)
			return err;
2308 2309 2310 2311 2312
	} while (!is_broadcast_ether_addr(addr.mac));

	return err;
}

2313 2314 2315
static int mv88e6xxx_port_db_dump(struct mv88e6xxx_chip *chip, int port,
				  struct switchdev_obj *obj,
				  int (*cb)(struct switchdev_obj *obj))
2316
{
2317
	struct mv88e6xxx_vtu_entry vlan = {
2318 2319
		.vid = GLOBAL_VTU_VID_MASK, /* all ones */
	};
2320
	u16 fid;
2321 2322
	int err;

2323
	/* Dump port's default Filtering Information Database (VLAN ID 0) */
2324
	err = mv88e6xxx_port_get_fid(chip, port, &fid);
2325
	if (err)
2326
		return err;
2327

2328
	err = mv88e6xxx_port_db_dump_fid(chip, fid, 0, port, obj, cb);
2329
	if (err)
2330
		return err;
2331

2332
	/* Dump VLANs' Filtering Information Databases */
2333
	err = _mv88e6xxx_vtu_vid_write(chip, vlan.vid);
2334
	if (err)
2335
		return err;
2336 2337

	do {
2338
		err = _mv88e6xxx_vtu_getnext(chip, &vlan);
2339
		if (err)
2340
			return err;
2341 2342 2343 2344

		if (!vlan.valid)
			break;

2345 2346
		err = mv88e6xxx_port_db_dump_fid(chip, vlan.fid, vlan.vid, port,
						 obj, cb);
2347
		if (err)
2348
			return err;
2349 2350
	} while (vlan.vid < GLOBAL_VTU_VID_MASK);

2351 2352 2353 2354 2355 2356 2357
	return err;
}

static int mv88e6xxx_port_fdb_dump(struct dsa_switch *ds, int port,
				   struct switchdev_obj_port_fdb *fdb,
				   int (*cb)(struct switchdev_obj *obj))
{
V
Vivien Didelot 已提交
2358
	struct mv88e6xxx_chip *chip = ds->priv;
2359 2360 2361 2362
	int err;

	mutex_lock(&chip->reg_lock);
	err = mv88e6xxx_port_db_dump(chip, port, &fdb->obj, cb);
2363
	mutex_unlock(&chip->reg_lock);
2364 2365 2366 2367

	return err;
}

2368 2369
static int mv88e6xxx_port_bridge_join(struct dsa_switch *ds, int port,
				      struct net_device *bridge)
2370
{
V
Vivien Didelot 已提交
2371
	struct mv88e6xxx_chip *chip = ds->priv;
2372
	int i, err = 0;
2373

2374
	mutex_lock(&chip->reg_lock);
2375

2376
	/* Assign the bridge and remap each port's VLANTable */
2377
	chip->ports[port].bridge_dev = bridge;
2378

2379
	for (i = 0; i < mv88e6xxx_num_ports(chip); ++i) {
2380 2381
		if (chip->ports[i].bridge_dev == bridge) {
			err = _mv88e6xxx_port_based_vlan_map(chip, i);
2382 2383 2384 2385 2386
			if (err)
				break;
		}
	}

2387
	mutex_unlock(&chip->reg_lock);
2388

2389
	return err;
2390 2391
}

2392
static void mv88e6xxx_port_bridge_leave(struct dsa_switch *ds, int port)
2393
{
V
Vivien Didelot 已提交
2394
	struct mv88e6xxx_chip *chip = ds->priv;
2395
	struct net_device *bridge = chip->ports[port].bridge_dev;
2396
	int i;
2397

2398
	mutex_lock(&chip->reg_lock);
2399

2400
	/* Unassign the bridge and remap each port's VLANTable */
2401
	chip->ports[port].bridge_dev = NULL;
2402

2403
	for (i = 0; i < mv88e6xxx_num_ports(chip); ++i)
2404 2405
		if (i == port || chip->ports[i].bridge_dev == bridge)
			if (_mv88e6xxx_port_based_vlan_map(chip, i))
2406 2407
				netdev_warn(ds->ports[i].netdev,
					    "failed to remap\n");
2408

2409
	mutex_unlock(&chip->reg_lock);
2410 2411
}

2412
static int mv88e6xxx_switch_reset(struct mv88e6xxx_chip *chip)
2413
{
2414
	bool ppu_active = mv88e6xxx_has(chip, MV88E6XXX_FLAG_PPU_ACTIVE);
2415
	u16 is_reset = (ppu_active ? 0x8800 : 0xc800);
2416
	struct gpio_desc *gpiod = chip->reset;
2417
	unsigned long timeout;
2418
	u16 reg;
2419
	int err;
2420 2421 2422
	int i;

	/* Set all ports to the disabled state. */
2423
	for (i = 0; i < mv88e6xxx_num_ports(chip); i++) {
2424 2425
		err = mv88e6xxx_port_set_state(chip, i,
					       PORT_CONTROL_STATE_DISABLED);
2426 2427
		if (err)
			return err;
2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445
	}

	/* Wait for transmit queues to drain. */
	usleep_range(2000, 4000);

	/* If there is a gpio connected to the reset pin, toggle it */
	if (gpiod) {
		gpiod_set_value_cansleep(gpiod, 1);
		usleep_range(10000, 20000);
		gpiod_set_value_cansleep(gpiod, 0);
		usleep_range(10000, 20000);
	}

	/* Reset the switch. Keep the PPU active if requested. The PPU
	 * needs to be active to support indirect phy register access
	 * through global registers 0x18 and 0x19.
	 */
	if (ppu_active)
2446
		err = mv88e6xxx_g1_write(chip, 0x04, 0xc000);
2447
	else
2448
		err = mv88e6xxx_g1_write(chip, 0x04, 0xc400);
2449 2450
	if (err)
		return err;
2451 2452 2453 2454

	/* Wait up to one second for reset to complete. */
	timeout = jiffies + 1 * HZ;
	while (time_before(jiffies, timeout)) {
2455 2456 2457
		err = mv88e6xxx_g1_read(chip, 0x00, &reg);
		if (err)
			return err;
2458

2459
		if ((reg & is_reset) == is_reset)
2460 2461 2462 2463
			break;
		usleep_range(1000, 2000);
	}
	if (time_after(jiffies, timeout))
2464
		err = -ETIMEDOUT;
2465
	else
2466
		err = 0;
2467

2468
	return err;
2469 2470
}

2471
static int mv88e6xxx_serdes_power_on(struct mv88e6xxx_chip *chip)
2472
{
2473 2474
	u16 val;
	int err;
2475

2476 2477 2478 2479
	/* Clear Power Down bit */
	err = mv88e6xxx_serdes_read(chip, MII_BMCR, &val);
	if (err)
		return err;
2480

2481 2482 2483
	if (val & BMCR_PDOWN) {
		val &= ~BMCR_PDOWN;
		err = mv88e6xxx_serdes_write(chip, MII_BMCR, val);
2484 2485
	}

2486
	return err;
2487 2488
}

2489
static int mv88e6xxx_setup_port(struct mv88e6xxx_chip *chip, int port)
2490
{
2491
	struct dsa_switch *ds = chip->ds;
2492
	int err;
2493
	u16 reg;
2494

2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508
	/* MAC Forcing register: don't force link, speed, duplex or flow control
	 * state to any particular values on physical ports, but force the CPU
	 * port and all DSA ports to their maximum bandwidth and full duplex.
	 */
	if (dsa_is_cpu_port(ds, port) || dsa_is_dsa_port(ds, port))
		err = mv88e6xxx_port_setup_mac(chip, port, LINK_FORCED_UP,
					       SPEED_MAX, DUPLEX_FULL,
					       PHY_INTERFACE_MODE_NA);
	else
		err = mv88e6xxx_port_setup_mac(chip, port, LINK_UNFORCED,
					       SPEED_UNFORCED, DUPLEX_UNFORCED,
					       PHY_INTERFACE_MODE_NA);
	if (err)
		return err;
2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524

	/* Port Control: disable Drop-on-Unlock, disable Drop-on-Lock,
	 * disable Header mode, enable IGMP/MLD snooping, disable VLAN
	 * tunneling, determine priority by looking at 802.1p and IP
	 * priority fields (IP prio has precedence), and set STP state
	 * to Forwarding.
	 *
	 * If this is the CPU link, use DSA or EDSA tagging depending
	 * on which tagging mode was configured.
	 *
	 * If this is a link to another switch, use DSA tagging mode.
	 *
	 * If this is the upstream port for this switch, enable
	 * forwarding of unknown unicasts and multicasts.
	 */
	reg = 0;
2525 2526 2527 2528
	if (mv88e6xxx_6352_family(chip) || mv88e6xxx_6351_family(chip) ||
	    mv88e6xxx_6165_family(chip) || mv88e6xxx_6097_family(chip) ||
	    mv88e6xxx_6095_family(chip) || mv88e6xxx_6065_family(chip) ||
	    mv88e6xxx_6185_family(chip) || mv88e6xxx_6320_family(chip))
2529 2530 2531 2532
		reg = PORT_CONTROL_IGMP_MLD_SNOOP |
		PORT_CONTROL_USE_TAG | PORT_CONTROL_USE_IP |
		PORT_CONTROL_STATE_FORWARDING;
	if (dsa_is_cpu_port(ds, port)) {
2533
		if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_EDSA))
2534
			reg |= PORT_CONTROL_FRAME_ETHER_TYPE_DSA |
2535
				PORT_CONTROL_FORWARD_UNKNOWN_MC;
2536 2537
		else
			reg |= PORT_CONTROL_DSA_TAG;
2538 2539
		reg |= PORT_CONTROL_EGRESS_ADD_TAG |
			PORT_CONTROL_FORWARD_UNKNOWN;
2540
	}
2541
	if (dsa_is_dsa_port(ds, port)) {
2542 2543
		if (mv88e6xxx_6095_family(chip) ||
		    mv88e6xxx_6185_family(chip))
2544
			reg |= PORT_CONTROL_DSA_TAG;
2545 2546 2547 2548 2549
		if (mv88e6xxx_6352_family(chip) ||
		    mv88e6xxx_6351_family(chip) ||
		    mv88e6xxx_6165_family(chip) ||
		    mv88e6xxx_6097_family(chip) ||
		    mv88e6xxx_6320_family(chip)) {
2550
			reg |= PORT_CONTROL_FRAME_MODE_DSA;
2551 2552
		}

2553 2554 2555 2556 2557
		if (port == dsa_upstream_port(ds))
			reg |= PORT_CONTROL_FORWARD_UNKNOWN |
				PORT_CONTROL_FORWARD_UNKNOWN_MC;
	}
	if (reg) {
2558 2559 2560
		err = mv88e6xxx_port_write(chip, port, PORT_CONTROL, reg);
		if (err)
			return err;
2561 2562
	}

2563 2564 2565
	/* If this port is connected to a SerDes, make sure the SerDes is not
	 * powered down.
	 */
2566
	if (mv88e6xxx_has(chip, MV88E6XXX_FLAGS_SERDES)) {
2567 2568 2569 2570 2571 2572 2573 2574 2575 2576
		err = mv88e6xxx_port_read(chip, port, PORT_STATUS, &reg);
		if (err)
			return err;
		reg &= PORT_STATUS_CMODE_MASK;
		if ((reg == PORT_STATUS_CMODE_100BASE_X) ||
		    (reg == PORT_STATUS_CMODE_1000BASE_X) ||
		    (reg == PORT_STATUS_CMODE_SGMII)) {
			err = mv88e6xxx_serdes_power_on(chip);
			if (err < 0)
				return err;
2577 2578 2579
		}
	}

2580
	/* Port Control 2: don't force a good FCS, set the maximum frame size to
2581
	 * 10240 bytes, disable 802.1q tags checking, don't discard tagged or
2582 2583 2584
	 * untagged frames on this port, do a destination address lookup on all
	 * received packets as usual, disable ARP mirroring and don't send a
	 * copy of all transmitted/received frames on this port to the CPU.
2585 2586
	 */
	reg = 0;
2587 2588 2589 2590
	if (mv88e6xxx_6352_family(chip) || mv88e6xxx_6351_family(chip) ||
	    mv88e6xxx_6165_family(chip) || mv88e6xxx_6097_family(chip) ||
	    mv88e6xxx_6095_family(chip) || mv88e6xxx_6320_family(chip) ||
	    mv88e6xxx_6185_family(chip))
2591 2592
		reg = PORT_CONTROL_2_MAP_DA;

2593 2594
	if (mv88e6xxx_6352_family(chip) || mv88e6xxx_6351_family(chip) ||
	    mv88e6xxx_6165_family(chip) || mv88e6xxx_6320_family(chip))
2595 2596
		reg |= PORT_CONTROL_2_JUMBO_10240;

2597
	if (mv88e6xxx_6095_family(chip) || mv88e6xxx_6185_family(chip)) {
2598 2599 2600 2601 2602 2603 2604 2605 2606
		/* Set the upstream port this port should use */
		reg |= dsa_upstream_port(ds);
		/* enable forwarding of unknown multicast addresses to
		 * the upstream port
		 */
		if (port == dsa_upstream_port(ds))
			reg |= PORT_CONTROL_2_FORWARD_UNKNOWN;
	}

2607
	reg |= PORT_CONTROL_2_8021Q_DISABLED;
2608

2609
	if (reg) {
2610 2611 2612
		err = mv88e6xxx_port_write(chip, port, PORT_CONTROL_2, reg);
		if (err)
			return err;
2613 2614 2615 2616 2617 2618 2619
	}

	/* Port Association Vector: when learning source addresses
	 * of packets, add the address to the address database using
	 * a port bitmap that has only the bit for this port set and
	 * the other bits clear.
	 */
2620
	reg = 1 << port;
2621 2622
	/* Disable learning for CPU port */
	if (dsa_is_cpu_port(ds, port))
2623
		reg = 0;
2624

2625 2626 2627
	err = mv88e6xxx_port_write(chip, port, PORT_ASSOC_VECTOR, reg);
	if (err)
		return err;
2628 2629

	/* Egress rate control 2: disable egress rate control. */
2630 2631 2632
	err = mv88e6xxx_port_write(chip, port, PORT_RATE_CONTROL_2, 0x0000);
	if (err)
		return err;
2633

2634 2635 2636
	if (mv88e6xxx_6352_family(chip) || mv88e6xxx_6351_family(chip) ||
	    mv88e6xxx_6165_family(chip) || mv88e6xxx_6097_family(chip) ||
	    mv88e6xxx_6320_family(chip)) {
2637 2638 2639 2640
		/* Do not limit the period of time that this port can
		 * be paused for by the remote end or the period of
		 * time that this port can pause the remote end.
		 */
2641 2642 2643
		err = mv88e6xxx_port_write(chip, port, PORT_PAUSE_CTRL, 0x0000);
		if (err)
			return err;
2644 2645 2646 2647 2648

		/* Port ATU control: disable limiting the number of
		 * address database entries that this port is allowed
		 * to use.
		 */
2649 2650
		err = mv88e6xxx_port_write(chip, port, PORT_ATU_CONTROL,
					   0x0000);
2651 2652 2653
		/* Priority Override: disable DA, SA and VTU priority
		 * override.
		 */
2654 2655 2656 2657
		err = mv88e6xxx_port_write(chip, port, PORT_PRI_OVERRIDE,
					   0x0000);
		if (err)
			return err;
2658 2659 2660 2661

		/* Port Ethertype: use the Ethertype DSA Ethertype
		 * value.
		 */
2662
		if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_EDSA)) {
2663 2664 2665 2666
			err = mv88e6xxx_port_write(chip, port, PORT_ETH_TYPE,
						   ETH_P_EDSA);
			if (err)
				return err;
2667 2668
		}

2669 2670 2671
		/* Tag Remap: use an identity 802.1p prio -> switch
		 * prio mapping.
		 */
2672 2673 2674 2675
		err = mv88e6xxx_port_write(chip, port, PORT_TAG_REGMAP_0123,
					   0x3210);
		if (err)
			return err;
2676 2677 2678 2679

		/* Tag Remap 2: use an identity 802.1p prio -> switch
		 * prio mapping.
		 */
2680 2681 2682 2683
		err = mv88e6xxx_port_write(chip, port, PORT_TAG_REGMAP_4567,
					   0x7654);
		if (err)
			return err;
2684 2685
	}

2686
	/* Rate Control: disable ingress rate limiting. */
2687 2688 2689
	if (mv88e6xxx_6352_family(chip) || mv88e6xxx_6351_family(chip) ||
	    mv88e6xxx_6165_family(chip) || mv88e6xxx_6097_family(chip) ||
	    mv88e6xxx_6320_family(chip)) {
2690 2691 2692 2693
		err = mv88e6xxx_port_write(chip, port, PORT_RATE_CONTROL,
					   0x0001);
		if (err)
			return err;
2694
	} else if (mv88e6xxx_6185_family(chip) || mv88e6xxx_6095_family(chip)) {
2695 2696 2697 2698
		err = mv88e6xxx_port_write(chip, port, PORT_RATE_CONTROL,
					   0x0000);
		if (err)
			return err;
2699 2700
	}

2701 2702
	/* Port Control 1: disable trunking, disable sending
	 * learning messages to this port.
2703
	 */
2704 2705 2706
	err = mv88e6xxx_port_write(chip, port, PORT_CONTROL_1, 0x0000);
	if (err)
		return err;
2707

2708
	/* Port based VLAN map: give each port the same default address
2709 2710
	 * database, and allow bidirectional communication between the
	 * CPU and DSA port(s), and the other ports.
2711
	 */
2712
	err = mv88e6xxx_port_set_fid(chip, port, 0);
2713 2714
	if (err)
		return err;
2715

2716 2717 2718
	err = _mv88e6xxx_port_based_vlan_map(chip, port);
	if (err)
		return err;
2719 2720 2721 2722

	/* Default VLAN ID and priority: don't set a default VLAN
	 * ID, and set the default packet priority to zero.
	 */
2723
	return mv88e6xxx_port_write(chip, port, PORT_DEFAULT_VLAN, 0x0000);
2724 2725
}

2726
static int mv88e6xxx_g1_set_switch_mac(struct mv88e6xxx_chip *chip, u8 *addr)
2727 2728 2729
{
	int err;

2730
	err = mv88e6xxx_g1_write(chip, GLOBAL_MAC_01, (addr[0] << 8) | addr[1]);
2731 2732 2733
	if (err)
		return err;

2734
	err = mv88e6xxx_g1_write(chip, GLOBAL_MAC_23, (addr[2] << 8) | addr[3]);
2735 2736 2737
	if (err)
		return err;

2738 2739 2740 2741 2742
	err = mv88e6xxx_g1_write(chip, GLOBAL_MAC_45, (addr[4] << 8) | addr[5]);
	if (err)
		return err;

	return 0;
2743 2744
}

2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760
static int mv88e6xxx_g1_set_age_time(struct mv88e6xxx_chip *chip,
				     unsigned int msecs)
{
	const unsigned int coeff = chip->info->age_time_coeff;
	const unsigned int min = 0x01 * coeff;
	const unsigned int max = 0xff * coeff;
	u8 age_time;
	u16 val;
	int err;

	if (msecs < min || msecs > max)
		return -ERANGE;

	/* Round to nearest multiple of coeff */
	age_time = (msecs + coeff / 2) / coeff;

2761
	err = mv88e6xxx_g1_read(chip, GLOBAL_ATU_CONTROL, &val);
2762 2763 2764 2765 2766 2767 2768
	if (err)
		return err;

	/* AgeTime is 11:4 bits */
	val &= ~0xff0;
	val |= age_time << 4;

2769
	return mv88e6xxx_g1_write(chip, GLOBAL_ATU_CONTROL, val);
2770 2771
}

2772 2773 2774
static int mv88e6xxx_set_ageing_time(struct dsa_switch *ds,
				     unsigned int ageing_time)
{
V
Vivien Didelot 已提交
2775
	struct mv88e6xxx_chip *chip = ds->priv;
2776 2777 2778 2779 2780 2781 2782 2783 2784
	int err;

	mutex_lock(&chip->reg_lock);
	err = mv88e6xxx_g1_set_age_time(chip, ageing_time);
	mutex_unlock(&chip->reg_lock);

	return err;
}

2785
static int mv88e6xxx_g1_setup(struct mv88e6xxx_chip *chip)
2786
{
2787
	struct dsa_switch *ds = chip->ds;
2788
	u32 upstream_port = dsa_upstream_port(ds);
2789
	u16 reg;
2790
	int err;
2791

2792 2793 2794
	/* Enable the PHY Polling Unit if present, don't discard any packets,
	 * and mask all interrupt sources.
	 */
2795 2796 2797 2798 2799
	err = mv88e6xxx_g1_read(chip, GLOBAL_CONTROL, &reg);
	if (err < 0)
		return err;

	reg &= ~GLOBAL_CONTROL_PPU_ENABLE;
2800 2801
	if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_PPU) ||
	    mv88e6xxx_has(chip, MV88E6XXX_FLAG_PPU_ACTIVE))
2802 2803
		reg |= GLOBAL_CONTROL_PPU_ENABLE;

2804
	err = mv88e6xxx_g1_write(chip, GLOBAL_CONTROL, reg);
2805 2806 2807
	if (err)
		return err;

2808 2809 2810 2811 2812 2813
	/* Configure the upstream port, and configure it as the port to which
	 * ingress and egress and ARP monitor frames are to be sent.
	 */
	reg = upstream_port << GLOBAL_MONITOR_CONTROL_INGRESS_SHIFT |
		upstream_port << GLOBAL_MONITOR_CONTROL_EGRESS_SHIFT |
		upstream_port << GLOBAL_MONITOR_CONTROL_ARP_SHIFT;
2814
	err = mv88e6xxx_g1_write(chip, GLOBAL_MONITOR_CONTROL, reg);
2815 2816 2817
	if (err)
		return err;

2818
	/* Disable remote management, and set the switch's DSA device number. */
2819 2820 2821
	err = mv88e6xxx_g1_write(chip, GLOBAL_CONTROL_2,
				 GLOBAL_CONTROL_2_MULTIPLE_CASCADE |
				 (ds->index & 0x1f));
2822 2823 2824
	if (err)
		return err;

2825 2826 2827 2828 2829
	/* Clear all the VTU and STU entries */
	err = _mv88e6xxx_vtu_stu_flush(chip);
	if (err < 0)
		return err;

2830 2831 2832 2833
	/* Set the default address aging time to 5 minutes, and
	 * enable address learn messages to be sent to all message
	 * ports.
	 */
2834 2835
	err = mv88e6xxx_g1_write(chip, GLOBAL_ATU_CONTROL,
				 GLOBAL_ATU_CONTROL_LEARN2ALL);
2836
	if (err)
2837
		return err;
2838

2839 2840
	err = mv88e6xxx_g1_set_age_time(chip, 300000);
	if (err)
2841 2842 2843 2844 2845 2846 2847
		return err;

	/* Clear all ATU entries */
	err = _mv88e6xxx_atu_flush(chip, 0, true);
	if (err)
		return err;

2848
	/* Configure the IP ToS mapping registers. */
2849
	err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_0, 0x0000);
2850
	if (err)
2851
		return err;
2852
	err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_1, 0x0000);
2853
	if (err)
2854
		return err;
2855
	err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_2, 0x5555);
2856
	if (err)
2857
		return err;
2858
	err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_3, 0x5555);
2859
	if (err)
2860
		return err;
2861
	err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_4, 0xaaaa);
2862
	if (err)
2863
		return err;
2864
	err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_5, 0xaaaa);
2865
	if (err)
2866
		return err;
2867
	err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_6, 0xffff);
2868
	if (err)
2869
		return err;
2870
	err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_7, 0xffff);
2871
	if (err)
2872
		return err;
2873 2874

	/* Configure the IEEE 802.1p priority mapping register. */
2875
	err = mv88e6xxx_g1_write(chip, GLOBAL_IEEE_PRI, 0xfa41);
2876
	if (err)
2877
		return err;
2878

2879 2880 2881 2882 2883
	/* Initialize the statistics unit */
	err = mv88e6xxx_stats_set_histogram(chip);
	if (err)
		return err;

2884
	/* Clear the statistics counters for all ports */
2885 2886
	err = mv88e6xxx_g1_write(chip, GLOBAL_STATS_OP,
				 GLOBAL_STATS_OP_FLUSH_ALL);
2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897
	if (err)
		return err;

	/* Wait for the flush to complete. */
	err = _mv88e6xxx_stats_wait(chip);
	if (err)
		return err;

	return 0;
}

2898
static int mv88e6xxx_setup(struct dsa_switch *ds)
2899
{
V
Vivien Didelot 已提交
2900
	struct mv88e6xxx_chip *chip = ds->priv;
2901
	int err;
2902 2903
	int i;

2904 2905
	chip->ds = ds;
	ds->slave_mii_bus = chip->mdio_bus;
2906

2907
	mutex_lock(&chip->reg_lock);
2908

2909
	/* Setup Switch Port Registers */
2910
	for (i = 0; i < mv88e6xxx_num_ports(chip); i++) {
2911 2912 2913 2914 2915 2916 2917
		err = mv88e6xxx_setup_port(chip, i);
		if (err)
			goto unlock;
	}

	/* Setup Switch Global 1 Registers */
	err = mv88e6xxx_g1_setup(chip);
2918 2919 2920
	if (err)
		goto unlock;

2921 2922 2923
	/* Setup Switch Global 2 Registers */
	if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_GLOBAL2)) {
		err = mv88e6xxx_g2_setup(chip);
2924 2925 2926
		if (err)
			goto unlock;
	}
2927

2928
unlock:
2929
	mutex_unlock(&chip->reg_lock);
2930

2931
	return err;
2932 2933
}

2934 2935
static int mv88e6xxx_set_addr(struct dsa_switch *ds, u8 *addr)
{
V
Vivien Didelot 已提交
2936
	struct mv88e6xxx_chip *chip = ds->priv;
2937 2938
	int err;

2939 2940
	if (!chip->info->ops->set_switch_mac)
		return -EOPNOTSUPP;
2941

2942 2943
	mutex_lock(&chip->reg_lock);
	err = chip->info->ops->set_switch_mac(chip, addr);
2944 2945 2946 2947 2948
	mutex_unlock(&chip->reg_lock);

	return err;
}

2949
static int mv88e6xxx_mdio_read(struct mii_bus *bus, int phy, int reg)
2950
{
2951
	struct mv88e6xxx_chip *chip = bus->priv;
2952 2953
	u16 val;
	int err;
2954

2955
	if (phy >= mv88e6xxx_num_ports(chip))
2956
		return 0xffff;
2957

2958
	mutex_lock(&chip->reg_lock);
2959
	err = mv88e6xxx_phy_read(chip, phy, reg, &val);
2960
	mutex_unlock(&chip->reg_lock);
2961 2962

	return err ? err : val;
2963 2964
}

2965
static int mv88e6xxx_mdio_write(struct mii_bus *bus, int phy, int reg, u16 val)
2966
{
2967
	struct mv88e6xxx_chip *chip = bus->priv;
2968
	int err;
2969

2970
	if (phy >= mv88e6xxx_num_ports(chip))
2971
		return 0xffff;
2972

2973
	mutex_lock(&chip->reg_lock);
2974
	err = mv88e6xxx_phy_write(chip, phy, reg, val);
2975
	mutex_unlock(&chip->reg_lock);
2976 2977

	return err;
2978 2979
}

2980
static int mv88e6xxx_mdio_register(struct mv88e6xxx_chip *chip,
2981 2982 2983 2984 2985 2986 2987
				   struct device_node *np)
{
	static int index;
	struct mii_bus *bus;
	int err;

	if (np)
2988
		chip->mdio_np = of_get_child_by_name(np, "mdio");
2989

2990
	bus = devm_mdiobus_alloc(chip->dev);
2991 2992 2993
	if (!bus)
		return -ENOMEM;

2994
	bus->priv = (void *)chip;
2995 2996 2997 2998 2999 3000 3001 3002 3003 3004
	if (np) {
		bus->name = np->full_name;
		snprintf(bus->id, MII_BUS_ID_SIZE, "%s", np->full_name);
	} else {
		bus->name = "mv88e6xxx SMI";
		snprintf(bus->id, MII_BUS_ID_SIZE, "mv88e6xxx-%d", index++);
	}

	bus->read = mv88e6xxx_mdio_read;
	bus->write = mv88e6xxx_mdio_write;
3005
	bus->parent = chip->dev;
3006

3007 3008
	if (chip->mdio_np)
		err = of_mdiobus_register(bus, chip->mdio_np);
3009 3010 3011
	else
		err = mdiobus_register(bus);
	if (err) {
3012
		dev_err(chip->dev, "Cannot register MDIO bus (%d)\n", err);
3013 3014
		goto out;
	}
3015
	chip->mdio_bus = bus;
3016 3017 3018 3019

	return 0;

out:
3020 3021
	if (chip->mdio_np)
		of_node_put(chip->mdio_np);
3022 3023 3024 3025

	return err;
}

3026
static void mv88e6xxx_mdio_unregister(struct mv88e6xxx_chip *chip)
3027 3028

{
3029
	struct mii_bus *bus = chip->mdio_bus;
3030 3031 3032

	mdiobus_unregister(bus);

3033 3034
	if (chip->mdio_np)
		of_node_put(chip->mdio_np);
3035 3036
}

3037 3038 3039 3040
#ifdef CONFIG_NET_DSA_HWMON

static int mv88e61xx_get_temp(struct dsa_switch *ds, int *temp)
{
V
Vivien Didelot 已提交
3041
	struct mv88e6xxx_chip *chip = ds->priv;
3042
	u16 val;
3043 3044 3045 3046
	int ret;

	*temp = 0;

3047
	mutex_lock(&chip->reg_lock);
3048

3049
	ret = mv88e6xxx_phy_write(chip, 0x0, 0x16, 0x6);
3050 3051 3052 3053
	if (ret < 0)
		goto error;

	/* Enable temperature sensor */
3054
	ret = mv88e6xxx_phy_read(chip, 0x0, 0x1a, &val);
3055 3056 3057
	if (ret < 0)
		goto error;

3058
	ret = mv88e6xxx_phy_write(chip, 0x0, 0x1a, val | (1 << 5));
3059 3060 3061 3062 3063 3064
	if (ret < 0)
		goto error;

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

3065 3066
	ret = mv88e6xxx_phy_read(chip, 0x0, 0x1a, &val);
	if (ret < 0)
3067 3068 3069
		goto error;

	/* Disable temperature sensor */
3070
	ret = mv88e6xxx_phy_write(chip, 0x0, 0x1a, val & ~(1 << 5));
3071 3072 3073 3074 3075 3076
	if (ret < 0)
		goto error;

	*temp = ((val & 0x1f) - 5) * 5;

error:
3077
	mv88e6xxx_phy_write(chip, 0x0, 0x16, 0x0);
3078
	mutex_unlock(&chip->reg_lock);
3079 3080 3081 3082 3083
	return ret;
}

static int mv88e63xx_get_temp(struct dsa_switch *ds, int *temp)
{
V
Vivien Didelot 已提交
3084
	struct mv88e6xxx_chip *chip = ds->priv;
3085
	int phy = mv88e6xxx_6320_family(chip) ? 3 : 0;
3086
	u16 val;
3087 3088 3089 3090
	int ret;

	*temp = 0;

3091 3092 3093
	mutex_lock(&chip->reg_lock);
	ret = mv88e6xxx_phy_page_read(chip, phy, 6, 27, &val);
	mutex_unlock(&chip->reg_lock);
3094 3095 3096
	if (ret < 0)
		return ret;

3097
	*temp = (val & 0xff) - 25;
3098 3099 3100 3101

	return 0;
}

3102
static int mv88e6xxx_get_temp(struct dsa_switch *ds, int *temp)
3103
{
V
Vivien Didelot 已提交
3104
	struct mv88e6xxx_chip *chip = ds->priv;
3105

3106
	if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_TEMP))
3107 3108
		return -EOPNOTSUPP;

3109
	if (mv88e6xxx_6320_family(chip) || mv88e6xxx_6352_family(chip))
3110 3111 3112 3113 3114
		return mv88e63xx_get_temp(ds, temp);

	return mv88e61xx_get_temp(ds, temp);
}

3115
static int mv88e6xxx_get_temp_limit(struct dsa_switch *ds, int *temp)
3116
{
V
Vivien Didelot 已提交
3117
	struct mv88e6xxx_chip *chip = ds->priv;
3118
	int phy = mv88e6xxx_6320_family(chip) ? 3 : 0;
3119
	u16 val;
3120 3121
	int ret;

3122
	if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_TEMP_LIMIT))
3123 3124 3125 3126
		return -EOPNOTSUPP;

	*temp = 0;

3127 3128 3129
	mutex_lock(&chip->reg_lock);
	ret = mv88e6xxx_phy_page_read(chip, phy, 6, 26, &val);
	mutex_unlock(&chip->reg_lock);
3130 3131 3132
	if (ret < 0)
		return ret;

3133
	*temp = (((val >> 8) & 0x1f) * 5) - 25;
3134 3135 3136 3137

	return 0;
}

3138
static int mv88e6xxx_set_temp_limit(struct dsa_switch *ds, int temp)
3139
{
V
Vivien Didelot 已提交
3140
	struct mv88e6xxx_chip *chip = ds->priv;
3141
	int phy = mv88e6xxx_6320_family(chip) ? 3 : 0;
3142 3143
	u16 val;
	int err;
3144

3145
	if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_TEMP_LIMIT))
3146 3147
		return -EOPNOTSUPP;

3148 3149 3150 3151
	mutex_lock(&chip->reg_lock);
	err = mv88e6xxx_phy_page_read(chip, phy, 6, 26, &val);
	if (err)
		goto unlock;
3152
	temp = clamp_val(DIV_ROUND_CLOSEST(temp, 5) + 5, 0, 0x1f);
3153 3154 3155 3156 3157 3158
	err = mv88e6xxx_phy_page_write(chip, phy, 6, 26,
				       (val & 0xe0ff) | (temp << 8));
unlock:
	mutex_unlock(&chip->reg_lock);

	return err;
3159 3160
}

3161
static int mv88e6xxx_get_temp_alarm(struct dsa_switch *ds, bool *alarm)
3162
{
V
Vivien Didelot 已提交
3163
	struct mv88e6xxx_chip *chip = ds->priv;
3164
	int phy = mv88e6xxx_6320_family(chip) ? 3 : 0;
3165
	u16 val;
3166 3167
	int ret;

3168
	if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_TEMP_LIMIT))
3169 3170 3171 3172
		return -EOPNOTSUPP;

	*alarm = false;

3173 3174 3175
	mutex_lock(&chip->reg_lock);
	ret = mv88e6xxx_phy_page_read(chip, phy, 6, 26, &val);
	mutex_unlock(&chip->reg_lock);
3176 3177 3178
	if (ret < 0)
		return ret;

3179
	*alarm = !!(val & 0x40);
3180 3181 3182 3183 3184

	return 0;
}
#endif /* CONFIG_NET_DSA_HWMON */

3185 3186
static int mv88e6xxx_get_eeprom_len(struct dsa_switch *ds)
{
V
Vivien Didelot 已提交
3187
	struct mv88e6xxx_chip *chip = ds->priv;
3188 3189 3190 3191 3192 3193 3194

	return chip->eeprom_len;
}

static int mv88e6xxx_get_eeprom(struct dsa_switch *ds,
				struct ethtool_eeprom *eeprom, u8 *data)
{
V
Vivien Didelot 已提交
3195
	struct mv88e6xxx_chip *chip = ds->priv;
3196 3197
	int err;

3198 3199
	if (!chip->info->ops->get_eeprom)
		return -EOPNOTSUPP;
3200

3201 3202
	mutex_lock(&chip->reg_lock);
	err = chip->info->ops->get_eeprom(chip, eeprom, data);
3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215
	mutex_unlock(&chip->reg_lock);

	if (err)
		return err;

	eeprom->magic = 0xc3ec4951;

	return 0;
}

static int mv88e6xxx_set_eeprom(struct dsa_switch *ds,
				struct ethtool_eeprom *eeprom, u8 *data)
{
V
Vivien Didelot 已提交
3216
	struct mv88e6xxx_chip *chip = ds->priv;
3217 3218
	int err;

3219 3220 3221
	if (!chip->info->ops->set_eeprom)
		return -EOPNOTSUPP;

3222 3223 3224 3225
	if (eeprom->magic != 0xc3ec4951)
		return -EINVAL;

	mutex_lock(&chip->reg_lock);
3226
	err = chip->info->ops->set_eeprom(chip, eeprom, data);
3227 3228 3229 3230 3231
	mutex_unlock(&chip->reg_lock);

	return err;
}

3232
static const struct mv88e6xxx_ops mv88e6085_ops = {
3233
	/* MV88E6XXX_FAMILY_6097 */
3234
	.set_switch_mac = mv88e6xxx_g1_set_switch_mac,
3235 3236
	.phy_read = mv88e6xxx_phy_ppu_read,
	.phy_write = mv88e6xxx_phy_ppu_write,
3237
	.port_set_link = mv88e6xxx_port_set_link,
3238
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3239
	.port_set_speed = mv88e6185_port_set_speed,
3240
	.stats_snapshot = mv88e6xxx_g1_stats_snapshot,
3241 3242
	.stats_get_sset_count = mv88e6095_stats_get_sset_count,
	.stats_get_strings = mv88e6095_stats_get_strings,
3243
	.stats_get_stats = mv88e6095_stats_get_stats,
3244 3245 3246
};

static const struct mv88e6xxx_ops mv88e6095_ops = {
3247
	/* MV88E6XXX_FAMILY_6095 */
3248
	.set_switch_mac = mv88e6xxx_g1_set_switch_mac,
3249 3250
	.phy_read = mv88e6xxx_phy_ppu_read,
	.phy_write = mv88e6xxx_phy_ppu_write,
3251
	.port_set_link = mv88e6xxx_port_set_link,
3252
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3253
	.port_set_speed = mv88e6185_port_set_speed,
3254
	.stats_snapshot = mv88e6xxx_g1_stats_snapshot,
3255 3256
	.stats_get_sset_count = mv88e6095_stats_get_sset_count,
	.stats_get_strings = mv88e6095_stats_get_strings,
3257
	.stats_get_stats = mv88e6095_stats_get_stats,
3258 3259 3260
};

static const struct mv88e6xxx_ops mv88e6123_ops = {
3261
	/* MV88E6XXX_FAMILY_6165 */
3262
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3263 3264
	.phy_read = mv88e6xxx_read,
	.phy_write = mv88e6xxx_write,
3265
	.port_set_link = mv88e6xxx_port_set_link,
3266
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3267
	.port_set_speed = mv88e6185_port_set_speed,
3268
	.stats_snapshot = mv88e6xxx_g1_stats_snapshot,
3269 3270
	.stats_get_sset_count = mv88e6095_stats_get_sset_count,
	.stats_get_strings = mv88e6095_stats_get_strings,
3271
	.stats_get_stats = mv88e6095_stats_get_stats,
3272 3273 3274
};

static const struct mv88e6xxx_ops mv88e6131_ops = {
3275
	/* MV88E6XXX_FAMILY_6185 */
3276
	.set_switch_mac = mv88e6xxx_g1_set_switch_mac,
3277 3278
	.phy_read = mv88e6xxx_phy_ppu_read,
	.phy_write = mv88e6xxx_phy_ppu_write,
3279
	.port_set_link = mv88e6xxx_port_set_link,
3280
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3281
	.port_set_speed = mv88e6185_port_set_speed,
3282
	.stats_snapshot = mv88e6xxx_g1_stats_snapshot,
3283 3284
	.stats_get_sset_count = mv88e6095_stats_get_sset_count,
	.stats_get_strings = mv88e6095_stats_get_strings,
3285
	.stats_get_stats = mv88e6095_stats_get_stats,
3286 3287 3288
};

static const struct mv88e6xxx_ops mv88e6161_ops = {
3289
	/* MV88E6XXX_FAMILY_6165 */
3290
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3291 3292
	.phy_read = mv88e6xxx_read,
	.phy_write = mv88e6xxx_write,
3293
	.port_set_link = mv88e6xxx_port_set_link,
3294
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3295
	.port_set_speed = mv88e6185_port_set_speed,
3296
	.stats_snapshot = mv88e6xxx_g1_stats_snapshot,
3297 3298
	.stats_get_sset_count = mv88e6095_stats_get_sset_count,
	.stats_get_strings = mv88e6095_stats_get_strings,
3299
	.stats_get_stats = mv88e6095_stats_get_stats,
3300 3301 3302
};

static const struct mv88e6xxx_ops mv88e6165_ops = {
3303
	/* MV88E6XXX_FAMILY_6165 */
3304
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3305 3306
	.phy_read = mv88e6xxx_read,
	.phy_write = mv88e6xxx_write,
3307
	.port_set_link = mv88e6xxx_port_set_link,
3308
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3309
	.port_set_speed = mv88e6185_port_set_speed,
3310
	.stats_snapshot = mv88e6xxx_g1_stats_snapshot,
3311 3312
	.stats_get_sset_count = mv88e6095_stats_get_sset_count,
	.stats_get_strings = mv88e6095_stats_get_strings,
3313
	.stats_get_stats = mv88e6095_stats_get_stats,
3314 3315 3316
};

static const struct mv88e6xxx_ops mv88e6171_ops = {
3317
	/* MV88E6XXX_FAMILY_6351 */
3318
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3319 3320
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
3321
	.port_set_link = mv88e6xxx_port_set_link,
3322
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3323
	.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
3324
	.port_set_speed = mv88e6185_port_set_speed,
3325
	.stats_snapshot = mv88e6320_g1_stats_snapshot,
3326 3327
	.stats_get_sset_count = mv88e6095_stats_get_sset_count,
	.stats_get_strings = mv88e6095_stats_get_strings,
3328
	.stats_get_stats = mv88e6095_stats_get_stats,
3329 3330 3331
};

static const struct mv88e6xxx_ops mv88e6172_ops = {
3332
	/* MV88E6XXX_FAMILY_6352 */
3333 3334
	.get_eeprom = mv88e6xxx_g2_get_eeprom16,
	.set_eeprom = mv88e6xxx_g2_set_eeprom16,
3335
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3336 3337
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
3338
	.port_set_link = mv88e6xxx_port_set_link,
3339
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3340
	.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
3341
	.port_set_speed = mv88e6352_port_set_speed,
3342
	.stats_snapshot = mv88e6320_g1_stats_snapshot,
3343 3344
	.stats_get_sset_count = mv88e6095_stats_get_sset_count,
	.stats_get_strings = mv88e6095_stats_get_strings,
3345
	.stats_get_stats = mv88e6095_stats_get_stats,
3346 3347 3348
};

static const struct mv88e6xxx_ops mv88e6175_ops = {
3349
	/* MV88E6XXX_FAMILY_6351 */
3350
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3351 3352
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
3353
	.port_set_link = mv88e6xxx_port_set_link,
3354
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3355
	.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
3356
	.port_set_speed = mv88e6185_port_set_speed,
3357
	.stats_snapshot = mv88e6320_g1_stats_snapshot,
3358 3359
	.stats_get_sset_count = mv88e6095_stats_get_sset_count,
	.stats_get_strings = mv88e6095_stats_get_strings,
3360
	.stats_get_stats = mv88e6095_stats_get_stats,
3361 3362 3363
};

static const struct mv88e6xxx_ops mv88e6176_ops = {
3364
	/* MV88E6XXX_FAMILY_6352 */
3365 3366
	.get_eeprom = mv88e6xxx_g2_get_eeprom16,
	.set_eeprom = mv88e6xxx_g2_set_eeprom16,
3367
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3368 3369
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
3370
	.port_set_link = mv88e6xxx_port_set_link,
3371
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3372
	.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
3373
	.port_set_speed = mv88e6352_port_set_speed,
3374
	.stats_snapshot = mv88e6320_g1_stats_snapshot,
3375 3376
	.stats_get_sset_count = mv88e6095_stats_get_sset_count,
	.stats_get_strings = mv88e6095_stats_get_strings,
3377
	.stats_get_stats = mv88e6095_stats_get_stats,
3378 3379 3380
};

static const struct mv88e6xxx_ops mv88e6185_ops = {
3381
	/* MV88E6XXX_FAMILY_6185 */
3382
	.set_switch_mac = mv88e6xxx_g1_set_switch_mac,
3383 3384
	.phy_read = mv88e6xxx_phy_ppu_read,
	.phy_write = mv88e6xxx_phy_ppu_write,
3385
	.port_set_link = mv88e6xxx_port_set_link,
3386
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3387
	.port_set_speed = mv88e6185_port_set_speed,
3388
	.stats_snapshot = mv88e6xxx_g1_stats_snapshot,
3389 3390
	.stats_get_sset_count = mv88e6095_stats_get_sset_count,
	.stats_get_strings = mv88e6095_stats_get_strings,
3391
	.stats_get_stats = mv88e6095_stats_get_stats,
3392 3393
};

3394
static const struct mv88e6xxx_ops mv88e6190_ops = {
3395
	/* MV88E6XXX_FAMILY_6390 */
3396 3397 3398 3399 3400 3401 3402
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
	.port_set_link = mv88e6xxx_port_set_link,
	.port_set_duplex = mv88e6xxx_port_set_duplex,
	.port_set_rgmii_delay = mv88e6390_port_set_rgmii_delay,
	.port_set_speed = mv88e6390_port_set_speed,
3403
	.stats_snapshot = mv88e6390_g1_stats_snapshot,
3404
	.stats_set_histogram = mv88e6390_g1_stats_set_histogram,
3405 3406
	.stats_get_sset_count = mv88e6320_stats_get_sset_count,
	.stats_get_strings = mv88e6320_stats_get_strings,
3407
	.stats_get_stats = mv88e6390_stats_get_stats,
3408 3409 3410
};

static const struct mv88e6xxx_ops mv88e6190x_ops = {
3411
	/* MV88E6XXX_FAMILY_6390 */
3412 3413 3414 3415 3416 3417 3418
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
	.port_set_link = mv88e6xxx_port_set_link,
	.port_set_duplex = mv88e6xxx_port_set_duplex,
	.port_set_rgmii_delay = mv88e6390_port_set_rgmii_delay,
	.port_set_speed = mv88e6390x_port_set_speed,
3419
	.stats_snapshot = mv88e6390_g1_stats_snapshot,
3420
	.stats_set_histogram = mv88e6390_g1_stats_set_histogram,
3421 3422
	.stats_get_sset_count = mv88e6320_stats_get_sset_count,
	.stats_get_strings = mv88e6320_stats_get_strings,
3423
	.stats_get_stats = mv88e6390_stats_get_stats,
3424 3425 3426
};

static const struct mv88e6xxx_ops mv88e6191_ops = {
3427
	/* MV88E6XXX_FAMILY_6390 */
3428 3429 3430 3431 3432 3433 3434
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
	.port_set_link = mv88e6xxx_port_set_link,
	.port_set_duplex = mv88e6xxx_port_set_duplex,
	.port_set_rgmii_delay = mv88e6390_port_set_rgmii_delay,
	.port_set_speed = mv88e6390_port_set_speed,
3435
	.stats_snapshot = mv88e6390_g1_stats_snapshot,
3436
	.stats_set_histogram = mv88e6390_g1_stats_set_histogram,
3437 3438
	.stats_get_sset_count = mv88e6320_stats_get_sset_count,
	.stats_get_strings = mv88e6320_stats_get_strings,
3439
	.stats_get_stats = mv88e6390_stats_get_stats,
3440 3441
};

3442
static const struct mv88e6xxx_ops mv88e6240_ops = {
3443
	/* MV88E6XXX_FAMILY_6352 */
3444 3445
	.get_eeprom = mv88e6xxx_g2_get_eeprom16,
	.set_eeprom = mv88e6xxx_g2_set_eeprom16,
3446
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3447 3448
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
3449
	.port_set_link = mv88e6xxx_port_set_link,
3450
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3451
	.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
3452
	.port_set_speed = mv88e6352_port_set_speed,
3453
	.stats_snapshot = mv88e6320_g1_stats_snapshot,
3454 3455
	.stats_get_sset_count = mv88e6095_stats_get_sset_count,
	.stats_get_strings = mv88e6095_stats_get_strings,
3456
	.stats_get_stats = mv88e6095_stats_get_stats,
3457 3458
};

3459
static const struct mv88e6xxx_ops mv88e6290_ops = {
3460
	/* MV88E6XXX_FAMILY_6390 */
3461 3462 3463 3464 3465 3466 3467
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
	.port_set_link = mv88e6xxx_port_set_link,
	.port_set_duplex = mv88e6xxx_port_set_duplex,
	.port_set_rgmii_delay = mv88e6390_port_set_rgmii_delay,
	.port_set_speed = mv88e6390_port_set_speed,
3468
	.stats_snapshot = mv88e6390_g1_stats_snapshot,
3469
	.stats_set_histogram = mv88e6390_g1_stats_set_histogram,
3470 3471
	.stats_get_sset_count = mv88e6320_stats_get_sset_count,
	.stats_get_strings = mv88e6320_stats_get_strings,
3472
	.stats_get_stats = mv88e6390_stats_get_stats,
3473 3474
};

3475
static const struct mv88e6xxx_ops mv88e6320_ops = {
3476
	/* MV88E6XXX_FAMILY_6320 */
3477 3478
	.get_eeprom = mv88e6xxx_g2_get_eeprom16,
	.set_eeprom = mv88e6xxx_g2_set_eeprom16,
3479
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3480 3481
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
3482
	.port_set_link = mv88e6xxx_port_set_link,
3483
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3484
	.port_set_speed = mv88e6185_port_set_speed,
3485
	.stats_snapshot = mv88e6320_g1_stats_snapshot,
3486 3487
	.stats_get_sset_count = mv88e6320_stats_get_sset_count,
	.stats_get_strings = mv88e6320_stats_get_strings,
3488
	.stats_get_stats = mv88e6320_stats_get_stats,
3489 3490 3491
};

static const struct mv88e6xxx_ops mv88e6321_ops = {
3492
	/* MV88E6XXX_FAMILY_6321 */
3493 3494
	.get_eeprom = mv88e6xxx_g2_get_eeprom16,
	.set_eeprom = mv88e6xxx_g2_set_eeprom16,
3495
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3496 3497
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
3498
	.port_set_link = mv88e6xxx_port_set_link,
3499
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3500
	.port_set_speed = mv88e6185_port_set_speed,
3501
	.stats_snapshot = mv88e6320_g1_stats_snapshot,
3502 3503
	.stats_get_sset_count = mv88e6320_stats_get_sset_count,
	.stats_get_strings = mv88e6320_stats_get_strings,
3504
	.stats_get_stats = mv88e6320_stats_get_stats,
3505 3506 3507
};

static const struct mv88e6xxx_ops mv88e6350_ops = {
3508
	/* MV88E6XXX_FAMILY_6351 */
3509
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3510 3511
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
3512
	.port_set_link = mv88e6xxx_port_set_link,
3513
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3514
	.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
3515
	.port_set_speed = mv88e6185_port_set_speed,
3516
	.stats_snapshot = mv88e6320_g1_stats_snapshot,
3517 3518
	.stats_get_sset_count = mv88e6095_stats_get_sset_count,
	.stats_get_strings = mv88e6095_stats_get_strings,
3519
	.stats_get_stats = mv88e6095_stats_get_stats,
3520 3521 3522
};

static const struct mv88e6xxx_ops mv88e6351_ops = {
3523
	/* MV88E6XXX_FAMILY_6351 */
3524
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3525 3526
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
3527
	.port_set_link = mv88e6xxx_port_set_link,
3528
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3529
	.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
3530
	.port_set_speed = mv88e6185_port_set_speed,
3531
	.stats_snapshot = mv88e6320_g1_stats_snapshot,
3532 3533
	.stats_get_sset_count = mv88e6095_stats_get_sset_count,
	.stats_get_strings = mv88e6095_stats_get_strings,
3534
	.stats_get_stats = mv88e6095_stats_get_stats,
3535 3536 3537
};

static const struct mv88e6xxx_ops mv88e6352_ops = {
3538
	/* MV88E6XXX_FAMILY_6352 */
3539 3540
	.get_eeprom = mv88e6xxx_g2_get_eeprom16,
	.set_eeprom = mv88e6xxx_g2_set_eeprom16,
3541
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3542 3543
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
3544
	.port_set_link = mv88e6xxx_port_set_link,
3545
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3546
	.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
3547
	.port_set_speed = mv88e6352_port_set_speed,
3548
	.stats_snapshot = mv88e6320_g1_stats_snapshot,
3549 3550
	.stats_get_sset_count = mv88e6095_stats_get_sset_count,
	.stats_get_strings = mv88e6095_stats_get_strings,
3551
	.stats_get_stats = mv88e6095_stats_get_stats,
3552 3553
};

3554
static const struct mv88e6xxx_ops mv88e6390_ops = {
3555
	/* MV88E6XXX_FAMILY_6390 */
3556 3557 3558 3559 3560 3561 3562
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
	.port_set_link = mv88e6xxx_port_set_link,
	.port_set_duplex = mv88e6xxx_port_set_duplex,
	.port_set_rgmii_delay = mv88e6390_port_set_rgmii_delay,
	.port_set_speed = mv88e6390_port_set_speed,
3563
	.stats_snapshot = mv88e6390_g1_stats_snapshot,
3564
	.stats_set_histogram = mv88e6390_g1_stats_set_histogram,
3565 3566
	.stats_get_sset_count = mv88e6320_stats_get_sset_count,
	.stats_get_strings = mv88e6320_stats_get_strings,
3567
	.stats_get_stats = mv88e6390_stats_get_stats,
3568 3569 3570
};

static const struct mv88e6xxx_ops mv88e6390x_ops = {
3571
	/* MV88E6XXX_FAMILY_6390 */
3572 3573 3574 3575 3576 3577 3578
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
	.port_set_link = mv88e6xxx_port_set_link,
	.port_set_duplex = mv88e6xxx_port_set_duplex,
	.port_set_rgmii_delay = mv88e6390_port_set_rgmii_delay,
	.port_set_speed = mv88e6390x_port_set_speed,
3579
	.stats_snapshot = mv88e6390_g1_stats_snapshot,
3580
	.stats_set_histogram = mv88e6390_g1_stats_set_histogram,
3581 3582
	.stats_get_sset_count = mv88e6320_stats_get_sset_count,
	.stats_get_strings = mv88e6320_stats_get_strings,
3583
	.stats_get_stats = mv88e6390_stats_get_stats,
3584 3585 3586
};

static const struct mv88e6xxx_ops mv88e6391_ops = {
3587
	/* MV88E6XXX_FAMILY_6390 */
3588 3589 3590 3591 3592 3593 3594
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
	.port_set_link = mv88e6xxx_port_set_link,
	.port_set_duplex = mv88e6xxx_port_set_duplex,
	.port_set_rgmii_delay = mv88e6390_port_set_rgmii_delay,
	.port_set_speed = mv88e6390_port_set_speed,
3595
	.stats_snapshot = mv88e6390_g1_stats_snapshot,
3596
	.stats_set_histogram = mv88e6390_g1_stats_set_histogram,
3597 3598
	.stats_get_sset_count = mv88e6320_stats_get_sset_count,
	.stats_get_strings = mv88e6320_stats_get_strings,
3599
	.stats_get_stats = mv88e6390_stats_get_stats,
3600 3601
};

3602 3603 3604 3605 3606 3607 3608
static const struct mv88e6xxx_info mv88e6xxx_table[] = {
	[MV88E6085] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6085,
		.family = MV88E6XXX_FAMILY_6097,
		.name = "Marvell 88E6085",
		.num_databases = 4096,
		.num_ports = 10,
3609
		.port_base_addr = 0x10,
3610
		.global1_addr = 0x1b,
3611
		.age_time_coeff = 15000,
3612
		.g1_irqs = 8,
3613
		.flags = MV88E6XXX_FLAGS_FAMILY_6097,
3614
		.ops = &mv88e6085_ops,
3615 3616 3617 3618 3619 3620 3621 3622
	},

	[MV88E6095] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6095,
		.family = MV88E6XXX_FAMILY_6095,
		.name = "Marvell 88E6095/88E6095F",
		.num_databases = 256,
		.num_ports = 11,
3623
		.port_base_addr = 0x10,
3624
		.global1_addr = 0x1b,
3625
		.age_time_coeff = 15000,
3626
		.g1_irqs = 8,
3627
		.flags = MV88E6XXX_FLAGS_FAMILY_6095,
3628
		.ops = &mv88e6095_ops,
3629 3630 3631 3632 3633 3634 3635 3636
	},

	[MV88E6123] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6123,
		.family = MV88E6XXX_FAMILY_6165,
		.name = "Marvell 88E6123",
		.num_databases = 4096,
		.num_ports = 3,
3637
		.port_base_addr = 0x10,
3638
		.global1_addr = 0x1b,
3639
		.age_time_coeff = 15000,
3640
		.g1_irqs = 9,
3641
		.flags = MV88E6XXX_FLAGS_FAMILY_6165,
3642
		.ops = &mv88e6123_ops,
3643 3644 3645 3646 3647 3648 3649 3650
	},

	[MV88E6131] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6131,
		.family = MV88E6XXX_FAMILY_6185,
		.name = "Marvell 88E6131",
		.num_databases = 256,
		.num_ports = 8,
3651
		.port_base_addr = 0x10,
3652
		.global1_addr = 0x1b,
3653
		.age_time_coeff = 15000,
3654
		.g1_irqs = 9,
3655
		.flags = MV88E6XXX_FLAGS_FAMILY_6185,
3656
		.ops = &mv88e6131_ops,
3657 3658 3659 3660 3661 3662 3663 3664
	},

	[MV88E6161] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6161,
		.family = MV88E6XXX_FAMILY_6165,
		.name = "Marvell 88E6161",
		.num_databases = 4096,
		.num_ports = 6,
3665
		.port_base_addr = 0x10,
3666
		.global1_addr = 0x1b,
3667
		.age_time_coeff = 15000,
3668
		.g1_irqs = 9,
3669
		.flags = MV88E6XXX_FLAGS_FAMILY_6165,
3670
		.ops = &mv88e6161_ops,
3671 3672 3673 3674 3675 3676 3677 3678
	},

	[MV88E6165] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6165,
		.family = MV88E6XXX_FAMILY_6165,
		.name = "Marvell 88E6165",
		.num_databases = 4096,
		.num_ports = 6,
3679
		.port_base_addr = 0x10,
3680
		.global1_addr = 0x1b,
3681
		.age_time_coeff = 15000,
3682
		.g1_irqs = 9,
3683
		.flags = MV88E6XXX_FLAGS_FAMILY_6165,
3684
		.ops = &mv88e6165_ops,
3685 3686 3687 3688 3689 3690 3691 3692
	},

	[MV88E6171] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6171,
		.family = MV88E6XXX_FAMILY_6351,
		.name = "Marvell 88E6171",
		.num_databases = 4096,
		.num_ports = 7,
3693
		.port_base_addr = 0x10,
3694
		.global1_addr = 0x1b,
3695
		.age_time_coeff = 15000,
3696
		.g1_irqs = 9,
3697
		.flags = MV88E6XXX_FLAGS_FAMILY_6351,
3698
		.ops = &mv88e6171_ops,
3699 3700 3701 3702 3703 3704 3705 3706
	},

	[MV88E6172] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6172,
		.family = MV88E6XXX_FAMILY_6352,
		.name = "Marvell 88E6172",
		.num_databases = 4096,
		.num_ports = 7,
3707
		.port_base_addr = 0x10,
3708
		.global1_addr = 0x1b,
3709
		.age_time_coeff = 15000,
3710
		.g1_irqs = 9,
3711
		.flags = MV88E6XXX_FLAGS_FAMILY_6352,
3712
		.ops = &mv88e6172_ops,
3713 3714 3715 3716 3717 3718 3719 3720
	},

	[MV88E6175] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6175,
		.family = MV88E6XXX_FAMILY_6351,
		.name = "Marvell 88E6175",
		.num_databases = 4096,
		.num_ports = 7,
3721
		.port_base_addr = 0x10,
3722
		.global1_addr = 0x1b,
3723
		.age_time_coeff = 15000,
3724
		.g1_irqs = 9,
3725
		.flags = MV88E6XXX_FLAGS_FAMILY_6351,
3726
		.ops = &mv88e6175_ops,
3727 3728 3729 3730 3731 3732 3733 3734
	},

	[MV88E6176] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6176,
		.family = MV88E6XXX_FAMILY_6352,
		.name = "Marvell 88E6176",
		.num_databases = 4096,
		.num_ports = 7,
3735
		.port_base_addr = 0x10,
3736
		.global1_addr = 0x1b,
3737
		.age_time_coeff = 15000,
3738
		.g1_irqs = 9,
3739
		.flags = MV88E6XXX_FLAGS_FAMILY_6352,
3740
		.ops = &mv88e6176_ops,
3741 3742 3743 3744 3745 3746 3747 3748
	},

	[MV88E6185] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6185,
		.family = MV88E6XXX_FAMILY_6185,
		.name = "Marvell 88E6185",
		.num_databases = 256,
		.num_ports = 10,
3749
		.port_base_addr = 0x10,
3750
		.global1_addr = 0x1b,
3751
		.age_time_coeff = 15000,
3752
		.g1_irqs = 8,
3753
		.flags = MV88E6XXX_FLAGS_FAMILY_6185,
3754
		.ops = &mv88e6185_ops,
3755 3756
	},

3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797
	[MV88E6190] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6190,
		.family = MV88E6XXX_FAMILY_6390,
		.name = "Marvell 88E6190",
		.num_databases = 4096,
		.num_ports = 11,	/* 10 + Z80 */
		.port_base_addr = 0x0,
		.global1_addr = 0x1b,
		.age_time_coeff = 15000,
		.g1_irqs = 9,
		.flags = MV88E6XXX_FLAGS_FAMILY_6390,
		.ops = &mv88e6190_ops,
	},

	[MV88E6190X] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6190X,
		.family = MV88E6XXX_FAMILY_6390,
		.name = "Marvell 88E6190X",
		.num_databases = 4096,
		.num_ports = 11,	/* 10 + Z80 */
		.port_base_addr = 0x0,
		.global1_addr = 0x1b,
		.age_time_coeff = 15000,
		.g1_irqs = 9,
		.flags = MV88E6XXX_FLAGS_FAMILY_6390,
		.ops = &mv88e6190x_ops,
	},

	[MV88E6191] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6191,
		.family = MV88E6XXX_FAMILY_6390,
		.name = "Marvell 88E6191",
		.num_databases = 4096,
		.num_ports = 11,	/* 10 + Z80 */
		.port_base_addr = 0x0,
		.global1_addr = 0x1b,
		.age_time_coeff = 15000,
		.flags = MV88E6XXX_FLAGS_FAMILY_6390,
		.ops = &mv88e6391_ops,
	},

3798 3799 3800 3801 3802 3803
	[MV88E6240] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6240,
		.family = MV88E6XXX_FAMILY_6352,
		.name = "Marvell 88E6240",
		.num_databases = 4096,
		.num_ports = 7,
3804
		.port_base_addr = 0x10,
3805
		.global1_addr = 0x1b,
3806
		.age_time_coeff = 15000,
3807
		.g1_irqs = 9,
3808
		.flags = MV88E6XXX_FLAGS_FAMILY_6352,
3809
		.ops = &mv88e6240_ops,
3810 3811
	},

3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825
	[MV88E6290] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6290,
		.family = MV88E6XXX_FAMILY_6390,
		.name = "Marvell 88E6290",
		.num_databases = 4096,
		.num_ports = 11,	/* 10 + Z80 */
		.port_base_addr = 0x0,
		.global1_addr = 0x1b,
		.age_time_coeff = 15000,
		.g1_irqs = 9,
		.flags = MV88E6XXX_FLAGS_FAMILY_6390,
		.ops = &mv88e6290_ops,
	},

3826 3827 3828 3829 3830 3831
	[MV88E6320] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6320,
		.family = MV88E6XXX_FAMILY_6320,
		.name = "Marvell 88E6320",
		.num_databases = 4096,
		.num_ports = 7,
3832
		.port_base_addr = 0x10,
3833
		.global1_addr = 0x1b,
3834
		.age_time_coeff = 15000,
3835
		.g1_irqs = 8,
3836
		.flags = MV88E6XXX_FLAGS_FAMILY_6320,
3837
		.ops = &mv88e6320_ops,
3838 3839 3840 3841 3842 3843 3844 3845
	},

	[MV88E6321] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6321,
		.family = MV88E6XXX_FAMILY_6320,
		.name = "Marvell 88E6321",
		.num_databases = 4096,
		.num_ports = 7,
3846
		.port_base_addr = 0x10,
3847
		.global1_addr = 0x1b,
3848
		.age_time_coeff = 15000,
3849
		.g1_irqs = 8,
3850
		.flags = MV88E6XXX_FLAGS_FAMILY_6320,
3851
		.ops = &mv88e6321_ops,
3852 3853 3854 3855 3856 3857 3858 3859
	},

	[MV88E6350] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6350,
		.family = MV88E6XXX_FAMILY_6351,
		.name = "Marvell 88E6350",
		.num_databases = 4096,
		.num_ports = 7,
3860
		.port_base_addr = 0x10,
3861
		.global1_addr = 0x1b,
3862
		.age_time_coeff = 15000,
3863
		.g1_irqs = 9,
3864
		.flags = MV88E6XXX_FLAGS_FAMILY_6351,
3865
		.ops = &mv88e6350_ops,
3866 3867 3868 3869 3870 3871 3872 3873
	},

	[MV88E6351] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6351,
		.family = MV88E6XXX_FAMILY_6351,
		.name = "Marvell 88E6351",
		.num_databases = 4096,
		.num_ports = 7,
3874
		.port_base_addr = 0x10,
3875
		.global1_addr = 0x1b,
3876
		.age_time_coeff = 15000,
3877
		.g1_irqs = 9,
3878
		.flags = MV88E6XXX_FLAGS_FAMILY_6351,
3879
		.ops = &mv88e6351_ops,
3880 3881 3882 3883 3884 3885 3886 3887
	},

	[MV88E6352] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6352,
		.family = MV88E6XXX_FAMILY_6352,
		.name = "Marvell 88E6352",
		.num_databases = 4096,
		.num_ports = 7,
3888
		.port_base_addr = 0x10,
3889
		.global1_addr = 0x1b,
3890
		.age_time_coeff = 15000,
3891
		.g1_irqs = 9,
3892
		.flags = MV88E6XXX_FLAGS_FAMILY_6352,
3893
		.ops = &mv88e6352_ops,
3894
	},
3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920
	[MV88E6390] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6390,
		.family = MV88E6XXX_FAMILY_6390,
		.name = "Marvell 88E6390",
		.num_databases = 4096,
		.num_ports = 11,	/* 10 + Z80 */
		.port_base_addr = 0x0,
		.global1_addr = 0x1b,
		.age_time_coeff = 15000,
		.g1_irqs = 9,
		.flags = MV88E6XXX_FLAGS_FAMILY_6390,
		.ops = &mv88e6390_ops,
	},
	[MV88E6390X] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6390X,
		.family = MV88E6XXX_FAMILY_6390,
		.name = "Marvell 88E6390X",
		.num_databases = 4096,
		.num_ports = 11,	/* 10 + Z80 */
		.port_base_addr = 0x0,
		.global1_addr = 0x1b,
		.age_time_coeff = 15000,
		.g1_irqs = 9,
		.flags = MV88E6XXX_FLAGS_FAMILY_6390,
		.ops = &mv88e6390x_ops,
	},
3921 3922
};

3923
static const struct mv88e6xxx_info *mv88e6xxx_lookup_info(unsigned int prod_num)
3924
{
3925
	int i;
3926

3927 3928 3929
	for (i = 0; i < ARRAY_SIZE(mv88e6xxx_table); ++i)
		if (mv88e6xxx_table[i].prod_num == prod_num)
			return &mv88e6xxx_table[i];
3930 3931 3932 3933

	return NULL;
}

3934
static int mv88e6xxx_detect(struct mv88e6xxx_chip *chip)
3935 3936
{
	const struct mv88e6xxx_info *info;
3937 3938 3939
	unsigned int prod_num, rev;
	u16 id;
	int err;
3940

3941 3942 3943 3944 3945
	mutex_lock(&chip->reg_lock);
	err = mv88e6xxx_port_read(chip, 0, PORT_SWITCH_ID, &id);
	mutex_unlock(&chip->reg_lock);
	if (err)
		return err;
3946 3947 3948 3949 3950 3951 3952 3953

	prod_num = (id & 0xfff0) >> 4;
	rev = id & 0x000f;

	info = mv88e6xxx_lookup_info(prod_num);
	if (!info)
		return -ENODEV;

3954
	/* Update the compatible info with the probed one */
3955
	chip->info = info;
3956

3957 3958 3959 3960
	err = mv88e6xxx_g2_require(chip);
	if (err)
		return err;

3961 3962
	dev_info(chip->dev, "switch 0x%x detected: %s, revision %u\n",
		 chip->info->prod_num, chip->info->name, rev);
3963 3964 3965 3966

	return 0;
}

3967
static struct mv88e6xxx_chip *mv88e6xxx_alloc_chip(struct device *dev)
3968
{
3969
	struct mv88e6xxx_chip *chip;
3970

3971 3972
	chip = devm_kzalloc(dev, sizeof(*chip), GFP_KERNEL);
	if (!chip)
3973 3974
		return NULL;

3975
	chip->dev = dev;
3976

3977
	mutex_init(&chip->reg_lock);
3978

3979
	return chip;
3980 3981
}

3982 3983
static void mv88e6xxx_phy_init(struct mv88e6xxx_chip *chip)
{
3984
	if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_PPU))
3985 3986 3987
		mv88e6xxx_ppu_state_init(chip);
}

3988 3989
static void mv88e6xxx_phy_destroy(struct mv88e6xxx_chip *chip)
{
3990
	if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_PPU))
3991 3992 3993
		mv88e6xxx_ppu_state_destroy(chip);
}

3994
static int mv88e6xxx_smi_init(struct mv88e6xxx_chip *chip,
3995 3996 3997 3998 3999 4000
			      struct mii_bus *bus, int sw_addr)
{
	/* ADDR[0] pin is unavailable externally and considered zero */
	if (sw_addr & 0x1)
		return -EINVAL;

4001
	if (sw_addr == 0)
4002
		chip->smi_ops = &mv88e6xxx_smi_single_chip_ops;
4003
	else if (mv88e6xxx_has(chip, MV88E6XXX_FLAGS_MULTI_CHIP))
4004
		chip->smi_ops = &mv88e6xxx_smi_multi_chip_ops;
4005 4006 4007
	else
		return -EINVAL;

4008 4009
	chip->bus = bus;
	chip->sw_addr = sw_addr;
4010 4011 4012 4013

	return 0;
}

4014 4015
static enum dsa_tag_protocol mv88e6xxx_get_tag_protocol(struct dsa_switch *ds)
{
V
Vivien Didelot 已提交
4016
	struct mv88e6xxx_chip *chip = ds->priv;
4017 4018 4019 4020 4021

	if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_EDSA))
		return DSA_TAG_PROTO_EDSA;

	return DSA_TAG_PROTO_DSA;
4022 4023
}

4024 4025 4026
static const char *mv88e6xxx_drv_probe(struct device *dsa_dev,
				       struct device *host_dev, int sw_addr,
				       void **priv)
4027
{
4028
	struct mv88e6xxx_chip *chip;
4029
	struct mii_bus *bus;
4030
	int err;
4031

4032
	bus = dsa_host_dev_to_mii_bus(host_dev);
4033 4034 4035
	if (!bus)
		return NULL;

4036 4037
	chip = mv88e6xxx_alloc_chip(dsa_dev);
	if (!chip)
4038 4039
		return NULL;

4040
	/* Legacy SMI probing will only support chips similar to 88E6085 */
4041
	chip->info = &mv88e6xxx_table[MV88E6085];
4042

4043
	err = mv88e6xxx_smi_init(chip, bus, sw_addr);
4044 4045 4046
	if (err)
		goto free;

4047
	err = mv88e6xxx_detect(chip);
4048
	if (err)
4049
		goto free;
4050

4051 4052 4053 4054 4055 4056
	mutex_lock(&chip->reg_lock);
	err = mv88e6xxx_switch_reset(chip);
	mutex_unlock(&chip->reg_lock);
	if (err)
		goto free;

4057 4058
	mv88e6xxx_phy_init(chip);

4059
	err = mv88e6xxx_mdio_register(chip, NULL);
4060
	if (err)
4061
		goto free;
4062

4063
	*priv = chip;
4064

4065
	return chip->info->name;
4066
free:
4067
	devm_kfree(dsa_dev, chip);
4068 4069

	return NULL;
4070 4071
}

4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086
static int mv88e6xxx_port_mdb_prepare(struct dsa_switch *ds, int port,
				      const struct switchdev_obj_port_mdb *mdb,
				      struct switchdev_trans *trans)
{
	/* We don't need any dynamic resource from the kernel (yet),
	 * so skip the prepare phase.
	 */

	return 0;
}

static void mv88e6xxx_port_mdb_add(struct dsa_switch *ds, int port,
				   const struct switchdev_obj_port_mdb *mdb,
				   struct switchdev_trans *trans)
{
V
Vivien Didelot 已提交
4087
	struct mv88e6xxx_chip *chip = ds->priv;
4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098

	mutex_lock(&chip->reg_lock);
	if (mv88e6xxx_port_db_load_purge(chip, port, mdb->addr, mdb->vid,
					 GLOBAL_ATU_DATA_STATE_MC_STATIC))
		netdev_err(ds->ports[port].netdev, "failed to load multicast MAC address\n");
	mutex_unlock(&chip->reg_lock);
}

static int mv88e6xxx_port_mdb_del(struct dsa_switch *ds, int port,
				  const struct switchdev_obj_port_mdb *mdb)
{
V
Vivien Didelot 已提交
4099
	struct mv88e6xxx_chip *chip = ds->priv;
4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113
	int err;

	mutex_lock(&chip->reg_lock);
	err = mv88e6xxx_port_db_load_purge(chip, port, mdb->addr, mdb->vid,
					   GLOBAL_ATU_DATA_STATE_UNUSED);
	mutex_unlock(&chip->reg_lock);

	return err;
}

static int mv88e6xxx_port_mdb_dump(struct dsa_switch *ds, int port,
				   struct switchdev_obj_port_mdb *mdb,
				   int (*cb)(struct switchdev_obj *obj))
{
V
Vivien Didelot 已提交
4114
	struct mv88e6xxx_chip *chip = ds->priv;
4115 4116 4117 4118 4119 4120 4121 4122 4123
	int err;

	mutex_lock(&chip->reg_lock);
	err = mv88e6xxx_port_db_dump(chip, port, &mdb->obj, cb);
	mutex_unlock(&chip->reg_lock);

	return err;
}

4124
static struct dsa_switch_ops mv88e6xxx_switch_ops = {
4125
	.probe			= mv88e6xxx_drv_probe,
4126
	.get_tag_protocol	= mv88e6xxx_get_tag_protocol,
4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140
	.setup			= mv88e6xxx_setup,
	.set_addr		= mv88e6xxx_set_addr,
	.adjust_link		= mv88e6xxx_adjust_link,
	.get_strings		= mv88e6xxx_get_strings,
	.get_ethtool_stats	= mv88e6xxx_get_ethtool_stats,
	.get_sset_count		= mv88e6xxx_get_sset_count,
	.set_eee		= mv88e6xxx_set_eee,
	.get_eee		= mv88e6xxx_get_eee,
#ifdef CONFIG_NET_DSA_HWMON
	.get_temp		= mv88e6xxx_get_temp,
	.get_temp_limit		= mv88e6xxx_get_temp_limit,
	.set_temp_limit		= mv88e6xxx_set_temp_limit,
	.get_temp_alarm		= mv88e6xxx_get_temp_alarm,
#endif
4141
	.get_eeprom_len		= mv88e6xxx_get_eeprom_len,
4142 4143 4144 4145
	.get_eeprom		= mv88e6xxx_get_eeprom,
	.set_eeprom		= mv88e6xxx_set_eeprom,
	.get_regs_len		= mv88e6xxx_get_regs_len,
	.get_regs		= mv88e6xxx_get_regs,
4146
	.set_ageing_time	= mv88e6xxx_set_ageing_time,
4147 4148 4149
	.port_bridge_join	= mv88e6xxx_port_bridge_join,
	.port_bridge_leave	= mv88e6xxx_port_bridge_leave,
	.port_stp_state_set	= mv88e6xxx_port_stp_state_set,
4150
	.port_fast_age		= mv88e6xxx_port_fast_age,
4151 4152 4153 4154 4155 4156 4157 4158 4159
	.port_vlan_filtering	= mv88e6xxx_port_vlan_filtering,
	.port_vlan_prepare	= mv88e6xxx_port_vlan_prepare,
	.port_vlan_add		= mv88e6xxx_port_vlan_add,
	.port_vlan_del		= mv88e6xxx_port_vlan_del,
	.port_vlan_dump		= mv88e6xxx_port_vlan_dump,
	.port_fdb_prepare       = mv88e6xxx_port_fdb_prepare,
	.port_fdb_add           = mv88e6xxx_port_fdb_add,
	.port_fdb_del           = mv88e6xxx_port_fdb_del,
	.port_fdb_dump          = mv88e6xxx_port_fdb_dump,
4160 4161 4162 4163
	.port_mdb_prepare       = mv88e6xxx_port_mdb_prepare,
	.port_mdb_add           = mv88e6xxx_port_mdb_add,
	.port_mdb_del           = mv88e6xxx_port_mdb_del,
	.port_mdb_dump          = mv88e6xxx_port_mdb_dump,
4164 4165
};

4166
static int mv88e6xxx_register_switch(struct mv88e6xxx_chip *chip,
4167 4168
				     struct device_node *np)
{
4169
	struct device *dev = chip->dev;
4170 4171 4172 4173 4174 4175 4176
	struct dsa_switch *ds;

	ds = devm_kzalloc(dev, sizeof(*ds), GFP_KERNEL);
	if (!ds)
		return -ENOMEM;

	ds->dev = dev;
4177
	ds->priv = chip;
4178
	ds->ops = &mv88e6xxx_switch_ops;
4179 4180 4181 4182 4183 4184

	dev_set_drvdata(dev, ds);

	return dsa_register_switch(ds, np);
}

4185
static void mv88e6xxx_unregister_switch(struct mv88e6xxx_chip *chip)
4186
{
4187
	dsa_unregister_switch(chip->ds);
4188 4189
}

4190
static int mv88e6xxx_probe(struct mdio_device *mdiodev)
4191
{
4192
	struct device *dev = &mdiodev->dev;
4193
	struct device_node *np = dev->of_node;
4194
	const struct mv88e6xxx_info *compat_info;
4195
	struct mv88e6xxx_chip *chip;
4196
	u32 eeprom_len;
4197
	int err;
4198

4199 4200 4201 4202
	compat_info = of_device_get_match_data(dev);
	if (!compat_info)
		return -EINVAL;

4203 4204
	chip = mv88e6xxx_alloc_chip(dev);
	if (!chip)
4205 4206
		return -ENOMEM;

4207
	chip->info = compat_info;
4208

4209
	err = mv88e6xxx_smi_init(chip, mdiodev->bus, mdiodev->addr);
4210 4211
	if (err)
		return err;
4212

4213 4214 4215 4216
	chip->reset = devm_gpiod_get_optional(dev, "reset", GPIOD_OUT_LOW);
	if (IS_ERR(chip->reset))
		return PTR_ERR(chip->reset);

4217
	err = mv88e6xxx_detect(chip);
4218 4219
	if (err)
		return err;
4220

4221 4222
	mv88e6xxx_phy_init(chip);

4223
	if (chip->info->ops->get_eeprom &&
4224
	    !of_property_read_u32(np, "eeprom-length", &eeprom_len))
4225
		chip->eeprom_len = eeprom_len;
4226

4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257
	mutex_lock(&chip->reg_lock);
	err = mv88e6xxx_switch_reset(chip);
	mutex_unlock(&chip->reg_lock);
	if (err)
		goto out;

	chip->irq = of_irq_get(np, 0);
	if (chip->irq == -EPROBE_DEFER) {
		err = chip->irq;
		goto out;
	}

	if (chip->irq > 0) {
		/* Has to be performed before the MDIO bus is created,
		 * because the PHYs will link there interrupts to these
		 * interrupt controllers
		 */
		mutex_lock(&chip->reg_lock);
		err = mv88e6xxx_g1_irq_setup(chip);
		mutex_unlock(&chip->reg_lock);

		if (err)
			goto out;

		if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_G2_INT)) {
			err = mv88e6xxx_g2_irq_setup(chip);
			if (err)
				goto out_g1_irq;
		}
	}

4258
	err = mv88e6xxx_mdio_register(chip, np);
4259
	if (err)
4260
		goto out_g2_irq;
4261

4262
	err = mv88e6xxx_register_switch(chip, np);
4263 4264
	if (err)
		goto out_mdio;
4265

4266
	return 0;
4267 4268 4269 4270

out_mdio:
	mv88e6xxx_mdio_unregister(chip);
out_g2_irq:
4271
	if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_G2_INT) && chip->irq > 0)
4272 4273
		mv88e6xxx_g2_irq_free(chip);
out_g1_irq:
4274 4275
	if (chip->irq > 0) {
		mutex_lock(&chip->reg_lock);
4276
		mv88e6xxx_g1_irq_free(chip);
4277 4278
		mutex_unlock(&chip->reg_lock);
	}
4279 4280
out:
	return err;
4281
}
4282 4283 4284 4285

static void mv88e6xxx_remove(struct mdio_device *mdiodev)
{
	struct dsa_switch *ds = dev_get_drvdata(&mdiodev->dev);
V
Vivien Didelot 已提交
4286
	struct mv88e6xxx_chip *chip = ds->priv;
4287

4288
	mv88e6xxx_phy_destroy(chip);
4289 4290
	mv88e6xxx_unregister_switch(chip);
	mv88e6xxx_mdio_unregister(chip);
4291

4292 4293 4294 4295 4296
	if (chip->irq > 0) {
		if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_G2_INT))
			mv88e6xxx_g2_irq_free(chip);
		mv88e6xxx_g1_irq_free(chip);
	}
4297 4298 4299
}

static const struct of_device_id mv88e6xxx_of_match[] = {
4300 4301 4302 4303
	{
		.compatible = "marvell,mv88e6085",
		.data = &mv88e6xxx_table[MV88E6085],
	},
4304 4305 4306 4307
	{
		.compatible = "marvell,mv88e6190",
		.data = &mv88e6xxx_table[MV88E6190],
	},
4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323
	{ /* sentinel */ },
};

MODULE_DEVICE_TABLE(of, mv88e6xxx_of_match);

static struct mdio_driver mv88e6xxx_driver = {
	.probe	= mv88e6xxx_probe,
	.remove = mv88e6xxx_remove,
	.mdiodrv.driver = {
		.name = "mv88e6085",
		.of_match_table = mv88e6xxx_of_match,
	},
};

static int __init mv88e6xxx_init(void)
{
4324
	register_switch_driver(&mv88e6xxx_switch_ops);
4325 4326
	return mdio_driver_register(&mv88e6xxx_driver);
}
4327 4328 4329 4330
module_init(mv88e6xxx_init);

static void __exit mv88e6xxx_cleanup(void)
{
4331
	mdio_driver_unregister(&mv88e6xxx_driver);
4332
	unregister_switch_driver(&mv88e6xxx_switch_ops);
4333 4334
}
module_exit(mv88e6xxx_cleanup);
4335 4336 4337 4338

MODULE_AUTHOR("Lennert Buytenhek <buytenh@wantstofly.org>");
MODULE_DESCRIPTION("Driver for Marvell 88E6XXX ethernet switch chips");
MODULE_LICENSE("GPL");